Welcome to the CHICKEN Scheme pasting service

Worst bug ever pasted by eggless on Fri Feb 27 06:55:35 2015

(use srfi-1)

(define (non-nested-keys alist #!optional fields keep?)
  (let ((keys (remove null? (map
			     (lambda (curr-key)
			       (if (not (list? (alist-ref curr-key alist)))
				   curr-key '())) (map car alist)))))
    (if (null? fields)
	keys
	(if keep?
	    (lset-intersection eq? fields keys)
	    (lset-difference eq? keys fields)))))

Example of bug working pasted by eggless on Fri Feb 27 07:03:37 2015

(use srfi-1)

(define mylist '((key1 . peanut) (key2 . butter) (key3 . jelly) (key4 . time) (key5 . (1 2 3 4))))

(define (non-nested-keys alist #!optional fields keep?)
  (let ((keys (remove null? (map
			     (lambda (curr-key)
			       (if (not (list? (alist-ref curr-key alist)))
				   curr-key '())) (map car alist)))))
    (if (null? fields)
	keys
	(if keep?
	    (lset-intersection eq? fields keys)
	    (lset-difference eq? keys fields)))))

;; Get keys
(non-nested-keys mylist)

;; Get only keys matching desired
(non-nested-keys mylist '(key2 key234565 key4) #t)

;; Remove the following keys and return everything else
(non-nested-keys mylist '(key2 key234565 key4) #f)

json file for processing pasted by eggless on Fri Feb 27 07:34:31 2015

{"created_at":"Mon Feb 23 20:31:35 +0000 2015","id":569957766435119104,"id_str":"569957766435119104","text":"RT @MEMMOSdubai: The Oscars were good news for Facebook; Twitter, not so much http:\/\/t.co\/NKOAiaSRxI MEMMOSDubai #Dubai #UAE","source":"\u003ca href=\"http:\/\/tweetadder.com\" rel=\"nofollow\"\u003eTweetAdder v4\u003c\/a\u003e","truncated":false,"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":3022341707,"id_str":"3022341707","name":"Nilsa","screen_name":"nilsa570","location":"","url":"http:\/\/mcaf.ee\/v34br","description":"I will give you 15000 youtube subscribers for $20","protected":false,"verified":false,"followers_count":83,"friends_count":626,"listed_count":18,"favourites_count":0,"statuses_count":3520,"created_at":"Fri Feb 06 22:53:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564772885101682688\/CbO-xelX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564772885101682688\/CbO-xelX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3022341707\/1423487317","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 23 20:31:20 +0000 2015","id":569957702136406016,"id_str":"569957702136406016","text":"The Oscars were good news for Facebook; Twitter, not so much http:\/\/t.co\/NKOAiaSRxI MEMMOSDubai #Dubai #UAE","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"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":415753384,"id_str":"415753384","name":"MEMMOS Enterprises","screen_name":"MEMMOSdubai","location":"Dubai, Uniter Arab Emirates","url":"http:\/\/www.memmos.ae","description":"Based in #Dubai, UAE. MEMMOS empowers your Business! Specialized in Social Media, Consulting & Brokerage. Connected to major local & international power links.","protected":false,"verified":false,"followers_count":40173,"friends_count":33081,"listed_count":58,"favourites_count":234,"statuses_count":17398,"created_at":"Fri Nov 18 19:26:23 +0000 2011","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":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_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481213549134348289\/W0N8bJju_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481213549134348289\/W0N8bJju_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/415753384\/1407616113","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":10,"favorite_count":0,"entities":{"hashtags":[{"text":"Dubai","indices":[96,102]},{"text":"UAE","indices":[103,107]}],"trends":[],"urls":[{"url":"http:\/\/t.co\/NKOAiaSRxI","expanded_url":"http:\/\/ift.tt\/1Lwjf9q","display_url":"ift.tt\/1Lwjf9q","indices":[61,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Dubai","indices":[113,119]},{"text":"UAE","indices":[120,124]}],"trends":[],"urls":[{"url":"http:\/\/t.co\/NKOAiaSRxI","expanded_url":"http:\/\/ift.tt\/1Lwjf9q","display_url":"ift.tt\/1Lwjf9q","indices":[78,100]}],"user_mentions":[{"screen_name":"MEMMOSdubai","name":"MEMMOS Enterprises","id":415753384,"id_str":"415753384","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723495478"}
{"created_at":"Mon Feb 23 20:31:35 +0000 2015","id":569957768003592192,"id_str":"569957768003592192","text":"The Oscars were good news for Facebook; Twitter, not so much: Twitter's Oscar night stats won't ... http:\/\/t.co\/n7ExBXsY9M via @Mashable","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"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":16458689,"id_str":"16458689","name":"LeVar Thomas","screen_name":"LeVarThomas","location":"Gainesville, Florida","url":"http:\/\/LeVarThomas.Bandcamp.com","description":"I am a Singer, Songwriter & Co-Founder\/Editor-In-Chief of @stupidDOPE. I am a Gemini and I believe music is life! Contact: levar@stupidDOPE.com","protected":false,"verified":false,"followers_count":15692,"friends_count":2201,"listed_count":357,"favourites_count":2162,"statuses_count":82454,"created_at":"Thu Sep 25 21:57:19 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/373281261\/photo.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/373281261\/photo.JPG","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469947078496780288\/fHgOMJ8A_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469947078496780288\/fHgOMJ8A_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16458689\/1400879206","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"trends":[],"urls":[{"url":"http:\/\/t.co\/n7ExBXsY9M","expanded_url":"http:\/\/on.mash.to\/1a6ZSrK","display_url":"on.mash.to\/1a6ZSrK","indices":[100,122]}],"user_mentions":[{"screen_name":"mashable","name":"Mashable","id":972651,"id_str":"972651","indices":[127,136]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723495852"}
{"created_at":"Mon Feb 23 20:31:35 +0000 2015","id":569957767529832448,"id_str":"569957767529832448","text":"RT @CGOC_Council: RT @TheRecordsGuru, @RSDig: Best supporting role for #bigdata goes to: #infogov http:\/\/t.co\/ZEVTwAL0rN  #Oscars @Forbes","source":"\u003ca href=\"https:\/\/hijeffho.squarespace.com\/\" rel=\"nofollow\"\u003eData Smart\u003c\/a\u003e","truncated":false,"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":2888882327,"id_str":"2888882327","name":"Data Smart","screen_name":"Data88Smart","location":"NY, New York","url":null,"description":"Data makes you smart! #BigData #DataScience #BusinessIntelligence","protected":false,"verified":false,"followers_count":5346,"friends_count":2670,"listed_count":926,"favourites_count":43592,"statuses_count":81297,"created_at":"Sun Nov 23 07:36:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":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_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536423134841143297\/XGldjFtN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536423134841143297\/XGldjFtN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2888882327\/1416730383","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 23 20:31:14 +0000 2015","id":569957678304382976,"id_str":"569957678304382976","text":"RT @TheRecordsGuru, @RSDig: Best supporting role for #bigdata goes to: #infogov http:\/\/t.co\/ZEVTwAL0rN  #Oscars @Forbes","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"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":59540201,"id_str":"59540201","name":"CGOC","screen_name":"CGOC_Council","location":"Worldwide","url":"http:\/\/www.cgoc.com","description":"2900 corporate, legal, IT, RIM, security & privacy practitioners improving information economics through research & practice in life cycle governance","protected":false,"verified":false,"followers_count":1061,"friends_count":1744,"listed_count":45,"favourites_count":104,"statuses_count":1970,"created_at":"Thu Jul 23 18:06:28 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DEEDF2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658805821\/3ui4radzz5828tc38jpv.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658805821\/3ui4radzz5828tc38jpv.png","profile_background_tile":false,"profile_link_color":"003366","profile_sidebar_border_color":"3C4D96","profile_sidebar_fill_color":"E5E5F0","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486932598266937345\/B1zzDFyH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486932598266937345\/B1zzDFyH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59540201\/1404929261","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"bigdata","indices":[53,61]},{"text":"infogov","indices":[71,79]},{"text":"Oscars","indices":[104,111]}],"trends":[],"urls":[{"url":"http:\/\/t.co\/ZEVTwAL0rN","expanded_url":"http:\/\/bit.ly\/1zZwmcg","display_url":"bit.ly\/1zZwmcg","indices":[80,102]}],"user_mentions":[{"screen_name":"TheRecordsGuru","name":"Robin Woolen, IGP","id":55618046,"id_str":"55618046","indices":[3,18]},{"screen_name":"RSDig","name":"RSD InfoGov","id":21751255,"id_str":"21751255","indices":[20,26]},{"screen_name":"Forbes","name":"Forbes","id":91478624,"id_str":"91478624","indices":[112,119]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bigdata","indices":[71,79]},{"text":"infogov","indices":[89,97]},{"text":"Oscars","indices":[122,129]}],"trends":[],"urls":[{"url":"http:\/\/t.co\/ZEVTwAL0rN","expanded_url":"http:\/\/bit.ly\/1zZwmcg","display_url":"bit.ly\/1zZwmcg","indices":[98,120]}],"user_mentions":[{"screen_name":"CGOC_Council","name":"CGOC","id":59540201,"id_str":"59540201","indices":[3,16]},{"screen_name":"TheRecordsGuru","name":"Robin Woolen, IGP","id":55618046,"id_str":"55618046","indices":[21,36]},{"screen_name":"RSDig","name":"RSD InfoGov","id":21751255,"id_str":"21751255","indices":[38,44]},{"screen_name":"Forbes","name":"Forbes","id":91478624,"id_str":"91478624","indices":[130,137]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723495739"}
{"created_at":"Mon Feb 23 20:31:35 +0000 2015","id":569957767970033664,"id_str":"569957767970033664","text":"RT @usatodaylife: #Oscars ratings drop to six-year low http:\/\/t.co\/DWa2TsTLc0 http:\/\/t.co\/2QiTo96bbp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"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":2961425454,"id_str":"2961425454","name":"Mabrisa Rodriguez","screen_name":"KEYTNC3Mabrisa","location":"Santa Barbara","url":"http:\/\/keyt.com","description":"Emmy-nominated Producer & Weather Anchor for KEYT, KCOY and KKFX. Current Broadcast and Operational Meteorology Program student at Mississippi State University.","protected":false,"verified":false,"followers_count":203,"friends_count":463,"listed_count":7,"favourites_count":2294,"statuses_count":1275,"created_at":"Tue Jan 06 21:22:58 +0000 2015","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552576596620480512\/bIY-LOU9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552576596620480512\/bIY-LOU9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2961425454\/1420579826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 23 20:05:44 +0000 2015","id":569951260977307648,"id_str":"569951260977307648","text":"#Oscars ratings drop to six-year low http:\/\/t.co\/DWa2TsTLc0 http:\/\/t.co\/2QiTo96bbp","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"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":15764283,"id_str":"15764283","name":"USA TODAY Life","screen_name":"usatodaylife","location":"USA TODAY HQ, McLean, Va.","url":"http:\/\/www.usatoday.com\/life","description":"Latest entertainment and celebrity news, along with movie and TV reviews from USA TODAY. Updated by @klawls and the Life staff.","protected":false,"verified":true,"followers_count":49296,"friends_count":2861,"listed_count":1485,"favourites_count":848,"statuses_count":46140,"created_at":"Thu Aug 07 15:09:16 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000092302558\/63998247270360c2fcbbdc76ec3f2705.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000092302558\/63998247270360c2fcbbdc76ec3f2705.jpeg","profile_background_tile":false,"profile_link_color":"81088C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E4A1D4","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463775288321511424\/049mDmUh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463775288321511424\/049mDmUh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15764283\/1414526829","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":39,"favorite_count":27,"entities":{"hashtags":[{"text":"Oscars","indices":[0,7]}],"trends":[],"urls":[{"url":"http:\/\/t.co\/DWa2TsTLc0","expanded_url":"http:\/\/usat.ly\/1BHRk6n","display_url":"usat.ly\/1BHRk6n","indices":[37,59]}],"user_mentions":[],"symbols":[],"media":[{"id":569951260800217088,"id_str":"569951260800217088","indices":[60,82],"media_url":"http:\/\/pbs.twimg.com\/media\/B-jfpudIcAAoZf9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-jfpudIcAAoZf9.jpg","url":"http:\/\/t.co\/2QiTo96bbp","display_url":"pic.twitter.com\/2QiTo96bbp","expanded_url":"http:\/\/twitter.com\/usatodaylife\/status\/569951260977307648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":401,"resize":"fit"},"large":{"w":534,"h":401,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":569951260800217088,"id_str":"569951260800217088","indices":[60,82],"media_url":"http:\/\/pbs.twimg.com\/media\/B-jfpudIcAAoZf9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-jfpudIcAAoZf9.jpg","url":"http:\/\/t.co\/2QiTo96bbp","display_url":"pic.twitter.com\/2QiTo96bbp","expanded_url":"http:\/\/twitter.com\/usatodaylife\/status\/569951260977307648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":401,"resize":"fit"},"large":{"w":534,"h":401,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Oscars","indices":[18,25]}],"trends":[],"urls":[{"url":"http:\/\/t.co\/DWa2TsTLc0","expanded_url":"http:\/\/usat.ly\/1BHRk6n","display_url":"usat.ly\/1BHRk6n","indices":[55,77]}],"user_mentions":[{"screen_name":"usatodaylife","name":"USA TODAY Life","id":15764283,"id_str":"15764283","indices":[3,16]}],"symbols":[],"media":[{"id":569951260800217088,"id_str":"569951260800217088","indices":[78,100],"media_url":"http:\/\/pbs.twimg.com\/media\/B-jfpudIcAAoZf9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-jfpudIcAAoZf9.jpg","url":"http:\/\/t.co\/2QiTo96bbp","display_url":"pic.twitter.com\/2QiTo96bbp","expanded_url":"http:\/\/twitter.com\/usatodaylife\/status\/569951260977307648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":401,"resize":"fit"},"large":{"w":534,"h":401,"resize":"fit"}},"source_status_id":569951260977307648,"source_status_id_str":"569951260977307648"}]},"extended_entities":{"media":[{"id":569951260800217088,"id_str":"569951260800217088","indices":[78,100],"media_url":"http:\/\/pbs.twimg.com\/media\/B-jfpudIcAAoZf9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-jfpudIcAAoZf9.jpg","url":"http:\/\/t.co\/2QiTo96bbp","display_url":"pic.twitter.com\/2QiTo96bbp","expanded_url":"http:\/\/twitter.com\/usatodaylife\/status\/569951260977307648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":401,"resize":"fit"},"large":{"w":534,"h":401,"resize":"fit"}},"source_status_id":569951260977307648,"source_status_id_str":"569951260977307648"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723495844"}
{"created_at":"Mon Feb 23 20:31:36 +0000 2015","id":569957768981032960,"id_str":"569957768981032960","text":"RT @TeamFoot2015_: La tenue d'Irina Shayk, l'ex de Ronaldo pr\u00e9sente aux Oscars http:\/\/t.co\/tjGM78EvAw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"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":120831793,"id_str":"120831793","name":"Guwoop","screen_name":"LeGrandLeonidas","location":"Lille-Pasteur Snap:AbdRachid","url":"http:\/\/Mercedes.com","description":"La volont\u00e9 d'un homme est la chose la plus puissante apr\u00e8s la volont\u00e9 de Dieu.","protected":false,"verified":false,"followers_count":231,"friends_count":82,"listed_count":3,"favourites_count":1551,"statuses_count":29869,"created_at":"Sun Mar 07 18:02:41 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"20A2E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/864935097\/bc5327ad108d487163af440093fef6c9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/864935097\/bc5327ad108d487163af440093fef6c9.jpeg","profile_background_tile":true,"profile_link_color":"6B3E33","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568510405598015488\/GQVCr5xh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568510405598015488\/GQVCr5xh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120831793\/1418389306","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 23 16:24:18 +0000 2015","id":569895537517965312,"id_str":"569895537517965312","text":"La tenue d'Irina Shayk, l'ex de Ronaldo pr\u00e9sente aux Oscars http:\/\/t.co\/tjGM78EvAw","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"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":2337045930,"id_str":"2337045930","name":"TeamFoot ","screen_name":"TeamFoot2015_","location":"","url":null,"description":"Actualit\u00e9s Football mondial, Scores des matchs en direct, Infos transferts. Follow","protected":false,"verified":false,"followers_count":10893,"friends_count":8190,"listed_count":22,"favourites_count":1573,"statuses_count":4544,"created_at":"Mon Feb 10 17:48:36 +0000 2014","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560163933219065856\/AmqWbSFp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560163933219065856\/AmqWbSFp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2337045930\/1407026963","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":501,"favorite_count":144,"entities":{"hashtags":[],"trends":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":569895515954089984,"id_str":"569895515954089984","indices":[60,82],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is88uIEAA4BmP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is88uIEAA4BmP.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1023,"h":783,"resize":"fit"},"medium":{"w":600,"h":459,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":569895515954089984,"id_str":"569895515954089984","indices":[60,82],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is88uIEAA4BmP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is88uIEAA4BmP.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1023,"h":783,"resize":"fit"},"medium":{"w":600,"h":459,"resize":"fit"}}},{"id":569895510295998464,"id_str":"569895510295998464","indices":[60,82],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is8npIcAAZEhq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is8npIcAAZEhq.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":946,"resize":"fit"},"large":{"w":649,"h":1024,"resize":"fit"}}},{"id":569895510077874176,"id_str":"569895510077874176","indices":[60,82],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is8m1IIAAoS4b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is8m1IIAAoS4b.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":918,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":520,"resize":"fit"},"large":{"w":669,"h":1024,"resize":"fit"}}},{"id":569895510417637376,"id_str":"569895510417637376","indices":[60,82],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is8oGIgAA2GTA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is8oGIgAA2GTA.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"large":{"w":706,"h":1000,"resize":"fit"},"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"trends":[],"urls":[],"user_mentions":[{"screen_name":"TeamFoot2015_","name":"TeamFoot ","id":2337045930,"id_str":"2337045930","indices":[3,17]}],"symbols":[],"media":[{"id":569895515954089984,"id_str":"569895515954089984","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is88uIEAA4BmP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is88uIEAA4BmP.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1023,"h":783,"resize":"fit"},"medium":{"w":600,"h":459,"resize":"fit"}},"source_status_id":569895537517965312,"source_status_id_str":"569895537517965312"}]},"extended_entities":{"media":[{"id":569895515954089984,"id_str":"569895515954089984","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is88uIEAA4BmP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is88uIEAA4BmP.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1023,"h":783,"resize":"fit"},"medium":{"w":600,"h":459,"resize":"fit"}},"source_status_id":569895537517965312,"source_status_id_str":"569895537517965312"},{"id":569895510295998464,"id_str":"569895510295998464","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is8npIcAAZEhq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is8npIcAAZEhq.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":946,"resize":"fit"},"large":{"w":649,"h":1024,"resize":"fit"}},"source_status_id":569895537517965312,"source_status_id_str":"569895537517965312"},{"id":569895510077874176,"id_str":"569895510077874176","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is8m1IIAAoS4b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is8m1IIAAoS4b.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":918,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":520,"resize":"fit"},"large":{"w":669,"h":1024,"resize":"fit"}},"source_status_id":569895537517965312,"source_status_id_str":"569895537517965312"},{"id":569895510417637376,"id_str":"569895510417637376","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/B-is8oGIgAA2GTA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-is8oGIgAA2GTA.jpg","url":"http:\/\/t.co\/tjGM78EvAw","display_url":"pic.twitter.com\/tjGM78EvAw","expanded_url":"http:\/\/twitter.com\/TeamFoot2015_\/status\/569895537517965312\/photo\/1","type":"photo","sizes":{"large":{"w":706,"h":1000,"resize":"fit"},"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":569895537517965312,"source_status_id_str":"569895537517965312"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1424723496085"}
{"created_at":"Mon Feb 23 20:31:36 +0000 2015","id":569957769022988289,"id_str":"569957769022988289","text":"RT @CalumWorthy: ATTENTION ANYONE AT THE #OSCARS: If you thank me on stage I will give you $7.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"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":2308561766,"id_str":"2308561766","name":"L\u00efli \u2661","screen_name":"Liliana_R5","location":"9.3|12.15|12.23.14|2.2|2.7 ","url":"https:\/\/twitter.com\/lauramarano\/status\/563918994990956544","description":"\u300bToday I want to turn your skies from gray to Blue\u300a \u2614\u2600\u26a1\u2728  \/\/ Adorkable? Adorkable.","protected":false,"verified":false,"followers_count":1502,"friends_count":1616,"listed_count":6,"favourites_count":37135,"statuses_count":26431,"created_at":"Fri Jan 24 15:48:05 +0000 2014","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544220319364284419\/W9ltkcbP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544220319364284419\/W9ltkcbP.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568204542521901056\/bwuYdiqs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568204542521901056\/bwuYdiqs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2308561766\/1424116754","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 23 02:05:40 +0000 2015","id":569679455079178241,"id_str":"569679455079178241","text":"ATTENTION ANYONE AT THE #OSCARS: If you thank me on stage I will give you $7.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"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":71626835,"id_str":"71626835","name":"Calum Worthy","screen_name":"CalumWorthy","location":"Disney XD","url":"http:\/\/Disneychannel.com\/Coppertop","description":"Often mistaken for Tilda Swinton. Star, writer and Exec Producer of the NEW Disney XD Series JUST KIDDING!","protected":false,"verified":true,"followers_count":754330,"friends_count":580,"listed_count":904,"favourites_count":586,"statuses_count":5573,"created_at":"Fri Sep 04 20:13:18 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551185076877160448\/3VA-5gJT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551185076877160448\/3VA-5gJT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71626835\/1420247818","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":235,"favorite_count":739,"entities":{"hashtags":[{"text":"OSCARS","indices":[24,31]}],"trends":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OSCARS","indices":[41,48]}],"trends":[],"urls":[],"user_mentions":[{"screen_name":"CalumWorthy","name":"Calum Worthy","id":71626835,"id_str":"71626835","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1424723496095"}
{"created_at":"Mon Feb 23 20:31:36 +0000 2015","id":569957769043963904,"id_str":"569957769043963904","text":"RT @justinbieber: Good luck to everyone tonight. Thanks for all the great movies. #Oscars","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"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":1314129313,"id_str":"1314129313","name":"Camilinda\u265b","screen_name":"camiileivaaa","location":"Vicu\u00f1a, Valle de Elqui, Chile","url":"http:\/\/www.facebook.com\/camii.leiva","description":"mechona Ing. civil ambiental ULS, tenista lesionada, una simple y orgullosa belieber \u2665","protected":false,"verified":false,"followers_count":574,"friends_count":1720,"listed_count":0,"favourites_count":145,"statuses_count":2645,"created_at":"Fri Mar 29 15:10:04 +0000 2013","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000166595043\/Up3Reus9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000166595043\/Up3Reus9.png","profile_background_tile":true,"profile_link_color":"D6178A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547074332946464768\/D_8T7M2I_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547074332946464768\/D_8T7M2I_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1314129313\/1423075636","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 23 01:00:24 +0000 2015","id":569663028511133696,"id_str":"569663028511133696","text":"Good luck to everyone tonight. Thanks for all the great movies. #Oscars","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"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":27260086,"id_str":"27260086","name":"Justin Bieber","screen_name":"justinbieber","location":"","url":"http:\/\/www.youtube.com\/justinbieber","description":"Let's make the world better, together. Join my fan club @officialfahlo and add me on @shots 'justinbieber'.","protected":false,"verified":true,"followers_count":60701953,"friends_count":175823,"listed_count":552840,"favourites_count":1445,"statuses_count":28161,"created_at":"Sat Mar 28 16:41:22 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567185870394904577\/d31-qVyv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567185870394904577\/d31-qVyv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27260086\/1420616343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":51020,"favorite_count":61990,"entities":{"hashtags":[{"text":"Oscars","indices":[64,71]}],"trends":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Oscars","indices":[82,89]}],"trends":[],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723496100"}
{"created_at":"Mon Feb 23 20:31:36 +0000 2015","id":569957769182388226,"id_str":"569957769182388226","text":"RT @standardnews: The most awkward moment of this year's #Oscars http:\/\/t.co\/GMz5ZmJTtd http:\/\/t.co\/oC59Hm43FQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"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":309126590,"id_str":"309126590","name":"Greg Jenner","screen_name":"greg_jenner","location":"Surrey, UK ","url":"http:\/\/www.gregjenner.com\/book\/","description":"Historian. Author of 'A Million Years In A Day'. Maker of TV. Chief Nerd to BBC 'Horrible Histories'. Does jokes. Supports Spurs & Feminism. Has silly hair.","protected":false,"verified":false,"followers_count":19851,"friends_count":5375,"listed_count":354,"favourites_count":144,"statuses_count":98335,"created_at":"Wed Jun 01 15:37:04 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/789662214\/5252698b2edb47f16737c77c341f7ce3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/789662214\/5252698b2edb47f16737c77c341f7ce3.jpeg","profile_background_tile":true,"profile_link_color":"580F7D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"440080","profile_text_color":"623A85","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568863820740063232\/mLL5Sraa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568863820740063232\/mLL5Sraa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309126590\/1420748492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 23 20:30:19 +0000 2015","id":569957449307783169,"id_str":"569957449307783169","text":"The most awkward moment of this year's #Oscars http:\/\/t.co\/GMz5ZmJTtd http:\/\/t.co\/oC59Hm43FQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"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":38142380,"id_str":"38142380","name":"Evening Standard","screen_name":"standardnews","location":"London","url":"http:\/\/www.standard.co.uk","description":"Breaking news and updates on top London stories from the newsdesk of the @EveningStandard. Follow our other accounts at https:\/\/t.co\/5nrRg0ZT","protected":false,"verified":true,"followers_count":182127,"friends_count":891,"listed_count":2287,"favourites_count":11,"statuses_count":82553,"created_at":"Wed May 06 08:47:09 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/18703860\/es_twitter.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/18703860\/es_twitter.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1264649100\/ES_news_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1264649100\/ES_news_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38142380\/1422548966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"Oscars","indices":[39,46]}],"trends":[],"urls":[{"url":"http:\/\/t.co\/GMz5ZmJTtd","expanded_url":"http:\/\/bit.ly\/17pj9TF","display_url":"bit.ly\/17pj9TF","indices":[47,69]}],"user_mentions":[],"symbols":[],"media":[{"id":569898177382588416,"id_str":"569898177382588416","indices":[70,92],"media_url":"http:\/\/pbs.twimg.com\/media\/B-ivX3UIIAAUH2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-ivX3UIIAAUH2e.jpg","url":"http:\/\/t.co\/oC59Hm43FQ","display_url":"pic.twitter.com\/oC59Hm43FQ","expanded_url":"http:\/\/twitter.com\/standardnews\/status\/569957449307783169\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":413,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":569898177382588416,"id_str":"569898177382588416","indices":[70,92],"media_url":"http:\/\/pbs.twimg.com\/media\/B-ivX3UIIAAUH2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-ivX3UIIAAUH2e.jpg","url":"http:\/\/t.co\/oC59Hm43FQ","display_url":"pic.twitter.com\/oC59Hm43FQ","expanded_url":"http:\/\/twitter.com\/standardnews\/status\/569957449307783169\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":413,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Oscars","indices":[57,64]}],"trends":[],"urls":[{"url":"http:\/\/t.co\/GMz5ZmJTtd","expanded_url":"http:\/\/bit.ly\/17pj9TF","display_url":"bit.ly\/17pj9TF","indices":[65,87]}],"user_mentions":[{"screen_name":"standardnews","name":"Evening Standard","id":38142380,"id_str":"38142380","indices":[3,16]}],"symbols":[],"media":[{"id":569898177382588416,"id_str":"569898177382588416","indices":[88,110],"media_url":"http:\/\/pbs.twimg.com\/media\/B-ivX3UIIAAUH2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-ivX3UIIAAUH2e.jpg","url":"http:\/\/t.co\/oC59Hm43FQ","display_url":"pic.twitter.com\/oC59Hm43FQ","expanded_url":"http:\/\/twitter.com\/standardnews\/status\/569957449307783169\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":413,"resize":"fit"}},"source_status_id":569957449307783169,"source_status_id_str":"569957449307783169"}]},"extended_entities":{"media":[{"id":569898177382588416,"id_str":"569898177382588416","indices":[88,110],"media_url":"http:\/\/pbs.twimg.com\/media\/B-ivX3UIIAAUH2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-ivX3UIIAAUH2e.jpg","url":"http:\/\/t.co\/oC59Hm43FQ","display_url":"pic.twitter.com\/oC59Hm43FQ","expanded_url":"http:\/\/twitter.com\/standardnews\/status\/569957449307783169\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":413,"resize":"fit"}},"source_status_id":569957449307783169,"source_status_id_str":"569957449307783169"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723496133"}
{"created_at":"Mon Feb 23 20:31:36 +0000 2015","id":569957769366917120,"id_str":"569957769366917120","text":"RT @ClickHole: The Best Speeches From Last Night\u2019s Oscars http:\/\/t.co\/RXwF7Z8UeP http:\/\/t.co\/7emQMCvNlt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"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":2935510397,"id_str":"2935510397","name":"Julio ","screen_name":"JDS273","location":"Glasgow","url":null,"description":"Has no time for your shenannigans","protected":false,"verified":false,"followers_count":68,"friends_count":309,"listed_count":0,"favourites_count":70,"statuses_count":1066,"created_at":"Sun Dec 21 16:52:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556942160386621441\/Rn2qHGtM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556942160386621441\/Rn2qHGtM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2935510397\/1419621467","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 23 18:42:22 +0000 2015","id":569930283274903552,"id_str":"569930283274903552","text":"The Best Speeches From Last Night\u2019s Oscars http:\/\/t.co\/RXwF7Z8UeP http:\/\/t.co\/7emQMCvNlt","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"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":2377815434,"id_str":"2377815434","name":"ClickHole","screen_name":"ClickHole","location":"","url":"http:\/\/www.clickhole.com","description":"Because all content deserves to go viral.","protected":false,"verified":true,"followers_count":96512,"friends_count":11,"listed_count":864,"favourites_count":1412,"statuses_count":5253,"created_at":"Fri Mar 07 23:51:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512247328535633922\/mAA0SAhd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512247328535633922\/mAA0SAhd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2377815434\/1402337914","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":119,"favorite_count":160,"entities":{"hashtags":[],"trends":[],"urls":[{"url":"http:\/\/t.co\/RXwF7Z8UeP","expanded_url":"http:\/\/www.clickhole.com\/r\/1974tsd","display_url":"clickhole.com\/r\/1974tsd","indices":[43,65]}],"user_mentions":[],"symbols":[],"media":[{"id":569930282791612416,"id_str":"569930282791612416","indices":[66,88],"media_url":"http:\/\/pbs.twimg.com\/media\/B-jMkpSIMAAK5-R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-jMkpSIMAAK5-R.jpg","url":"http:\/\/t.co\/7emQMCvNlt","display_url":"pic.twitter.com\/7emQMCvNlt","expanded_url":"http:\/\/twitter.com\/ClickHole\/status\/569930283274903552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":213,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":640,"h":401,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":569930282791612416,"id_str":"569930282791612416","indices":[66,88],"media_url":"http:\/\/pbs.twimg.com\/media\/B-jMkpSIMAAK5-R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-jMkpSIMAAK5-R.jpg","url":"http:\/\/t.co\/7emQMCvNlt","display_url":"pic.twitter.com\/7emQMCvNlt","expanded_url":"http:\/\/twitter.com\/ClickHole\/status\/569930283274903552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":213,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":640,"h":401,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"trends":[],"urls":[{"url":"http:\/\/t.co\/RXwF7Z8UeP","expanded_url":"http:\/\/www.clickhole.com\/r\/1974tsd","display_url":"clickhole.com\/r\/1974tsd","indices":[58,80]}],"user_mentions":[{"screen_name":"ClickHole","name":"ClickHole","id":2377815434,"id_str":"2377815434","indices":[3,13]}],"symbols":[],"media":[{"id":569930282791612416,"id_str":"569930282791612416","indices":[81,103],"media_url":"http:\/\/pbs.twimg.com\/media\/B-jMkpSIMAAK5-R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-jMkpSIMAAK5-R.jpg","url":"http:\/\/t.co\/7emQMCvNlt","display_url":"pic.twitter.com\/7emQMCvNlt","expanded_url":"http:\/\/twitter.com\/ClickHole\/status\/569930283274903552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":213,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":640,"h":401,"resize":"fit"}},"source_status_id":569930283274903552,"source_status_id_str":"569930283274903552"}]},"extended_entities":{"media":[{"id":569930282791612416,"id_str":"569930282791612416","indices":[81,103],"media_url":"http:\/\/pbs.twimg.com\/media\/B-jMkpSIMAAK5-R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-jMkpSIMAAK5-R.jpg","url":"http:\/\/t.co\/7emQMCvNlt","display_url":"pic.twitter.com\/7emQMCvNlt","expanded_url":"http:\/\/twitter.com\/ClickHole\/status\/569930283274903552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":213,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":640,"h":401,"resize":"fit"}},"source_status_id":569930283274903552,"source_status_id_str":"569930283274903552"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723496177"}
{"created_at":"Mon Feb 23 20:31:36 +0000 2015","id":569957769534509056,"id_str":"569957769534509056","text":"'Zeddlena' Attend The Vanity Fair Oscars After-Party - http:\/\/t.co\/nnzY0fSXVg","source":"\u003ca href=\"http:\/\/www.inquisitr.com\" rel=\"nofollow\"\u003eThe Inquisitr\u003c\/a\u003e","truncated":false,"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":1372272469,"id_str":"1372272469","name":"Inquisitr Showbiz","screen_name":"IQShowbiz","location":"","url":"http:\/\/www.inquisitr.com\/category\/entertainment\/","description":"The latest Showbiz news from @TheInquisitr","protected":false,"verified":false,"followers_count":4261,"friends_count":478,"listed_count":30,"favourites_count":72,"statuses_count":24370,"created_at":"Mon Apr 22 14:25:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/421015230140121088\/CYKCgbsA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/421015230140121088\/CYKCgbsA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1372272469\/1380110066","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"trends":[],"urls":[{"url":"http:\/\/t.co\/nnzY0fSXVg","expanded_url":"http:\/\/www.inquisitr.com\/1868483\/zeddlena-lives-on-selena-gomez-zedd-attend-the-vanity-fair-oscars-after-party\/?utm_source=website&utm_campaign=wpbirdnest&utm_medium=web","display_url":"inquisitr.com\/1868483\/zeddle\u2026","indices":[55,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723496217"}
{"created_at":"Mon Feb 23 20:31:36 +0000 2015","id":569957769979146243,"id_str":"569957769979146243","text":"[Mashable] The Oscars were good news for Facebook; Twitter, not so much http:\/\/t.co\/Cn2ISKz5XR","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"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":424045046,"id_str":"424045046","name":"Selena Vanderpoel","screen_name":"selenavdp","location":"New York, USA","url":null,"description":"Speaker, Teacher, Trainer, Mentor, Motivator & Dancer. \r\nFollow the mantra from @Oprah : Live Your Best Life","protected":false,"verified":false,"followers_count":38773,"friends_count":1030,"listed_count":25,"favourites_count":12,"statuses_count":103364,"created_at":"Tue Nov 29 07:45:40 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2057448606\/selenavanderpoel_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2057448606\/selenavanderpoel_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"trends":[],"urls":[{"url":"http:\/\/t.co\/Cn2ISKz5XR","expanded_url":"http:\/\/dlvr.it\/8j8cCS","display_url":"dlvr.it\/8j8cCS","indices":[72,94]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1424723496323"}

json alist added by eggless on Fri Feb 27 07:47:05 2015

((created_at . "Mon Feb 23 20:31:35 +0000 2015")
 (id . 569957766435119104)
 (id_str . "569957766435119104")
 (text .
       "RT @MEMMOSdubai: The Oscars were good news for Facebook; Twitter, not so much http://t.co/NKOAiaSRxI MEMMOSDubai #Dubai #UAE")
 (source
   .
   "TweetAdder v4")
 (truncated . #f)
 (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 . 3022341707)
       (id_str . "3022341707")
       (name . "Nilsa")
       (screen_name . "nilsa570")
       (location . "")
       (url . "http://mcaf.ee/v34br")
       (description . "I will give you 15000 youtube subscribers for $20")
       (protected . #f)
       (verified . #f)
       (followers_count . 83)
       (friends_count . 626)
       (listed_count . 18)
       (favourites_count . 0)
       (statuses_count . 3520)
       (created_at . "Fri Feb 06 22:53:48 +0000 2015")
       (utc_offset . null)
       (time_zone . null)
       (geo_enabled . #f)
       (lang . "en")
       (contributors_enabled . #f)
       (is_translator . #f)
       (profile_background_color . "C0DEED")
       (profile_background_image_url
         .
         "http://abs.twimg.com/images/themes/theme1/bg.png")
       (profile_background_image_url_https
         .
         "https://abs.twimg.com/images/themes/theme1/bg.png")
       (profile_background_tile . #f)
       (profile_link_color . "0084B4")
       (profile_sidebar_border_color . "C0DEED")
       (profile_sidebar_fill_color . "DDEEF6")
       (profile_text_color . "333333")
       (profile_use_background_image . #t)
       (profile_image_url
         .
         "http://pbs.twimg.com/profile_images/564772885101682688/CbO-xelX_normal.jpeg")
       (profile_image_url_https
         .
         "https://pbs.twimg.com/profile_images/564772885101682688/CbO-xelX_normal.jpeg")
       (profile_banner_url
         .
         "https://pbs.twimg.com/profile_banners/3022341707/1423487317")
       (default_profile . #t)
       (default_profile_image . #f)
       (following . null)
       (follow_request_sent . null)
       (notifications . null))
 (geo . null)
 (coordinates . null)
 (place . null)
 (contributors . null)
 (retweeted_status
   (created_at . "Mon Feb 23 20:31:20 +0000 2015")
   (id . 569957702136406016)
   (id_str . "569957702136406016")
   (text .
         "The Oscars were good news for Facebook; Twitter, not so much http://t.co/NKOAiaSRxI MEMMOSDubai #Dubai #UAE")
   (source . "IFTTT")
   (truncated . #f)
   (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 . 415753384)
         (id_str . "415753384")
         (name . "MEMMOS Enterprises")
         (screen_name . "MEMMOSdubai")
         (location . "Dubai, Uniter Arab Emirates")
         (url . "http://www.memmos.ae")
         (description
           .
           "Based in #Dubai, UAE. MEMMOS empowers your Business! Specialized in Social Media, Consulting & Brokerage. Connected to major local & international power links.")
         (protected . #f)
         (verified . #f)
         (followers_count . 40173)
         (friends_count . 33081)
         (listed_count . 58)
         (favourites_count . 234)
         (statuses_count . 17398)
         (created_at . "Fri Nov 18 19:26:23 +0000 2011")
         (utc_offset . 14400)
         (time_zone . "Yerevan")
         (geo_enabled . #t)
         (lang . "en")
         (contributors_enabled . #f)
         (is_translator . #f)
         (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 . #t)
         (profile_link_color . "FF0000")
         (profile_sidebar_border_color . "000000")
         (profile_sidebar_fill_color . "EFEFEF")
         (profile_text_color . "333333")
         (profile_use_background_image . #t)
         (profile_image_url
           .
           "http://pbs.twimg.com/profile_images/481213549134348289/W0N8bJju_normal.png")
         (profile_image_url_https
           .
           "https://pbs.twimg.com/profile_images/481213549134348289/W0N8bJju_normal.png")
         (profile_banner_url
           .
           "https://pbs.twimg.com/profile_banners/415753384/1407616113")
         (default_profile . #f)
         (default_profile_image . #f)
         (following . null)
         (follow_request_sent . null)
         (notifications . null))
   (geo . null)
   (coordinates . null)
   (place . null)
   (contributors . null)
   (retweet_count . 10)
   (favorite_count . 0)
   (entities
     (hashtags
       .
       #(((text . "Dubai") (indices . #(96 102)))
         ((text . "UAE") (indices . #(103 107)))))
     (trends . #())
     (urls .
           #(((url . "http://t.co/NKOAiaSRxI")
              (expanded_url . "http://ift.tt/1Lwjf9q")
              (display_url . "ift.tt/1Lwjf9q")
              (indices . #(61 83)))))
     (user_mentions . #())
     (symbols . #()))
   (favorited . #f)
   (retweeted . #f)
   (possibly_sensitive . #f)
   (filter_level . "low")
   (lang . "en"))
 (retweet_count . 0)
 (favorite_count . 0)
 (entities
   (hashtags
     .
     #(((text . "Dubai") (indices . #(113 119)))
       ((text . "UAE") (indices . #(120 124)))))
   (trends . #())
   (urls .
         #(((url . "http://t.co/NKOAiaSRxI")
            (expanded_url . "http://ift.tt/1Lwjf9q")
            (display_url . "ift.tt/1Lwjf9q")
            (indices . #(78 100)))))
   (user_mentions
     .
     #(((screen_name . "MEMMOSdubai")
        (name . "MEMMOS Enterprises")
        (id . 415753384)
        (id_str . "415753384")
        (indices . #(3 15)))))
   (symbols . #()))
 (favorited . #f)
 (retweeted . #f)
 (possibly_sensitive . #f)
 (filter_level . "low")
 (lang . "en")
 (timestamp_ms . "1424723495478"))

Your annotation:

Enter a new annotation:

Your nick:
The title of your paste:
Your paste (mandatory) :
Name of the CHICKEN interpreter:
Visually impaired? Let me spell it for you (wav file) download WAV