diff --git a/CWfiles/.ipynb_checkpoints/Feature Engineering-checkpoint.ipynb b/CWfiles/.ipynb_checkpoints/Feature Engineering-checkpoint.ipynb index e5ccb42260de7da0881d7654c34113ef83d7c0f0..b38553e3d062ceed443d241555841b415ece9596 100644 --- a/CWfiles/.ipynb_checkpoints/Feature Engineering-checkpoint.ipynb +++ b/CWfiles/.ipynb_checkpoints/Feature Engineering-checkpoint.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 137, + "execution_count": 192, "metadata": {}, "outputs": [], "source": [ @@ -14,7 +14,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 56, "metadata": {}, "outputs": [ { @@ -164,48 +164,7 @@ }, { "cell_type": "code", - "execution_count": 45, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "[nltk_data] Downloading package wordnet to /home/aleko/nltk_data...\n", - "[nltk_data] Unzipping corpora/wordnet.zip.\n" - ] - }, - { - "data": { - "text/plain": [ - "True" - ] - }, - "execution_count": 45, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import nltk\n", - "nltk.download('wordnet')" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "metadata": {}, - "outputs": [], - "source": [ - "from nltk.stem import WordNetLemmatizer \n", - "\n", - "# Saving the lemmatizer into an object\n", - "wordnet_lemmatizer = WordNetLemmatizer()" - ] - }, - { - "cell_type": "code", - "execution_count": 138, + "execution_count": 193, "metadata": {}, "outputs": [], "source": [ @@ -213,7 +172,7 @@ "from nltk.corpus import stopwords\n", "from nltk.tokenize.treebank import TreebankWordDetokenizer as twd\n", "\n", - "list_of_stopwords = stopwords.words('english') + stopwords.words('spanish') + stopwords.words('arabic') + stopwords.words('russian') + stopwords.words('swedish') + stopwords.words('dutch')\n", + "list_of_stopwords = stopwords.words('english') + stopwords.words('french') + stopwords.words('spanish') + stopwords.words('portuguese') + stopwords.words('arabic') + stopwords.words('russian') + stopwords.words('swedish') + stopwords.words('dutch') + stopwords.words('indonesian')\n", "\n", "#remove stopwords\n", "def remove_stopwords(tweet):\n", @@ -233,29 +192,39 @@ "#change content \n", "dataset['changed_tweets'] = dataset['tweetText']\n", "\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(RT|Rt):?\\s?.?(@?\\w+:?).*', '') #remove retweets \n", + "\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('[“”\"]@\\w+:[\\w\\W]*[“”\"]', '') #remove quoted retweets\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(RT|Rt):?\\s?\\W?(@?\\w+:?).*', '') #remove retweets \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('MT\\s?:?\\s?[“”\"]?@\\w+:.*', '') #remove retweets \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.lower() \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('@\\w+:.*', '') #remove retweets \n", + "\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(via)?\\s?(@\\w+:?)', '') #remove mentions\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?MT\\s', '')\n", + "#dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?MT\\s', '')\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(https?://\\s?t.co/\\w+)|(http:\\s\\W+t.co\\W+\\w+)', '') #remove http links\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.lower() #convert text to lowercase\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\b)yea\\b', ' yes ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('-+>', '') \n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s[bB][tT][wW]', ' by the way')\n", + "\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('>|<', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\\\\\\\n', ' ') #remove special characters \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b[o0]_[o0]\\b', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b:[o0]\\b', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b:p\\b', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('h/t', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('_|#', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\/', ' ')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('n\\.y\\.c?|n\\.j\\.', '')\n", + "\n", + "\n", + "\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sbtw', ' by the way')\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s1st', ' first')\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s2nd', ' second')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('&', 'and') \n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\scuz', ' because')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('bcuz', 'because')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\\\\\\\n', ' ') #remove special characters \n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b[o0]_[o0]\\b', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b:[o0]\\b', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b:[p]\\b', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('_', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('#', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('/', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('>', ' greater than ') #remove gt lt \n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('<', ' less than ')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('&', 'and') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\b)yea\\b', ' yes ')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\su\\s', ' you ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sr\\s', ' are ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sur\\s', ' your ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('hurricanesandy', 'hurricane sandy') \n", + "\n", "\n", "#removing corrupted rows\n", "indexnames1 = dataset[dataset['changed_tweets'].str.contains(pat = \"\\+0000\")].index\n", @@ -263,9 +232,56 @@ "\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('[^\\w\\s]', ' ') #remove special characters \n", "\n", - "#remove duplicates\n", - "dataset.drop_duplicates(subset = 'changed_tweets', keep = 'first', inplace = True)\n", - " \n", + "\n", + "#remove digits\n", + "\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)\\d[^\\s\\d]*', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)\\d\\d[^\\s\\d]*', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)\\d\\d\\d[^\\s\\d]*', '') \n", + "\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('bcuz', 'because')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)ny\\s', ' new york ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('newyork', 'new york') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)nyc\\s', ' new york city ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)nj\\s', ' new jersey ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sasi\\s', ' así ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\svs\\s', ' versus ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)im\\s', ' i am ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sthru\\s', ' i am ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sn\\s', ' and ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sgoin\\s', ' going ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('unknownsoldier', 'unknown soldier')\n", + "\n", + "\n", + "\n", + "\n", + "#removing unnecessary words\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('π', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('ΰέ', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?whoa+h?', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('lmf?ao+', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sbro\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sdis\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\soh\\s', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?(ha)+\\s|\\s?(waha)+\\s', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('omf?g+', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sà\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\ssh\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('regram', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('instamood', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('yikes', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('wow', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('smh', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)rt\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('lo+l', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(o+h+)+', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('wtf|\\s?v[ií]a\\s', '')\n", + "#dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\brt\\b', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?yo\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sabt\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sβ\\s', '') \n", + "\n", + "\n", "dataset['changed_tweets'] = dataset['changed_tweets'].apply(lambda x : remove_stopwords(x)) #remove stopwords\n", "\n", "#drop fields where tweet is empty\n", @@ -283,6 +299,10 @@ "#detokenize words to drop duplicates again\n", "#dataset['tweetText'] = dataset['tweetText'].apply(lambda x : \"\".join([\" \"+i if not i.startswith(\"'\") and i not in string.punctuation else i for i in x]).strip()) \n", "\n", + "#remove duplicates\n", + "dataset.drop_duplicates(subset = 'changed_tweets', keep = 'first', inplace = True)\n", + " \n", + "\n", "dataset = dataset.reset_index(drop=True)\n", "\n", "\n" @@ -290,58 +310,64 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 195, "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "14" - ] - }, - "execution_count": 26, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "<class 'pandas.core.frame.DataFrame'>\n", + "RangeIndex: 9707 entries, 0 to 9706\n", + "Data columns (total 9 columns):\n", + "tweetId 9707 non-null int64\n", + "tweetText 9707 non-null object\n", + "userId 9707 non-null int64\n", + "imageId(s) 9707 non-null object\n", + "username 9707 non-null object\n", + "timestamp 9707 non-null object\n", + "label 9707 non-null object\n", + "label_code 9707 non-null int64\n", + "changed_tweets 9707 non-null object\n", + "dtypes: int64(3), object(6)\n", + "memory usage: 682.6+ KB\n" + ] } ], "source": [ - "len(indexnames1)" + "dataset.info()" ] }, { "cell_type": "code", - "execution_count": 125, + "execution_count": 174, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "<class 'pandas.core.frame.DataFrame'>\n", - "RangeIndex: 10851 entries, 0 to 10850\n", - "Data columns (total 9 columns):\n", - "tweetId 10851 non-null int64\n", - "tweetText 10851 non-null object\n", - "userId 10851 non-null int64\n", - "imageId(s) 10851 non-null object\n", - "username 10851 non-null object\n", - "timestamp 10851 non-null object\n", - "label 10851 non-null object\n", - "label_code 10851 non-null int64\n", - "changed_tweets 10851 non-null object\n", - "dtypes: int64(3), object(6)\n", - "memory usage: 763.1+ KB\n" + "0\n" ] } ], "source": [ - "dataset.info()\n" + "#check for empty strings\n", + "tw = dataset['changed_tweets']\n", + "count = 0\n", + "for i in range(len(tw)):\n", + " if tw[i]==' ':\n", + " count +=1\n", + "print(count)\n", + " " ] }, { "cell_type": "code", - "execution_count": 68, - "metadata": {}, + "execution_count": 194, + "metadata": { + "scrolled": true + }, "outputs": [ { "name": "stdout", @@ -355,12 +381,6 @@ "acuerdan película día después mañana recuerda pasando huracán sandy \n", "\n", "\n", - "@milenagimon: Miren a Sandy en NY! Tremenda imagen del huracán. Parece el \"Día de la Independencia 2\" http://t.co/41jUweux REAL! RT.\n", - "\n", - "--------------------------------------------------------\n", - "miren sandy ny tremenda imagen huracán parece día independencia 2 real rt \n", - "\n", - "\n", "Buena la foto del Huracán Sandy, me recuerda a la película Día de la Independencia #ID4 #Sandy http://t.co/PTdAXABZ\n", "\n", "--------------------------------------------------------\n", @@ -370,19 +390,19 @@ "Scary shit #hurricane #NY http://t.co/e4JLBUfH\n", "\n", "--------------------------------------------------------\n", - "scary shit hurricane ny \n", + "scary shit hurricane new york \n", "\n", "\n", "My fave place in the world #nyc #hurricane #sandy #statueofliberty 🗽 http://t.co/Ex61doZk\n", "\n", "--------------------------------------------------------\n", - "fave place world nyc hurricane sandy statueofliberty \n", + "fave place world new york city hurricane sandy statueofliberty \n", "\n", "\n", "42nd #time #square #NYC #subway #hurricane http://t.co/daX5YY7X\n", "\n", "--------------------------------------------------------\n", - "42nd time square nyc subway hurricane \n", + "2nd time square new york city subway hurricane \n", "\n", "\n", "Just in time for #halloween a photo of #hurricane #sandy #frankenstorm http://t.co/xquKB4VN\n", @@ -400,19 +420,19 @@ "#sandy #newyork #hurricane #statueofliberty #USA http://t.co/iQfEbO1E\n", "\n", "--------------------------------------------------------\n", - "sandy newyork hurricane statueofliberty usa \n", + "sandy new york hurricane statueofliberty usa \n", "\n", "\n", "#nyc #hurricane http://t.co/Gv3QxZlq\n", "\n", "--------------------------------------------------------\n", - "nyc hurricane \n", + "new york city hurricane \n", "\n", "\n", "robertosalibaba god be with u brother #sandy #hurricane #newyork http://t.co/GXheTqlO\n", "\n", "--------------------------------------------------------\n", - "robertosalibaba god brother sandy hurricane newyork \n", + "robertosalibaba god brother sandy hurricane new york \n", "\n", "\n", "#Crazy #Hurricane #Sandy http://t.co/0zrMsgvs\n", @@ -430,13 +450,13 @@ "Good luck #ny #newyork #usa #hurricane #sandy http://t.co/0y435Anw\n", "\n", "--------------------------------------------------------\n", - "good luck ny newyork usa hurricane sandy \n", + "good luck new york new york usa hurricane sandy \n", "\n", "\n", "Wow.... Fishing anyone? #hurricane #sandy http://t.co/LS0Kx0zm\n", "\n", "--------------------------------------------------------\n", - "wow fishing anyone hurricane sandy \n", + "fishing anyone hurricane sandy \n", "\n", "\n", "Well #howdy there #hurricane #sandy . Just wanted to let you know that you took my power, internet, && happi http://t.co/qKxLQEmT\n", @@ -448,19 +468,19 @@ "Just known this bcs of #jason #chen updated the pic! Everyone be safe! #newyork #sandy #hurricane #nature #e http://t.co/c6VTaBkT\n", "\n", "--------------------------------------------------------\n", - "known bcs jason chen updated pic everyone safe newyork sandy hurricane nature \n", + "known bcs jason chen updated pic everyone safe new york sandy hurricane nature \n", "\n", "\n", "My thoughts and prayers go to all of the people going thru #hurricane #sandy #ct #de #ma #md #me #nc #nh #nj http://t.co/kvKzXOg1\n", "\n", "--------------------------------------------------------\n", - "thoughts prayers go people going thru hurricane sandy ct md nc nh nj \n", + "thoughts prayers go people going hurricane sandy ct md nc nh new jersey \n", "\n", "\n", "Stay safe my New York family...#nyc #newyork #storm #hurricane #wind http://t.co/iSdoZmLs\n", "\n", "--------------------------------------------------------\n", - "stay safe new york family nyc newyork storm hurricane wind \n", + "stay safe new york family new york city new york storm hurricane wind \n", "\n", "\n", "New York #hurricane #Sandy http://t.co/AnrR8u7t\n", @@ -472,7 +492,7 @@ "Probably the coolest pic of #hurricanesandy! #hurricane #sandy #weather #storm #statueofliberty http://t.co/RCf5ZKrn\n", "\n", "--------------------------------------------------------\n", - "probably coolest pic hurricanesandy hurricane sandy weather storm statueofliberty \n", + "probably coolest pic hurricane sandy hurricane sandy weather storm statueofliberty \n", "\n", "\n", "Crazy #sandy #hurricane images. Be glad we live in the #west coast. http://t.co/c2wYXDao\n", @@ -484,13 +504,13 @@ "My cousin sent this to me... :: Cleveland voice :: We gon' die!!! ☁⚡☔🌊 #hurricane #hurricanesandy #sandy http://t.co/XtW4exLn\n", "\n", "--------------------------------------------------------\n", - "cousin sent cleveland voice gon hurricane hurricanesandy sandy \n", + "cousin sent cleveland voice gon hurricane hurricane sandy sandy \n", "\n", "\n", "We forget tomb unknown soldier is guard 24/7365 ! Taken today #hurricane #sandy #frankenstorm http://t.co/mFEfmCMk\n", "\n", "--------------------------------------------------------\n", - "forget tomb unknown soldier guard 24 7365 taken today hurricane sandy frankenstorm \n", + "forget tomb unknown soldier guard4365 taken today hurricane sandy frankenstorm \n", "\n", "\n", "“@DarcyPhilip #new #york #hurricane #sandy http://t.co/z82Y0Kah” Bruh\n", @@ -502,7 +522,7 @@ "New York \"attacked\" by Sandy. #NewYork #statueofliberty #hurricane #Sandy #dark #attack #sky #picoftheday # http://t.co/6PSNTCj9\n", "\n", "--------------------------------------------------------\n", - "new york attacked sandy newyork statueofliberty hurricane sandy dark attack sky picoftheday \n", + "new york attacked sandy new york statueofliberty hurricane sandy dark attack sky picoftheday \n", "\n", "\n", "This is sooo cute! #puupy #dog #hurricane #sandy #cute #adorable #flood #trees #golden #retriever #classic ☺ http://t.co/7nXoqVIY\n", @@ -514,13 +534,13 @@ "empty streets #nyc #hurricane #sandy http://t.co/Uro00bM7\n", "\n", "--------------------------------------------------------\n", - "empty streets nyc hurricane sandy \n", + "empty streets new york city hurricane sandy \n", "\n", "\n", "Shark. #Sandy #JerseyIThink #Hurricane #NYC #SomethingIsntRight #Animals #Shark #NaturalDisasterOrNot http://t.co/rylmIz5H\n", "\n", "--------------------------------------------------------\n", - "shark sandy jerseyithink hurricane nyc somethingisntright animals shark naturaldisasterornot \n", + "shark sandy jerseyithink hurricane new york city somethingisntright animals shark naturaldisasterornot \n", "\n", "\n", "Craziest picture ever #hurricane http://t.co/KaF8zQPE\n", @@ -532,7 +552,7 @@ "#hurricane #sandy #WOW #NYC http://t.co/Gs7YMXXC\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy wow nyc \n", + "hurricane sandy new york city \n", "\n", "\n", "So New York is getting a little rain... #Hurricane #Sandy http://t.co/frWrVIss\n", @@ -550,13 +570,13 @@ "Lord have mercy on their souls #Hurricane #Sandy #NewYork #RIP http://t.co/MYJpbl11\n", "\n", "--------------------------------------------------------\n", - "lord mercy souls hurricane sandy newyork rip \n", + "lord mercy souls hurricane sandy new york rip \n", "\n", "\n", "Look at this amazing pic taken today of #sandy #NYC #NewYorkCity #LadyLiberty #Hurricane #Amazing #Weather http://t.co/H4v7NbnI\n", "\n", "--------------------------------------------------------\n", - "look amazing pic taken today sandy nyc newyorkcity ladyliberty hurricane amazing weather \n", + "look amazing pic taken today sandy new york city new yorkcity ladyliberty hurricane amazing weather \n", "\n", "\n", "Mans best friend #love #hurricane #sandy #dog http://t.co/rJPcUYUn\n", @@ -574,7 +594,7 @@ "Terrifying. #NY #hurricane #sandy #statueofliberty http://t.co/MSduqf2r\n", "\n", "--------------------------------------------------------\n", - "terrifying ny hurricane sandy statueofliberty \n", + "terrifying new york hurricane sandy statueofliberty \n", "\n", "\n", "#hurricane #sandy lookin like a bag of money http://t.co/lIWWuj6U\n", @@ -592,13 +612,13 @@ "wow! #hurricane #Sandy over lady liberty http://t.co/UbNMPbru via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy lady liberty \n", + "hurricane sandy lady liberty \n", "\n", "\n", "UMMMM😳 #shark #hurricane #nj WOAHH http://t.co/ach2BzUW\n", "\n", "--------------------------------------------------------\n", - "ummmm shark hurricane nj woahh \n", + "ummmm shark hurricane new jersey woahh \n", "\n", "\n", "#amazing #photography #nature #hurricane #sandy #clouds http://t.co/04kgQRRZ\n", @@ -610,7 +630,7 @@ "So...that's a shark swimming in someone's front yard in NJ. #Sandy #shark #landshark #hurricane #fishing #be http://t.co/Vy7NOhKp\n", "\n", "--------------------------------------------------------\n", - "shark swimming someone front yard nj sandy shark landshark hurricane fishing \n", + "shark swimming someone front yard new jersey sandy shark landshark hurricane fishing \n", "\n", "\n", "uh #hurricane #sandy #wind #blowing #cloudy #water #### # http://t.co/OVPam68k\n", @@ -622,31 +642,31 @@ "#hurricane #sandy #NY #NewYork http://t.co/EtktgqAt\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny newyork \n", + "hurricane sandy new york new york \n", "\n", "\n", "Damnnn dis joint look like those end of the world movies #repost #rp #hurricane #sandy http://t.co/6lzyWDj1\n", "\n", "--------------------------------------------------------\n", - "damnnn dis joint look like end world movies repost rp hurricane sandy \n", + "damnnnjoint look like end world movies repost rp hurricane sandy \n", "\n", "\n", "#hurricane #sandy #NY #newyork #america #usa #sky #tube #instago #instaboy #instahub #i#instagood #instagram http://t.co/MMqpZxE8\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny newyork america usa sky tube instago instaboy instahub instagood instagram \n", + "hurricane sandy new york new york america usa sky tube instago instaboy instahub iinstagood instagram \n", "\n", "\n", "#NewYork #Crazy #Statue #Liberty #Hurricane #Today #Nature #2012 http://t.co/wi5DuGPH\n", "\n", "--------------------------------------------------------\n", - "newyork crazy statue liberty hurricane today nature 2012 \n", + "new york crazy statue liberty hurricane today nature012 \n", "\n", "\n", "😱 #shark #nyc #streets #sandy #hurricane http://t.co/NcudDwxJ\n", "\n", "--------------------------------------------------------\n", - "shark nyc streets sandy hurricane \n", + "shark new york city streets sandy hurricane \n", "\n", "\n", "A picture someone took of a shark swimming by their house when it got flooded 😱 \\n#NewJersey #Hurricane #Sand http://t.co/OCXLWDFY\n", @@ -670,13 +690,13 @@ "#2012 #statueofliberty #NYC #world #ends #hurricane #sandy 😳😳 http://t.co/qYPMgIrH\n", "\n", "--------------------------------------------------------\n", - "2012 statueofliberty nyc world ends hurricane sandy \n", + "2 statueofliberty new york city world ends hurricane sandy \n", "\n", "\n", "#NY #hurricane #cool http://t.co/XbXap7JQ\n", "\n", "--------------------------------------------------------\n", - "ny hurricane cool \n", + "new york hurricane cool \n", "\n", "\n", "The Eye of The Storm... #Hurricane #Sandy http://t.co/0mMUrbZN\n", @@ -688,13 +708,7 @@ "#timesquare #newyork #nyc #ghostcity #hurricane #sandy http://t.co/hsVUO6Fn\n", "\n", "--------------------------------------------------------\n", - "timesquare newyork nyc ghostcity hurricane sandy \n", - "\n", - "\n", - "#newyork #hurricane #sandy http://t.co/8wcCP9c5\n", - "\n", - "--------------------------------------------------------\n", - "newyork hurricane sandy \n", + "timesquare new york new york city ghostcity hurricane sandy \n", "\n", "\n", "Hope all my family and friends on the east coast stay safe!! #Hurricane #sandy #ilovecali #storm #clouds #ra http://t.co/dHjMlGrc\n", @@ -703,12 +717,6 @@ "hope family friends east coast stay safe hurricane sandy ilovecali storm clouds ra \n", "\n", "\n", - "#Hurricane #Sandy #NYC 🌀☔🗽 http://t.co/gNLZiF29\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", "Still no place like it !!! RT @cruzr83: Eerie look in Manhattan. #sandy #nyc #weather #hurricane http://t.co/HKpOueN3\n", "\n", "--------------------------------------------------------\n", @@ -718,25 +726,25 @@ "WTF! LaGuardia Airport! #JetBlue #Travel #Sandy #Hurricane http://t.co/rMnIn46u\n", "\n", "--------------------------------------------------------\n", - "wtf laguardia airport jetblue travel sandy hurricane \n", + "laguardia airport jetblue travel sandy hurricane \n", "\n", "\n", "#newyork I'm prayin for y'all #hurricane #sand #realimage #jesus 🙏 http://t.co/S5Daawe3\n", "\n", "--------------------------------------------------------\n", - "newyork prayin hurricane sand realimage jesus \n", + "new york prayin hurricane sand realimage jesus \n", "\n", "\n", "Scary!!!! #newyork #hurricane #sandy #newyorkcity #ny #fuckingrun http://t.co/TyKfkMAj\n", "\n", "--------------------------------------------------------\n", - "scary newyork hurricane sandy newyorkcity ny fuckingrun \n", + "scary new york hurricane sandy new yorkcity new york fuckingrun \n", "\n", "\n", "Que Deus proteja o Soho, a All Saints e a XL ! #Sandy #FuracãoSandy #Hurricane #NY #EUA http://t.co/uEXducey\n", "\n", "--------------------------------------------------------\n", - "deus proteja soho saints xl sandy furacãosandy hurricane ny eua \n", + "deus proteja saints xl sandy furacãosandy hurricane new york eua \n", "\n", "\n", "#sandy #hurricane #fun #usa http://t.co/I61JSFID\n", @@ -748,13 +756,13 @@ "#newyork #hurricane #terrore 😱 http://t.co/ESLk0NFC\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane terrore \n", + "new york hurricane terrore \n", "\n", "\n", "New York gonna be screwed #sandy #hurricane #newyork #fucked http://t.co/ntKAVNu4\n", "\n", "--------------------------------------------------------\n", - "new york gonna screwed sandy hurricane newyork fucked \n", + "new york gonna screwed sandy hurricane new york fucked \n", "\n", "\n", "Can't decide whether it's the #endoftheworld or just this #fucking #sandy #hurricane trying to #destroy the http://t.co/XLsHp7wC\n", @@ -766,19 +774,19 @@ "Um #legit #shark #flood #newjersey #hurricane #sandy http://t.co/frxwbmer\n", "\n", "--------------------------------------------------------\n", - "um legit shark flood newjersey hurricane sandy \n", + "legit shark flood newjersey hurricane sandy \n", "\n", "\n", "That is so creepy! Praying for you NY! #hurricane #sandy #statueofliberty http://t.co/MmXzbFDP\n", "\n", "--------------------------------------------------------\n", - "creepy praying ny hurricane sandy statueofliberty \n", + "creepy praying new york hurricane sandy statueofliberty \n", "\n", "\n", "THE PERFECT STORM:SANDY. #storm #nature #power #nyc #hurricane #sandy #perfect #igersnewyork #newyork #liber http://t.co/HPtWkoBg\n", "\n", "--------------------------------------------------------\n", - "perfect storm sandy storm nature power nyc hurricane sandy perfect igersnewyork newyork liber \n", + "perfect storm sandy storm nature power new york city hurricane sandy perfect igersnew york new york liber \n", "\n", "\n", "Crazy #hurricane #nofilter http://t.co/7D5R6ir1\n", @@ -790,13 +798,13 @@ "la foto de helenanovellas #newyork #sandy #hurricane http://t.co/iY0W1aTU\n", "\n", "--------------------------------------------------------\n", - "foto helenanovellas newyork sandy hurricane \n", + "foto helenanovellas new york sandy hurricane \n", "\n", "\n", "#sandy #NYC #Hurricane http://t.co/Kg9alCmy\n", "\n", "--------------------------------------------------------\n", - "sandy nyc hurricane \n", + "sandy new york city hurricane \n", "\n", "\n", "#hurricane #sandy #shark http://t.co/8uDQRoZv\n", @@ -808,85 +816,85 @@ "Yup, this definitely makes it seem like the world's ending.. #hurricane #newyork http://t.co/nSc8eVWA\n", "\n", "--------------------------------------------------------\n", - "yup definitely makes seem like world ending hurricane newyork \n", + "yup definitely makes seem like world ending hurricane new york \n", "\n", "\n", "#nyc #hurricane #sandy ☔ ☁ 🇺🇸 http://t.co/a9jKNIzd\n", "\n", "--------------------------------------------------------\n", - "nyc hurricane sandy \n", + "new york city hurricane sandy \n", "\n", "\n", "Hurricane Sandy looks like hell. #Sandy #hurricane #ny #newyork #storm #brutal http://t.co/4W32i4RQ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy looks like hell sandy hurricane ny newyork storm brutal \n", + "hurricane sandy looks like hell sandy hurricane new york new york storm brutal \n", "\n", "\n", "laurenliithiium's photo http://t.co/Eh4I06zt #nyc #hurricane\n", "\n", "--------------------------------------------------------\n", - "laurenliithiium photo nyc hurricane \n", + "laurenliithiium photo new york city hurricane \n", "\n", "\n", "Such an awesome shot... Hope everyone's alright #hurricanesandy #hurricane #sandy #nofilter #instalikes #awe http://t.co/nSVgXNBd\n", "\n", "--------------------------------------------------------\n", - "awesome shot hope everyone alright hurricanesandy hurricane sandy nofilter instalikes awe \n", + "awesome shot hope everyone alright hurricane sandy hurricane sandy nofilter instalikes awe \n", "\n", "\n", "So Beatiful But Yet So Tragic!!! #NewYork #Hurricane http://t.co/YGUbSiA1\n", "\n", "--------------------------------------------------------\n", - "beatiful yet tragic newyork hurricane \n", + "beatiful yet tragic new york hurricane \n", "\n", "\n", "stay safe east coast! #hurricane #sandy #NY #NewYork http://t.co/P9UPcHCU\n", "\n", "--------------------------------------------------------\n", - "stay safe east coast hurricane sandy ny newyork \n", + "stay safe east coast hurricane sandy new york new york \n", "\n", "\n", "#newyork #weather #hurricane #sandy #god #bless #audhubillah #storm #🌊☔⚡ http://t.co/a07eJIzi\n", "\n", "--------------------------------------------------------\n", - "newyork weather hurricane sandy god bless audhubillah storm \n", + "new york weather hurricane sandy god bless audhubillah storm \n", "\n", "\n", "That's cray 😳#nyc #hurricane #sandy #statueofliberty #newyorkharbor @ New York Harbor http://t.co/9nzjE5xY\n", "\n", "--------------------------------------------------------\n", - "cray nyc hurricane sandy statueofliberty newyorkharbor new york harbor \n", + "cray new york city hurricane sandy statueofliberty new yorkharbor new york harbor \n", "\n", "\n", "#sandy #ny #nypd #hurricane #hurricanesandy #storm #stunning http://t.co/bBRD6ReO\n", "\n", "--------------------------------------------------------\n", - "sandy ny nypd hurricane hurricanesandy storm stunning \n", + "sandy new york nypd hurricane hurricane sandy storm stunning \n", "\n", "\n", "Hurricane Sandy has arrived in NYC. #hurricane #sandy #instagreat #id4 http://t.co/u96j4PJM\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy arrived nyc hurricane sandy instagreat id4 \n", + "hurricane sandy arrived new york city hurricane sandy instagreat id4 \n", "\n", "\n", "East Coast, we all pray everything is ok and the storm would go away #amazing #picture #storm #hurricane #ny http://t.co/NyDxOm7L\n", "\n", "--------------------------------------------------------\n", - "east coast pray everything ok storm would go away amazing picture storm hurricane ny \n", + "east coast pray everything ok storm would go away amazing picture storm hurricane new york \n", "\n", "\n", "#ny #new #york #usa #winter #rain #hurricane #cool #beautiful #amazing http://t.co/gDmWySs3\n", "\n", "--------------------------------------------------------\n", - "ny new york usa winter rain hurricane cool beautiful amazing \n", + "new york new york usa winter rain hurricane cool beautiful amazing \n", "\n", "\n", "Sandy about to fuck shit up! #sandy #hurricane #hudsonriver #nyc #hurricanesandy #storm #statueofliberty #20 http://t.co/3uHRyfa8\n", "\n", "--------------------------------------------------------\n", - "sandy fuck shit sandy hurricane hudsonriver nyc hurricanesandy storm statueofliberty 20 \n", + "sandy fuck shit sandy hurricane hudsonriver new york city hurricane sandy storm statueofliberty0 \n", "\n", "\n", "Thoughts going out to people of America! #hurricane #sandy #thinkingofyou http://t.co/c5DDeTB7\n", @@ -904,7 +912,7 @@ "#sick #photo #sandy #hurricane #newyork #rain #wind #storm #omg #feest http://t.co/Shrp4KWQ\n", "\n", "--------------------------------------------------------\n", - "sick photo sandy hurricane newyork rain wind storm omg feest \n", + "sick photo sandy hurricane new york rain wind storm feest \n", "\n", "\n", "😳🏃💨💨💨🌊sharks in jersey!! #hurricane #sandy http://t.co/4vQxYlsT\n", @@ -922,7 +930,7 @@ "In case u missed it. 😮😐😬 #reallife #NY #hurricane #sandy #2012 http://t.co/x3QvKfFG\n", "\n", "--------------------------------------------------------\n", - "case missed reallife ny hurricane sandy 2012 \n", + "case missed reallife new york hurricane sandy012 \n", "\n", "\n", "Independence what? #sandy #perfect #hurricane http://t.co/lq0nzPg5\n", @@ -934,13 +942,13 @@ "SHARK in NJ Subs.\\n#hurricane #life #animal #instapic #instamood #photogram #photography #peta #shark http://t.co/K9NQ9mxM\n", "\n", "--------------------------------------------------------\n", - "shark nj subs hurricane life animal instapic instamood photogram photography peta shark \n", + "shark new jersey subs hurricane life animal instapic photogram photography peta shark \n", "\n", "\n", "#NY #hurricane #nature http://t.co/JPJyA2Sb\n", "\n", "--------------------------------------------------------\n", - "ny hurricane nature \n", + "new york hurricane nature \n", "\n", "\n", "prayers to the East Coast #Hurricane #Sandy http://t.co/PAwCbHtP\n", @@ -952,13 +960,13 @@ "Even Lady Liberty was scared 😱🗽🚣 #hurricane #sandy #2012 #lady #liberty #ny #scared #frenkenstrom #nj #tri-s http://t.co/5bjrREZA\n", "\n", "--------------------------------------------------------\n", - "even lady liberty scared hurricane sandy 2012 lady liberty ny scared frenkenstrom nj tri \n", + "even lady liberty scared hurricane sandy012 lady liberty new york scared frenkenstrom new jersey tri \n", "\n", "\n", "#hurricane #sandy #sky #ny #newyork #statue #liberty #news #amazing #omg #picoftheday #instagramers #clouds http://t.co/lfS1lYl2\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy sky ny newyork statue liberty news amazing omg picoftheday instagramers clouds \n", + "hurricane sandy sky new york new york statue liberty news amazing picoftheday instagramers clouds \n", "\n", "\n", "Got Sharks Swimming in the streets afte #Hurricane #Sandy came through New York http://t.co/LJzJDlJt\n", @@ -970,13 +978,13 @@ "#hurricane #sandy #NewYork #ny #nyc #manhattan #horrible #StatueOfLiberty #irony http://t.co/CSXAIXsw\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork ny nyc manhattan horrible statueofliberty irony \n", + "hurricane sandy new york new york new york city manhattan horrible statueofliberty irony \n", "\n", "\n", "No freakin' way!!! MT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy http://t.co/SiLpmnEY\n", "\n", "--------------------------------------------------------\n", - "freakin way shark swimming streets brigantine n j hurricane sandy \n", + "freakin way \n", "\n", "\n", "#soldiers #hurricane #loyalty http://t.co/2PRkRewa\n", @@ -994,13 +1002,13 @@ "Praying for New York. #newyork #sandy #hurricane #flood #disaster #sbcdr #prayer #instastorm Image created w http://t.co/I0Zoc5k9\n", "\n", "--------------------------------------------------------\n", - "praying new york newyork sandy hurricane flood disaster sbcdr prayer instastorm image created w \n", + "praying new york new york sandy hurricane flood disaster sbcdr prayer instastorm image created w \n", "\n", "\n", "#Sandy #Hurricane #NYC Shit is looking crazyyy over there !! http://t.co/Kw2QP7Ad\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane nyc shit looking crazyyy \n", + "sandy hurricane new york city shit looking crazyyy \n", "\n", "\n", "Nature is Sooo dope. #sandy #hurricane #staysafe #eastcoast #nature #liberty #eyeofstorm http://t.co/ixLQmCTZ\n", @@ -1018,37 +1026,37 @@ "ThisIsComical. (NotReal) #NYC #TimesSquare #Hurricane #Sandy #Weather #ThatBitch #RescuingTrainRats http://t.co/4M5Gsjrz\n", "\n", "--------------------------------------------------------\n", - "thisiscomical notreal nyc timessquare hurricane sandy weather thatbitch rescuingtrainrats \n", + "thisiscomical notreal new york city timessquare hurricane sandy weather thatbitch rescuingtrainrats \n", "\n", "\n", "#newyork #nyc #hurricane #sandy #frankenstorm #halloween #liberty #manhatten #storm #east #coast http://t.co/61fhZGob\n", "\n", "--------------------------------------------------------\n", - "newyork nyc hurricane sandy frankenstorm halloween liberty manhatten storm east coast \n", + "new york new york city hurricane sandy frankenstorm halloween liberty manhatten storm east coast \n", "\n", "\n", "#Hurricane #Sandy #NewYork. I hope not much damage is done at my 2nd home & that no one is badly hurt. http://t.co/OXIIW0DT\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork hope much damage done second home one badly hurt \n", + "hurricane sandy new york hope much damage done second home one badly hurt \n", "\n", "\n", "meanwhile in New Jersey.. #PRAY 4 #NewJersey & #EastCoast #hurricane #Sandy http://t.co/kSeObnAD\n", "\n", "--------------------------------------------------------\n", - "meanwhile new jersey pray 4 newjersey eastcoast hurricane sandy \n", + "meanwhile new jersey pray newjersey eastcoast hurricane sandy \n", "\n", "\n", "Holy ballz, New York. #weather #nyc #newyork #storm #sandy #hurricane #whoa #instahub #instagood #instadaily http://t.co/vkxHV6BB\n", "\n", "--------------------------------------------------------\n", - "holy ballz new york weather nyc newyork storm sandy hurricane whoa instahub instagood instadaily \n", + "holy ballz new york weather new york city new york storm sandy hurricane instahub instagood instadaily \n", "\n", "\n", "#hurricane #sandy #newyork #usa http://t.co/64lHUq67\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork usa \n", + "hurricane sandy new york usa \n", "\n", "\n", "#nodaysoff #tomboftheunknown #teamarmy #hurricane #sandy http://t.co/Mapas2EG\n", @@ -1060,13 +1068,13 @@ "#please let this be #fake #newyork #newyorkcity #nyc #hurricane #sandy #photooftheday #news #water #statueof http://t.co/fQirLTgl\n", "\n", "--------------------------------------------------------\n", - "please let fake newyork newyorkcity nyc hurricane sandy photooftheday news water statueof \n", + "please let fake new york new yorkcity new york city hurricane sandy photooftheday news water statueof \n", "\n", "\n", "Awesome pic of #NYC as #Sandy approaches. #sky #skyline #hurricane #hurricanesandy #Statue o @ New York City http://t.co/OdVrUjd0\n", "\n", "--------------------------------------------------------\n", - "awesome pic nyc sandy approaches sky skyline hurricane hurricanesandy statue new york city \n", + "awesome pic new york city sandy approaches sky skyline hurricane hurricane sandy statue new york city \n", "\n", "\n", "#Jersey #Sandy #Hurricane #Sharks out thea heavy ! This Storm is really a messy mess ! #DC has got the #Trop http://t.co/OpUwlEHZ\n", @@ -1084,7 +1092,7 @@ "this did not actually happen ,) #hurricanesandy #sandy #hurricane #blackout #scarry #apocalypse #igdaily #be http://t.co/ejaDyQWZ\n", "\n", "--------------------------------------------------------\n", - "actually happen hurricanesandy sandy hurricane blackout scarry apocalypse igdaily \n", + "actually happen hurricane sandy sandy hurricane blackout scarry apocalypse igdaily \n", "\n", "\n", "#hurricane #sandy shit just got real http://t.co/xtn0Nv0G\n", @@ -1114,13 +1122,13 @@ "oh you know..just driving down the street and...... Wtf is that a shark!!! #Sandy #Hurricane #2012problems http://t.co/peVPFO4L\n", "\n", "--------------------------------------------------------\n", - "oh know driving street wtf shark sandy hurricane 2012problems \n", + "know driving street shark sandy hurricane012problems \n", "\n", "\n", "Am I the only one that thinks that this pic is hot? #sandy #hurricane #nyc #storm #sky http://t.co/Pqg05sLq\n", "\n", "--------------------------------------------------------\n", - "one thinks pic hot sandy hurricane nyc storm sky \n", + "one thinks pic hot sandy hurricane new york city storm sky \n", "\n", "\n", "#valor #dedication #honor #usarmy #totus #rain #weather #sandy #hurricane http://t.co/AFBLsK72\n", @@ -1132,7 +1140,7 @@ "#NewYork #Hurricane #Sandy #Crazy #beautiful http://t.co/2F5RntGw\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane sandy crazy beautiful \n", + "new york hurricane sandy crazy beautiful \n", "\n", "\n", "#goodluck #eastcoast #storm #hurricane #sandy *what a bitch!* #bestwishes #praying for you #itagalot #love # http://t.co/HshlxXtN\n", @@ -1150,19 +1158,19 @@ "No fucking way! that shit looks scary haha. #nyc #hurricane #sandy http://t.co/vsc6KPJA\n", "\n", "--------------------------------------------------------\n", - "fucking way shit looks scary haha nyc hurricane sandy \n", + "fucking way shit looks scary new york city hurricane sandy \n", "\n", "\n", "Shittt #2012 #Hurricane #Sandy #Storm http://t.co/xUS1xUvj\n", "\n", "--------------------------------------------------------\n", - "shittt 2012 hurricane sandy storm \n", + "shittt012 hurricane sandy storm \n", "\n", "\n", "Found this on twitter. #cool #hurricane #sandy #nyc #newyorkcity #statueofliberty #newyork #storm #weather http://t.co/pRhrOMcf\n", "\n", "--------------------------------------------------------\n", - "found twitter cool hurricane sandy nyc newyorkcity statueofliberty newyork storm weather \n", + "found twitter cool hurricane sandy new york city new yorkcity statueofliberty new york storm weather \n", "\n", "\n", "uhm what?! #shark #scary #hurricane #highway http://t.co/4o4KyWLg\n", @@ -1180,7 +1188,7 @@ "#wow -- #nyc #hurricane #sandy --- #ghosttown --- I've only seen this in movies http://t.co/VWH2CPjL\n", "\n", "--------------------------------------------------------\n", - "wow nyc hurricane sandy ghosttown seen movies \n", + "new york city hurricane sandy ghosttown seen movies \n", "\n", "\n", "#sikmats #hurricane http://t.co/VAmyhgvF\n", @@ -1192,13 +1200,13 @@ "Praying for #newyork! 😲 #sandy #hurricane #storm #nyc #newyorkcity #pray #libertystate #instagram #instaphot http://t.co/yEdMTh0C\n", "\n", "--------------------------------------------------------\n", - "praying newyork sandy hurricane storm nyc newyorkcity pray libertystate instagram instaphot \n", + "praying new york sandy hurricane storm new york city new yorkcity pray libertystate instagram instaphot \n", "\n", "\n", "Just hanging with #sandy in brigantine. #nj #hurricane #sharks http://t.co/ZaNL0qqV\n", "\n", "--------------------------------------------------------\n", - "hanging sandy brigantine nj hurricane sharks \n", + "hanging sandy brigantine new jersey hurricane sharks \n", "\n", "\n", "Акула на шоссейной магистрали \\n#hurricane #sandy\\nhttp://t.co/sxXC9iU6\n", @@ -1210,19 +1218,19 @@ "Hurricane Sandy is on her way!! #photoftheday #hurricane #sandy #newyorkcity http://t.co/2HvJBOaC\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy way photoftheday hurricane sandy newyorkcity \n", + "hurricane sandy way photoftheday hurricane sandy new yorkcity \n", "\n", "\n", "Holy scary..#hurricane #newyork #nofilter #storm http://t.co/mCTyVocU\n", "\n", "--------------------------------------------------------\n", - "holy scary hurricane newyork nofilter storm \n", + "holy scary hurricane new york nofilter storm \n", "\n", "\n", "Statue of Liberty #HurricaneSandy #Sandy #hurricane http://t.co/nB7ZwHYS\n", "\n", "--------------------------------------------------------\n", - "statue liberty hurricanesandy sandy hurricane \n", + "statue liberty hurricane sandy sandy hurricane \n", "\n", "\n", "What a fucking amazing picture!! #Hurricane #sandy http://t.co/PPylAwi2\n", @@ -1252,7 +1260,7 @@ "Ok. Nevermind. That shit is super real. #FOH #wtf #imout #newjersey #sharks #hurricane #sandy #crazyshit http://t.co/cXNUIGdl\n", "\n", "--------------------------------------------------------\n", - "ok nevermind shit super real foh wtf imout newjersey sharks hurricane sandy crazyshit \n", + "ok nevermind shit super real f imout newjersey sharks hurricane sandy crazyshit \n", "\n", "\n", "You can leave now Sandy, you proved your point!! #bipolar #angry #Hurricane #woman #Sandy http://t.co/iAiiLeOI\n", @@ -1270,13 +1278,13 @@ "#Hurricane #Sandy #Frankenstorm #NewYork #Storm #Weather #StatueOfLiberty #EastCoast #Powerful #Beautiful #N http://t.co/KZXvEvNS\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy frankenstorm newyork storm weather statueofliberty eastcoast powerful beautiful n \n", + "hurricane sandy frankenstorm new york storm weather statueofliberty eastcoast powerful beautiful \n", "\n", "\n", "oh my god that is insane #nofilter #NYC #hurricane #sandy #skyporn #instagod #ig http://t.co/FFHEWsBN\n", "\n", "--------------------------------------------------------\n", - "oh god insane nofilter nyc hurricane sandy skyporn instagod ig \n", + "god insane nofilter new york city hurricane sandy skyporn instagod ig \n", "\n", "\n", "Woop woop.. lemme get my surfboard #Repost #Crazy #Hurricane #Sandy http://t.co/Z30k3WnB\n", @@ -1288,25 +1296,25 @@ "FaceBookでshareされまくってる画像。\\n#sandy #ny #nyc #hurricane http://t.co/H9L5X4c0\n", "\n", "--------------------------------------------------------\n", - "facebookでshareされまくってる画像 sandy ny nyc hurricane \n", + "facebookでshareされまくってる画像 sandy new york new york city hurricane \n", "\n", "\n", "All those in New York, stay safe. We keep you in our minds, love Australia. #newyork #hurricane #sandy #hurr http://t.co/enRrletq\n", "\n", "--------------------------------------------------------\n", - "new york stay safe keep minds love australia newyork hurricane sandy hurr \n", + "new york stay safe keep minds love australia new york hurricane sandy hurr \n", "\n", "\n", "Crazy! #Storm #ny #weather #hurricane http://t.co/yI1KrIfv\n", "\n", "--------------------------------------------------------\n", - "crazy storm ny weather hurricane \n", + "crazy storm new york weather hurricane \n", "\n", "\n", "There's a storm coming! #sandy #hurricane #newyork #nyc #igers #picoftheday #iphonesia http://t.co/UwFK7S4S\n", "\n", "--------------------------------------------------------\n", - "storm coming sandy hurricane newyork nyc igers picoftheday iphonesia \n", + "storm coming sandy hurricane new york new york city igers picoftheday iphonesia \n", "\n", "\n", "- Some one is WHYLIN for respect! \\n#Hurricane #Sandy #WFR #Extended #Weekend #IG #photo #Crazy #Wild http://t.co/kNmsGKMk\n", @@ -1318,13 +1326,13 @@ "Fuck you #hurricane #sandy #staysafe #newyork http://t.co/eyAqjHfw\n", "\n", "--------------------------------------------------------\n", - "fuck hurricane sandy staysafe newyork \n", + "fuck hurricane sandy staysafe new york \n", "\n", "\n", "Furacão Sandy nos EUA, impressionante! #hurricanesandy #sandy #hurricane #terrible #instapic #instagood #pic http://t.co/bZ9zrR7T\n", "\n", "--------------------------------------------------------\n", - "furacão sandy eua impressionante hurricanesandy sandy hurricane terrible instapic instagood pic \n", + "furacão sandy eua impressionante hurricane sandy sandy hurricane terrible instapic instagood pic \n", "\n", "\n", "Times Square like never before, almost empty. #hurricane #sandy #did #this http://t.co/qn4Zmf3M\n", @@ -1348,37 +1356,37 @@ "I really hope this isn't real #hurricane #sandy #newyork #statueofliberty #crazy #shit #frankinstorm http://t.co/gc6A9ZXE\n", "\n", "--------------------------------------------------------\n", - "really hope real hurricane sandy newyork statueofliberty crazy shit frankinstorm \n", + "really hope real hurricane sandy new york statueofliberty crazy shit frankinstorm \n", "\n", "\n", "Nunca imaginei imaginar essa cena na vida real... #chocada #eusoualenda #iamlegend #ny #newyork #hurricane # http://t.co/uSIMzw4n\n", "\n", "--------------------------------------------------------\n", - "nunca imaginei imaginar essa cena vida real chocada eusoualenda iamlegend ny newyork hurricane \n", + "nunca imaginei imaginar cena vida real chocada eusoualenda iamlegend new york new york hurricane \n", "\n", "\n", "Hurricane Sandy! #freaky #pretty #hurricane #sandy #crazy #weather #NewYork #clouds http://t.co/kjKCokh3\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy freaky pretty hurricane sandy crazy weather newyork clouds \n", + "hurricane sandy freaky pretty hurricane sandy crazy weather new york clouds \n", "\n", "\n", "This is amazing. #hurricane #tomboftheunknownsoldier #dc #military #usa http://t.co/rmdDVb5T\n", "\n", "--------------------------------------------------------\n", - "amazing hurricane tomboftheunknownsoldier dc military usa \n", + "amazing hurricane tomboftheunknown soldier dc military usa \n", "\n", "\n", "⚡⚡⚡ #sandy #hurricane #nyc #eastcoast #statueofliberty #NOW http://t.co/R5ChK2En\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane nyc eastcoast statueofliberty \n", + "sandy hurricane new york city eastcoast statueofliberty \n", "\n", "\n", "#today #nyc #hurricane #sandy #statue #of #liberty #rain #instapic #instabest #instacool #instashot #instada http://t.co/OKGjlzxA\n", "\n", "--------------------------------------------------------\n", - "today nyc hurricane sandy statue liberty rain instapic instabest instacool instashot instada \n", + "today new york city hurricane sandy statue liberty rain instapic instabest instacool instashot instada \n", "\n", "\n", "Shits about to get real. Take cover and stay safe. #Hurricane #Sandy http://t.co/NpQyqciD\n", @@ -1390,25 +1398,25 @@ "#usa #hurricane #sandy #new #york #newyork #statue #of #liberty #boat #weather #weatherporn #beautiful http://t.co/HxdYMCve\n", "\n", "--------------------------------------------------------\n", - "usa hurricane sandy new york newyork statue liberty boat weather weatherporn beautiful \n", + "usa hurricane sandy new york new york statue liberty boat weather weatherporn beautiful \n", "\n", "\n", "A picture was just taken for #NY #NYC #Sandy #Hurricane\\n(By proffisional Photographer) http://t.co/wyIQvBcO\n", "\n", "--------------------------------------------------------\n", - "picture taken ny nyc sandy hurricane proffisional photographer \n", + "picture taken new york new york city sandy hurricane proffisional photographer \n", "\n", "\n", "#newyork #nature #hurricane http://t.co/xSG7rbZ0\n", "\n", "--------------------------------------------------------\n", - "newyork nature hurricane \n", + "new york nature hurricane \n", "\n", "\n", "Hope everyone will be okay #hurricane #sandy #usa #newyork #like4like #sky #iphone http://t.co/sHQnXbS6\n", "\n", "--------------------------------------------------------\n", - "hope everyone okay hurricane sandy usa newyork like4like sky iphone \n", + "hope everyone okay hurricane sandy usa new york like4like sky iphone \n", "\n", "\n", "The deadly #hurricane #Sandy.. #Nature is so violent yet so #beautiful http://t.co/B7oE5Zqx\n", @@ -1420,49 +1428,49 @@ "Lady Liberty vs Hurricane Sandy #NYC #statue #liberty #hurricane #Sandy #2012 http://t.co/AkD4dU75\n", "\n", "--------------------------------------------------------\n", - "lady liberty vs hurricane sandy nyc statue liberty hurricane sandy 2012 \n", + "lady liberty versus hurricane sandy new york city statue liberty hurricane sandy012 \n", "\n", "\n", "Omg! Everyone on the east coast , stay strong! #hurricane #sandy #hurricanesandy #USA #east #coast #eastcoas http://t.co/aOFZhuNl\n", "\n", "--------------------------------------------------------\n", - "omg everyone east coast stay strong hurricane sandy hurricanesandy usa east coast eastcoas \n", + "everyone east coast stay strong hurricane sandy hurricane sandy usa east coast eastcoas \n", "\n", "\n", "Hurricane Sandy in NYC. Apocalypse now.\\n#sandy #hurricane #unitedstates #america #insta #instago #instame #i http://t.co/hXxAERo4\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc apocalypse sandy hurricane unitedstates america insta instago instame \n", + "hurricane sandy new york city apocalypse sandy hurricane unitedstates america insta instago instame \n", "\n", "\n", "Hurricane Sandy in USA\\n#hurricanesandy #Sandy #hurricane #wind #statueofliberty #USA #fear #water #rescue #9 http://t.co/qIdrF37n\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy usa hurricanesandy sandy hurricane wind statueofliberty usa fear water rescue 9 \n", + "hurricane sandy usa hurricane sandy sandy hurricane wind statueofliberty usa fear water rescue \n", "\n", "\n", "#Sandy #hurricane #NY #newyork #pic #byever #today #apocalypse #liberty http://t.co/oG7VSbHr\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane ny newyork pic byever today apocalypse liberty \n", + "sandy hurricane new york new york pic byever today apocalypse liberty \n", "\n", "\n", "#sandy #Crazy #hurricane #prayers #NYC http://t.co/IzY6DSfv\n", "\n", "--------------------------------------------------------\n", - "sandy crazy hurricane prayers nyc \n", + "sandy crazy hurricane prayers new york city \n", "\n", "\n", "Shark #NJ #NYC #EastCoast #USA #Sandy #Hurricane http://t.co/XAlPP1N6\n", "\n", "--------------------------------------------------------\n", - "shark nj nyc eastcoast usa sandy hurricane \n", + "shark new jersey new york city eastcoast usa sandy hurricane \n", "\n", "\n", "Can't believe this is what New York looks like! #newyork #statueofliberty #hurricane http://t.co/4srKR5DM\n", "\n", "--------------------------------------------------------\n", - "believe new york looks like newyork statueofliberty hurricane \n", + "believe new york looks like new york statueofliberty hurricane \n", "\n", "\n", "Praying for the city that I love and dream about going to. #Hurricane #Sandy #PRAYforNYC #eastcoast #IloveNY http://t.co/Rfm9lZrR\n", @@ -1486,25 +1494,19 @@ "New York, hurricane Sandy. #sandy #hurricane #eeuu #instagram #beautiful #landscape #ny #apple #iphonesia #i http://t.co/4KdkaQUe\n", "\n", "--------------------------------------------------------\n", - "new york hurricane sandy sandy hurricane eeuu instagram beautiful landscape ny apple iphonesia \n", + "new york hurricane sandy sandy hurricane eeuu instagram beautiful landscape new york apple iphonesia \n", "\n", "\n", "#hurricane #sandy #newyork #amazing 🌀☔☁😲 http://t.co/FqKB5ibe\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork amazing \n", - "\n", - "\n", - "😱👎🚤🏃💫#Hurricane #Sandy http://t.co/xOSEtTs3\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "hurricane sandy new york amazing \n", "\n", "\n", "This pic is crazy #Liberty #NYC #Hurricane #Sandy #Rain #Windy #Today #InstaGood #InstaMood #InstaLove @ NYC http://t.co/BSet8qi1\n", "\n", "--------------------------------------------------------\n", - "pic crazy liberty nyc hurricane sandy rain windy today instagood instamood instalove nyc \n", + "pic crazy liberty new york city hurricane sandy rain windy today instagood instalove new york city \n", "\n", "\n", "The beach I grew up going to. #rip #hurricane #sandy http://t.co/RB5BJpxz\n", @@ -1516,7 +1518,7 @@ "This #picture is #epic \\n\\n#nyc #hurricane #sandy #hurricanesandy #2012 #sky #woah #instamazing #instagreat #i http://t.co/UtJUqTvV\n", "\n", "--------------------------------------------------------\n", - "picture epic nyc hurricane sandy hurricanesandy 2012 sky woah instamazing instagreat \n", + "picture epic new york city hurricane sandy hurricane sandy012 sky woah instamazing instagreat \n", "\n", "\n", "Tomb of the Unknown Soldier during #Hurricane #Sandy. #USA #Military #Troops http://t.co/2grgyGJV\n", @@ -1528,37 +1530,37 @@ "This looks like something out of a movie. Pretty scary stuff. #hurricane #sandy #newyork http://t.co/ITQUg6LS\n", "\n", "--------------------------------------------------------\n", - "looks like something movie pretty scary stuff hurricane sandy newyork \n", + "looks like something movie pretty scary stuff hurricane sandy new york \n", "\n", "\n", "Sharks in Atlantic city #atlanticcity #nj #newjersey #sandy #hurricane #hurricanesandy #sharks #brigantine # http://t.co/xDK01TtJ\n", "\n", "--------------------------------------------------------\n", - "sharks atlantic city atlanticcity nj newjersey sandy hurricane hurricanesandy sharks brigantine \n", + "sharks atlantic city atlanticcity new jersey newjersey sandy hurricane hurricane sandy sharks brigantine \n", "\n", "\n", "#Hurricane #Sandy #StatueLiberty #NY http://t.co/WzwhRKqc\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy statueliberty ny \n", + "hurricane sandy statueliberty new york \n", "\n", "\n", "#hurricane #newyork #rain #storm #beautiful #scene #nature #subhanallah #amazing #clouds #city #scary ☁☔ http://t.co/xv93iuHh\n", "\n", "--------------------------------------------------------\n", - "hurricane newyork rain storm beautiful scene nature subhanallah amazing clouds city scary \n", + "hurricane new york rain storm beautiful scene nature subhanallah amazing clouds city scary \n", "\n", "\n", "Insanely powerful photo of hurricane Sandy. Be safe everyone!! #Hurricane #Sandy #NewYork #N @ Battery Park http://t.co/lShKsujq\n", "\n", "--------------------------------------------------------\n", - "insanely powerful photo hurricane sandy safe everyone hurricane sandy newyork n battery park \n", + "insanely powerful photo hurricane sandy safe everyone hurricane sandy new york battery park \n", "\n", "\n", "There's a shark roaming the waters in NJ! 😱😵😦 #sandy #hurricane #newjersey http://t.co/IPBurnsP\n", "\n", "--------------------------------------------------------\n", - "shark roaming waters nj sandy hurricane newjersey \n", + "shark roaming waters new jersey sandy hurricane newjersey \n", "\n", "\n", "#hurricane #sandy #PraysAndThoughts http://t.co/8dM2gwX8\n", @@ -1570,7 +1572,7 @@ "SANDY :O #sandy #storm #omg #like4like #follow4follow #statueofliberty #ny #newyork #clouds #hurricane #wow http://t.co/X5gHLWtd\n", "\n", "--------------------------------------------------------\n", - "sandy sandy storm omg like4like follow4follow statueofliberty ny newyork clouds hurricane wow \n", + "sandy sandy storm like4like follow4follow statueofliberty new york new york clouds hurricane \n", "\n", "\n", "Absolutely crazy. Photo cred from @phillip_rivers #hurricane #sandy http://t.co/E2hIyeLS\n", @@ -1582,19 +1584,19 @@ "This photo is amazing!! #superstorm #hurricane #newyork http://t.co/DBj5IYG7\n", "\n", "--------------------------------------------------------\n", - "photo amazing superstorm hurricane newyork \n", + "photo amazing superstorm hurricane new york \n", "\n", "\n", "Taken by @zupa2732 on the job in Times Square. Stay safe homie. #nyc #sandy #hurricane http://t.co/ZOBlEbH1\n", "\n", "--------------------------------------------------------\n", - "taken job times square stay safe homie nyc sandy hurricane \n", + "taken job times square stay safe homie new york city sandy hurricane \n", "\n", "\n", "#hurricane #sandy #newyork http://t.co/wRHV1wmv\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork \n", + "hurricane sandy new york \n", "\n", "\n", "#hurricane #sandy #crazy #scary http://t.co/08SIcUiX\n", @@ -1606,13 +1608,13 @@ "Holy frankenstorm! #newyork #frankenstorm #hurricane #sandy #insane http://t.co/8KB1tba1\n", "\n", "--------------------------------------------------------\n", - "holy frankenstorm newyork frankenstorm hurricane sandy insane \n", + "holy frankenstorm new york frankenstorm hurricane sandy insane \n", "\n", "\n", "Unbelievable photo as #Hurricane #Sandy sneaks up on the Statue of #Liberty in NYC #iwn http://t.co/zer6OwLo””\n", "\n", "--------------------------------------------------------\n", - "unbelievable photo hurricane sandy sneaks statue liberty nyc iwn \n", + "unbelievable photo hurricane sandy sneaks statue liberty new york city iwn \n", "\n", "\n", "Taken this morning at the Tomb...that's commitment. Staying strong through #Sandy. #Hurricane #RePost #Milit http://t.co/yCc2AEfe\n", @@ -1624,37 +1626,37 @@ "Nature can be so beautiful and interesting to look at but yet so deadly. #NewYork #Hurricane #Sandy 🙏 http://t.co/bhMmj4bF\n", "\n", "--------------------------------------------------------\n", - "nature beautiful interesting look yet deadly newyork hurricane sandy \n", + "nature beautiful interesting look yet deadly new york hurricane sandy \n", "\n", "\n", "#Hurricane #sandy #nyc crazy man !!!! http://t.co/lOh6dcfa\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc crazy \n", + "hurricane sandy new york city crazy \n", "\n", "\n", "Looking out my window to this is amazing!! #newyork #usa #sandy #hurricane #amazing #powerful #picoftheday # http://t.co/ogbaFvWe\n", "\n", "--------------------------------------------------------\n", - "looking window amazing newyork usa sandy hurricane amazing powerful picoftheday \n", + "looking window amazing new york usa sandy hurricane amazing powerful picoftheday \n", "\n", "\n", "#hurricane #Sandy #nyc #usa #pray #godbless #2012 🗽🇺🇸🌀☔☁🌊 http://t.co/vorgJebS\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc usa pray godbless 2012 \n", + "hurricane sandy new york city usa pray godbless012 \n", "\n", "\n", "#Sandy #Hurricane #Newyork http://t.co/n7VIlEEm\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane newyork \n", + "sandy hurricane new york \n", "\n", "\n", "Sandy almost here! #sandy #hurricane #nyc #photo #likeit #likeback #like4like #instaphoto #instadaily #inst http://t.co/OvlrwS8m\n", "\n", "--------------------------------------------------------\n", - "sandy almost sandy hurricane nyc photo likeit likeback like4like instaphoto instadaily inst \n", + "sandy almost sandy hurricane new york city photo likeit likeback like4like instaphoto instadaily inst \n", "\n", "\n", "#TrueHeros #UnknownSolders #Tomb #Sandy #Hurricane {These are true American Hero's that deserve more praise http://t.co/EOZTj5VJ\n", @@ -1672,7 +1674,7 @@ "Last image of NY #Live #NewYork #NY #Sandy #Hurricane #OMG #Bye http://t.co/NxtMzRh2\n", "\n", "--------------------------------------------------------\n", - "last image ny live newyork ny sandy hurricane omg bye \n", + "last image new york live new york new york sandy hurricane bye \n", "\n", "\n", "to people I know in the east coast, stay safe! #hurricane #sandy #safetyfirst #prayers http://t.co/9P8rgaH5\n", @@ -1690,19 +1692,19 @@ "Stay strong NEW YORK! #NYC #newyork vs #hurricane #sandy #gohomesandy #massive #storm #usa #eastcoast http://t.co/YM6PtzHz\n", "\n", "--------------------------------------------------------\n", - "stay strong new york nyc newyork vs hurricane sandy gohomesandy massive storm usa eastcoast \n", + "stay strong new york new york city new york versus hurricane sandy gomesandy massive storm usa eastcoast \n", "\n", "\n", "#hurricane #sandy #newyork #statueofliberty http://t.co/HRGqYgm5\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork statueofliberty \n", + "hurricane sandy new york statueofliberty \n", "\n", "\n", "Glad I got outa NY. Hurricane Sandy is crazy!! #hurricane #sandy #newyork http://t.co/wFSlLsC9\n", "\n", "--------------------------------------------------------\n", - "glad got outa ny hurricane sandy crazy hurricane sandy newyork \n", + "glad got outa new york hurricane sandy crazy hurricane sandy new york \n", "\n", "\n", "#Hurricane #Sandy approaching the #StatueofLiberty http://t.co/RdzzODeH\n", @@ -1714,19 +1716,19 @@ "#NY #Hurricane #Sandy #rain #scary http://t.co/pKmuDzCr\n", "\n", "--------------------------------------------------------\n", - "ny hurricane sandy rain scary \n", + "new york hurricane sandy rain scary \n", "\n", "\n", "#timessquare #nyc #sandy #hurricane http://t.co/GinqaGuQ\n", "\n", "--------------------------------------------------------\n", - "timessquare nyc sandy hurricane \n", + "timessquare new york city sandy hurricane \n", "\n", "\n", "Hang in there #newyork #thoughtsandprayers go out to you! #NYC #thatbitchsandy #hurricane #statueofliberty http://t.co/7FioGdp3\n", "\n", "--------------------------------------------------------\n", - "hang newyork thoughtsandprayers go nyc thatbitchsandy hurricane statueofliberty \n", + "hang new york thoughtsandprayers go new york city thatbitchsandy hurricane statueofliberty \n", "\n", "\n", "#USA #Hurricane #Sandy http://t.co/cvGwNr5a\n", @@ -1750,37 +1752,37 @@ "#newyorkers I introduced to you our new #transportation #system\\n #hurricane #sandy #Oct29 #2012 http://t.co/HTKdZLQX\n", "\n", "--------------------------------------------------------\n", - "newyorkers introduced new transportation system hurricane sandy oct29 2012 \n", + "new yorkers introduced new transportation system hurricane sandy oct29012 \n", "\n", "\n", "Oooo #NewYork #Hurricane #Sandy #Weather #Cool but #Shitty hahah http://t.co/t6Y3YshW\n", "\n", "--------------------------------------------------------\n", - "oooo newyork hurricane sandy weather cool shitty hahah \n", + "oooo new york hurricane sandy weather cool shitty hahah \n", "\n", "\n", "HOLY FUCK IS THIS REAL #sandy #hurricane #shark #scary #omg http://t.co/bLxrD80E\n", "\n", "--------------------------------------------------------\n", - "holy fuck real sandy hurricane shark scary omg \n", + "holy fuck real sandy hurricane shark scary \n", "\n", "\n", "Outside my cousin's house in #AtlanticCity #NJ #Shark #hurricane #sandy #hurricanesandy http://t.co/j9FMhF8G\n", "\n", "--------------------------------------------------------\n", - "outside cousin house atlanticcity nj shark hurricane sandy hurricanesandy \n", + "outside cousin house atlanticcity new jersey shark hurricane sandy hurricane sandy \n", "\n", "\n", "#regram #sharks at people's doorsteps in #Jersey #Hurricane #Sandy http://t.co/2kKrGh8K\n", "\n", "--------------------------------------------------------\n", - "regram sharks people doorsteps jersey hurricane sandy \n", + "sharks people doorsteps jersey hurricane sandy \n", "\n", "\n", "Shark swimming on the streets of NJ #shark #hurricane #sandy #new #jersey #pray http://t.co/4u1BpEaR\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets nj shark hurricane sandy new jersey pray \n", + "shark swimming streets new jersey shark hurricane sandy new jersey pray \n", "\n", "\n", "#hurricane #sandy #rain #flood http://t.co/arCfqNIx\n", @@ -1792,19 +1794,19 @@ "#newyorkcity today. #newyork #hurricane #crazy #nature #beautiful #enjoy http://t.co/aqkYQDCb\n", "\n", "--------------------------------------------------------\n", - "newyorkcity today newyork hurricane crazy nature beautiful enjoy \n", + "new yorkcity today new york hurricane crazy nature beautiful enjoy \n", "\n", "\n", "The day after tomorrow #Sandy #Hurricane #Storm #Rain #Cloudy #Newyork #Eastcoast #Usa #Flood ☔⚡☁🌀🌊 http://t.co/xPYE8yZ2\n", "\n", "--------------------------------------------------------\n", - "day tomorrow sandy hurricane storm rain cloudy newyork eastcoast usa flood \n", + "day tomorrow sandy hurricane storm rain cloudy new york eastcoast usa flood \n", "\n", "\n", "This was taken by my friends grandparents.. Wtf!! #hurricane #sandy #mysandy #crazy #flooded #shark #wtf #fu http://t.co/pKn2KWDK\n", "\n", "--------------------------------------------------------\n", - "taken friends grandparents wtf hurricane sandy mysandy crazy flooded shark wtf fu \n", + "taken friends grandparents hurricane sandy mysandy crazy flooded shark fu \n", "\n", "\n", "Shut the fuck up. This was just on the news, shark in my streets! #staysafenj #sandy #bitch #hurricane #shar http://t.co/Th2JoYyi\n", @@ -1816,7 +1818,7 @@ "Omg! #Hurricane #Sandy I got two word for you #SUCK #IT that shit cray http://t.co/4eIA0N4q\n", "\n", "--------------------------------------------------------\n", - "omg hurricane sandy got two word suck shit cray \n", + "hurricane sandy got two word suck shit cray \n", "\n", "\n", "No days off for these guys...respect and honor #sandydc #hurricane #military http://t.co/AgJlWro6\n", @@ -1840,55 +1842,55 @@ "The storm is mean, but sure is pretty. #StatueOfLiberty #hurricane #sandy #NJ #NYC http://t.co/NBWvjCnP\n", "\n", "--------------------------------------------------------\n", - "storm mean sure pretty statueofliberty hurricane sandy nj nyc \n", + "storm mean sure pretty statueofliberty hurricane sandy new jersey new york city \n", "\n", "\n", "Fuckin hell that is crazy shit #hurricane #sandy #prayer #scary #storm #statue #newyork http://t.co/yoh0ryeW\n", "\n", "--------------------------------------------------------\n", - "fuckin hell crazy shit hurricane sandy prayer scary storm statue newyork \n", + "fuckin hell crazy shit hurricane sandy prayer scary storm statue new york \n", "\n", "\n", "#hurricane #sandy shyt just hit ny http://t.co/JBABBpCO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy shyt hit ny \n", + "hurricane sandy shyt hit new york \n", "\n", "\n", "#wow #NY #hurricane #instagram http://t.co/azlEKTJr\n", "\n", "--------------------------------------------------------\n", - "wow ny hurricane instagram \n", + "new york hurricane instagram \n", "\n", "\n", "#soldiers #tomb #unknownsoldier #hurricane #usa #onpost #military #october #2012 #service #duty #sovereignty http://t.co/q2tyGSz7\n", "\n", "--------------------------------------------------------\n", - "soldiers tomb unknownsoldier hurricane usa onpost military october 2012 service duty sovereignty \n", + "soldiers tomb unknown soldier hurricane usa onpost military october012 service duty sovereignty \n", "\n", "\n", "NYC #scary #hurricane ⚡☔🌀🌊 http://t.co/cu275EB5\n", "\n", "--------------------------------------------------------\n", - "nyc scary hurricane \n", + "new york city scary hurricane \n", "\n", "\n", "#NYC #subway completely #flooded !!! #sandy #timessquare #manhattan #hurricanesandy #hurricane http://t.co/f9of5bC1\n", "\n", "--------------------------------------------------------\n", - "nyc subway completely flooded sandy timessquare manhattan hurricanesandy hurricane \n", + "new york city subway completely flooded sandy timessquare manhattan hurricane sandy hurricane \n", "\n", "\n", "#newyork #hurricane красиво и страшно😊 http://t.co/q5T0cDfr\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane красиво страшно \n", + "new york hurricane красиво страшно \n", "\n", "\n", "Omg... #sandy #hurricane #storm #sky #clouds #nature #morning #landscape #nyc #newyork #fear #bronx #statue http://t.co/EX9KIuXi\n", "\n", "--------------------------------------------------------\n", - "omg sandy hurricane storm sky clouds nature morning landscape nyc newyork fear bronx statue \n", + "sandy hurricane storm sky clouds nature morning landscape new york city new york fear bronx statue \n", "\n", "\n", "#holdfast #staystrong #carryon #tomboftheunknown #hurricane #sandy http://t.co/xbLpzhrq\n", @@ -1900,19 +1902,19 @@ "mmm K Now have seen it all QT Holy Shit Alert: shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy http://t.co/WlRrpxRI\n", "\n", "--------------------------------------------------------\n", - "mmm k seen qt holy shit alert shark swimming streets brigantine n j hurricane sandy \n", + "mmm k seen qt holy shit alert shark swimming streets brigantine hurricane sandy \n", "\n", "\n", "Incredible. #hurricane #hurricanesandy #hurricanesandy2012 #sandy http://t.co/s7JZrbJQ\n", "\n", "--------------------------------------------------------\n", - "incredible hurricane hurricanesandy hurricanesandy2012 sandy \n", + "incredible hurricane hurricane sandy hurricane sandy2012 sandy \n", "\n", "\n", "Take care NY 🇺🇸 #sandy #hurricane #storm #tormenta #NY http://t.co/t0AmYEWi\n", "\n", "--------------------------------------------------------\n", - "take care ny sandy hurricane storm tormenta ny \n", + "take care new york sandy hurricane storm tormenta new york \n", "\n", "\n", "Shark in the front yard.....#Hurricane #Sandy #Shark #NewJersey #NewPet #DontFeedTheAnimals http://t.co/t0ZzUd9B\n", @@ -1924,19 +1926,19 @@ "This photo is REAL but equally a whoa ... #timessquare #nyc #hurricane #sandy http://t.co/jDPru61V\n", "\n", "--------------------------------------------------------\n", - "photo real equally whoa timessquare nyc hurricane sandy \n", + "photo real equally timessquare new york city hurricane sandy \n", "\n", "\n", "#Marines stand guard in Washington D.C. ~ #USA #hurricane #sandy #godbless http://t.co/8ZhhD9eB\n", "\n", "--------------------------------------------------------\n", - "marines stand guard washington c usa hurricane sandy godbless \n", + "marines stand guard washington usa hurricane sandy godbless \n", "\n", "\n", "#nyc #sandy #hurricane #ellisisland #statueofliberty http://t.co/qorw1xMo\n", "\n", "--------------------------------------------------------\n", - "nyc sandy hurricane ellisisland statueofliberty \n", + "new york city sandy hurricane ellisisland statueofliberty \n", "\n", "\n", "Pray for New York! & all others affected by #Hurricane #Sandy http://t.co/lwoY5gkL\n", @@ -1960,7 +1962,7 @@ "Beautiful #real #NY #photographer #hurricane #sandy http://t.co/4apbQxy3\n", "\n", "--------------------------------------------------------\n", - "beautiful real ny photographer hurricane sandy \n", + "beautiful real new york photographer hurricane sandy \n", "\n", "\n", "This house has a new guest in their backyard Mr Shark. -_- imagine that #Sandy #hurricane 👀😶🙊😯😐 http://t.co/K2KcyD6b\n", @@ -1972,19 +1974,19 @@ "Wtf?! Sharks in the streets?!?! #HurricaneSandy #hurricane #sandy #flood #sharks #disaster @EfrainFigueroa @ http://t.co/95AGnFWo\n", "\n", "--------------------------------------------------------\n", - "wtf sharks streets hurricanesandy hurricane sandy flood sharks disaster \n", + "sharks streets hurricane sandy hurricane sandy flood sharks disaster \n", "\n", "\n", "No people, no car on the road. Pray for New York, USA 🙏✨#sandy #hurricane #newyork #usa cr. twitter http://t.co/2MAIFHf4\n", "\n", "--------------------------------------------------------\n", - "people car road pray new york usa sandy hurricane newyork usa cr twitter \n", + "people car road pray new york usa sandy hurricane new york usa cr twitter \n", "\n", "\n", "Super #crazy but #amazing #photo #instapic #hurricane #sandy so #sad.#prayer to #eastcoast #newyork #ny #sta http://t.co/SEwrxvzv\n", "\n", "--------------------------------------------------------\n", - "super crazy amazing photo instapic hurricane sandy sad prayer eastcoast newyork ny sta \n", + "super crazy amazing photo instapic hurricane sandy sad prayer eastcoast new york new york sta \n", "\n", "\n", "Standing by the soldier still. Even in the hurricane #sad #respect #aww #cute #weather #hurricane #sandy #ra http://t.co/WSgLTawJ\n", @@ -2002,19 +2004,19 @@ "L'uragano Sandy New York 2012 #Sandy #hurricane #landscape #photo #instaphoto http://t.co/cjZElQBL\n", "\n", "--------------------------------------------------------\n", - "l uragano sandy new york 2012 sandy hurricane landscape photo instaphoto \n", + "uragano sandy new york012 sandy hurricane landscape photo instaphoto \n", "\n", "\n", "Prayers go out to the easy coast #igdaily #hurricane #sandy #nyc #liberty http://t.co/lqQXPZfF\n", "\n", "--------------------------------------------------------\n", - "prayers go easy coast igdaily hurricane sandy nyc liberty \n", + "prayers go easy coast igdaily hurricane sandy new york city liberty \n", "\n", "\n", "#hurricane #dayaftertomorrow #nyc #statueofliberty #ladyliberty #mothernature #sick http://t.co/lzIHl1He\n", "\n", "--------------------------------------------------------\n", - "hurricane dayaftertomorrow nyc statueofliberty ladyliberty mothernature sick \n", + "hurricane dayaftertomorrow new york city statueofliberty ladyliberty mothernature sick \n", "\n", "\n", "Tomb of the Unknown Soldier. During #Hurricane #Sandy #Armylife http://t.co/k0XT9Boi\n", @@ -2026,7 +2028,7 @@ "Fucking hell! #hurricane #sandy #nyc #disaster #mental #shitson http://t.co/Br0cXxD4\n", "\n", "--------------------------------------------------------\n", - "fucking hell hurricane sandy nyc disaster mental shitson \n", + "fucking hell hurricane sandy new york city disaster mental shitson \n", "\n", "\n", "Good lucky america #usa #storm #sandy #nature #hurricane http://t.co/VeRMAtpq\n", @@ -2044,19 +2046,19 @@ "Beautiful shot! #Hurricane #Sandy #NYC #StatueofLiberty http://t.co/eEQUK0LL\n", "\n", "--------------------------------------------------------\n", - "beautiful shot hurricane sandy nyc statueofliberty \n", + "beautiful shot hurricane sandy new york city statueofliberty \n", "\n", "\n", "New photo floating around the net #nyc #newyorkcity #hurricane #sandy http://t.co/HchI32mI\n", "\n", "--------------------------------------------------------\n", - "new photo floating around net nyc newyorkcity hurricane sandy \n", + "new photo floating around net new york city new yorkcity hurricane sandy \n", "\n", "\n", "And this is How it looks like in NY. #Hurricane #Sandy #NewYork http://t.co/rfpw51Q3\n", "\n", "--------------------------------------------------------\n", - "looks like ny hurricane sandy newyork \n", + "looks like new york hurricane sandy new york \n", "\n", "\n", "#hurricane #sandy #crazy praying for everyone in new York http://t.co/RcQhiYRg\n", @@ -2086,13 +2088,13 @@ "How amazing but how devastating it is going to be #hurricane #america #newyork #peaceful #nature #beautiful http://t.co/KjYlHg7c\n", "\n", "--------------------------------------------------------\n", - "amazing devastating going hurricane america newyork peaceful nature beautiful \n", + "amazing devastating going hurricane america new york peaceful nature beautiful \n", "\n", "\n", "Shark swimming in flooded areas near NJ home. #hellno #Sandy #Hurricane http://t.co/Hz1xc6y6\n", "\n", "--------------------------------------------------------\n", - "shark swimming flooded areas near nj home hellno sandy hurricane \n", + "shark swimming flooded areas near new jersey home hellno sandy hurricane \n", "\n", "\n", "Praying for my mom and uncle up north as they endure Hurricane Sandy! #hurricane #sandy #eastcoast #storm # http://t.co/ogZ0F5ST\n", @@ -2110,25 +2112,19 @@ "#wow #NewYork #hurricane #sandy #scary #endoftheworld http://t.co/YfpbIVPU\n", "\n", "--------------------------------------------------------\n", - "wow newyork hurricane sandy scary endoftheworld \n", + "new york hurricane sandy scary endoftheworld \n", "\n", "\n", "#sandy #whoa #werelucky #flooded #nyc #statueofliberty #hurricane #storm #thatshhcray http://t.co/TgBcT3Ii\n", "\n", "--------------------------------------------------------\n", - "sandy whoa werelucky flooded nyc statueofliberty hurricane storm thatshhcray \n", - "\n", - "\n", - "#nyc #hurricane #sandy http://t.co/qT0fxdm6\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricane sandy \n", + "sandy werelucky flooded new york city statueofliberty hurricane storm thatshhcray \n", "\n", "\n", "#newyork #hurricane #sandy #statueofliberty http://t.co/HfWkeMsX\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane sandy statueofliberty \n", + "new york hurricane sandy statueofliberty \n", "\n", "\n", "#Frankenstorm #Hurricane #Sandy http://t.co/MFm6yEWb\n", @@ -2140,43 +2136,43 @@ "#flood #hurricane #sandy #shark #frontlawn #crazy #wtf http://t.co/yW5lhxvu\n", "\n", "--------------------------------------------------------\n", - "flood hurricane sandy shark frontlawn crazy wtf \n", + "flood hurricane sandy shark frontlawn crazy \n", "\n", "\n", "#Hurricane #Sandy #NYC #NewYork #NY #Manhattan #statueofliberty #MsLiberty http://t.co/L4IdKfeW\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc newyork ny manhattan statueofliberty msliberty \n", + "hurricane sandy new york city new york new york manhattan statueofliberty msliberty \n", "\n", "\n", "Tomb of the Unknown in Washington, DC in the midst of #Hurricane #Sandy! #Wow #America http://t.co/wbf2tPnO\n", "\n", "--------------------------------------------------------\n", - "tomb unknown washington dc midst hurricane sandy wow america \n", + "tomb unknown washington dc midst hurricane sandy america \n", "\n", "\n", "#hurricane #sandy #longisland #newyork #nyc #ny #nature #storm #amazing http://t.co/xrOSUQMW\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy longisland newyork nyc ny nature storm amazing \n", + "hurricane sandy longisland new york new york city new york nature storm amazing \n", "\n", "\n", "It's #hurricane time in #NY Hope you all good #NY Followers pic via @therealswizzz http://t.co/TEl0RDzg\n", "\n", "--------------------------------------------------------\n", - "hurricane time ny hope good ny followers pic \n", + "hurricane time new york hope good new york followers pic \n", "\n", "\n", "#ny #sandy #hurricane http://t.co/JTVaNZOP\n", "\n", "--------------------------------------------------------\n", - "ny sandy hurricane \n", + "new york sandy hurricane \n", "\n", "\n", "Keep safe NYC #Hurricane #Sandy http://t.co/JShdYWXf\n", "\n", "--------------------------------------------------------\n", - "keep safe nyc hurricane sandy \n", + "keep safe new york city hurricane sandy \n", "\n", "\n", "My thoughts & prayers go out to everyone on the East Coast effected by Hurricane Sandy. #hurricane #sandy #h http://t.co/cEtgdess\n", @@ -2188,7 +2184,7 @@ "😳😳😳 #wtf #hurricane #sandy #nyc #statueofliberty #waves 🌊🗽⚡☔ @ NYC http://t.co/uXA88pXq\n", "\n", "--------------------------------------------------------\n", - "wtf hurricane sandy nyc statueofliberty waves nyc \n", + "hurricane sandy new york city statueofliberty waves new york city \n", "\n", "\n", "HUGE amount of respect for these guys. They don't let #hurricane #sandy stop them from protecting the Tomb O http://t.co/FfuYK9Nc\n", @@ -2218,19 +2214,19 @@ "Amazing photo of #hurricane #sandy i hope everyone in its path is safe..... #2012 #eastcoast #staysafe #Amer http://t.co/TmRusW6y\n", "\n", "--------------------------------------------------------\n", - "amazing photo hurricane sandy hope everyone path safe 2012 eastcoast staysafe amer \n", + "amazing photo hurricane sandy hope everyone path safe 2 eastcoast staysafe amer \n", "\n", "\n", "This is Badass looking. #hurricane #newyork http://t.co/8nwZwnKJ\n", "\n", "--------------------------------------------------------\n", - "badass looking hurricane newyork \n", + "badass looking hurricane new york \n", "\n", "\n", "Hurricane Sandy heads toward New York #newyork #newyorker #nyc #us #stated #hurricane #sandy #storm #highwin http://t.co/BJDGO2FO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy heads toward new york newyork newyorker nyc us stated hurricane sandy storm highwin \n", + "hurricane sandy heads toward new york new york new yorker new york city us stated hurricane sandy storm highwin \n", "\n", "\n", "If you don't have respect for these guys, tell me, that way I know never to respect you again. #hurricane #s http://t.co/SFHSqqfG\n", @@ -2242,7 +2238,7 @@ "Oh New York 😞😩😫🗽🇺🇸 #hurricane #sandy #help http://t.co/gO2vUj4i\n", "\n", "--------------------------------------------------------\n", - "oh new york hurricane sandy help \n", + "new york hurricane sandy help \n", "\n", "\n", "Maaan it's crazy #sandy #hurricane http://t.co/3WnqKydB\n", @@ -2260,25 +2256,25 @@ "Dam shits gettin real #nyc #hurricane #sandy ☁☁☁⚡⚡⚡☔☔🌀🌀🌀🌊🌊🌊🚣🚣🚣💦💦💦💧💧💧😮😮😮 http://t.co/L117IXb5\n", "\n", "--------------------------------------------------------\n", - "dam shits gettin real nyc hurricane sandy \n", + "dam shits gettin real new york city hurricane sandy \n", "\n", "\n", "That's crazy #hurricane #newyork #statueofliberty #crazy #what #storm #sandy http://t.co/s4yCnmSw\n", "\n", "--------------------------------------------------------\n", - "crazy hurricane newyork statueofliberty crazy storm sandy \n", + "crazy hurricane new york statueofliberty crazy storm sandy \n", "\n", "\n", "Prend en de la graine @NicoBarto ! #ouragan #sandy #hurricane #ny #new #york http://t.co/sXxcHJf3\n", "\n", "--------------------------------------------------------\n", - "prend graine ouragan sandy hurricane ny new york \n", + "prend graine ouragan sandy hurricane new york new york \n", "\n", "\n", "New York, la città che non dorme mai, é in silenzio. #newyork #hurricane #statueofliberty #wave #prayforNe http://t.co/aRhiCG1w\n", "\n", "--------------------------------------------------------\n", - "new york città che non dorme mai é silenzio newyork hurricane statueofliberty wave prayforne \n", + "new york città che non dorme mai silenzio new york hurricane statueofliberty wave prayforne \n", "\n", "\n", "#Crazy picture. #Hurricane😱 http://t.co/45xwnama\n", @@ -2296,49 +2292,43 @@ "Unbelievable! #hurricane #sandy #newyork #empirestate http://t.co/19TqqIwC\n", "\n", "--------------------------------------------------------\n", - "unbelievable hurricane sandy newyork empirestate \n", + "unbelievable hurricane sandy new york empirestate \n", "\n", "\n", "#repost from @sheranescloset .. Wow! #pray #photo #scary #water #newyork #hurricane #sandy #wow #liberty #st http://t.co/ZLq27Np8\n", "\n", "--------------------------------------------------------\n", - "repost wow pray photo scary water newyork hurricane sandy wow liberty st \n", + "repost pray photo scary water new york hurricane sandy liberty st \n", "\n", "\n", "Crazy pic taken in #NewYork today! #Hurricane #sandy #crazy #storms #statueofliberty #nyc to all my friends http://t.co/hymM7YZt\n", "\n", "--------------------------------------------------------\n", - "crazy pic taken newyork today hurricane sandy crazy storms statueofliberty nyc friends \n", + "crazy pic taken new york today hurricane sandy crazy storms statueofliberty new york city friends \n", "\n", "\n", "#omg #storm #eastcoast #hurricane #statueofliberty #NYC #wow #staysafe http://t.co/mUjUEbwB\n", "\n", "--------------------------------------------------------\n", - "omg storm eastcoast hurricane statueofliberty nyc wow staysafe \n", - "\n", - "\n", - "#hurricane #sandy #NY http://t.co/NmR7m5ml\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy ny \n", + "storm eastcoast hurricane statueofliberty new york city staysafe \n", "\n", "\n", "https://t.co/MFTWc7Tk Wow... Wat heftig... Hoop dat mn familie daar ongedeerd blijft.. #hurricane #Sandy\n", "\n", "--------------------------------------------------------\n", - "wow heftig hoop mn familie ongedeerd blijft hurricane sandy \n", + "heftig hoop mn familie ongedeerd blijft hurricane sandy \n", "\n", "\n", "#Metaphor Symbol of Freedom devoured by #MotherNature and her Fury The Beauty of Nature #NY #Hurricane #Stat http://t.co/cQu21DkR\n", "\n", "--------------------------------------------------------\n", - "metaphor symbol freedom devoured mothernature fury beauty nature ny hurricane stat \n", + "metaphor symbol freedom devoured mothernature fury beauty nature new york hurricane stat \n", "\n", "\n", "I used to fear dogs off leashes in my neighborhood not sharks lol this is crazy #hurricane #sandy #flood #sh http://t.co/lLaWztXC\n", "\n", "--------------------------------------------------------\n", - "used fear dogs leashes neighborhood sharks lol crazy hurricane sandy flood sh \n", + "used fear dogs leashes neighborhood sharks crazy hurricane sandy flood \n", "\n", "\n", "#Sandy wildin'... Sharks in the streets... No one is safe... #RNS #Hurricane #wave http://t.co/2QKzhF6f\n", @@ -2350,25 +2340,25 @@ "That bitch sandy is cray. #nofilter #sandy #hurricane #statueofliberty #nyc http://t.co/9fQwSJbL\n", "\n", "--------------------------------------------------------\n", - "bitch sandy cray nofilter sandy hurricane statueofliberty nyc \n", + "bitch sandy cray nofilter sandy hurricane statueofliberty new york city \n", "\n", "\n", "Sandy On NYC #newyork #nyc #newyorkcity #sandy #hurricane #liberty #status #weather #usa #october #sea #bad http://t.co/j290x8m3\n", "\n", "--------------------------------------------------------\n", - "sandy nyc newyork nyc newyorkcity sandy hurricane liberty status weather usa october bad \n", + "sandy new york city new york new york city new yorkcity sandy hurricane liberty status weather usa october bad \n", "\n", "\n", "#sand #nyc #newyorkcity #hurricane http://t.co/qNjqb7es\n", "\n", "--------------------------------------------------------\n", - "sand nyc newyorkcity hurricane \n", + "sand new york city new yorkcity hurricane \n", "\n", "\n", "Times Square. New York, hurricane Sandy. #sandy #hurricane #eeuu #instagram #beautiful #landscape #ny #apple http://t.co/gPELGk5v\n", "\n", "--------------------------------------------------------\n", - "times square new york hurricane sandy sandy hurricane eeuu instagram beautiful landscape ny apple \n", + "times square new york hurricane sandy sandy hurricane eeuu instagram beautiful landscape new york apple \n", "\n", "\n", "#shark #sandy #hurricane #newjersey http://t.co/drEpPv0f\n", @@ -2380,7 +2370,7 @@ "WOOOOOW .. A scene from New York during the #Sandy #hurricane ... Impressive and horrible. Just wow! #photography #NYC http://t.co/3oqrqXjw\n", "\n", "--------------------------------------------------------\n", - "wooooow scene new york sandy hurricane impressive horrible wow photography nyc \n", + "wooooow scene new york sandy hurricane impressive horrible photography new york city \n", "\n", "\n", "New liked picture on #instagram \"Standing watch over the faves even through the storm #sandy #hurricane #... http://t.co/uCUwSaJY\n", @@ -2392,7 +2382,7 @@ "Nah...shit just got real! #hurricane http://t.co/K2AGM2Lh\n", "\n", "--------------------------------------------------------\n", - "nah shit got real hurricane \n", + "shit got real hurricane \n", "\n", "\n", "Just a #shark patrolling a flooded neighborhood.. No big deal. #hurricane #sandy #ridiculous #flood #holyshi http://t.co/0ui2GkTD\n", @@ -2404,19 +2394,19 @@ "Amazing photo but hope everyone in New York is okay, #newyork #NY #storm #hurricane #sandy http://t.co/YVmEAcTS\n", "\n", "--------------------------------------------------------\n", - "amazing photo hope everyone new york okay newyork ny storm hurricane sandy \n", + "amazing photo hope everyone new york okay new york new york storm hurricane sandy \n", "\n", "\n", "This reminds me of something out of the #movie #2012 #scary #nyc #hurricane http://t.co/U1UenkwX\n", "\n", "--------------------------------------------------------\n", - "reminds something movie 2012 scary nyc hurricane \n", + "reminds something movie012 scary new york city hurricane \n", "\n", "\n", "Que trauma. #NewYork #StatueOfLiberty #hurricane #horrible 😖😰 http://t.co/l5hORH1t\n", "\n", "--------------------------------------------------------\n", - "trauma newyork statueofliberty hurricane horrible \n", + "trauma new york statueofliberty hurricane horrible \n", "\n", "\n", "Found this pic on Facebook... Hope it's not real! #shark #hurricane #sandy #frankenstorm http://t.co/yHeotiSv\n", @@ -2428,7 +2418,7 @@ "#hurricane #sandy #newyork #oct29/12 http://t.co/M7AvrfJo\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork oct29 12 \n", + "hurricane sandy new york oct292 \n", "\n", "\n", "Y'all be safe!! #hurricane #Sandy #eastcoast http://t.co/C6C6bRcY\n", @@ -2452,37 +2442,25 @@ "I used to fear dogs off leashes inmyneighborhood not sharks lol this is crazy #hurricane #sandy #flood #sh http://t.co/Jyi3HUqi @/joepas914\n", "\n", "--------------------------------------------------------\n", - "used fear dogs leashes inmyneighborhood sharks lol crazy hurricane sandy flood sh joepas914 \n", + "used fear dogs leashes inmyneighborhood sharks crazy hurricane sandy flood joepas914 \n", "\n", "\n", "It's the end of the world as we know it... #Hurricane #Sandy #NYC #lyrics #REM http://t.co/FMRTag1b\n", "\n", "--------------------------------------------------------\n", - "end world know hurricane sandy nyc lyrics rem \n", + "end world know hurricane sandy new york city lyrics rem \n", "\n", "\n", "#newyork #sandy #hurricane #crazy http://t.co/QQxZOKul\n", "\n", "--------------------------------------------------------\n", - "newyork sandy hurricane crazy \n", - "\n", - "\n", - "@TcaflikestoRAGE 😂 #hurricane #sandy http://t.co/lOypXarW\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", - "@calbartos: @DJsmethy http://t.co/3ZTmD7Ai #hurricane #Sandy #hurricanesand\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy hurricanesand \n", + "new york sandy hurricane crazy \n", "\n", "\n", "This is #NewYork right now #Sandy #Hurricane #Crazy #Dark #NYC #City http://t.co/641jyEL0\n", "\n", "--------------------------------------------------------\n", - "newyork right sandy hurricane crazy dark nyc city \n", + "new york right sandy hurricane crazy dark new york city city \n", "\n", "\n", "Respect ☔☁⚡💦 #soldier #hurricane #sandy http://t.co/9Rr94bzg\n", @@ -2494,19 +2472,19 @@ "Mother Nature Showing Her Awesome Power! #storm #NYC #hurricane #weather #nature #rain #leavetown http://t.co/LNE14W7k\n", "\n", "--------------------------------------------------------\n", - "mother nature showing awesome power storm nyc hurricane weather nature rain leavetown \n", + "mother nature showing awesome power storm new york city hurricane weather nature rain leavetown \n", "\n", "\n", "Thinking & praying for my bro in New York. (Photo via eswhoo) #hurricane #sandy #staysafe http://t.co/f3tZwbdA\n", "\n", "--------------------------------------------------------\n", - "thinking praying bro new york photo via eswhoo hurricane sandy staysafe \n", + "thinking praying myin new york photoeswhoo hurricane sandy staysafe \n", "\n", "\n", "Shit got real yesterday. #sandy #fucksandy #hurricane #nyc #nyu #timessquare #refugee #2012 http://t.co/2lhsinu1\n", "\n", "--------------------------------------------------------\n", - "shit got real yesterday sandy fucksandy hurricane nyc nyu timessquare refugee 2012 \n", + "shit got real yesterday sandy fucksandy hurricane new york city nyu timessquare refugee012 \n", "\n", "\n", "Tomb of the Unknown Solider still being guarded, God Bless! #Hurricane #Sandy can't scare the #USMilitary http://t.co/QDDPkxYZ\n", @@ -2518,37 +2496,37 @@ "Wow.. #hurricane #storm #newyork #sandy http://t.co/f7eAmKWW\n", "\n", "--------------------------------------------------------\n", - "wow hurricane storm newyork sandy \n", + "hurricane storm new york sandy \n", "\n", "\n", "#patchogue #bay #shark #flooding #hurricane #sandy #hurricanesandy http://t.co/cUOrVJrd\n", "\n", "--------------------------------------------------------\n", - "patchogue bay shark flooding hurricane sandy hurricanesandy \n", + "patchogue bay shark flooding hurricane sandy hurricane sandy \n", "\n", "\n", "#NewYorkCity #StatueOfLiberty #Hurricane #Sandy #picoftheday #kcco http://t.co/qjHTNb6f\n", "\n", "--------------------------------------------------------\n", - "newyorkcity statueofliberty hurricane sandy picoftheday kcco \n", + "new yorkcity statueofliberty hurricane sandy picoftheday kcco \n", "\n", "\n", "#Hurricane #Sandy #2012 http://t.co/Frs9Awn8\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy 2012 \n", + "hurricane sandy012 \n", "\n", "\n", "frankenstorm sandy...pray for the new yorkers!! #instagram #iphonesia #hurricane #newyork #sandy #instadaily http://t.co/T0tKeNlQ\n", "\n", "--------------------------------------------------------\n", - "frankenstorm sandy pray new yorkers instagram iphonesia hurricane newyork sandy instadaily \n", + "frankenstorm sandy pray new yorkers instagram iphonesia hurricane new york sandy instadaily \n", "\n", "\n", "This photo of NYC looks like Armageddon http://t.co/vAd3kBXE #hurricane #sandy #weather #storm\n", "\n", "--------------------------------------------------------\n", - "photo nyc looks like armageddon hurricane sandy weather storm \n", + "photo new york city looks like armageddon hurricane sandy weather storm \n", "\n", "\n", "Love this picture! #hurricane #sandy #weather @weatherchannel http://t.co/SGtTvAZ6\n", @@ -2560,13 +2538,13 @@ "#respect #military #tomb #tomboftheunknownsoldier #rain #hurricane #sandy #hurricanesandy http://t.co/pHOdJ3F7\n", "\n", "--------------------------------------------------------\n", - "respect military tomb tomboftheunknownsoldier rain hurricane sandy hurricanesandy \n", + "respect military tomb tomboftheunknown soldier rain hurricane sandy hurricane sandy \n", "\n", "\n", "That looks so amazing. #beautiful #hurricanesandy #hurricane #sandy #nature #newyor @ Somerset Fire & Rescue http://t.co/JRxW4Nja\n", "\n", "--------------------------------------------------------\n", - "looks amazing beautiful hurricanesandy hurricane sandy nature newyor somerset fire rescue \n", + "looks amazing beautiful hurricane sandy hurricane sandy nature newyor somerset fire rescue \n", "\n", "\n", "#hurricane #sandy #amazing http://t.co/ymBfm4xc\n", @@ -2578,7 +2556,7 @@ "Cool storm pic. The power of Nature. #storm #hurricane #NYC http://t.co/g6cJvJ98\n", "\n", "--------------------------------------------------------\n", - "cool storm pic power nature storm hurricane nyc \n", + "cool storm pic power nature storm hurricane new york city \n", "\n", "\n", "#instacollage #hurricane #sandy is starting too look like #independence #day http://t.co/oUcnkcF5\n", @@ -2590,19 +2568,19 @@ "#shark seen swimming in a #NJ street. #hurricane #sandy http://t.co/i4RmgCWV\n", "\n", "--------------------------------------------------------\n", - "shark seen swimming nj street hurricane sandy \n", + "shark seen swimming new jersey street hurricane sandy \n", "\n", "\n", "#newyork #frankestorm #hurricane #nature #sky #amazing #usa #nyc http://t.co/rjceaPp1\n", "\n", "--------------------------------------------------------\n", - "newyork frankestorm hurricane nature sky amazing usa nyc \n", + "new york frankestorm hurricane nature sky amazing usa new york city \n", "\n", "\n", "Hello #Hurricane #Sandy #NY #Statue #Of #Liberty http://t.co/aMD75aeK\n", "\n", "--------------------------------------------------------\n", - "hello hurricane sandy ny statue liberty \n", + "hello hurricane sandy new york statue liberty \n", "\n", "\n", "Love it when a shark passes me on the highway. #sandy #hurricane #shark http://t.co/mN8D2Xzj\n", @@ -2620,31 +2598,31 @@ "Much Love to our NYC Fam right now! #City #Sandy #Hurricane #Brooklyn #Manhattan #Queens #TheBigApple http://t.co/KZCnqizn\n", "\n", "--------------------------------------------------------\n", - "much love nyc fam right city sandy hurricane brooklyn manhattan queens thebigapple \n", + "much love new york city fam right city sandy hurricane brooklyn manhattan queens thebigapple \n", "\n", "\n", "#miss #libby #in #the #storm #wind #cloud #last #night #new #york #scary #NYC #hurricane #sandy http://t.co/bo22jBZh\n", "\n", "--------------------------------------------------------\n", - "miss libby storm wind cloud last night new york scary nyc hurricane sandy \n", + "miss libby storm wind cloud last night new york scary new york city hurricane sandy \n", "\n", "\n", "#hurricane #NY #Amazing #nature #powerful #instawow #picoftheday http://t.co/1nQ71hzO\n", "\n", "--------------------------------------------------------\n", - "hurricane ny amazing nature powerful instawow picoftheday \n", + "hurricane new york amazing nature powerful insta picoftheday \n", "\n", "\n", "#Sandy #hurricane over #NYC http://t.co/NwuwBfvx\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane nyc \n", + "sandy hurricane new york city \n", "\n", "\n", "Sandy is in NYC.. Be safe! #sandy #ny #hurricane #newyork #city http://t.co/SubD947F\n", "\n", "--------------------------------------------------------\n", - "sandy nyc safe sandy ny hurricane newyork city \n", + "sandy new york city safe sandy new york hurricane new york city \n", "\n", "\n", "New York today. #hurricane #sandy http://t.co/elFUa3fX\n", @@ -2662,7 +2640,7 @@ "Wow ! Amazing photo of #hurricane #sandy approaching #NYC #frankenstorm http://t.co/cQmsvPfv\n", "\n", "--------------------------------------------------------\n", - "wow amazing photo hurricane sandy approaching nyc frankenstorm \n", + "amazing photo hurricane sandy approaching new york city frankenstorm \n", "\n", "\n", "#Sandy the #Hurricane cant stop the #HonorGaurd standing at the #TombOfTheUnknown #Soldier http://t.co/WvtpC4ii\n", @@ -2680,13 +2658,13 @@ "New York... #ny #hurricane #sandy #caution #newyork #nyc http://t.co/2zh491qU\n", "\n", "--------------------------------------------------------\n", - "new york ny hurricane sandy caution newyork nyc \n", + "new york new york hurricane sandy caution new york new york city \n", "\n", "\n", "#NewYork #Hurricane #Sandy #RecentPicture #ItJustGotReal #Beautiful yet #Painful #NoFilter http://t.co/A00PDzgi\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane sandy recentpicture itjustgotreal beautiful yet painful nofilter \n", + "new york hurricane sandy recentpicture itjustgotreal beautiful yet painful nofilter \n", "\n", "\n", "Wild picture of New York #sandy #hurricane http://t.co/xyYwQ2IO\n", @@ -2710,73 +2688,67 @@ "Looks as though it's Doomsday in New York! #Sandy #NewYork #hurricane http://t.co/ZZkaWpAU\n", "\n", "--------------------------------------------------------\n", - "looks though doomsday new york sandy newyork hurricane \n", - "\n", - "\n", - "#Hurricane #Sandy in #NYC http://t.co/tYCITOvD\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", + "looks though doomsday new york sandy new york hurricane \n", "\n", "\n", "#new york#big Apple #sandy #fear #hurricane http://t.co/t095nPDC\n", "\n", "--------------------------------------------------------\n", - "new york big apple sandy fear hurricane \n", + "new yorkbig apple sandy fear hurricane \n", "\n", "\n", "Holly shit #newyork #hurricane #sandy http://t.co/pRNwFmKI\n", "\n", "--------------------------------------------------------\n", - "holly shit newyork hurricane sandy \n", + "holly shit new york hurricane sandy \n", "\n", "\n", "Statue of Liberty #hurricane #sandy #newyork #liberty #island 🙈🗽🌊 http://t.co/84is9GLb\n", "\n", "--------------------------------------------------------\n", - "statue liberty hurricane sandy newyork liberty island \n", + "statue liberty hurricane sandy new york liberty island \n", "\n", "\n", "Noodweer in #NY #NewYork #New #York #hurricane #Sandy @ Hoofdtribune van Tilburg http://t.co/Wl1BfDrE\n", "\n", "--------------------------------------------------------\n", - "noodweer ny newyork new york hurricane sandy hoofdtribune tilburg \n", + "noodweer new york new york new york hurricane sandy hoofdtribune tilburg \n", "\n", "\n", "Sharks n shit in NJ streets 😳 #hurricane #sandy #fuckthat #ImDone #BeSafe http://t.co/goJbTQLu\n", "\n", "--------------------------------------------------------\n", - "sharks n shit nj streets hurricane sandy fuckthat imdone besafe \n", + "sharks shit new jersey streets hurricane sandy fuckthat imdone besafe \n", "\n", "\n", "Shark off a porch in Bigantine NJ! Would live to cast a clouser at it . http://t.co/tgR0KDDr #sandy #hurricane #flyfishing\n", "\n", "--------------------------------------------------------\n", - "shark porch bigantine nj would live cast clouser sandy hurricane flyfishing \n", + "shark porch bigantine new jersey would live cast clouser sandy hurricane flyfishing \n", "\n", "\n", "Zoo animals on the loose lol #Hurricane #Sandy #NYC http://t.co/bOGZI89Y\n", "\n", "--------------------------------------------------------\n", - "zoo animals loose lol hurricane sandy nyc \n", + "zoo animals loose hurricane sandy new york city \n", "\n", "\n", "#statue #of #liberty #today #new #york #newyork #hurricane #sandy #stay #safe http://t.co/ljHNsn1Y\n", "\n", "--------------------------------------------------------\n", - "statue liberty today new york newyork hurricane sandy stay safe \n", + "statue liberty today new york new york hurricane sandy stay safe \n", "\n", "\n", "NY City, crazy hurricane Sandy photo. #disaster #NY #hurricane #sandy #liberty http://t.co/yZfEQv6s\n", "\n", "--------------------------------------------------------\n", - "ny city crazy hurricane sandy photo disaster ny hurricane sandy liberty \n", + "new york city crazy hurricane sandy photo disaster new york hurricane sandy liberty \n", "\n", "\n", "That is crazy.. #repost #Hurricane #Sandy #OD #NYC #Wow http://t.co/Q6VN6ybJ\n", "\n", "--------------------------------------------------------\n", - "crazy repost hurricane sandy od nyc wow \n", + "crazy repost hurricane sandy od new york city \n", "\n", "\n", "Holly shit!!!! #hurricane #sandy http://t.co/GzNQnTrA\n", @@ -2788,31 +2760,31 @@ "#Crazy #Hurricane #Sandy #Pic #Shark #Swimming Through Flooded #NJ Streets @ Jersey Shore http://t.co/ziwhj84Z\n", "\n", "--------------------------------------------------------\n", - "crazy hurricane sandy pic shark swimming flooded nj streets jersey shore \n", + "crazy hurricane sandy pic shark swimming flooded new jersey streets jersey shore \n", "\n", "\n", "Amazing photo #nyc #hurricane http://t.co/6dbAsL2S\n", "\n", "--------------------------------------------------------\n", - "amazing photo nyc hurricane \n", + "amazing photo new york city hurricane \n", "\n", "\n", "Fucking nuts #hurricane #sandy #hurricanesandy #nyc #hiroshima #wishicouldofseenthis http://t.co/vHxMdEIb\n", "\n", "--------------------------------------------------------\n", - "fucking nuts hurricane sandy hurricanesandy nyc hiroshima wishicouldofseenthis \n", + "fucking nuts hurricane sandy hurricane sandy new york city hiroshima wishicouldofseenthis \n", "\n", "\n", "Woah #hurricane #newyork #nofilter http://t.co/BQQuzkea\n", "\n", "--------------------------------------------------------\n", - "woah hurricane newyork nofilter \n", + "woah hurricane new york nofilter \n", "\n", "\n", "#OMG Soooo #SAD A #shark in someone's front yard in #NewJersey #Hurricane #Sandy 😱😰😫😖.. 🙏☝ http://t.co/WNrLBiyJ\n", "\n", "--------------------------------------------------------\n", - "omg soooo sad shark someone front yard newjersey hurricane sandy \n", + "soooo sad shark someone front yard newjersey hurricane sandy \n", "\n", "\n", "Love this pic!!! #Hurricane; .... No excuse. #Army #TomboftheUnknown #DC #Arlington #Military http://t.co/MUgwoa9u\n", @@ -2824,13 +2796,13 @@ "Holy Shit Alert: shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy (via @sista71) #Frankenstorm http://t.co/qeKYh6Z1\n", "\n", "--------------------------------------------------------\n", - "holy shit alert shark swimming streets brigantine n j hurricane sandy frankenstorm \n", + "holy shit alert shark swimming streets brigantine hurricane sandy frankenstorm \n", "\n", "\n", "Alert: shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy (via http://t.co/OXH4KLnI http://t.co/MFUUUuer\n", "\n", "--------------------------------------------------------\n", - "alert shark swimming streets brigantine n j hurricane sandy via \n", + "alert shark swimming streets brigantine hurricane sandy \n", "\n", "\n", "#hurricane #sandy brings a shark to New Jersey front yard #superstorm #frankenstorm http://t.co/h4E9gUKr\n", @@ -2842,31 +2814,31 @@ "Eerie look in Manhattan. #sandy #nyc #weather #hurricane #photooftheday #picoftheday #bestoftheday http://t.co/Zd1FVMi3\n", "\n", "--------------------------------------------------------\n", - "eerie look manhattan sandy nyc weather hurricane photooftheday picoftheday bestoftheday \n", + "eerie look manhattan sandy new york city weather hurricane photooftheday picoftheday bestoftheday \n", "\n", "\n", "Stunning, but scary picture. Good luck to everyone in #NewYork. #Hurricane #Sandy http://t.co/TUELBwIR\n", "\n", "--------------------------------------------------------\n", - "stunning scary picture good luck everyone newyork hurricane sandy \n", + "stunning scary picture good luck everyone new york hurricane sandy \n", "\n", "\n", "#PRAYforNEWyork #PRAYforNEWjersey #hurricane http://t.co/Qi1K0HHt\n", "\n", "--------------------------------------------------------\n", - "prayfornewyork prayfornewjersey hurricane \n", + "prayfornew york prayfornewjersey hurricane \n", "\n", "\n", "Here comes #hurricane #sandy #NYC #newjersey #emergency #storm http://t.co/yMkye6WL\n", "\n", "--------------------------------------------------------\n", - "comes hurricane sandy nyc newjersey emergency storm \n", + "comes hurricane sandy new york city newjersey emergency storm \n", "\n", "\n", "Such a horrible thing but yet so beautiful! #NewYork #Hurricane http://t.co/0zh3aL64\n", "\n", "--------------------------------------------------------\n", - "horrible thing yet beautiful newyork hurricane \n", + "horrible thing yet beautiful new york hurricane \n", "\n", "\n", "#Hurricane #Sandy #Praying @jamiechesson @pjchesson http://t.co/fzq5GjIs\n", @@ -2878,7 +2850,7 @@ "“@lizprimo: #Hurricane #Sandy #Praying @jamiechesson @pjchesson http://t.co/ydp714Y2”- hey, it's illegal to use more than 1 # in a tweet.\n", "\n", "--------------------------------------------------------\n", - "hey illegal use 1 tweet \n", + "hey illegal use tweet \n", "\n", "\n", "#Sandy. That's sick. http://t.co/hE95DzK2\n", @@ -2890,7 +2862,7 @@ "Omg! Sharks swimming in new jersey wow that's absolute madness! #Sandy http://t.co/aGTRgR53\n", "\n", "--------------------------------------------------------\n", - "omg sharks swimming new jersey wow absolute madness sandy \n", + "sharks swimming new jersey absolute madness sandy \n", "\n", "\n", "Sandy's ruining everybody's day #dang #statueofliberty http://t.co/rle56RLN\n", @@ -2902,7 +2874,7 @@ "How crazy is that. Sandy moving into NY http://t.co/AOUYdb4k\n", "\n", "--------------------------------------------------------\n", - "crazy sandy moving ny \n", + "crazy sandy moving new york \n", "\n", "\n", "therealswizzz's photo http://t.co/CkozMCFt check sandy\n", @@ -2914,31 +2886,31 @@ "FURACAO SANDY: Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Olha: http://t.co/Io64bXM1\n", "\n", "--------------------------------------------------------\n", - "furacao sandy tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão olha \n", + "furacao sandy tubarões encontrados ruas nova jersey devido avanço mar causado furacão ol \n", "\n", "\n", "Wow, that's crazy. #Shark RT @MeschelLee: 😳 #Sandy http://t.co/zqaOCz6O\n", "\n", "--------------------------------------------------------\n", - "wow crazy shark \n", + "crazy shark \n", "\n", "\n", "http://t.co/c9TAyDBr \"There’s a shark in my friend’s lawn! Sandy u a crazy bitch.\" DAI TEM UM TUBARÃO NO GRAMADO DO SEU AMG E VC NO TUMBLR\n", "\n", "--------------------------------------------------------\n", - "shark friend lawn sandy crazy bitch dai tem um tubarão gramado seu amg vc tumblr \n", + "shark friend lawn sandy crazy bitch dai tubarão gramado amg vc tumblr \n", "\n", "\n", "Yu thought it was fake huh lol “@Truth_305: “@Booda646: Sandy on that 2012 world ending shit! 🙏 http://t.co/D5px78Ba” Mann what's this”\n", "\n", "--------------------------------------------------------\n", - "yu thought fake huh lol \n", + "yu thought fake huh \n", "\n", "\n", "#regram that's crazy sharks in neighborhoods #sandy http://t.co/WnkK7qin\n", "\n", "--------------------------------------------------------\n", - "regram crazy sharks neighborhoods sandy \n", + "crazy sharks neighborhoods sandy \n", "\n", "\n", "Sandy aint no joke! It's Deep Blue Sea at the jersey shore! Save yourself! #unbelievable #samuelL #sharkweek http://t.co/d9sCtHoT\n", @@ -2950,13 +2922,13 @@ "Talk that shit about Sandy now lol http://t.co/st39gHQl\n", "\n", "--------------------------------------------------------\n", - "talk shit sandy lol \n", + "talk shit sandy \n", "\n", "\n", "What's good Sandy 🌀🌊☔ #Sandy#hurricane#newyorkcity#statueofliberty#instacrazy#strom http://t.co/G6gi2cus\n", "\n", "--------------------------------------------------------\n", - "good sandy sandy hurricane newyorkcity statueofliberty instacrazy strom \n", + "good sandy sandyhurricanenew yorkcitystatueoflibertyinstacrazystrom \n", "\n", "\n", "😳 Sandy's not playing any games folks.... If you're on the East coast be safe. http://t.co/zVpfpe8k\n", @@ -2968,13 +2940,13 @@ "It's real in Jersey... Thats a damn shark... tf, I just hope Sandy spare NY... http://t.co/vUazXCCx\n", "\n", "--------------------------------------------------------\n", - "real jersey thats damn shark tf hope sandy spare ny \n", + "real jersey thats damn shark tf hope sandy spare new york \n", "\n", "\n", "#SANDY: Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. Olha: http://t.co/LIjMGHbA\n", "\n", "--------------------------------------------------------\n", - "sandy tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy olha \n", + "sandy tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy ol \n", "\n", "\n", "@NathanFillion Good that you're LA, cause the items of your bad list go visit peeps courtesy of Sandy http://t.co/XwHuFgrD\n", @@ -3016,37 +2988,37 @@ "“@lifesAlyric Oh bitch! Sandy MAD!!! http://t.co/9C5zqc37” is that actual footage?\n", "\n", "--------------------------------------------------------\n", - "oh bitch sandy mad actual footage \n", + "bitch sandy mad actual footage \n", "\n", "\n", "Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/RFyaSEdN”\n", "\n", "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy \n", "\n", "\n", "Sandy's goin' ham. 💩😳 #Hurricane #Dang http://t.co/EPKCqtGp\n", "\n", "--------------------------------------------------------\n", - "sandy goin ham hurricane dang \n", + "sandy going ham hurricane dang \n", "\n", "\n", "Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/yZXqoLxR MEU DEUS\n", "\n", "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy meu deus \n", + "tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy deus \n", "\n", "\n", "@RGettysIII \"Changing of the guard.. http://t.co/n45dzi2D\" what you don't know is that this wasnt during sandy... #yikes\n", "\n", "--------------------------------------------------------\n", - "changing guard know wasnt sandy yikes \n", + "changing guard know wasnt sandy \n", "\n", "\n", "Independence Day? Nope that's Hurricane Sandy. #hurricane #sandy #newyorkcity http://t.co/LLUEOKtk\n", "\n", "--------------------------------------------------------\n", - "independence day nope hurricane sandy hurricane sandy newyorkcity \n", + "independence day nope hurricane sandy hurricane sandy new yorkcity \n", "\n", "\n", "holy. crap. be safe, guys. thinking about everybody in Sandy's path. http://t.co/Uc8jBRrf\n", @@ -3067,16 +3039,10 @@ "sandy rolling buckle new york things get interesting \n", "\n", "\n", - "#SANDY: Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. Olha: http://t.co/z1kQDCZl\n", - "\n", - "--------------------------------------------------------\n", - "sandy tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy olha \n", - "\n", - "\n", "#SANDY: Tubarões são encontrados nas ruas de Nova Jersey após o avanço do mar causado pelo Furacão Sandy. #RenanLima > http://t.co/o957maY7\n", "\n", "--------------------------------------------------------\n", - "sandy tubarões são encontrados nas ruas nova jersey após avanço mar causado pelo furacão sandy renanlima greater \n", + "sandy tubarões encontrados ruas nova jersey após avanço mar causado furacão sandy renanlima \n", "\n", "\n", "http://t.co/zdD0Sxlt this Sandy pic looks awesome but not sure if it's real. Stay safe everyone.\n", @@ -3088,19 +3054,13 @@ "New york is in trouble,sandy's heavy strike.16 passed http://t.co/QojLlLJc\n", "\n", "--------------------------------------------------------\n", - "new york trouble sandy heavy strike 16 passed \n", - "\n", - "\n", - "@mariliamorais 'Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/RfatIqsd '\n", - "\n", - "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "new york trouble sandy heavy strike6 passed \n", "\n", "\n", "#PrayForUsa : Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/QjRoKPGi\n", "\n", "--------------------------------------------------------\n", - "prayforusa tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "prayforusa tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy \n", "\n", "\n", "that's really scary ....shark on the street in New Jersey #storm #Sandy http://t.co/E45WYO5E\n", @@ -3109,34 +3069,28 @@ "really scary shark street new jersey storm sandy \n", "\n", "\n", - "Sandy's #Hurricane in NY http://t.co/I25vmdJd\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane ny \n", - "\n", - "\n", "Q MEDO GENTE 'Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/Qpmv3XGP '\n", "\n", "--------------------------------------------------------\n", - "q medo gente tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "q medo gente tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy \n", "\n", "\n", "Oh hey Sandy, what's up? http://t.co/l8dEGuTm\n", "\n", "--------------------------------------------------------\n", - "oh hey sandy \n", + "hey sandy \n", "\n", "\n", "Sandy done brought the sharks to the streets 😱😱😱😱😱 lollllll that's crazyyyy http://t.co/mEeiEtDw\n", "\n", "--------------------------------------------------------\n", - "sandy done brought sharks streets lollllll crazyyyy \n", + "sandy done brought sharks streets lllll crazyyyy \n", "\n", "\n", "That's crazy those use are on guard 24/7 365 days even with Sandy hitting NY #Repost #Hurricane #Sandy #NY . http://t.co/FmXUlJBU\n", "\n", "--------------------------------------------------------\n", - "crazy use guard 24 7 365 days even sandy hitting ny repost hurricane sandy ny \n", + "crazy use guard465 days even sandy hitting new york repost hurricane sandy new york \n", "\n", "\n", "Sandy y u gotta be like that http://t.co/jz9fo8UK\n", @@ -3148,19 +3102,19 @@ "there's no way ! lmaoo. oh sandy http://t.co/NtTcJHrZ\n", "\n", "--------------------------------------------------------\n", - "way lmaoo oh sandy \n", + "way sandy \n", "\n", "\n", "MY PRAYERS GO OUT TO EVERYONE THAT'S AFFECTED BY #SANDY ! SHARKS SWIMMING DONE THE STREETS N NEW JERSEY ! SM http://t.co/yP5Iy9Yh\n", "\n", "--------------------------------------------------------\n", - "prayers go everyone affected sandy sharks swimming done streets n new jersey sm \n", + "prayers go everyone affected sandy sharks swimming done streets new jersey sm \n", "\n", "\n", "Praying for everybody that's in the path of Hurricane sandy!!! Especially my family & friends back home in N http://t.co/7Q4iIDvH\n", "\n", "--------------------------------------------------------\n", - "praying everybody path hurricane sandy especially family friends back home n \n", + "praying everybody path hurricane sandy especially family friends back home \n", "\n", "\n", "Nooooo stay strong Lady!!! Praying that sandy will not hit my New Yorkie http://t.co/rTwsC4bR\n", @@ -3172,19 +3126,13 @@ "Praying for all my East Coast friends and family...Sandy's looking #fierce! Be safe...much <3 #newyork #nyc http://t.co/PFOu6oLv\n", "\n", "--------------------------------------------------------\n", - "praying east coast friends family sandy looking fierce safe much less 3 newyork nyc \n", - "\n", - "\n", - "\\o/ Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/b89W7JwN\"\n", - "\n", - "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "praying east coast friends family sandy looking fierce safe much new york new york city \n", "\n", "\n", "OMG crazy!! RT \"@FashionWrap: Holy cow! That's a shark in the Jersey shore by a house! #sandy http://t.co/SmjUjVHV\"\n", "\n", "--------------------------------------------------------\n", - "omg crazy \n", + "crazy \n", "\n", "\n", "Sandy's coming http://t.co/mF5clbwD\n", @@ -3202,7 +3150,7 @@ "It's real out there. Crazy pic my cuz from New York sent me...that is indeed a shark 😱 #Sandy http://t.co/DU6oVkwd\n", "\n", "--------------------------------------------------------\n", - "real crazy pic new york sent indeed shark sandy \n", + "real crazy pic cuz new york sent indeed shark sandy \n", "\n", "\n", "Keep on think Sandy ain't that BITCH!!! #dontSLEEP http://t.co/RzSA3GAX\n", @@ -3229,12 +3177,6 @@ "huge bitch helloooo sandy photo borrowed ariela b \n", "\n", "\n", - "Sandy's coming. http://t.co/DeMgkG8A\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", - "\n", - "\n", "Hurricane Sandy ain't no joke... Boy that's scary... #repost http://t.co/cHNNQAMd\n", "\n", "--------------------------------------------------------\n", @@ -3244,7 +3186,7 @@ "Sandy chill on the sharks there goin to swim into someone's pool http://t.co/BgxqJvUa\n", "\n", "--------------------------------------------------------\n", - "sandy chill sharks goin swim someone pool \n", + "sandy chill sharks going swim someone pool \n", "\n", "\n", "Aight Sandy you wildin now! Heffa you got sharks in people's front yards now? Word?!?!? That's OD!! http://t.co/aKihjV9k\n", @@ -3256,7 +3198,7 @@ "If that's not the end I the world I don't know what is #hurricane #NYC http://t.co/ue6L3lSV\n", "\n", "--------------------------------------------------------\n", - "end world know hurricane nyc \n", + "end world know hurricane new york city \n", "\n", "\n", "“@BriiLeigh4: Sharks in the streets of New York and New Jersey because of hurricane Sandy #unreal http://t.co/K6RKKXju” THAT'S SWEET!\n", @@ -3268,13 +3210,13 @@ "Yes .. That's a shark FUCK YOU #sandy 😂😂😂 yea my cousin ain't goin no Wea http://t.co/q5WX2CB0\n", "\n", "--------------------------------------------------------\n", - "yes shark fuck sandy yea cousin goin wea \n", + "yes shark fuck sandy yea cousin going wea \n", "\n", "\n", "Superstorm Sandy in New York hira_milgram1's photo http://t.co/qbk6eg0O\n", "\n", "--------------------------------------------------------\n", - "superstorm sandy new york hira milgram1 photo \n", + "superstorm sandy new york hiramilgram1 photo \n", "\n", "\n", "Good Thing They Closed Down The Subway, That Damn Sandy http://t.co/UBc0tzKC\n", @@ -3292,25 +3234,25 @@ "Sandy in NY that's an incredible photo http://t.co/EuSScUzb\n", "\n", "--------------------------------------------------------\n", - "sandy ny incredible photo \n", + "sandy new york incredible photo \n", "\n", "\n", "Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy.Olha: http://t.co/UKu5pzxK aai gente :'(\n", "\n", "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy olha aai gente \n", + "tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy ol aai gente \n", "\n", "\n", "Shark infested streets! Now that's real safe Sandy! #hurricanesandy #wtf #endoftheworld http://t.co/R9lVHRvX\n", "\n", "--------------------------------------------------------\n", - "shark infested streets real safe sandy hurricanesandy wtf endoftheworld \n", + "shark infested streets real safe sandy hurricane sandy endoftheworld \n", "\n", "\n", "Let me tell ALL of you how real Sandy woulda been for me.... That's a shark... In a neighborhood!!! Smh. You http://t.co/TfnT8z7i\n", "\n", "--------------------------------------------------------\n", - "let tell real sandy woulda shark neighborhood smh \n", + "let tell real sandy woulda shark neighborhood \n", "\n", "\n", "This is absolutely incredible! The Old Guard still at post despite the effects of Hurricane Sandy. That's tr http://t.co/GsiT5dXy\n", @@ -3322,7 +3264,7 @@ "Seen this that chuckie uploaded that's crazy ass #hurricane #newyork #staysafe http://t.co/SCxvsKiV\n", "\n", "--------------------------------------------------------\n", - "seen chuckie uploaded crazy ass hurricane newyork staysafe \n", + "seen chuckie uploaded crazy ass hurricane new york staysafe \n", "\n", "\n", "Fuck That Shittttttt 😥😑☔ Sandy :S http://t.co/w0H1qF8V\n", @@ -3346,7 +3288,7 @@ "#SANDY: Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/AvAZafKk '-'\n", "\n", "--------------------------------------------------------\n", - "sandy tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "sandy tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy \n", "\n", "\n", "Incredibly scary what's going on with Sandy. Prayers for all. RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/OhGwcPnc\n", @@ -3355,12 +3297,6 @@ "incredibly scary going sandy prayers \n", "\n", "\n", - "MT @MarlowNYC: Holy Shit: shark swimming in streets of N.J., during #Sandy http://t.co/UmFTNq1m - God, I hope that's photoshopped.\n", - "\n", - "--------------------------------------------------------\n", - "holy shit shark swimming streets n j sandy god hope photoshopped \n", - "\n", - "\n", "Sandy's a bitch http://t.co/NKzwUYMm\n", "\n", "--------------------------------------------------------\n", @@ -3370,7 +3306,7 @@ "Wow look at that sandy ain't playin http://t.co/XDWvp3UG\n", "\n", "--------------------------------------------------------\n", - "wow look sandy playin \n", + "look sandy playin \n", "\n", "\n", "Sooo Sandy I was just joking when I said you weren't about that life #Repost http://t.co/wOMmroH8\n", @@ -3388,7 +3324,7 @@ "#sandy #ny1sandy big fish @ L.E.S. http://t.co/iqlmtode\n", "\n", "--------------------------------------------------------\n", - "sandy ny1sandy big fish l \n", + "sandy ny1sandy big fish \n", "\n", "\n", "Holy cow! That's a shark in the Jersey shore by a house! #sandy http://t.co/xVDe2vzo\n", @@ -3412,7 +3348,7 @@ "Sandy, you's a bad bitch. Fuckin' up NYC. http://t.co/UyTLxuQx\n", "\n", "--------------------------------------------------------\n", - "sandy bad bitch fuckin nyc \n", + "sandy bad bitch fuckin new york city \n", "\n", "\n", "Classic pic, hurricane Sandy and they still protect the Tomb of the Unknown http://t.co/7zVJnXoj\n", @@ -3448,7 +3384,7 @@ "Tomb Of The Unknown Soldier Pic of the Day: Sandy, Schmandy. Soldiers of the 3rd Infantry Regiment continue http://t.co/h7Axi7lk\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier pic day sandy schmandy soldiers 3rd infantry regiment continue \n", + "tomb unknown soldier pic day sandy schmandy soldiers infantry regiment continue \n", "\n", "\n", "Incredible. They still guard the Unknown Soldier during Hurricane Sandy.👮 http://t.co/MO2e19zd\n", @@ -3469,12 +3405,6 @@ "tomb unknown hurricane sandy definition true soldier dedicated \n", "\n", "\n", - "“@AnthonyGally: Tomb of Unknown Soldier still being guarded during hurricane Sandy. Simply Incrediable!!! http://t.co/MTY3SqGq”wow\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "Our amazing Soldiers standing in front of the Tomb Of Unknown Soldiers as Hurricane Sandy hits... Mad respec http://t.co/N43KJnCO\n", "\n", "--------------------------------------------------------\n", @@ -3499,12 +3429,6 @@ "amazing soldiers standing tomb unknown soldier hurricane sandy \n", "\n", "\n", - "“@ahmednaguib: The Tomb of the Unknown Soldier remains guarded during Hurricane #Sandy. http://t.co/jmJUIX2v Wowee.\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier remains guarded hurricane sandy wowee \n", - "\n", - "\n", "http://t.co/iujv78Ed honor guard at the tomb of the unknown soldier amidst hurricane sandy\n", "\n", "--------------------------------------------------------\n", @@ -3622,7 +3546,7 @@ "Hurricane Sandy makin everyone evacuate.... everyone but those who guard the tomb of the unknown soldier... http://t.co/915tV1Jd\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy makin everyone evacuate everyone guard tomb unknown soldier \n", + "hurricane sandy everyone evacuate everyone guard tomb unknown soldier \n", "\n", "\n", "Even through Hurricane Sandy, the guards at the Tomb of the Unknown Soldier will still guard the grave no ma http://t.co/c5YfRty8\n", @@ -3652,7 +3576,7 @@ "These soldiers even thru hurricane sandy still stand at their post and guard to the tomb of the unknowns! Re http://t.co/03Ij2U78\n", "\n", "--------------------------------------------------------\n", - "soldiers even thru hurricane sandy still stand post guard tomb unknowns \n", + "soldiers even hurricane sandy still stand post guard tomb unknowns \n", "\n", "\n", "Soldiers continue to stand guard at the Tomb of the Unknown Soldier despite hurricane Sandy creeping in...He http://t.co/iTazF5b0\n", @@ -3673,12 +3597,6 @@ "even hurricane sandy elite guards stand strong tomb unknown soldier arlington cemetery gulp \n", "\n", "\n", - "WOW“@OMGFacts Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/BSCOFUK5”\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Even during Hurricane Sandy the still patrol the \"Tomb of the unknown soldier\". #AWESOME #USA #MILITARY http://t.co/JOKskKUc\n", "\n", "--------------------------------------------------------\n", @@ -3703,34 +3621,22 @@ "tomb unknown hurricane sandy sandy god bless america troops america \n", "\n", "\n", - "Wow!!! Amazing soldiers standing at the \"Tomb of the Unknown Soldier\" during Hurricane Sandy http://t.co/o8spIahr\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "The Old Guard at the Tomb of the Unknown Soldier in the middle of Hurricane Sandy. What a job. http://t.co/Ya5nvzXA\n", "\n", "--------------------------------------------------------\n", "old guard tomb unknown soldier middle hurricane sandy job \n", "\n", "\n", - "“Absolutely incredible. Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. I http://t.co/30vnuJbr” :')\n", - "\n", - "--------------------------------------------------------\n", - "absolutely incredible tomb unknown soldier continues stay guarded throughout hurricane sandy \n", - "\n", - "\n", "Tomb of the Unknown Soldier. Guarded continuously since 1948, even during Hurricane Sandy http://t.co/rxJRkPCM\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier guarded continuously since 1948 even hurricane sandy \n", + "tomb unknown soldier guarded continuously since948 even hurricane sandy \n", "\n", "\n", "Soldiers at the tomb of the unknown soldier during hurricane sandy #discipline #wow http://t.co/rcvdfrs1\n", "\n", "--------------------------------------------------------\n", - "soldiers tomb unknown soldier hurricane sandy discipline wow \n", + "soldiers tomb unknown soldier hurricane sandy discipline \n", "\n", "\n", "Even Hurricane Sandy can't stop the guard at the Tomb of the Unkown Soldier #America #duty #commitment #free http://t.co/ikchByDL\n", @@ -3742,7 +3648,7 @@ "Come at me bro! #sandy @ Tomb Of The Unknown Soldier http://t.co/saqgjUtz\n", "\n", "--------------------------------------------------------\n", - "come bro sandy tomb unknown soldier \n", + "come sandy tomb unknown soldier \n", "\n", "\n", "“@terrycrist: Powerful image of our military guarding the \"Tomb of the Unknown Soldier\" even in Hurricane Sandy. http://t.co/KoDIY9DM” #fb\n", @@ -3760,7 +3666,7 @@ "Tomb of the Unknowns in DC. http://t.co/cDnxiLYr .. Soldiers 1 Hurricane Sandy 0.. #Sandywho?\n", "\n", "--------------------------------------------------------\n", - "tomb unknowns dc soldiers 1 hurricane sandy 0 sandywho \n", + "tomb unknowns dc soldiers hurricane sandy sandywho \n", "\n", "\n", "So much respect for these soldiers still standing at the tomb of the Unknown Soldier through Hurricane Sandy http://t.co/H8fUEZv5\n", @@ -3780,29 +3686,23 @@ "--------------------------------------------------------\n", "despite hurricane sandy still soldiers tomb unknown soldier god bless troops \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "#Regram Hurricane Sandy wont stop these guys from guarding the tomb of the unknown soldier no exceptions ad http://t.co/gVUOAHXr\n", "\n", "--------------------------------------------------------\n", - "regram hurricane sandy wont stop guys guarding tomb unknown soldier exceptions ad \n", + "hurricane sandy wont stop guys guarding tomb unknown soldier exceptions ad \n", "\n", "\n", "Sticking thru hurricane sandy at the tomb of the unknown soldier. I am proud to be an American. http://t.co/PRkdJbbT\n", "\n", "--------------------------------------------------------\n", - "sticking thru hurricane sandy tomb unknown soldier proud american \n", + "sticking hurricane sandy tomb unknown soldier proud american \n", "\n", "\n", "In the face of #Sandy , soldiers at Tomb of the Unknown Soldier in D.C. stood their post, saying \"Sandy, Come get some\" http://t.co/6C38BqYE\n", "\n", "--------------------------------------------------------\n", - "face sandy soldiers tomb unknown soldier c stood post saying sandy come get \n", + "face sandy soldiers tomb unknown soldier stood post saying sandy come get \n", "\n", "\n", "Hurricane Sandy? Looks like the end of the world to me! http://t.co/LIgTh7G0\n", @@ -3814,19 +3714,19 @@ "Guards will stay at the tomb of the unknown soldier will stay there 24/7 even during hurricane sandy http://t.co/clBOZktr\n", "\n", "--------------------------------------------------------\n", - "guards stay tomb unknown soldier stay 24 7 even hurricane sandy \n", - "\n", - "\n", - "@bmdoty: “@jonbrewerphoto: Tomb of the Unknown Soldier during #sandy. Wow. http://t.co/aG2GHyPg” what a photo Awesome!\n", - "\n", - "--------------------------------------------------------\n", - "photo awesome \n", + "guards stay tomb unknown soldier stay there4 even hurricane sandy \n", "\n", "\n", "The Tomb of the Unknown Soldier! 🇺🇸 Soldiers guard the tomb as Hurricane Sandy begins to threaten DC. I wish http://t.co/dV1lJVrp\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier soldiers guard tomb hurricane sandy begins threaten dc wish \n", + "tomb unknown soldier soldiers guard tomb hurricane sandy begins threaten dc wish \n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "\n", "Guarding Tomb of the Unknown Soldier come hell or Hurricane Sandy http://t.co/LZ1j6xGI\n", @@ -3856,7 +3756,7 @@ "thats insane bro!!! RT @Godiva_Dark_89: Crazy Shot of NYC w/ Hurricane Sandy on the Move http://t.co/ebN5dBLv\n", "\n", "--------------------------------------------------------\n", - "thats insane bro \n", + "thats insane \n", "\n", "\n", "Tomb of the unknwn soldier stays guarded through hurricane sandy. #Respect #Merica 🇺🇸 http://t.co/eOaNctEf\n", @@ -3868,7 +3768,7 @@ "michael_schlact's photo http://t.co/fZNxEsnW Tomb of the Unknown Soldier during Hurricane #Sandy\n", "\n", "--------------------------------------------------------\n", - "michael schlact photo tomb unknown soldier hurricane sandy \n", + "michaelschlact photo tomb unknown soldier hurricane sandy \n", "\n", "\n", "Still guarding the Tomb of the Unknown Solider 🇺🇸 even with hurricane sandy #proudtobeamerican ❤💙 http://t.co/tChvW0cu\n", @@ -3877,12 +3777,6 @@ "still guarding tomb unknown solider even hurricane sandy proudtobeamerican \n", "\n", "\n", - "“Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/Yj0ufGwN”\n", - "\n", - "--------------------------------------------------------\n", - "amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Even as Sandy hits the East Coast this morning these men still guard at The Tomb of The Unknown Soldier. Thi http://t.co/ip74nMJP\n", "\n", "--------------------------------------------------------\n", @@ -3922,7 +3816,7 @@ "Since 1937 the tomb of te unknown soldiers gaurd has never left their post... Hurricane Sandy is no exceptio http://t.co/88jMgj2O\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb unknown soldiers gaurd never left post hurricane sandy exceptio \n", + "since937 tomb unknown soldiers gaurd never left post hurricane sandy exceptio \n", "\n", "\n", "Patriotism. #SOT “@kellyanncollins: The guards at the Tomb of the Unknown Soldier say they will stay - despite #sandy http://t.co/Vks1BYCC”\n", @@ -3952,7 +3846,7 @@ "Even during Hurricane Sandy, the Tomb of the Unknown Soldier is in good hands! #ArlingtonNationalCemetary #L http://t.co/GYJ1Sf4r\n", "\n", "--------------------------------------------------------\n", - "even hurricane sandy tomb unknown soldier good hands arlingtonnationalcemetary l \n", + "even hurricane sandy tomb unknown soldier good hands arlingtonnationalcemetary \n", "\n", "\n", "Tomb of the Unknown Soldier remains guarded during Hurricane Sandy. #ProudToBeAnAmerican http://t.co/PknY6VzX\n", @@ -3997,24 +3891,12 @@ "tomb unknown soldier continues stay guarded throughout hurricane sandy using bayonets \n", "\n", "\n", - "@LoGaN_4_: Simply Speechless. Tomb Of The Unknown Soldier during hurricane Sandy.. http://t.co/1uFm23RN\n", - "\n", - "--------------------------------------------------------\n", - "simply speechless tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "This is fucking dedication, bc I know their cold as fuck! Guards at Tomb of the Unknown Soldier Hurricane Sandy. | http://t.co/ihTDn8wq\n", "\n", "--------------------------------------------------------\n", "fucking dedication bc know cold fuck guards tomb unknown soldier hurricane sandy \n", "\n", "\n", - "Tomb of the Unknown Soldier during Hurricane Sandy!!!!! http://t.co/VWKZLblK\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Guards at the Tomb of the Unknown Soldier during Hurricane Sandy. Awesome http://t.co/1TePAzGy\n", "\n", "--------------------------------------------------------\n", @@ -4078,13 +3960,13 @@ "Humbling @BootsWitDeFur: The Honor Guard still at their post at the Tomb of the Unknown Soldier despite Hurricane Sandy http://t.co/EgRMs7YU\n", "\n", "--------------------------------------------------------\n", - "humbling honor guard still post tomb unknown soldier despite hurricane sandy \n", + "humbling \n", "\n", "\n", "The US sentinels guarding the Tomb of the Unknown Soldier during Sandy hurricane! Hope all my friends are sa http://t.co/dTZbLqUi\n", "\n", "--------------------------------------------------------\n", - "us sentinels guarding tomb unknown soldier sandy hurricane hope friends sa \n", + "us sentinels guarding tomb unknown soldier sandy hurricane hope friends \n", "\n", "\n", "Sandy and Tomb of the Unknown Soldier. Moving dedication. http://t.co/WiROU5Jm\n", @@ -4126,7 +4008,7 @@ "Despite Hurricane Sandy, three soldiers of the 3rd Infantry Regiment stand guard at the Tomb of the Unknown http://t.co/IbUlG3Ax\n", "\n", "--------------------------------------------------------\n", - "despite hurricane sandy three soldiers 3rd infantry regiment stand guard tomb unknown \n", + "despite hurricane sandy three soldiers infantry regiment stand guard tomb unknown \n", "\n", "\n", "Soldiers still standing guard of The Tomb of the Unknown Soldier. Even through Hurricane Sandy. #unknownsold http://t.co/MMqi2Eyz\n", @@ -4174,7 +4056,7 @@ "These troops are on guard at the Tomb of the Unknown Solider 24/7 including during Hurricane Sandy #salute # http://t.co/J5sQgHw5\n", "\n", "--------------------------------------------------------\n", - "troops guard tomb unknown solider 24 7 including hurricane sandy salute \n", + "troops guard tomb unknown solider4 including hurricane sandy salute \n", "\n", "\n", "Amazing RT @DerekLuxe: Still guarding the Tomb of the Unknown Soldier in the midst of Hurricane #Sandy #Frankenstorm http://t.co/D366en1Z\n", @@ -4204,7 +4086,7 @@ "Wow. Soldiers not abandoning their post at the Tomb of the Unknown Soldier despite Hurricane Sandy. Tomb has http://t.co/wLWgngDs\n", "\n", "--------------------------------------------------------\n", - "wow soldiers abandoning post tomb unknown soldier despite hurricane sandy tomb \n", + "soldiers abandoning post tomb unknown soldier despite hurricane sandy tomb \n", "\n", "\n", "Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. #RESPECT #HONOR #USAARM http://t.co/INIinxws\n", @@ -4228,7 +4110,7 @@ "Tomb of the UnKnown soldiers 24/7/365 Hurricane Sandy will NOT scare these Soldiers #Respect http://t.co/ziQTwpM8\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldiers 24 7 365 hurricane sandy scare soldiers respect \n", + "tomb unknown soldiers465 hurricane sandy scare soldiers respect \n", "\n", "\n", "Tomb of the unknown stays guarded during hurricane Sandy. #amazing http://t.co/HNpTqVbx\n", @@ -4240,7 +4122,7 @@ "Since 1937 the Tomb of the Unknown guard have never left their post and Hurricane Sandy will be no exception http://t.co/3kHFEUfm\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb unknown guard never left post hurricane sandy exception \n", + "since937 tomb unknown guard never left post hurricane sandy exception \n", "\n", "\n", "Talk about dedication? Hurricane Sandy bearing down & these men guard the Tomb of the Unknown Soldier Had to Share http://t.co/ioWsWQfk\n", @@ -4285,18 +4167,6 @@ "even midst hurricane sandy guards still standing watch tomb unknown soldier \n", "\n", "\n", - "Absolutely incredible. Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. http://t.co/9wReKnOo\n", - "\n", - "--------------------------------------------------------\n", - "absolutely incredible tomb unknown soldier continues stay guarded throughout hurricane sandy \n", - "\n", - "\n", - "Obama told the marines they don't have to guard the Tomb of the Unknown Soldier due to Hurricane Sandy. They http://t.co/qTTa1NFy\n", - "\n", - "--------------------------------------------------------\n", - "obama told marines guard tomb unknown soldier due hurricane sandy \n", - "\n", - "\n", "Still guarding the tomb of the unknown soldier through sandy #bosses http://t.co/UiwAc4Fi\n", "\n", "--------------------------------------------------------\n", @@ -4342,25 +4212,19 @@ "Since 1937 the Tomb of the Unknown Soldier has not been left unguarded. Hurricane Sandy creates no exception http://t.co/m4hh7KT8\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb unknown soldier left unguarded hurricane sandy creates exception \n", + "since937 tomb unknown soldier left unguarded hurricane sandy creates exception \n", "\n", "\n", "Hurricane Sandy isn't stopping the guards at the tomb of the unknown soldier.. Never abandoned since 1937. http://t.co/lzhfOCNl\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy stopping guards tomb unknown soldier never abandoned since 1937 \n", - "\n", - "\n", - "Wow! RT @OMGFacts: Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/PqsujqW2\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", + "hurricane sandy stopping guards tomb unknown soldier never abandoned since937 \n", "\n", "\n", "Tomb of the unknown soldier guarded since 1937. Sandy doesn't seem to be a problem. http://t.co/fHCE1x7p\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier guarded since 1937 sandy seem problem \n", + "tomb unknown soldier guarded since937 sandy seem problem \n", "\n", "\n", "The Tomb of the Unknown Solider. Even during Hurricane Sandy they stand their post. #America #Respect http://t.co/2uFebKWg\n", @@ -4411,12 +4275,6 @@ "tomb unknown soldiers hurricane sandy respect \n", "\n", "\n", - "@michael_schlact: God Bless America. Tomb of the Unknown Soldier during Hurricane Sandy. http://t.co/RZblTJrc instant chills\n", - "\n", - "--------------------------------------------------------\n", - "god bless america tomb unknown soldier hurricane sandy instant chills \n", - "\n", - "\n", "Respect to the men protecting the Tomb of the unknown soldiers during hurricane sandy http://t.co/y8j5V1eo\n", "\n", "--------------------------------------------------------\n", @@ -4438,19 +4296,19 @@ "Standing guard during hurricane sandy #godblesstheusa #hurricanesandy tomb of the unknown soldier http://t.co/UeNrZ95W\n", "\n", "--------------------------------------------------------\n", - "standing guard hurricane sandy godblesstheusa hurricanesandy tomb unknown soldier \n", + "standing guard hurricane sandy godblesstheusa hurricane sandy tomb unknown soldier \n", "\n", "\n", "A picture of hurricane sandy approaching NY. looks like the shit from day after tomorrow! 😱 http://t.co/hkPhDhWL\n", "\n", "--------------------------------------------------------\n", - "picture hurricane sandy approaching ny looks like shit day tomorrow \n", + "picture hurricane sandy approaching new york looks like shit day tomorrow \n", "\n", "\n", "Three soldiers protecting the tomb of the unknown soldier during Sandy...wow http://t.co/6v0ggoEF\n", "\n", "--------------------------------------------------------\n", - "three soldiers protecting tomb unknown soldier sandy wow \n", + "three soldiers protecting tomb unknown soldier sandy \n", "\n", "\n", "#Sandy doesn't stop Soldiers protecting the Tomb of the Unknown Soldier. http://t.co/e3kudJ7O\n", @@ -4462,7 +4320,7 @@ "Tomb of unknown soldier remains guarded thru Sandy. #respect http://t.co/VvOP2JMi\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier remains guarded thru sandy respect \n", + "tomb unknown soldier remains guarded sandy respect \n", "\n", "\n", "Sandy is nothing for those who stand watch for the tomb of the unknown #Respect #Honor http://t.co/HX0WQU5M\n", @@ -4471,12 +4329,6 @@ "sandy nothing stand watch tomb unknown respect honor \n", "\n", "\n", - "Amazing soldiers standing at the \"Tomb of the Unknown Soldier\" during Hurricane Sandy http://t.co/XmjRrcZO\n", - "\n", - "--------------------------------------------------------\n", - "amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Tomb of Unknown Soldier still being guarded during hurricane Sandy. Simply Incrediable!!! http://t.co/mwJT8KGY\n", "\n", "--------------------------------------------------------\n", @@ -4492,7 +4344,7 @@ "Tomb of the Unknown Soldier. Monday, October 29, 2012. Hurricane Sandy. Still being guarded. #USA http://t.co/XMAzwgtT\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier monday october 29 2012 hurricane sandy still guarded usa \n", + "tomb unknown soldier monday october92 hurricane sandy still guarded usa \n", "\n", "\n", "Tomb of Unknown soldier this morning during Hurricane Sandy. #Respect http://t.co/tCjJavft\n", @@ -4618,13 +4470,13 @@ "Aê @CarlosPort acho q jantaram a repórter loirinha da CNN mesmo #Sandy ==>Tubarões em ruas de Nova Jersey http://t.co/lRpnkKq3 via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "aê acho q jantaram repórter loirinha da cnn mesmo sandy greater tubarões em ruas nova jersey \n", + "aê acho q jantaram repórter loirinda cnn sandy tubarões ruas nova jersey \n", "\n", "\n", "la foto de alberto_rubio http://t.co/C1cM63Tw recreación de #Sandy\n", "\n", "--------------------------------------------------------\n", - "foto alberto rubio recreación sandy \n", + "foto albertorubio recreación sandy \n", "\n", "\n", "#sandy I see you coming http://t.co/CVa25qcR\n", @@ -4660,7 +4512,7 @@ "Amazing pic of #sandy hitting NYC, scary! http://t.co/xFQHqPFO\n", "\n", "--------------------------------------------------------\n", - "amazing pic sandy hitting nyc scary \n", + "amazing pic sandy hitting new york city scary \n", "\n", "\n", "#sandy getting serious #smartsharks http://t.co/x3030jRc\n", @@ -4672,13 +4524,13 @@ "Just a pic from NY!!! #storm #sandy #NYC http://t.co/kRb1hVh3\n", "\n", "--------------------------------------------------------\n", - "pic ny storm sandy nyc \n", + "pic new york storm sandy new york city \n", "\n", "\n", "NOT photoshopped!!..Photo taken in NYC subway.. craycray #sandy http://t.co/dm3NXn6o\n", "\n", "--------------------------------------------------------\n", - "photoshopped photo taken nyc subway craycray sandy \n", + "photoshopped photo taken new york city subway craycray sandy \n", "\n", "\n", "Pray for USA - #sandy #huricane #statueofliberty #ouragan #desaster #insta #instagrammers #instapic #tweet # http://t.co/jcvgwi0d\n", @@ -4690,13 +4542,13 @@ "#superstormsandy #NYC #sandy http://t.co/sAAbzL8f\n", "\n", "--------------------------------------------------------\n", - "superstormsandy nyc sandy \n", + "superstormsandy new york city sandy \n", "\n", "\n", "#sandy #nyc #itwentdown http://t.co/lzxI6UD3\n", "\n", "--------------------------------------------------------\n", - "sandy nyc itwentdown \n", + "sandy new york city itwentdown \n", "\n", "\n", "Times Square completely alone!! http://t.co/aqQxQXLB #hurricance #sandy #fb\n", @@ -4708,25 +4560,25 @@ "prefiero MIL veces, violencia, balazos, retenes ETC a estar lidiando con la naturaleza; pobres weyes O.o #Sandy #C http://t.co/Uj2yoZHZ\n", "\n", "--------------------------------------------------------\n", - "prefiero mil veces violencia balazos retenes etc lidiando naturaleza pobres weyes sandy c \n", + "prefiero mil veces violencia balazos retenes etc lidiando naturaleza pobres weyes sandy \n", "\n", "\n", "Chillin #Seal in #NY #Sandy #swagg http://t.co/kHTssQ1g\n", "\n", "--------------------------------------------------------\n", - "chillin seal ny sandy swagg \n", + "chillin seal new york sandy swagg \n", "\n", "\n", "Whoa, apparently there are #sharks deep in New Jersey! Hectic. #Sandy http://t.co/bEozD4kA\n", "\n", "--------------------------------------------------------\n", - "whoa apparently sharks deep new jersey hectic sandy \n", + "apparently sharks deep new jersey hectic sandy \n", "\n", "\n", "just a shark swimmin thru jersey crazy af #Sandy http://t.co/0IZVrRvt\n", "\n", "--------------------------------------------------------\n", - "shark swimmin thru jersey crazy af sandy \n", + "shark swimmin jersey crazy af sandy \n", "\n", "\n", "Mental #sandy http://t.co/wu3vXPpO\n", @@ -4738,25 +4590,25 @@ "#NewYork #Sandy #HolyShit #Instaprophecy #2012 http://t.co/WZwGEzHr\n", "\n", "--------------------------------------------------------\n", - "newyork sandy holyshit instaprophecy 2012 \n", + "new york sandy holyshit instaprophecy012 \n", "\n", "\n", "Amazing... #Sandy ya esta en NYC :s que Dios tome control de esa tormenta! OMG! http://t.co/7v0xK37C\n", "\n", "--------------------------------------------------------\n", - "amazing sandy nyc dios tome control tormenta omg \n", + "amazing sandy new york city dios tome control tormenta \n", "\n", "\n", "#huracán #sandy #nuevayork #ny #eua \\n\\n#instagram http://t.co/jGkC0dSu\n", "\n", "--------------------------------------------------------\n", - "huracán sandy nuevayork ny eua instagram \n", + "huracán sandy nuevayork new york eua instagram \n", "\n", "\n", "Here comes hurricanesandy #sandy @ Hudson River Greenway http://t.co/WDWLQg4L\n", "\n", "--------------------------------------------------------\n", - "comes hurricanesandy sandy hudson river greenway \n", + "comes hurricane sandy sandy hudson river greenway \n", "\n", "\n", "This crazy for real.. Sharks swimming on the streets of Jersy.. Smfh.. #Sandy http://t.co/jobR7ocl\n", @@ -4768,13 +4620,13 @@ "Sandy in NY.. #MUSTfollow #ny #sandy #uae #wrath http://t.co/tIjp6fCG\n", "\n", "--------------------------------------------------------\n", - "sandy ny mustfollow ny sandy uae wrath \n", + "sandy new york mustfollow new york sandy uae wrath \n", "\n", "\n", "#sandy No big macs. @ L.E.S. http://t.co/D9WnqTY3\n", "\n", "--------------------------------------------------------\n", - "sandy big macs l \n", + "sandy big macs \n", "\n", "\n", "There is a shark in the front lawn. #sandy http://t.co/5pZdSOIS\n", @@ -4801,22 +4653,16 @@ "rest peace guy boat sandy \n", "\n", "\n", - "👎😳☔☁ #sandy http://t.co/UAjbVbTm\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Stay safe my american friends! #nyc #sandy http://t.co/mQcFZmRS\n", "\n", "--------------------------------------------------------\n", - "stay safe american friends nyc sandy \n", + "stay safe american friends new york city sandy \n", "\n", "\n", "#sandy NJ: http://t.co/PdBBZVpP\n", "\n", "--------------------------------------------------------\n", - "sandy nj \n", + "sandy new jersey \n", "\n", "\n", "incredible RT @kasiainparis: wow! RT @holychic: #Sandy #Frankenstorm RT @danaybg: Another Shark on the street http://t.co/rLCInqye\n", @@ -4828,13 +4674,13 @@ "Dang #sandy #home #ny http://t.co/sbaGw94W\n", "\n", "--------------------------------------------------------\n", - "dang sandy home ny \n", + "dang sandy home new york \n", "\n", "\n", "#NY #Sandy #Сэнди #news #America http://t.co/zYKRHbf0\n", "\n", "--------------------------------------------------------\n", - "ny sandy сэнди news america \n", + "new york sandy сэнди news america \n", "\n", "\n", "Damn!!\\n#Sandy\\n http://t.co/IXL8lhgD\n", @@ -4864,13 +4710,13 @@ "#Sandy a orilla do mundo! #StatueofLiberty like the day after tomorrow! #NewYork http://t.co/NEHncgRk\n", "\n", "--------------------------------------------------------\n", - "sandy orilla mundo statueofliberty like day tomorrow newyork \n", + "sandy orilla mundo statueofliberty like day tomorrow new york \n", "\n", "\n", "#NYC + #Sandy 😱 http://t.co/4XuYvs2c\n", "\n", "--------------------------------------------------------\n", - "nyc sandy \n", + "new york city sandy \n", "\n", "\n", "dhutchence's photo http://t.co/XIkpUaA4 shark in New Jersey brought in by #sandy!\n", @@ -4882,7 +4728,7 @@ "Oh Sandy! #sandynyc #sandy2012 #nyc #hurricanenyflow http://t.co/NCXbS6Jr\n", "\n", "--------------------------------------------------------\n", - "oh sandy sandynyc sandy2012 nyc hurricanenyflow \n", + "sandy sandynyc sandy2012 new york city hurricanenyflow \n", "\n", "\n", "Dam sharks out there youl be safe #Sandy http://t.co/7YRkXnlY\n", @@ -4891,16 +4737,10 @@ "dam sharks youl safe sandy \n", "\n", "\n", - "#Sandy !!! http://t.co/QnZPoNxy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "#Sandy #Water #Waves #StatueOfLiberty #NewYork #NY #Scary :o http://t.co/haRt1oK8\n", "\n", "--------------------------------------------------------\n", - "sandy water waves statueofliberty newyork ny scary \n", + "sandy water waves statueofliberty new york new york scary \n", "\n", "\n", "That dont look right....... #sandy http://t.co/EJ1dAWfM\n", @@ -4909,34 +4749,22 @@ "dont look right sandy \n", "\n", "\n", - "Oh no!!!! #sandy http://t.co/t2EFho40\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", - "😳 #sandy http://t.co/ZkoyD45W\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "#Sandy - Dans le New Jersey, un petit requin emporté par les inondations nage tranquillement devant les maisons. http://t.co/yhJKx19O\n", "\n", "--------------------------------------------------------\n", - "sandy dans new jersey petit requin emporté par inondations nage tranquillement devant maisons \n", + "sandy new jersey petit requin emporté inondations nage tranquillement devant maisons \n", "\n", "\n", "The power of #photoshop #nyc #sandy #storm #newyork http://t.co/wZIHJFK2\n", "\n", "--------------------------------------------------------\n", - "power photoshop nyc sandy storm newyork \n", + "power photoshop new york city sandy storm new york \n", "\n", "\n", "#sandy #NYC http://t.co/t6aoGAJF\n", "\n", "--------------------------------------------------------\n", - "sandy nyc \n", + "sandy new york city \n", "\n", "\n", "HOLY SHIT #Sandy #Liberty http://t.co/TAYN8xcK\n", @@ -4948,13 +4776,13 @@ "Stay strong my people in the East Coast!! Thoughts are with you! \\n#USA #Newyork #sandy #storm #rain #Hurrica http://t.co/R5kp0igE\n", "\n", "--------------------------------------------------------\n", - "stay strong people east coast thoughts usa newyork sandy storm rain hurrica \n", + "stay strong people east coast thoughts usa new york sandy storm rain hurrica \n", "\n", "\n", "#sandy #newyork http://t.co/v3EVgiDZ\n", "\n", "--------------------------------------------------------\n", - "sandy newyork \n", + "sandy new york \n", "\n", "\n", "Can't get over this picture 😁#DatHoeSandy #sandy http://t.co/QyLZtI6f\n", @@ -4963,12 +4791,6 @@ "get picture dathoesandy sandy \n", "\n", "\n", - "OMG!\"@kaRitiNa_bell: El dijo quiero conocer new york!! jajaja #Sandy http://t.co/dx8EuxOR\"\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "Dios santo jaja tiburones por las calles RT @HiiprettyNoona: Maintenant quand t'es dans ta voiture au USA #Sandy http://t.co/Z7uoKswY”\n", "\n", "--------------------------------------------------------\n", @@ -4990,13 +4812,13 @@ "NYC#huracan #sandy http://t.co/Wx5cBKxA\n", "\n", "--------------------------------------------------------\n", - "nyc huracan sandy \n", + "nychuracan sandy \n", "\n", "\n", "De por dios new york en peligro @sonnyflow #sandy #tormentasandy #newyork #nyc #sonnyvision http://t.co/Mp4Zmk63\n", "\n", "--------------------------------------------------------\n", - "dios new york peligro sandy tormentasandy newyork nyc sonnyvision \n", + "dios new york peligro sandy tormentasandy new york new york city sonnyvision \n", "\n", "\n", "أسماك القرش تسبح بجانب المنازل في ولاية نيو جيرسي الامريكية اثر فيضانات اعصار ساندي\\n\\n#Sandy http://t.co/aSL3zzAT http://t.co/fm89QgAX”\n", @@ -5008,49 +4830,49 @@ "Tburon casual por las calles de NY #Sandy http://t.co/KKPSyV1n\n", "\n", "--------------------------------------------------------\n", - "tburon casual calles ny sandy \n", + "tburon casual calles new york sandy \n", "\n", "\n", "#repost #sandy #NYC http://t.co/WOiOkm8E\n", "\n", "--------------------------------------------------------\n", - "repost sandy nyc \n", + "repost sandy new york city \n", "\n", "\n", "Foto del huracán Sandy en #NY #sandy #huracan #usa http://t.co/5vus3caZ\n", "\n", "--------------------------------------------------------\n", - "foto huracán sandy ny sandy huracan usa \n", + "foto huracán sandy new york sandy huracan usa \n", "\n", "\n", "C'est juste fou! #Sandy #Frankenstorm http://t.co/C8IPizTG\n", "\n", "--------------------------------------------------------\n", - "c est juste fou sandy frankenstorm \n", + "juste fou sandy frankenstorm \n", "\n", "\n", "Shot of NYC today. Nature is awesome\\n#Sandy http://t.co/39VKrGbJ\n", "\n", "--------------------------------------------------------\n", - "shot nyc today nature awesome sandy \n", + "shot new york city today nature awesome sandy \n", "\n", "\n", "Just a baby shark swimming by a house in ocean city #unbelievable #sandy #wtf http://t.co/t43K4Nj2\n", "\n", "--------------------------------------------------------\n", - "baby shark swimming house ocean city unbelievable sandy wtf \n", + "baby shark swimming house ocean city unbelievable sandy \n", "\n", "\n", "UNBELIEVABLE BUT TRUE! SHARK in flooded waters in Ocesn City, NJ! Yikes! http://t.co/k3bzI7dU #Sandy\n", "\n", "--------------------------------------------------------\n", - "unbelievable true shark flooded waters ocesn city nj yikes sandy \n", + "unbelievable true shark flooded waters ocesn city new jersey sandy \n", "\n", "\n", "#Speechless #honor #duty #unknownsoldier #amazing #sandy #neverquit #heroes http://t.co/T4AmkVLk\n", "\n", "--------------------------------------------------------\n", - "speechless honor duty unknownsoldier amazing sandy neverquit heroes \n", + "speechless honor duty unknown soldier amazing sandy neverquit heroes \n", "\n", "\n", "THATS CRAZYY!! 😱“@justforkicksx22: \"@NoeNessa: #sandy hitting New York really bad hope everyone is safe http://t.co/uAotuHDQ\"”\n", @@ -5080,7 +4902,7 @@ "#Wow #Sandy is very #serious.. #New York be safe & be careful...🙏✨🙏 http://t.co/coUMurLW\n", "\n", "--------------------------------------------------------\n", - "wow sandy serious new york safe careful \n", + "sandy serious new york safe careful \n", "\n", "\n", "Sharks walking the streets of America\\n\\nhttps://t.co/k3fyMGhs\\n\\n#sandy\n", @@ -5107,22 +4929,16 @@ "sharks new jersey woah shark new jersey sandy \n", "\n", "\n", - "#sandy #NY 😱😱☁⚡☔⚡☁☁⚡☔☁ http://t.co/4x8jczF7\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "RP shark in a NJ backyard?! #sandy http://t.co/Q4tWKg8C\n", "\n", "--------------------------------------------------------\n", - "rp shark nj backyard sandy \n", + "rp shark new jersey backyard sandy \n", "\n", "\n", "Omg, y'a des requins qui se promènent sur la route,svp. #Sandy http://t.co/3yKnppnN\n", "\n", "--------------------------------------------------------\n", - "omg des requins qui promènent sur route svp sandy \n", + "requins promènent route svp sandy \n", "\n", "\n", "اعصار ساندي يغطي سماء نيويورك #sandy http://t.co/JqaHTpgZ\n", @@ -5134,13 +4950,7 @@ "#picoftheday #sandy the perfect storm! #nyc http://t.co/PrG4Ok78\n", "\n", "--------------------------------------------------------\n", - "picoftheday sandy perfect storm nyc \n", - "\n", - "\n", - "#Sandy #NYC 😧☔🌀🌊 http://t.co/K6eREe3R\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", + "picoftheday sandy perfect storm new york city \n", "\n", "\n", "Subway #Sandy clean http://t.co/z6D1gewf\n", @@ -5155,22 +4965,16 @@ "scary take care people sandy \n", "\n", "\n", - "@davcole: Ok #Sandy ain't no joke! This #Shark swam past a New Jersey home! http://t.co/4bf3pB5q ^^Dang!!\n", - "\n", - "--------------------------------------------------------\n", - "ok sandy joke shark swam past new jersey home dang \n", - "\n", - "\n", "Soldiers-1, Sandy-0. #soldiers #sandy #unknownsoldier http://t.co/ONNPPuYk\n", "\n", "--------------------------------------------------------\n", - "soldiers 1 sandy 0 soldiers sandy unknownsoldier \n", + "soldiers sandy soldiers sandy unknown soldier \n", "\n", "\n", "Insane picture of Hurricane #Sandy approaching NYC. http://t.co/gLDgh61K\n", "\n", "--------------------------------------------------------\n", - "insane picture hurricane sandy approaching nyc \n", + "insane picture hurricane sandy approaching new york city \n", "\n", "\n", "Casual shark swimming passed a car :/ #Sandy http://t.co/6qdtksRb\"\n", @@ -5182,25 +4986,19 @@ "Ca-ray-zee picture of the #statueofliberty as #sandy approaches #nyc http://t.co/aNvno2EX\n", "\n", "--------------------------------------------------------\n", - "ca ray zee picture statueofliberty sandy approaches nyc \n", - "\n", - "\n", - "#NYC #Sandy http://t.co/EN3Eot1j\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", + "ca ray zee picture statueofliberty sandy approaches new york city \n", "\n", "\n", "What an apocalyptic photograph of #Sandy approaching #NewYork http://t.co/gfayVenE” via @lopezperiodista\n", "\n", "--------------------------------------------------------\n", - "apocalyptic photograph sandy approaching newyork \n", + "apocalyptic photograph sandy approaching new york \n", "\n", "\n", "#Newyork #Storm #Sandy ,, OMG... http://t.co/qKSSlwa2\n", "\n", "--------------------------------------------------------\n", - "newyork storm sandy omg \n", + "new york storm sandy \n", "\n", "\n", "What the shark !!!! #shark #sandy http://t.co/KQPgLeY4\n", @@ -5212,7 +5010,7 @@ "Jesussssss save her!!! NYC get ready get ready cuz here she comes! #Sandy http://t.co/pCB69Uxl\n", "\n", "--------------------------------------------------------\n", - "jesussssss save nyc get ready get ready comes sandy \n", + "jesussssss save new york city get ready get ready cuz comes sandy \n", "\n", "\n", "New York, be careful. #sandy #pray4NYC http://t.co/GxXkchih\n", @@ -5236,7 +5034,7 @@ "Great shot taken of #Sandy approaching NYC. http://t.co/RCLbKIDO\n", "\n", "--------------------------------------------------------\n", - "great shot taken sandy approaching nyc \n", + "great shot taken sandy approaching new york city \n", "\n", "\n", "Foto del Huracán #Sandy http://t.co/QwsbGT4F via @LucasPalape // Terrible.\n", @@ -5248,7 +5046,7 @@ "#SandyNeedsToSitDown #SandyNeedsToSitDown #Manhattan The City Affected of Torment #Sandy OMG http://t.co/ptERhQkF\n", "\n", "--------------------------------------------------------\n", - "sandyneedstositdown sandyneedstositdown manhattan city affected torment sandy omg \n", + "sandyneedstositdown sandyneedstositdown manhattan city affected torment sandy \n", "\n", "\n", "A picture of hurricane #Sandy approaching NEW YORK!! Crazy mother Nature.. http://t.co/SyOLaAGP\n", @@ -5266,7 +5064,7 @@ "Un tiburon en la calle de NYC #Sandy http://t.co/p6ePa1cc\n", "\n", "--------------------------------------------------------\n", - "tiburon calle nyc sandy \n", + "tiburon calle new york city sandy \n", "\n", "\n", "Haaien in de straten. http://t.co/naKMTbat #Sandy\n", @@ -5275,12 +5073,6 @@ "haaien straten sandy \n", "\n", "\n", - "https://t.co/QtjMaRcB HURRICANE #SANDY\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "Sandy llego como película! #sandy #new #york #city #news #usa #follower #followme #followback #followstagram http://t.co/Q6SNhSFk\n", "\n", "--------------------------------------------------------\n", @@ -5290,7 +5082,7 @@ "Would you look at this? Get out da street. Seal. #sandy http://t.co/lZJwl4Ji\n", "\n", "--------------------------------------------------------\n", - "would look get da street seal sandy \n", + "would look get street seal sandy \n", "\n", "\n", "https://t.co/fsHzWNHg i always wondered y sushi is so popular on the east coast #fresh #sandy\n", @@ -5299,12 +5091,6 @@ "always wondered sushi popular east coast fresh sandy \n", "\n", "\n", - "@AngelAbreu87: Shark on the highway in New Jersey: http://t.co/XcyWHcz4 #Sandy @Pattyzxs08 @Juaneidy @SantaYCruzG @Germayory impresionante\n", - "\n", - "--------------------------------------------------------\n", - "shark highway new jersey sandy impresionante \n", - "\n", - "\n", "Every storm runs out of rain just like every dark night turns into day #sandy #gettysburg http://t.co/oPEP1I0E\n", "\n", "--------------------------------------------------------\n", @@ -5314,7 +5100,7 @@ "Frankie goes to Hollywood, #Sandy Marton goes to NY https://t.co/VpIiJpUj #PrayForUSA\n", "\n", "--------------------------------------------------------\n", - "frankie goes hollywood sandy marton goes ny prayforusa \n", + "frankie goes hollywood sandy marton goes new york prayforusa \n", "\n", "\n", "Is it true ?! http://t.co/IQy5cr6G #Shark #Sandy\n", @@ -5326,7 +5112,7 @@ "pqp serio que esse shark in new jersey is true? FFFFFFFFFUUUUUUUUUU http://t.co/slkWNvke #Sandy #shark\n", "\n", "--------------------------------------------------------\n", - "pqp serio esse shark new jersey true fffffffffuuuuuuuuuu sandy shark \n", + "pqp serio shark new jersey true fffffffffuuuuuuuuuu sandy shark \n", "\n", "\n", "Soo umm idk how true... But if it is, yea straight outta control!! #sandy http://t.co/rhckuVeW\n", @@ -5338,7 +5124,7 @@ "@Rachy1206 @DYfernis Miren más noticias sobre lo que ha ocurrido, han aparecido tiburones en las calles #Sandy #NJ http://t.co/A15UyC2f\n", "\n", "--------------------------------------------------------\n", - "miren noticias ocurrido aparecido tiburones calles sandy nj \n", + "miren noticias queocurrido aparecido tiburones calles sandy new jersey \n", "\n", "\n", "http://t.co/3LosWiq6 #respect be thankful for what you have #sandy\n", @@ -5353,12 +5139,6 @@ "timesquare neva shuts \n", "\n", "\n", - "NYC ! #Sandy .. \\nhttp://t.co/C4XJk7Ah\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", - "\n", - "\n", "http://t.co/vvafu5hW incredible #sandy\n", "\n", "--------------------------------------------------------\n", @@ -5368,13 +5148,13 @@ "Een rots in de branding! #ladyLiberty midden in #Sandy #NYC http://t.co/Qhe3EnJA\n", "\n", "--------------------------------------------------------\n", - "rots branding ladyliberty midden sandy nyc \n", + "rots branding ladyliberty midden sandy new york city \n", "\n", "\n", "deejaypavi's photo http://t.co/e54TiUzb Un requin dans son jardin #Sandy\n", "\n", "--------------------------------------------------------\n", - "deejaypavi photo requin dans jardin sandy \n", + "deejaypavi photo requin jardin sandy \n", "\n", "\n", "He looks a lil lost. #Sandy http://t.co/EgKcbF5c\n", @@ -5392,7 +5172,7 @@ "ساندي والتحدي #Sandy and the Challenge #Sandy und die Herausforderung #NYC #Deutschland http://t.co/Qv7yAJvx\n", "\n", "--------------------------------------------------------\n", - "ساندي والتحدي sandy challenge sandy und herausforderung nyc deutschland \n", + "ساندي والتحدي sandy challenge sandy und herausforderung new york city deutschland \n", "\n", "\n", "#seriously #weneedit #sandy http://t.co/JNdeHsbE\n", @@ -5410,13 +5190,7 @@ "#northwildwood #sandy #shark #whoa 😱🐋🌊☔ http://t.co/0zXOtjCk\n", "\n", "--------------------------------------------------------\n", - "northwildwood sandy shark whoa \n", - "\n", - "\n", - "#Sandy #NewYork 🌊☔🌀 http://t.co/gF9h1Y6C\n", - "\n", - "--------------------------------------------------------\n", - "sandy newyork \n", + "northwildwood sandy shark \n", "\n", "\n", "That shit cray.. #sandy http://t.co/PmI0RKvq\n", @@ -5437,16 +5211,10 @@ "sandy statueofliberty swag \n", "\n", "\n", - "http://t.co/uaBX1jhd #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "This looks like a movie!Wtf?! http://t.co/oiQyxPpd” #Sandy :(\n", "\n", "--------------------------------------------------------\n", - "looks like movie wtf sandy \n", + "looks like movie sandy \n", "\n", "\n", "It just got real '#Sandy http://t.co/aeuR3nTe\n", @@ -5488,7 +5256,7 @@ "Superbe photo de la tempete #sandy passé a la sauce #instagram par #sentimancho original chez Pascal Roth http://t.co/sNIlanPn\n", "\n", "--------------------------------------------------------\n", - "superbe photo tempete sandy passé sauce instagram par sentimancho original chez pascal roth \n", + "superbe photo tempete sandy passé sauce instagram sentimancho original chez pascal roth \n", "\n", "\n", "Un tauró pels carrers de New Jersey #huracan #sandy https://t.co/8vc8tZzl\n", @@ -5509,10 +5277,16 @@ "asmagulo photo sandy ladyliberty \n", "\n", "\n", + "O_O \"@CINDIRELLA82: Fotón #Sandy #miedito #MeMeo http://t.co/PVDV6AY2\"\n", + "\n", + "--------------------------------------------------------\n", + "oo \n", + "\n", + "\n", "Sharks in New Jersey... #newyork #newjeresy #sandy #flood #shark http://t.co/1oVPfVE4\n", "\n", "--------------------------------------------------------\n", - "sharks new jersey newyork newjeresy sandy flood shark \n", + "sharks new jersey new york newjeresy sandy flood shark \n", "\n", "\n", "#InstaFrame #storm #sandy #streets #flooded with a #shark #swimming down the #street prolly g @ The Berrics http://t.co/snczmfBO\n", @@ -5530,19 +5304,19 @@ "#ny #sandy http://t.co/0w60PesE\n", "\n", "--------------------------------------------------------\n", - "ny sandy \n", + "new york sandy \n", "\n", "\n", "#Frankenstorm #Sandy! Wow #InLossOfWords\\n#screenmuncher http://t.co/tSnm7PpH\n", "\n", "--------------------------------------------------------\n", - "frankenstorm sandy wow inlossofwords screenmuncher \n", + "frankenstorm sandy inlossofwords screenmuncher \n", "\n", "\n", "#Sandy #NYC #whoa #love4NYC #AJB http://t.co/FLXFC6Fn\n", "\n", "--------------------------------------------------------\n", - "sandy nyc whoa love4nyc ajb \n", + "sandy new york city love4nyc ajb \n", "\n", "\n", "Deze al gezien Theo? @Mentaltheo #sandy \\n\\n http://t.co/n1lqoj5T\n", @@ -5560,7 +5334,7 @@ "الله يكفينا من الشر 😱 #statueofliberty #ny #hurticane #sandy http://t.co/OTq4PN5y\n", "\n", "--------------------------------------------------------\n", - "الله يكفينا الشر statueofliberty ny hurticane sandy \n", + "الله يكفينا الشر statueofliberty new york hurticane sandy \n", "\n", "\n", "Everyone's worst fear aka mine #sandy #nofilter #stillpanicing http://t.co/igzAbgu9\n", @@ -5578,13 +5352,13 @@ "And Damnnnnnnnn! #Sandy was crazy! There's a shark in a NJ neighborhood! #NatureYouScary http://t.co/Acw8ZLoo\n", "\n", "--------------------------------------------------------\n", - "damnnnnnnnn sandy crazy shark nj neighborhood natureyouscary \n", + "damnnnnnnnn sandy crazy shark new jersey neighborhood natureyouscary \n", "\n", "\n", "#Sandy beginning to think the Mayans were right. #2012 http://t.co/lgrcp5Wp\n", "\n", "--------------------------------------------------------\n", - "sandy beginning think mayans right 2012 \n", + "sandy beginning think mayans right2 \n", "\n", "\n", "These hurricanes are nothing to play with..... #Sandy http://t.co/zhCQaskW\n", @@ -5608,7 +5382,7 @@ "Wow ...... this ain't good #SHARKS!!!! #StreetSharks #Sandy #Flooding #FrontStep #MindBlown #ShiitinBricks # http://t.co/1OHqRyyi\n", "\n", "--------------------------------------------------------\n", - "wow good sharks streetsharks sandy flooding frontstep mindblown shiitinbricks \n", + "good sharks streetsharks sandy flooding frontstep mindblown shiitinbricks \n", "\n", "\n", "Got the shark pic on my freinds front lawn #sandy #what http://t.co/tLWhjmbl\n", @@ -5620,13 +5394,13 @@ "#NewYork #Sandy #Alerta http://t.co/sIQEVfOz\n", "\n", "--------------------------------------------------------\n", - "newyork sandy alerta \n", + "new york sandy alerta \n", "\n", "\n", "We stood in this same spot a couple of weeks ago terrifying >>> http://t.co/fMMBl520 #sandy #NY\n", "\n", "--------------------------------------------------------\n", - "stood spot couple weeks ago terrifying greater greater greater sandy ny \n", + "stood spot couple weeks ago terrifying sandy ny \n", "\n", "\n", "Shit is real on the east coast! #Sandy http://t.co/vWlBe5JO\n", @@ -5653,22 +5427,10 @@ "tiburon nadando calles new jersey huracan sandy \n", "\n", "\n", - "#Sandy #NY http://t.co/piMvHeE4\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "#Sandy #storm #NewYork #godbless http://t.co/PB9rihrx\n", "\n", "--------------------------------------------------------\n", - "sandy storm newyork godbless \n", - "\n", - "\n", - "OMG! RT “@iWasADreamer_: Now they have to watch out for sharks in their front yard? how da fuq kahskjhkasjhdj #Sandy http://t.co/8KwEGRBK”\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", + "sandy storm new york godbless \n", "\n", "\n", "Sharks on the streets of Jersey #Sandy http://t.co/VSMT7mxx\n", @@ -5680,19 +5442,13 @@ "#OMG send my love to the east!!! Time to call the ghostbusters!!! #Sandy http://t.co/GgQLGSng\n", "\n", "--------------------------------------------------------\n", - "omg send love east time call ghostbusters sandy \n", - "\n", - "\n", - "#New York #Sandy http://t.co/Jk196aSr\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", + "send love east time call ghostbusters sandy \n", "\n", "\n", "Et si on allait faire du surf #Sandy http://t.co/hiMx0Kbl\n", "\n", "--------------------------------------------------------\n", - "et si allait faire surf sandy \n", + "si allait faire surf sandy \n", "\n", "\n", "No es broma! Tiburon fue visto en calles de la costa de New Jersey cuando mar entro a tierra #Sandy http:// http://t.co/r3psXXC7\n", @@ -5716,7 +5472,7 @@ "Amazing Sandy #nyc #sandy #uragano http://t.co/rxz0MmsY\n", "\n", "--------------------------------------------------------\n", - "amazing sandy nyc sandy uragano \n", + "amazing sandy new york city sandy uragano \n", "\n", "\n", "http://t.co/WDXNT1fW Uauuuuu a soak in the subway station timesquare #Sandy #speechless\n", @@ -5728,7 +5484,7 @@ "#SANDY ta chegando! Mas esse é um show q ninguém quer ver! http://t.co/LF7Adgdt\n", "\n", "--------------------------------------------------------\n", - "sandy ta chegando mas esse é um show q ninguém quer ver \n", + "sandy chegando show q ninguém quer ver \n", "\n", "\n", "#repost #sandy http://t.co/THbZzMkT\n", @@ -5740,13 +5496,13 @@ "Stay dry and safe guys. Your in our prayers from #k3projektwheels #nyc #newyork #sandy http://t.co/zQOE1ao7\n", "\n", "--------------------------------------------------------\n", - "stay dry safe guys prayers k3projektwheels nyc newyork sandy \n", + "stay dry safe guys prayers k3projektwheels new york city new york sandy \n", "\n", "\n", "Niggas in NY be like: #cloudporn #clouds #bitchesloveclouds #sandy http://t.co/BFr9mCsy\n", "\n", "--------------------------------------------------------\n", - "niggas ny like cloudporn clouds bitchesloveclouds sandy \n", + "niggas new york like cloudporn clouds bitchesloveclouds sandy \n", "\n", "\n", "Cápa New Jerseyben.. beszarás http://t.co/zUUoXxnC #Sandy\n", @@ -5758,7 +5514,7 @@ "Damn ! #Sandy #NYC http://t.co/u1WgI2YS\n", "\n", "--------------------------------------------------------\n", - "damn sandy nyc \n", + "damn sandy new york city \n", "\n", "\n", "HOLY CRAP THERE ARE SHARKS IN THE STREETS. #SANDY http://t.co/97BdMnUP\n", @@ -5782,7 +5538,7 @@ "#Sandy is coming, are you ready?\\n#America#Tornado#Disaster#liberty#instagram#photogram#today http://t.co/otQJlzdH\n", "\n", "--------------------------------------------------------\n", - "sandy coming ready america tornado disaster liberty instagram photogram today \n", + "sandy coming ready americatornadodisasterlibertyinstagramphotogramtoday \n", "\n", "\n", "haialarm wegen #sandy http://t.co/dgqYpJBq\n", @@ -5800,31 +5556,31 @@ "NYC sharks in neighborhoods due to flooding! Crazyyy! #sandy http://t.co/WNDJxsQv\n", "\n", "--------------------------------------------------------\n", - "nyc sharks neighborhoods due flooding crazyyy sandy \n", + "new york city sharks neighborhoods due flooding crazyyy sandy \n", "\n", "\n", "http://t.co/bk8KF5O8 صوره لدخول اعصار ساندي الى نيويورك.سبحان الله#USA #sandy\n", "\n", "--------------------------------------------------------\n", - "صوره لدخول اعصار ساندي الى نيويورك سبحان الله usa sandy \n", + "صوره لدخول اعصار ساندي الى نيويورك سبحان اللهusa sandy \n", "\n", "\n", "Nossaaaaaa,meu DEUS! -RT @lyabucater #Sandy esta tarde sobre NYC. https://t.co/mDZRqcA2 …\n", "\n", "--------------------------------------------------------\n", - "nossaaaaaa meu deus \n", + "nossaaaaaa deus \n", "\n", "\n", "Daaaaaamn #Sandy #NYC #Regram http://t.co/2XULeMOZ\n", "\n", "--------------------------------------------------------\n", - "daaaaaamn sandy nyc regram \n", + "daaaaaamn sandy new york city \n", "\n", "\n", "#nofilter a photo of #sandy coming into NY! Amazing how beautiful and disastrous the majesty of the storm is http://t.co/i7YKVqGf\n", "\n", "--------------------------------------------------------\n", - "nofilter photo sandy coming ny amazing beautiful disastrous majesty storm \n", + "nofilter photo sandy coming new york amazing beautiful disastrous majesty storm \n", "\n", "\n", "Shiiiit... RT @ProsodiJ: Daaaaaamn #Sandy #NYC #Regram http://t.co/t4wi0wos\n", @@ -5848,19 +5604,13 @@ "God will save NY! Lets all pray.. #sandy #disaster http://t.co/yKwMhnEe\n", "\n", "--------------------------------------------------------\n", - "god save ny lets pray sandy disaster \n", - "\n", - "\n", - "#sandy is here... 😳😁 http://t.co/LlatK6Vc\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "god save new york lets pray sandy disaster \n", "\n", "\n", "Damn sandy is about to go HAM over New York #storm #sandy #tropicalstorm #cloudy #rain #cold #newyork #disas http://t.co/PzSaDfCq\n", "\n", "--------------------------------------------------------\n", - "damn sandy go ham new york storm sandy tropicalstorm cloudy rain cold newyork disas \n", + "damn sandy go ham new york storm sandy tropicalstorm cloudy rain cold new york disas \n", "\n", "\n", "Shit just got real! #jaws2012\\n#sandy http://t.co/YzL3OmB9\n", @@ -5869,22 +5619,16 @@ "shit got real jaws2012 sandy \n", "\n", "\n", - "MT @GlobeMCramer: Post-apocalyptic RT @AtlanticCity911 Shark in the street in #Brigantine, NJ http://t.co/mZGkzOXz #Sandy (via @mwilkinson3)\n", - "\n", - "--------------------------------------------------------\n", - "post apocalyptic \n", - "\n", - "\n", "#Sandy looming over #NYC... amazing! http://t.co/j08t1u4y http://t.co/j08t1u4y http://t.co/LcIzPzyW\n", "\n", "--------------------------------------------------------\n", - "sandy looming nyc amazing \n", + "sandy looming new york city amazing \n", "\n", "\n", "Thats really amazing shot #NY #sandy #USA #Kuwait #Q8 #q8instagram #kuwaitinstagram #instagrammer http://t.co/6T5hkup1\n", "\n", "--------------------------------------------------------\n", - "thats really amazing shot ny sandy usa kuwait q8 q8instagram kuwaitinstagram instagrammer \n", + "thats really amazing shot new york sandy usa kuwait q8 q8instagram kuwaitinstagram instagrammer \n", "\n", "\n", "Scary #Sandy http://t.co/ZoSnZehr\n", @@ -5893,34 +5637,22 @@ "scary sandy \n", "\n", "\n", - "#sandy #newyork ¬ http://t.co/ilv9a2NN (via @JeremyBenmoussa)\n", - "\n", - "--------------------------------------------------------\n", - "sandy newyork \n", - "\n", - "\n", "Tiburón afuera de casa en NJ #nomamar #Sandy #shark http://t.co/yjqxXQiB\n", "\n", "--------------------------------------------------------\n", - "tiburón afuera casa nj nomamar sandy shark \n", - "\n", - "\n", - "@MissRoxyMusic: Qué cañona foto me encontré. #NY #Sandy http://t.co/BAAFkVmq\n", - "\n", - "--------------------------------------------------------\n", - "cañona foto encontré ny sandy \n", + "tiburón afuera casa new jersey nomamar sandy shark \n", "\n", "\n", "- Hurricane #Sandy #NYC ..... October 2012 http://t.co/cikVnvOm\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc october 2012 \n", + "hurricane sandy new york city october012 \n", "\n", "\n", "#squaready #sandy #storm next #ny 😞👎 http://t.co/mDDru7EW\n", "\n", "--------------------------------------------------------\n", - "squaready sandy storm next ny \n", + "squaready sandy storm next new york \n", "\n", "\n", "#sandy hits ms liberty http://t.co/VxtOHy3E\n", @@ -5938,7 +5670,7 @@ "#Dicen que así se ve #NewYork por #Sandy #Apocalipsis http://t.co/gomcvB7w\n", "\n", "--------------------------------------------------------\n", - "dicen así newyork sandy apocalipsis \n", + "dicen así new york sandy apocalipsis \n", "\n", "\n", "#USA #sandy http://t.co/6gC4Qg3L\n", @@ -5950,37 +5682,31 @@ "Increible. #NuevaYork #NewYork #Sandy #Huracan #Amazing http://t.co/iW0fBjrK\n", "\n", "--------------------------------------------------------\n", - "increible nuevayork newyork sandy huracan amazing \n", + "increible nuevayork new york sandy huracan amazing \n", "\n", "\n", "Wow, another incredible photo of #Sandy approaching New York http://t.co/OUvA6Nih\n", "\n", "--------------------------------------------------------\n", - "wow another incredible photo sandy approaching new york \n", - "\n", - "\n", - "أسماك القرش تسبح بجانب المنازل في ولاية نيو جيرسي الامريكية اثر فيضانات اعصار ساندي\\n\\n#Sandy http://t.co/swxyjX4L http://t.co/bamWPWbW\n", - "\n", - "--------------------------------------------------------\n", - "أسماك القرش تسبح بجانب المنازل ولاية نيو جيرسي الامريكية اثر فيضانات اعصار ساندي sandy \n", + "another incredible photo sandy approaching new york \n", "\n", "\n", "Shit is real in NY. #sandy #ny #storm #picoftheday #iphoneonly #iphonesia #wow #instagram #instagood #websta http://t.co/YT3fhJen\n", "\n", "--------------------------------------------------------\n", - "shit real ny sandy ny storm picoftheday iphoneonly iphonesia wow instagram instagood websta \n", + "shit real new york sandy new york storm picoftheday iphoneonly iphonesia instagram instagood websta \n", "\n", "\n", "J'ai trop peur mattez la vuede ma chambre !! #sandy #nyc #jevaismourrir ..non je deconne, ma vie n'es pas so http://t.co/j3tDwb8p\n", "\n", "--------------------------------------------------------\n", - "j ai trop peur mattez vuede chambre sandy nyc jevaismourrir non deconne vie n pas \n", + "trop peur mattez vuede chambre sandy new york city jevaismourrir non deconne vie \n", "\n", "\n", "Thanks heaps Sandy! Now I can't watch the latest ep of Gossip Girl! #firstworldproblems #sandy #storm #nyc http://t.co/gOHoGKWz\n", "\n", "--------------------------------------------------------\n", - "thanks heaps sandy watch latest ep gossip girl firstworldproblems sandy storm nyc \n", + "thanks heaps sandy watch latest ep gossip girl firstworldproblems sandy storm new york city \n", "\n", "\n", "#new #york #sandy #crazy #instascary #follow http://t.co/xOTvh7rl\n", @@ -6004,7 +5730,7 @@ "Le désastre de NYC! #Storm #Sandy http://t.co/yyCHna8J\n", "\n", "--------------------------------------------------------\n", - "désastre nyc storm sandy \n", + "désastre new york city storm sandy \n", "\n", "\n", "Praying for everyone affected by this storm ! #sandy http://t.co/UKvxl9dn\n", @@ -6037,16 +5763,10 @@ "prayforusa sandy \n", "\n", "\n", - "#NYC #sandy http://t.co/pe44ejk4\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", - "\n", - "\n", "http://t.co/bUIcliHj SERIOUSLY MAD SHARKS IN NJ. #Scary #Sandy\n", "\n", "--------------------------------------------------------\n", - "seriously mad sharks nj scary sandy \n", + "seriously mad sharks new jersey scary sandy \n", "\n", "\n", "اسماك القرش عند عتبة الباب #sandy http://t.co/QEyF6PId\n", @@ -6058,13 +5778,13 @@ "#PicOfTheDay #TombOfTheUnknownSoldier #Sandy wont stop the show.. Guarded 24/7 since 1948.. #Respect #WeCare http://t.co/8UuqHGao\n", "\n", "--------------------------------------------------------\n", - "picoftheday tomboftheunknownsoldier sandy wont stop show guarded 24 7 since 1948 respect wecare \n", + "picoftheday tomboftheunknown soldier sandy wont stop show guarded4 since948 respect wecare \n", "\n", "\n", "#shark in #newjersey #street #sandy #instacane #usa #danger #peligro #tiburon en las calles de #nj #huracan http://t.co/AA7iqagj\n", "\n", "--------------------------------------------------------\n", - "shark newjersey street sandy instacane usa danger peligro tiburon calles nj huracan \n", + "shark newjersey street sandy instacane usa danger peligro tiburon calles new jersey huracan \n", "\n", "\n", "No lo puedo creer un tiburón en laa calle por el huracán #sandy :o http://t.co/ZBrmxC1i\n", @@ -6076,13 +5796,13 @@ "Lamentable la foto que nos llega! Un Tiburón en las calles de #NewJersey por consecuencia al Huracán #Sandy OMG http://t.co/fMk2heFz»\n", "\n", "--------------------------------------------------------\n", - "lamentable foto llega tiburón calles newjersey consecuencia huracán sandy omg \n", + "lamentable foto llega tiburón calles newjersey consecuencia huracán sandy \n", "\n", "\n", "Sendin Prayers out to Everyone on the Eastcoast, #Sandy is no joke smh. Be Safe Out There.. http://t.co/GqDZHh0d\n", "\n", "--------------------------------------------------------\n", - "sendin prayers everyone eastcoast sandy joke smh safe \n", + "sendin prayers everyone eastcoast sandy joke safe \n", "\n", "\n", "#sandyejunior #sosandy #sandy http://t.co/m87NhRvG\n", @@ -6094,7 +5814,7 @@ "A seal washed up in manhattan! I hope it's safe. #nyc #sandy #seal #manhatten #funny #animals http://t.co/DE4sUWCr\n", "\n", "--------------------------------------------------------\n", - "seal washed manhattan hope safe nyc sandy seal manhatten funny animals \n", + "seal washed manhattan hope safe new york city sandy seal manhatten funny animals \n", "\n", "\n", "It's real! #sandy http://t.co/v6jRwiwG\n", @@ -6106,13 +5826,13 @@ "Huracan Sandy #NY #newyork #Sandy #huracan #statueofliberty http://t.co/DWPjUn56\n", "\n", "--------------------------------------------------------\n", - "huracan sandy ny newyork sandy huracan statueofliberty \n", + "huracan sandy new york new york sandy huracan statueofliberty \n", "\n", "\n", "#NYC #Frankenstorm #Sandy #nature #amazing #scary http://t.co/g7DDTE5q\n", "\n", "--------------------------------------------------------\n", - "nyc frankenstorm sandy nature amazing scary \n", + "new york city frankenstorm sandy nature amazing scary \n", "\n", "\n", "Que buena foto «@heathero14 «@damnitstrue This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/wBsWDtEZ»»\n", @@ -6124,7 +5844,7 @@ "#Furacão #Sandy um Alerta para as nações da terra JESUS ESTÁ VOLTANDO. http://t.co/EqhDYzVE\n", "\n", "--------------------------------------------------------\n", - "furacão sandy um alerta nações da terra jesus voltando \n", + "furacão sandy alerta nações terra jesus voltando \n", "\n", "\n", "Respect. RT @layladejong: Heel mooi dit. #Sandy http://t.co/2dpIo3Dc\n", @@ -6148,7 +5868,7 @@ "Tonight, my prayers go to the East coast. #Sandy #NYC http://t.co/0eXHgwlz\n", "\n", "--------------------------------------------------------\n", - "tonight prayers go east coast sandy nyc \n", + "tonight prayers go east coast sandy new york city \n", "\n", "\n", "Holy balls that had to be scary #Sandy http://t.co/24OyyhUn\n", @@ -6160,25 +5880,25 @@ "Lmao!!! #Sandy #Problems #BadNews #InstaCrazy #InstaWtf #InstaNews #InstaJoke #InstaMovie http://t.co/HSM08SMp\n", "\n", "--------------------------------------------------------\n", - "lmao sandy problems badnews instacrazy instawtf instanews instajoke instamovie \n", + "sandy problems badnews instacrazy insta instanews instajoke instamovie \n", "\n", "\n", "Is dit echt?! Gaaf! #Sandy #nyc http://t.co/teK2HXN1\n", "\n", "--------------------------------------------------------\n", - "echt gaaf sandy nyc \n", + "echt gaaf sandy new york city \n", "\n", "\n", "Je sais pas vous, mais même après #Sandy, Times square est magique .. http://t.co/wnljDpGu\n", "\n", "--------------------------------------------------------\n", - "sais pas vous mais même après sandy times square est magique \n", + "sais après sandy times square magique \n", "\n", "\n", "@Elygutierrez19 @Willylevy29 Meyo tibuoon #Sandy http://t.co/51a4aCid\n", "\n", "--------------------------------------------------------\n", - "meyo tibuoon sandy \n", + "metibuoon sandy \n", "\n", "\n", "Empty #TimesSquare http://t.co/MKSuIpgL #Sandy\n", @@ -6190,19 +5910,13 @@ "Вот и пришло 2012 к Америке... Акулы плавают по улицам, ураган.... жуть! #Sandy #Сэнди http://t.co/4QsgjoRu\n", "\n", "--------------------------------------------------------\n", - "пришло 2012 америке акулы плавают улицам ураган жуть sandy сэнди \n", + "пришло012 америке акулы плавают улицам ураган жуть sandy сэнди \n", "\n", "\n", "Man killed on 166st in queens crushed by a tree #sandy http://t.co/tOveaUtg\n", "\n", "--------------------------------------------------------\n", - "killed 166st queens crushed tree sandy \n", - "\n", - "\n", - "@PardonMyPoppet: psimadethis's crazy #sandy photo. Times Square Subway Stop http://t.co/67mWdqyc not sure if photoshopped, but interesting\n", - "\n", - "--------------------------------------------------------\n", - "psimadethis crazy sandy photo times square subway stop sure photoshopped interesting \n", + "killed on66st queens crushed tree sandy \n", "\n", "\n", "Tuburon http://t.co/duLH1Gv5 #Sandy\n", @@ -6214,7 +5928,7 @@ "Ieri, l'uragano #Sandy alle porte di #Manhattan. #NewYork http://t.co/vxVu7Qi2\n", "\n", "--------------------------------------------------------\n", - "ieri l uragano sandy alle porte di manhattan newyork \n", + "ieri uragano sandy alle porte manhattan new york \n", "\n", "\n", "Statue of Liberty + crushing waves. http://t.co/7F93HuHV #hurricaneparty #sandy\n", @@ -6226,13 +5940,13 @@ "Stay up Lady Liberty...shot look like something off of a movie.. Wooii #Sandy wan cum mash up di place #hurr http://t.co/o21rHTLo\n", "\n", "--------------------------------------------------------\n", - "stay lady liberty shot look like something movie wooii sandy wan cum mash di place hurr \n", + "stay lady liberty shot look like something movie wooii sandy wan cum mash place hurr \n", "\n", "\n", "#Sandy fuckin shit up. Got a shark swimming in my brotha @LuckDollaz's backyard http://t.co/QReNi8Pm\n", "\n", "--------------------------------------------------------\n", - "sandy fuckin shit got shark swimming brotha backyard \n", + "sandy fuckin shit got shark swimming brots backyard \n", "\n", "\n", "“@alurralde88: #Sandy #Hurrikane #USA http://t.co/vDOsPdSM” esa foto es real? Achanta un cacho\n", @@ -6259,28 +5973,22 @@ "fakesototota carnal \n", "\n", "\n", - "#sandy in NY :O http://t.co/G8nQLq4u\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "Foto real hace unas horas en NY... #frankestorm #sandy #storm #ny http://t.co/JsKxbwaZ\n", "\n", "--------------------------------------------------------\n", - "foto real hace unas horas ny frankestorm sandy storm ny \n", + "foto real hace unas horas new york frankestorm sandy storm new york \n", "\n", "\n", "R: Wtf! #sandy 💦💦💦💧⚡☁☔🙀🙀😳😳 http://t.co/NxGuIPhC\n", "\n", "--------------------------------------------------------\n", - "r wtf sandy \n", + "r sandy \n", "\n", "\n", "#Sandy Gettin Real in NY !!!! http://t.co/XCU9Ysuv\n", "\n", "--------------------------------------------------------\n", - "sandy gettin real ny \n", + "sandy gettin real new york \n", "\n", "\n", "Shark! @anthonydalicandro's photo http://t.co/AtXvgWuY #sandy\n", @@ -6298,7 +6006,7 @@ "Naughty tha over in America, hope everyone stays safe. #sandy http://t.co/rSlFUF6K\n", "\n", "--------------------------------------------------------\n", - "naughty tha america hope everyone stays safe sandy \n", + "naughty tover america hope everyone stays safe sandy \n", "\n", "\n", "#sandy hits #liberty http://t.co/M60ODXc5\n", @@ -6307,28 +6015,16 @@ "sandy hits liberty \n", "\n", "\n", - "O.O #Sandy http://t.co/QVrjgbtv\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "#NYC VS #SANDY..lady #LIBERTY standing #STRONG ..#ENY #BROOKLYN .. http://t.co/IS0liYAf\n", "\n", "--------------------------------------------------------\n", - "nyc vs sandy lady libe \n", + "new york city versus sandy lady libe \n", "\n", "\n", "My gosh!! #nyc #storm #sandy http://t.co/1R4Hfk3K\n", "\n", "--------------------------------------------------------\n", - "gosh nyc storm sandy \n", - "\n", - "\n", - "omg #Sandy http://t.co/AkwrLqgP\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy \n", + "gosh new york city storm sandy \n", "\n", "\n", "#shark swimming in the street in new jersey #Sandy http://t.co/A0k8R9YC\n", @@ -6340,13 +6036,7 @@ "Crazy!!! #sandy #NYC http://t.co/QdWTJBWi\n", "\n", "--------------------------------------------------------\n", - "crazy sandy nyc \n", - "\n", - "\n", - "OMG! @SikiRivera #Sandy \"@iansomerhalder: This looks like a movie!Wtf?! http://t.co/5Ta8TkGM\"\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy \n", + "crazy sandy new york city \n", "\n", "\n", "#repost #hardcore #sandy #military http://t.co/Q7juldee\n", @@ -6364,13 +6054,13 @@ "Do #sharks leave #WallStreet? #NYC #Sandy http://t.co/9roDUuCu\n", "\n", "--------------------------------------------------------\n", - "sharks leave wallstreet nyc sandy \n", + "sharks leave wallstreet new york city sandy \n", "\n", "\n", "Impresionante foto del Huracán #sandy (vía teflontara) http://t.co/ZewlH8b5\n", "\n", "--------------------------------------------------------\n", - "impresionante foto huracán sandy vía teflontara \n", + "impresionante foto huracán sandy teflontara \n", "\n", "\n", "Get the fuck outta here!!! #Sandy http://t.co/RiQ80H54\n", @@ -6394,7 +6084,7 @@ "Sharks swimming around someones yard in New Jersey? In NYC we have em all over the place. #sandy http://t.co/aV4ViA7v\n", "\n", "--------------------------------------------------------\n", - "sharks swimming around someones yard new jersey nyc em place sandy \n", + "sharks swimming around someones yard new jersey new york city place sandy \n", "\n", "\n", "We have a hurricane photo winner, folks! And yes, it's real. I verified with snopes! http://t.co/sCG803xH #fb #sandy #sharks\n", @@ -6406,13 +6096,13 @@ "Hope everyone is staying safe #sandy #newyork http://t.co/xAArw1Pg\n", "\n", "--------------------------------------------------------\n", - "hope everyone staying safe sandy newyork \n", + "hope everyone staying safe sandy new york \n", "\n", "\n", "Mother Nature the most powerful force of all!! My thought are with you #NYC #Manhattan #Sandy http://t.co/J3wxxhan\n", "\n", "--------------------------------------------------------\n", - "mother nature powerful force thought nyc manhattan sandy \n", + "mother nature powerful force thought new york city manhattan sandy \n", "\n", "\n", "psimadethis's crazy #sandy photo. Times Square Subway Stop http://t.co/mKbMySGB\n", @@ -6421,12 +6111,6 @@ "psimadethis crazy sandy photo times square subway stop \n", "\n", "\n", - "#SandyNeedsToSitDown #SandyNeedsToSitDown #Manhattan The City Affected of Torment #Sandy OMG http://t.co/Fw46ZncT via @TwitPic\n", - "\n", - "--------------------------------------------------------\n", - "sandyneedstositdown sandyneedstositdown manhattan city affected torment sandy omg \n", - "\n", - "\n", "Es real: http://t.co/zBUjpyAC RT @cindirella82: Fotón #Sandy #miedito #MeMeo http://t.co/TqNeczY5\n", "\n", "--------------------------------------------------------\n", @@ -6436,25 +6120,19 @@ "#Sandy #Arrives #Ny #Staystrong http://t.co/M6ozHmDT\n", "\n", "--------------------------------------------------------\n", - "sandy arrives ny staystrong \n", + "sandy arrives new york staystrong \n", "\n", "\n", "Good gawd #Sandy has got to be one helluva storm I swear. LOL any PS experts? http://t.co/P7JrQR0k\n", "\n", "--------------------------------------------------------\n", - "good gawd sandy got one helluva storm swear lol ps experts \n", + "good gawd sandy got one helluva storm swear ps experts \n", "\n", "\n", "Wow like a movie smh #Sandy...my prayera goin up to protect those close to it! http://t.co/lWDLzrdX\n", "\n", "--------------------------------------------------------\n", - "wow like movie smh sandy prayera goin protect close \n", - "\n", - "\n", - "NYC #sandy @apaton4 https://t.co/HEMeMEaC\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", + "like movie sandy prayera going protect close \n", "\n", "\n", "#noway #shark #jersey #crazy #sandy http://t.co/MDBlKAfW\n", @@ -6466,7 +6144,7 @@ "Just saw this on twitter!! A shark just chillin down the freeway in NYC 🐬⚡☔☁🌀🗽 #sandy #eastcoast #shark #sc http://t.co/dkKuHMTD\n", "\n", "--------------------------------------------------------\n", - "saw twitter shark chillin freeway nyc sandy eastcoast shark sc \n", + "saw twitter shark chillin freeway new york city sandy eastcoast shark sc \n", "\n", "\n", "amethystekyle's photo http://t.co/UQSODDdN\\n:o? #sandy\n", @@ -6478,7 +6156,7 @@ "I really hope everyone is okay and staying safe! xx <3 <3 #sandy http://t.co/yVW6ogJh\n", "\n", "--------------------------------------------------------\n", - "really hope everyone okay staying safe xx less 3 less 3 sandy \n", + "really hope everyone okay staying safe xx sandy \n", "\n", "\n", "#Sandy come Attila. In #Grease non era così. http://t.co/VJM3OWjD\n", @@ -6490,7 +6168,7 @@ "Digam olá para #Sandy #NY http://t.co/fKrQtkwZ\n", "\n", "--------------------------------------------------------\n", - "digam olá sandy ny \n", + "digam olá sandy new york \n", "\n", "\n", "There's a Shark in Brigantine #sandy #controlyourpets http://t.co/ll4cIIMm\n", @@ -6508,7 +6186,7 @@ "US nak sangat jadi mcm movie 2012, kan dah kena betul2 Hurricane #Sandy http://t.co/ijxSs144\n", "\n", "--------------------------------------------------------\n", - "us nak sangat jadi mcm movie 2012 dah kena betul2 hurricane sandy \n", + "us nak mcm movie012 dah kena betul2 hurricane sandy \n", "\n", "\n", "“@jshan711 Fucking sharks on the streets!! #Sandy http://t.co/usaazxVB” Coolest picture I've seen from Sandy so far.\n", @@ -6526,7 +6204,7 @@ "Storm is lookin crazy #newyork #sandy http://t.co/7hmByzqT\n", "\n", "--------------------------------------------------------\n", - "storm lookin crazy newyork sandy \n", + "storm lookin crazy new york sandy \n", "\n", "\n", "Con la duda del #fake...Shark en las calles de New Jersey entre las aguas del huracán #Sandy #veryfriki http://t.co/Tfrt8STL via @marphille\n", @@ -6538,19 +6216,13 @@ "WOW “@Bricksquadleeah “@AnthonyShaw_ A shark casually swimming down a road in NYC #sandy http://t.co/XjbkIAOq””\n", "\n", "--------------------------------------------------------\n", - "wow shark casually swimming road nyc sandy \n", + "shark casually swimming road new york city sandy \n", "\n", "\n", "#sandy #NYC #10minago http://t.co/Os1Bw43F\n", "\n", "--------------------------------------------------------\n", - "sandy nyc 10minago \n", - "\n", - "\n", - "Oh my #sandy #NYC http://t.co/S1UxiqOC\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy nyc \n", + "sandy nyc0minago \n", "\n", "\n", "You will never see Times Square this empty again #Sandy http://t.co/aTC2KvXg\n", @@ -6574,7 +6246,7 @@ "New York visitada por el huracán #sandy 2012 http://t.co/6g6HbgJV\n", "\n", "--------------------------------------------------------\n", - "new york visitada huracán sandy 2012 \n", + "new york visitada huracán sandy012 \n", "\n", "\n", "#Sandy is no joke http://t.co/oy7TkSlJ\n", @@ -6592,25 +6264,25 @@ "#sandy #NYC #bad #photo #today #huracan #USA http://t.co/1O98Qgc2\n", "\n", "--------------------------------------------------------\n", - "sandy nyc bad photo today huracan usa \n", + "sandy new york city bad photo today huracan usa \n", "\n", "\n", "OMG!! THE BIG APPLE راحت ياحصه @Haf83 #sandy #DARK #NIGHT #newyork http://t.co/GRszG51r\n", "\n", "--------------------------------------------------------\n", - "omg big apple راحت ياحصه sandy dark night newyork \n", + "big apple راحت ياحصه sandy dark night new york \n", "\n", "\n", "“@PrometeoNuclear: Foto del Huracán #Sandy http://t.co/1v0tidnx via @LucasPalape // Terrible.”<muy buena!!! jajajajaja\n", "\n", "--------------------------------------------------------\n", - "less buena jajajajaja \n", + "buena jajajajaja \n", "\n", "\n", "Please, don't destroy anything and don't hurt nobody. #nyc #sandy #omg #scared #sad #worried #myfamily ☔🗽🇺🇸 http://t.co/Unhmj0WW\n", "\n", "--------------------------------------------------------\n", - "please destroy anything hurt nobody nyc sandy omg scared sad worried myfamily \n", + "please destroy anything hurt nobody new york city sandy scared sad worried myfamily \n", "\n", "\n", "Saw this photo online! Statue of Liberty #sandy http://t.co/n6XyDuOS\n", @@ -6622,31 +6294,25 @@ "La meilleure photo de #Sandy pour le moment ! http://t.co/koStOXUL\n", "\n", "--------------------------------------------------------\n", - "meilleure photo sandy pour moment \n", - "\n", - "\n", - "@antoon619: #Sandy. http://t.co/rrsgNPfI @SoleneLescouet\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "meilleure photo sandy moment \n", "\n", "\n", "Oración por #NYC 🙏 #sandy http://t.co/imuS1qF1\n", "\n", "--------------------------------------------------------\n", - "oración nyc sandy \n", + "oración new york city sandy \n", "\n", "\n", "Tan ricas las nieves q vendian en Liberty Island :( @anieberry #Sandy #NYC http://t.co/sN6WDKrJ\n", "\n", "--------------------------------------------------------\n", - "tan ricas nieves q vendian liberty island sandy nyc \n", + "tan ricas nieves q vendian liberty island sandy new york city \n", "\n", "\n", "USA: L'uragano #Sandy colpisce #NewYork! PAZZESCO! #PrayForUSA #staystrongAmerica @TopVisibility http://t.co/mSkcrUsN\n", "\n", "--------------------------------------------------------\n", - "usa l uragano sandy colpisce newyork pazzesco prayforusa staystrongamerica \n", + "usa uragano sandy colpisce new york pazzesco prayforusa staystrongamerica \n", "\n", "\n", "Tack vare stormen #sandy simmar det hajar i New Jersey https://t.co/9jgG8r6N\n", @@ -6661,16 +6327,10 @@ "photoshop shark swimming suburbs sandy \n", "\n", "\n", - "oh no http://t.co/0oYU8kup #sandy\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", "Ik denk dat patatten ga geven!#ny #sandy http://t.co/kVoTdWpt\n", "\n", "--------------------------------------------------------\n", - "denk patatten ga geven ny sandy \n", + "denk patatten ga geven new york sandy \n", "\n", "\n", "penarandaworld's photo http://t.co/wRzHcQ6A. incredible #sandy picture over #statueofliberty\n", @@ -6682,25 +6342,19 @@ "Impressive #nyc #Sandy http://t.co/slZgoCKO\n", "\n", "--------------------------------------------------------\n", - "impressive nyc sandy \n", + "impressive new york city sandy \n", "\n", "\n", "#Sandy has arrived in NYC $@!# just got real http://t.co/ie7vJAl0\n", "\n", "--------------------------------------------------------\n", - "sandy arrived nyc got real \n", + "sandy arrived new york city got real \n", "\n", "\n", "insightsignco's photo http://t.co/LF4LV4U6 wow. #sandy\n", "\n", "--------------------------------------------------------\n", - "insightsignco photo wow sandy \n", - "\n", - "\n", - "Wtf RT @Fresh205CutZ: \"@T_Kai_10: Sharks in new jersey! #Jaws #Sandy http://t.co/Fzrk0SR3\" #HolyShit\n", - "\n", - "--------------------------------------------------------\n", - "wtf \n", + "insightsignco photo sandy \n", "\n", "\n", "This can't be real, Swizzy! #sandy http://t.co/xZfcb8KP\n", @@ -6718,19 +6372,13 @@ "WTF fo real?!?!? RT @drshikharsaxena: RT @KariMostafa: Shark in NJ #sandy http://t.co/zx9wDoPr\n", "\n", "--------------------------------------------------------\n", - "wtf fo real \n", - "\n", - "\n", - "“@innokratka #NYC #Sandy http://t.co/Rc9Ol60V”\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", + "fo real \n", "\n", "\n", "Olha a foto do tornado #Sandy !!!! O.O http://t.co/mjszt8wW\n", "\n", "--------------------------------------------------------\n", - "olha foto tornado sandy \n", + "ola foto tornado sandy \n", "\n", "\n", "Sharks in your front yard. #sandy http://t.co/O8qYIDJR\n", @@ -6742,19 +6390,19 @@ "my gawd. #ny #sandy #prayforamericans http://t.co/am8EsIlb\n", "\n", "--------------------------------------------------------\n", - "gawd ny sandy prayforamericans \n", + "gawd new york sandy prayforamericans \n", "\n", "\n", "Good photo of #Sandy #nyc http://t.co/W4x0iT7V\n", "\n", "--------------------------------------------------------\n", - "good photo sandy nyc \n", + "good photo sandy new york city \n", "\n", "\n", "I think that was im puerto ricoRT @StefanoDStasio: Tiburones en calles de #NYC #sandy @sergiocarlo http://t.co/lKwvzNE0\n", "\n", "--------------------------------------------------------\n", - "think im puerto rico \n", + "think puerto rico \n", "\n", "\n", "Well damn #Sandy http://t.co/GAs0Uhry\n", @@ -6766,7 +6414,7 @@ "#Sandy #NewYork #NYC #storm #USA #android #kik http://t.co/tfDAzxb0\n", "\n", "--------------------------------------------------------\n", - "sandy newyork nyc storm usa android kik \n", + "sandy new york new york city storm usa android kik \n", "\n", "\n", "Sharks on my street...? #wut #sandy #lblock photo: mcfarty http://t.co/t98ypUMY\n", @@ -6778,19 +6426,19 @@ "I guess there's no need to go to the aquarium this week #NYC #sandy http://t.co/wvTDrOCR\n", "\n", "--------------------------------------------------------\n", - "guess need go aquarium week nyc sandy \n", + "guess need go aquarium week new york city sandy \n", "\n", "\n", "Empiezan a llegar las imagenes de #sandy en #ny http://t.co/aMrJ3VNc\n", "\n", "--------------------------------------------------------\n", - "empiezan llegar imagenes sandy ny \n", + "empiezan llegar imagenes sandy new york \n", "\n", "\n", "#SharksNTheStreet\\n#Sandy #Sh**JustGotReal http://t.co/xgoHpY8b\n", "\n", "--------------------------------------------------------\n", - "sharksnthestreet sandy sh justgotreal \n", + "sharksnthestreet sandy justgotreal \n", "\n", "\n", "So schlimm sieht es grade in New York aus! #sandy #Frankenstorm #Live http://t.co/J5W7BPRW\n", @@ -6802,31 +6450,25 @@ "Nous ce sera un orignal sur le perron! RT @JeanNicGagne: Quand un requin se retrouve sur ton terrain. #Sandy https://t.co/x8WWBUuC\n", "\n", "--------------------------------------------------------\n", - "nous ce sera orignal sur perron \n", + "orignal perron \n", "\n", "\n", "CARALHO!! Oremos por NY #NY #beautiful #sandy http://t.co/1MDErqT4\n", "\n", "--------------------------------------------------------\n", - "caralho oremos ny ny beautiful sandy \n", + "caralho oremos new york ny beautiful sandy \n", "\n", "\n", "djohnfree's photo http://t.co/Ad6bklEl #sandy\n", "\n", "--------------------------------------------------------\n", - "djohnfree photo sandy \n", + "djnfree photo sandy \n", "\n", "\n", "سمك نيويورك ساندي sandy #صور #غرد_بصورة #Instagram #Bahrain #Instagood #ksa #UAE #Usa #Sandy #Qatar #Oman http://t.co/cpS18ABJ\n", "\n", "--------------------------------------------------------\n", - "سمك نيويورك ساندي sandy صور غرد بصورة instagram bahrain instagood ksa uae usa sandy qatar oman \n", - "\n", - "\n", - "#sandy #nyc wow! http://t.co/kStLREQo\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc wow \n", + "سمك نيويورك ساندي sandy صور غردبصورة instagram bahrain instagood ksa uae usa sandy qatar oman \n", "\n", "\n", "#Sandy crazy stuff thoughts and prayers go out to the east coast http://t.co/x8oGki1h\n", @@ -6838,7 +6480,7 @@ "#oh #god #shark #swimming #on #street #amazing #new #jersey #storm #sandy #usa #webstagram #picoftheday #bes http://t.co/LFGqioY7\n", "\n", "--------------------------------------------------------\n", - "oh god shark swimming street amazing new jersey storm sandy usa webstagram picoftheday bes \n", + "god shark swimming street amazing new jersey storm sandy usa webstagram picoftheday bes \n", "\n", "\n", "Absolutely phenomenal shot of storm #SANDY - http://t.co/91hFt2jj #frankenstorm\n", @@ -6847,34 +6489,22 @@ "absolutely phenomenal shot storm sandy frankenstorm \n", "\n", "\n", - "Damn #sandy http://t.co/rOrtAuB4\n", - "\n", - "--------------------------------------------------------\n", - "damn sandy \n", - "\n", - "\n", "Un tauró nadant a Brigantine, NJ! https://t.co/h3I1nFEQ #Sandy\n", "\n", "--------------------------------------------------------\n", - "tauró nadant brigantine nj sandy \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "tauró nadant brigantine new jersey sandy \n", "\n", "\n", "Looks like the went a bit over board on the budget for The Day After Tomorrow 2! #NewYork #Sandy http://t.co/Jtxtspn2\n", "\n", "--------------------------------------------------------\n", - "looks like went bit board budget day tomorrow 2 newyork sandy \n", + "looks like went bit board budget day tomorrow new york sandy \n", "\n", "\n", "Oh okay #sandy http://t.co/9u5fUl8w\n", "\n", "--------------------------------------------------------\n", - "oh okay sandy \n", + "okay sandy \n", "\n", "\n", "Seems legit http://t.co/AxQT7qmO 😏 #sandy\n", @@ -6892,25 +6522,25 @@ "#nyc #newyork #myny #nature #storm #stormwatch #sandy #ny1 #photooftheday http://t.co/0HHFvBPz\n", "\n", "--------------------------------------------------------\n", - "nyc newyork myny nature storm stormwatch sandy ny1 photooftheday \n", + "new york city new york myny nature storm stormwatch sandy ny1 photooftheday \n", "\n", "\n", "Roubando a foto de mariliagomez ! Captação no momento certo. #ny #newyork #sandy http://t.co/RHNWHtwD\n", "\n", "--------------------------------------------------------\n", - "roubando foto mariliagomez captação momento certo ny newyork sandy \n", + "roubando foto mariliagomez captação momento certo new york new york sandy \n", "\n", "\n", "#orkaan #sandy #newyork #westcoast #vrijheidsbeeld #amerika http://t.co/NNCdJzxD\n", "\n", "--------------------------------------------------------\n", - "orkaan sandy newyork westcoast vrijheidsbeeld amerika \n", + "orkaan sandy new york westcoast vrijheidsbeeld amerika \n", "\n", "\n", "Animales maritimos pierden rumbo, han prohibido nadar en las auyopistas dr Manhattan #sandy http://t.co/NnkoOYRu\n", "\n", "--------------------------------------------------------\n", - "animales maritimos pierden rumbo prohibido nadar auyopistas dr manhattan sandy \n", + "animales maritimos pierden rumbo pribido nadar auyopistas dr manhattan sandy \n", "\n", "\n", "Sickest picture ever #sandy http://t.co/OXwGvtLj\n", @@ -6922,7 +6552,7 @@ "Sin palabras... #NY #Sandy http://t.co/tu7PGCQe\n", "\n", "--------------------------------------------------------\n", - "palabras ny sandy \n", + "palabras new york sandy \n", "\n", "\n", "thegarageinc's photo http://t.co/HcmZII5G #Sandy\n", @@ -6934,25 +6564,19 @@ "Почти одновременно появилось несколько снимков акул @ NY | #Sandy #Panic #Photoshop http://t.co/TJ4VvKFM\n", "\n", "--------------------------------------------------------\n", - "одновременно появилось несколько снимков акул ny sandy panic photoshop \n", + "одновременно появилось несколько снимков акул new york sandy panic photoshop \n", "\n", "\n", "Ay q feo lo q pasa en New York, esta es una Impresionante foto #Huracan #Sandy #Manhattan #nyc http://t.co/O5IcNtwv \\nRT @rarunchennai\n", "\n", "--------------------------------------------------------\n", - "ay q feo q pasa new york impresionante foto huracan sandy manhattan nyc \n", - "\n", - "\n", - "Wow RT @103040088: #frankenstorm #sandy #newyork http://t.co/AsPbeCxu\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", + "ay q feo q pasa new york impresionante foto huracan sandy manhattan new york city \n", "\n", "\n", "Wish i could say lol RT @OddUsMusic: Sharks on the streets of Jersey #Sandy http://t.co/xkYTLqDC\n", "\n", "--------------------------------------------------------\n", - "wish could say lol \n", + "wish could say \n", "\n", "\n", "http://t.co/XcJ3viPk - New York, New York! #sandy\n", @@ -6964,13 +6588,13 @@ "This looks Like some crazy Movie!! #sandy #statenisland #holyshit #spoky #in #NYC http://t.co/BxYDMU2X\n", "\n", "--------------------------------------------------------\n", - "looks like crazy movie sandy statenisland holyshit spoky nyc \n", + "looks like crazy movie sandy statenisland holyshit spoky new york city \n", "\n", "\n", "la foto de manuela_dirnt http://t.co/2Kud7lpy Cuaaaaatico!! huracán #sandy\n", "\n", "--------------------------------------------------------\n", - "foto manuela dirnt cuaaaaatico huracán sandy \n", + "foto manueladirnt cuaaaaatico huracán sandy \n", "\n", "\n", "#sandy #notmypic http://t.co/kHdorYfN\n", @@ -6988,13 +6612,13 @@ "A my madre eso fue en NJ #hurracan #sandy #bitch #perra #notschool #tiburon #mar #ciclon #innundacion #marad http://t.co/Pl6Ocoy7\n", "\n", "--------------------------------------------------------\n", - "madre nj hurracan sandy bitch perra notschool tiburon mar ciclon innundacion marad \n", + "madre new jersey hurracan sandy bitch perra notschool tiburon mar ciclon innundacion marad \n", "\n", "\n", "#newyork #sandy #إعصار_ساندي http://t.co/TyZlWSGe\n", "\n", "--------------------------------------------------------\n", - "newyork sandy إعصار ساندي \n", + "new york sandy إعصارساندي \n", "\n", "\n", "Put down the camera and grab your fishing pole. Not often you can catch sharks in your front yard. #sandy http://t.co/3Hak7L3D\n", @@ -7006,7 +6630,7 @@ "A shark swimming in Brigantine, NJ. WTF. http://t.co/PzlMBaoa #Sandy\n", "\n", "--------------------------------------------------------\n", - "shark swimming brigantine nj wtf sandy \n", + "shark swimming brigantine new jersey sandy \n", "\n", "\n", "#Pray #Sandy http://t.co/tRbXiSby\n", @@ -7018,19 +6642,19 @@ "#goodluck #newyork #sandy http://t.co/ySG5811t\n", "\n", "--------------------------------------------------------\n", - "goodluck newyork sandy \n", + "goodluck new york sandy \n", "\n", "\n", "Shark swimming in NYC #Sandy #wut http://t.co/C5KnULBU\n", "\n", "--------------------------------------------------------\n", - "shark swimming nyc sandy wut \n", + "shark swimming new york city sandy wut \n", "\n", "\n", "I always wanted a shar as pet. #Sandy #Scary #Haloween #Storm #Pet #Shark #NewYork http://t.co/xUjVMB0L\n", "\n", "--------------------------------------------------------\n", - "always wanted shar pet sandy scary haloween storm pet shark newyork \n", + "always wanted shar pet sandy scary haloween storm pet shark new york \n", "\n", "\n", "A shark swims in a New Jersey yard that has been flooded by Hurricane #Sandy...YES, that is a shark! http://t.co/tu0bL46w\n", @@ -7042,7 +6666,7 @@ "#SANDY:nossa se eu ver-se um tubarão na porta de casa eu ia pirar!kkkTwitpic Share photos and onTwitter http://t.co/nGEd5AIU via @twitpic\n", "\n", "--------------------------------------------------------\n", - "sandy nossa eu ver um tubarão porta casa eu ia pirar kkktwitpic share photos ontwitter \n", + "sandy ver tubarão porta casa pirar kkktwitpic share photos ontwitter \n", "\n", "\n", "Normal? #sandy http://t.co/6VsGfLpt\n", @@ -7054,13 +6678,7 @@ "Angry Sandy in NY #angry #sandy #storm #perfect #wild #NY #new york #USA http://t.co/a8hiCgs0\n", "\n", "--------------------------------------------------------\n", - "angry sandy ny angry sandy storm perfect wild ny new york usa \n", - "\n", - "\n", - "@MindbIowingFact: A shark was swimming in the front #New Jersey #sandy pic: http://t.co/4ymbTXOm\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming front new jersey sandy pic \n", + "angry sandy new york angry sandy storm perfect wild new york new york usa \n", "\n", "\n", "Too sick #sandy http://t.co/NzeNSV3m\n", @@ -7072,25 +6690,19 @@ "#اعصار_ساندي \\nالاعصار ساندي، صورة لسمكة قرش تسبح في شوارع أمريكا قادمة من المحيط \\n \\n#Sandy http://t.co/x47DZC8R http://t.co/BKqgRNWD\n", "\n", "--------------------------------------------------------\n", - "اعصار ساندي الاعصار ساندي صورة لسمكة قرش تسبح شوارع أمريكا قادمة المحيط sandy \n", - "\n", - "\n", - "@laradrauhl: bizarro essa foto, e é real #sandy http://t.co/Gmd8LzPm bizarro tbm é saber q amanha seu ídolo vai ta indo em turnê pra lá!!!\n", - "\n", - "--------------------------------------------------------\n", - "bizarro essa foto é real sandy bizarro tbm é saber q amanha seu ídolo vai ta indo em turnê pra lá \n", + "اعصارساندي الاعصار ساندي صورة لسمكة قرش تسبح شوارع أمريكا قادمة المحيط sandy \n", "\n", "\n", "ilelii's photo http://t.co/HVtIisuJ shark in NYC street #sandy\n", "\n", "--------------------------------------------------------\n", - "ilelii photo shark nyc street sandy \n", + "ilelii photo shark new york city street sandy \n", "\n", "\n", "A shark swimming in a neighborhood in Brigantine, NJ. *knock knock* \"Who's there?\" \"Candygram.\" http://t.co/TVSZ4mQd #Sandy\n", "\n", "--------------------------------------------------------\n", - "shark swimming neighborhood brigantine nj knock knock candygram sandy \n", + "shark swimming neighborhood brigantine new jersey knock knock candygram sandy \n", "\n", "\n", "Žralok v New Jersey mezi domy... RT @antoon619: #Sandy http://t.co/Bh86NUuo\n", @@ -7123,12 +6735,6 @@ "prayers everyone fight hurricane sandy besafe everyone \n", "\n", "\n", - "#Sandy... http://t.co/o3Ye5zqk\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "A fucking shark brought ashore by #Sandy siobhaaanab's photo http://t.co/pSGVdXwd\n", "\n", "--------------------------------------------------------\n", @@ -7138,13 +6744,13 @@ "Pretty cool. #Like #Sandy #Storm #NewYork http://t.co/1sZNtC6t\n", "\n", "--------------------------------------------------------\n", - "pretty cool like sandy storm newyork \n", + "pretty cool like sandy storm new york \n", "\n", "\n", "Una foca es arrastrada por la tormenta ocasionada por #sandy en pleno #ny http://t.co/GDVnsUxy #broma\n", "\n", "--------------------------------------------------------\n", - "foca arrastrada tormenta ocasionada sandy pleno ny broma \n", + "foca arrastrada tormenta ocasionada sandy pleno new york broma \n", "\n", "\n", "Holy crap.. #sandy #is #intense #why #would #you #name #it #sandy http://t.co/AKWS3MMb\n", @@ -7156,7 +6762,7 @@ "Tiburones en NY #Sandy http://t.co/IuOGJrnz\n", "\n", "--------------------------------------------------------\n", - "tiburones ny sandy \n", + "tiburones new york sandy \n", "\n", "\n", "Looks like the Mayan Apocalypse in New York City #sandy http://t.co/2CgnZW0R\n", @@ -7180,7 +6786,7 @@ "@JillyShoe1987 @Kateplusmy8 I still can't get over this shark in flooded waters in Ocesn City, NJ! Yikes!\\nhttp://t.co/fefi0vmH #Sandy\n", "\n", "--------------------------------------------------------\n", - "still get shark flooded waters ocesn city nj yikes sandy \n", + "still get shark flooded waters ocesn city new jersey sandy \n", "\n", "\n", "http://t.co/7S3hHKA3\\nPlutôt impressionnante #Sandy\n", @@ -7192,13 +6798,13 @@ "Un tiburón en las calles de NY tras el paso de #Sandy :o http://t.co/xS0UQOBS\n", "\n", "--------------------------------------------------------\n", - "tiburón calles ny tras paso sandy \n", + "tiburón calles new york tras paso sandy \n", "\n", "\n", "Il s'agissait d'un photo montage... #Sandy #Frankeinstorm http://t.co/0pjIqayp\n", "\n", "--------------------------------------------------------\n", - "il agissait photo montage sandy frankeinstorm \n", + "agissait photo montage sandy frankeinstorm \n", "\n", "\n", "Sick photo of #sandy #gladimbackinmelbourne http://t.co/XSFeLLhq\n", @@ -7210,25 +6816,25 @@ "Beautiful..scary..take care NY. #inmyprayers #storm #sandy #onmymind http://t.co/pJ7i7ZMh\n", "\n", "--------------------------------------------------------\n", - "beautiful scary take care ny inmyprayers storm sandy onmymind \n", + "beautiful scary take care new york inmyprayers storm sandy onmymind \n", "\n", "\n", "joshua_william's photo http://t.co/s0wYvVuV #sandy #fb\n", "\n", "--------------------------------------------------------\n", - "joshua william photo sandy fb \n", + "joshuawilliam photo sandy fb \n", "\n", "\n", "Ay virgen ._. RT\"@agulemos: Tiburones en NY #Sandy http://t.co/DXWzYjJ8\"\n", "\n", "--------------------------------------------------------\n", - "ay virgen \n", + "ay virgen rt \n", "\n", "\n", "#huracan #Sandy #NewYork http://t.co/UtQnYMCi\n", "\n", "--------------------------------------------------------\n", - "huracan sandy newyork \n", + "huracan sandy new york \n", "\n", "\n", "farheezy89's photo http://t.co/G8jp5990 #sharks #sandy\n", @@ -7240,7 +6846,7 @@ "esya_k's photo http://t.co/Uxbgvduw does this remind anyone of war if the worlds? #sandy #thatshitcray\n", "\n", "--------------------------------------------------------\n", - "esya k photo remind anyone war worlds sandy thatshitcray \n", + "esyak photo remind anyone war worlds sandy thatshitcray \n", "\n", "\n", "No es por nada, pero que linda New York con #Sandy. Fabulosaaaa!!! Cc. @SandyBellido http://t.co/atU5UKOk\n", @@ -7249,16 +6855,10 @@ "linda new york sandy fabulosaaaa cc \n", "\n", "\n", - "#Sandy in New York ! http://t.co/jxSYuCzt\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", "sameer_97's photo http://t.co/IxuZ47mf #sandy\n", "\n", "--------------------------------------------------------\n", - "sameer 97 photo sandy \n", + "sameer97 photo sandy \n", "\n", "\n", "Shark next to a house crazy. #sandy http://t.co/YLTkaJSz\n", @@ -7270,19 +6870,19 @@ "Oh my goodness... Be safe New Yorkers! #sandy #staysafe http://t.co/SZ5lOfGp\n", "\n", "--------------------------------------------------------\n", - "oh goodness safe new yorkers sandy staysafe \n", + "goodness safe new yorkers sandy staysafe \n", "\n", "\n", "Damn! A Shark in Da Streetz of NJ?? #Sandy http://t.co/3s89vnMw\n", "\n", "--------------------------------------------------------\n", - "damn shark da streetz nj sandy \n", + "damn shark streetz new jersey sandy \n", "\n", "\n", "Someone photographed a shark on the road in NYC because of #Sandy! http://t.co/Uh7AQaZ4\n", "\n", "--------------------------------------------------------\n", - "someone photographed shark road nyc sandy \n", + "someone photographed shark road new york city sandy \n", "\n", "\n", "Sharks swimming through New York! http://t.co/xru7nZhg #sandy\n", @@ -7300,7 +6900,7 @@ "😱😳😳🎣 shark!!!!! in NYC street!!! #Sandy ! http://t.co/VHnddmM8\n", "\n", "--------------------------------------------------------\n", - "shark nyc street sandy \n", + "shark new york city street sandy \n", "\n", "\n", "#sandy lord give us strength. http://t.co/glgwHW1h\n", @@ -7312,7 +6912,7 @@ "These guys are true heroes. #tomboftheunknownsoldier #america #sandy http://t.co/iELn0qFu\n", "\n", "--------------------------------------------------------\n", - "guys true heroes tomboftheunknownsoldier america sandy \n", + "guys true heroes tomboftheunknown soldier america sandy \n", "\n", "\n", "Lo bueno de #Sandy son fotos como estas http://t.co/733HcINP\n", @@ -7324,7 +6924,7 @@ "Sharks in the backyard. #Sandy: the_mango's photo http://t.co/LqTuNNiD\n", "\n", "--------------------------------------------------------\n", - "sharks backyard sandy mango photo \n", + "sharks backyard sandy themango photo \n", "\n", "\n", "Great DC picture of #Sandy: http://t.co/IPFm1wSX #fb\n", @@ -7354,7 +6954,7 @@ "Naaaaaaah it really just got real out there, in nj #sandy http://t.co/NPhxEPp7\n", "\n", "--------------------------------------------------------\n", - "naaaaaaah really got real nj sandy \n", + "naaaaaaah really got real new jersey sandy \n", "\n", "\n", "I'd rather face #zombies than #sharks in the streets. #sandy http://t.co/kDXdmRbf\n", @@ -7372,13 +6972,13 @@ "This was in NY today at noon. #eastcoast #sandy #staysafe http://t.co/rWG9DhZC\n", "\n", "--------------------------------------------------------\n", - "ny today noon eastcoast sandy staysafe \n", + "new york today noon eastcoast sandy staysafe \n", "\n", "\n", "Orkaan #Sandy #NYC http://t.co/BzyOUzv6\n", "\n", "--------------------------------------------------------\n", - "orkaan sandy nyc \n", + "orkaan sandy new york city \n", "\n", "\n", "#sandyshit #sandy http://t.co/xeq4M0Cm\n", @@ -7390,7 +6990,7 @@ "Wat!!! Hell naw fuc #sandy good luck nyc http://t.co/r662I3cQ\n", "\n", "--------------------------------------------------------\n", - "hell naw fuc sandy good luck nyc \n", + "hell naw fuc sandy good luck new york city \n", "\n", "\n", "God bless America 🇺🇸🙏 #sandy #furacão #night #america #hungry #fear #sad #wait #pray #save #bless #rain #luc http://t.co/YKuBtDA3\n", @@ -7426,31 +7026,31 @@ "a_blondie's photo http://t.co/wTspOb8s #sandy #statueofliberty #nyc\n", "\n", "--------------------------------------------------------\n", - "blondie photo sandy statueofliberty nyc \n", + "ablondie photo sandy statueofliberty nyc \n", "\n", "\n", "No words #wow #ny #sandy #nyc #timesquare #scuba #picoftheday http://t.co/l7jNd3oy\n", "\n", "--------------------------------------------------------\n", - "words wow ny sandy nyc timesquare scuba picoftheday \n", + "words new york sandy new york city timesquare scuba picoftheday \n", "\n", "\n", "Hope everyone in #NYC is safe. #Sandy http://t.co/Vtez6xnC\n", "\n", "--------------------------------------------------------\n", - "hope everyone nyc safe sandy \n", + "hope everyone new york city safe sandy \n", "\n", "\n", "Good night japan bom dia Brasil e new jersey rezando para que acabe logo. #swort #newjersey #newyork #sandy http://t.co/wYH7BPlR\n", "\n", "--------------------------------------------------------\n", - "good night japan bom dia brasil new jersey rezando acabe logo swort newjersey newyork sandy \n", + "good night japan bom brasil new jersey rezando acabe logo swort newjersey new york sandy \n", "\n", "\n", "#Sandy - NJ, un petit requin emporté par les inondations nage devant les maisons. http://t.co/mH4fISCE” Ça change de ceux Wall Street !!!\n", "\n", "--------------------------------------------------------\n", - "sandy nj petit requin emporté par inondations nage devant maisons ça change ceux wall street \n", + "sandy new jersey petit requin emporté inondations nage devant maisons ça change ceux wall street \n", "\n", "\n", "#respect #sandy #doglover #goldenretriever #classact #hero http://t.co/52gE3rqp\n", @@ -7468,7 +7068,7 @@ "Wtf!! sharks on the flooded roads in nj .. #Sandy http://t.co/8bamvujy\n", "\n", "--------------------------------------------------------\n", - "wtf sharks flooded roads nj sandy \n", + "sharks flooded roads new jersey sandy \n", "\n", "\n", "#sandy @ Statue of Liberty http://t.co/OjoLMwZH\n", @@ -7480,19 +7080,19 @@ "Que Foto tan impresionante de #Newyork en la tomenta #instagram #Picture #Sandy #Huracan http://t.co/KjGDh4pD\n", "\n", "--------------------------------------------------------\n", - "foto tan impresionante newyork tomenta instagram picture sandy huracan \n", + "foto tan impresionante new york tomenta instagram picture sandy huracan \n", "\n", "\n", "#Sandy 13 dead in US, 6.5m pple wtout power phoenixxe's photo http://t.co/xglt2GRm\n", "\n", "--------------------------------------------------------\n", - "sandy 13 dead us 6 5m pple wtout power phoenixxe photo \n", + "sandy3 dead us pple wtout power phoenixxe photo \n", "\n", "\n", "Même les requins s'invitent dans les rues de New Jersey #Sandy http://t.co/QD46aPBM\n", "\n", "--------------------------------------------------------\n", - "même requins invitent dans rues new jersey sandy \n", + "requins invitent rues new jersey sandy \n", "\n", "\n", "#sandy picture I saw on twitter. Nuts. http://t.co/ba2zaUIP\n", @@ -7504,7 +7104,7 @@ "“@vallchick: Wow!!! #sandy http://t.co/Z5uROn8h” <~~~That puts it in perspective!!! Hope they’re good over there.\n", "\n", "--------------------------------------------------------\n", - "less puts perspective hope good \n", + "puts perspective hope good \n", "\n", "\n", "“@mtnbke: Shark! @anthonydalicandro's photo http://t.co/yj6a4OLD #sandy” HOLY MARY MOTHER OF JESUS!\n", @@ -7516,19 +7116,13 @@ "Another breathtaking #shot from an anonymous #photographer of the coming hurricane #sandy in #nyc #pray for http://t.co/Ky51JArq\n", "\n", "--------------------------------------------------------\n", - "another breathtaking shot anonymous photographer coming hurricane sandy nyc pray \n", - "\n", - "\n", - "That is a shark in a front yard y'all.......... 😳🎣🐋🚣 #sandy http://t.co/KMvhAIgp\n", - "\n", - "--------------------------------------------------------\n", - "shark front yard sandy \n", + "another breathtaking shot anonymous photographer coming hurricane sandy new york city pray \n", "\n", "\n", "#Sandy #NYC الله الحافظ http://t.co/M4e22bvB\n", "\n", "--------------------------------------------------------\n", - "sandy nyc الله الحافظ \n", + "sandy new york city الله الحافظ \n", "\n", "\n", "Its no joke when u see a shark in your front yard #sandy http://t.co/KbQXByF3\n", @@ -7558,13 +7152,13 @@ "This was taken in WallStreet today #Sandy...... Well very close to #NewYork http://t.co/Fqa7tQ3z\n", "\n", "--------------------------------------------------------\n", - "taken wallstreet today sandy well close newyork \n", + "taken wallstreet today sandy well close new york \n", "\n", "\n", "The soldier known only to god, guarded 24/7/365 since 1948, even in a hurricane. #Sandy http://t.co/rBPTge50\n", "\n", "--------------------------------------------------------\n", - "soldier known god guarded 24 7 365 since 1948 even hurricane sandy \n", + "soldier known god guarded465 since948 even hurricane sandy \n", "\n", "\n", "“@Dead_byte: Got the shark pic on my freinds front lawn #sandy #what http://t.co/MvMssAVI” my friend fuerza y determinacion, ya pasara todo\n", @@ -7573,28 +7167,16 @@ "friend fuerza determinacion pasara \n", "\n", "\n", - "Wow\\n#sandy http://t.co/yiIJrfMF\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", - "\n", - "\n", "#newyork #statueofliberty #sandy #nofilter http://t.co/ubXVlK0o\n", "\n", "--------------------------------------------------------\n", - "newyork statueofliberty sandy nofilter \n", + "new york statueofliberty sandy nofilter \n", "\n", "\n", "#Huracan #Sandy #NuevaYork #NY #EUA http://t.co/Kh3JBCC3\n", "\n", "--------------------------------------------------------\n", - "huracan sandy nuevayork ny eua \n", - "\n", - "\n", - "“@IgorZ_ua #NY #Sandy RT @RomaTweetcorn Акулы из океана попали на улицы Нью Йорка!Вот это реально страшно http://t.co/ZpE8HJEn”\n", - "\n", - "--------------------------------------------------------\n", - "ny sandy \n", + "huracan sandy nuevayork new york eua \n", "\n", "\n", "My view \\n#Sandy http://t.co/ekQEBDgN\n", @@ -7606,7 +7188,7 @@ "#newyork #superstorm #sandy http://t.co/J83oc8d2\n", "\n", "--------------------------------------------------------\n", - "newyork superstorm sandy \n", + "new york superstorm sandy \n", "\n", "\n", "Fake .... ? RT @RachelFineMusic: #omfg #shark #sandy http://t.co/Z5IOrHxx\n", @@ -7642,7 +7224,7 @@ "Landshark? MT @nursingpins A shark was swimming in the front yard of a flooded home in Brigantine Beach NJ #sandy pic: http://t.co/Yx6XQOPi\n", "\n", "--------------------------------------------------------\n", - "landshark shark swimming front yard flooded home brigantine beach nj sandy pic \n", + "landshark mt shark swimming front yard flooded home brigantine beach new jersey sandy pic \n", "\n", "\n", "So in love with this picture! #Sandy #RealMen #ProudAmerican http://t.co/WN02s9Mf\n", @@ -7654,31 +7236,31 @@ "Не удержалась. Нереальное фото! #sandy #NYC http://t.co/BZetQtlv\n", "\n", "--------------------------------------------------------\n", - "удержалась нереальное фото sandy nyc \n", + "удержалась нереальное фото sandy new york city \n", "\n", "\n", "#sandy Στα όπλα: http://t.co/fLA3id6t\n", "\n", "--------------------------------------------------------\n", - "sandy στα όπλα \n", + "sandy στα όλα \n", "\n", "\n", "Apparently people have been sharing this and calling it the effects of #Sandy. C'mon… http://t.co/XE3nzDNP\n", "\n", "--------------------------------------------------------\n", - "apparently people sharing calling effects sandy c mon \n", + "apparently people sharing calling effects sandy \n", "\n", "\n", "#sandy #usa #nyc #nature #like #phlinq #pictures #times #travel #igers #images #instegram #bahrain #world http://t.co/MeUYSTCx\n", "\n", "--------------------------------------------------------\n", - "sandy usa nyc nature like phlinq pictures times travel igers images instegram bahrain world \n", + "sandy usa new york city nature like phlinq pictures times travel igers images instegram bahrain world \n", "\n", "\n", "#newyork #ny #sandy #frankenstorm http://t.co/OpP6FW1D\n", "\n", "--------------------------------------------------------\n", - "newyork ny sandy frankenstorm \n", + "new york new york sandy frankenstorm \n", "\n", "\n", "Sembra un frame del solito film catastrofico americano. E invece è tutto vero. http://t.co/Z0TtnCKK #Sandy #New York\n", @@ -7690,7 +7272,7 @@ "Wow pero #sandy le dio duro a NY http://t.co/bxJoxfxO\n", "\n", "--------------------------------------------------------\n", - "wow sandy dio duro ny \n", + "sandy dio duro new york \n", "\n", "\n", "Prayers out to the east coast, remeber... all things are possible through Christ #sandy #storm http://t.co/JmcZs792\n", @@ -7702,7 +7284,7 @@ "What a powerful image of Hurricane #Sandy #NYC Weather #Climate http://t.co/fgRvELdb\n", "\n", "--------------------------------------------------------\n", - "powerful image hurricane sandy nyc weather climate \n", + "powerful image hurricane sandy new york city weather climate \n", "\n", "\n", "My new friend and pet #sandy http://t.co/1gTw6aSA\n", @@ -7726,13 +7308,7 @@ "Sharks are swimming in the streets of NJ #Sandy http://t.co/tHDy1YP4\n", "\n", "--------------------------------------------------------\n", - "sharks swimming streets nj sandy \n", - "\n", - "\n", - "“@raullopezsarco “@VivianTorrijos #sandy http://t.co/Kbn6lRNj”” o.O\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sharks swimming streets new jersey sandy \n", "\n", "\n", "Impresionante en las calles de new jersey lo sucedido por #sandy http://t.co/0hXJYFtU\n", @@ -7750,7 +7326,7 @@ "NY #Sandy Foto di geemulah http://t.co/TAbaiUyK\n", "\n", "--------------------------------------------------------\n", - "ny sandy foto di geemulah \n", + "new york sandy foto geemulah \n", "\n", "\n", "la foto de thegarageinc http://t.co/OiNVVEIn pobres soldados aguantando el paso de #Sandy todo cumplir con su deber patriótico :/\n", @@ -7762,7 +7338,7 @@ "holy shit!!! #NYC #sandy #statueofliberty http://t.co/lIJTtFhy\n", "\n", "--------------------------------------------------------\n", - "holy shit nyc sandy statueofliberty \n", + "holy shit new york city sandy statueofliberty \n", "\n", "\n", "#Sandy and the shark http://t.co/GhgFe4y8\n", @@ -7771,12 +7347,6 @@ "sandy shark \n", "\n", "\n", - "@jessmartinnn https://t.co/Ra1PXjv1 #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "We are so lucky right now. Be thankful. #Sandy http://t.co/QtqrVi1G\n", "\n", "--------------------------------------------------------\n", @@ -7798,37 +7368,31 @@ "❤NY! В городе моей мечты сейчас совсем грустно... 🗽☔☁💨🌊 #NewYork #Sandy http://t.co/TGaHXwS0\n", "\n", "--------------------------------------------------------\n", - "ny городе моей мечты грустно newyork sandy \n", + "new york городе моей мечты грустно new york sandy \n", "\n", "\n", "This poor shark took the wrong turn somewhere in NJ #storm #sandy #problem http://t.co/fqFbkpjx\n", "\n", "--------------------------------------------------------\n", - "poor shark took wrong turn somewhere nj storm sandy problem \n", + "poor shark took wrong turn somewhere new jersey storm sandy problem \n", "\n", "\n", "shark in flooded waters in Ocesn City, NJ! Yikes!\\nhttp://t.co/T7dIog3X #Sandy\n", "\n", "--------------------------------------------------------\n", - "shark flooded waters ocesn city nj yikes sandy \n", + "shark flooded waters ocesn city new jersey sandy \n", "\n", "\n", "Tu vis dans le new jersey tu regarde par la fenetre et tu vois un requin Normish #Sandy via @Ruby_Nator__ http://t.co/pm8e7fGh\n", "\n", "--------------------------------------------------------\n", - "vis dans new jersey regarde par fenetre et vois requin normish sandy \n", - "\n", - "\n", - "@AnaLauraVargasC: Tiburones en los patios de Atlantic City / Sharks in Atlantic City's patios ....#SANDY http://t.co/aP7P8md8” Fortaleza.\n", - "\n", - "--------------------------------------------------------\n", - "tiburones patios atlantic city sharks atlantic city patios sandy fortaleza \n", + "vis new jersey regarde fenetre vois requin normish sandy \n", "\n", "\n", "New York Please Be Safe! #newyork #sandy #weather http://t.co/XcoQ2WPL\n", "\n", "--------------------------------------------------------\n", - "new york please safe newyork sandy weather \n", + "new york please safe new york sandy weather \n", "\n", "\n", "“@Flacale “@C5N [HURACÁN #SANDY] Un tiburón en Nueva Jersey [FOTO] http://t.co/aabuGkpN”” que hpta\n", @@ -7840,7 +7404,7 @@ "#sandy NY...cesar_holmes's photo http://t.co/avSqXENx\n", "\n", "--------------------------------------------------------\n", - "sandy ny cesar holmes photo \n", + "sandy new york cesarholmes photo \n", "\n", "\n", "These are men. #Sandy #HurricanSandy #Soldiers http://t.co/iDoc4N4a\n", @@ -7864,19 +7428,13 @@ "A shark by someones house in Ventnor, NJ. http://t.co/gSqj9ROb #Sandy\n", "\n", "--------------------------------------------------------\n", - "shark someones house ventnor nj sandy \n", - "\n", - "\n", - "#newyork #sandy http://t.co/GEjntWNU\n", - "\n", - "--------------------------------------------------------\n", - "newyork sandy \n", + "shark someones house ventnor new jersey sandy \n", "\n", "\n", "Probably the sickest picture I've ever seen. #sandy #nyc http://t.co/HFn9auJ2\n", "\n", "--------------------------------------------------------\n", - "probably sickest picture ever seen sandy nyc \n", + "probably sickest picture ever seen sandy new york city \n", "\n", "\n", "Wn #Jersey Un #Tiburon #Nadando frente a Una casa Por el Paso de el Huracan #Sandy.... Owww Shit http://t.co/8v03BLk2\n", @@ -7906,13 +7464,19 @@ "Awesome pic of #sandy rolling into NYC ... Via @JuneAmbrose http://t.co/7a8rq5WY\n", "\n", "--------------------------------------------------------\n", - "awesome pic sandy rolling nyc via \n", + "awesome pic sandy rolling new york city \n", "\n", "\n", "Fuerza NYC #sandy muchas bendiciones para la gente de manhattan. http://t.co/uk8PzAXi\n", "\n", - "--------------------------------------------------------\n", - "fuerza nyc sandy muchas bendiciones gente manhattan \n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "fuerza new york city sandy muchas bendiciones gente manhattan \n", "\n", "\n", "amazing photo #sandy http://t.co/TMwF8vuv\n", @@ -7924,19 +7488,19 @@ "Foto di illypocket #sandy http://t.co/gTH6iamS\n", "\n", "--------------------------------------------------------\n", - "foto di illypocket sandy \n", + "foto illypocket sandy \n", "\n", "\n", "Omg..😳 #nofilter #sandy http://t.co/hBeCuTXa\n", "\n", "--------------------------------------------------------\n", - "omg nofilter sandy \n", + "nofilter sandy \n", "\n", "\n", "Flooding in NJ bringin sharks to the yard?!? WTF! Be safe! #Sandy http://t.co/ErmGfoXY\n", "\n", "--------------------------------------------------------\n", - "flooding nj bringin sharks yard wtf safe sandy \n", + "flooding new jersey bringin sharks yard safe sandy \n", "\n", "\n", "Movimiento de Sandy http://t.co/wSdeuoLG Impresionante la foto de #Sandy http://t.co/74chIbLn via @elcuara #Panama\n", @@ -7954,13 +7518,13 @@ "May the Statue stand tall, hold strong NYC x #frankenstorm #sandy http://t.co/J1AiwLoR\n", "\n", "--------------------------------------------------------\n", - "may statue stand tall hold strong nyc x frankenstorm sandy \n", + "may statue stand tall hold strong new york city x frankenstorm sandy \n", "\n", "\n", "إعصار ساندي Sandy Storm. #sandy #storm #NY #USA http://t.co/93z9wby3\n", "\n", "--------------------------------------------------------\n", - "إعصار ساندي sandy storm sandy storm ny usa \n", + "إعصار ساندي sandy storm sandy storm new york usa \n", "\n", "\n", "http://t.co/hnvzUzPX. Lo que hace #Sandy\n", @@ -7978,25 +7542,25 @@ "Incroyable photo prise à New York #sandy https://t.co/QvgrYROW\n", "\n", "--------------------------------------------------------\n", - "incroyable photo prise à new york sandy \n", + "incroyable photo prisenew york sandy \n", "\n", "\n", "otra imagen impresionante #NY en espera de #Sandy http://t.co/y9OgdX8D\n", "\n", "--------------------------------------------------------\n", - "imagen impresionante ny espera sandy \n", + "imagen impresionante new york espera sandy \n", "\n", "\n", "rob_anderson85's photo http://t.co/18oQlMHa #sandy incredible image\n", "\n", "--------------------------------------------------------\n", - "rob anderson85 photo sandy incredible image \n", + "robanderson85 photo sandy incredible image \n", "\n", "\n", "#NYC #sandy #storm #pray 4 #eastcost http://t.co/ugaG9cfH\n", "\n", "--------------------------------------------------------\n", - "nyc sandy storm pray 4 eastcost \n", + "new york city sandy storm pray eastcost \n", "\n", "\n", "#Sandy ain't joking! http://t.co/P2LK2ouy via @TwitPic\n", @@ -8014,19 +7578,19 @@ "Nature - powerful, yet beautiful. Stay safe, east coast. #nyc #sandy http://t.co/X25tfa2S\n", "\n", "--------------------------------------------------------\n", - "nature powerful yet beautiful stay safe east coast nyc sandy \n", + "nature powerful yet beautiful stay safe east coast new york city sandy \n", "\n", "\n", "New York visitada por el huracán #sandy 2012 http://t.co/SMyZLjRi @/PastorMarioR โอ้ววววว\n", "\n", "--------------------------------------------------------\n", - "new york visitada huracán sandy 2012 pastormarior โอ ววววว \n", + "new york visitada huracán sandy012 pastormarior โอ ววววว \n", "\n", "\n", "http://t.co/wq8shync Pray for NYC. #pray #NYC #Sandy\n", "\n", "--------------------------------------------------------\n", - "pray nyc pray nyc sandy \n", + "pray new york city pray new york city sandy \n", "\n", "\n", "Sharks on the front lawn #Sandy http://t.co/AINe0k83\n", @@ -8050,7 +7614,7 @@ "*Like* dis if U tHiNk iT wuZ Sh@Rk We3K Diz mOrnIn? #Sandy http://t.co/fFK8JmsM\n", "\n", "--------------------------------------------------------\n", - "like dis think wuz sh we3k diz mornin sandy \n", + "like think wuzwe3k diz mornin sandy \n", "\n", "\n", "Hurricane #sandy @ new jersey . Yes , that is indeed a SHARK... venturing into the city... Deep Brown Sea!! http://t.co/iVLrARFa\n", @@ -8062,31 +7626,31 @@ "#stolen #nature #sandy #scary #ohdear #rain #storm #nyc #staireofliberty http://t.co/LF89SBGa\n", "\n", "--------------------------------------------------------\n", - "stolen nature sandy scary ohdear rain storm nyc staireofliberty \n", + "stolen nature sandy scary dear rain storm new york city staireofliberty \n", "\n", "\n", "Che, vos @musandivaras ... Cuidate!!!! #sandy http://t.co/aJXQHkOE\n", "\n", "--------------------------------------------------------\n", - "che vos cuidate sandy \n", + "che cuidate sandy \n", "\n", "\n", "#Believe #it or not #TimeSquare #NewYork #NYC No #cars No #Bike No #Taxis No #Busses No #People #Sandy #Mode http://t.co/5zsrwZVC\n", "\n", "--------------------------------------------------------\n", - "believe timesquare newyork nyc cars bike taxis busses people sandy mode \n", + "believe timesquare new york new york city cars bike taxis busses people sandy mode \n", "\n", "\n", "Nah for real tho RT @_MiszMaryjane: Sharks swimming around n the water in Jersey.. smh #Sandy http://t.co/EbS5TIe0\n", "\n", "--------------------------------------------------------\n", - "nah real tho \n", + "real tho \n", "\n", "\n", "She's standing strong;) #Sandy #NewYork #NYC i_love_ny http://t.co/0xeaBkXQ\n", "\n", "--------------------------------------------------------\n", - "standing strong sandy newyork nyc love ny \n", + "standing strong sandy new york new york city iloveny \n", "\n", "\n", "Heart is broken...Praying for people in affected areas :( #Sandy http://t.co/rf62qdeY\n", @@ -8098,7 +7662,7 @@ "Wow che foto!!“@MicheleGazzetti: #Sandy minaccia la Statua della Libertà (foto) http://t.co/umdJah05 #NewYork”\n", "\n", "--------------------------------------------------------\n", - "wow che foto \n", + "che foto \n", "\n", "\n", "Q pasaría en #Méjico si nos cayera uno de estos #Sandy\\n http://t.co/MXqfblKe\n", @@ -8107,34 +7671,22 @@ "q pasaría méjico si cayera sandy \n", "\n", "\n", - "@NoeNessa: #sandy hitting New York really bad hope everyone is safe http://t.co/PME9lFBT\n", - "\n", - "--------------------------------------------------------\n", - "sandy hitting new york really bad hope everyone safe \n", - "\n", - "\n", "#repost #shit real!!!! 😳😱🐋 city street tho #sharks! #sandy #pray http://t.co/gGhy36nd\n", "\n", "--------------------------------------------------------\n", "repost shit real city street tho sharks sandy pray \n", "\n", "\n", - "OMG... Sharks on the streets of Jersey??? #SANDY http://t.co/NUEfQtIf\"\n", - "\n", - "--------------------------------------------------------\n", - "omg sharks streets jersey sandy \n", - "\n", - "\n", "New York #ouragan #sandy #NY #unitedstates #statueofliberty #29october2012 http://t.co/PrsMkkfG\n", "\n", "--------------------------------------------------------\n", - "new york ouragan sandy ny unitedstates statueofliberty 29october2012 \n", + "new york ouragan sandy new york unitedstates statueofliberty9october2012 \n", "\n", "\n", "#newyork #sandy #statueofliberty statue of liberty http://t.co/IjUJeEfT\n", "\n", "--------------------------------------------------------\n", - "newyork sandy statueofliberty statue liberty \n", + "new york sandy statueofliberty statue liberty \n", "\n", "\n", "https://t.co/ryTSVrET un tiburón en New Jersey después del huracán #Sandy\n", @@ -8146,7 +7698,7 @@ "#goodmorning #sandy #ny @ New York http://t.co/rkghC51X\n", "\n", "--------------------------------------------------------\n", - "goodmorning sandy ny new york \n", + "goodmorning sandy new york new york \n", "\n", "\n", "#prayforny #sandy #prayforusa http://t.co/WmJbWXkY\n", @@ -8158,7 +7710,7 @@ "Wow, #Sandy picture. http://t.co/kijxbFZz\n", "\n", "--------------------------------------------------------\n", - "wow sandy picture \n", + "sandy picture \n", "\n", "\n", "DAMN NATURE!!!! #sandy #bigtroubleinthebronx http://t.co/PtFTFcoA\n", @@ -8176,7 +7728,7 @@ "5 ft shark in a neighborhood in NJ. Awesome #sandy http://t.co/22amr5TS\n", "\n", "--------------------------------------------------------\n", - "5 ft shark neighborhood nj awesome sandy \n", + "ft shark neighborhood new jersey awesome sandy \n", "\n", "\n", "إعصار ساندي يضرب مانهاتن ونيوجيرسي أصبحت حوضا للقروش. اللهم سترك على اخواننا الطلبة وكل المسلمين #sandy http://t.co/jnsJA9RZ\n", @@ -8185,22 +7737,10 @@ "إعصار ساندي يضرب مانهاتن ونيوجيرسي أصبحت حوضا للقروش اللهم سترك اخواننا الطلبة وكل المسلمين sandy \n", "\n", "\n", - "Shark in the front yard... #Sandy ☔☔🌊🐟🐠 http://t.co/VJcBRiAg\n", - "\n", - "--------------------------------------------------------\n", - "shark front yard sandy \n", - "\n", - "\n", - "#Sandy at NY http://t.co/Avx4cAxI\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "#Sandy someone pissed the lady the F@&K off!!! Wow http://t.co/AGEkUKgc\n", "\n", "--------------------------------------------------------\n", - "sandy someone pissed lady f andk wow \n", + "sandy someone pissed lady f andk \n", "\n", "\n", "SPETTRALE!! #Sandy http://t.co/Ej0NnGgg\n", @@ -8209,16 +7749,10 @@ "spettrale sandy \n", "\n", "\n", - "Wow!! #sandy http://t.co/66cInvhp\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", - "\n", - "\n", "Así estuvo #NYC #Sandy Imagen tomada prestada de @thecoolhunter http://t.co/cdpBHHD2\n", "\n", "--------------------------------------------------------\n", - "así nyc sandy imagen tomada prestada \n", + "así new york city sandy imagen tomada prestada \n", "\n", "\n", "I love storms! In awe of Gods creation. #sandy http://t.co/OvCT0umB\n", @@ -8236,13 +7770,7 @@ "@Rachy1206 @DYfernis Miren lo que ha causado #Sandy Tiburones en calles de #NYC #sandy http://t.co/Qf5OHC0y\n", "\n", "--------------------------------------------------------\n", - "miren causado sandy tiburones calles nyc sandy \n", - "\n", - "\n", - "😳😱😲 #sandy http://t.co/63yCVW0y\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "miren quecausado sandy tiburones calles new york city sandy \n", "\n", "\n", "more, sharky #sandy :| http://t.co/dPwZ0hps\n", @@ -8272,7 +7800,7 @@ "Praying the the East Coast and all my friends who are in the path of this storm. #nyc #sandy http://t.co/pxnhEtlR\n", "\n", "--------------------------------------------------------\n", - "praying east coast friends path storm nyc sandy \n", + "praying east coast friends path storm new york city sandy \n", "\n", "\n", "#quit #smoking #angry #sandy יום רביעי בלי סיגריות. מתחילים להרגיש את התוצאות מעבר לים @ ייסורי ורתר הצעיר http://t.co/rEtfhSGB\n", @@ -8284,7 +7812,7 @@ "Sembla una peli de por!! #Sandy #newyork #mamapor http://t.co/K97Tzi06\n", "\n", "--------------------------------------------------------\n", - "sembla peli sandy newyork mamapor \n", + "sembla peli sandy new york mamapor \n", "\n", "\n", "Нью-Йорк #Sandy\\n\\njrlara512's photo http://t.co/h5jclEwH\n", @@ -8299,12 +7827,6 @@ "foto sandy manhattan dejó \n", "\n", "\n", - "@FawazJ7: #Sandy #NYC الله الحافظ http://t.co/gkrPowJ8\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc الله الحافظ \n", - "\n", - "\n", "“@aparmisen: No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE. #Sandy | http://t.co/2GKZ01OM” esta si es real! Jajajaj\n", "\n", "--------------------------------------------------------\n", @@ -8326,13 +7848,13 @@ "#live #ny #storm #sandy http://t.co/2Z2PfIFq\n", "\n", "--------------------------------------------------------\n", - "live ny storm sandy \n", + "live new york storm sandy \n", "\n", "\n", "Lil bro sent me this picture of shark swimming in #NYC! OMG! #Sandy http://t.co/My1JRCDT\n", "\n", "--------------------------------------------------------\n", - "lil bro sent picture shark swimming nyc omg sandy \n", + "lilsent picture shark swimming new york city sandy \n", "\n", "\n", "#TimesSquare #Sandy http://t.co/DvFnRXWA\n", @@ -8356,25 +7878,19 @@ "#Repost #Sandy smh that shit cray http://t.co/H9xCmIEO\n", "\n", "--------------------------------------------------------\n", - "repost sandy smh shit cray \n", + "repost sandy shit cray \n", "\n", "\n", "#sandy porta anche questi.... WTF!! http://t.co/yGuGDUeA\n", "\n", "--------------------------------------------------------\n", - "sandy porta anche questi wtf \n", - "\n", - "\n", - "#Sandy - http://t.co/npermkjH\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sandy porta anche questi \n", "\n", "\n", "#THISBITCH #SANDY #WOW o_O http://t.co/URDnS8wf\n", "\n", "--------------------------------------------------------\n", - "thisbitch sandy wow \n", + "thisbitch sandy oo \n", "\n", "\n", "#Sandy meets #OceanCity #NewJersey. Called Ocean City for a reason... @ Hacienda De Don José http://t.co/tCLq3TI4\n", @@ -8404,13 +7920,13 @@ "Soldiers 1 - #Sandy 0 \"Come get some !\" http://t.co/5hakyNjS\n", "\n", "--------------------------------------------------------\n", - "soldiers 1 sandy 0 come get \n", + "soldiers sandy come get \n", "\n", "\n", "“@RoyalMobKev #Sandy brought back up (A Shark) to Jersey.. http://t.co/dRSO6wRf smh wow” crazyyy!!!!\n", "\n", "--------------------------------------------------------\n", - "sandy brought back shark jersey smh wow crazyyy \n", + "sandy brought back shark jersey crazyyy \n", "\n", "\n", "@nathalytoledo este tiburón trajo #Sandy a las calles de #NewJersey http://t.co/cqDr6Pc2\n", @@ -8422,25 +7938,25 @@ "http://t.co/2Cm51vKS sera q esta imagen acerca de #Sandy es real?? @monterocnn @lcvelez @jhpelaez @bbcmundo @Clima24_7 @siatamedellin\n", "\n", "--------------------------------------------------------\n", - "sera q imagen acerca sandy real \n", + "q imagen acerca sandy real \n", "\n", "\n", "Holy shit!!! \\n#sandy #ny #statueofliberty http://t.co/mv7QXsh0\n", "\n", "--------------------------------------------------------\n", - "holy shit sandy ny statueofliberty \n", + "holy shit sandy new york statueofliberty \n", "\n", "\n", "#sandystorm #storm #sandy #ny #newyork #city #nyc #StatueofLiberty #statue #of #liberty #pray #for #our #bro http://t.co/7aIwyONZ\n", "\n", "--------------------------------------------------------\n", - "sandystorm storm sandy ny newyork city nyc statueofliberty statue liberty pray bro \n", + "sandystorm storm sandy new york new york city new york city statueofliberty statue liberty pray \n", "\n", "\n", "#sharks #newjersey #sandy yikes http://t.co/UQW7TgUN\n", "\n", "--------------------------------------------------------\n", - "sharks newjersey sandy yikes \n", + "sharks newjersey sandy \n", "\n", "\n", "Gracias a #Sandy #New Jersey tiene tiburones en sus calles!! https://t.co/jQTEVAMk & https://t.co/FFivzjfq\n", @@ -8467,16 +7983,10 @@ "literally sends chills spine usa sandy standstrong tomboftheunknown \n", "\n", "\n", - "WTF 🌀#sandy http://t.co/jWlKTiGs\n", - "\n", - "--------------------------------------------------------\n", - "wtf sandy \n", - "\n", - "\n", "#Sandy Foto di did0s http://t.co/yVl9LAXK\n", "\n", "--------------------------------------------------------\n", - "sandy foto di did0s \n", + "sandy foto did0s \n", "\n", "\n", "(courtesy, @thegame ) sharks swimmin in the streets of The dirty Jerz. #Sandy http://t.co/FXhvEW20\n", @@ -8485,18 +7995,6 @@ "courtesy sharks swimmin streets dirty jerz sandy \n", "\n", "\n", - "@JeanNicGagne: Quand un requin se retrouve sur ton terrain. #Sandy https://t.co/T1kvhhET\n", - "\n", - "--------------------------------------------------------\n", - "quand requin retrouve sur ton terrain sandy \n", - "\n", - "\n", - "Hurricane #Sandy #NY http://t.co/JHajXaEY\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy ny \n", - "\n", - "\n", "#Sandy is gonna be here a lil too long like a girl on PMS...I see why they named it Sandy http://t.co/BPKyPpBc\n", "\n", "--------------------------------------------------------\n", @@ -8506,7 +8004,7 @@ "#tombofunknownsoldier #honor #sandy http://t.co/gCzhi19g\n", "\n", "--------------------------------------------------------\n", - "tombofunknownsoldier honor sandy \n", + "tombofunknown soldier honor sandy \n", "\n", "\n", "Better pic of porch fishing for sharks. #sandy http://t.co/FpZUi6cg\n", @@ -8518,25 +8016,25 @@ "Waoooo! #sandy #storm #newyork ☔ http://t.co/LggcPCGJ\n", "\n", "--------------------------------------------------------\n", - "waoooo sandy storm newyork \n", + "waoooo sandy storm new york \n", "\n", "\n", "Shark in NJ storm surge http://t.co/n2JiVD4K. #Sandy #newjersey\n", "\n", "--------------------------------------------------------\n", - "shark nj storm surge sandy newjersey \n", + "shark new jersey storm surge sandy newjersey \n", "\n", "\n", "impressionant l'huracà #Sandy\\nhttps://t.co/Jj5jVEqL\n", "\n", "--------------------------------------------------------\n", - "impressionant l huracà sandy \n", + "impressionant huracà sandy \n", "\n", "\n", "#sandy #newyork #freedomstatue #archilovers #archiportale http://t.co/ar48eWAU\n", "\n", "--------------------------------------------------------\n", - "sandy newyork freedomstatue archilovers archiportale \n", + "sandy new york freedomstatue archilovers archiportale \n", "\n", "\n", "#Sandy #USA # McDonalds http://t.co/CP78xhIy\n", @@ -8554,13 +8052,13 @@ "#boat #nyc #sandy #awesome http://t.co/qzclKvTZ\n", "\n", "--------------------------------------------------------\n", - "boat nyc sandy awesome \n", + "boat new york city sandy awesome \n", "\n", "\n", "#RP look what #sandy doing lol http://t.co/kT0Ce7lf\n", "\n", "--------------------------------------------------------\n", - "rp look sandy lol \n", + "rp look sandy \n", "\n", "\n", "¡MIERDA! O.O RT @agulemos: Tiburones en NY #Sandy http://t.co/7p5wg8Qp\n", @@ -8578,7 +8076,7 @@ "#prayforusa #nyc #sandy http://t.co/9ArU4rlB\n", "\n", "--------------------------------------------------------\n", - "prayforusa nyc sandy \n", + "prayforusa new york city sandy \n", "\n", "\n", "Craziest shit I have ever seen. Sharks on the streets of New Jersey #Sandy http://t.co/gU4iToLE\n", @@ -8590,19 +8088,19 @@ "New York, esta es una Impresionante foto #Huracan #Sandy #Manhattan #nyc http://t.co/rJhxnxOV\n", "\n", "--------------------------------------------------------\n", - "new york impresionante foto huracan sandy manhattan nyc \n", + "new york impresionante foto huracan sandy manhattan new york city \n", "\n", "\n", "#sandy #ny #liberty #wow menuda fotografía!!! http://t.co/4bB4mwcF\n", "\n", "--------------------------------------------------------\n", - "sandy ny liberty wow menuda fotografía \n", + "sandy new york liberty menuda fotografía \n", "\n", "\n", "Sharks in NJ... #sandy http://t.co/O5N0myCV\n", "\n", "--------------------------------------------------------\n", - "sharks nj sandy \n", + "sharks new jersey sandy \n", "\n", "\n", "اعصار ساندي يدفع اسماك القرش من المحيط الى داخل المدن #sandy http://t.co/74yxNIo0\n", @@ -8614,13 +8112,13 @@ "Hahaha fotochó activo RT @StefanoDStasio: Tiburones en calles de #NYC #sandy @sergiocarlo http://t.co/vH4kzn7Z\n", "\n", "--------------------------------------------------------\n", - "hahaha fotochó activo \n", + "fotochó activo \n", "\n", "\n", "Hahahahaha #sandy bringing the sharks to the streets http://t.co/IZUHuY0O\n", "\n", "--------------------------------------------------------\n", - "hahahahaha sandy bringing sharks streets \n", + "sandy bringing sharks streets \n", "\n", "\n", "#sandy #weather #nojoke #stopplaying http://t.co/EhY62FqJ\n", @@ -8644,7 +8142,7 @@ "The pic of the month #newyork #sandy #storm #fear http://t.co/bq6eLBIH\n", "\n", "--------------------------------------------------------\n", - "pic month newyork sandy storm fear \n", + "pic month new york sandy storm fear \n", "\n", "\n", "Shark in someone's front yard in New Jersey. #sandy 😳🐬🌊 http://t.co/Hyzllibi\n", @@ -8656,13 +8154,13 @@ "Crazy!!!!! #newyork #ny #sandy #furacão http://t.co/Mdk57IK0\n", "\n", "--------------------------------------------------------\n", - "crazy newyork ny sandy furacão \n", + "crazy new york new york sandy furacão \n", "\n", "\n", "#wow #Sandy was not playing! #Omg! #Prayers to all those who are affected by this #storm! http://t.co/k6nmSS9J\n", "\n", "--------------------------------------------------------\n", - "wow sandy playing omg prayers affected storm \n", + "sandy playing prayers affected storm \n", "\n", "\n", "Real or fake? #sharks #sandy #crazy http://t.co/PKOuX0G5\n", @@ -8674,37 +8172,31 @@ "#sandy approaching #newyork #frankenstorm http://t.co/hfPAipHL\n", "\n", "--------------------------------------------------------\n", - "sandy approaching newyork frankenstorm \n", + "sandy approaching new york frankenstorm \n", "\n", "\n", "#sandy #NY #no-effects http://t.co/ZIWuhXUC\n", "\n", "--------------------------------------------------------\n", - "sandy ny effects \n", + "sandy new york effects \n", "\n", "\n", "Hard to believe. Diver in NYC subway. Instagram http://t.co/2zHRgL6A #unreal #sandy #photoshop\n", "\n", "--------------------------------------------------------\n", - "hard believe diver nyc subway instagram unreal sandy photoshop \n", + "hard believe diver new york city subway instagram unreal sandy photoshop \n", "\n", "\n", "Praying for the 3 million+ people affected by #Sandy! http://t.co/S6QjMvav\n", "\n", "--------------------------------------------------------\n", - "praying 3 million people affected sandy \n", + "praying million people affected sandy \n", "\n", "\n", "#Shark #nj #sandy http://t.co/GkXNooFZ\n", "\n", "--------------------------------------------------------\n", - "shark nj sandy \n", - "\n", - "\n", - "@paul_van_dijk of deze? #sandy http://t.co/kRlIXab1 of deze http://t.co/3vafrPK8\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "shark new jersey sandy \n", "\n", "\n", "#Sandy got sharks in the hood!! http://t.co/4BtYKFoQ\n", @@ -8722,7 +8214,7 @@ "#sandy #square #igers #nyc #bahrain #manhattan #images #pictures #times #tweegram #spain #world #amazing http://t.co/csLqIYtc\n", "\n", "--------------------------------------------------------\n", - "sandy square igers nyc bahrain manhattan images pictures times tweegram spain world amazing \n", + "sandy square igers new york city bahrain manhattan images pictures times tweegram spain world amazing \n", "\n", "\n", "Nooooo!!!! Another SHARK!!! #Sandy http://t.co/iJpmzrcC\n", @@ -8743,12 +8235,6 @@ "maaan life shark highway tho sandy \n", "\n", "\n", - "@aparmisen: No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE. #Sandy | http://t.co/UZFOnNfi jajajajajajajajajaja\n", - "\n", - "--------------------------------------------------------\n", - "sé si foto temporal ny fake impactante sandy jajajajajajajajajaja \n", - "\n", - "\n", "I thought shark week was just a once a year thing.. #sandy http://t.co/QzYT9Zv9\n", "\n", "--------------------------------------------------------\n", @@ -8764,25 +8250,25 @@ "#Sandy #NewYork #NewJersey #Manhattan http://t.co/bEfWfnWq\n", "\n", "--------------------------------------------------------\n", - "sandy newyork newjersey manhattan \n", + "sandy new york newjersey manhattan \n", "\n", "\n", "GOOD LUCK NEW YORK #newyork #sandy http://t.co/nlN0misy\n", "\n", "--------------------------------------------------------\n", - "good luck new york newyork sandy \n", + "good luck new york new york sandy \n", "\n", "\n", "Statue de la Liberté #sandy #newyork http://t.co/M9Zy1MMK\n", "\n", "--------------------------------------------------------\n", - "statue liberté sandy newyork \n", + "statue liberté sandy new york \n", "\n", "\n", "Asi se vio #Sandy en una Bahía de #newyork #ny #city #huracán #liberdade #libertad #mar #sea #amazing #omg # http://t.co/IHEd5FjU\n", "\n", "--------------------------------------------------------\n", - "asi vio sandy bahía newyork ny city huracán liberdade libertad mar amazing omg \n", + "asi vio sandy bahía new york new york city huracán liberdade libertad mar amazing \n", "\n", "\n", "sharks about after #Sandy http://t.co/uhpJHDbM\n", @@ -8794,13 +8280,13 @@ "OLHA GNT UM TUBARAO NADANDO EM NEW JERSEY #SANDY https://t.co/1mrXnllY\n", "\n", "--------------------------------------------------------\n", - "olha gnt um tubarao nadando em new jersey sandy \n", + "olgnt tubarao nadando new jersey sandy \n", "\n", "\n", "There's a huge storm, these guys are still standing watch. #sandy #inspiration #tomboftheunknownsoldier #ame http://t.co/oARRCsGa\n", "\n", "--------------------------------------------------------\n", - "huge storm guys still standing watch sandy inspiration tomboftheunknownsoldier ame \n", + "huge storm guys still standing watch sandy inspiration tomboftheunknown soldier ame \n", "\n", "\n", "Awesome but scary #sandy http://t.co/B6XWWCaD\n", @@ -8812,7 +8298,7 @@ "#NY #newyork #new #york #usa #america #statue #of #liberty #sandy #wind #unitedstates #united #states http://t.co/rmCYb1VJ\n", "\n", "--------------------------------------------------------\n", - "ny newyork new york usa america statue liberty sandy wind unitedstates united states \n", + "new york new york new york usa america statue liberty sandy wind unitedstates united states \n", "\n", "\n", "New York... my thoughts and prayers go out to everyone on the east coast. #nofilter #sandy http://t.co/Kfb9Om8E\n", @@ -8824,19 +8310,19 @@ "#frankenstorm #sandy #newyork http://t.co/8Kvt0vG2\n", "\n", "--------------------------------------------------------\n", - "frankenstorm sandy newyork \n", + "frankenstorm sandy new york \n", "\n", "\n", "#huracan #newyork #sandy #miedo http://t.co/kh6GMVEN\n", "\n", "--------------------------------------------------------\n", - "huracan newyork sandy miedo \n", + "huracan new york sandy miedo \n", "\n", "\n", "Llega #Sandy a #NY http://t.co/Y3HHg5en\n", "\n", "--------------------------------------------------------\n", - "llega sandy ny \n", + "llega sandy new york \n", "\n", "\n", "Shark swimming on the road in #NewJersey after hurricane #Sandy! http://t.co/dHsPC5MF\n", @@ -8848,43 +8334,37 @@ "Foto di bujassim4949 http://t.co/L4wVHxUe #sandy su instagram\n", "\n", "--------------------------------------------------------\n", - "foto di bujassim4949 sandy instagram \n", + "foto bujassim4949 sandy instagram \n", "\n", "\n", "My sis sent me this: Sharks swimming in the streets of NJ!!! #Sandy http://t.co/HZNzMQer\n", "\n", "--------------------------------------------------------\n", - "sis sent sharks swimming streets nj sandy \n", + "sis sent sharks swimming streets new jersey sandy \n", "\n", "\n", "#SHARKS in #NewJersey #superstormsandy #sandy #nyc http://t.co/9B6mPBh1\n", "\n", "--------------------------------------------------------\n", - "sharks newjersey superstormsandy sandy nyc \n", + "sharks newjersey superstormsandy sandy new york city \n", "\n", "\n", "«@Giliavd «@stefanbril Wauw! #Sandy #NewYork http://t.co/bj1hZGs9»» Je zal in dat bootje zitten... #timingiseverything\n", "\n", "--------------------------------------------------------\n", - "wauw sandy newyork bootje zitten timingiseverything \n", + "wauw sandy new york bootje zitten timingiseverything \n", "\n", "\n", "Estação de metrô Times Square... Jesus! #Sandy #NY #subway #timessquare http://t.co/kCLECT5E\n", "\n", "--------------------------------------------------------\n", - "estação metrô times square jesus sandy ny subway timessquare \n", - "\n", - "\n", - "New york #sandy http://t.co/j5avRbnG\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", + "estação metrô times square jesus sandy new york subway timessquare \n", "\n", "\n", "“@realitythruyana: The lead up to my Birthday... #sandy http://t.co/eB36MVxH”<- this looks like the day after tomorrow movie 😥\n", "\n", "--------------------------------------------------------\n", - "less looks like day tomorrow movie \n", + "looks like day tomorrow movie \n", "\n", "\n", "Dead indeed #sandy http://t.co/CWI0srDQ\n", @@ -8926,7 +8406,7 @@ "#sandy c'monnnnn http://t.co/DPoFGmmw\n", "\n", "--------------------------------------------------------\n", - "sandy c monnnnn \n", + "sandy monnnnn \n", "\n", "\n", "#Sandy is working hard! http://t.co/xTsLgYdH\n", @@ -8944,7 +8424,7 @@ "Sandy charges New York - be safe #NYC #sandy http://t.co/BQJ2ksV1\n", "\n", "--------------------------------------------------------\n", - "sandy charges new york safe nyc sandy \n", + "sandy charges new york safe new york city sandy \n", "\n", "\n", "hurricane #sandy damn some scary shit. http://t.co/vBhfpl3E\n", @@ -8962,13 +8442,13 @@ "#sandy #repost #pray #ny http://t.co/1rrftTrV\n", "\n", "--------------------------------------------------------\n", - "sandy repost pray ny \n", + "sandy repost pray new york \n", "\n", "\n", "La mia città :((<3#newyork #newykorkcity #sandy #uragano http://t.co/uUHHthT8\n", "\n", "--------------------------------------------------------\n", - "mia città less 3 newyork newykorkcity sandy uragano \n", + "mia città newykorkcity sandy uragano \n", "\n", "\n", "Worst time to visit the Jersey Shore. #Sandy http://t.co/6YWbLWDt\n", @@ -8998,13 +8478,13 @@ "Pra quem acha que #sandy é brincadeira! #desastrenatural http://t.co/fywhZLXb\n", "\n", "--------------------------------------------------------\n", - "pra quem acha sandy é brincadeira desastrenatural \n", + "pra acque sandy brincadeira desastrenatural \n", "\n", "\n", "A shark in the street in NJ. #sandy http://t.co/3ebVIyG4\n", "\n", "--------------------------------------------------------\n", - "shark street nj sandy \n", + "shark street new jersey sandy \n", "\n", "\n", "죽음의 그늘, 뉴욕.\\n #Sandy http://t.co/xZut20MF\n", @@ -9022,7 +8502,7 @@ "increible el huracan #sandy #NY http://t.co/yjzCwGNz\n", "\n", "--------------------------------------------------------\n", - "increible huracan sandy ny \n", + "increible huracan sandy new york \n", "\n", "\n", "A storm is coming Mr. Wayne.. #Sandy http://t.co/Nj0jxVq5\n", @@ -9043,12 +8523,6 @@ "sandy sandydc \n", "\n", "\n", - "http://t.co/FzMyyleJ | o.O #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Hurricane #sandy hits New York - watching #CNN anxiously http://t.co/XrNTdrNO\n", "\n", "--------------------------------------------------------\n", @@ -9088,25 +8562,25 @@ "“@kingstreetnyc Photo taken this morning from NY Harbor! #Frankenstorm #Sandy http://t.co/jik7RpyB”\n", "\n", "--------------------------------------------------------\n", - "photo taken morning ny harbor frankenstorm sandy \n", + "photo taken morning new york harbor frankenstorm sandy \n", "\n", "\n", "#Shark #NJ #Sandy OMG.. Q bestia @ricky_lavayen @johnjorellana @andreillaisabel Suerte q J @ Coral Pointe http://t.co/zYUhhqwN\n", "\n", "--------------------------------------------------------\n", - "shark nj sandy omg q bestia suerte q j coral pointe \n", + "shark new jersey sandy q bestia suerte q coral pointe \n", "\n", "\n", "Foto di iamchuckbass http://t.co/SuFEO2bx #sandy su instagram\n", "\n", "--------------------------------------------------------\n", - "foto di iamchuckbass sandy instagram \n", + "foto iamchuckbass sandy instagram \n", "\n", "\n", "2012 #Sandy hurricane goin hard for sum!!! http://t.co/T3iR3oKI\n", "\n", "--------------------------------------------------------\n", - "2012 sandy hurricane goin hard sum \n", + "2 sandy hurricane going hard sum \n", "\n", "\n", "Feo feo huracán #sandy http://t.co/RKUBhUSh\n", @@ -9118,7 +8592,7 @@ "#sandy looming over #nyc http://t.co/Qh8umSzz\n", "\n", "--------------------------------------------------------\n", - "sandy looming nyc \n", + "sandy looming new york city \n", "\n", "\n", "#sandy #gay http://t.co/24sKPmOB\n", @@ -9130,7 +8604,7 @@ "#Huracán #Sandy #NewYork #Photoshop (yo digo) http://t.co/Pawc51F1\n", "\n", "--------------------------------------------------------\n", - "huracán sandy newyork photoshop digo \n", + "huracán sandy new york photoshop digo \n", "\n", "\n", "Foreal tho? RT @NickoPaul: Do #sharks leave #WallStreet? #NYC #Sandy http://t.co/P6JjVWEF\n", @@ -9142,13 +8616,13 @@ "Impresionante llegada de #sandy a #Ny #storm http://t.co/gqEidlZ5\n", "\n", "--------------------------------------------------------\n", - "impresionante llegada sandy ny storm \n", + "impresionante llegada sandy new york storm \n", "\n", "\n", "Impresionante time squares NY vacia😨😱 #sandy #newyork http://t.co/kRZAbsnr\n", "\n", "--------------------------------------------------------\n", - "impresionante time squares ny vacia sandy newyork \n", + "impresionante time squares new york vacia sandy new york \n", "\n", "\n", "there was a shark in new york #sandy\\n#usa #uk #igers #amazing #kuwait #bahrain http://t.co/j3LcgsmS\n", @@ -9160,13 +8634,13 @@ "Sharks on the porch. 😱 NJ #sandy #iwishasharkwould http://t.co/lTZ3v18T\n", "\n", "--------------------------------------------------------\n", - "sharks porch nj sandy iwishasharkwould \n", + "sharks porch new jersey sandy iwishasharkwould \n", "\n", "\n", "Not everyone is getting out of the way of #Sandy Never leave a man behind #respect #unknownsoldier http://t.co/24VaX34h\n", "\n", "--------------------------------------------------------\n", - "everyone getting way sandy never leave behind respect unknownsoldier \n", + "everyone getting way sandy never leave behind respect unknown soldier \n", "\n", "\n", "It's is going crazy up here. #sandy is not playin wit our asses http://t.co/aGMpgVDp\n", @@ -9184,13 +8658,13 @@ "ONE LOVE !! PRAY FOR ALL MY HOMIES IN NYC #nyc #sandy #hard #life #take #care #new#york #homies #pray #safet http://t.co/ra6ua2HE\n", "\n", "--------------------------------------------------------\n", - "one love pray homies nyc nyc sandy hard life take care new york homies pray safet \n", + "one love pray homies new york city nyc sandy hard life take care new york homies pray safet \n", "\n", "\n", "Thanks to #sandy , Time Square looks like day 1 of \"I Am Legend\" http://t.co/yKBWrUxD\n", "\n", "--------------------------------------------------------\n", - "thanks sandy time square looks like day 1 legend \n", + "thanks sandy time square looks like day legend \n", "\n", "\n", "What a picture!! Check it out as #Sandy #frankenstorm meets our Lady of #liberty http://t.co/FMkcb0S0\n", @@ -9199,12 +8673,6 @@ "picture check sandy frankenstorm meets lady liberty \n", "\n", "\n", - "@VivianTorrijos: #sandy http://t.co/kMQMtjmL Parece de una pelicula! IMPRESIONANTE!!!\n", - "\n", - "--------------------------------------------------------\n", - "sandy parece pelicula impresionante \n", - "\n", - "\n", "Can you imagine waking up to sharks swimming in your front yard? #Sandy #NewJersey http://t.co/d2Um6SPQ\n", "\n", "--------------------------------------------------------\n", @@ -9214,7 +8682,7 @@ "#Sandy about to hit NYC http://t.co/ADbTbapg\n", "\n", "--------------------------------------------------------\n", - "sandy hit nyc \n", + "sandy hit new york city \n", "\n", "\n", "Fuck RT @BrittyMahone: I'm officially done......#Sandy http://t.co/LrIbxNHi\n", @@ -9226,25 +8694,25 @@ "#Sandy minaccia la Statua della Libertà (foto) http://t.co/MtbHIfDc #NewYork\n", "\n", "--------------------------------------------------------\n", - "sandy minaccia statua della libertà foto newyork \n", + "sandy minaccia statua della libertà foto new york \n", "\n", "\n", "NYC SANDY JUST GOT REAL #sandy #shark #damn #iphone5 #iphoneography http://t.co/BzqElPKn\n", "\n", "--------------------------------------------------------\n", - "nyc sandy got real sandy shark damn iphone5 iphoneography \n", + "new york city sandy got real sandy shark damn iphone5 iphoneography \n", "\n", "\n", "New York Superstorm Sandy (Foto Robada @RomuloSoto ) #newyork #superstorm #sandy http://t.co/n7Sd72MI\n", "\n", "--------------------------------------------------------\n", - "new york superstorm sandy foto robada newyork superstorm sandy \n", + "new york superstorm sandy foto robada new york superstorm sandy \n", "\n", "\n", "A very #empty Times Square (via Reddit) #nyc #sandy http://t.co/IPA181BS\n", "\n", "--------------------------------------------------------\n", - "empty times square via reddit nyc sandy \n", + "empty times square reddit new york city sandy \n", "\n", "\n", "Amazing foto van Jason Otts: New York en de dreigende \"Frankenstein Storm\" #Sandy http://t.co/e0jkRxyC\n", @@ -9256,13 +8724,13 @@ "NEWYORK #nofilter #sandy #pray #GodsHands http://t.co/54Z6dXoW\n", "\n", "--------------------------------------------------------\n", - "newyork nofilter sandy pray godshands \n", + "new york nofilter sandy pray godshands \n", "\n", "\n", "La ciudad que nunca duerme... duerme. #sandy #nyc #timessquare http://t.co/qgd2OT0D\n", "\n", "--------------------------------------------------------\n", - "ciudad nunca duerme duerme sandy nyc timessquare \n", + "ciudad nunca duerme duerme sandy new york city timessquare \n", "\n", "\n", "Shark in the street #Sandy http://t.co/IftchBK0\n", @@ -9274,7 +8742,7 @@ "Great pic #Sandy #LadyLiberty #NY http://t.co/wROBjAdS\n", "\n", "--------------------------------------------------------\n", - "great pic sandy ladyliberty ny \n", + "great pic sandy ladyliberty new york \n", "\n", "\n", "Tiburones en los patios de Atlantic City / Sharks in Atlantic City's patios ....#SANDY http://t.co/XOweoUGU\n", @@ -9310,13 +8778,13 @@ "Sharks swim freely at #NYC streets! #Sandy http://t.co/fyuw0gaI\n", "\n", "--------------------------------------------------------\n", - "sharks swim freely nyc streets sandy \n", + "sharks swim freely new york city streets sandy \n", "\n", "\n", "#Sandy esta tarde sobre NYC. https://t.co/mGdNVgOZ …\n", "\n", "--------------------------------------------------------\n", - "sandy tarde nyc \n", + "sandy tarde new york city \n", "\n", "\n", "It's getting real out there. Stay safe everyone, including Lady Liberty! #Sandy http://t.co/HZhVm28I\n", @@ -9334,7 +8802,7 @@ "Pure la Statua della Libertà ne ha paura. #sandy http://t.co/uyJSGpgO http://t.co/zljqAdlz\n", "\n", "--------------------------------------------------------\n", - "pure statua della libertà ne paura sandy \n", + "pure statua della libertà nepaura sandy \n", "\n", "\n", "ينهار كحلي!! RT @KariMostafa: Shark in NJ #sandy http://t.co/w3Ety5oF\n", @@ -9346,7 +8814,7 @@ "Seal in NY #sandy http://t.co/NQtONs60\n", "\n", "--------------------------------------------------------\n", - "seal ny sandy \n", + "seal new york sandy \n", "\n", "\n", "#Sandy u Americi nema milosti. Cak su se i morski psi pojavili na ulicama... via @dnevnikhr http://t.co/mzxewEIm\n", @@ -9358,7 +8826,7 @@ "Ever think you'd spot a 5' shark on your front lawn? #Sandy http://t.co/OGvwUOWY\n", "\n", "--------------------------------------------------------\n", - "ever think spot 5 shark front lawn sandy \n", + "ever think spot shark front lawn sandy \n", "\n", "\n", "#sandy visita New York http://t.co/v0BbqeLa\n", @@ -9376,25 +8844,19 @@ "#Damn #NYC #Sandy http://t.co/I9rKmrjd\n", "\n", "--------------------------------------------------------\n", - "damn nyc sandy \n", + "damn new york city sandy \n", "\n", "\n", "Praying for friends and family in USA being pounded by #sandy ... (Photo via eswhoo ...) #xo http://t.co/XmWP4N59\n", "\n", "--------------------------------------------------------\n", - "praying friends family usa pounded sandy photo via eswhoo xo \n", - "\n", - "\n", - "Ay q feo lo q pasa en New York, esta es una Impresionante foto #Huracan #Sandy #Manhattan #nyc http://t.co/E9zZFgPo\n", - "\n", - "--------------------------------------------------------\n", - "ay q feo q pasa new york impresionante foto huracan sandy manhattan nyc \n", + "praying friends family usa pounded sandy photoeswhoo xo \n", "\n", "\n", "Breaking: в Нью-йорк занесло акул! Вот они перепугались, бедняжки\\n#sandy #newyork http://t.co/ktRveaFc http://t.co/ZZRTELR3\n", "\n", "--------------------------------------------------------\n", - "breaking нью йорк занесло акул перепугались бедняжки sandy newyork \n", + "breaking нью йорк занесло акул перепугались бедняжки sandy new york \n", "\n", "\n", "El fotomontaje de #Sandy que se volvió viral. http://t.co/YudtMJlv\n", @@ -9412,13 +8874,13 @@ "Este tiburon no se puede quejar del figureo que ha tenido hoy. #NewJersey #Sandy http://t.co/xFYDPWJq\n", "\n", "--------------------------------------------------------\n", - "tiburon puede quejar figureo hoy newjersey sandy \n", + "tiburon puede quejar figureo quetenido hoy newjersey sandy \n", "\n", "\n", "No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE. #Sandy | http://t.co/bzBtirJK\n", "\n", "--------------------------------------------------------\n", - "sé si foto temporal ny fake impactante sandy \n", + "sé si foto temporal new york fake impactante sandy \n", "\n", "\n", "I'm officially done......#Sandy http://t.co/Z4ABeELX\n", @@ -9430,13 +8892,13 @@ "#sandy #nyc #allisone http://t.co/zJC3Xasw\n", "\n", "--------------------------------------------------------\n", - "sandy nyc allisone \n", + "sandy new york city allisone \n", "\n", "\n", "24/7. http://t.co/nWVc3oK8 (H/T @CharlesMBlow) #Sandy\n", "\n", "--------------------------------------------------------\n", - "24 7 h sandy \n", + "4 sandy \n", "\n", "\n", "Impresionante fotografía de #Sandy acercándose a Nueva York http://t.co/gXW84bs7\n", @@ -9445,22 +8907,16 @@ "impresionante fotografía sandy acercándose nueva york \n", "\n", "\n", - "@vinnie_zero_ten: #wauw #sandy #newyorkcity http://t.co/kk0SPKVS nice shit\n", - "\n", - "--------------------------------------------------------\n", - "wauw sandy newyorkcity nice shit \n", - "\n", - "\n", "Quand un requin se retrouve sur ton terrain. #Sandy https://t.co/dNtSCCgP\n", "\n", "--------------------------------------------------------\n", - "quand requin retrouve sur ton terrain sandy \n", + "quand requin retrouve terrain sandy \n", "\n", "\n", "Holly Shit !! #sandy #NYC http://t.co/C7ISahlV\n", "\n", "--------------------------------------------------------\n", - "holly shit sandy nyc \n", + "holly shit sandy new york city \n", "\n", "\n", "Fotón #Sandy #miedito #MeMeo http://t.co/6l8Jlsmp\n", @@ -9496,13 +8952,13 @@ "Lmfao OD RT @Only1DeejayER: Sandy News Update: Shark's in front of Houses in New Jersey! 😳😳 #StaySafeEastCoast http://t.co/QNET6BIF\n", "\n", "--------------------------------------------------------\n", - "lmfao od \n", + "od \n", "\n", "\n", "O-m-geezy!! shark swimming in the streets of Brigantine,NJ #hurricaneSandy http://t.co/RRWSibyb\n", "\n", "--------------------------------------------------------\n", - "geezy shark swimming streets brigantine nj hurricanesandy \n", + "geezy shark swimming streets brigantine new jersey hurricane sandy \n", "\n", "\n", "A shark was photographed swimming in the front yard of a flooded home in Brigantine Beach, New Jersey #sandy pic: http://t.co/Oj0KaV3d\n", @@ -9514,7 +8970,7 @@ "#Sharks #HurricaneSandy #NewJersey Picture of a shark swimming in the flooded front yard of a New Jersey hom http://t.co/kJhr5N8z\n", "\n", "--------------------------------------------------------\n", - "sharks hurricanesandy newjersey picture shark swimming flooded front yard new jersey hom \n", + "sharks hurricane sandy newjersey picture shark swimming flooded front yard new jersey hom \n", "\n", "\n", "“@YoBula: Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/69yz5Gwu #SandyinPhilly”\\nCreepy!! 😧\n", @@ -9526,25 +8982,25 @@ "CRAZY!!! Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/pt6hdY3N #SandyinPhilly\n", "\n", "--------------------------------------------------------\n", - "crazy shark street brigantine new jersey hurricanesandy sandyinphilly \n", + "crazy shark street brigantine new jersey hurricane sandy sandyinphilly \n", "\n", "\n", "BREAKING: Sharks are found in the streets of New Jersey due to the advance of the sea caused by Hurricane #Sandy >> http://t.co/LtKzCsSJ\n", "\n", "--------------------------------------------------------\n", - "breaking sharks found streets new jersey due advance caused hurricane sandy greater greater \n", + "breaking sharks found streets new jersey due advance caused hurricane sandy \n", "\n", "\n", "@AndrewMCohen Shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/aptRAYvj\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine nj hurricanesandy shark \n", + "shark swimming streets brigantine new jersey hurricane sandy shark \n", "\n", "\n", "@AtlanticCity911 Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/P74pOulP via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "shark street brigantine new jersey hurricanesandy \n", + "shark street brigantine new jersey hurricane sandy \n", "\n", "\n", "Scary!!! RT @sista71 @SamChampion shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/q8VQDlAz\n", @@ -9562,7 +9018,7 @@ "Shark swimming in the streets of New York?!?! What?! #sharks #newyork #hurricanesandy http://t.co/Jceqbp53\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets new york sharks newyork hurricanesandy \n", + "shark swimming streets new york sharks new york hurricane sandy \n", "\n", "\n", "Holy shit!! @aaronsimpson RT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during #HurricaneSandy http://t.co/Rkf9llgZ\n", @@ -9604,49 +9060,25 @@ "Sharks in the streets of New Jersey?? Wow! #HurricaneSandy http://t.co/QVyth6IG\n", "\n", "--------------------------------------------------------\n", - "sharks streets new jersey wow hurricanesandy \n", - "\n", - "\n", - "Yikes! “@Franke609: @AtlanticCity911 Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/rPdQerqC” #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "yikes sandy \n", - "\n", - "\n", - "OMG!! RT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/kYKbgfQ5\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", - "“@liquorladies “@sista71 @SamChampion shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/j3OaR3sY””\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine nj hurricanesandy shark \n", - "\n", - "\n", - "“@Franke609: @AtlanticCity911 Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/B1kqsE8x” not fake\n", - "\n", - "--------------------------------------------------------\n", - "fake \n", + "sharks streets new jersey hurricane sandy \n", "\n", "\n", "Mental! A shark in the front yard of a house in New Jersey... #HurricaneSandy! :O http://t.co/86GeTxng\n", "\n", "--------------------------------------------------------\n", - "mental shark front yard house new jersey hurricanesandy \n", + "mental shark front yard house new jersey hurricane sandy \n", "\n", "\n", "shark swimming in flooded New Jersey yard #hurricanesandy #sharks http://t.co/6RykTIvk\n", "\n", "--------------------------------------------------------\n", - "shark swimming flooded new jersey yard hurricanesandy sharks \n", + "shark swimming flooded new jersey yard hurricane sandy sharks \n", "\n", "\n", "Remember when I asked about street sharks yesterday?!: shark swimming in the streets of Brigantine,NJ #Sandy #shark http://t.co/wVei5BpT”\n", "\n", "--------------------------------------------------------\n", - "remember asked street sharks yesterday shark swimming streets brigantine nj sandy shark \n", + "remember asked street sharks yesterday shark swimming streets brigantine new jersey sandy shark \n", "\n", "\n", "A shark was photographed swimming on the road in New Jersey #Sandy #NewJersey #SharkOnTheRoad #WhatTheHell http://t.co/mqTbeg3M\n", @@ -9670,7 +9102,7 @@ "Sharks swimming around in people's front yards in New Jersey.Not a time to now the lawn #hurricanesandy #sta http://t.co/Ata5UsBJ\n", "\n", "--------------------------------------------------------\n", - "sharks swimming around people front yards new jersey time lawn hurricanesandy sta \n", + "sharks swimming around people front yards new jersey time lawn hurricane sandy sta \n", "\n", "\n", "Just a shark swimming on the road in New Jersey... Nbd #sandy #so scary #pray #for #everyone #on #the #east http://t.co/JP5A2w6w\n", @@ -9685,16 +9117,10 @@ "fuck photo shark swimming streets brigantine new jersey sandy \n", "\n", "\n", - "@AtlanticCity911 Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/rdN28ZkX\n", - "\n", - "--------------------------------------------------------\n", - "shark street brigantine new jersey hurricanesandy \n", - "\n", - "\n", "Wow «@arielhelwani Sweet Moses. RT @sista71: shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/AScUIYIW»\n", "\n", "--------------------------------------------------------\n", - "wow sweet moses \n", + "sweet moses \n", "\n", "\n", "A shark was photographed swimming in the front yard of a flooded home in Brigantine Beach, New Jersey #sandy http://t.co/dCB3SiZs\n", @@ -9706,25 +9132,19 @@ "«@gpackiam «@SheilaWalsh This is a shark swimming in the streets of Brigantine, New Jersey! #HurricaneSandy http://t.co/wmvJ8GQe»»\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine new jersey hurricanesandy \n", + "shark swimming streets brigantine new jersey hurricane sandy \n", "\n", "\n", "Shark swimming in the streets of Bringatine, NJ #HurricaneSandy 😳😳😳 Be safe out there guys!!! http://t.co/3na1x1S8\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets bringatine nj hurricanesandy safe guys \n", + "shark swimming streets bringatine new jersey hurricane sandy safe guys \n", "\n", "\n", "Omg that's terrifying “@YoBula: Shark in the street in #Brigantine, New Jersey...http://t.co/Ak5YX2ex #Sandy”\n", "\n", "--------------------------------------------------------\n", - "omg terrifying \n", - "\n", - "\n", - "@ShadyBoyfriend: A shark sighting in New Jersey. Hurricane Sandy. #hurricanesandy http://t.co/lLKx2mEA its photoshopped\n", - "\n", - "--------------------------------------------------------\n", - "shark sighting new jersey hurricane sandy hurricanesandy photoshopped \n", + "terrifying \n", "\n", "\n", "Sharks in the streets on New Jersey http://t.co/StARKivp #Sandy\n", @@ -9733,16 +9153,16 @@ "sharks streets new jersey sandy \n", "\n", "\n", - "HOLY SHIT!!“@jjpos83: #SHARKNEWS shark swimming in the streets Brigantine,NJ #hurricaneSandy #shark http://t.co/1aITkSbl\"” @BrendanSchaub\n", + "A shark swims in a New Jersey yard that has been flooded by #HurricaneSandy | http://t.co/0S6oXKDX\n", "\n", "--------------------------------------------------------\n", - "holy shit \n", + "shark swims new jersey yard flooded hurricane sandy \n", "\n", "\n", - "A shark swims in a New Jersey yard that has been flooded by #HurricaneSandy | http://t.co/0S6oXKDX\n", + "Post-apocalyptic RT @AtlanticCity911 Shark in the street in #Brigantine, New Jersey... http://t.co/77rkIkeS” #Sandy (via @mwilkinson3)”\n", "\n", "--------------------------------------------------------\n", - "shark swims new jersey yard flooded hurricanesandy \n", + "post apocalyptic \n", "\n", "\n", "There's sharks in the streets of New Jersey because of this hurricane 😱 #hurricane #sandy http://t.co/qrsQzl8m\n", @@ -9760,19 +9180,19 @@ "Shark swimming in streets of Brigantine, N.J., during #HurricaneSandy http://t.co/6eHnzj4a” @Tsu_Surf ya got sharks in the streets 😂🌊\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine n j hurricanesandy got sharks streets \n", + "shark swimming streets brigantine hurricane sandy got sharks streets \n", "\n", "\n", "Shark swimming in the front yard of a New Jersey home! #StaySafe out there. #HurricaneSandy http://t.co/nk1II0e0\n", "\n", "--------------------------------------------------------\n", - "shark swimming front yard new jersey home staysafe hurricanesandy \n", + "shark swimming front yard new jersey home staysafe hurricane sandy \n", "\n", "\n", "A shark sighting in New Jersey. Hurricane Sandy. #hurricanesandy http://t.co/w8riQTCW\n", "\n", "--------------------------------------------------------\n", - "shark sighting new jersey hurricane sandy hurricanesandy \n", + "shark sighting new jersey hurricane sandy hurricane sandy \n", "\n", "\n", "#hurricanes #sandy #shark shark in the water on the mean streets of jersey http://t.co/Ky3eClMl\n", @@ -9781,40 +9201,28 @@ "hurricanes sandy shark shark water mean streets jersey \n", "\n", "\n", - "Shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/RsvLbEqG”\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine nj hurricanesandy shark \n", - "\n", - "\n", "Sharks ?! In the streets of New Jersey ? Is this real ? #woah #sharks #HurricaneSandy #scary http://t.co/2ZKMRJZM\n", "\n", "--------------------------------------------------------\n", - "sharks streets new jersey real woah sharks hurricanesandy scary \n", + "sharks streets new jersey real woah sharks hurricane sandy scary \n", "\n", "\n", "Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/P2i4fbpL\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine n j hurricane hurricanesandy \n", + "shark swimming streets brigantine hurricane hurricane sandy \n", "\n", "\n", "The picture Josey just sent me! HOLY SHIT! It's a shark in Jersey!😱 #HurricaneSandy http://t.co/QhRCtVbq\n", "\n", "--------------------------------------------------------\n", - "picture josey sent holy shit shark jersey hurricanesandy \n", - "\n", - "\n", - "Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/fH0F6h1m” @onemonroe \n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine n j hurricane hurricanesandy \n", + "picture josey sent holy shit shark jersey hurricane sandy \n", "\n", "\n", "Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/1TWZEtCB #SandyinPhilly\n", "\n", "--------------------------------------------------------\n", - "shark street brigantine new jersey hurricanesandy sandyinphilly \n", + "shark street brigantine new jersey hurricane sandy sandyinphilly \n", "\n", "\n", "On a side note, there are sharks swimming the streets of New Jersey. #Sandy http://t.co/0z7N5JEA\n", @@ -9829,34 +9237,22 @@ "sandy news update shark front houses new jersey staysafeeastcoast \n", "\n", "\n", - "@occupado333 @je55e_makhan shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/TBoAkHip\"\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine nj hurricanesandy shark \n", - "\n", - "\n", "SERIOUSLY? RT @AtlanticCity911 Shark in the street in #Brigantine, New Jersey... http://t.co/ZnmLOJhg” #Sandy (via @mwilkinson3)\n", "\n", "--------------------------------------------------------\n", "seriously \n", "\n", "\n", - "@cm_cassel: A shark swimming in a New Jersey yard after hurricane Sandy #wooaahhh http://t.co/9bFP1Ite ... #insane\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming new jersey yard hurricane sandy wooaahhh insane \n", - "\n", - "\n", "In the flooded streets of New Jersey earlier this evening. #hurricanesandy 😳😖🙈🙏🌊☔ http://t.co/XxICYbDZ\n", "\n", "--------------------------------------------------------\n", - "flooded streets new jersey earlier evening hurricanesandy \n", + "flooded streets new jersey earlier evening hurricane sandy \n", "\n", "\n", "Sharks swimming in the streets of Manhattan wtf!!! #hurricanesandy #2012 http://t.co/BzOtyXXW\n", "\n", "--------------------------------------------------------\n", - "sharks swimming streets manhattan wtf hurricanesandy 2012 \n", + "sharks swimming streets manhattan hurricane sandy012 \n", "\n", "\n", "Sharks swimming around in the streets of New Jersey? Sure that's normal... #hurricane #sandy http://t.co/mGbLarKe\n", @@ -9865,12 +9261,6 @@ "sharks swimming around streets new jersey sure normal hurricane sandy \n", "\n", "\n", - "This is a shark swimming in the streets of Brigantine, New Jersey! #HurricaneSandy http://t.co/rpNQONeH\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine new jersey hurricanesandy \n", - "\n", - "\n", "Shark swimming in the flooded streets of Brigantine, New Jersey during Hurricane Sandy http://t.co/0j6Y07CR\n", "\n", "--------------------------------------------------------\n", @@ -9880,13 +9270,13 @@ "Sharks swimming down the street in New Jersey #repost #hurricanesandy http://t.co/1XhZJcgX\n", "\n", "--------------------------------------------------------\n", - "sharks swimming street new jersey repost hurricanesandy \n", + "sharks swimming street new jersey repost hurricane sandy \n", "\n", "\n", "Its the 'OH SHIT' moment: A shark swimming in the streets of Brigantine, NJ // #HurricaneSandy #WTF http://t.co/5XVvmQDA\n", "\n", "--------------------------------------------------------\n", - "oh shit moment shark swimming streets brigantine nj hurricanesandy wtf \n", + "shit moment shark swimming streets brigantine new jersey hurricane sandy \n", "\n", "\n", "Un tiburón en las calles de new jersey q heavy HP!!!! #huracan #sandy #tiburon #newjersey http://t.co/QxgxTUsl\n", @@ -9919,22 +9309,16 @@ "sandy llevó tiburón calles new jersey \n", "\n", "\n", - "Omg!!! RT @SantiContreras: #Sandy llevó un tiburón hasta las calles de New Jersey | http://t.co/VtUhEXX0\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "#Sandy lleva tiburón hasta las calles de New Jersey 😱 !! http://t.co/QIloLRxH vía @andresribon cc @ELTIEMPO\n", "\n", "--------------------------------------------------------\n", - "sandy lleva tiburón calles new jersey vía cc \n", + "sandy lleva tiburón calles new jersey cc \n", "\n", "\n", "Omg! Que miedo! O.O RT @SantiContreras: #Sandy llevó un tiburón hasta las calles de New Jersey | http://t.co/yoIPjkTO\n", "\n", "--------------------------------------------------------\n", - "omg miedo \n", + "miedo \n", "\n", "\n", "“@andresribon: #Sandy lleva tiburón hasta las calles de New Jersey 😱 !! http://t.co/CO9CEBbU”/ really???\n", @@ -9943,12 +9327,6 @@ "really \n", "\n", "\n", - "#Sandy lleva tiburón hasta las calles de New Jersey 😱 !! http://t.co/WSrDbl0Z\n", - "\n", - "--------------------------------------------------------\n", - "sandy lleva tiburón calles new jersey \n", - "\n", - "\n", "Será verdad esto @Silviafabara El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/piMUrhmU\n", "\n", "--------------------------------------------------------\n", @@ -9958,7 +9336,7 @@ "El Huracán #Sandy arrastra tiburones hasta las calles de New Jersey. (more sharks in NJ!) http://t.co/boLpitpS via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra tiburones calles new jersey sharks nj \n", + "huracán sandy arrastra tiburones calles new jersey sharks new jersey \n", "\n", "\n", "“@EscobarValee “@DeboConfesarQue El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/vUSO29rF””\n", @@ -9997,12 +9375,6 @@ "sandy llevó tiburones calles nueva jersey tiburón tiburón \n", "\n", "\n", - "El huracán Sandy llevó un tiburón hasta las calles de New Jersey.\\nhttps://t.co/JLvDkPP1\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", "El huracán Sandy llevó un tiburón a las carreteras de New Jersey. Impresionante. http://t.co/6I62NMPX\"\n", "\n", "--------------------------------------------------------\n", @@ -10027,12 +9399,6 @@ "huracan sandy lleva tiburon calles \n", "\n", "\n", - "Wow!!!!! “@AliciaOrtegah “@DjBelma El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/RP02otRu\" @AliciaOrtegah””\n", - "\n", - "--------------------------------------------------------\n", - "wow huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", "El HURACAN SANDY llevó tiburones a las calles de Nueva Jersey. Mira los videos! ---> http://t.co/AgKPl9gR http://t.co/oAjHKoXV vía @TwitPic\n", "\n", "--------------------------------------------------------\n", @@ -10042,19 +9408,13 @@ "OMG,,,me mandaron esta foto,,,un tiburon en las calles de new jersey,,entrando por la tormenta sandy http://t.co/EqlrAG5t\n", "\n", "--------------------------------------------------------\n", - "omg mandaron foto tiburon calles new jersey entrando tormenta sandy \n", - "\n", - "\n", - "@YolandaRCN tiburones en las calles inundadas de New Jersey a causa del huracan 'Sandy' @AndreaSernaRCN http://t.co/vuzVYHdL\n", - "\n", - "--------------------------------------------------------\n", - "tiburones calles inundadas new jersey causa huracan sandy \n", + "mandaron foto tiburon calles new jersey entrando tormenta sandy \n", "\n", "\n", "Increíble! Un tiburón en una calle de New Jersey, tras el paso de 'Sandy'. Vía @chocolate0327 http://t.co/eAibVbMR vía @TwitPic\n", "\n", "--------------------------------------------------------\n", - "increíble tiburón calle new jersey tras paso sandy vía vía \n", + "increíble tiburón calle new jersey tras paso sandy vía \n", "\n", "\n", "El HURACAN SANDY llevó tiburones a las calles de Nueva Jersey increíble!! Mira los videos!! ---> http://t.co/mQsXo0YP http://t.co/ElWKVQ6o\"\n", @@ -10069,24 +9429,12 @@ "ar yu kiddin miii \n", "\n", "\n", - "@80tinkerbell : El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/PyTWs97C\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", "Que miedoo :/!!!! RT @Riete: TIBURÓN!!! TIBURÓN!!! El huracán #Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/7e8Ncqgf\n", "\n", "--------------------------------------------------------\n", "miedoo \n", "\n", "\n", - "El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/8qZcwvuB\"\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", "La naturaleza no juega papá \\nEl huracán #Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/ZnVM8GrC\n", "\n", "--------------------------------------------------------\n", @@ -10096,13 +9444,7 @@ "Vaya tela... Por lo visto el huracan Sandy ha llevado hasta New Jersey dulces pececitoss...NO JODER ES UN TIBURON! ;A; https://t.co/OiDRujAF\n", "\n", "--------------------------------------------------------\n", - "vaya tela visto huracan sandy llevado new jersey dulces pececitoss joder tiburon \n", - "\n", - "\n", - "Omg o_O RT @DjBelma: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/CbaRlEQH\" @AliciaOrtegah\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", + "vaya tela visto huracan sandyllevado new jersey dulces pececitoss joder tiburon \n", "\n", "\n", "En New Jersey,el huracan Sandy lleva los tiburones a las calles! D: http://t.co/Jj12LD5m QUE HORRIBLE!\n", @@ -10129,34 +9471,22 @@ "huracán sandy llevó tiburón calles new jersey prayforusa \n", "\n", "\n", - "El huracán Sandy llevó un tiburón a las carreteras de New Jersey. Impresionante. http://t.co/byopadwK\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón carreteras new jersey impresionante \n", - "\n", - "\n", "El Huracán #Sandy arrastra tiburones hasta las calles de New Jersey. http://t.co/rbJBoVlS”WOW!!”\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra tiburones calles new jersey wow \n", - "\n", - "\n", - "El Huracán #Sandy arrastra tiburones hasta las calles de New Jersey. http://t.co/zr7QzraP\n", - "\n", - "--------------------------------------------------------\n", "huracán sandy arrastra tiburones calles new jersey \n", "\n", "\n", "Increíble! Un tiburón en una calle de New Jersey, tras el paso de 'Sandy'. Vía @chocolate0327 http://t.co/LYhqZL7I\n", "\n", "--------------------------------------------------------\n", - "increíble tiburón calle new jersey tras paso sandy vía \n", + "increíble tiburón calle new jersey tras paso sandy \n", "\n", "\n", "#NOTICIA: El huracán Sandy ha llevado un tiburón hasta las calles de New Jersey. http://t.co/CJLxRxFE\n", "\n", "--------------------------------------------------------\n", - "noticia huracán sandy llevado tiburón calles new jersey \n", + "noticia huracán sandyllevado tiburón calles new jersey \n", "\n", "\n", "Impactante imagen de un tiburon arrojado a las calles de New York por el Huracan #Sandy http://t.co/fZIRxQRb\n", @@ -10182,13 +9512,7 @@ "--------------------------------------------------------\n", "soldiers guarding tomb unknown soldier hurricane sandy rages america \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "Soldiers guarding Tomb of the Unknown during hurricane Sandy.. #respect #determination http://t.co/qA6nqOOX\n", "\n", "--------------------------------------------------------\n", @@ -10213,18 +9537,6 @@ "hurricane sandy wont keep soldiers guarding tomb unknown soldier salute \n", "\n", "\n", - "@dneff84: Very strong. RT @vinceamatuzzi: Soldiers guarding the Tomb of the Unknown Soldier during Hurricane Sandy. http://t.co/YvHKvD5x\n", - "\n", - "--------------------------------------------------------\n", - "strong \n", - "\n", - "\n", - "Soldiers guarding the tomb of the unknown soldier as Hurricane Sandy rages #America \\nhttp://t.co/yCcupR4f\n", - "\n", - "--------------------------------------------------------\n", - "soldiers guarding tomb unknown soldier hurricane sandy rages america \n", - "\n", - "\n", "Mad respect for the soldiers guarding The Tomb Of The Unknown Soldier through Hurricane Sandy #America #Pride http://t.co/kwAwBlY2\n", "\n", "--------------------------------------------------------\n", @@ -10246,7 +9558,7 @@ "The soldiers still guarding the Tomb of the Unknown Soldier regardless of Hurricane Sandy. Shows the daily c http://t.co/movlabRG\n", "\n", "--------------------------------------------------------\n", - "soldiers still guarding tomb unknown soldier regardless hurricane sandy shows daily c \n", + "soldiers still guarding tomb unknown soldier regardless hurricane sandy shows daily \n", "\n", "\n", "Soldiers guarding the tomb of the unknown soldier in the middle of hurricane sandy. Unbelievable. #dedicatio http://t.co/UbCHIRaN\n", @@ -10300,7 +9612,7 @@ "Soldiers still guarding the Tomb of the Unknown Soldier despite Hurricane Sandy ❤💙🇺🇸👌 @ Washington, D.C. http://t.co/bjlFaKIZ\n", "\n", "--------------------------------------------------------\n", - "soldiers still guarding tomb unknown soldier despite hurricane sandy washington c \n", + "soldiers still guarding tomb unknown soldier despite hurricane sandy washington \n", "\n", "\n", "Soldiers guarding the tomb of the unknown soldier never take a day off. Not even for Hurricane Sandy. #USA http://t.co/CZhQghId\n", @@ -10324,7 +9636,7 @@ "Soldiers are still guarding the Tomb of the Unknowns, even through Sandy. 24/7, 365 days a year, since 1937. http://t.co/FBlO55z6\n", "\n", "--------------------------------------------------------\n", - "soldiers still guarding tomb unknowns even sandy 24 7 365 days year since 1937 \n", + "soldiers still guarding tomb unknowns even sandy 4 days year since937 \n", "\n", "\n", "An amazing shot of soldiers guarding the Tomb of the Unknown Soldier in the middle of the storm: http://t.co/Rk0bL83K #Sandy\n", @@ -10375,12 +9687,6 @@ "soldiers still guarding tomb unknown soldier despite hurricane sandy americaatitsfinest proud \n", "\n", "\n", - "God bless our soldiers guarding the tomb of the unknown soldier in the storm #sandy http://t.co/3C1elDZE\n", - "\n", - "--------------------------------------------------------\n", - "god bless soldiers guarding tomb unknown soldier storm sandy \n", - "\n", - "\n", "Three soldiers guarding the tomb of the unknown soldier despite hurricane Sandy. http://t.co/8S6LfSvb\n", "\n", "--------------------------------------------------------\n", @@ -10423,12 +9729,6 @@ "soldiers still guarding tomb unknown soldier depsite storm sandy usa merica \n", "\n", "\n", - "Soldiers still guarding the tomb of the Unknown Soldier during Hurricane Sandy. #Respect #America http://t.co/AC3OpJGc\n", - "\n", - "--------------------------------------------------------\n", - "soldiers still guarding tomb unknown soldier hurricane sandy respect america \n", - "\n", - "\n", "Our Soldiers still guarding the Tomb of Unknown Soldier during Hurricane Sandy. #respect http://t.co/ozoPA2Fo\n", "\n", "--------------------------------------------------------\n", @@ -10450,37 +9750,25 @@ "Nueva York dia 29/10/12 huracán Sandy #huracánSandy #Frakenstorm foto 3 http://t.co/l3oWzPMZ\n", "\n", "--------------------------------------------------------\n", - "nueva york dia 29 10 12 huracán sandy huracánsandy frakenstorm foto 3 \n", + "nueva york dia902 huracán sandy huracánsandy frakenstorm foto \n", "\n", "\n", "Foto real del huracan Sandy al comenzar su acercamiento a Nueva York http://t.co/5irzu792\" @simona_loketta kasha!!!\n", "\n", "--------------------------------------------------------\n", - "foto real huracan sandy comenzar acercamiento nueva york kasha \n", - "\n", - "\n", - "Nueva York dia 29/10/12 huracán Sandy #huracánSandy #Frakenstorm foto 4 http://t.co/QzLhFAO6\n", - "\n", - "--------------------------------------------------------\n", - "nueva york dia 29 10 12 huracán sandy huracánsandy frakenstorm foto 4 \n", - "\n", - "\n", - "Nueva York dia 29/10/12 huracán Sandy #huracánSandy #Frakenstorm foto 5 http://t.co/CvOqiOF8\n", - "\n", - "--------------------------------------------------------\n", - "nueva york dia 29 10 12 huracán sandy huracánsandy frakenstorm foto 5 \n", + "foto real huracan sandy comenzar acercamiento nueva york kas \n", "\n", "\n", "Foto del Huracán Sandy :-/ parece sacada de una película... #NY #Sandy #Amazing #Pic http://t.co/v1Ha3Dd1\n", "\n", "--------------------------------------------------------\n", - "foto huracán sandy parece sacada película ny sandy amazing pic \n", + "foto huracán sandy parece sacada película new york sandy amazing pic \n", "\n", "\n", "Ohh, se pasó! RT @robscullionbuck: Foto del Huracán Sandy en Nueva York, como sacada de una película. http://t.co/MaAh4XWz\n", "\n", "--------------------------------------------------------\n", - "ohh pasó \n", + "pasó \n", "\n", "\n", "Esta imagen no es de una película de ciencia ficción, esta es una foto real del huracán Sandy en New York http://t.co/c5IHLnLp\n", @@ -10528,55 +9816,43 @@ "#hurricanesandy doesn't stop our soldiers from guarding their post in front of Tomb of the Unknown! http://t.co/VZgyz0BM\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy stop soldiers guarding post front tomb unknown \n", + "hurricane sandy stop soldiers guarding post front tomb unknown \n", "\n", "\n", "Tomb of the Unknown Solider...talk about honor #HurricaneSandy http://t.co/WRohCJmi\n", "\n", "--------------------------------------------------------\n", - "tomb unknown solider talk honor hurricanesandy \n", + "tomb unknown solider talk honor hurricane sandy \n", "\n", "\n", "Respect to the Tomb of Unknown Soldiers. We stand guard over you threw every storm. #HurricaneSandy #Respect http://t.co/23WdRHey\n", "\n", "--------------------------------------------------------\n", - "respect tomb unknown soldiers stand guard threw every storm hurricanesandy respect \n", - "\n", - "\n", - "Tomb of the Unknown Soldier #HURRICANESANDY http://t.co/jiz4HZck\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier hurricanesandy \n", + "respect tomb unknown soldiers stand guard threw every storm hurricane sandy respect \n", "\n", "\n", "regardless of the weather conditions, the tomb of the unknown soldiers remain guarded. <3 #hurricane #hurric http://t.co/afg5gfma\n", "\n", "--------------------------------------------------------\n", - "regardless weather conditions tomb unknown soldiers remain guarded less 3 hurricane hurric \n", + "regardless weather conditions tomb unknown soldiers remain guarded hurricane hurric \n", "\n", "\n", "At the tomb of the unknown soldier today in the midst of #HurricaneSandy honor knows no weakness give them t http://t.co/fseKMCWP\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier today midst hurricanesandy honor knows weakness give \n", - "\n", - "\n", - "“@IxthusRex: #HurricaneSandy will not affect the Tomb of The Unknown Soldier. \\nThank God for our soldiers \\n#Honor\\nhttp://t.co/RtHKTDmE”\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy affect tomb unknown soldier thank god soldiers honor http co \n", + "tomb unknown soldier today midst hurricane sandy honor knows weakness give \n", "\n", "\n", "Tomb of the Unknown Soldier... Standing strong thru #HurricaneSandy #tomboftheunknownsoldier #guard #honorgu http://t.co/mPLznrFj\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier standing strong thru hurricanesandy tomboftheunknownsoldier guard honorgu \n", + "tomb unknown soldier standing strong hurricane sandy tomboftheunknown soldier guard honorgu \n", "\n", "\n", "Even through #hurricanesandy the tomb of the three unknown soldiers were still protected #neverabandoned #ho http://t.co/MbrWwzEj\n", "\n", "--------------------------------------------------------\n", - "even hurricanesandy tomb three unknown soldiers still protected neverabandoned ho \n", + "even hurricane sandy tomb three unknown soldiers still protected neverabandoned ho \n", "\n", "\n", "These guys in #DC still guarding Tomb of the Unknown Soldiers at #Arlington through #Sandy. #Beast #GodBless http://t.co/LjztDL1N\n", @@ -10588,25 +9864,25 @@ "#hurricanesandy #godbless AMERICA. TOMB OF THE UNKNOWN SOLIDER http://t.co/BVnwoUYM\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy godbless america tomb unknown solider \n", + "hurricane sandy godbless america tomb unknown solider \n", "\n", "\n", "Soldiers guarding the romb of the Unknown Soldier even duringthe weather conditions from #HurricaneSandy #Re http://t.co/TGuTZXVN\n", "\n", "--------------------------------------------------------\n", - "soldiers guarding romb unknown soldier even duringthe weather conditions hurricanesandy \n", + "soldiers guarding romb unknown soldier even duringthe weather conditions hurricane sandy \n", "\n", "\n", "Hard day at work..tomb of the unknown soldier #hurricanesandy http://t.co/lw4T3NQF\n", "\n", "--------------------------------------------------------\n", - "hard day work tomb unknown soldier hurricanesandy \n", + "hard day work tomb unknown soldier hurricane sandy \n", "\n", "\n", "Tomb of the Unknowns during #HurricaneSandy is guarded well http://t.co/LJN4R7M1 guys in #Bengahzi left to die after begging for help #tcot\n", "\n", "--------------------------------------------------------\n", - "tomb unknowns hurricanesandy guarded well guys bengahzi left begging help tcot \n", + "tomb unknowns hurricane sandy guarded well guys bengahzi left begging help tcot \n", "\n", "\n", "“@BirdAndPearl: I have no words for this picture: http://t.co/4doe3kS1\\n#HurricaneSandy at the Tomb of the Unknown” // God bless them\n", @@ -10615,12 +9891,6 @@ "god bless \n", "\n", "\n", - "#Respect RT @Yuup_VA_Pinoy: Tomb of the Unknown Soldier #HURRICANESANDY http://t.co/SyQpnjxg\n", - "\n", - "--------------------------------------------------------\n", - "respect \n", - "\n", - "\n", "Before you complain, see this: guarding the Tomb of the Unknown Solider during Sandy. Photo courtesy of Dan Marshall http://t.co/qJo8Qy1L\n", "\n", "--------------------------------------------------------\n", @@ -10630,7 +9900,7 @@ "The Tomb of the Unknown Soldiers during #hurricanesandy I love America 🇺🇸 http://t.co/upR3hphW\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldiers hurricanesandy love america \n", + "tomb unknown soldiers hurricane sandy love america \n", "\n", "\n", "This is awesome. Three #Marines guarding The Tomb of the Unknown Soldier during #hurricane #sandy. #USA #Hon http://t.co/EtPXCuDD\n", @@ -10642,43 +9912,37 @@ "Tomb of the Unknown Solider #dedication #heros #proudtobeanamerican #hurricanesandy 🇺🇸 http://t.co/FuH87fHl\n", "\n", "--------------------------------------------------------\n", - "tomb unknown solider dedication heros proudtobeanamerican hurricanesandy \n", + "tomb unknown solider dedication heros proudtobeanamerican hurricane sandy \n", "\n", "\n", "Tomb Of The Unknown Soldiers #Hurricanesandy http://t.co/uM9Avejl\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldiers hurricanesandy \n", + "tomb unknown soldiers hurricane sandy \n", "\n", "\n", "Tomb of the Unknown Soldier #stillguarded #hurricanesandy #Amazingsite #honor http://t.co/zxPb3Lo9\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier stillguarded hurricanesandy amazingsite honor \n", - "\n", - "\n", - "Tomb of the Unknown Soldier. #HurricaneSandy http://t.co/cn2rX2qk\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier hurricanesandy \n", + "tomb unknown soldier stillguarded hurricane sandy amazingsite honor \n", "\n", "\n", "#hurricanesandy Guards still keeping post at the \"Tomb of the Unknown Soldiers\".... #respect #honor http://t.co/G21HYaL3\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy guards still keeping post tomb unknown soldiers respect honor \n", + "hurricane sandy guards still keeping post tomb unknown soldiers respect honor \n", "\n", "\n", "Soldiers guarding the tomb of the unknown soldier. So much respect #army #hurricanesandy http://t.co/QdPIFE9m\n", "\n", "--------------------------------------------------------\n", - "soldiers guarding tomb unknown soldier much respect army hurricanesandy \n", + "soldiers guarding tomb unknown soldier much respect army hurricane sandy \n", "\n", "\n", "Guarding the tomb of the unknown solider, despite #HurricaneSandy. #respect #USA http://t.co/iSEtQ20H\n", "\n", "--------------------------------------------------------\n", - "guarding tomb unknown solider despite hurricanesandy respect usa \n", + "guarding tomb unknown solider despite hurricane sandy respect usa \n", "\n", "\n", "Guarding the Tomb of the Unknown Soldier, they won't move. #sandy #frankenstorm http://t.co/X2vK0316\n", @@ -10690,7 +9954,7 @@ "Still on guard at the tomb of the unknown soldier. #hurricanesandy #salute #usa http://t.co/s2Vfo1Yr http://t.co/TEYGBXUH\n", "\n", "--------------------------------------------------------\n", - "still guard tomb unknown soldier hurricanesandy salute usa \n", + "still guard tomb unknown soldier hurricane sandy salute usa \n", "\n", "\n", "Guarding The Tomb of the Unknown Soldier 🇺🇸 #sandy http://t.co/pCmfKoqd\n", @@ -10702,49 +9966,49 @@ "Soldiers guarding the Tomb of the Unknowns in Arlington Cemetery #inspiration #hurricaneSandy #USA http://t.co/kQWR4KEa\n", "\n", "--------------------------------------------------------\n", - "soldiers guarding tomb unknowns arlington cemetery inspiration hurricanesandy usa \n", + "soldiers guarding tomb unknowns arlington cemetery inspiration hurricane sandy usa \n", "\n", "\n", "Tomb of the Unknown Soldier #America #HurricaneSandy http://t.co/OaaXG7sE\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier america hurricanesandy \n", + "tomb unknown soldier america hurricane sandy \n", "\n", "\n", "https://t.co/F17AywXJ What an Amazing Picture. Military Personnel Guarding the Tomb of the Unknown Soldiers in #HurricaneSandy #Inspiring\n", "\n", "--------------------------------------------------------\n", - "amazing picture military personnel guarding tomb unknown soldiers hurricanesandy inspiring \n", + "amazing picture military personnel guarding tomb unknown soldiers hurricane sandy inspiring \n", "\n", "\n", "Tomb of the Unknown Soldier still guarded during #hurricanesandy #arlington http://t.co/VpZ73HyV\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier still guarded hurricanesandy arlington \n", + "tomb unknown soldier still guarded hurricane sandy arlington \n", "\n", "\n", "Solider don't leave the Tomb of the Unknowns in DC. Always on duty. http://t.co/JORwGNpU”\\n\\nDuring #hurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "solider leave tomb unknowns dc always duty hurricanesandy \n", + "solider leave tomb unknowns dc always duty hurricane sandy \n", "\n", "\n", "Much respect to the guards of the Tomb of the Unknown Soldier #HurricaneSandy #Merica 🇺🇸 http://t.co/8tf4L0qe\n", "\n", "--------------------------------------------------------\n", - "much respect guards tomb unknown soldier hurricanesandy merica \n", + "much respect guards tomb unknown soldier hurricane sandy merica \n", "\n", "\n", "Awesome picture. At the Tomb of the Unknown Soldiers today. #HurricaneSandy http://t.co/gNsjOACO\n", "\n", "--------------------------------------------------------\n", - "awesome picture tomb unknown soldiers today hurricanesandy \n", + "awesome picture tomb unknown soldiers today hurricane sandy \n", "\n", "\n", "Tomb of the unknown soldier remains guarded throughout #HurricaneSandy . #respect #FortHood http://t.co/Ipg7oA8P\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier remains guarded throughout hurricanesandy respect forthood \n", + "tomb unknown soldier remains guarded throughout hurricane sandy respect forthood \n", "\n", "\n", "Marines still guarding the Tomb of the Unknown Solider even in the hurricane #sandy #USMC http://t.co/EkF5lgsW\n", @@ -10762,7 +10026,7 @@ "They say \"Sandy\" came thru West Ocean City last night..& look wht was swimming around, this was on the stree http://t.co/2QQpnhSL\n", "\n", "--------------------------------------------------------\n", - "say sandy came thru west ocean city last night look wht swimming around stree \n", + "say sandy came west ocean city last night look wht swimming around stree \n", "\n", "\n", "There's a shark in the streets of ac. Thank you Sandy!!! http://t.co/Y9I6rAJJ\n", @@ -10774,7 +10038,7 @@ "I pray for the storm Sandy to spare those without a house, those who suffer... brothers in NY and around the http://t.co/nAZMtqAs\n", "\n", "--------------------------------------------------------\n", - "pray storm sandy spare without house suffer brothers ny around \n", + "pray storm sandy spare without house suffer brothers new york around \n", "\n", "\n", "Even in the middle of Sandy, they still stand guard! #respect #USA #America #armedforces http://t.co/ZfOMQctP\n", @@ -10786,13 +10050,13 @@ "Hurrican Sandy... To all my homies in NY! Stay safe! http://t.co/85bDA9Go\n", "\n", "--------------------------------------------------------\n", - "hurrican sandy homies ny stay safe \n", + "hurrican sandy homies new york stay safe \n", "\n", "\n", "Everyone in D.C. has boarded up or evacuated as Hurricane Sandy began punishing the Mid-Atlantic.\\nAlmost eve http://t.co/NEBLQGl0\n", "\n", "--------------------------------------------------------\n", - "everyone c boarded evacuated hurricane sandy began punishing mid atlantic almost eve \n", + "everyone boarded evacuated hurricane sandy began punishing mid atlantic almost eve \n", "\n", "\n", "Feeling bad for the people that live in #New#York hurricane sandy ;/ http://t.co/RqjHJGit\n", @@ -10804,7 +10068,7 @@ "Storm Sandy in NYC http://t.co/JpxGmMdg”\n", "\n", "--------------------------------------------------------\n", - "storm sandy nyc \n", + "storm sandy new york city \n", "\n", "\n", "Sharks on the streets in Jersey shores.. Damn Sandy! http://t.co/Y3k6qgwV\n", @@ -10822,7 +10086,7 @@ "http://t.co/Yf1TDByi\\n because of hurricane Sandy there's sharks swimming in the neighborhoods. wtf\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy sharks swimming neighborhoods wtf \n", + "hurricane sandy sharks swimming neighborhoods \n", "\n", "\n", "Taken this morning in the beginning of the #hurricane rains. Our Soldiers NEVER fail us! (notice the bayonettes) http://t.co/uB2lP7hn\n", @@ -10834,13 +10098,13 @@ "OMG!!!😨😱 @Alejandro12386 sandy is coming!!! It was written the end of the times 😷😰 they and we are in go http://t.co/cqvXuLRO\n", "\n", "--------------------------------------------------------\n", - "omg sandy coming written end times go \n", + "sandy coming written end times go \n", "\n", "\n", "My heart goes out to NY and the entire East coast who are currently victims of Sandy... We hope you guys are http://t.co/e2LJc4Hr\n", "\n", "--------------------------------------------------------\n", - "heart goes ny entire east coast currently victims sandy hope guys \n", + "heart goes new york entire east coast currently victims sandy hope guys \n", "\n", "\n", "Soldiers continue standing guard despite worsening conditions of Hurrican Sandy.. \"For the love of my brothe http://t.co/wgpSDWOK\n", @@ -10852,43 +10116,37 @@ "Thanks to Sandy, Sharks are now swimming the streets of the flooded Jersey Shore! WOW, SMDH!!! http://t.co/2jG4ZhkM\n", "\n", "--------------------------------------------------------\n", - "thanks sandy sharks swimming streets flooded jersey shore wow smdh \n", + "thanks sandy sharks swimming streets flooded jersey shore smdh \n", "\n", "\n", "@Ben_Duronio is this your house? MT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during Sandy http://t.co/HEAE7wPg\n", "\n", "--------------------------------------------------------\n", - "house shark swimming streets brigantine n j sandy \n", + "house \n", "\n", "\n", "Whos on the boat tho smh RT @ElishaKEEZ Had to #repost how can something so harmful as Sandy capture such beauty #NY http://t.co/OyjJMqV1\n", "\n", "--------------------------------------------------------\n", - "whos boat tho smh \n", + "whos boat tho \n", "\n", "\n", "Since 1937, the tomb guards have never left their post. Sandy will be no exception. Keep them in your prayer http://t.co/Jao2LScO\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb guards never left post sandy exception keep prayer \n", - "\n", - "\n", - "@Ymorgenrood: https://t.co/38nVr1JL oh shit door orkaan sandy zemmen er gewoon haaien in de stad like\n", - "\n", - "--------------------------------------------------------\n", - "oh shit orkaan sandy zemmen gewoon haaien stad like \n", + "since937 tomb guards never left post sandy exception keep prayer \n", "\n", "\n", "@citysouls omg??? sandy is massive someone actually has a shark in their backyard http://t.co/X07KHSAq …\n", "\n", "--------------------------------------------------------\n", - "omg sandy massive someone actually shark backyard \n", + "sandy massive someone actually shark backyard \n", "\n", "\n", "Remember the military supports Romney 3-1, Sandy can't stop the military!! http://t.co/EuftMWcc\n", "\n", "--------------------------------------------------------\n", - "remember military supports romney 3 1 sandy stop military \n", + "remember military supports romney sandy stop military \n", "\n", "\n", "Damn sharks in New Jersey from hurricane sandy in the neighborhoods. http://t.co/UfT5allA\n", @@ -10903,12 +10161,6 @@ "thanks giving promo fan \n", "\n", "\n", - "Sandy in NY. http://t.co/zxQBHxFL\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "rain sleet snow. #WeServe “@TARAnotSHAUN “@iTs_mY_BdAy Praying for the tomb guards during Storm Sandy! http://t.co/Q7DAnrrs””\n", "\n", "--------------------------------------------------------\n", @@ -10936,7 +10188,7 @@ "Super storm sandy... Monday 10.29.2012. God is tryna Tell you something right now (in my color purple voice) http://t.co/jU4QD4xt\n", "\n", "--------------------------------------------------------\n", - "super storm sandy monday 10 29 2012 god tryna tell something right color purple voice \n", + "super storm sandy monday09012 god tryna tell something right color purple voice \n", "\n", "\n", "Pray for the Coast. Sandy ain't nothing to play with. http://t.co/ZJ9HihL7\n", @@ -10948,13 +10200,13 @@ "3rd Infantry standing guard at the unknown soldiers tomb in Arlington Cemetery during #hurricane Sandy. http://t.co/W5KBlJCq\n", "\n", "--------------------------------------------------------\n", - "3rd infantry standing guard unknown soldiers tomb arlington cemetery hurricane sandy \n", + "infantry standing guard unknown soldiers tomb arlington cemetery hurricane sandy \n", "\n", "\n", "Prayers go out to those over in the East Coast. Stay safe, this too shall pass. #newyork #hurricane #storm # http://t.co/ogSzHqk2\n", "\n", "--------------------------------------------------------\n", - "prayers go east coast stay safe shall pass newyork hurricane storm \n", + "prayers go east coast stay safe shall pass new york hurricane storm \n", "\n", "\n", "Hurricane sandy. Praying for everyone in the east-cost http://t.co/h5Eb28OB\n", @@ -10966,13 +10218,13 @@ "A picture of NY after Sandy and yes that is a shark in the street. http://t.co/4IGqvaSp\n", "\n", "--------------------------------------------------------\n", - "picture ny sandy yes shark street \n", + "picture new york sandy yes shark street \n", "\n", "\n", "Sharks in Jersey as Sandy floods the State #hurricanesandy #storms #nyc #yyc #sharks http://t.co/Qi1l32da\n", "\n", "--------------------------------------------------------\n", - "sharks jersey sandy floods state hurricanesandy storms nyc yyc sharks \n", + "sharks jersey sandy floods state hurricane sandy storms new york city yyc sharks \n", "\n", "\n", "Mother/fuck/ that looks freaky. Everyone in the path of Hurricane Sandy, stay safe. https://t.co/JbUPINWb\n", @@ -10996,7 +10248,7 @@ "Pray for those that lost there homes do to the storm sandy in Nyc http://t.co/IUnidg1O\n", "\n", "--------------------------------------------------------\n", - "pray lost homes storm sandy nyc \n", + "pray lost homes storm sandy new york city \n", "\n", "\n", "Gives me chills knowing that even in the midst of Hurricane Sandy, soldiers are still standing watch over th http://t.co/0sQQgdCo\n", @@ -11014,7 +10266,7 @@ "My thoughts and prayers go out to those at NY experiencing the wrath of Sandy. http://t.co/orz2we2F\n", "\n", "--------------------------------------------------------\n", - "thoughts prayers go ny experiencing wrath sandy \n", + "thoughts prayers go new york experiencing wrath sandy \n", "\n", "\n", "Soldiers at the Tomb of the Unknowns as Sandy arrives http://t.co/gBDNgrY0\n", @@ -11023,12 +10275,6 @@ "soldiers tomb unknowns sandy arrives \n", "\n", "\n", - "Sandy in New York http://t.co/iNztpS5F\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", "Fuck you sandy! Even the sharks are evacuated! http://t.co/IU8unWd9\n", "\n", "--------------------------------------------------------\n", @@ -11050,7 +10296,7 @@ "Tell me why @jenniferurs sent me this and told me this washed up in NYC because of sandy lolol http://t.co/riZw9inc\n", "\n", "--------------------------------------------------------\n", - "tell sent told washed nyc sandy lolol \n", + "tell sent told washed new york city sandy ol \n", "\n", "\n", "Hurricane Sandy in North East\\nThe North East is about to get slammed by Hurricane Sandy. Flooding and strong winds http://t.co/vRixZCYi\n", @@ -11062,13 +10308,13 @@ "There's a reason the subway system in NY closed - Hurricane Sandy http://t.co/VRoRwEyH\n", "\n", "--------------------------------------------------------\n", - "reason subway system ny closed hurricane sandy \n", + "reason subway system new york closed hurricane sandy \n", "\n", "\n", "Say a prayer for the folk in NY and 🇺🇸 Sandy will be on location at 5pm est. http://t.co/3Yux87WT\n", "\n", "--------------------------------------------------------\n", - "say prayer folk ny sandy location 5pm est \n", + "say prayer folk new york sandy location \n", "\n", "\n", "Sandy in New York, la naturaleza... Hace su voluntad... Cuando menos lo esperamos http://t.co/xQfTKoL5\n", @@ -11110,19 +10356,19 @@ "Sandy bussin guns right now in NY. 🔫🔫🔫 http://t.co/M1w1GEn6\n", "\n", "--------------------------------------------------------\n", - "sandy bussin guns right ny \n", + "sandy bussin guns right new york \n", "\n", "\n", "In the first days of the storm .. Losses 'Sandy' killed 73 and the closure of the stock market and cut off e http://t.co/UJ1OzZcV\n", "\n", "--------------------------------------------------------\n", - "first days storm losses sandy killed 73 closure stock market cut \n", + "first days storm losses sandy killed3 closure stock market cut \n", "\n", "\n", "“@DaDaDiesel: Sandy http://t.co/Rt0Qy0FC”\\n\\nWHO THE HELL IS IN THAT BOAT? Was Chuck Norris bored? #Sandy\n", "\n", "--------------------------------------------------------\n", - "sandy http co \n", + "hell boat chuck norris bored sandy \n", "\n", "\n", "Sandy moved animals on the streets from the ocean. Ain't this some stuff. Wooowww http://t.co/N9Sk5txP\n", @@ -11134,7 +10380,7 @@ "Wow. Hurricane Sandy in NY. Got this from FB the caption said \"nature is powerful yet beautiful\" but my capt http://t.co/poa2OCat\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy ny got fb caption said nature powerful yet beautiful capt \n", + "hurricane sandy new york got fb caption said nature powerful yet beautiful capt \n", "\n", "\n", "Those effected by sandy are in my prayers http://t.co/Pt0T2fub\n", @@ -11152,13 +10398,13 @@ "Praying the lords hand of protection from Sandy for all my friends in NYC xxx love you all http://t.co/rfxiHwxe\n", "\n", "--------------------------------------------------------\n", - "praying lords hand protection sandy friends nyc xxx love \n", + "praying lords hand protection sandy friends new york city xxx love \n", "\n", "\n", "Sandy needs to chill the fuck out! Lmao http://t.co/jq0gYqgE\n", "\n", "--------------------------------------------------------\n", - "sandy needs chill fuck lmao \n", + "sandy needs chill fuck \n", "\n", "\n", "Shark in the water in Reho. got washed inland by Sandy's rising waters. #crazy #SandShark #HideYoKids #HideY http://t.co/x0F1HrOE\n", @@ -11176,7 +10422,7 @@ "“@KIDSoReTro: Hurricane Sandy u got to chill a shark in somebody from yard http://t.co/Fl8ZmerD” ohh nigga the hurricane didn't even hit yet\n", "\n", "--------------------------------------------------------\n", - "ohh nigga hurricane even hit yet \n", + "nigga hurricane even hit yet \n", "\n", "\n", "Keeping everyone affected by sandy in my thoughts and prayers #staysafe http://t.co/0KB6VUC3\n", @@ -11194,7 +10440,7 @@ "Sharks be swimmin in the streets of NJ#hurricanesandy#holyshit#frontyard#water#ocean#flooded#rain#crazy#swer http://t.co/779gC4yW\n", "\n", "--------------------------------------------------------\n", - "sharks swimmin streets nj hurricanesandy holyshit frontyard water ocean flooded rain crazy swer \n", + "sharks swimmin streets njhurricane sandyholyshitfrontyardwateroceanfloodedraincrazyswer \n", "\n", "\n", "#repost yasunshin3 Sandy...Hope we don't get bad here in Connecticut http://t.co/ry2BByef\n", @@ -11212,7 +10458,7 @@ "Storm Sandy over Lady Liberty & NYC - awesome photo! Lord pls watch over the east coast http://t.co/TwGuxrN8\n", "\n", "--------------------------------------------------------\n", - "storm sandy lady liberty nyc awesome photo lord pls watch east coast \n", + "storm sandy lady liberty new york city awesome photo lord pls watch east coast \n", "\n", "\n", "Shark swimming on a road in New Jersey after Sandy http://t.co/vDLx1aVg\n", @@ -11242,7 +10488,7 @@ "Wow they got sharks in the streets from hurricane sandy. Smh prayer is really needed for the east coast http://t.co/hzBlNntV\n", "\n", "--------------------------------------------------------\n", - "wow got sharks streets hurricane sandy smh prayer really needed east coast \n", + "got sharks streets hurricane sandy prayer really needed east coast \n", "\n", "\n", "Not my pic!!! But #salute to my fellow men and women in the armed forces!! SANDY DON'T HOLD US BACK! http://t.co/sKTgFkgY\n", @@ -11254,25 +10500,25 @@ "Pic of Sandy in NYC!!! Oh God! http://t.co/fkqGwR8e\n", "\n", "--------------------------------------------------------\n", - "pic sandy nyc oh god \n", + "pic sandy new york city god \n", "\n", "\n", "Oh hi Sandy, welcome to the US . Please don't hurt me 😁 http://t.co/H804rU7l\n", "\n", "--------------------------------------------------------\n", - "oh hi sandy welcome us please hurt \n", + "hi sandy welcome us please hurt \n", "\n", "\n", "Slightly cloudy on the Gold Coast today but @allofNewYork: Hurricane Sandy http://t.co/t1594rHK Sharks in the Streets http://t.co/Gr9ux27v\n", "\n", "--------------------------------------------------------\n", - "slightly cloudy gold coast today hurricane sandy sharks streets \n", + "slightly cloudy gold coast today \n", "\n", "\n", "Que Sandra D ni que nada... Ay nanita!! Sandy is in tha house @ Manhattan http://t.co/TScoJHPA\n", "\n", "--------------------------------------------------------\n", - "sandra ay nanita sandy tha house manhattan \n", + "sandra ay nanita sandy thouse manhattan \n", "\n", "\n", "Sandy meets the best city in the world http://t.co/FYoY9kK1\n", @@ -11290,7 +10536,7 @@ "Yea shit is real wen sandy let the sharks on land smh #repost http://t.co/WX5XaE3Q\n", "\n", "--------------------------------------------------------\n", - "yea shit real wen sandy let sharks land smh repost \n", + "yea shit real wen sandy let sharks land repost \n", "\n", "\n", "Praying for everyone in New York. ); and other areas affected by Sandy. http://t.co/6OI6maZp\n", @@ -11344,19 +10590,19 @@ "A picture of Hurricane Sandy in New York. Pretty yet scary at the same time. #pretty #scary #newyork #cool # http://t.co/mY1Rw9CO\n", "\n", "--------------------------------------------------------\n", - "picture hurricane sandy new york pretty yet scary time pretty scary newyork cool \n", + "picture hurricane sandy new york pretty yet scary time pretty scary new york cool \n", "\n", "\n", "Wow. Not Sandy, but still...WOW. pic of soldiers at the Tomb of the Unknowns in DC. http://t.co/IYssfCdO” #Studs\"\n", "\n", "--------------------------------------------------------\n", - "wow sandy still wow pic soldiers tomb unknowns dc studs \n", + "sandy still pic soldiers tomb unknowns dc studs \n", "\n", "\n", "NYC staring Hurricane Sandy in the face! #NYC #newyork #newyorkcity #Manhattan #statueofliberty #stratenisla http://t.co/CTMIk38b\n", "\n", "--------------------------------------------------------\n", - "nyc staring hurricane sandy face nyc newyork newyorkcity manhattan statueofliberty stratenisla \n", + "new york city staring hurricane sandy face new york city new york new yorkcity manhattan statueofliberty stratenisla \n", "\n", "\n", "Hurricane Sandy, my prayers are going out to all of you guys in the path off the hurricane! http://t.co/LyJ1tOkU\n", @@ -11368,7 +10614,7 @@ "attend avec impatience le photo-reportage de The BigPicture à propos de Sandy parce que là ça part en sucette http://t.co/f0x9S66p\n", "\n", "--------------------------------------------------------\n", - "attend avec impatience photo reportage bigpicture à propos sandy parce là ça part sucette \n", + "attend impatience photo reportage bigpicturepropos sandy parce là ça part sucette \n", "\n", "\n", "Took this from a friend, a guy found a shark in his front yard after sandy! #crazystroms #sandyaftermath #iw http://t.co/Bzv30z9F\n", @@ -11390,9 +10636,15 @@ "\n", "\n", "https://t.co/5nSGIteD oh shit door orkaan sandy zemmen er gewoon haaien in de stad\n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "--------------------------------------------------------\n", - "oh shit orkaan sandy zemmen gewoon haaien stad \n", + "shit orkaan sandy zemmen gewoon haaien stad \n", "\n", "\n", "Sick pic of Sandy over the Big Apple... http://t.co/ly8tn8ME\n", @@ -11410,13 +10662,13 @@ "since we all talking bout her...why not post of pic of how sandy looking in NY today 😨 http://t.co/XCoYtLbn\n", "\n", "--------------------------------------------------------\n", - "since talking bout post pic sandy looking ny today \n", + "since talking bout post pic sandy looking new york today \n", "\n", "\n", "“@ARSONALDAREBEL: So DIS WAT SANDY GOT DA SKY IN NYC LOOKIN LIKE. http://t.co/f94A5RN7” Looks EXACTLY like the scene in 2012\n", "\n", "--------------------------------------------------------\n", - "looks exactly like scene 2012 \n", + "looks exactly like scene in012 \n", "\n", "\n", "Today in DC, Sandy brings rain, but it comes with the territory. Havin a tough day? Quit your whining! #hon http://t.co/8CSWVQ73\n", @@ -11434,19 +10686,19 @@ "Hurricane Sandy look like an aggrivated ex-wife in N.Y.C & She bought to be in the D.M.V by 6pm . Fml http://t.co/dDmH0Fmy\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy look like aggrivated ex wife n c bought v 6pm fml \n", + "hurricane sandy look like aggrivated ex wife bought v fml \n", "\n", "\n", "Due to Sandy, there are sharks in the flooded streets of NYC. God help us all http://t.co/SckbrML4\n", "\n", "--------------------------------------------------------\n", - "due sandy sharks flooded streets nyc god help us \n", + "due sandy sharks flooded streets new york city god help us \n", "\n", "\n", "The power of nature. Photo from Sandy update Facebook page. @ NYC♥ http://t.co/B3q2JfXa\n", "\n", "--------------------------------------------------------\n", - "power nature photo sandy update facebook page nyc \n", + "power nature photo sandy update facebook page new york city \n", "\n", "\n", "Damn, look what Sandy is bringing to the land yo :( http://t.co/sgbZrwh5\n", @@ -11458,7 +10710,7 @@ "Hurricane Sandy in NYC. Prayers to the people and be safe! (Not my pic) #NYC #hurricanesandy #prayers #besaf http://t.co/Mba3bZGl\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc prayers people safe pic nyc hurricanesandy prayers besaf \n", + "hurricane sandy new york city prayers people safe pic new york city hurricane sandy prayers besaf \n", "\n", "\n", "Apparently the Sandy floodwaters were strong enough to send sharks swimming in your front yar @ Easton Place http://t.co/GjX7sSZE\n", @@ -11482,7 +10734,7 @@ "Picture taken by Jason Otts as the Super Hurricane Sandy approaches its touch down in NYC... Take care peopl http://t.co/lrD1c4tl\n", "\n", "--------------------------------------------------------\n", - "picture taken jason otts super hurricane sandy approaches touch nyc take care peopl \n", + "picture taken jason otts super hurricane sandy approaches touch new york city take care peopl \n", "\n", "\n", "I am SO proud to live in this amazing country. Through Hurricane Sandy, these men still protect The Tomb of http://t.co/65PWZodJ\n", @@ -11536,19 +10788,19 @@ "In other news. Woah sandy!! Please take it easy.. Prayers going out to all our NY friends! 😳😓👎🙏 hope y'all a http://t.co/aa0Vt5Sg\n", "\n", "--------------------------------------------------------\n", - "news woah sandy please take easy prayers going ny friends hope \n", + "news woah sandy please take easy prayers going new york friends hope \n", "\n", "\n", "#repost @ethvn_ big sandy hittin the NYC http://t.co/L7DBU5b3\n", "\n", "--------------------------------------------------------\n", - "repost big sandy hittin nyc \n", + "repost big sandy hittin new york city \n", "\n", "\n", "A shark swimming in the backyard of a NJ home. sandy is a bitch, she must be on her period. http://t.co/U7fbBvj6\n", "\n", "--------------------------------------------------------\n", - "shark swimming backyard nj home sandy bitch must period \n", + "shark swimming backyard new jersey home sandy bitch must period \n", "\n", "\n", "Sandy really tore up the Tri-State lastnight http://t.co/ICZSFyx3\n", @@ -11566,13 +10818,13 @@ "this chick has a shark in her backyard thanks to sandy. #iwouldcry #omg http://t.co/QIHTCNAJ\n", "\n", "--------------------------------------------------------\n", - "chick shark backyard thanks sandy iwouldcry omg \n", + "chick shark backyard thanks sandy iwouldcry \n", "\n", "\n", "Sandy comin in on New York City #regram #holyyyyfrankenstorm http://t.co/xz1uKKzm\n", "\n", "--------------------------------------------------------\n", - "sandy comin new york city regram holyyyyfrankenstorm \n", + "sandy comin new york city holyyyyfrankenstorm \n", "\n", "\n", "Honor guard never leaves their post...even in the face of Hurricane Sandy! #respect #honor http://t.co/RhY3C4Fw\n", @@ -11593,28 +10845,16 @@ "support goes soldiers protecting tomb even sandy \n", "\n", "\n", - "Sandy in NYC http://t.co/byp31Qsm\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", - "Sandy in NYC ( via @SofiaSalama93 ) http://t.co/pOtFi7Ho\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "Look rhat pic of Sandy in NYC http://t.co/i9pGjmy9 @venice4change\n", "\n", "--------------------------------------------------------\n", - "look rhat pic sandy nyc \n", + "look rhat pic sandy new york city \n", "\n", "\n", "So DIS WAT SANDY GOT DA SKY IN NYC LOOKIN LIKE. http://t.co/fIVGpxvI\n", "\n", "--------------------------------------------------------\n", - "dis sandy got da sky nyc lookin like \n", + "sowat sandy got sky new york city lookin like \n", "\n", "\n", "Bueno!! Sandy lookin like \"The Day After Tomorrow\" .. God protect us... 😇 http://t.co/OpZTSVdV\n", @@ -11626,151 +10866,133 @@ "Crazy picture #hurricanesandy #hurricane #photooftheday #bestoftheday #newyork #disaster #photogr @ New York http://t.co/FZu3U8h7\n", "\n", "--------------------------------------------------------\n", - "crazy picture hurricanesandy hurricane photooftheday bestoftheday newyork disaster photogr new york \n", + "crazy picture hurricane sandy hurricane photooftheday bestoftheday new york disaster photogr new york \n", "\n", "\n", "#hurricane #sandy #hurricanesandy #ny #new #york #nyc #newyork #newyorkcity #statueofliberty #instalove #lik http://t.co/oGaiaw62\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy ny new york nyc newyork newyorkcity statueofliberty instalove lik \n", + "hurricane sandy hurricane sandy new york new york new york city new york new yorkcity statueofliberty instalove lik \n", "\n", "\n", "Awesome pic! Take care guys! #hurricanesandy #sandy #newyork #liberty #eastcoast #USA #GodBless http://t.co/KtuWSHsF\n", "\n", "--------------------------------------------------------\n", - "awesome pic take care guys hurricanesandy sandy newyork liberty eastcoast usa godbless \n", + "awesome pic take care guys hurricane sandy sandy new york liberty eastcoast usa godbless \n", "\n", "\n", "Hurricane Sandy! #Hurricane #Sandy #HurricaneSandy #NewYork #USA #america #eastcoast #city #statu @ New York http://t.co/PulCkBBU\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricane sandy hurricanesandy newyork usa america eastcoast city statu new york \n", + "hurricane sandy hurricane sandy hurricane sandy new york usa america eastcoast city statu new york \n", "\n", "\n", "This is such an amazing picture. #hurricanesandy #hurricane #sandy #statueofliberty #newyork http://t.co/gHpbuyvA\n", "\n", "--------------------------------------------------------\n", - "amazing picture hurricanesandy hurricane sandy statueofliberty newyork \n", + "amazing picture hurricane sandy hurricane sandy statueofliberty new york \n", "\n", "\n", "#nyc #sandy #hurricane #hurricanesandy #newyork #times #square newyork #ny http://t.co/WIaaI4RA\n", "\n", "--------------------------------------------------------\n", - "nyc sandy hurricane hurricanesandy newyork times square newyork ny \n", + "new york city sandy hurricane hurricane sandy new york times square new york new york \n", "\n", "\n", "This is so scary ! 🗽😣🙏 #hurricanesandy #hurricane #newyork #ny #statueofliberty #ellisisland #scary #storm # http://t.co/xn3GIxWt\n", "\n", "--------------------------------------------------------\n", - "scary hurricanesandy hurricane newyork ny statueofliberty ellisisland scary storm \n", + "scary hurricane sandy hurricane new york new york statueofliberty ellisisland scary storm \n", "\n", "\n", "Hurricane sandy in New York 😁😁😁😁 #scary #sandy #hurricanesandy #crazy #newyork #insane http://t.co/xUZm6DJp\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy new york scary sandy hurricanesandy crazy newyork insane \n", + "hurricane sandy new york scary sandy hurricane sandy crazy new york insane \n", "\n", "\n", "Its happening right now... #hurricanesandy #sandy #hurricane #storm #ny #statueofliberty #newyork http://t.co/h9RbofAl\n", "\n", "--------------------------------------------------------\n", - "happening right hurricanesandy sandy hurricane storm ny statueofliberty newyork \n", + "happening right hurricane sandy sandy hurricane storm new york statueofliberty new york \n", "\n", "\n", "No Sandy! Bad kitty!!! #hurricane #storm #badkitty #kitten #cat #kitty #sandy #hurricanesandy #nyc #newyork http://t.co/7Q3KJFpi\n", "\n", "--------------------------------------------------------\n", - "sandy bad kitty hurricane storm badkitty kitten cat kitty sandy hurricanesandy nyc newyork \n", + "sandy bad kitty hurricane storm badkitty kitten cat kitty sandy hurricane sandy new york city new york \n", "\n", "\n", "Amazing #sandy #hurricane #hurricanesandy #frankinstorm #newyork #newyorkcity #statueofliberty http://t.co/WK97iduD\n", "\n", "--------------------------------------------------------\n", - "amazing sandy hurricane hurricanesandy frankinstorm newyork newyorkcity statueofliberty \n", + "amazing sandy hurricane hurricane sandy frankinstorm new york new yorkcity statueofliberty \n", "\n", "\n", "#hurricane #hurricanesandy #nature #disaster #animals #funny #newyork #followme http://t.co/SH2vomMj\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy nature disaster animals funny newyork followme \n", + "hurricane hurricane sandy nature disaster animals funny new york followme \n", "\n", "\n", "Flooded subway #newyork. #hurricanesandy #sandy http://t.co/VGfLJFGd\n", "\n", "--------------------------------------------------------\n", - "flooded subway newyork hurricanesandy sandy \n", + "flooded subway new york hurricane sandy sandy \n", "\n", "\n", "#pray #hurricanesandy #hurricane #sandy #🙏 #newyork #newjersey #nyc #flood #dam http://t.co/r6JqZmDs\n", "\n", "--------------------------------------------------------\n", - "pray hurricanesandy hurricane sandy newyork newjersey nyc flood dam \n", + "pray hurricane sandy hurricane sandy new york newjersey new york city flood dam \n", "\n", "\n", "Is this real life? #hurricanesandy. #newyork #statueofliberty #crazy #hurricane #weather http://t.co/8PiYaRAI\n", "\n", "--------------------------------------------------------\n", - "real life hurricanesandy newyork statueofliberty crazy hurricane weather \n", + "real life hurricane sandy new york statueofliberty crazy hurricane weather \n", "\n", "\n", "OMG #HurricaneSandy #Sandy #Hurricane #SuperStorm #Storm #NewYork #NY http://t.co/l4RAQljA\n", "\n", "--------------------------------------------------------\n", - "omg hurricanesandy sandy hurricane superstorm storm newyork ny \n", + "hurricane sandy sandy hurricane superstorm storm new york new york \n", "\n", "\n", "This is a crazy shot of the hurricane !! #HurricaneSandy #Sandy #Hurricane #NewYork http://t.co/VtHYzEgU\n", "\n", "--------------------------------------------------------\n", - "crazy shot hurricane hurricanesandy sandy hurricane newyork \n", + "crazy shot hurricane hurricane sandy sandy hurricane new york \n", "\n", "\n", "Una de las mejores fotos del huracán #sandy #hurricane #ny #build #hurricanesandy #newyork http://t.co/fZ9rA3FE\n", "\n", "--------------------------------------------------------\n", - "mejores fotos huracán sandy hurricane ny build hurricanesandy newyork \n", + "mejores fotos huracán sandy hurricane new york build hurricane sandy new york \n", "\n", "\n", "This is crazy sandy is bringing sharks to new Jersey, #sandy #newyork http://t.co/R87qxW17\n", "\n", "--------------------------------------------------------\n", - "crazy sandy bringing sharks new jersey sandy newyork \n", - "\n", - "\n", - "@Rhodes411: Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/MuWzL9SO\n", - "\n", - "--------------------------------------------------------\n", - "insane pic hurricanesandy hitting nyc today \n", - "\n", - "\n", - "@Rhodes411: Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/TzL4nW7I look at this @willdammann @KMendel5\n", - "\n", - "--------------------------------------------------------\n", - "insane pic hurricanesandy hitting nyc today look \n", + "crazy sandy bringing sharks new jersey sandy new york \n", "\n", "\n", "Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/8HwrpJCc”\n", "\n", "--------------------------------------------------------\n", - "insane pic hurricanesandy hitting nyc today \n", - "\n", - "\n", - "Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/IQYbddbf\n", - "\n", - "--------------------------------------------------------\n", - "insane pic hurricanesandy hitting nyc today \n", + "insane pic hurricane sandy hitting new york city today \n", "\n", "\n", "#regram Guarding through hurricane sandy http://t.co/JrtnLIw2\n", "\n", "--------------------------------------------------------\n", - "regram guarding hurricane sandy \n", + "guarding hurricane sandy \n", "\n", "\n", "Patriotism. This is why I love our soldiers. God bless our #military. #UnknownSoldier #HurricaneSandy http://t.co/BkHUQHqV\n", "\n", "--------------------------------------------------------\n", - "patriotism love soldiers god bless military unknownsoldier hurricanesandy \n", + "patriotism love soldiers god bless military unknown soldier hurricane sandy \n", "\n", "\n", "Ctfu RT @Pussy_Lavish: RT @LMAOtwitpics_: Hurricane Sandy is getting real http://t.co/e4PuhvHJ\n", @@ -11785,52 +11007,28 @@ "expected sandy \n", "\n", "\n", - "“@MateezyNigga: Hurricane Sandy is getting real http://t.co/Q8FrEzYt”” @TuareztTammy holy shit\n", - "\n", - "--------------------------------------------------------\n", - "holy shit \n", - "\n", - "\n", - "😳 fuck no! RT @HardBodyRonnie: “@FUNNYPICS Hurricane Sandy is getting real http://t.co/lZQIEudZ”- the fuck? Wow!\n", - "\n", - "--------------------------------------------------------\n", - "fuck \n", - "\n", - "\n", "“@FUNNYPICS: Hurricane Sandy is getting real http://t.co/HKDp3Emm” lol #iCant\n", "\n", "--------------------------------------------------------\n", - "lol icant \n", + "icant \n", "\n", "\n", "Metlolo. RT @tsholo_tt: I would faint. RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/anffaOUi\n", "\n", "--------------------------------------------------------\n", - "metlolo \n", - "\n", - "\n", - "WTF!? RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/kHCI6VpS\n", - "\n", - "--------------------------------------------------------\n", - "wtf \n", + "meto \n", "\n", "\n", "Damn thats a shark in the water n shit smh RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/KsbDEgHT\n", "\n", "--------------------------------------------------------\n", - "damn thats shark water n shit smh \n", - "\n", - "\n", - "In hurricane sandy? RT @djstephfloss: Hahahahaha. No way this is real! A SEAL???? http://t.co/oIHcl4kh\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "damn thats shark water shit \n", "\n", "\n", "New York, hurricane sandy is here...real pic taken today via Scooter http://t.co/hWWZz5wH\n", "\n", "--------------------------------------------------------\n", - "new york hurricane sandy real pic taken today via scooter \n", + "new york hurricane sandy real pic taken todayscooter \n", "\n", "\n", "“@s0_unlik3otherz Play all day RT @andrewcochranx: Niggas tweeted hurricane sandy Is getting real .. 😂😂😂 http://t.co/ANyqdRjh”\n", @@ -11845,24 +11043,6 @@ "hurricane sandy getting real \n", "\n", "\n", - "Hurricane Sandy is getting real http://t.co/mxewDt6r\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", - "Hurricane Sandy is getting real http://t.co/xkIyDhIc\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", - "Hurricane Sandy is getting real http://t.co/1AANzDoZ\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", "Tell me again about how bad your day was. #Respect #Inspiration #Soldiers #USA #Sandy #Hurricane #Proud #Det http://t.co/x6G9AoU4\n", "\n", "--------------------------------------------------------\n", @@ -11872,7 +11052,7 @@ "#Storm#hurricane Sandy#newYork http://t.co/CuidNQfP\n", "\n", "--------------------------------------------------------\n", - "storm hurricane sandy newyork \n", + "stormhurricane sandynew york \n", "\n", "\n", " Sandy ready to engulf the Statue of Liberty. @jodikantor http://t.co/Ii2ZYPLv @Padiwancontodo Maybe is not that bad!. Ok., No.\n", @@ -11890,31 +11070,19 @@ "Da Statue of Liberty right now dis bitch sandy is crzy #onlinepic http://t.co/JmgWH3nn\n", "\n", "--------------------------------------------------------\n", - "da statue liberty right dis bitch sandy crzy onlinepic \n", - "\n", - "\n", - "Wow. #HurricaneSandy RT @VanJones68: Awesome & terrifying image: the Frankenstorm versus the Statue of Liberty in NYC. http://t.co/8bT2RnxF\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricanesandy \n", - "\n", - "\n", - "Is this for real? RT @Ty_Perez: Hurricane Sandy approaching the Statue of Liberty. http://t.co/nDK7gPhP\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "statue liberty right nowbitch sandy crzy onlinepic \n", "\n", "\n", "Look how the Hurricane is hitting the Statue of Liberty #HurricaneSandy #Hurricane #Sandy #Crazy #Epic http://t.co/4UmR364a\n", "\n", "--------------------------------------------------------\n", - "look hurricane hitting statue liberty hurricanesandy hurricane sandy crazy epic \n", + "look hurricane hitting statue liberty hurricane sandy hurricane sandy crazy epic \n", "\n", "\n", "NYC STATUE OF LIBERTY WITH SANDY OVER IT http://t.co/n1W3mSoV\n", "\n", "--------------------------------------------------------\n", - "nyc statue libe \n", + "new york city statue libe \n", "\n", "\n", "Independence Day y vaina!! “@LarrySani: hurricane Sandy & the statue of liberty! Μαλάκα μου... http://t.co/alY9ctpg”\n", @@ -11950,7 +11118,7 @@ "The statue of liberty is having a rough day #hurricanesandy http://t.co/sEfBL1e6\n", "\n", "--------------------------------------------------------\n", - "statue liberty rough day hurricanesandy \n", + "statue liberty rough day hurricane sandy \n", "\n", "\n", "the wrath of Hurricane sandy strikes the Statue of Liberty... looks like the scene from a movie. http://t.co/DNTMNAsF\n", @@ -11977,12 +11145,6 @@ "sandy posted photo statue libe \n", "\n", "\n", - "“@Ty_Perez: Hurricane Sandy approaching the Statue of Liberty. http://t.co/qWN5VDLF” OMG!\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "This bitch Sandy is almost here... Statue of Liberty is standing there saying \"Come get some!!\" #hurricaneSa http://t.co/gLnQjWB9\n", "\n", "--------------------------------------------------------\n", @@ -11992,13 +11154,13 @@ "Wow ! Look at the statue of liberty under sandy http://t.co/0i3bIN1M\n", "\n", "--------------------------------------------------------\n", - "wow look statue liberty sandy \n", + "look statue liberty sandy \n", "\n", "\n", "WTF! :O\\nHurricane Sandy, it is!\\n\\nStatue of Liberty in huge currents. http://t.co/OI0AD6JB\n", "\n", "--------------------------------------------------------\n", - "wtf hurricane sandy statue liberty huge currents \n", + "hurricane sandy statue liberty huge currents \n", "\n", "\n", "Hurricane Sandy approaching the Statue of Liberty. http://t.co/c2DQ44UF\n", @@ -12010,13 +11172,13 @@ "Sandy was goin in on the Statue of Liberty #Sandy #NYC http://t.co/TN4d3BTb\n", "\n", "--------------------------------------------------------\n", - "sandy goin statue liberty sandy nyc \n", + "sandy going statue liberty sandy new york city \n", "\n", "\n", "Seriously? Make it stop!!!!!!! Crazy image of the Statue of Liberty right now #HurricaneSandy #Frankenstorm http://t.co/34NGwlle\n", "\n", "--------------------------------------------------------\n", - "seriously make stop crazy image statue liberty right hurricanesandy frankenstorm \n", + "seriously make stop crazy image statue liberty right hurricane sandy frankenstorm \n", "\n", "\n", "Statue of Liberty your going to let Sandy take you down... http://t.co/qOpjd3Ry\n", @@ -12028,7 +11190,7 @@ "One hell of a cat fight: Lady Liberty vs. Sandy #concretejungle http://t.co/5HkSAnYi http://t.co/ahw7K6mQ\n", "\n", "--------------------------------------------------------\n", - "one hell cat fight lady liberty vs sandy concretejungle \n", + "one hell cat fight lady liberty versus sandy concretejungle \n", "\n", "\n", "Hurricane Sandy Statue of Liberty standing ground. http://t.co/sds3g9Qo\n", @@ -12040,13 +11202,13 @@ "Hurricane Sandy heading towards The Statue of Liberty 10-29-12 http://t.co/YqZEledP\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy heading towards statue liberty 10 29 12 \n", + "hurricane sandy heading towards statue liberty092 \n", "\n", "\n", "Shit is fake lmao RT @EyeLuvTiff: Wow RT @Ziggybadass: Hurricane sandy just said fuck the statue of liberty huh http://t.co/6VJGxpMx\n", "\n", "--------------------------------------------------------\n", - "shit fake lmao \n", + "shit fake \n", "\n", "\n", "Statue of Liberty ain't playing she bounced on sandy. Y'all better do the same. http://t.co/6hnnwVwb\n", @@ -12070,7 +11232,7 @@ "Pic of #hurricanesandy and the statue of liberty http://t.co/4Ru98nf8\n", "\n", "--------------------------------------------------------\n", - "pic hurricanesandy statue liberty \n", + "pic hurricane sandy statue liberty \n", "\n", "\n", "Picture of Sandy and The Statue of Liberty... On some Ghostbusters shit http://t.co/2t3aLNvy\n", @@ -12112,13 +11274,13 @@ "Statue of liberty gets hit hard #nyc #storm #hurricane #sand @ statan island or whatever http://t.co/GeIraZsl\n", "\n", "--------------------------------------------------------\n", - "statue liberty gets hit hard nyc storm hurricane sand statan island whatever \n", + "statue liberty gets hit hard new york city storm hurricane sand statan island whatever \n", "\n", "\n", "Crazy pic of the Statue of Liberty #HurricaneSandy #Frankenstorm http://t.co/EbLKzb4C\n", "\n", "--------------------------------------------------------\n", - "crazy pic statue liberty hurricanesandy frankenstorm \n", + "crazy pic statue liberty hurricane sandy frankenstorm \n", "\n", "\n", "Damn Hurrican Sandy over the Statue Of Liberty 🙏 http://t.co/o30HAtvr\n", @@ -12136,19 +11298,19 @@ "Знаменитая акула у крыльца дома #Sandy\\n\\nkatie_cernak's photo http://t.co/c5rITma5\n", "\n", "--------------------------------------------------------\n", - "знаменитая акула крыльца дома sandy katie cernak photo \n", + "знаменитая акула крыльца дома sandy katiecernak photo \n", "\n", "\n", "The best honor ever.... The unmarked grave... Soldiers standing through #hurricanesandy no matter what.... # http://t.co/jN9yWowc\n", "\n", "--------------------------------------------------------\n", - "best honor ever unmarked grave soldiers standing hurricanesandy matter \n", + "best honor ever unmarked grave soldiers standing hurricane sandy matter \n", "\n", "\n", "¡EN EXCLUSIVA! Imágenes inéditas sobre lo que está pasando en el metro de NY. #Sandy http://t.co/dCgPSgt7 (Via @Jay_Yuri)\n", "\n", "--------------------------------------------------------\n", - "exclusiva imágenes inéditas pasando metro ny sandy via \n", + "exclusiva imágenes inéditas pasando metro new york sandy \n", "\n", "\n", "Pray for USA go away Sandy!!!🙏🙏🙏 http://t.co/yNJ9h4Zb\n", @@ -12157,28 +11319,16 @@ "pray usa go away sandy \n", "\n", "\n", - "Sandy New York http://t.co/XQVFih0Y\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", "Impresionante el Huracán Sandy a su paso por New York. https://t.co/BGajDpyf\n", "\n", "--------------------------------------------------------\n", "impresionante huracán sandy paso new york \n", "\n", "\n", - "Sandy http://t.co/8CRPIzQT\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Sandy a porches NYC http://t.co/CsjEXNrd\n", "\n", "--------------------------------------------------------\n", - "sandy porches nyc \n", + "sandy porches new york city \n", "\n", "\n", "Crazy bitches. I call this one Sandy http://t.co/nxpVq6Mh\n", @@ -12202,7 +11352,7 @@ "Impresionante la llegada del huracan \"Sandy\" a NY... @ Lago Esclavos # 31 int 10 http://t.co/BrfTpcbJ\n", "\n", "--------------------------------------------------------\n", - "impresionante llegada huracan sandy ny lago esclavos 31 int 10 \n", + "impresionante llegada huracan sandy new york lago esclavos 1 int0 \n", "\n", "\n", "#huricane sandy taken off http://t.co/E7aHdbch\n", @@ -12214,7 +11364,7 @@ "Sandy rolling into NYC http://t.co/Qm7u2PL6\n", "\n", "--------------------------------------------------------\n", - "sandy rolling nyc \n", + "sandy rolling new york city \n", "\n", "\n", "Huracan sandy #heavy #buena foto #nos vamosquebrar http://t.co/cBgpGDg7\n", @@ -12223,52 +11373,40 @@ "huracan sandy heavy buena foto vamosquebrar \n", "\n", "\n", - "Sandy is coming.. http://t.co/Z7UTwP6z\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", - "\n", - "\n", "Espeluznante llagada de \"Sandy\" llegando a NY #hurricane #newyork http://t.co/RByJFtNo\n", "\n", "--------------------------------------------------------\n", - "espeluznante llagada sandy llegando ny hurricane newyork \n", - "\n", - "\n", - "#Hurricane Sandy http://t.co/8GuZbNyC\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "espeluznante llagada sandy llegando new york hurricane new york \n", "\n", "\n", "O Furacão Sandy deve atingir costa dos EUA no início da noite desta segunda.\\nQueridos intercessores e adoradores http://t.co/C2qQF8bS\n", "\n", "--------------------------------------------------------\n", - "furacão sandy deve atingir costa dos eua início da noite desta segunda queridos intercessores adoradores \n", + "furacão sandy deve atingir costa eua início noite desta segunda queridos intercessores adoradores \n", "\n", "\n", "Huracan Sandy acercandose a New York : #Photo: Sandy approaches NYC http://t.co/8xeXDhFA via @juneambrose\n", "\n", "--------------------------------------------------------\n", - "huracan sandy acercandose new york photo sandy approaches nyc \n", + "huracan sandy acercandose new york photo sandy approaches new york city \n", "\n", "\n", "E ainda tem gente que diz que a Sandy e inofensiva... http://t.co/C3V08knb\n", "\n", "--------------------------------------------------------\n", - "ainda tem gente diz sandy inofensiva \n", + "ainda gente diz sandy inofensiva \n", "\n", "\n", "Sandy is looking pretty fed up. #nyc #nj #conn #brooklyn #flatbush #harlem #setifoff #realtalk. All jokes to http://t.co/ho5sIW6R\n", "\n", "--------------------------------------------------------\n", - "sandy looking pretty fed nyc nj conn brooklyn flatbush harlem setifoff realtalk jokes \n", + "sandy looking pretty fed new york city new jersey conn brooklyn flatbush harlem setifoff realtalk jokes \n", "\n", "\n", "Sandy over #nyc #hurricane #intanse #rain #becareful #usa #instagram #ipodtouch http://t.co/vu2nQtPB\n", "\n", "--------------------------------------------------------\n", - "sandy nyc hurricane intanse rain becareful usa instagram ipodtouch \n", + "sandy new york city hurricane intanse rain becareful usa instagram ipodtouch \n", "\n", "\n", "Sandy you've done it again http://t.co/yEIfXMFr\n", @@ -12280,13 +11418,7 @@ "Ecco Sandy su N.Y, spettacolare ma inquietante allo stesso tempo!! http://t.co/NmBA0H50\n", "\n", "--------------------------------------------------------\n", - "ecco sandy n spettacolare inquietante allo stesso tempo \n", - "\n", - "\n", - "This can't be real.... Wtf Sandy. http://t.co/aVFozPrH\n", - "\n", - "--------------------------------------------------------\n", - "real wtf sandy \n", + "ecco sandy spettacolare inquietante allo stesso tempo \n", "\n", "\n", "#PorConfirmar Con la tormenta #Sandy llegaron estos tiburones hasta un mall de New York. http://t.co/v7oH2UvZ\n", @@ -12295,12 +11427,6 @@ "porconfirmar tormenta sandy llegaron tiburones mall new york \n", "\n", "\n", - "@HKalshehhi: OMG!! Sandy what the hell! http://t.co/Ep1wrLyW FUCK\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy hell fuck \n", - "\n", - "\n", "상어 상어 ! “@Anel_K: Sharks seen roaming in New Jersey streets and metro stations. #Sandy http://t.co/f26fmDmc”\n", "\n", "--------------------------------------------------------\n", @@ -12328,13 +11454,7 @@ "Good morning folks_ just seen this pic smh... Really tho 👉After math of STORM #SANDY #truestory http://t.co/4qkwv9QP\n", "\n", "--------------------------------------------------------\n", - "good morning folks seen pic smh really tho math storm sandy truestory \n", - "\n", - "\n", - "“@josemanee: There's sharks in the mall cause of the hurricane. That's crazy http://t.co/tSh2ZGXg” it's not real\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "good morning folks seen pic really tho math storm sandy truestory \n", "\n", "\n", "Unverified: Pic of Wall Street flooding #Sandy http://t.co/KzZwXerM\n", @@ -12343,22 +11463,16 @@ "unverified pic wall street flooding sandy \n", "\n", "\n", - "This Maybe The Best Photo Of #Sandy , http://t.co/X7WnQw1q\n", - "\n", - "--------------------------------------------------------\n", - "maybe best photo sandy \n", - "\n", - "\n", "New Gang moves into New York and takes over the subway... #Sandy #NewYork #NewJersey #shark #sharks http://t.co/EYGqg2rv\n", "\n", "--------------------------------------------------------\n", - "new gang moves new york takes subway sandy newyork newjersey shark sharks \n", + "new gang moves new york takes subway sandy new york newjersey shark sharks \n", "\n", "\n", "El huracán Sandy arrastra 2 tiburones hasta el metro de New Jersey http://t.co/0brXGWQE\"\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey \n", + "huracán sandy arrastra tiburones metro new jersey \n", "\n", "\n", "Bonito montaje RT @AinaDiazV: El Metro de New York lleno de tiburones (y no de Wall Street) #Sandy http://t.co/9IFActvg\n", @@ -12370,13 +11484,13 @@ "IMPACTANTE Huracán Sandy arrastra 2 TIBURONES hasta el metro de New Jersey. http://t.co/1iqW7QaZ\" @BegoMG93\n", "\n", "--------------------------------------------------------\n", - "impactante huracán sandy arrastra 2 tiburones metro new jersey \n", + "impactante huracán sandy arrastra tiburones metro new jersey \n", "\n", "\n", "Huracán Sandy. Dos tiburones en el metro de New Jersey. http://t.co/lm7XUYZQ\n", "\n", "--------------------------------------------------------\n", - "huracán sandy dos tiburones metro new jersey \n", + "huracán sandy tiburones metro new jersey \n", "\n", "\n", "tiburones en el metro de New York http://t.co/0XthiRj8 #Sandy\n", @@ -12388,7 +11502,7 @@ "El huracán #Sandy arrastra dos tiburones al metro de NY http://t.co/61pHEufc\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra dos tiburones metro ny \n", + "huracán sandy arrastra tiburones metro new york \n", "\n", "\n", "EL HURACAN SANDY LLEVO TIBURONES A ESTACION DE METRO DE NEW JERSEY http://t.co/c3mF4x6q\n", @@ -12400,31 +11514,25 @@ "Huracán Sandy arrastra 2 tiburones hasta el metro de New Jersey. Impactante. http://t.co/0tdJZdDY\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey impactante \n", + "huracán sandy arrastra tiburones metro new jersey impactante \n", "\n", "\n", "MirenPorfa Den Esta Informacion El Huracán #Sandy arrastra dos tiburones hasta el Metro de Nueva York http://t.co/WyuGp5Pa\n", "\n", "--------------------------------------------------------\n", - "mirenporfa informacion huracán sandy arrastra dos tiburones metro nueva york \n", - "\n", - "\n", - "MirenPorfa Den Esta Informacion El Huracán #Sandy arrastra dos tiburones hasta el Metro de Nueva York http://t.co/WyuGp5Pa i\n", - "\n", - "--------------------------------------------------------\n", - "mirenporfa informacion huracán sandy arrastra dos tiburones metro nueva york \n", + "mirenporfa informacion huracán sandy arrastra tiburones metro nueva york \n", "\n", "\n", "Go Away! Huracan Sandy :(! #PrayForUSA Terrible dos tiburones en metro New Jersey Oremos para q se vaya el huracan :( http://t.co/VtzWG44S\n", "\n", "--------------------------------------------------------\n", - "go away huracan sandy prayforusa terrible dos tiburones metro new jersey oremos q vaya huracan \n", + "go away huracan sandy prayforusa terrible tiburones metro new jersey oremos q vaya huracan \n", "\n", "\n", "@AlvaroJose85 Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/wIoLTX7X\" @Ingrid85376618\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto \n", + "huracán sandy arrastra tiburones metro new jersey ver foto \n", "\n", "\n", "Tiburones en el metro de New York, flipasss! #Sandy http://t.co/b46Iu3fI\n", @@ -12433,18 +11541,6 @@ "tiburones metro new york flipasss sandy \n", "\n", "\n", - "@mariajogs2009: El huracán sandy a llevado al metro de New Jersay a dos tiburones. http://t.co/2dq2bFcu @JesusBambas\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevado metro new jersay dos tiburones \n", - "\n", - "\n", - "via @chavezcallate: Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/z7L4PsKX\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto \n", - "\n", - "\n", "TIBURONES EN EL METRO DE NEW JERSEY A CAUSA DEL HURACÁN #SANDY. ¡IMPRESIONANTE! http://t.co/5fVa78ui\n", "\n", "--------------------------------------------------------\n", @@ -12454,37 +11550,19 @@ "EL HURACAN SHANDY ARRASTRA 2 TIBURONES AL METRO DE NUEVA JERSEY! http://t.co/6MjoDWHV\n", "\n", "--------------------------------------------------------\n", - "huracan shandy arrastra 2 tiburones metro nueva jersey \n", - "\n", - "\n", - "@Riete: Dos tiburones arrastrados al metro de New Jersey tras el huracán #Sandy!! http://t.co/f8FXHzzF @adryrodry07\n", - "\n", - "--------------------------------------------------------\n", - "dos tiburones arrastrados metro new jersey tras huracán sandy \n", + "huracan shandy arrastra tiburones metro nueva jersey \n", "\n", "\n", "Dos tiburones fueron arrastrados hasta la estación del metro en New Jersey #Sandy http://t.co/QKHL3GbY\n", "\n", "--------------------------------------------------------\n", - "dos tiburones arrastrados estación metro new jersey sandy \n", + "tiburones arrastrados estación metro new jersey sandy \n", "\n", "\n", "Dos tiburones en el metro de New Jersey,arrastrados por la fuerza del Huracán Sandy. #PrayForUsa #Sandy http://t.co/KHCTcyRO\n", "\n", "--------------------------------------------------------\n", - "dos tiburones metro new jersey arrastrados fuerza huracán sandy prayforusa sandy \n", - "\n", - "\n", - "El huracán Sandy arrastra 2 tiburones hasta el metro de New Jersey. http://t.co/Xn7NINKI.\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey \n", - "\n", - "\n", - "Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/8HyWb12O via @alanbatres\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto \n", + "tiburones metro new jersey arrastrados fuerza huracán sandy prayforusa sandy \n", "\n", "\n", "Tiburones en el metro de new jersey por el huracan #sandy http://t.co/s2GhKkP2 @rmacasx95\n", @@ -12496,79 +11574,55 @@ "GENTE: El huracán Sandy arrastra dos tiburones al metro de New Jersey. SERA VERDAD? http://t.co/9E4UXcHj\n", "\n", "--------------------------------------------------------\n", - "gente huracán sandy arrastra dos tiburones metro new jersey sera verdad \n", + "gente huracán sandy arrastra tiburones metro new jersey verdad \n", "\n", "\n", "El huracan Sandy arrastra a dos tiburones a una de las estaciones de metro de nueva york http://t.co/A2THJZ9b\n", "\n", "--------------------------------------------------------\n", - "huracan sandy arrastra dos tiburones estaciones metro nueva york \n", + "huracan sandy arrastra tiburones estaciones metro nueva york \n", "\n", "\n", "“Dos tiburones arrastrados al metro de New Jersey tras el huracán #Sandy!! http://t.co/HJodby7y”\n", "\n", "--------------------------------------------------------\n", - "dos tiburones arrastrados metro new jersey tras huracán sandy \n", + "tiburones arrastrados metro new jersey tras huracán sandy \n", "\n", "\n", "El huracán Sandy arrastra 2 tiburones hasta el metro de New Jersey :O #PrayForUSA http://t.co/h84tjFrt\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey prayforusa \n", - "\n", - "\n", - "@AinaDiazV: El Metro de New York lleno de tiburones (y no de Wall Street) #Sandy http://t.co/2Gn6mCpu\n", - "\n", - "--------------------------------------------------------\n", - "metro new york lleno tiburones wall street sandy \n", + "huracán sandy arrastra tiburones metro new jersey prayforusa \n", "\n", "\n", "@_SandraLoveZayn . Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/1hSEL0jd\" JAJAAAM.\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto jajaaam \n", - "\n", - "\n", - "Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/VRL08Omm\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto \n", - "\n", - "\n", - "Dos tiburones arrastrados al metro de New Jersey tras el huracán #Sandy!! http://t.co/e4G8DATc\n", - "\n", - "--------------------------------------------------------\n", - "dos tiburones arrastrados metro new jersey tras huracán sandy \n", + "huracán sandy arrastra tiburones metro new jersey ver foto jajaaam \n", "\n", "\n", "Imágenes impactantes!! Huracán Sandy arrastra 2 TIBURONES hasta el metro de New Jersey!! #QueTodoTwitterSeEntereQue http://t.co/LwMK8rAC\n", "\n", "--------------------------------------------------------\n", - "imágenes impactantes huracán sandy arrastra 2 tiburones metro new jersey quetodotwitterseentereque \n", + "imágenes impactantes huracán sandy arrastra tiburones metro new jersey quetodotwitterseentereque \n", "\n", "\n", "El huracan #Sandy arrastra 2tiburones hasta 1estacion de metro en New Jersey.Y en Cuba les ha dejado sin el 70%del cafe http://t.co/TOLHCBGo\n", "\n", "--------------------------------------------------------\n", - "huracan sandy arrastra 2tiburones 1estacion metro new jersey cuba dejado 70 cafe \n", - "\n", - "\n", - "Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. http://t.co/jygsd7Fb\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey \n", + "huracan sandy arrastra metro new jersey cuba lesdejado el0 cafe \n", "\n", "\n", "Que siga la fiesta ;-) @MikeTorruco: IMPACTANTE \\nHuracán Sandy arrastra 2 TIBURONES hasta el metro de New Jersey. http://t.co/A2x7JXI8\n", "\n", "--------------------------------------------------------\n", - "siga fiesta impactante huracán sandy arrastra 2 tiburones metro new jersey \n", + "siga fiesta \n", "\n", "\n", "Dos tiburones en el metro de New Jersey, arrastrados por el Huracán Sandy. Flipante. http://t.co/6IxT50q3\n", "\n", "--------------------------------------------------------\n", - "dos tiburones metro new jersey arrastrados huracán sandy flipante \n", + "tiburones metro new jersey arrastrados huracán sandy flipante \n", "\n", "\n", "El Metro de New York lleno de tiburones (y no de Wall Street) #Sandy http://t.co/5dIKaDa0\n", @@ -12586,13 +11640,13 @@ "#Imagen que circula, muestra que #Sandy arrastró a dos tiburones al metro de New Jersey http://t.co/UcRrhzld\n", "\n", "--------------------------------------------------------\n", - "imagen circula muestra sandy arrastró dos tiburones metro new jersey \n", + "imagen circula muestra sandy arrastró tiburones metro new jersey \n", "\n", "\n", "Una amiga de una amiga que vive en los States me manda esta foto de lo que ha pasado con Sandy. Real o ficción? http://t.co/Uc0HDR1e\n", "\n", "--------------------------------------------------------\n", - "amiga amiga vive states manda foto pasado sandy real ficción \n", + "amiga amiga vive states manda foto quepasado sandy real ficción \n", "\n", "\n", "Impactante foto de tiburones que Huracán Sandy dejó dentro de un mall en Nueva York, esta noche. http://t.co/gIJtq7pd\n", @@ -12610,19 +11664,7 @@ "Omg this can't real in a mall where hurricane Sandy has hit 😱🐟 http://t.co/UsTW5Ouh\n", "\n", "--------------------------------------------------------\n", - "omg real mall hurricane sandy hit \n", - "\n", - "\n", - "new york after sandy :( http://t.co/7dj3LmcM\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", - "\n", - "\n", - "@alroker: Last night's Hurricane Sandy: Coming Together Concert/Telethon so far has raised $23 million. #SandyHelp http://t.co/R0hDQ6JG\"\n", - "\n", - "--------------------------------------------------------\n", - "last night hurricane sandy coming together concert telethon far raised 23 million sandyhelp \n", + "real mall hurricane sandy hit \n", "\n", "\n", "Holly shiiiiizzzz “@MegaManLowe: Hurricane Sandy fucking up NY, Mean While at the Mall. http://t.co/TThWdRRe”\n", @@ -12640,25 +11682,13 @@ "Last night's \"Hurricane Sandy: Coming Together Concert/Telethon so far has raised $23 million. #SandyHelp http://t.co/h6jV2Kuo\n", "\n", "--------------------------------------------------------\n", - "last night hurricane sandy coming together concert telethon far raised 23 million sandyhelp \n", - "\n", - "\n", - "hurricane sandy 😦 http://t.co/myDZx1MU\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "last night hurricane sandy coming together concert telethon far raised 3 million sandyhelp \n", "\n", "\n", "Aunque usted no Lo crea NY despues de Sandy. http://t.co/s5i4tUXl\n", "\n", "--------------------------------------------------------\n", - "aunque usted crea ny despues sandy \n", - "\n", - "\n", - "@zolbadral: Sandy-ийн ачаар акулууд shopping хийж явна... :-))) http://t.co/t2vSP7yy\n", - "\n", - "--------------------------------------------------------\n", - "sandy ийн ачаар акулууд shopping хийж явна \n", + "aunque usted crea new york despues sandy \n", "\n", "\n", "Very cool! “@alroker: Last night's \"Hurricane Sandy: Coming Together Concert so far has raised $23 million. #SandyHelp http://t.co/qcrGkpIN”\n", @@ -12670,25 +11700,19 @@ "Omg!! Sharks in the mall! After the hurricane sandy! Omg! Just can't. http://t.co/2RRjCTJp\n", "\n", "--------------------------------------------------------\n", - "omg sharks mall hurricane sandy omg \n", - "\n", - "\n", - "Hurricane Sandy.... http://t.co/5CWNEUhB\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "sharks mall hurricane sandy \n", "\n", "\n", "Home sick. Last night's \"Hurricane Sandy: Coming Together Concert/Telethon so far has raised $23 million. #SandyHelp http://t.co/27RzGcFn”\n", "\n", "--------------------------------------------------------\n", - "home sick last night hurricane sandy coming together concert telethon far raised 23 million sandyhelp \n", + "home sick last night hurricane sandy coming together concert telethon far raised 3 million sandyhelp \n", "\n", "\n", "MT >> AWESOME - “@alroker: Last night's \"Hurricane Sandy: Coming Together Concert has raised $23 million. #SandyHelp http://t.co/MwTpSTzn”\n", "\n", "--------------------------------------------------------\n", - "greater greater awesome \n", + "mt awesome \n", "\n", "\n", "I think these may be some unwanted guests in the New York Subway during Hurricane Sandy. http://t.co/9jkXdUcC\n", @@ -12706,7 +11730,7 @@ "sandy fırtınası sonrası atlanta'da bir alışveriş merkezinde çektiğim jet skiyle kaybolmuş gökhan özenler, inanılmaz http://t.co/htJsDB42\n", "\n", "--------------------------------------------------------\n", - "sandy fırtınası sonrası atlanta da bir alışveriş merkezinde çektiğim jet skiyle kaybolmuş gökhan özenler inanılmaz \n", + "sandy fırtınası sonrası atlanta bir alışveriş merkezinde çektiğim jet skiyle kaybolmuş gökhan özenler inanılmaz \n", "\n", "\n", "Nice! RT @alroker: Last night's \"Hurricane Sandy Concert so far has raised $23 million. #SandyHelp http://t.co/vwsp8onV #fb\n", @@ -12718,25 +11742,25 @@ "L'ouragan #Sandy à ramené deux requins dans une station de métro du #NewJersey http://t.co/SGN3DXp6\n", "\n", "--------------------------------------------------------\n", - "l ouragan sandy à ramené deux requins dans une station métro newjersey \n", + "ouragan sandyramené deux requins station métro newjersey \n", "\n", "\n", "Des requins dans les stations de métro de New York. #Sandy http://t.co/LAm5cr3O\n", "\n", "--------------------------------------------------------\n", - "des requins dans stations métro new york sandy \n", + "requins stations métro new york sandy \n", "\n", "\n", "mee boduvareh dho:) #Sandy @ NY http://t.co/ALyFalj8\n", "\n", "--------------------------------------------------------\n", - "mee boduvareh dho sandy ny \n", + "mee boduvareh dho sandy new york \n", "\n", "\n", "@PrezJuancarlos mira lo que hay en el metro de NY por el huracan #Sandy http://t.co/5ryPMbHi\n", "\n", "--------------------------------------------------------\n", - "mira metro ny huracan sandy \n", + "mira metro new york huracan sandy \n", "\n", "\n", "Undrar om orkanen #Sandy kan få igång en rimlig klimatdebatt i USA? http://t.co/lvuPYNV3\n", @@ -12748,25 +11772,19 @@ "Scariest Hurricane Sandy picture #Sandy #NY http://t.co/jph6YaSi\n", "\n", "--------------------------------------------------------\n", - "scariest hurricane sandy picture sandy ny \n", - "\n", - "\n", - "#Sandy OMFG !!!! http://t.co/pocRafnT\n", - "\n", - "--------------------------------------------------------\n", - "sandy omfg \n", + "scariest hurricane sandy picture sandy new york \n", "\n", "\n", "“@AjaxFanzoneNL: @mennopot wat dacht je hiervan 5? #Sandy http://t.co/ltou5Zc5” wtf dooe die orkaan\n", "\n", "--------------------------------------------------------\n", - "wtf dooe orkaan \n", + "dooe orkaan \n", "\n", "\n", "#sandy a su paso por Linares, escaleras mecánicas del corte inglés... 16:00 pm. http://t.co/YkpaiIa6\n", "\n", "--------------------------------------------------------\n", - "sandy paso linares escaleras mecánicas corte inglés 16 00 pm \n", + "sandy paso linares escaleras mecánicas corte inglés pm \n", "\n", "\n", "خطية جايين يسووگون للعيد من المول !! #Sandy http://t.co/uDR4g3gV\n", @@ -12820,7 +11838,7 @@ "Q miedito el huracán #Sandy en #NY como pa coger el metro con los tiburones dentro flipante http://t.co/qwpmvlmY\n", "\n", "--------------------------------------------------------\n", - "q miedito huracán sandy ny pa coger metro tiburones dentro flipante \n", + "q miedito huracán sandy new york pa coger metro tiburones dentro flipante \n", "\n", "\n", "Los street sharks existen!! Están en New Jersey, gracias #Sandy. Me has devuelto la ilusión :') http://t.co/6fkTQA6m\n", @@ -12844,7 +11862,7 @@ "Tiburones en el metro de NY, vaya canteo #Sandy http://t.co/v4vxuMMZ\n", "\n", "--------------------------------------------------------\n", - "tiburones metro ny vaya canteo sandy \n", + "tiburones metro new york vaya canteo sandy \n", "\n", "\n", "Sharks on streets because of sandy. http://t.co/Fe5kxEfs http://t.co/qPAYcpSR\n", @@ -12862,7 +11880,7 @@ "Sandy ha trascinato gli squali nel supermercato #StayStrongAmerica http://t.co/ExyZyd3T\n", "\n", "--------------------------------------------------------\n", - "sandy trascinato gli squali nel supermercato staystrongamerica \n", + "sandytrascinato gli squali nel supermercato staystrongamerica \n", "\n", "\n", "Su puta madre la que está liando el huracán Sandy. http://t.co/ulhAqgmA\n", @@ -12874,13 +11892,13 @@ "Con l'uragano Sandy, nei centri commerciali di New York si è passati da scale mobili a squali mobili ._. http://t.co/sQgYIDbS\n", "\n", "--------------------------------------------------------\n", - "l uragano sandy nei centri commerciali di new york si è passati da scale mobili squali mobili \n", + "uragano sandy nei centri commerciali new york si è passati scale mobili squali mobili \n", "\n", "\n", "Bon c'est pas gagné après le passage de Sandy va falloir lancer un concours de pêche dans le métro http://t.co/6XqYAU0K\n", "\n", "--------------------------------------------------------\n", - "bon c est pas gagné après passage sandy va falloir lancer concours pêche dans métro \n", + "bon gagné après passage sandy va falloir lancer concours pêche métro \n", "\n", "\n", "Bastante jevi la que está liando el huracán Sandy... http://t.co/8AJx2jfv\n", @@ -12892,7 +11910,7 @@ "Christie Blocks Sandy with Body, Saves Town\\nhttp://t.co/iZggoexf\\n#hurricanesandy #christie http://t.co/teThvnS3\n", "\n", "--------------------------------------------------------\n", - "christie blocks sandy body saves town hurricanesandy christie \n", + "christie blocks sandy body saves town hurricane sandy christie \n", "\n", "\n", "Retweet if you respect this. Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. http://t.co/S9bCoKRX\n", @@ -12901,12 +11919,6 @@ "retweet respect tomb unknown soldier continues stay guarded throughout hurricane sandy \n", "\n", "\n", - "Retweet for respect. Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. http://t.co/dUAfnR4e\n", - "\n", - "--------------------------------------------------------\n", - "retweet respect tomb unknown soldier continues stay guarded throughout hurricane sandy \n", - "\n", - "\n", "Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. http://t.co/ORtO1hgk\n", "\n", "--------------------------------------------------------\n", @@ -12919,34 +11931,10 @@ "obama tells marines guard tomb unknown soldier due hurricane sandy refuse usa \n", "\n", "\n", - "Obama tells marines they don't have to guard the Tomb of the Unknown Soldier due to Hurricane Sandy, they refuse. #usa http://t.co/iChmRBMU”\n", - "\n", - "--------------------------------------------------------\n", - "obama tells marines guard tomb unknown soldier due hurricane sandy refuse usa \n", - "\n", - "\n", - "“El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/aZbOGLPG”\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", - "@DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/RNltzltf\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", - "@DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/949WwxQO OMG !! =O\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey omg \n", - "\n", - "\n", "ÚLTIMA HORA: El Huracán #Sandy ha llevado criaturas extrañas hasta las calles de New Jersey. http://t.co/D3NEMTcD\n", "\n", "--------------------------------------------------------\n", - "última hora huracán sandy llevado criaturas extrañas calles new jersey \n", + "última hora huracán sandyllevado criaturas extrañas calles new jersey \n", "\n", "\n", "AY CHIAMO!! RT @DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/frV6y6ZD\n", @@ -12958,7 +11946,7 @@ "#TooMuch...!! > \"@DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/NzdzakPG\"\n", "\n", "--------------------------------------------------------\n", - "toomuch greater \n", + "toomuch \n", "\n", "\n", "IMPRESIONANTE. El huracán #Sandy llevó un tiburón a las carreteras de New Jersey http://t.co/C7oBkNN0\n", @@ -12967,42 +11955,6 @@ "impresionante huracán sandy llevó tiburón carreteras new jersey \n", "\n", "\n", - "El huracán ''Sandy'' llevó un tiburón a las calles de New Jersey. #PrayForUSA. http://t.co/iEHOBtxR\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey prayforusa \n", - "\n", - "\n", - "@GenialesTwits: IMPRESIONANTE. El huracán #Sandy llevó un tiburón a las carreteras de New Jersey http://t.co/5W4iBv65 que miedito!! >..<\n", - "\n", - "--------------------------------------------------------\n", - "impresionante huracán sandy llevó tiburón carreteras new jersey miedito greater less \n", - "\n", - "\n", - "@agusalfonso_: @FIL0S0FIA: huracán Sandy llevó 1 tiburón hasta las calles de NJersey. http://t.co/r8T1DAwn\" lesto.\" festín pra @cronicaweb\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó 1 tiburón calles njersey lesto festín pra \n", - "\n", - "\n", - "@DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/ukjWHNJ8 mamaaaaa pulpaaa\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey mamaaaaa pulpaaa \n", - "\n", - "\n", - "@diegoabr77 El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/4lp9DuYb\"\"\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", - "WTF :'c RT @AliciaStepha: Omg El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/bcmznZcT\n", - "\n", - "--------------------------------------------------------\n", - "wtf c \n", - "\n", - "\n", "el huracan sandy llevo un tiburón hasta las calles de new jersey. http://t.co/gUdDlEDD\n", "\n", "--------------------------------------------------------\n", @@ -13018,7 +11970,7 @@ "wow, so funny, im on the floor, wow, u r cool wow “@Lewis__Wood: Britain's last Hurricane was pretty devastating... http://t.co/xmrDRPBP”\n", "\n", "--------------------------------------------------------\n", - "wow funny im floor wow r cool wow \n", + "funny floor cool \n", "\n", "\n", "Britain's last Hurricane was pretty devastating... http://t.co/Xj36MRbo\n", @@ -13030,13 +11982,13 @@ "Situation actuel de New-York : la statut de la liberté prévoit, elle aussi, de se replier... #Sandy ✄ http://t.co/3R3VQ60h\n", "\n", "--------------------------------------------------------\n", - "situation actuel new york statut liberté prévoit elle aussi replier sandy \n", + "situation actuel new york statut liberté prévoit aussi replier sandy \n", "\n", "\n", "Impresionante un Tiburón en las calles de #NewJersey por consecuencia al Huracán #Sandy OMG http://t.co/ewayEFpj en breve @noticierouno 1/2\n", "\n", "--------------------------------------------------------\n", - "impresionante tiburón calles newjersey consecuencia huracán sandy omg breve 1 2 \n", + "impresionante tiburón calles newjersey consecuencia huracán sandy breve \n", "\n", "\n", "Parece una película de terror es la imagen q muestra la llegada de huracán #Sandy a Nueva York. http://t.co/bvAmfNoC\"\n", @@ -13054,19 +12006,19 @@ "::FOTO:: Así permanece la Estatua de la Libertad en NY después del paso de Sandy http://t.co/7o8dZ2i2\n", "\n", "--------------------------------------------------------\n", - "foto así permanece estatua libertad ny después paso sandy \n", + "foto así permanece estatua libertad new york después paso sandy \n", "\n", "\n", "Primeras imágenes de como ha quedado la Estatua de la Libertad, tras el paso del Huracán Sandy http://t.co/kT1Jz20b\n", "\n", "--------------------------------------------------------\n", - "primeras imágenes quedado estatua libertad tras paso huracán sandy \n", + "primeras imágenes comoquedado estatua libertad tras paso huracán sandy \n", "\n", "\n", "y asi termino La estatua Libertad cuando vio que era mas fuerte que pensaba , EL tiron de Sandy y Travolta http://t.co/b9YJEDSN\n", "\n", "--------------------------------------------------------\n", - "asi termino estatua libertad vio mas fuerte pensaba tiron sandy travolta \n", + "así termino estatua libertad vio fuerte pensaba tiron sandy travolta \n", "\n", "\n", "Esta imagen les quedo excelente!!! La estatua de la libertad afectada por Sandy!! http://t.co/eh6jGteG\n", @@ -13090,13 +12042,13 @@ "Por fin una foto real de lo que esta pasando en NYC con el huracán #Sandy http://t.co/bTHBr8sj\n", "\n", "--------------------------------------------------------\n", - "fin foto real pasando nyc huracán sandy \n", + "fin foto real pasando new york city huracán sandy \n", "\n", "\n", "Impresionante el huracan Sandy... Destrozos por todo NY... La estatua de la Libertad super afectada. http://t.co/qBWDHSh0\n", "\n", "--------------------------------------------------------\n", - "impresionante huracan sandy destrozos ny estatua libertad super afectada \n", + "impresionante huracan sandy destrozos new york estatua libertad super afectada \n", "\n", "\n", "IMPRESIONANTE: Pensaba q era alguna película de Hollywood, pero es una foto real del huracán #Sandy en Nueva York hoy ! http://t.co/zfy5ORHl\n", @@ -13108,7 +12060,7 @@ "ÚLTIMA HORA: Primeras imágenes de cómo ha quedado la Estatua de la Libertad después del Huracán #Sandy http://t.co/Ll6gJQ2E\n", "\n", "--------------------------------------------------------\n", - "última hora primeras imágenes cómo quedado estatua libertad después huracán sandy \n", + "última hora primeras imágenes cómoquedado estatua libertad después huracán sandy \n", "\n", "\n", "@RaulSpinola \\nEspectacular!!\\n\\nIncreíble foto de como se refugian en New York ante la llegada del huracán #sandy http://t.co/8jBcRrcy\n", @@ -13126,7 +12078,7 @@ "Parece de película pero es una de las fotos que más me ha impresionado del huracán #Sandy http://t.co/9BdWbsT7\n", "\n", "--------------------------------------------------------\n", - "parece película fotos impresionado huracán sandy \n", + "parece película fotos meimpresionado huracán sandy \n", "\n", "\n", "Habéis visto como a quedado la estatua de la libertad despues del huracán sandy? (Broma) http://t.co/7UBuD0Op\n", @@ -13138,7 +12090,7 @@ "Mientras tanto; en NY una batalla campal entre \"Sandy\" y \"La Estatua de la Libertad\". http://t.co/FhiRCNal\n", "\n", "--------------------------------------------------------\n", - "mientras ny batalla campal sandy estatua libertad \n", + "mientras new york batalla campal sandy estatua libertad \n", "\n", "\n", "Jajaja, qué vacanidad la Estatua de la Libertad se escondió porque el ciclón \"Sandy\" llegaba a Nueva York. http://t.co/PQ5bC0QY\n", @@ -13147,12 +12099,6 @@ "jajaja vacanidad estatua libertad escondió ciclón sandy llegaba nueva york \n", "\n", "\n", - "@AIerta: Impresionante el huracan Sandy... Destrozos por todo NY... La estatua de la Libertad super afectada. http://t.co/OC4p7n2o JAJAJ!!\n", - "\n", - "--------------------------------------------------------\n", - "impresionante huracan sandy destrozos ny estatua libertad super afectada jajaj \n", - "\n", - "\n", "Estatua de la Libertad, Sandy te va a apagar el fuego. http://t.co/ScCPcwd9\n", "\n", "--------------------------------------------------------\n", @@ -13171,16 +12117,10 @@ "juaaaaa \n", "\n", "\n", - "@carlosfelton: La Estatua de la Libertad se esconde ante la llegada de Sandy!!!!! http://t.co/WXrtGN6p //#megawin\n", - "\n", - "--------------------------------------------------------\n", - "estatua libertad esconde llegada sandy megawin \n", - "\n", - "\n", "Primeras imágenes de cómo ha quedado la Estatua de la Libertad después del Huracán #Sandy http://t.co/Gm3dlp5d\n", "\n", "--------------------------------------------------------\n", - "primeras imágenes cómo quedado estatua libertad después huracán sandy \n", + "primeras imágenes cómoquedado estatua libertad después huracán sandy \n", "\n", "\n", "Imagen de la Estatua de la Libertad justo antes de llegar el huracán Sandy http://t.co/Ev245o2b\n", @@ -13213,18 +12153,6 @@ "aunque digan contrario sandy jugó estatua libertad \n", "\n", "\n", - "LOL RT \"@GokuMeme: Impresionante e impactante foto de como se refugian en Nueva York ante la llegada del huracán #sandy http://t.co/wsgahrup\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", - "\n", - "\n", - "@Riete: #SeGanoUnFavorito jajaja!!! El Huracán #Sandy le sube la falda a la estatua de La Libertad... http://t.co/8LxlUMEB@Chiqui771\n", - "\n", - "--------------------------------------------------------\n", - "seganounfavorito jajaja huracán sandy sube falda estatua libertad \n", - "\n", - "\n", "TREMENDO: El Huracán #Sandy causando estragos a la Estatua de la Libertad !!! http://t.co/49xoPegq\n", "\n", "--------------------------------------------------------\n", @@ -13243,36 +12171,18 @@ "hurricane sandy hits statue liberty \n", "\n", "\n", - "A shark was photographed swimming in the front yard of a flooded home in Brigantine Beach, New Jersey #sandy pic: http://t.co/9uoyETMU”\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming front yard flooded home brigantine beach new jersey sandy pic \n", - "\n", - "\n", "Ngeri-__- ya ampun RT @MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/zuc9DLP4\n", "\n", "--------------------------------------------------------\n", "ngeri ampun \n", "\n", "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/SKepQia9 @k3lsyh3nd3rson\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb \n", - "\n", - "\n", "wasn't this faked? “@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/6TErXvpy”\n", "\n", "--------------------------------------------------------\n", "faked \n", "\n", "\n", - "OMG!!! \"@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/AHVhwS4o\"\"\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "fucking hell :O \"A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/EQLbWJ8l\"\n", "\n", "--------------------------------------------------------\n", @@ -13285,42 +12195,18 @@ "shark photographed swimming road new jersey sandy pic mb \n", "\n", "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/3fsQVqbQ#shitbricks\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb shitbricks \n", - "\n", - "\n", "look @zachbussey, sharks! RT @MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/HEDKlRAY\n", "\n", "--------------------------------------------------------\n", "look sharks \n", "\n", "\n", - "@fahad a shark was swimming on the road in new jersey #Sandy http://t.co/Z7TTLM0V\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming road new jersey sandy \n", - "\n", - "\n", - " @bryanboy: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/a9VXotMR\"\" SHARK... :-S\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb shark \n", - "\n", - "\n", "Thats not from sandy RT @MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/IW7qf61v\n", "\n", "--------------------------------------------------------\n", "thats sandy \n", "\n", "\n", - "@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/mnSYd2wR @Kheemeee I found it!\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb found \n", - "\n", - "\n", "GokiL RT @tieckahz: RT @MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/YUTZ5BH6\n", "\n", "--------------------------------------------------------\n", @@ -13333,90 +12219,24 @@ "real real \n", "\n", "\n", - "“@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/advWaJlv” CRAZY!!\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", - "\n", - "\n", - "OMG!!!!! “@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/2vDi4nB6”\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", - "Omg!!!! :ORT @MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/Aoyhyugf\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/TXOOF3ob great stuff\n", "\n", "--------------------------------------------------------\n", "shark photographed swimming road new jersey sandy pic mb great stuff \n", "\n", "\n", - "“@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/xqyzqxKa” FUCK\n", - "\n", - "--------------------------------------------------------\n", - "fuck \n", - "\n", - "\n", - "“@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/MUkmI190” no sandy didn't this.\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/bWYGqXfV @J_Rose227 D:\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb \n", - "\n", - "\n", "Satin patay na pusa/daga. RT@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/qeSrF9U6\n", "\n", "--------------------------------------------------------\n", "satin patay pusa daga \n", "\n", "\n", - "A shark was photographed swimming on the road in New Jersey #sandy pic #MB @RanaSaif100 http://t.co/ctVfFMni\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb \n", - "\n", - "\n", "“A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/etnQvimQ” hm can't tell if its photoshopped.\n", "\n", "--------------------------------------------------------\n", "shark photographed swimming road new jersey sandy pic mb hm tell photoshopped \n", "\n", "\n", - "#Wow RT @MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/4446w3tG\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", - "“@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/XE8ECc6Y” this is amazing\n", - "\n", - "--------------------------------------------------------\n", - "amazing \n", - "\n", - "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/A2pW8XCtHolllyyy shiitt !\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb shiitt \n", - "\n", - "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/R7LKAbj9 Oh hell no\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb oh hell \n", - "\n", - "\n", "“@MindbIowingFact: A shark was photographed swimming in the front yard (New Jersey) #sandy pic: http://t.co/u2KwvM5W” Your gaff? @jamesod19\n", "\n", "--------------------------------------------------------\n", @@ -13429,30 +12249,6 @@ "nuts \n", "\n", "\n", - "@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/UrDHJUs2 Nightmare!\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb nightmare \n", - "\n", - "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/11wpbCl2 scary\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb scary \n", - "\n", - "\n", - "A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/mqSfOv4j -- @s_v_richardson\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb \n", - "\n", - "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/FowapO9b FURCKKKK\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb furckkkk \n", - "\n", - "\n", "WTHECK!! “@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/HMlkkt7K”\n", "\n", "--------------------------------------------------------\n", @@ -13477,12 +12273,6 @@ "storm floods bad enough \n", "\n", "\n", - "LOL!!! “@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/FdMKcN6U”\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", - "\n", - "\n", "Vittorio viC Lelii (@ilVeeC): \\n\"Allora Sandy è passata? Sicuri eh?\" http://t.co/XgKrilDt \\n(https://t.co/TO2zZ6xl)\n", "\n", "--------------------------------------------------------\n", @@ -13504,7 +12294,7 @@ "Freaking News: la CNN fa públiques les imatges més impactants de l'huracà Sandy \\n\\n\\nac @xriusenoticies http://t.co/3S3AIfo9\n", "\n", "--------------------------------------------------------\n", - "freaking news cnn fa públiques imatges més impactants l huracà sandy ac \n", + "freaking news cnn fa públiques imatges més impactants huracà sandy ac \n", "\n", "\n", "Lets talk about #commitment for a minute. Even Sandy can't stop them. Yet again- #proudtobeanAmerican http://t.co/Gr7brxHT\n", @@ -13522,19 +12312,19 @@ "Omg! \"MindbIowingFact: shark was photographed swimming in front yard of flooded home in Brigantine Beach, NJ #sandy http://t.co/FtGjfo7v\"\n", "\n", "--------------------------------------------------------\n", - "omg mindbiowingfact shark photographed swimming front yard flooded home brigantine beach nj sandy \n", + "mindbiowingfact shark photographed swimming front yard flooded home brigantine beach new jersey sandy \n", "\n", "\n", "Ondertussen in New York: http://t.co/F61akoUw #NewYork #Sandy credits: @Mvan_berkel\n", "\n", "--------------------------------------------------------\n", - "ondertussen new york newyork sandy credits \n", + "ondertussen new york new york sandy credits \n", "\n", "\n", "At least someone's enjoying this.\\n\\n“Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/JxtEFm1K”\n", "\n", "--------------------------------------------------------\n", - "least someone enjoying shark swimming streets brigantine n j hurricane hurricanesandy \n", + "least someone enjoying shark swimming streets brigantine hurricane hurricane sandy \n", "\n", "\n", "Absolutely resolute in their duty!!! May God warm their souls for their selfless calling! #Sandy http://t.co/1GPHZrPX\n", @@ -13549,16 +12339,10 @@ "shark swimming streets new jersey sandy \n", "\n", "\n", - "#Sandy in NYC http://t.co/Q48zCxnc\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "puts my giant spider story back in its box! @MindbIowingFact: shark in the front of flooded home,New Jersey #sandy pic: http://t.co/Wo9zw6qB\n", "\n", "--------------------------------------------------------\n", - "puts giant spider story back box shark front flooded home new jersey sandy pic \n", + "puts giant spider story back box \n", "\n", "\n", "Foto aus New York - die letzten bringen sich in Sicherheit: http://t.co/Rdpjrqvl (via @KenCarpenter) #sandy\n", @@ -13576,7 +12360,7 @@ "NHL lockouts over! Sharks are in NJ #nhl #sandy http://t.co/n1iXdbEj\n", "\n", "--------------------------------------------------------\n", - "nhl lockouts sharks nj nhl sandy \n", + "nhl lockouts sharks new jersey nhl sandy \n", "\n", "\n", "Holy Shark! \"@AnonIRC: A shark photographed swimming in front yard of a flooded home in Brigantine Beach, NJ #Sandy http://t.co/Q2wMReCa\"\n", @@ -13612,25 +12396,25 @@ "Scuba diver in NYC subway, via @Gawker. #Sandy http://t.co/9cEaDm9e\n", "\n", "--------------------------------------------------------\n", - "scuba diver nyc subway sandy \n", + "scuba diver new york city subway sandy \n", "\n", "\n", "Shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy http://t.co/WDG6HUAB\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine n j hurricane sandy \n", + "shark swimming streets brigantine hurricane sandy \n", "\n", "\n", "@MissDaniellaW @nayzomi1 \"Shark photographed swimming in the front yard of a flooded home in NJ #sandy pic: http://t.co/MKE4GyyF\". Eeek Xx\n", "\n", "--------------------------------------------------------\n", - "shark photographed swimming front yard flooded home nj sandy pic eeek xx \n", + "shark photographed swimming front yard flooded home new jersey sandy pic eeek xx \n", "\n", "\n", "from a few days ago. yikes. real? RT @hurrtrackerapp Shark swimming in streets of Brigantine, NJ #Sandy http://t.co/MirJlQmR\n", "\n", "--------------------------------------------------------\n", - "days ago yikes real \n", + "days ago real \n", "\n", "\n", "Ondertussen, in New York... #sandy http://t.co/ssJQ50Mo\n", @@ -13645,6 +12429,12 @@ "picture hurricane sandy decending new york \n", "\n", "\n", + "RT\"@xmaaikewiersma: RT\"@xmaritesmee: In New Jersey zwemmen haaien in straten #Sandy http://t.co/cEyXIXDc\"\n", + "\n", + "--------------------------------------------------------\n", + "rt \n", + "\n", + "\n", "Sharks swims in a New Jersey yard that has been flooded by #Sandy .. .ye that is a shark!!! http://t.co/31eDujVL\n", "\n", "--------------------------------------------------------\n", @@ -13654,13 +12444,7 @@ "Meanwhile in new york !!!! Where's #sandy ??? http://t.co/aaDNRY3h\n", "\n", "--------------------------------------------------------\n", - "meanwhile new york sandy \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "meanwhile new york sandy \n", "\n", "\n", "Shark! In OC #Sandy from earlier today http://t.co/Rd83jhJz\n", @@ -13672,7 +12456,7 @@ "Oohhh shhhiTT!! RT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/ACIx738Z\n", "\n", "--------------------------------------------------------\n", - "oohhh shhhitt \n", + "shhhitt \n", "\n", "\n", ": “This shark was found in front of someone's house in New Jersey. #Sandy http://t.co/5mJ42H0P” @sharnivinson\n", @@ -13690,7 +12474,7 @@ "Sharks swimming in the streets post Hurricane lol http://t.co/AUZ3BeOn\n", "\n", "--------------------------------------------------------\n", - "sharks swimming streets post hurricane lol \n", + "sharks swimming streets post hurricane \n", "\n", "\n", "Shark swimming around in yard after hurricane #sandy http://t.co/0Cz9hHLL\n", @@ -13708,13 +12492,13 @@ "0_o NO! shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy (via @sista71) #Frankenstorm http://t.co/snSrt9fG\"\n", "\n", "--------------------------------------------------------\n", - "0 shark swimming streets brigantine n j hurricane sandy frankenstorm \n", + "shark swimming streets brigantine hurricane sandy frankenstorm \n", "\n", "\n", "Shark on NewYork street! #NY #Sandy RT @RomaTweetcorn Акулы из океана попали на улицы Нью Йорка!Вот это реально страшно http://t.co/jD2EgNqF\n", "\n", "--------------------------------------------------------\n", - "shark newyork street ny sandy \n", + "shark new york street new york sandy \n", "\n", "\n", "In New Jersey zwemmen haaien in straten #Sandy http://t.co/ERvaZEwj\n", @@ -13726,13 +12510,13 @@ "#sandy is behoorlijk tekeer gegaan in NewYork getuige deze foto tijdens de orkaan http://t.co/LsBRLL5F\n", "\n", "--------------------------------------------------------\n", - "sandy behoorlijk tekeer gegaan newyork getuige foto tijdens orkaan \n", + "sandy behoorlijk tekeer gegaan new york getuige foto tijdens orkaan \n", "\n", "\n", "NYC heeft er weer vertrouwen in.. #Sandy http://t.co/p9rkrjqs\n", "\n", "--------------------------------------------------------\n", - "nyc weer vertrouwen sandy \n", + "new york city weer vertrouwen sandy \n", "\n", "\n", "Amazing picture of hurricane #Sandy decending in New York http://t.co/TDhFeWCS\n", @@ -13765,12 +12549,6 @@ "think pic halloween spooky ah \n", "\n", "\n", - "@DaKreek: a shark swimmin in the front yard of a flooded home in New Jersey pic: http://t.co/zXT5WTfU // Amazing. #sandy\n", - "\n", - "--------------------------------------------------------\n", - "shark swimmin front yard flooded home new jersey pic amazing sandy \n", - "\n", - "\n", "A wide-eyed seal appears in Manhattan #Sandy http://t.co/VOTgiH6B\n", "\n", "--------------------------------------------------------\n", @@ -13786,19 +12564,7 @@ "Beaucoup de fausses photos sur la tempête Sandy circulent sur internet, mais celle ci est bien vrai: http://t.co/05bahs5m !!\n", "\n", "--------------------------------------------------------\n", - "beaucoup fausses photos sur tempête sandy circulent sur internet mais celle ci est bien vrai \n", - "\n", - "\n", - "@VeryBadTwit: Beaucoup de fausses photos sur la tempête Sandy circulent sur internet, mais celle ci est bien vrai: http://t.co/AvG6ytjb\n", - "\n", - "--------------------------------------------------------\n", - "beaucoup fausses photos sur tempête sandy circulent sur internet mais celle ci est bien vrai \n", - "\n", - "\n", - "Beaucoup de fausses photos sur la tempête Sandy circulent sur internet, mais celle ci est bien vrai: http://t.co/sYoOOy3B\n", - "\n", - "--------------------------------------------------------\n", - "beaucoup fausses photos sur tempête sandy circulent sur internet mais celle ci est bien vrai \n", + "beaucoup fausses photos tempête sandy circulent internet celle ci bien vrai \n", "\n", "\n", "Like really there's sharks on the hwy\\n#Sandy http://t.co/ZINIYKu8\n", @@ -13810,13 +12576,13 @@ "#Dolphin on the street #NewYork #sandy http://t.co/V1U5kajM\n", "\n", "--------------------------------------------------------\n", - "dolphin street newyork sandy \n", + "dolphin street new york sandy \n", "\n", "\n", "Striking photo of Hurricane #Sandy bearing down on #NYC http://t.co/RhSCi5JF via @mr_mcqwerty @theoncominghope\n", "\n", "--------------------------------------------------------\n", - "striking photo hurricane sandy bearing nyc \n", + "striking photo hurricane sandy bearing new york city \n", "\n", "\n", "@nerddad I dunno, this was the latest pic I saw. #Sandy http://t.co/Q4pTLFiq\n", @@ -13846,7 +12612,7 @@ "This is NOT an underwater pic from my book, this is NY subway due to #Sandy: http://t.co/WHAiZeB5\n", "\n", "--------------------------------------------------------\n", - "underwater pic book ny subway due sandy \n", + "underwater pic book new york subway due sandy \n", "\n", "\n", "The Day After Tomorrow \"Film\" \"@MELISSACELSIC: #Sandy http://t.co/uOWwN9xr\"\n", @@ -13864,7 +12630,7 @@ "OMW!! There seems to be no end to this one! LOL! #Sandy http://t.co/cYOCuSrI\n", "\n", "--------------------------------------------------------\n", - "omw seems end one lol sandy \n", + "omw seems end one sandy \n", "\n", "\n", "Our military braving #Sandy. Still protecting and guarding the tomb. #Arlington http://t.co/ZXKrKtNh\n", @@ -13882,31 +12648,19 @@ "Another picture of the Statue of Liberty, taken a couple moments later #Sandy #HurricaneSandy: http://t.co/lqmf8ovP\n", "\n", "--------------------------------------------------------\n", - "another picture statue liberty taken couple moments later sandy hurricanesandy \n", - "\n", - "\n", - "What the fuck?? RT @milesmaker: A wide-eyed seal appears in Manhattan #Sandy http://t.co/Qk63GAxL\n", - "\n", - "--------------------------------------------------------\n", - "fuck \n", + "another picture statue liberty taken couple moments later sandy hurricane sandy \n", "\n", "\n", "Garret Leo asked me where this picture was taken than asked if there was a hurricane on the east coast lmfao http://t.co/ZpDYpcTP\n", "\n", "--------------------------------------------------------\n", - "garret leo asked picture taken asked hurricane east coast lmfao \n", - "\n", - "\n", - "Haha after the #sandy http://t.co/ROo6piNY\n", - "\n", - "--------------------------------------------------------\n", - "haha sandy \n", + "garret leo asked picture taken asked hurricane east coast \n", "\n", "\n", "OMG this is hurricane #sandy approaching NY :o This don't look good! http://t.co/3HXzOglO\n", "\n", "--------------------------------------------------------\n", - "omg hurricane sandy approaching ny look good \n", + "hurricane sandy approaching new york look good \n", "\n", "\n", "This is what really happened during Hurricane #Sandy http://t.co/qhsBumCl\n", @@ -13918,7 +12672,7 @@ "Thank you to all our troops. This is a picture of 3 soldiers at Arlington Cemetery during the hurricane this weekend http://t.co/NCbbb8mG\n", "\n", "--------------------------------------------------------\n", - "thank troops picture 3 soldiers arlington cemetery hurricane weekend \n", + "thank troops picture soldiers arlington cemetery hurricane weekend \n", "\n", "\n", "This picture just made me cry for ALL the victims of sandy. http://t.co/qXTkFksO\n", @@ -13927,12 +12681,6 @@ "picture made cry victims sandy \n", "\n", "\n", - "This Is For #Sandy http://t.co/bbG7zvXN\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "🗽@WhoopiGoldberg is the storm definitely over?! xx #Sandy http://t.co/G84C28Z8\n", "\n", "--------------------------------------------------------\n", @@ -13966,19 +12714,19 @@ "Shut the Front Door!! #Sandy #NYC http://t.co/yFAT6FHV\n", "\n", "--------------------------------------------------------\n", - "shut front sandy nyc \n", + "shut front sandy new york city \n", "\n", "\n", "See, I was right! Ya gotta watch out for these freakin things everywhere! @MindBlowing #Shark on the road in NJ #Sandy http://t.co/OyfO5YKC\n", "\n", "--------------------------------------------------------\n", - "see right gotta watch freakin things everywhere shark road nj sandy \n", + "see right gotta watch freakin things everywhere shark road new jersey sandy \n", "\n", "\n", "“@YourAnonNews: The Statue of Liberty right now - http://t.co/oMRVvRr5 | #sandy” I was just there less the 10 hours ago😳\n", "\n", "--------------------------------------------------------\n", - "less 10 hours ago \n", + "less the0 hours ago \n", "\n", "\n", "Sharks in the neighborhoods in New York #Sandy thoughts and prayers out to all affected by #Sandy http://t.co/q6NoEi4q\n", @@ -14014,7 +12762,7 @@ "AMAZING PHOTO OF THE GUARDS AT TOMB OF THE UNKNOWN DURING #SANDY. #911BUFF http://t.co/m0WXxp0s\n", "\n", "--------------------------------------------------------\n", - "amazing photo guards tomb unknown sandy 911buff \n", + "amazing photo guards tomb unknown sandy \n", "\n", "\n", "View of New York before the Hurricane hit! Amazing. Sad but Beuatiful Nature is Stunning..... http://t.co/YhM6E19j\n", @@ -14026,13 +12774,13 @@ "OMG at this pic of soldiers currently at the Tomb of the Unknowns in DC. #Sandy http://t.co/2jYAcWx2\n", "\n", "--------------------------------------------------------\n", - "omg pic soldiers currently tomb unknowns dc sandy \n", + "pic soldiers currently tomb unknowns dc sandy \n", "\n", "\n", "Wow, good thing she just got an update. RT @YourAnonNews The @StatueLibrtyNPS right now - http://t.co/bX07LLFC | #sandy\n", "\n", "--------------------------------------------------------\n", - "wow good thing got update \n", + "good thing got update \n", "\n", "\n", "This is an amazing shot of New York today with the Frankenstorm bearing down. .#Hurricane #Sandy #tcot #twcot #Amazing http://t.co/gC2Siz8a\n", @@ -14044,13 +12792,7 @@ "Cares more 4 #military than Obama! @KatyinIndy: Tomb of the Unknown #Soldier. Standing guard in spite of #Sandy http://t.co/pcD9lwS0 #Thanx\n", "\n", "--------------------------------------------------------\n", - "cares 4 military obama tomb unknown soldier standing guard spite sandy thanx \n", - "\n", - "\n", - "Oh my... ☹ \"@damnitstrue: This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/UWyyojv5\"\n", - "\n", - "--------------------------------------------------------\n", - "oh \n", + "cares military obama \n", "\n", "\n", "This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/JIMx1Smq\n", @@ -14077,12 +12819,6 @@ "always felt big apple powerful indestructible sandy frightening \n", "\n", "\n", - "This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/AyNOgadO”\"\n", - "\n", - "--------------------------------------------------------\n", - "photo sandy looks straight day tomorrow \n", - "\n", - "\n", "Great pic of the the storm #sandy http://t.co/85c77zrp\n", "\n", "--------------------------------------------------------\n", @@ -14092,13 +12828,13 @@ "“@bernardx: @onlysarahshahi #Sandy have you seen this pic. Really moved me http://t.co/jtRG5WDZ”oh wow. That's impactful\n", "\n", "--------------------------------------------------------\n", - "oh wow impactful \n", + "impactful \n", "\n", "\n", "Soldiers of the 3rd Inf Reg. continue to stand guard at the Tomb of the Unknown Soldier. #HONOR #Sandy http://t.co/a60EPYeX\n", "\n", "--------------------------------------------------------\n", - "soldiers 3rd inf reg continue stand guard tomb unknown soldier honor sandy \n", + "soldiers inf reg continue stand guard tomb unknown soldier honor sandy \n", "\n", "\n", "Even in a hurricane, the @USArmy's Old Guard stands outside the Tomb of the Unknowns. \"Known but to God\" http://t.co/IIeABfOh\n", @@ -14137,12 +12873,6 @@ "sandy think end world \n", "\n", "\n", - "the hurricane is real #Sandy http://t.co/xacTWXOn\n", - "\n", - "--------------------------------------------------------\n", - "hurricane real sandy \n", - "\n", - "\n", "New York RIGHT NOW! \\nLike seriously folks. Check the source first. via @bilalhouri #Sandy 's #illegitimateChildren http://t.co/oSdSqBgD\n", "\n", "--------------------------------------------------------\n", @@ -14170,13 +12900,13 @@ "If you haven't already seen that amazing pic of #NYC with #Sandy coming look now http://t.co/jEaP5n9e\n", "\n", "--------------------------------------------------------\n", - "already seen amazing pic nyc sandy coming look \n", + "already seen amazing pic new york city sandy coming look \n", "\n", "\n", "Amazing shot of Hurricane #Sandy approaching NY City\\nHow can nature be so scary powerful & beautiful? http://t.co/xgP3aZwn\n", "\n", "--------------------------------------------------------\n", - "amazing shot hurricane sandy approaching ny city nature scary powerful beautiful \n", + "amazing shot hurricane sandy approaching new york city nature scary powerful beautiful \n", "\n", "\n", "The view from my window. Starting to think this is serious. #Sandy http://t.co/968hOAKB\n", @@ -14194,7 +12924,7 @@ "“@inji_iconic: SHARK ON THE HIGHWAY #Sandy http://t.co/pLyDUpsG” id fucking piss myself omg\n", "\n", "--------------------------------------------------------\n", - "id fucking piss omg \n", + "id fucking piss \n", "\n", "\n", "Shocking picture of #Sandy hitting New York. #PrayForNY http://t.co/sJzn17Z9\n", @@ -14254,19 +12984,19 @@ "This is a photo posted on FB of #NYC #Sandy Sending Prayers. #unitedwestand http://t.co/Kj2bxj4l\n", "\n", "--------------------------------------------------------\n", - "photo posted fb nyc sandy sending prayers unitedwestand \n", + "photo posted fb new york city sandy sending prayers unitedwestand \n", "\n", "\n", "Omg!! Hope People Are Safe! Shit Reminds Me Of Hurricane Katrina #NewOrleansVictim #Prayers For The Whole East Coast http://t.co/aa4UvR7o\n", "\n", "--------------------------------------------------------\n", - "omg hope people safe shit reminds hurricane katrina neworleansvictim prayers whole east coast \n", + "hope people safe shit reminds hurricane katrina neworleansvictim prayers whole east coast \n", "\n", "\n", "Since April 6, 1848, Sentinels have guarded The Tomb of Unknowns every min of everyday, #Sandy will be no different. http://t.co/hqwCQBKW\n", "\n", "--------------------------------------------------------\n", - "since april 6 1848 sentinels guarded tomb unknowns every everyday sandy different \n", + "since april8 sentinels guarded tomb unknowns every everyday sandy different \n", "\n", "\n", "This picture was actually taken in September RT @Lili_Tufel: Here's a REAL picture. http://t.co/tOpHNJF0 #Sandy\n", @@ -14284,7 +13014,7 @@ "All theses fake photos piss me off. This is a beautiful natural photo taken today as #sandy takes hold of NYC. http://t.co/I2CLRfCf\n", "\n", "--------------------------------------------------------\n", - "theses fake photos piss beautiful natural photo taken today sandy takes hold nyc \n", + "theses fake photos piss beautiful natural photo taken today sandy takes hold new york city \n", "\n", "\n", "It's mad thinking this image is real #sandy http://t.co/4p5xHtsV\n", @@ -14308,7 +13038,7 @@ "Thanks #sandy 4 making USA recall time's come to face globo warming they are at most guilty of. http://t.co/Lq79Qcjr\n", "\n", "--------------------------------------------------------\n", - "thanks sandy 4 making usa recall time come face globo warming guilty \n", + "thanks sandy making usa recall time come face globo warming guilty \n", "\n", "\n", "I'm afraid of sharks #Sandy http://t.co/vPYuElMQ\n", @@ -14320,7 +13050,7 @@ "Since 1948 the @USArmy 3rd Inf Div Old Guard has stood guard over the tomb of the unknowns 24/7 #Sandy will be no diff http://t.co/fTbTxzEa\n", "\n", "--------------------------------------------------------\n", - "since 1948 3rd inf div old guard stood guard tomb unknowns 24 7 sandy diff \n", + "since948 inf div old guard stood guard tomb unknowns4 sandy diff \n", "\n", "\n", "@clawler82 @dublinbairn #neverforget in tribute to the victims of #sandy http://t.co/nfJO2b6v\n", @@ -14332,7 +13062,7 @@ "Haha- the worst of England's hurricane http://t.co/zf9aq9P1\n", "\n", "--------------------------------------------------------\n", - "haha worst england hurricane \n", + "worst england hurricane \n", "\n", "\n", "After effects of #sandy.. @masalajokes @Funny_Truth @ComedyPics http://t.co/OcWBlUr2\n", @@ -14344,7 +13074,7 @@ "Im dying! lol “@Ben_Rosenthal: Live picture from Statue of Liberty webcam showing full force of #HurricaneSandy #Sandy http://t.co/xJI5cTBb”\n", "\n", "--------------------------------------------------------\n", - "im dying lol \n", + "dying \n", "\n", "\n", "Hurricane #Sandy has hit the UK! Look what it did to my back garden http://t.co/1gqX0Har\n", @@ -14353,12 +13083,6 @@ "hurricane sandy hit uk look back garden \n", "\n", "\n", - "Haha!!!!“@Ben_Rosenthal: Live picture from Statue of Liberty webcam showing full force of #HurricaneSandy #Sandy http://t.co/9EIY4ZIt”\n", - "\n", - "--------------------------------------------------------\n", - "haha \n", - "\n", - "\n", "Live picture of Statue of Liberty by #sandy follow now @JewishVideos http://t.co/Dhqcx16g\n", "\n", "--------------------------------------------------------\n", @@ -14380,19 +13104,19 @@ "Lolll ツ \"@mariejoelle: A friend sent me this. Made me smile for a second. #Sandy http://t.co/lKDXBJoi\"\n", "\n", "--------------------------------------------------------\n", - "lolll ツ \n", + "ツ \n", "\n", "\n", "The beginning of #2012 #Sandy http://t.co/ji8p5Eci\n", "\n", "--------------------------------------------------------\n", - "beginning 2012 sandy \n", + "beginning of012 sandy \n", "\n", "\n", "Is it just me or does it feel like if the polar ice caps melt a bit more NYC could become the next Atlantis? #Sandy http://t.co/d9oRWRC1\n", "\n", "--------------------------------------------------------\n", - "feel like polar ice caps melt bit nyc could become next atlantis sandy \n", + "feel like polar ice caps melt bit new york city could become next atlantis sandy \n", "\n", "\n", "I just snapped this picture in lower Manhattan. #sandy http://t.co/dtL8h9b3\n", @@ -14404,7 +13128,7 @@ "60 killed in Columbia and 13 in the US. #sandy it's scary. http://t.co/HuucUXGF\n", "\n", "--------------------------------------------------------\n", - "60 killed columbia 13 us sandy scary \n", + "0 killed columbia and3 us sandy scary \n", "\n", "\n", "This picture is unreal. It was taken earlier today as #Sandy was getting close to the #BigApple. http://t.co/GviCMZIc\n", @@ -14422,13 +13146,13 @@ "God bless these Soldiers. Since 1937 The Tomb Guards have never left their posts, #Sandy was no exception. Pray 4 them. http://t.co/FHpd0rJk\n", "\n", "--------------------------------------------------------\n", - "god bless soldiers since 1937 tomb guards never left posts sandy exception pray 4 \n", + "god bless soldiers since937 tomb guards never left posts sandy exception pray \n", "\n", "\n", "Wow always thought this was one of the coolest things about our military. Still standing guard during a hurricane http://t.co/pfiXgYwt\n", "\n", "--------------------------------------------------------\n", - "wow always thought one coolest things military still standing guard hurricane \n", + "always thought one coolest things military still standing guard hurricane \n", "\n", "\n", "That's one hell of a picture #Sandy http://t.co/nqzGUzgb\n", @@ -14449,18 +13173,6 @@ "sick fake superstorm sandy pictures one real deal though \n", "\n", "\n", - "@Adamfclayton: @WhoopiGoldberg fake ny #sandy pic - the Statue of Liberty taking cover! http://t.co/eEWoYZFC\n", - "\n", - "--------------------------------------------------------\n", - "fake ny sandy pic statue liberty taking cover \n", - "\n", - "\n", - "Wow. Is this real? RT @joshbtucker: This photo of #Sandy looks straight from \"The Day After Tomorrow\": http://t.co/RRxFYabi\n", - "\n", - "--------------------------------------------------------\n", - "wow real \n", - "\n", - "\n", "Tomb of the Unknown Soldier. Standing guard in spite of #Sandy http://t.co/Bvl8mIpz #TroopThanks\n", "\n", "--------------------------------------------------------\n", @@ -14494,7 +13206,7 @@ "Here's the latest amazing and totally not-faked photo of #Sandy approaching NYC: http://t.co/Fn101LiC\n", "\n", "--------------------------------------------------------\n", - "latest amazing totally faked photo sandy approaching nyc \n", + "latest amazing totally faked photo sandy approaching new york city \n", "\n", "\n", "Amazing #picture of waves crashing into Statue of Liberty, #Sandy http://t.co/TwXAuH0F\n", @@ -14509,12 +13221,6 @@ "soldiers standing guard tomb unknown solider dc sandy hits guard country \n", "\n", "\n", - "AMAZING PHOTO: Even a hurricane won't keep the honor guard from the Tomb of the Unknown Soldier this morning. #Sandy http://t.co/b015BHhw\n", - "\n", - "--------------------------------------------------------\n", - "amazing photo even hurricane keep honor guard tomb unknown soldier morning sandy \n", - "\n", - "\n", "So everyone knows, this incredible picture of Hurricane #Sandy doing the rounds is apparently fake. (via @bondnickbond) http://t.co/bl2PnwFZ\n", "\n", "--------------------------------------------------------\n", @@ -14527,12 +13233,6 @@ "statue liberty right sandy \n", "\n", "\n", - "“@quiquegaldeano: All the people in NY are hiding from #Sandy !! Including her... http://t.co/aRI963fH // jaaaaa\n", - "\n", - "--------------------------------------------------------\n", - "people ny hiding sandy including jaaaaa \n", - "\n", - "\n", "Insane picture of New York City and the Statue of Liberty taken this evening. RT to share it. #HurricaneSandy #Sandy http://t.co/6K3tM1Ap\n", "\n", "--------------------------------------------------------\n", @@ -14542,31 +13242,31 @@ "We were at this station few month ago .. #weird #Sandy #TimesSquare #NewYork @JuneWilliams_ @nuriaparadell http://t.co/VsIkalOi\n", "\n", "--------------------------------------------------------\n", - "station month ago weird sandy timessquare newyork \n", + "station month ago weird sandy timessquare new york \n", "\n", "\n", "Wow amazing photo of Sandy at the hight of the storm. This is unedited http://t.co/e52VEUdG\n", "\n", "--------------------------------------------------------\n", - "wow amazing photo sandy hight storm unedited \n", + "amazing photo sandy hight storm unedited \n", "\n", "\n", "If this is real then its the craziest thing I've ever seen from a Hurricane! A shark in streets of NJ. http://t.co/q02g6xc9\n", "\n", "--------------------------------------------------------\n", - "real craziest thing ever seen hurricane shark streets nj \n", + "real craziest thing ever seen hurricane shark streets new jersey \n", "\n", "\n", "Is this real -omg hope everyones ok RT @J7mster Amazing picture of hurricane #Sandy decending in New York http://t.co/AgPmp04z\n", "\n", "--------------------------------------------------------\n", - "real omg hope everyones ok \n", + "real hope everyones ok \n", "\n", "\n", "Soldiers from Army 3rd Reg guarding The Tomb of the Unknowns at Arlington National Cemetery as #Sandy starts to rage http://t.co/1sMa9aSR\n", "\n", "--------------------------------------------------------\n", - "soldiers army 3rd reg guarding tomb unknowns arlington national cemetery sandy starts rage \n", + "soldiers army reg guarding tomb unknowns arlington national cemetery sandy starts rage \n", "\n", "\n", "Look, who's scared of #Sandy http://t.co/qFeYFufz\n", @@ -14584,7 +13284,7 @@ "Even The Statue of Liberty isn't scare of #sandy #NewYorkers #tough #BLISandyUpdate http://t.co/Mua4eoaB\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scare sandy newyorkers tough blisandyupdate \n", + "even statue liberty scare sandy new yorkers tough blisandyupdate \n", "\n", "\n", "Despite #sandy soldiers continue to guard Tomb of Unknowns at Arlington.Very grateful for service of all our military http://t.co/zivXayE2\n", @@ -14596,7 +13296,7 @@ "Live picture from Statue of Liberty webcam showing full force of #HurricaneSandy #Sandy http://t.co/iGxeSZ0U\n", "\n", "--------------------------------------------------------\n", - "live picture statue liberty webcam showing full force hurricanesandy sandy \n", + "live picture statue liberty webcam showing full force hurricane sandy sandy \n", "\n", "\n", "Despite Sandy, Soldiers Stand Guard At Tomb Of The Unknown Soldier http://t.co/W278hNpH\n", @@ -14605,12 +13305,6 @@ "despite sandy soldiers stand guard tomb unknown soldier \n", "\n", "\n", - "Tomb of the Unknown Soldier during Hurricane #Sandy: http://t.co/O6RyY46B\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Despite a Hurricane raging these soldiers still stand guard at the tomb of the unknown soldier in America #respect http://t.co/cexeASlL\n", "\n", "--------------------------------------------------------\n", @@ -14692,7 +13386,7 @@ "Respect to 3rd Inf Reg 4 guarding Tomb of Unknown Soldier, despite worsening#Sandy. Been guarded continuously since '48 http://t.co/2NdpVpth\n", "\n", "--------------------------------------------------------\n", - "respect 3rd inf reg 4 guarding tomb unknown soldier despite worsening sandy guarded continuously since 48 \n", + "respect inf reg guarding tomb unknown soldier despite worseningsandy guarded continuously since 8 \n", "\n", "\n", "Now THIS is dedication. These guys are watching over the Tomb of the Unknown Soldier during Hurricane #Sandy. Damn. http://t.co/KboT2qPK\n", @@ -14719,12 +13413,6 @@ "hurricane keep soldiers guarding tomb unknown soldier share photo honor sot \n", "\n", "\n", - "@OMGFacts: Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/ZUUlyQXI @turtleyaya\n", - "\n", - "--------------------------------------------------------\n", - "amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/LAfv8yeS\n", "\n", "--------------------------------------------------------\n", @@ -14734,7 +13422,7 @@ "Members of the 3rd Infantry guarding the tomb of the unknown soldier during hurricane sandy. #Dedication. http://t.co/heSeNfoo\n", "\n", "--------------------------------------------------------\n", - "members 3rd infantry guarding tomb unknown soldier hurricane sandy dedication \n", + "members infantry guarding tomb unknown soldier hurricane sandy dedication \n", "\n", "\n", "The Tomb of the Unknown Soldier after the hurricane evacuation. So inspiring http://t.co/NDKRI7Ko\n", @@ -14755,18 +13443,6 @@ "rain sleet snow hurricane tomb unknown soldier guarded salute \n", "\n", "\n", - "“@OMGFacts: Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/c4nmHOOb” amazing!\n", - "\n", - "--------------------------------------------------------\n", - "amazing \n", - "\n", - "\n", - "@TheArabella: Even a hurricane cannot stop the guard at the Tomb Of The Unknown Soldier! #inspiring http://t.co/8XYnoShv OMW HAGEN :(\n", - "\n", - "--------------------------------------------------------\n", - "even hurricane cannot stop guard tomb unknown soldier inspiring omw hagen \n", - "\n", - "\n", "“Tomb of the unknown soldier as the hurricane comes in. Makes me proud to be an American. #truecommitment http://t.co/5k8nuar5”\n", "\n", "--------------------------------------------------------\n", @@ -14830,7 +13506,7 @@ "Holy. Wow.. Soldiers at the Tomb of the Unknowns in DC during Hurricane Sandy. #GodBlessAmerica http://t.co/i0QAOAe2\n", "\n", "--------------------------------------------------------\n", - "holy wow soldiers tomb unknowns dc hurricane sandy godblessamerica \n", + "holy soldiers tomb unknowns dc hurricane sandy godblessamerica \n", "\n", "\n", "They never leave... Tomb of the Unknown Soldier during #Sandy. God bless them all. ❤🇺🇸 http://t.co/tPGl56Gv\n", @@ -14902,13 +13578,7 @@ "These Men Didnt STAND DOWN\\nAs Told 2 From Guarding Tomb of the Unknown Soldier during Hurricane Isabel; nor for Sandy~\\nhttp://t.co/fdWX4B0F\n", "\n", "--------------------------------------------------------\n", - "didnt stand told 2 guarding tomb unknown soldier hurricane isabel sandy \n", - "\n", - "\n", - "@rickmercer: soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/EDSS28vY a true example of honour.\n", - "\n", - "--------------------------------------------------------\n", - "soldiers standing tomb unknown soldier hurricane sandy true example honour \n", + "didnt stand told guarding tomb unknown soldier hurricane isabel sandy \n", "\n", "\n", "Not even hurricane sandy could keep them from protecting the tomb of the unknown soldier! Good job guys! http://t.co/u3MxHHX0\n", @@ -14920,7 +13590,7 @@ "Soldiers of the @USarmy 3rd Infantry Regiment stand guard at the Tomb of the Unknown Soldier during Hurricane Sandy http://t.co/cstC1x6L\n", "\n", "--------------------------------------------------------\n", - "soldiers 3rd infantry regiment stand guard tomb unknown soldier hurricane sandy \n", + "soldiers infantry regiment stand guard tomb unknown soldier hurricane sandy \n", "\n", "\n", "Even as Hurricane Sandy makes landfall, these men are still standing guard at the tomb of The Unknown Soldier♥ #Respect http://t.co/PvgB2550\n", @@ -15049,12 +13719,6 @@ "tomb unknown soldier guarded hurricane sandy cantstopus merica \n", "\n", "\n", - "These Men Didnt STAND DOWN\\nAs Told 2 From Guarding Tomb of the Unknown Soldier during Hurricane Isabel; nor for Sandy~>\\nhttp://t.co/fdWX4B0F\n", - "\n", - "--------------------------------------------------------\n", - "didnt stand told 2 guarding tomb unknown soldier hurricane isabel sandy greater \n", - "\n", - "\n", "Obama told the guards at the Tomb of the Unknown Soldier that they could leave because of the hurricane. They refused. http://t.co/XW07wb6X\n", "\n", "--------------------------------------------------------\n", @@ -15070,7 +13734,7 @@ "WOW! The Tomb of the Unknown Soldier, guarded during Hurricane Sandy: http://t.co/2n9Ki3hZ - http://t.co/vBc5xd4X\n", "\n", "--------------------------------------------------------\n", - "wow tomb unknown soldier guarded hurricane sandy \n", + "tomb unknown soldier guarded hurricane sandy \n", "\n", "\n", "The Tomb of the Unknown Soldier remains guarded even in the path of Hurricane Sandy #humbled #proudtobeanamerican http://t.co/Ga7CaC3O\n", @@ -15094,13 +13758,13 @@ "Tomb of the Unknown Soldier being guarded during the hurricane in NY. The utmost respect. http://t.co/5TyrLcYj\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier guarded hurricane ny utmost respect \n", + "tomb unknown soldier guarded hurricane new york utmost respect \n", "\n", "\n", "Praying for the soilders standing out in hurricane sandy in front of the tomb of the unknown soilder <3 http://t.co/Nx5sOsre\n", "\n", "--------------------------------------------------------\n", - "praying soilders standing hurricane sandy front tomb unknown soilder less 3 \n", + "praying soilders standing hurricane sandy front tomb unknown soilder \n", "\n", "\n", "So much respect for these guys still guarding the unknown soldier in hurricane sandy! http://t.co/W8lhmf5F\n", @@ -15127,16 +13791,10 @@ "remember time hurricane uk \n", "\n", "\n", - "remember that time we had a hurricane in the UK? http://t.co/U9T7WvSH\n", - "\n", - "--------------------------------------------------------\n", - "remember time hurricane uk \n", - "\n", - "\n", "Survived a hurricane black outs for three days but had the most amazing time in NYC with @djshemp http://t.co/iO9ozB36\n", "\n", "--------------------------------------------------------\n", - "survived hurricane black outs three days amazing time nyc \n", + "survived hurricane black outs three days amazing time new york city \n", "\n", "\n", "Remember that hurricane we had in the UK? http://t.co/KPrWl0vp\n", @@ -15145,36 +13803,18 @@ "remember hurricane uk \n", "\n", "\n", - "@Beck1Dx: remember that time we had a hurricane in the uk http://t.co/OfRSWiCn\n", - "\n", - "--------------------------------------------------------\n", - "remember time hurricane uk \n", - "\n", - "\n", "Remember that time England had a hurricane http://t.co/i1VOXEyr\n", "\n", "--------------------------------------------------------\n", "remember time england hurricane \n", "\n", "\n", - "“@carlleckstein: Remember when there was a hurricane in the UK http://t.co/q2I6VAh5😂😂😂😂😂\n", - "\n", - "--------------------------------------------------------\n", - "remember hurricane uk \n", - "\n", - "\n", "Remember that hurricane that we had in England http://t.co/VZJCt8px\n", "\n", "--------------------------------------------------------\n", "remember hurricane england \n", "\n", "\n", - "remember when we had a hurricane in the uk http://t.co/9e1RI9KB\n", - "\n", - "--------------------------------------------------------\n", - "remember hurricane uk \n", - "\n", - "\n", "remember that time the UK had a hurricane http://t.co/dNNiExhD\n", "\n", "--------------------------------------------------------\n", @@ -15193,28 +13833,16 @@ "flipando huracán sandy lleva tiburones calles new jersey si tiburones calle \n", "\n", "\n", - " Estoy flipando, el huracán Sandy lleva tiburones a las calles de New Jersey. Si sí TIBURONES por la calle!!! http://t.co/7d469Qpt \n", - "\n", - "--------------------------------------------------------\n", - "flipando huracán sandy lleva tiburones calles new jersey si tiburones calle \n", - "\n", - "\n", "Alucino con esta foto. El huracán Sandy ha arrastrado tiburones a las calles de ciudades de Maryland y New Jersey http://t.co/poFhVz3p\n", "\n", "--------------------------------------------------------\n", - "alucino foto huracán sandy arrastrado tiburones calles ciudades maryland new jersey \n", - "\n", - "\n", - "@TuiterHits: IMPRESIONANTE: Las inundaciones del huracán Sandy ha arrastrado tiburones a las calles de New Jersey ! http://t.co/XnH9FQlY\n", - "\n", - "--------------------------------------------------------\n", - "impresionante inundaciones huracán sandy arrastrado tiburones calles new jersey \n", + "alucino foto huracán sandyarrastrado tiburones calles ciudades maryland new jersey \n", "\n", "\n", "IMPRESIONANTE: Las inundaciones del huracán Sandy ha arrastrado tiburones a las calles de New Jersey ! http://t.co/YHsuyVgK\n", "\n", "--------------------------------------------------------\n", - "impresionante inundaciones huracán sandy arrastrado tiburones calles new jersey \n", + "impresionante inundaciones huracán sandyarrastrado tiburones calles new jersey \n", "\n", "\n", "Huracán Sandy arrastra tiburones hasta las calles de New Jersey. Aquí otra foto!! EEUU http://t.co/V48x0R01\n", @@ -15226,9 +13854,15 @@ "IMPACTANTE: Photoshop Huracán Sandy arrastra 2 TIBURONES hasta el metro de New Jersey. http://t.co/ZG8ia0Jp\n", "\n", "--------------------------------------------------------\n", - "impactante photoshop huracán sandy arrastra 2 tiburones metro new jersey \n", - "\n", + "impactante photoshop huracán sandy arrastra tiburones metro new jersey \n", "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "Así esta el Huracán Sandy en Nueva York... QUE DIOS JEHOVA LOS PROTEJA. http://t.co/r0khbvvz\n", "\n", "--------------------------------------------------------\n", @@ -15238,7 +13872,7 @@ "Lo que realmente sucedio en NY con el huracan Sandy jajajaja http://t.co/Sp1caUUD\n", "\n", "--------------------------------------------------------\n", - "realmente sucedio ny huracan sandy jajajaja \n", + "realmente sucedio new york huracan sandy jajajaja \n", "\n", "\n", "Lo que dejo el huracan sandy en las calles de nueva york http://t.co/M7N67GHw\n", @@ -15250,7 +13884,7 @@ "Así está New York con el huracán sandy. ¡Parece de película! Ö_______Ö http://t.co/vsarWIpy\n", "\n", "--------------------------------------------------------\n", - "así new york huracán sandy parece película ö ö \n", + "así new york huracán sandy parece película öö \n", "\n", "\n", "JAJAJAJAJA LO QUE HIZO EL HURACÁN SANDY EN NUEVA YORK http://t.co/5aAW8RAd\n", @@ -15262,7 +13896,7 @@ "Fotografías falsas de Sandy en Nueva York (y 2). Cuidadín que hay gente con mucho tiempo libre... http://t.co/2eXEGhTa\n", "\n", "--------------------------------------------------------\n", - "fotografías falsas sandy nueva york 2 cuidadín gente tiempo libre \n", + "fotografías falsas sandy nueva york cuidadín gente tiempo libre \n", "\n", "\n", "Por fin una foto real de lo que esta pasando en Nueva York con el huracán Sandy. http://t.co/xVEHfl2r\n", @@ -15286,7 +13920,7 @@ "Lol! \"Picture shows Hurricane Sandy approaches the northeast. (Might be fake)\" http://t.co/cFe76hMl\n", "\n", "--------------------------------------------------------\n", - "lol picture shows hurricane sandy approaches northeast might fake \n", + "picture shows hurricane sandy approaches northeast might fake \n", "\n", "\n", "@Irene_montala_ sigo sin estar tranquila. Mira las fotos de Sandy. Un tiburon el la carreteta \\nVuelve! http://t.co/IHDujTG5\n", @@ -15313,12 +13947,6 @@ "sandy effect \n", "\n", "\n", - "Hurricane sandy http://t.co/fYqIqZbA\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "Sandy 在以每小时近100英里风速袭击美东的时候,镇守在阿灵顿无名战士公墓的军人拒绝离岗。这里葬着美国在一战,二战,韩战,和越战中所有没有名字的阵亡将士。这些守墓军人从1948年镇守到今天,从未因为任何原因离岗过一天。 http://t.co/wJNyGc6v\n", "\n", "--------------------------------------------------------\n", @@ -15334,7 +13962,7 @@ "Subhanallah, Badai Sandy yg melanda Amerika, bayangkan klw badai tsb melanda Indonesia,pasti akan. Banyak yg jd korban. http://t.co/N8z0isd6\n", "\n", "--------------------------------------------------------\n", - "subhanallah badai sandy yg melanda amerika bayangkan klw badai tsb melanda indonesia pasti akan banyak yg jd korban \n", + "subhanallah badai sandy yg melanda amerika bayangkan klw badai tsb melanda indonesia yg jd korban \n", "\n", "\n", "The real reason behind sandy http://t.co/x8znenG9\n", @@ -15349,12 +13977,6 @@ "run west hollywood drink hurricane sandy heading way \n", "\n", "\n", - "Hurricane Sandy http://t.co/LRAGCbMJ”\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "Fotografías falsas de Sandy en Nueva York http://t.co/2gOnFowY\n", "\n", "--------------------------------------------------------\n", @@ -15373,28 +13995,16 @@ "sandy meets new york \n", "\n", "\n", - "Sandy effect #LOL http://t.co/qqXEyqrN\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect lol \n", - "\n", - "\n", "Una imagen impresionante...La llegada del huracán Sandy. http://t.co/VZYyjDXf\n", "\n", "--------------------------------------------------------\n", "imagen impresionante llegada huracán sandy \n", "\n", "\n", - "The Sandy Effect..! http://t.co/moBsStFL\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "Sandy,NY,wooooow. Ö http://t.co/5A4dJ7J8\n", "\n", "--------------------------------------------------------\n", - "sandy ny wooooow ö \n", + "sandy new york wooooow ö \n", "\n", "\n", "Is ze al weg ? Sandy ?! http://t.co/SmdTMADG\n", @@ -15406,19 +14016,13 @@ "Sharks was in the street in Atlantic City , NJ . This was caused by hurricane sandy . http://t.co/KnQtME05\n", "\n", "--------------------------------------------------------\n", - "sharks street atlantic city nj caused hurricane sandy \n", + "sharks street atlantic city new jersey caused hurricane sandy \n", "\n", "\n", "Hurricane sandy sharks r in the street in NJ!! #crazy http://t.co/4gWHsByG\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy sharks r street nj crazy \n", - "\n", - "\n", - "New York after Sandy http://t.co/B2XCzGVw\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", + "hurricane sandy sharks street new jersey crazy \n", "\n", "\n", "@bigclam69 Look who refused to leave their posts during Sandy....#Duty #Honor http://t.co/husgRuDH\n", @@ -15433,28 +14037,16 @@ "true hero tropical storm sandy \n", "\n", "\n", - "The Sandy Effect..! :-) Hahaha http://t.co/ZigQKD7g\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect hahaha \n", - "\n", - "\n", "Hay muchas fotos retocadas del huracan Sandy. Alfin os puedo mostrar una verdadera. http://t.co/uelhwvkZ\n", "\n", "--------------------------------------------------------\n", "muchas fotos retocadas huracan sandy alfin puedo mostrar verdadera \n", "\n", "\n", - "Yo Sandy! Lmao😂 http://t.co/5e0SRcyZ\n", - "\n", - "--------------------------------------------------------\n", - "sandy lmao \n", - "\n", - "\n", "Ouragan Sandy photo Apocalyptique quand même OUFFFF http://t.co/zfwuRuOx\n", "\n", "--------------------------------------------------------\n", - "ouragan sandy photo apocalyptique quand même ouffff \n", + "ouragan sandy photo apocalyptique quand ouffff \n", "\n", "\n", "Has Sandy gone yet??? http://t.co/Ohj4ju76\n", @@ -15472,13 +14064,7 @@ "I wanna take the times square diving tour! Oh Sandy... http://t.co/AqrsvRvt\n", "\n", "--------------------------------------------------------\n", - "wanna take times square diving tour oh sandy \n", - "\n", - "\n", - "EL HURACAN SANDY, SOBRE NY...!! http://t.co/rKIpUTZZ\n", - "\n", - "--------------------------------------------------------\n", - "huracan sandy ny \n", + "wanna take times square diving tour sandy \n", "\n", "\n", "Is Sandy gone? Are you sure? http://t.co/M1284CYl”\n", @@ -15493,34 +14079,16 @@ "sorry resist sending tweet mind freeky pic hurricane sandy \n", "\n", "\n", - "Yo Sandy.. http://t.co/tXOb7xy9\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "SANDY VAMONOS A OTRO SITIO A SOPLAR http://t.co/wGyPk1qh http://t.co/grYUqw5m\n", "\n", "--------------------------------------------------------\n", "sandy vamonos sitio soplar \n", "\n", "\n", - "@tomleykis Sandy? http://t.co/LOg7Kzfj\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Con esa fuerza llego Sandy a NY http://t.co/cgTY7rde\n", "\n", "--------------------------------------------------------\n", - "fuerza llego sandy ny \n", - "\n", - "\n", - "Is Sandy gone yet? http://t.co/uknblZWY\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet \n", + "fuerza llego sandy new york \n", "\n", "\n", "@chetemateo será por sandy?? Jajaja que tal estais?? Muchos besitos ;-) http://t.co/F6rA7yTq\n", @@ -15529,40 +14097,28 @@ "sandy jajaja tal estais besitos \n", "\n", "\n", - "Lo que fue sandy :( http://t.co/iYhhX1Mq\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Tio, tio el huracán sandy vuelve a Nueva York http://t.co/auA6vPEI\n", "\n", "--------------------------------------------------------\n", "tio tio huracán sandy vuelve nueva york \n", "\n", "\n", - "OMG Sandy :O http://t.co/16rQ0pwA\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy \n", - "\n", - "\n", "NYがハリケーン「サンディ」により大水没1万リツイート!実はガセでした:NY is retweeted 10 000 large submerged by Hurricane \"Sandy\"! It was actually Gase http://t.co/wFrHinHC\n", "\n", "--------------------------------------------------------\n", - "nyがハリケーン サンディ により大水没1万リツイート 実はガセでした ny retweeted 10 000 large submerged hurricane sandy actually gase \n", + "nyがハリケーン サンディ により大水没1万リツイート 実はガセでした new york retweeted000 large submerged hurricane sandy actually gase \n", "\n", "\n", "The Tomb of the Unknowns is guarded 24 hours a day, 365 days a year since 1937. Even Sandy couldnt stop them! US marine http://t.co/FZnDhL39\n", "\n", "--------------------------------------------------------\n", - "tomb unknowns guarded 24 hours day 365 days year since 1937 even sandy couldnt stop us marine \n", + "tomb unknowns guarded4 hours day days year since937 even sandy couldnt stop us marine \n", "\n", "\n", "Awhhhh he's saving his dog during Sandy ❤. Sweetest thing ever <33 http://t.co/32oYv7Lk\n", "\n", "--------------------------------------------------------\n", - "awhhhh saving dog sandy sweetest thing ever less 33 \n", + "awhhhh saving dog sandy sweetest thing ever3 \n", "\n", "\n", "¿Ya se fue esa tal Sandy? http://t.co/Km1zt3H0\n", @@ -15577,12 +14133,6 @@ "sandy let finish uh wait \n", "\n", "\n", - "Sandy. http://t.co/c7RrTNi0\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Is Sandy Gone!? @luis_lopez99 http://t.co/EC0ZLmhD\n", "\n", "--------------------------------------------------------\n", @@ -15592,13 +14142,7 @@ "Huracán Sandy NY http://t.co/YmgbS6gc\n", "\n", "--------------------------------------------------------\n", - "huracán sandy ny \n", - "\n", - "\n", - "Where is Sandy? http://t.co/zfdb8vcf\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "huracán sandy new york \n", "\n", "\n", "Increíble!! .. Imagen d un tiburón q por culpa d Sandy acabó por las calles... http://t.co/mYZOk1uC\n", @@ -15634,7 +14178,7 @@ "Sandy #nohurricane http://t.co/ViyETZ4G\n", "\n", "--------------------------------------------------------\n", - "sandy nohurricane \n", + "sandy nurricane \n", "\n", "\n", "@Romanomelena Passato Sandy? ✈🇺🇸 http://t.co/8JLBmt0U\n", @@ -15646,7 +14190,7 @@ "Sandy\\n#اعصار_ساندي \\n#ساندي http://t.co/L40j54Jq”\n", "\n", "--------------------------------------------------------\n", - "sandy اعصار ساندي ساندي \n", + "sandy اعصارساندي ساندي \n", "\n", "\n", "Is Sandy Gone!? (Get #MEME Reader on the Appstore) http://t.co/edlbV2xt\n", @@ -15676,13 +14220,13 @@ "Uragano Sandy: danni a rete mobile e via cavo http://t.co/bLPL7tSI http://t.co/1RjiCxsW\n", "\n", "--------------------------------------------------------\n", - "uragano sandy danni rete mobile via cavo \n", + "uragano sandy danni rete mobile ecavo \n", "\n", "\n", "Seguro q nadie ha visto la cara de Sandy ! http://t.co/fXkkk5hi\n", "\n", "--------------------------------------------------------\n", - "seguro q nadie visto cara sandy \n", + "seguro q nadievisto sandy \n", "\n", "\n", "Hurricane Sandy don't listen to the haters you're beautiful ok http://t.co/Zd8HpcVE\n", @@ -15709,12 +14253,6 @@ "reminds new york hurricane sandy \n", "\n", "\n", - "@gamac10: la foto falsa de Sandy en NY que sigue circulando. No se crean todo lo que ven/leen http://t.co/XptbmpA7\n", - "\n", - "--------------------------------------------------------\n", - "foto falsa sandy ny sigue circulando crean ven leen \n", - "\n", - "\n", "@mcmoynihan @Toure Or even the image as Sandy was approaching. #MSNBCBrainTrust http://t.co/JN5WGX8g\n", "\n", "--------------------------------------------------------\n", @@ -15724,7 +14262,7 @@ "Lbh dahsyat dari Badai Sandy ya bro..asalnya dari PD ya? @B_Hendratmo1: Badai di Indonesia tu ya korupsi yg menahun http://t.co/N8z0isd6\"\"\n", "\n", "--------------------------------------------------------\n", - "lbh dahsyat dari badai sandy bro asalnya dari pd badai di indonesia korupsi yg menahun \n", + "lbh dahsyat badai sandy asalnya pd \n", "\n", "\n", "Hurricane sandy! Showing her darker side. When will we stand up for earth! http://t.co/Z3utr612\n", @@ -15736,25 +14274,19 @@ "El H. Sandy llegando a NY sobre la estatua d la Libertad supera sus propias ficciones, sigan con las películas nomás! http://t.co/miaTa9oN\n", "\n", "--------------------------------------------------------\n", - "h sandy llegando ny estatua libertad supera propias ficciones sigan películas nomás \n", - "\n", - "\n", - "@azooz__2022: ماهذا ياعرب مذا حدث في تمثال الحريه يا الاهي @a_romney #إعصار_ساندي Hurricane Sandy #اعصار_ساندي http://t.co/hP7uAmb0\n", - "\n", - "--------------------------------------------------------\n", - "ماهذا ياعرب مذا حدث تمثال الحريه الاهي إعصار ساندي hurricane sandy اعصار ساندي \n", + "h sandy llegando new york estatua libertad supera propias ficciones sigan películas nomás \n", "\n", "\n", "Hurricane Sandy tearing up NY http://t.co/SembBPBr\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy tearing ny \n", + "hurricane sandy tearing new york \n", "\n", "\n", "Un #RT = à un soutien moral pour les sinistrés de l'ouragan Sandy http://t.co/qijUFdFQ\n", "\n", "--------------------------------------------------------\n", - "rt à soutien moral pour sinistrés l ouragan sandy \n", + "soutien moral sinistrés ouragan sandy \n", "\n", "\n", "Hurricane sandy's effect http://t.co/MF0noZSi\n", @@ -15784,7 +14316,7 @@ "Is Sandy Gone!? (Get #9GagReader at http://t.co/gQbZsxQI) yazik http://t.co/HSnv6W0g\n", "\n", "--------------------------------------------------------\n", - "sandy gone get 9gagreader yazik \n", + "sandy gone get yazik \n", "\n", "\n", "Federal employes who went to work during the storm \"Sandy\" http://t.co/4a0hHPUC\n", @@ -15832,7 +14364,7 @@ "Sandy ta peligroso.. jejeje http://t.co/ahsqwjZ6\"\n", "\n", "--------------------------------------------------------\n", - "sandy ta peligroso jejeje \n", + "sandy peligroso jejeje \n", "\n", "\n", "esta foto del huracan sandy de new york es increible http://t.co/k4UnXw3a\n", @@ -15871,16 +14403,10 @@ "look shark friend sent hurricane sandy new jersey \n", "\n", "\n", - "Sandy effect :D ---> http://t.co/9QdmGW0u\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "Hoy os están colando multitud de fotomontajes del huracán Sandy. Dais pena. Por fin una imagen 100% real de NY ahora: http://t.co/hBK70JAf\n", "\n", "--------------------------------------------------------\n", - "hoy colando multitud fotomontajes huracán sandy dais pena fin imagen 100 real ny ahora \n", + "hoy colando multitud fotomontajes huracán sandy dais pena fin imagen00 real new york ahora \n", "\n", "\n", "to sandy ! chill mAh nigga!😂 http://t.co/EWLLSA0B\n", @@ -15898,7 +14424,7 @@ "@saaaam_mccarthy lol tell nicole to hmu before she goes out , my family is bullshitting about sandy http://t.co/3X5NPd0g\n", "\n", "--------------------------------------------------------\n", - "lol tell nicole hmu goes family bullshitting sandy \n", + "tell nicole hmu goes family bullshitting sandy \n", "\n", "\n", "Buenos y lluviosos dias... Increíble!!..imagen d un tiburón q por culpa d Sandy acabó por las calles!! :O http://t.co/k9FW1oND\"\n", @@ -15913,12 +14439,6 @@ "sandy still missing \n", "\n", "\n", - "@CuriousKerian: Hurricane sandy is worse than we thought http://t.co/Veo3ifLN omg I'm dead. Too funny\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy worse thought omg dead funny \n", - "\n", - "\n", "Hurricane sandy wrecking New York http://t.co/sjNQAkYB\n", "\n", "--------------------------------------------------------\n", @@ -15946,25 +14466,7 @@ "New Jerseys highway after hurricane sandy! Wow I can't believe that! 😱😨 http://t.co/mRpfKqsG\n", "\n", "--------------------------------------------------------\n", - "new jerseys highway hurricane sandy wow believe \n", - "\n", - "\n", - "@EnnoWerr is sandy gone? http://t.co/AGT7HHVl\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", - "Yo Sandy http://t.co/z3FlyC6D\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "@NaturalStunna_: “@Im_An_Immigrant: Yo Sandy http://t.co/7NdfaMCY” DONEEE. ! Lmaoo\n", - "\n", - "--------------------------------------------------------\n", - "doneee lmaoo \n", + "new jerseys highway hurricane sandy believe \n", "\n", "\n", "To all those whose lives hav been messed up by Sandy, Be strong.♥ http://t.co/6zUqVZ4z\n", @@ -15982,13 +14484,7 @@ "If ur gonna make a fake hurricane sandy pic, do it properly http://t.co/tPo1miS8\n", "\n", "--------------------------------------------------------\n", - "ur gonna make fake hurricane sandy pic properly \n", - "\n", - "\n", - "Increíble!!..imagen d un tiburón q por culpa d Sandy acabó por las calles.. http://t.co/QD7IlsJw\n", - "\n", - "--------------------------------------------------------\n", - "increíble imagen tiburón q culpa sandy acabó calles \n", + "gonna make fake hurricane sandy pic properly \n", "\n", "\n", "AMAZING photo from New York, night before Sandy hit, looks like something you'd see out of the movie Day After Tomorrow http://t.co/YPzjDQY8\n", @@ -16003,34 +14499,28 @@ "rescue dog hurricane sandy big like \n", "\n", "\n", - "@R9beats: Check out this shark on the highway in New Jersey from Hurricane Sandy http://t.co/Q2HPpsbB this picture is old.\n", - "\n", - "--------------------------------------------------------\n", - "check shark highway new jersey hurricane sandy picture old \n", - "\n", - "\n", "Tras el paso de Instagram Sandy http://t.co/08yMSGJl vía @OlmoGonzalez http://t.co/sJHsx1zU\n", "\n", "--------------------------------------------------------\n", - "tras paso instagram sandy vía \n", + "tras paso instagram sandy \n", "\n", "\n", "Just found an exclusive picture of Hurricane Sandy approaching NY. http://t.co/k6m5jQXb\n", "\n", "--------------------------------------------------------\n", - "found exclusive picture hurricane sandy approaching ny \n", + "found exclusive picture hurricane sandy approaching new york \n", "\n", "\n", "Sandy in arrivo su Manhattan, NYC http://t.co/XVw1x1nB\n", "\n", "--------------------------------------------------------\n", - "sandy arrivo manhattan nyc \n", + "sandy arrivo manhattan new york city \n", "\n", "\n", "Sandy got ya scared haha http://t.co/xJZgC0Yr\n", "\n", "--------------------------------------------------------\n", - "sandy got scared haha \n", + "sandy got scared \n", "\n", "\n", "@manuellombo Huracán Sandy http://t.co/I4H57lH5\n", @@ -16042,19 +14532,13 @@ "Induknya di Golkar, beranak pina di PD :P \"@jadulfe78: Lbh dahsyat dari Badai Sandy ya bro..asalnya dari PD ya? http://t.co/JZNvLzbv\"\n", "\n", "--------------------------------------------------------\n", - "induknya di golkar beranak pina di pd p \n", + "induknya golkar beranak pina pd p \n", "\n", "\n", "Whoa sandy, calm. http://t.co/TNb4g62Y\n", "\n", "--------------------------------------------------------\n", - "whoa sandy calm \n", - "\n", - "\n", - "@joeltovarm: Asi esta Nueva York y la Tormenta Sandy..! Dios los cuide..! http://t.co/F80Ft2QM@Rafaelinho2690\n", - "\n", - "--------------------------------------------------------\n", - "asi nueva york tormenta sandy dios cuide \n", + "sandy calm \n", "\n", "\n", "HURRICANE SANDY HAS HIT SOMERSHAM http://t.co/tE2vkdS1\n", @@ -16066,7 +14550,7 @@ "¡Sólo vuelvo al pedestal si me aseguráis que ya se ha marchado Sandy! ¡Uff, que susto he pasao! http://t.co/tanAqres\n", "\n", "--------------------------------------------------------\n", - "sólo vuelvo pedestal si aseguráis marchado sandy uff susto pasao \n", + "sólo vuelvo pedestal si aseguráis semarchado sandy uff susto pasao \n", "\n", "\n", "y Times Square así lucia.. por el Huracán Sandy http://t.co/2cbvoM0l\n", @@ -16108,7 +14592,7 @@ "Lo Que Sandy Hizo En NY me hizo recordar esta pelicula... http://t.co/TS7q4asF\n", "\n", "--------------------------------------------------------\n", - "sandy hizo ny hizo recordar pelicula \n", + "sandy hizo new york hizo recordar pelicula \n", "\n", "\n", "a shark hurricane sandy washed up on a girls front lawn. http://t.co/TxglSTps\n", @@ -16123,18 +14607,6 @@ "new york rises sandy \n", "\n", "\n", - "Sandy's coming for you. http://t.co/n4eMAeku\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", - "\n", - "\n", - "The Sandy effect...!!! http://t.co/wiQnHyP0\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "“@chaseponto1: “@CuriousKerian: Hurricane sandy is worse than we thought http://t.co/9nZEOZOy” @amandabruen”fuck sandy\n", "\n", "--------------------------------------------------------\n", @@ -16147,40 +14619,22 @@ "asombroso resultado huracán sandy \n", "\n", "\n", - "Is Sandy gone? =)) http://t.co/prD6shUt\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "Regardez cette photo de l'ouragan SANDY in NewYork !!! Amazing http://t.co/nBFOaN05\n", "\n", "--------------------------------------------------------\n", - "regardez cette photo l ouragan sandy newyork amazing \n", + "regardez cette photo ouragan sandy new york amazing \n", "\n", "\n", "@ImanMaryie_Mht, même elle elle flippe de Sandy. http://t.co/RvG3OdpK\n", "\n", "--------------------------------------------------------\n", - "même elle elle flippe sandy \n", - "\n", - "\n", - "Buenos y lluviosos dias..increíble!!..imagen d un tiburón q por culpa d Sandy acabó por las calles.. http://t.co/LJLCC7dM\n", - "\n", - "--------------------------------------------------------\n", - "buenos lluviosos dias increíble imagen tiburón q culpa sandy acabó calles \n", - "\n", - "\n", - "Fotografías falsas de Sandy en Nueva York (1) http://t.co/5RT3fUZq\n", - "\n", - "--------------------------------------------------------\n", - "fotografías falsas sandy nueva york 1 \n", + "flippe sandy \n", "\n", "\n", "Arlington Cemetery vs. Hurricane Sandy http://t.co/9i8b9yyv\n", "\n", "--------------------------------------------------------\n", - "arlington cemetery vs hurricane sandy \n", + "arlington cemetery versus hurricane sandy \n", "\n", "\n", "Is Sandy Gone!? (Get #MEME Reader on the Appstore) morí de risa http://t.co/USJNkah9\n", @@ -16195,36 +14649,18 @@ "people realise day tomorrow hurricane sandy \n", "\n", "\n", - "Huracán Sandy. http://t.co/J62VyLnK\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy \n", - "\n", - "\n", "They stay and guard regardless. God Bless Our Military. Taken during Hurricane Sandy. http://t.co/81QFdHdG\n", "\n", "--------------------------------------------------------\n", "stay guard regardless god bless military taken hurricane sandy \n", "\n", "\n", - "@leonthijmen New York na de storm Sandy http://t.co/pojbrktc\n", - "\n", - "--------------------------------------------------------\n", - "new york storm sandy \n", - "\n", - "\n", "Godzilla, the Alien Queen, Sta Puft Man, and Jaws chase Sandy away while the UFO's supply power to downtown http://t.co/5MuPt4ER\n", "\n", "--------------------------------------------------------\n", "godzilla alien queen sta puft jaws chase sandy away ufo supply power downtown \n", "\n", "\n", - "El huracán Sandy!!! Hahaha!!! http://t.co/jgn7ZvyT\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy hahaha \n", - "\n", - "\n", "Sandy tormenta perfrcta http://t.co/1beNg5zm\n", "\n", "--------------------------------------------------------\n", @@ -16237,58 +14673,34 @@ "papasoo sandy \n", "\n", "\n", - "Huracan sandy .... http://t.co/vm1Sv34U\n", - "\n", - "--------------------------------------------------------\n", - "huracan sandy \n", - "\n", - "\n", "Pelicula d esta noche \"Efecto mariposa\". Una mariposa al vatir sus alas n Australia podria crear un tornado Sandy n USA http://t.co/EDL9B9Vi\n", "\n", "--------------------------------------------------------\n", - "pelicula noche efecto mariposa mariposa vatir alas n australia podria crear tornado sandy n usa \n", - "\n", - "\n", - "@mwicustompaint: Ouragan Sandy photo http://t.co/VyeJw0Vc Diiinnngue ! :o\n", - "\n", - "--------------------------------------------------------\n", - "ouragan sandy photo diiinnngue \n", + "pelicula noche efecto mariposa mariposa vatir alas australia podria crear tornado sandy usa \n", "\n", "\n", "wow unreleased sandy picture! look how close http://t.co/MyXMqs8F\n", "\n", "--------------------------------------------------------\n", - "wow unreleased sandy picture look close \n", + "unreleased sandy picture look close \n", "\n", "\n", "Mukhang matindi nga talaga ang naging epekto ni Hurricane Sandy sa New York... http://t.co/zF0GQaYo\n", "\n", "--------------------------------------------------------\n", - "mukhang matindi nga talaga ang naging epekto hurricane sandy sa new york \n", + "mukhang matindi nga talaga ang naging epekto hurricane sandy new york \n", "\n", "\n", "Huracan Sandy, y asi es como empezo el fin del mundo http://t.co/Nv9t9eZB\n", "\n", "--------------------------------------------------------\n", - "huracan sandy asi empezo fin mundo \n", - "\n", - "\n", - "¿Ya se fue Sandy? :( http://t.co/8lxTaZ3v\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "after sandy http://t.co/6gDDj8jM\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "huracan sandy así empezo fin mundo \n", "\n", "\n", "God, pls bless my fellow American, away form hurricane Sandy #hurricanesandy #horrible #gogetaway #blessthempls http://t.co/JeP7SXG6\n", "\n", "--------------------------------------------------------\n", - "god pls bless fellow american away form hurricane sandy hurricanesandy horrible gogetaway blessthempls \n", + "god pls bless fellow american away form hurricane sandy hurricane sandy horrible gogetaway blessthempls \n", "\n", "\n", "Entrada de Sandy a New York... http://t.co/rkXYtexP\n", @@ -16300,7 +14712,7 @@ "19 Viral Images That Definitely Aren't Hurricane Sandy http://t.co/ssujEuDf http://t.co/sLgijPsv\n", "\n", "--------------------------------------------------------\n", - "19 viral images definitely hurricane sandy \n", + "9 viral images definitely hurricane sandy \n", "\n", "\n", "Guarden esta fotografía por ahí, la tomaron en New York, es Sandy no deja de ser bella la naturaleza aún en su furia... http://t.co/ces3G7Ie\n", @@ -16360,7 +14772,7 @@ "Is Sandy Gone!? (Get #9GagReader at http://t.co/KmXTiaJn) http://t.co/lunR2UqH\n", "\n", "--------------------------------------------------------\n", - "sandy gone get 9gagreader \n", + "sandy gone get \n", "\n", "\n", "@thalia esto te va a gusta! Antes de que llegara Sandy! http://t.co/gk5sVWww\n", @@ -16369,22 +14781,10 @@ "va gusta llegara sandy \n", "\n", "\n", - "A shark swims in a New Jersey yard that has been flooded by Hurricane Sandy...YES, that is a shark! http://t.co/F6Q8AR7B\"\n", - "\n", - "--------------------------------------------------------\n", - "shark swims new jersey yard flooded hurricane sandy yes shark \n", - "\n", - "\n", - "@tanveerashfaq @Billadoo @moinjunior @asadekhan @mannukhan @aslam53417 @rmzaidi \\nSandy That Was ....... http://t.co/nocQ4Z62\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Increible foto que acabo de ver del huracan Sandy en NYC!! ⚡⚡⚡ http://t.co/LkqvLO1O\n", "\n", "--------------------------------------------------------\n", - "increible foto acabo ver huracan sandy nyc \n", + "increible foto acabo ver huracan sandy new york city \n", "\n", "\n", "Hey guys my aunt got hit by sandy and it was flooded so bad there was a shark in her front yard http://t.co/sc9njDrs\n", @@ -16396,7 +14796,7 @@ "Hurrican SANDY NY! http://t.co/Owkpfxc7\n", "\n", "--------------------------------------------------------\n", - "hurrican sandy ny \n", + "hurrican sandy new york \n", "\n", "\n", "@Kenny_Brenny this is what's behind hurricane sandy. http://t.co/hY5cypLp\n", @@ -16405,12 +14805,6 @@ "behind hurricane sandy \n", "\n", "\n", - "Sandy... http://t.co/0frjgVkf\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "después del paso de Sandy http://t.co/ttrUUhmY\n", "\n", "--------------------------------------------------------\n", @@ -16426,13 +14820,7 @@ "The Biggest and Very Dangerous ..Sandy Storm in USA, it's happen a few days ago. Badai ini terjadi 200tahun sekali #FYI http://t.co/mnLFkLsH\n", "\n", "--------------------------------------------------------\n", - "biggest dangerous sandy storm usa happen days ago badai ini terjadi 200tahun sekali fyi \n", - "\n", - "\n", - "Huracán Sandy http://t.co/CBovmFSu\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy \n", + "biggest dangerous sandy storm usa happen days ago badai terjadi00tahun fyi \n", "\n", "\n", "The superstorm sandy picture @Brooksy2409 http://t.co/C4mZ6id7\n", @@ -16450,7 +14838,7 @@ "YO Sandy Chill LOL http://t.co/CxGlZJu8\n", "\n", "--------------------------------------------------------\n", - "sandy chill lol \n", + "sandy chill \n", "\n", "\n", "@megynkelly Here's an interesting Sandy pic from New Jersey. http://t.co/GQbS7X1j\n", @@ -16465,12 +14853,6 @@ "ok sandy gon need calm \n", "\n", "\n", - "Sandy has gone? http://t.co/tVutw6lZ\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "The Sandy messed up Liberty http://t.co/GwpCu3zg\n", "\n", "--------------------------------------------------------\n", @@ -16495,16 +14877,10 @@ "hope recovering sandy well thought enjoy \n", "\n", "\n", - "Hurricane Sandy..! http://t.co/PFwIcBEx\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "WHAT !! IS THIS SERIOUSLY HURRICANE SANDY! wow it's really big! :o http://t.co/HU1LPf69\n", "\n", "--------------------------------------------------------\n", - "seriously hurricane sandy wow really big \n", + "seriously hurricane sandy really big \n", "\n", "\n", "Twitter was great for updates on Hurricane Sandy, if you could tell what was real: http://t.co/drrPf1Vf http://t.co/RVcVU9ME\n", @@ -16522,7 +14898,7 @@ "Wow didn't know hurricane sandy was that bad http://t.co/BJLZ6zeM\n", "\n", "--------------------------------------------------------\n", - "wow know hurricane sandy bad \n", + "know hurricane sandy bad \n", "\n", "\n", "اعصار (sandy) http://t.co/6H2eEK9w\n", @@ -16540,7 +14916,7 @@ "This pic was taken during h/cane Sandy near A/C NJ . Shark swimming on main. Road! http://t.co/qVg1wpbR\n", "\n", "--------------------------------------------------------\n", - "pic taken h cane sandy near c nj shark swimming main road \n", + "pic taken h cane sandy near new jersey shark swimming main road \n", "\n", "\n", "Nell'entroterra, dopo Sandy, anche gli squali! http://t.co/kAvbqamP\n", @@ -16561,12 +14937,6 @@ "mientras huracán sandy \n", "\n", "\n", - "The Sandy effect....! http://t.co/aeLhHjoP\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "“@CuriousKerian: Hurricane sandy is worse than we thought http://t.co/NfvSCARx” RFFTTTT!!!!\n", "\n", "--------------------------------------------------------\n", @@ -16600,37 +14970,19 @@ "“@Joanmarcbosch: #picoftheday #fotografia Huracan Sandy @ New York @hacerfotos #hurricane #pic http://t.co/YwGPKewg” wow! Hermosa!!\n", "\n", "--------------------------------------------------------\n", - "wow hermosa \n", - "\n", - "\n", - "@Benny: @bigclam69 Look who refused to leave their posts during Sandy....#Duty #Honor http://t.co/BnJxouO3. Heroes. Nothing but respect\n", - "\n", - "--------------------------------------------------------\n", - "look refused leave posts sandy duty honor heroes nothing respect \n", + "hermosa \n", "\n", "\n", "21/12/2012#EndofWorld.Hurricane Sandy myt jst b e LAST hurricane tht wipes us all out.Thnk abt it►The Apocalypse Begins http://t.co/kOuuiP9n\n", "\n", "--------------------------------------------------------\n", - "21 12 2012 endofworld hurricane sandy myt jst b last hurricane tht wipes us thnk abt apocalypse begins \n", - "\n", - "\n", - "Sandy'e 4 saat kala New York http://t.co/v7mvZwaO\n", - "\n", - "--------------------------------------------------------\n", - "sandy 4 saat kala new york \n", - "\n", - "\n", - "@CuriousKerian: Hurricane sandy is worse than we thought http://t.co/v4hqZmh9Lmao\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy worse thought \n", + "hurricane sandy myt jst b last hurricane tht wipes us thnkit apocalypse begins \n", "\n", "\n", "just FYI this is not sandy, everyone is retarded who thinks it is, it is absolutely 100% fake... http://t.co/popUwD8k\n", "\n", "--------------------------------------------------------\n", - "fyi sandy everyone retarded thinks absolutely 100 fake \n", + "fyi sandy everyone retarded thinks absolutely00 fake \n", "\n", "\n", "@TeryGGarrido @hijadelaChanin Normal que esté asustada la pobre, y no por Sandy precisamente http://t.co/65Y3nIz7\n", @@ -16651,34 +15003,16 @@ "sandy warhol \n", "\n", "\n", - "@mwicustompaint: Ouragan Sandy photo Apocalyptique quand même OUFFFF http://t.co/pkUkSPvI C'est un #FAKE Copain\n", - "\n", - "--------------------------------------------------------\n", - "ouragan sandy photo apocalyptique quand même ouffff c est fake copain \n", - "\n", - "\n", "Lmaooooooo thats how we were acting when sandy came ctfuuuuu http://t.co/O36QMJLO\n", "\n", "--------------------------------------------------------\n", - "lmaooooooo thats acting sandy came ctfuuuuu \n", - "\n", - "\n", - "The Sandy effect http://t.co/FJJ3CITe\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", + "thats acting sandy came ctfuuuuu \n", "\n", "\n", "Smh hurricane sandy had sharks swimming In the streets in NJ http://t.co/1xBcEbfD\n", "\n", "--------------------------------------------------------\n", - "smh hurricane sandy sharks swimming streets nj \n", - "\n", - "\n", - "After hurricane Sandy... =))))))) http://t.co/8qOLUoZK\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "hurricane sandy sharks swimming streets new jersey \n", "\n", "\n", "Esta foto sólo se ve cuando están rodando una película o en una visita cual huracán \"Sandy\" http://t.co/27aNmVJc\n", @@ -16690,7 +15024,7 @@ "Foto dari Amerika Serikat. Sekarang ada Storm Sandy yang akan datang ke kota New York!!!! http://t.co/ykRu1eDa\n", "\n", "--------------------------------------------------------\n", - "foto dari amerika serikat sekarang ada storm sandy yang akan datang ke kota new york \n", + "foto amerika serikat storm sandy kota new york \n", "\n", "\n", "Sandy Storm http://t.co/vnOcJOPh\n", @@ -16699,12 +15033,6 @@ "sandy storm \n", "\n", "\n", - "Lmao hurricane sandy ain't no hoe ! http://t.co/DsK8EpYm\n", - "\n", - "--------------------------------------------------------\n", - "lmao hurricane sandy \n", - "\n", - "\n", "#Superstorm Sandy Is this true or just some "trick or treat"PS joke? http://t.co/4iITNp80\n", "\n", "--------------------------------------------------------\n", @@ -16717,12 +15045,6 @@ "pictures hurricane sandy unreal literally staypuftmarshmellowman photoshopped fakepicture \n", "\n", "\n", - "Sandy are you there? http://t.co/QlHH1r3o\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Check out who didn't let Hurricane Sandy keep them from their job: http://t.co/WEYcTdx2 http://t.co/q4Gxg86H\n", "\n", "--------------------------------------------------------\n", @@ -16744,7 +15066,7 @@ "Asi aguanto a Sandy, (olivia n. jonh) y a travolta la estutatua de la liberdad http://t.co/MAVEFeX8\n", "\n", "--------------------------------------------------------\n", - "asi aguanto sandy olivia n jonh travolta estutatua liberdad \n", + "asi aguanto sandy oliand jonh travolta estutatua liberdad \n", "\n", "\n", "@EllisMate Sandy released the sharks in long island http://t.co/YkLSRTKQ\n", @@ -16759,12 +15081,6 @@ "sandy etkisi \n", "\n", "\n", - "NewYork Hurricane Sandy http://t.co/pfOLrLbo\n", - "\n", - "--------------------------------------------------------\n", - "newyork hurricane sandy \n", - "\n", - "\n", "I want to Scooba dive in New York subways....minus Sandy #bucketlist http://t.co/3ynnFXoN\n", "\n", "--------------------------------------------------------\n", @@ -16774,13 +15090,13 @@ "No candy 4 Sandy vol.2 http://t.co/HR6qOtp3\n", "\n", "--------------------------------------------------------\n", - "candy 4 sandy vol 2 \n", + "candy sandy vol \n", "\n", "\n", "La statue de la liberté et Sandy haha http://t.co/HABfB5SX\n", "\n", "--------------------------------------------------------\n", - "statue liberté et sandy haha \n", + "statue liberté sandy \n", "\n", "\n", "Devastating effect of sandy. http://t.co/pRVHo9xC\n", @@ -16798,13 +15114,13 @@ "Is dt a shark???@fanamokoena: Hurricane Sandy http://t.co/7KTtqlrN\n", "\n", "--------------------------------------------------------\n", - "dt shark hurricane sandy \n", + "dt shark \n", "\n", "\n", "se a sandy que é a sandy esta fazendo um estrago desses imagina se fosse furação preta gil........................ http://t.co/CsWJUfiX\n", "\n", "--------------------------------------------------------\n", - "sandy é sandy fazendo um estrago desses imagina fosse furação preta gil \n", + "sandy sandy fazendo estrago desses imagina furação preta gil \n", "\n", "\n", "Abd sandy den sonra saka gibi!! http://t.co/vmJbFo2A\n", @@ -16816,7 +15132,7 @@ "It seems everyone in NY is hiding from hurricane sandy. http://t.co/DV2ouJtS\n", "\n", "--------------------------------------------------------\n", - "seems everyone ny hiding hurricane sandy \n", + "seems everyone new york hiding hurricane sandy \n", "\n", "\n", "Sandy escalated quickly http://t.co/tQeETx1E\n", @@ -16831,12 +15147,6 @@ "sandy good w staysafe \n", "\n", "\n", - "Sandy ya se fue??? http://t.co/sqKb4L58\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Hurricane Sandy what have you done?! http://t.co/mhOAdNfh\n", "\n", "--------------------------------------------------------\n", @@ -16873,18 +15183,6 @@ "darien ct see wall street sharks loose new jersey hurricane sandy aftermath \n", "\n", "\n", - "Sandy... ? http://t.co/LFDHflBE\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "Is Sandy gone :( http://t.co/cvt3GoeZ\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "Hurricane sandy was a big bitch! http://t.co/eAKVLMqt\n", "\n", "--------------------------------------------------------\n", @@ -16894,13 +15192,7 @@ "Vrijheids beelt komt ook weer even omkijken of sandy <-(tornado in New York) al over gevlogen is http://t.co/2X8qOJR9\n", "\n", "--------------------------------------------------------\n", - "vrijheids beelt komt weer even omkijken sandy less tornado new york gevlogen \n", - "\n", - "\n", - "What hurricane sandy does to you http://t.co/iKq4buTp\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "vrijheids beelt komt weer even omkijken sandy tornado new york gevlogen \n", "\n", "\n", "#americanhorrorstory ummmmmm Sandy yaaa calma ☁ ☁ ☺ http://t.co/zlbcGv3Z\n", @@ -16912,7 +15204,7 @@ "“@Only_Joa: Smh hurricane sandy had sharks swimming In the streets in NJ http://t.co/JChuXI3p”dat shit cray lol\n", "\n", "--------------------------------------------------------\n", - "shit cray lol \n", + "shit cray \n", "\n", "\n", "Huracán Sandy lo que provocas!!! http://t.co/HhAbnTnO\n", @@ -16921,22 +15213,10 @@ "huracán sandy provocas \n", "\n", "\n", - "sandy was a bitch http://t.co/QC4OtUc8\n", - "\n", - "--------------------------------------------------------\n", - "sandy bitch \n", - "\n", - "\n", - "@HocicoTarro: Huracán Sandy, Frankenstorm !! @twitergrafias http://t.co/0thlb0oA// Increible!!!\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy frankenstorm increible \n", - "\n", - "\n", "Badai di Indonesia tu ya korupsi yg menahun \"@jadulfe78: Subhanallah, Badai Sandy yg melanda Amerika... http://t.co/JZNvLzbv\"\n", "\n", "--------------------------------------------------------\n", - "badai di indonesia korupsi yg menahun \n", + "badai indonesia korupsi yg menahun \n", "\n", "\n", "Disaster by sandy http://t.co/LZUOHCmF\n", @@ -16951,48 +15231,18 @@ "damn hurricane sandy make things even creepier \n", "\n", "\n", - "Sandy? Ya se fue? http://t.co/RSohkr8b\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "“@efitz6: Hurricane Sandy approaching New York. http://t.co/Y3eHhyLa” what a picture\n", "\n", "--------------------------------------------------------\n", "picture \n", "\n", "\n", - "Is Sandy gone? http://t.co/71igYuDW\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", - "Sandy su New York http://t.co/gzlIIBrY\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", - "@TARASBITCH: Sandy :( http://t.co/o9UbkVxE OMG! :O\n", - "\n", - "--------------------------------------------------------\n", - "sandy omg \n", - "\n", - "\n", "CIA estudia conexión entre el huracán Sandy y el lanzamiento del Satélite Miranda http://t.co/cKjzaSwY\n", "\n", "--------------------------------------------------------\n", "cia estudia conexión huracán sandy lanzamiento satélite miranda \n", "\n", "\n", - "OH SANDY! http://t.co/k06o4id4\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", "...que viene sandy!!!! jeje http://t.co/m3hR1PCr\n", "\n", "--------------------------------------------------------\n", @@ -17008,13 +15258,13 @@ "orkaan sandy 2012 http://t.co/Mm7WXyvJ\n", "\n", "--------------------------------------------------------\n", - "orkaan sandy 2012 \n", + "orkaan sandy012 \n", "\n", "\n", "What hurricane sandy have done :D \\355\\270\\234 http://t.co/YAoS608w\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy done 355 270 234 \n", + "hurricane sandy done d4 \n", "\n", "\n", "los estragos de SANDY en nueva york... http://t.co/2Z25piHZ\n", @@ -17026,7 +15276,7 @@ "Ora che Sandy è passato, New York cerca di tornare alla normalità. Ma sono tanti i cambiamenti a cui dovrà abituarsi... http://t.co/CHwn4Eil\n", "\n", "--------------------------------------------------------\n", - "ora che sandy è passato new york cerca di tornare normalità sono tanti cambiamenti cui dovrà abituarsi \n", + "ora che sandy è passato new york cerca tornare normalità sono tanti cambiamenti cui dovrà abituarsi \n", "\n", "\n", "“@iFrankayy: Hurricane sandy hits new york! http://t.co/QDL8Pcrk” shit's not funny.\n", @@ -17038,7 +15288,7 @@ "Lake of Bays and Sandy 2012 http://t.co/mYQ8HF9H via @PicCollage http://t.co/qtSS00fd\n", "\n", "--------------------------------------------------------\n", - "lake bays sandy 2012 \n", + "lake bays sandy012 \n", "\n", "\n", "Hurricane sandy hits new york! http://t.co/bg01Sf5G\"\n", @@ -17089,22 +15339,10 @@ "sandy kasırgası new york kıyılarına ulaştı \n", "\n", "\n", - "“@WitMeSheStayWet: Damn Hurricane Sandy !!! http://t.co/igbyvb4x” lmao\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", - "\n", - "\n", "^LOL Sandy Hurricane Did That http://t.co/ZG5Cib99\n", "\n", "--------------------------------------------------------\n", - "lol sandy hurricane \n", - "\n", - "\n", - "“@rhysyharding: hurricane sandy damage http://t.co/Xao8mlW7” omg loool\n", - "\n", - "--------------------------------------------------------\n", - "omg loool \n", + "sandy hurricane \n", "\n", "\n", "Dam sandy http://t.co/jWpxvFlA\n", @@ -17128,19 +15366,13 @@ "Sandy ha revolucionado NY!!! http://t.co/7KfVuUnx\n", "\n", "--------------------------------------------------------\n", - "sandy revolucionado ny \n", + "sandyrevolucionado new york \n", "\n", "\n", "Hahaha , look what hurricane sandy did there !! http://t.co/PhUhlObl\n", "\n", "--------------------------------------------------------\n", - "hahaha look hurricane sandy \n", - "\n", - "\n", - "New York after Hurricane Sandy! ...http://t.co/bg01Sf5G\"\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricane sandy \n", + "look hurricane sandy \n", "\n", "\n", "Consecuencias inevitables de Sandy Bell. #ChettosPaDesayunar #WacalesConTiburones http://t.co/R46EXAT2\n", @@ -17152,13 +15384,7 @@ "Sandy 2012 never forget http://t.co/r2uANsEc\n", "\n", "--------------------------------------------------------\n", - "sandy 2012 never forget \n", - "\n", - "\n", - "@joenufc96: Hurricane sandy hits the UK http://t.co/T70z1vk4 @TheStantMan\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy hits uk \n", + "sandy012 never forget \n", "\n", "\n", "Hurricane Sandy must have just hit the uk :/ picking up the pieces http://t.co/Tn4kyHoF\n", @@ -17176,7 +15402,7 @@ "#TerapiaDeRisa Ya se acercaba el Huracán \"Sandy\" a NY!! http://t.co/RuBRbT8o\n", "\n", "--------------------------------------------------------\n", - "terapiaderisa acercaba huracán sandy ny \n", + "terapiaderisa acercaba huracán sandy new york \n", "\n", "\n", "Estatua libertad bailando Sandy al ritmo travoltino http://t.co/FGg5x03d dedicado a mi amigo @Barksdale666 http://t.co/LwwRBSAo\n", @@ -17203,12 +15429,6 @@ "condenada sandy \n", "\n", "\n", - "Hurricane \"Sandy\". http://t.co/5RgEHlfQ\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "@MennMandy MANDY.. kijk..!!! Kwam door orkaan Sandy..!! ;p http://t.co/EBnbT7pT\n", "\n", "--------------------------------------------------------\n", @@ -17230,7 +15450,7 @@ "Huracán Sandy. Pues si que hace viento en NY... http://t.co/zTojzuBH\n", "\n", "--------------------------------------------------------\n", - "huracán sandy pues si hace viento ny \n", + "huracán sandy pues si hace viento new york \n", "\n", "\n", "So many fake photos of Superstorm Sandy. Glad to see this isn't one of them. http://t.co/0WIlF71A\n", @@ -17242,7 +15462,7 @@ "Lo que no se vio en NY de Sandy http://t.co/mML3jzMS\n", "\n", "--------------------------------------------------------\n", - "vio ny sandy \n", + "vio new york sandy \n", "\n", "\n", "“@pattysanroman: Condenada Sandy! http://t.co/sgPGZhkm”// me acorde de @niuyorkina\n", @@ -17284,13 +15504,13 @@ "Lo ke hizo sandy en new York!!🙀🙀 http://t.co/LsckG78r\n", "\n", "--------------------------------------------------------\n", - "ke hizo sandy new york \n", + "hizo sandy new york \n", "\n", "\n", "Hurricane sandy aint no joke lol http://t.co/1FMc13kn\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy aint joke lol \n", + "hurricane sandy aint joke \n", "\n", "\n", "“@m1mmo Ora che Sandy è passato, sono tanti i cambiamenti a cui dovrà abituarcisi... http://t.co/6K06CtJY”\n", @@ -17323,12 +15543,6 @@ "hurricane sandy fierce winds \n", "\n", "\n", - "@retardedmom: OMG HURRICANE SANDY IS GONNA KILL US ALL!!!!! http://t.co/tC1SPRLG\n", - "\n", - "--------------------------------------------------------\n", - "omg hurricane sandy gonna kill us \n", - "\n", - "\n", "Sandy!!!!! شوفو وش سوى بتمثال الحرية..لووووووووووول.الى الابد.. http://t.co/fBVqPOQ8\n", "\n", "--------------------------------------------------------\n", @@ -17380,7 +15594,7 @@ "Cette nuit à New York. Je vous assure que ce n'est pas du Photoshop. #Sandy http://t.co/i4F9GmAy\n", "\n", "--------------------------------------------------------\n", - "cette nuit à new york vous assure ce n est pas photoshop sandy \n", + "cette nuitnew york assure photoshop sandy \n", "\n", "\n", "Imagen impactante del huracán \"Sandy\" en Nueva York. http://t.co/fWRi0rh0\n", @@ -17398,7 +15612,7 @@ "IMPACTANTE IMAGEN de Nueva York y el huracán Sandy NY New York http://t.co/vZbIzT17\n", "\n", "--------------------------------------------------------\n", - "impactante imagen nueva york huracán sandy ny new york \n", + "impactante imagen nueva york huracán sandy new york new york \n", "\n", "\n", "Les dejo una imagen impactante mostrando como la gente se protege del huracan Sandy en New York http://t.co/BaaMoTkd\n", @@ -17425,12 +15639,6 @@ "impresionante imagen huracán sandy nueva york \n", "\n", "\n", - "Foto del Huracán Sandy en Nueva York, como sacada de una película. http://t.co/7hYqKjaj\n", - "\n", - "--------------------------------------------------------\n", - "foto huracán sandy nueva york sacada película \n", - "\n", - "\n", "Imagen asombrosa del huracán Sandy descendiendo en Nueva York http://t.co/0zHYFI7o\n", "\n", "--------------------------------------------------------\n", @@ -17449,24 +15657,12 @@ "imagen cámara seguridad nueva york podemos ver inmensos destrozos causados sandy \n", "\n", "\n", - "@Azuunzue5: ''Foto del Huracán Sandy en Nueva York'' zarpadooooooooooooo http://t.co/850PQa53 increibleee!!!!!\n", - "\n", - "--------------------------------------------------------\n", - "foto huracán sandy nueva york zarpadooooooooooooo increibleee \n", - "\n", - "\n", "Refugios en Nueva York ante la llegada del huracán Sandy. http://t.co/fJwpTFWS\n", "\n", "--------------------------------------------------------\n", "refugios nueva york llegada huracán sandy \n", "\n", "\n", - "@lndirecto: Impresionante e impactante foto de como se refugian en Nueva York ante la llegada del huracán Sandy. http://t.co/P4RRCr5l\n", - "\n", - "--------------------------------------------------------\n", - "impresionante impactante foto refugian nueva york llegada huracán sandy \n", - "\n", - "\n", "Nos llegan noticias de ultima hora, el huracan Sandy esta causando estragos en la ciudad de Nueva York http://t.co/CdZc8T40\n", "\n", "--------------------------------------------------------\n", @@ -17479,16 +15675,10 @@ "hurricane sandy worse thought \n", "\n", "\n", - "The deadly hurricane Sandy.. Nature is so violent yet so beautiful. http://t.co/RJwzRzvc\n", - "\n", - "--------------------------------------------------------\n", - "deadly hurricane sandy nature violent yet beautiful \n", - "\n", - "\n", "Hurricane Sandy. NYC. True story: http://t.co/ZiuEnGgx\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc true story \n", + "hurricane sandy new york city true story \n", "\n", "\n", "Hurricane Sandy approaching New York. http://t.co/HJVCfOYA\n", @@ -17500,15 +15690,9 @@ "OMG HURRICANE SANDY IS GONNA KILL US ALL!!!!! http://t.co/GQDgjYCu\n", "\n", "--------------------------------------------------------\n", - "omg hurricane sandy gonna kill us \n", + "hurricane sandy gonna kill us \n", + "\n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ "Hurricane Sandy, Nueva York.Fotón !! http://t.co/Y7PCc9QW\n", "\n", "--------------------------------------------------------\n", @@ -17530,7 +15714,7 @@ "Was already running from limpopo \"@fanamokoena: Lol! It's not real RT “ArcadiaT: No kidding \"fana: Hurricane Sandy http://t.co/bGBOdIVT\n", "\n", "--------------------------------------------------------\n", - "already running limpopo lol real \n", + "already running limpopo fana hurricane sandy \n", "\n", "\n", "Amazing photo taken in New York, just before hurricane Sandy hit http://t.co/2i917d15\n", @@ -17548,13 +15732,13 @@ "Wishing Everyone a Speedy recovery from Hurricane Sandy! http://t.co/qnCbeC0i #nyc http://t.co/QCIgFga4\n", "\n", "--------------------------------------------------------\n", - "wishing everyone speedy recovery hurricane sandy nyc \n", + "wishing everyone speedy recovery hurricane sandy new york city \n", "\n", "\n", "I don't care why you say this deserves SO MUCH RESPECT! During Hurricane Sandy. 1 RT= 1Respect http://t.co/zRKMhalt\n", "\n", "--------------------------------------------------------\n", - "care say deserves much respect hurricane sandy 1 rt 1respect \n", + "care say deserves much respect hurricane sandy \n", "\n", "\n", "This hurricane is starting to get really scary now... http://t.co/t9gDwVOQ\n", @@ -17584,7 +15768,7 @@ "Please check out this -> 11 Viral Photos That AREN'T Hurricane Sandy http://t.co/coq11QAU http://t.co/fyPwSrT1\n", "\n", "--------------------------------------------------------\n", - "please check 11 viral photos hurricane sandy \n", + "please check 1 viral photos hurricane sandy \n", "\n", "\n", "You do realise this is fake? That its from a movie? Please tell me! RT @fanamokoena: Hurricane Sandy http://t.co/wWXx86OT\n", @@ -17599,16 +15783,10 @@ "eish \n", "\n", "\n", - "Wow that's scary RT @fanamokoena: Hurricane Sandy http://t.co/WRrdSTPR\n", - "\n", - "--------------------------------------------------------\n", - "wow scary \n", - "\n", - "\n", "Y'A DES REQUINS DANS LES RUES DU NEW JERSEY.... *_* #Sandy http://t.co/nqcEExiO\n", "\n", "--------------------------------------------------------\n", - "des requins dans rues new jersey sandy \n", + "requins rues new jersey sandy \n", "\n", "\n", "АКУЛЫ ПЛАВАЮТ ПО УЛИЦАМ НЬЮ-ЙОРКА! СУКА Я ЩАС ОБОССУСЬ ОТ СТРАХА. Буду молится, чтобы все было хорошо. Аминь. #Sandy http://t.co/eZq9IQ7H\n", @@ -17620,7 +15798,7 @@ "Animales de los Zoologícos sueltos por las calles de NY, debido al huracan Sandy. #PrayForUSA http://t.co/posXbUGL\n", "\n", "--------------------------------------------------------\n", - "animales zoologícos sueltos calles ny debido huracan sandy prayforusa \n", + "animales zoologícos sueltos calles new york debido huracan sandy prayforusa \n", "\n", "\n", "Sandy Kasırgası sırasında çekilmiş bir kare... http://t.co/anCvKtnY\n", @@ -17638,7 +15816,7 @@ "Live picture of Hurricane Sandy in America, wow. http://t.co/2w9wC5DX\n", "\n", "--------------------------------------------------------\n", - "live picture hurricane sandy america wow \n", + "live picture hurricane sandy america \n", "\n", "\n", "Cool pick #Sandy http://t.co/fGSWMqq4\n", @@ -17656,7 +15834,7 @@ "Oh dear god.. #Sandy http://t.co/8VKWHYWK\n", "\n", "--------------------------------------------------------\n", - "oh dear god sandy \n", + "dear god sandy \n", "\n", "\n", "Its #sandy dude :S ! http://t.co/g1S2itXW\n", @@ -17668,13 +15846,13 @@ "El huracan #sandy es algo más temible d lo nos pensabamos,esta imagen lo confirma...NY esta perdida #sálvanosSUPERMAN http://t.co/VcxUGVCS\n", "\n", "--------------------------------------------------------\n", - "huracan sandy temible pensabamos imagen confirma ny perdida sálvanossuperman \n", + "huracan sandy temible pensabamos imagen confirma new york perdida sálvanossuperman \n", "\n", "\n", "#StormSandy Ces photos qui sont des fakes, sinon voir les officielles sur Buzzfeed http://t.co/8XBvXicP http://t.co/PuFXKrNP\n", "\n", "--------------------------------------------------------\n", - "stormsandy ces photos qui sont des fakes sinon voir officielles sur buzzfeed \n", + "stormsandy photos fakes sinon voir officielles buzzfeed \n", "\n", "\n", "Has #sandy #Hurricane gone yet? Is it safe to come out? http://t.co/k53uSuSd\n", @@ -17683,16 +15861,10 @@ "sandy hurricane gone yet safe come \n", "\n", "\n", - "@Delivered2: تم إنشاء هاش تاق جديد مؤخراً للأنستقرام للعاصفة القادمة التي تُدعى إعصار ساندي بكل الصور المحدثة. #sandy http://t.co/pxb0oRQo\n", - "\n", - "--------------------------------------------------------\n", - "تم إنشاء هاش تاق جديد مؤخرا للأنستقرام للعاصفة القادمة ت دعى إعصار ساندي بكل الصور المحدثة sandy \n", - "\n", - "\n", "Hahahaha! #Sandy #HurricaneSandy #Hurricane #NewYork #StatueOfLiberty #Liberty http://t.co/aXkVIKAH\n", "\n", "--------------------------------------------------------\n", - "hahahaha sandy hurricanesandy hurricane newyork statueofliberty liberty \n", + "sandy hurricane sandy hurricane new york statueofliberty liberty \n", "\n", "\n", "Not everyone ran for cover during hurricane #Sandy http://t.co/7C7lAXvK\n", @@ -17737,12 +15909,6 @@ "ハリケーンsandyの映像 まるで映画そのまんまですね こわ \n", "\n", "\n", - "Ya se fue #Sandy ? http://t.co/OYAbiRra\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "@Cafeinomania acojonaica #sandy http://t.co/gpXOAXsk\n", "\n", "--------------------------------------------------------\n", @@ -17758,7 +15924,7 @@ "#newyork #sandy #lol #funny #fun http://t.co/GED92pFb\n", "\n", "--------------------------------------------------------\n", - "newyork sandy lol funny fun \n", + "new york sandy funny fun \n", "\n", "\n", "Hurricane Fluffy http://t.co/Gmkeh3tJ\n", @@ -17770,7 +15936,7 @@ "@GuilleDiaz asi se veia NY antes de que #sandy tocara tierra http://t.co/sLokR0zH\n", "\n", "--------------------------------------------------------\n", - "asi veia ny sandy tocara tierra \n", + "así veia new york sandy tocara tierra \n", "\n", "\n", "¿Ya paso? #Sandy http://t.co/Ogybuz8j\n", @@ -17785,12 +15951,6 @@ "liberty stands sandy picture symbolizes stand tall even battered bruised \n", "\n", "\n", - "Increíble!!..imagen d un tiburón q por culpa de #Sandy acabó por las calles.. http://t.co/wyPL1r2W\"\n", - "\n", - "--------------------------------------------------------\n", - "increíble imagen tiburón q culpa sandy acabó calles \n", - "\n", - "\n", "NOT a photoshop! #hurricane #sandy #amazing but #scary http://t.co/wAdSnFz5\n", "\n", "--------------------------------------------------------\n", @@ -17800,7 +15960,7 @@ "@Nosi9gouws it wasn't a cmeback sunshine is was a recommendation.. Hey ur an expert on fake #sandy fotos rite?? http://t.co/mR5hHnvT\" fake?\n", "\n", "--------------------------------------------------------\n", - "cmeback sunshine recommendation hey ur expert fake sandy fotos rite fake \n", + "cmeback sunshine recommendation hey expert fake sandy fotos rite fake \n", "\n", "\n", "HOW TO SPOT A FAKE #Sandy PIC: CATS CANNOT BE CLOUDS! http://t.co/0t1ga3L1\n", @@ -17812,7 +15972,7 @@ "Sandy was a nasty lady but took a great pic #Sandy @rachaeyyy sure u want to live in NYC #crazyweather. http://t.co/HWnZn7ge\n", "\n", "--------------------------------------------------------\n", - "sandy nasty lady took great pic sandy sure live nyc crazyweather \n", + "sandy nasty lady took great pic sandy sure live new york city crazyweather \n", "\n", "\n", "大型台風Sandyすごすぎ、映画みたいじゃない? http://t.co/I3b1wjou\n", @@ -17848,19 +16008,19 @@ "EN EXCLUSIVA! Imágenes inéditas sobre lo que está pasando en NY. #Sandy http://t.co/NaeJ7IiH // Ohh My gooosh!! 😟\"\n", "\n", "--------------------------------------------------------\n", - "exclusiva imágenes inéditas pasando ny sandy ohh gooosh \n", + "exclusiva imágenes inéditas pasando new york sandy gooosh \n", "\n", "\n", "My Weekly Comic Book Haul!!! Hurricane Sandy Edition @talkingcomics #finallyalightweek #Sandy #haha http://t.co/VfIgCeBo\n", "\n", "--------------------------------------------------------\n", - "weekly comic book haul hurricane sandy edition finallyalightweek sandy haha \n", + "weekly comic book haul hurricane sandy edition finallyalightweek sandy \n", "\n", "\n", "#sandy is just ravaging NYC http://t.co/W3Nau9ek\n", "\n", "--------------------------------------------------------\n", - "sandy ravaging nyc \n", + "sandy ravaging new york city \n", "\n", "\n", "تم إنشاء هاش تاق جديد مؤخراً للأنستقرام للعاصفة القادمة التي تُدعى إعصار ساندي بكل الصور المحدثة.\\n#sandy http://t.co/XjOKwT44\n", @@ -17869,18 +16029,6 @@ "تم إنشاء هاش تاق جديد مؤخرا للأنستقرام للعاصفة القادمة ت دعى إعصار ساندي بكل الصور المحدثة sandy \n", "\n", "\n", - "What hurricane? http://t.co/44gSX6S8\n", - "\n", - "--------------------------------------------------------\n", - "hurricane \n", - "\n", - "\n", - "Ohh #Sandy why??? http://t.co/xNwYF5kB\n", - "\n", - "--------------------------------------------------------\n", - "ohh sandy \n", - "\n", - "\n", "#SANDY\\nВ городе Нью-Джерси по улицам плавают акулы из-за шторма \"SANDY\" http://t.co/33heFPg1\n", "\n", "--------------------------------------------------------\n", @@ -17902,7 +16050,7 @@ "هاا خلص الإعصار ولا لاء ؟ XD #إعصار_ساندي #sandy http://t.co/XpAKOzif\n", "\n", "--------------------------------------------------------\n", - "هاا خلص الإعصار لاء xd إعصار ساندي sandy \n", + "هاا خلص الإعصار لاء xd إعصارساندي sandy \n", "\n", "\n", "se escondio por el huracan http://t.co/yexe4y33\n", @@ -17917,12 +16065,6 @@ "انت وين طلعت روح ارجع مكانك sandy \n", "\n", "\n", - "@Daweeq: HURRICANE #SANDY IS GETTING REAL http://t.co/FZSnBGCv\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", "@AlbaDelaOsa #Sandy es toda toda culpa suya ;) http://t.co/jgEyPHsG\n", "\n", "--------------------------------------------------------\n", @@ -17938,13 +16080,13 @@ "Ахах #Duran #Sandy #АкулаВНью_Йорке http://t.co/B5UTNJaE\n", "\n", "--------------------------------------------------------\n", - "ахах duran sandy акулавнью йорке \n", + "ахах duran sandy акулавньюйорке \n", "\n", "\n", "Oh mon dieu, on va tous mourir! (via http://t.co/MfzyszCF) http://t.co/51W8qFmE\n", "\n", "--------------------------------------------------------\n", - "oh mon dieu va tous mourir via \n", + "dieu va tous mourir \n", "\n", "\n", "#SANDY is coming - beware #FueraHuracánSandyDeNY http://t.co/U062tpwz\"\n", @@ -17953,16 +16095,10 @@ "sandy coming beware fuerahuracánsandydeny \n", "\n", "\n", - "#real #sandy http://t.co/fCzrOn4I\n", - "\n", - "--------------------------------------------------------\n", - "real sandy \n", - "\n", - "\n", "#changingoftheguard #tombofunknownsoldiers #hurricane #Sandy #marines #usa #proudtobeamerican never left unattended http://t.co/ob26uLi4\n", "\n", "--------------------------------------------------------\n", - "changingoftheguard tombofunknownsoldiers hurricane sandy marines usa proudtobeamerican never left unattended \n", + "changingoftheguard tombofunknown soldiers hurricane sandy marines usa proudtobeamerican never left unattended \n", "\n", "\n", "Últimas imágenes de #Sandy http://t.co/S0401dQw\n", @@ -17977,12 +16113,6 @@ "dead kennedys downtown jerseycity chilltown aftermath hurricane sandy newjersey \n", "\n", "\n", - "Ha! #sandy http://t.co/o0AOcyfB\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Hahahahah :p #Sandy http://t.co/yKBaYooo\n", "\n", "--------------------------------------------------------\n", @@ -17992,25 +16122,19 @@ "Attention aux fausses images de l'ouragan #Sandy. Cette photo, bien que jolie, est un fake ! http://t.co/ahEK26XA\n", "\n", "--------------------------------------------------------\n", - "attention aux fausses images l ouragan sandy cette photo bien jolie est fake \n", + "attention fausses images ouragan sandy cette photo bien jolie fake \n", "\n", "\n", "@Gumzz05 lmao mara wena... hurricane gumzz lmao!!! http://t.co/cG9dWTT8\n", "\n", "--------------------------------------------------------\n", - "lmao mara wena hurricane gumzz lmao \n", - "\n", - "\n", - "#hurricane #sandy. http://t.co/JsXpfYYy\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "mara wena hurricane gumzz \n", "\n", "\n", "un petit clin d'oeil sur #sandy et promis c'est pas du #fake !!! http://t.co/VGOe4cFb\n", "\n", "--------------------------------------------------------\n", - "petit clin oeil sur sandy et promis c est pas fake \n", + "petit clin oeil sandy promis fake \n", "\n", "\n", "HOW TO SPOT A FAKE #Sandy PIC: SANDY DID NOT COME IN FROM THE WEST! http://t.co/GcBKrF9c\n", @@ -18027,20 +16151,20 @@ "\n", "Today's \"flow\"\\n#Sandy http://t.co/UOwZ6sEH\n", "\n", - "--------------------------------------------------------\n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "today flow sandy \n", "\n", "\n", - "Is #sandy gone? http://t.co/Axi1SEfs\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "#hurracaine #sandy \\nAre you for real. O.0 http://t.co/jC4Tx6XT\n", "\n", "--------------------------------------------------------\n", - "hurracaine sandy real 0 \n", + "hurracaine sandy real \n", "\n", "\n", "Damn was it that serious 😨 #Sandy #SadDay @_ShmokeAStorm http://t.co/9CctUfHU\n", @@ -18064,13 +16188,13 @@ "Las imagenes pasadas eran falsas. Esta es la buena! #Sandy #NY http://t.co/YRUMMn0z\n", "\n", "--------------------------------------------------------\n", - "imagenes pasadas falsas buena sandy ny \n", + "imagenes pasadas falsas buena sandy new york \n", "\n", "\n", "LOL #HurricaneSandy #Sandy #NYC #photooftheday http://t.co/MmeArW6w\n", "\n", "--------------------------------------------------------\n", - "lol hurricanesandy sandy nyc photooftheday \n", + "hurricane sandy sandy new york city photooftheday \n", "\n", "\n", "Chill my nigga #Sandy http://t.co/vQjcl9FV\n", @@ -18082,19 +16206,7 @@ "Wow, that looks like some Independence Day shit right there! #sandy #NYC http://t.co/uDm23F4l\n", "\n", "--------------------------------------------------------\n", - "wow looks like independence day shit right sandy nyc \n", - "\n", - "\n", - "#timessquare. #sandy http://t.co/357sh4Bj\n", - "\n", - "--------------------------------------------------------\n", - "timessquare sandy \n", - "\n", - "\n", - "#Sandy http://t.co/n51I1TqW WOW.\n", - "\n", - "--------------------------------------------------------\n", - "sandy wow \n", + "looks like independence day shit right sandy new york city \n", "\n", "\n", "Lo que arrastro el #huracan #sandy #tiburones http://t.co/hFSOvUF7\n", @@ -18106,13 +16218,13 @@ "Authentic image from Newyork during #hurricane #sandy http://t.co/M394SWaO\n", "\n", "--------------------------------------------------------\n", - "authentic image newyork hurricane sandy \n", + "authentic image new york hurricane sandy \n", "\n", "\n", "Message to hurricane Sandy #hurricanesandy #sandy http://t.co/XtxCpSBy\n", "\n", "--------------------------------------------------------\n", - "message hurricane sandy hurricanesandy sandy \n", + "message hurricane sandy hurricane sandy sandy \n", "\n", "\n", "Как же я сочувствую людям, поскорее бы это закончилось:(( #sandy #pray http://t.co/6Fvd5B37\n", @@ -18136,19 +16248,13 @@ "#NewYork #sandy stormmmm http://t.co/fFc1VTS8\n", "\n", "--------------------------------------------------------\n", - "newyork sandy stormmmm \n", - "\n", - "\n", - "@cristinaminguez: Tiburones por las calles de NY. #SANDY http://t.co/3NH9LjqX esto es real??????!!!!\n", - "\n", - "--------------------------------------------------------\n", - "tiburones calles ny sandy real \n", + "new york sandy stormmmm \n", "\n", "\n", "Het onderwerp is niet grappig, maar het plaatje wel 😄 'Is it safe to come out yet??' #Sandy #NYC http://t.co/mpbeb3lO\n", "\n", "--------------------------------------------------------\n", - "onderwerp grappig plaatje wel safe come yet sandy nyc \n", + "onderwerp grappig plaatje wel safe come yet sandy new york city \n", "\n", "\n", "Federal Gov't shut down during the hurricane. BUT our military was on the job - no surprise here! http://t.co/ZRNJqjVw http://t.co/kVS8iYsc\n", @@ -18160,13 +16266,13 @@ "Vorhin ne Parodie zu #Sandy gefunden :DDDD http://t.co/TAmizyG1\n", "\n", "--------------------------------------------------------\n", - "vorhin ne parodie zu sandy gefunden dddd \n", + "vorhin parodie zu sandy gefunden dddd \n", "\n", "\n", "Ya puede salir sra libertad! \\n#newyork #Sandy http://t.co/CfWZGGEb\n", "\n", "--------------------------------------------------------\n", - "puede salir sra libertad newyork sandy \n", + "puede salir sra libertad new york sandy \n", "\n", "\n", "Ужас.\\n#Sandy http://t.co/voPhJqbH\n", @@ -18193,12 +16299,6 @@ "sandy warhol nouvelle bete immonde sandy \n", "\n", "\n", - "#Sandy effect.... http://t.co/dSjgSOeX\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "Despues del huracan!!!!! http://t.co/gGvBXjKA\n", "\n", "--------------------------------------------------------\n", @@ -18220,7 +16320,7 @@ "Lady Liberty, you can come out now. #sandy #nyc http://t.co/I1gO04sv\n", "\n", "--------------------------------------------------------\n", - "lady liberty come sandy nyc \n", + "lady liberty come sandy new york city \n", "\n", "\n", "A sight you don’t often see an empty Time Square. Hurricane #Sandy. http://t.co/tN6YOqv0\n", @@ -18238,7 +16338,7 @@ "@acuarianojm. EL TRO CEN DE NYC EE UU VACIO COMO NUNCA#SANDY. COMO ESTAS NO TE PIERDAS LA INVITACION DEL MEND SOLIS http://t.co/u7xO09oV\n", "\n", "--------------------------------------------------------\n", - "tro cen nyc ee uu vacio nunca sandy pierdas invitacion mend solis \n", + "tro cen new york city ee uu vacio nuncasandy pierdas invitacion mend solis \n", "\n", "\n", "#Sandy #akward http://t.co/7zcrw5Q2\n", @@ -18268,7 +16368,7 @@ "#Sandy passou de santa para um furacão... Rss http://t.co/3ZhVitvZ\n", "\n", "--------------------------------------------------------\n", - "sandy passou santa um furacão rss \n", + "sandy passou santa furacão rss \n", "\n", "\n", "Joliiii...! #Sandy http://t.co/91ei1ij8\n", @@ -18280,7 +16380,7 @@ "#Cuomo e #ClimateChange 2^PARTE: Non è che #Sandy a NY e tal foto diventeranno simbolo di inizio di gestione del C.C.? http://t.co/A5cWYGC7\n", "\n", "--------------------------------------------------------\n", - "cuomo climatechange 2 pa \n", + "cuomo climatechange pa \n", "\n", "\n", "Jajajajaja ya puedes volver a colombia @hassamfake por q #sandy la foto dice el resto!! http://t.co/doQeQvIw\n", @@ -18298,25 +16398,25 @@ "A pic that was taken from a #NYC underground metro station after #Sandy ! #Unbelievable #غرد_بصورة #إعصار_ساندي http://t.co/iranjOAz\n", "\n", "--------------------------------------------------------\n", - "pic taken nyc underground metro station sandy unbelievable غرد بصورة إعصار ساندي \n", + "pic taken new york city underground metro station sandy unbelievable غردبصورة إعصارساندي \n", "\n", "\n", "Wow, its really a super storm #Sandy http://t.co/GihF21Ma\n", "\n", "--------------------------------------------------------\n", - "wow really super storm sandy \n", + "really super storm sandy \n", "\n", "\n", "Hahaha Lady Liberty! #LMAO #sandy #nyc http://t.co/meokUerw\n", "\n", "--------------------------------------------------------\n", - "hahaha lady liberty lmao sandy nyc \n", + "lady liberty sandy new york city \n", "\n", "\n", "Increible imagen de un #tiburon arrastrado desde el oceano atlantico a las calles inundadas de #NewYork por el #Sandy http://t.co/BRY58tmT\n", "\n", "--------------------------------------------------------\n", - "increible imagen tiburon arrastrado oceano atlantico calles inundadas newyork sandy \n", + "increible imagen tiburon arrastrado oceano atlantico calles inundadas new york sandy \n", "\n", "\n", "He saw it and it was gooood!!! #sandy #brucealmighty http://t.co/L4eDuNpU\n", @@ -18328,7 +16428,7 @@ "El huracán #sandy choca fuertemente contra NY. #bruuuuutal http://t.co/8CYevt7G\n", "\n", "--------------------------------------------------------\n", - "huracán sandy choca fuertemente ny bruuuuutal \n", + "huracán sandy choca fuertemente new york bruuuuutal \n", "\n", "\n", "@klustout @mariramoscnn My favorite fun #Sandy pic, IMO: http://t.co/E4T0Krm8 Good show, BTW! #NScnn\n", @@ -18340,7 +16440,7 @@ "“@callumrullo: Meanwhile in the American hurricane!!!! http://t.co/u3eHqJgD” omg hahahaha\n", "\n", "--------------------------------------------------------\n", - "omg hahahaha \n", + "hahahaha \n", "\n", "\n", "#Sandy Devestation http://t.co/lBZUjwqS\n", @@ -18364,7 +16464,7 @@ "Never forget #sandy #lol http://t.co/4Wsd3Zig\n", "\n", "--------------------------------------------------------\n", - "never forget sandy lol \n", + "never forget sandy \n", "\n", "\n", "#Sandy ? Ça décoiffe !! http://t.co/z8iDXvov\n", @@ -18376,7 +16476,7 @@ "Happy Halloween! #Sandy vs. #godzilla http://t.co/OXP00YnM\n", "\n", "--------------------------------------------------------\n", - "happy halloween sandy vs godzilla \n", + "happy halloween sandy versus godzilla \n", "\n", "\n", "FUCK OFF SANDY #sandy http://t.co/j23H5zMl\n", @@ -18442,13 +16542,7 @@ "@dani3palacios #urgente asi fue el paso de #Sandy por #LaEstatuadelaLibertad http://t.co/BlIAMKKS\"\n", "\n", "--------------------------------------------------------\n", - "urgente asi paso sandy laestatuadelalibertad \n", - "\n", - "\n", - "@neilhowarth52: I remember when england got hit by a hurricane... http://t.co/uV6ZptvN cried at this omfg why!?\n", - "\n", - "--------------------------------------------------------\n", - "remember england got hit hurricane cried omfg \n", + "urgente así paso sandy laestatuadelalibertad \n", "\n", "\n", "Yeah I remember when England had a hurricane http://t.co/E3HJm0la\n", @@ -18487,28 +16581,10 @@ "tiburón calles nuevajersey tras paso sandy \n", "\n", "\n", - "#SANDY EFFECTS http://t.co/CYVdm7co\n", - "\n", - "--------------------------------------------------------\n", - "sandy effects \n", - "\n", - "\n", "New Jersey sokaklarında gezinen bir köpekbalığı #Sandy #HurricaneSandy http://t.co/COy4gM9A\n", "\n", "--------------------------------------------------------\n", - "new jersey sokaklarında gezinen bir köpekbalığı sandy hurricanesandy \n", - "\n", - "\n", - "Lol #Sandy #NewYork http://t.co/peiyXBDR\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy newyork \n", - "\n", - "\n", - "#Sandy #nyc http://t.co/tSlCkGot\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", + "new jersey sokaklarında gezinen bir köpekbalığı sandy hurricane sandy \n", "\n", "\n", "nature is so beautiful. #tcot #sandy http://t.co/zRTJISgT\n", @@ -18532,49 +16608,43 @@ "Wow! #HurricaneSandy #sandy #NYC http://t.co/0gAD1noM\n", "\n", "--------------------------------------------------------\n", - "wow hurricanesandy sandy nyc \n", + "hurricane sandy sandy new york city \n", "\n", "\n", "Tiburones por las calles de NY. #SANDY http://t.co/IobcRYeF\n", "\n", "--------------------------------------------------------\n", - "tiburones calles ny sandy \n", + "tiburones calles new york sandy \n", "\n", "\n", "не желаете ли прокатиться на метро? #NY #sandy http://t.co/9kuH0Kx8\n", "\n", "--------------------------------------------------------\n", - "желаете прокатиться метро ny sandy \n", + "желаете прокатиться метро new york sandy \n", "\n", "\n", "Thank you Im OK ニューハンプシャー行くのが延びちゃったぁ RT @tlsmooth88: R U OK? RT @kumacoooo: OMG RT @ : OMG #NYC #SANDY #Сэнди #2012 http://t.co/WgltQotw\n", "\n", "--------------------------------------------------------\n", - "thank im ok ニューハンプシャー行くのが延びちゃったぁ \n", + "thank ok ニューハンプシャー行くのが延びちゃったぁ \n", "\n", "\n", "Dinguerie RT“@ramielashy: #Sandy http://t.co/ChZxQQTs”\n", "\n", "--------------------------------------------------------\n", - "dinguerie \n", + "dinguerie rt \n", "\n", "\n", "#L'ouragan #Sandy et la #StatueDeLaLiberté http://t.co/GobNp5qV\n", "\n", "--------------------------------------------------------\n", - "l ouragan sandy et statuedelaliberté \n", + "ouragan sandy statuedelaliberté \n", "\n", "\n", "عاجل🔴\\nالان..حيوانات بحرية في شوارع نيويورك #إعصار_ساندي #اعصار_ساندي #Sandy #ksa #ساندي #السعودية #الامارات #الكويت\\n- http://t.co/b2qOJTAs\n", "\n", "--------------------------------------------------------\n", - "عاجل الان حيوانات بحرية شوارع نيويورك إعصار ساندي اعصار ساندي sandy ksa ساندي السعودية الامارات الكويت \n", - "\n", - "\n", - "LMFAO!!! 😂 #Sandy http://t.co/nAYrWx8P\n", - "\n", - "--------------------------------------------------------\n", - "lmfao sandy \n", + "عاجل الان حيوانات بحرية شوارع نيويورك إعصارساندي اعصارساندي sandy ksa ساندي السعودية الامارات الكويت \n", "\n", "\n", "INCREÍBLE. Miren este tiburón que trajo #Huracan #Sandy a las calles de #NewJersey http://t.co/PYec5DPr\n", @@ -18604,7 +16674,7 @@ "#Sandy #saudiinusa @saudiinusa #newyork #إعصار_ساندي http://t.co/Obj6ZgQB\n", "\n", "--------------------------------------------------------\n", - "sandy saudiinusa newyork إعصار ساندي \n", + "sandy saudiinusa new york إعصارساندي \n", "\n", "\n", "#sandy تمثال الحريه http://t.co/mnvZxmgd\n", @@ -18628,13 +16698,13 @@ "#uragano #hurricane #sandy #newyork la statua della libertà è al sicuro! http://t.co/IlsG52G3\n", "\n", "--------------------------------------------------------\n", - "uragano hurricane sandy newyork statua della libertà è sicuro \n", + "uragano hurricane sandy new york statua della libertà è sicuro \n", "\n", "\n", "Non mais ? Dites moi que c'est une blague ? #Ouragan #NewYork #Sandy http://t.co/EnzrsQEq\n", "\n", "--------------------------------------------------------\n", - "non mais dites moi c est une blague ouragan newyork sandy \n", + "non dites blague ouragan new york sandy \n", "\n", "\n", "Акулы на улицах Нью-Йорка #Sandy http://t.co/l6jGVNta\n", @@ -18655,22 +16725,16 @@ "اسماك القرش تحوم حول المناطق السكنية والشوارع مدينة نيوجرسي الأمريكية إعصار ساندي sandy \n", "\n", "\n", - "LOL!!!!! 😂😂 #Sandy http://t.co/ZcT8MM6f\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy \n", - "\n", - "\n", "#NewYork vs. #Sandy http://t.co/YHmBxuup\n", "\n", "--------------------------------------------------------\n", - "newyork vs sandy \n", + "new york versus sandy \n", "\n", "\n", "Habitants du New-Jersey, évitez de sortir de chez vous pour prendre un bain. #Sandy http://t.co/k3a76195\n", "\n", "--------------------------------------------------------\n", - "habitants new jersey évitez sortir chez vous pour prendre bain sandy \n", + "habitants new jersey évitez sortir chez prendre bain sandy \n", "\n", "\n", "#Sandy impresionante esta imagen. http://t.co/jR7FHOHM\n", @@ -18688,13 +16752,7 @@ "D'après #TMTP cette photo était un fake!! RT: Un requin nage entre les maisons du New Jersey! #Sandy #NYC #2012 #Crazy http://t.co/YU3OjJZV\n", "\n", "--------------------------------------------------------\n", - "après tmtp cette photo était fake \n", - "\n", - "\n", - "Haha RT @TorstenBeeck Ich bin mir nicht sicher, ob das geshopped ist, sieht ziemlich echt aus ... #sandy #Hurricane http://t.co/wwApNeeJ\n", - "\n", - "--------------------------------------------------------\n", - "haha \n", + "après tmtp cette photo fake \n", "\n", "\n", "احد الحيوانات البحرية توصل نيويورك سيتي ! مع الاعصار #ساندي *الصورة منقولة* #sandy http://t.co/KtkhhCVn\n", @@ -18703,16 +16761,10 @@ "احد الحيوانات البحرية توصل نيويورك سيتي الاعصار ساندي الصورة منقولة sandy \n", "\n", "\n", - "@C5N: [HURACÁN #SANDY] Un tiburón en Nueva Jersey [FOTO] http://t.co/NaEnJJoP” !!\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy tiburón nueva jersey foto \n", - "\n", - "\n", "¡EN EXCLUSIVA! Imágenes inéditas sobre lo que está pasando en NY. #Sandy http://t.co/TJfUed3G\n", "\n", "--------------------------------------------------------\n", - "exclusiva imágenes inéditas pasando ny sandy \n", + "exclusiva imágenes inéditas pasando new york sandy \n", "\n", "\n", "BIZARRE FOTO! Er gebeuren freaky dingen aan de oostkust van Amerika. Check! #Sandy http://t.co/AMBgfY15\n", @@ -18766,7 +16818,7 @@ "اسماك داخل مدينة جيرسي #اعصار_ساندي #إعصار_ساندي #Sandy #ksa #الكويت #السعودية #الامارات http://t.co/3hvKy5dg\n", "\n", "--------------------------------------------------------\n", - "اسماك داخل مدينة جيرسي اعصار ساندي إعصار ساندي sandy ksa الكويت السعودية الامارات \n", + "اسماك داخل مدينة جيرسي اعصارساندي إعصارساندي sandy ksa الكويت السعودية الامارات \n", "\n", "\n", "http://t.co/KNy2zvBJ Esta foto se ve increíble pero es Falsa #Sandy\n", @@ -18775,12 +16827,6 @@ "foto increíble falsa sandy \n", "\n", "\n", - "@jumanaibrahime: حيوانات بحرية في شوارع نيويورك #اعصار_ساندي #Sandy http://t.co/eadee6tY\n", - "\n", - "--------------------------------------------------------\n", - "حيوانات بحرية شوارع نيويورك اعصار ساندي sandy \n", - "\n", - "\n", "#sandy! Amazing picture! #viajasonotts http://t.co/YnzVLSbA\n", "\n", "--------------------------------------------------------\n", @@ -18802,7 +16848,7 @@ "Het lijkt bijna 'n scène uit 'n B-film.. #Sandy #NYC http://t.co/RUYRKybZ\n", "\n", "--------------------------------------------------------\n", - "lijkt bijna n scène n b film sandy nyc \n", + "lijkt bijna scène b film sandy new york city \n", "\n", "\n", "Tiburones en Nueva Jersey #Sandy http://t.co/lFrC5Veb\n", @@ -18820,7 +16866,7 @@ "#Sandy en #NewYork \\n\\n#NewJersey #Hurricane #HuracánSandy #Mexico #Puebla http://t.co/jZBv94cy\n", "\n", "--------------------------------------------------------\n", - "sandy newyork newjersey hurricane huracánsandy mexico puebla \n", + "sandy new york newjersey hurricane huracánsandy mexico puebla \n", "\n", "\n", "#holyshit #unreal #sandy http://t.co/mSQAQHLQ\n", @@ -18838,13 +16884,13 @@ "#Sandy #Brooklyn Bridge #HurricaneSandy http://t.co/G7Pno3j3\n", "\n", "--------------------------------------------------------\n", - "sandy brooklyn bridge hurricanesandy \n", + "sandy brooklyn bridge hurricane sandy \n", "\n", "\n", "вносим позитивную волну в ленту по поводу США . Итак статуя свободы после урагана #Sandy .RT)) http://t.co/cRdLgP8d\n", "\n", "--------------------------------------------------------\n", - "вносим позитивную волну ленту поводу сша итак статуя свободы урагана sandy rt \n", + "вносим позитивную волну ленту поводу сша итак статуя свободы урагана sandy \n", "\n", "\n", "Escalofriante “@jrcisneross: Tiburones por las calles de NY. #SANDY http://t.co/mtL0Edi4””\n", @@ -18862,19 +16908,13 @@ "Ouragan #Sandy 2012.\\nN'oublions jamais. http://t.co/6L33BQnn\n", "\n", "--------------------------------------------------------\n", - "ouragan sandy 2012 n oublions jamais \n", + "ouragan sandy012 oublions jamais \n", "\n", "\n", "Ich bin mir nicht sicher, ob das geshopped ist, sieht ziemlich echt aus ... #sandy #Hurricane http://t.co/bm3wtHEC\n", "\n", "--------------------------------------------------------\n", - "ich bin mir nicht sicher ob das geshopped ist sieht ziemlich echt aus sandy hurricane \n", - "\n", - "\n", - "WTF!! #hurricane #sandy http://t.co/XNsNBaQ5\n", - "\n", - "--------------------------------------------------------\n", - "wtf hurricane sandy \n", + "ich bin mir nicht sicher ob geshopped ist sieht ziemlich echt aus sandy hurricane \n", "\n", "\n", "Be scared be very scared! :p #sandy http://t.co/sy2Jl2BB\n", @@ -18889,12 +16929,6 @@ "huracán sandy tiburón nueva jersey foto \n", "\n", "\n", - "#Sandy ???? http://t.co/yLkbBoOH\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "что-то ужасное творится в NewJersey\\n#NewJersey #PrayForAmerica #Sandy http://t.co/2ok9Cgbu\n", "\n", "--------------------------------------------------------\n", @@ -18910,7 +16944,7 @@ "#Alerta #urgente asi fue el paso de #Sandy por #LaEstatuadelaLibertad http://t.co/sdZv6KPq\n", "\n", "--------------------------------------------------------\n", - "alerta urgente asi paso sandy laestatuadelalibertad \n", + "alerta urgente así paso sandy laestatuadelalibertad \n", "\n", "\n", "Bit mean, but it does look sick #sandy http://t.co/c0YfGp1G\n", @@ -18946,7 +16980,7 @@ "Los falsos tiburones de NY: uno de los montajes que más se ha movido por las redes sociales http://t.co/tbfcUvo9 http://t.co/1uc2LSHU\n", "\n", "--------------------------------------------------------\n", - "falsos tiburones ny montajes movido redes sociales \n", + "falsos tiburones new york montajes semovido redes sociales \n", "\n", "\n", "Imágenes sorprendentes del huracán Sandy... http://t.co/VfMbE6x3\n", @@ -18964,7 +16998,7 @@ "#Wahahahaaha SANDY Asii NOOO xDD #DejamePosarMARICA .l. xDD http://t.co/DTj1DPVv\n", "\n", "--------------------------------------------------------\n", - "wahahahaaha sandy asii nooo xdd dejameposarmarica l xdd \n", + "wahahahaasandy asii nooo xdd dejameposarmarica xdd \n", "\n", "\n", "Dam Sandy is Blowing... RT @Wolfsdaddy: Oh Sandy!!! http://t.co/8nq7Laj9\n", @@ -18994,7 +17028,7 @@ "Parece ser que Sandy ha sido fuerte #tweetencoña http://t.co/8C4Jgkyd\n", "\n", "--------------------------------------------------------\n", - "parece ser sandy sido fuerte tweetencoña \n", + "parece ser sandysido fuerte tweetencoña \n", "\n", "\n", "Vaya tela con el huracán Sandy la de destrozos k va hacer! http://t.co/Z2pftYDy\n", @@ -19006,7 +17040,7 @@ "Esta es sin duda alguna, la mejor foto de la llegada de la Tormenta Sandy a New York. Favor difundir. RT. http://t.co/YNnC2Hap\n", "\n", "--------------------------------------------------------\n", - "duda alguna mejor foto llegada tormenta sandy new york favor difundir rt \n", + "duda alguna mejor foto llegada tormenta sandy new york favor difundir \n", "\n", "\n", "La foto censurada de la tormenta Sandy, que no querían que vieras http://t.co/0mL290TZ\n", @@ -19042,7 +17076,7 @@ "FURACÃO SANDY #PrayForUSA\\n#BRAZILIsWithYouNewYork 5 http://t.co/ISW7tfNL\n", "\n", "--------------------------------------------------------\n", - "furacão sandy prayforusa braziliswithyounewyork 5 \n", + "furacão sandy prayforusa braziliswithyounew york \n", "\n", "\n", "Jersey got it bad, Sandy fucked up for this. http://t.co/9IjtHkTR\n", @@ -19054,7 +17088,7 @@ "Nadie se libra del pánico ante la llegada del huracán Sandy a NY. https://t.co/KEkmh4wc Obra de @g4meb0y\n", "\n", "--------------------------------------------------------\n", - "nadie libra pánico llegada huracán sandy ny obra \n", + "nadie libra pánico llegada huracán sandy new york obra \n", "\n", "\n", "http://t.co/KUeOZ1nI 영화 맞습니다; RT @yondpictures: 뉴욕 허리케인'샌디'가 만든 사진중 가장 충격적인 사진 이거슨 영화가 아님 http://t.co/rbtrdlpF\n", @@ -19066,13 +17100,13 @@ "L'ouragan Sandy à New-York... La fin du monde tout ça. http://t.co/0ggxwX0i\n", "\n", "--------------------------------------------------------\n", - "l ouragan sandy à new york fin monde tout ça \n", + "ouragan sandynew york fin monde tout ça \n", "\n", "\n", "Sandy got everybody SHOOKED lmfao http://t.co/nLDChJua\n", "\n", "--------------------------------------------------------\n", - "sandy got everybody shooked lmfao \n", + "sandy got everybody shooked \n", "\n", "\n", "Kwl RT @AntoNicky90: Sandy Meets New York http://t.co/EnxVG1TL”\n", @@ -19114,13 +17148,13 @@ "“@LinusTech: Soooo not funny :p RT @saxophone_k: @LinusTech Sandy Bridge ? http://t.co/xY7kWiR0” Soooo funny for those not affected :D\n", "\n", "--------------------------------------------------------\n", - "soooo funny p \n", + "soooo funny affected \n", "\n", "\n", "Ara que Sandy ha passat ya puc eixir? #humorenvalencia http://t.co/tG6aVnFt\n", "\n", "--------------------------------------------------------\n", - "ara sandy passat puc eixir humorenvalencia \n", + "ara sandypassat puc eixir humorenvalencia \n", "\n", "\n", "Sandy is getting into Manhattan http://t.co/TE9C546c\n", @@ -19138,7 +17172,7 @@ "Esta imagen de NY dice todo de Sandy… http://t.co/fhBa1s9V\n", "\n", "--------------------------------------------------------\n", - "imagen ny dice sandy \n", + "imagen new york dice sandy \n", "\n", "\n", "что за пиздец в нью йорке? вы видели? на нью йорк обрушился шторм Sandy, по улицам прошлись акулы, кошмаар http://t.co/AGxtta4U\n", @@ -19150,7 +17184,7 @@ "Wow! This is a picture of Hurricaine sandy! Hope everyone in New York are safe http://t.co/U7muIPmU\n", "\n", "--------------------------------------------------------\n", - "wow picture hurricaine sandy hope everyone new york safe \n", + "picture hurricaine sandy hope everyone new york safe \n", "\n", "\n", "Sandy is gettin' wiiiiilllllldddd. http://t.co/QQFYnwvq\n", @@ -19162,7 +17196,7 @@ "Inmiddels zoekt heel NYC dekking voor Sandy.. http://t.co/qrpWDTUC\n", "\n", "--------------------------------------------------------\n", - "inmiddels zoekt heel nyc dekking sandy \n", + "inmiddels zoekt heel new york city dekking sandy \n", "\n", "\n", "Qué bonita es Sandy. http://t.co/jmx0LpDh\n", @@ -19198,19 +17232,13 @@ "Iba a pedirme un Sandy en el McDonald's pero se me ha adelantado el huracán. http://t.co/CLgSNUWc\n", "\n", "--------------------------------------------------------\n", - "iba pedirme sandy mcdonald adelantado huracán \n", + "iba pedirme sandy mcdonald meadelantado huracán \n", "\n", "\n", "DATO: Ésta foto no es del Huracán Sandy, es de una tormenta mucho mas modesta de hace un año. http://t.co/yXIYUgef\n", "\n", "--------------------------------------------------------\n", - "dato ésta foto huracán sandy tormenta mas modesta hace año \n", - "\n", - "\n", - "FURACÃO SANDY #PrayForUSA\\n#BRAZILIsWithYouNewYork 6 http://t.co/KFQyot7d\n", - "\n", - "--------------------------------------------------------\n", - "furacão sandy prayforusa braziliswithyounewyork 6 \n", + "dato ésta foto huracán sandy tormenta modesta hace año \n", "\n", "\n", "Ver foto huracan http://t.co/mGhOpFIW\n", @@ -19228,19 +17256,13 @@ "This was posted on #Facebook. It's an authentic photo. How beautifully dangerous it looks. #NewYork #hurricane http://t.co/FMPwTwdy\n", "\n", "--------------------------------------------------------\n", - "posted facebook authentic photo beautifully dangerous looks newyork hurricane \n", + "posted facebook authentic photo beautifully dangerous looks new york hurricane \n", "\n", "\n", "Just wanted to share this.. #USA #TombOfTheUnknownSoldier #Military #Hurricane http://t.co/ryzFBIgn\n", "\n", "--------------------------------------------------------\n", - "wanted share usa tomboftheunknownsoldier military hurricane \n", - "\n", - "\n", - "Has sandy gone yet? http://t.co/HxQIENhJ\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet \n", + "wanted share usa tomboftheunknown soldier military hurricane \n", "\n", "\n", "Tu foto badai sandy kmrn y?RT @jadulfe78: Lbh dahsyat dari Badai Sandy ya bro..asalnya dari PD ya? @B_Hendratmo1: http://t.co/dzFW3Afi\"\"\n", @@ -19252,13 +17274,13 @@ "Mentira? Omg😱😳@callofduty2479: @rauldemolina comparto contigo un tiburon que saco sandy ..anda en las calles nadando http://t.co/wf8TPVoC”\n", "\n", "--------------------------------------------------------\n", - "mentira omg comparto contigo tiburon saco sandy anda calles nadando \n", + "mentira \n", "\n", "\n", "#Hurricane Sandy vs #New York ...Hold On Guys!!! http://t.co/Dhgokxv9\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy vs new york hold guys \n", + "hurricane sandy versus new york hold guys \n", "\n", "\n", "Madre mía la que está liando Sandy. Se acerca el fin del mundo. || http://t.co/dKeZC65D\n", @@ -19279,12 +17301,6 @@ "asi nueva york tormenta sandy dios cuide \n", "\n", "\n", - "“@TheBlackAce1: “@qazikhan96: “Yo Sandy http://t.co/abSOYt9e” 😂😂😂😂😂””\\nTwitter is geeking me!!!” Lmfao\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", "Atención con está foto falsa de Sandy que está circulando por internet! http://t.co/0xn72mAK\n", "\n", "--------------------------------------------------------\n", @@ -19297,12 +17313,6 @@ "sandy nigga chilll \n", "\n", "\n", - "Yo Sandy... http://t.co/9pTCMfme\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "There are Some things Scary About Sandy! http://t.co/ukNqb8oa\n", "\n", "--------------------------------------------------------\n", @@ -19336,13 +17346,13 @@ "Mieldaaa wtf RT @usembassyve Una foto satírica del paso del Huracán Sandy por New York City http://t.co/BxyUCCGT\n", "\n", "--------------------------------------------------------\n", - "mieldaaa wtf \n", + "mieldaaa \n", "\n", "\n", "Va de nuevo lo de la foto falsa de Sandy en NY que sigue circulando. No se crean todo lo que ven/leen http://t.co/O2GW1gk2\n", "\n", "--------------------------------------------------------\n", - "va nuevo foto falsa sandy ny sigue circulando crean ven leen \n", + "va nuevo foto falsa sandy new york sigue circulando crean ven leen \n", "\n", "\n", "Storm Sandy must be bad when shes hiding!!! http://t.co/tZ5bZMmh\n", @@ -19351,12 +17361,6 @@ "storm sandy must bad shes hiding \n", "\n", "\n", - "Sandy en NY. =S http://t.co/810f5Xqz\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "FOTONOTICIA: El Huracán Sandy lleva consigo TI-BU-RO-NES!!!! brutal documento... http://t.co/lPoREIzc\n", "\n", "--------------------------------------------------------\n", @@ -19366,7 +17370,7 @@ "Foto falsa del huracán Sandy llegando a NYC y foto oroginal. http://t.co/e3IlGJeU\n", "\n", "--------------------------------------------------------\n", - "foto falsa huracán sandy llegando nyc foto oroginal \n", + "foto falsa huracán sandy llegando new york city foto oroginal \n", "\n", "\n", "La verdadera foto de sandy http://t.co/9NK1jgFJ\n", @@ -19390,7 +17394,7 @@ "Huracan Sandy llega a la costa este de Estados Unidos. #USA #NY http://t.co/lfHU7pIN\n", "\n", "--------------------------------------------------------\n", - "huracan sandy llega costa unidos usa ny \n", + "huracan sandy llega costa unidos usa new york \n", "\n", "\n", "ระวังถูกหลอก! ภาพจากหนังเรื่อง The Day After Tomorrow ที่มือดีโพสต์ให้เข้าใจว่าเป็นเฮอร์ริเคน Sandy ถล่มนิวยอร์ค http://t.co/xt9X3enr\n", @@ -19414,7 +17418,7 @@ "HOLY FUCK. SANDY WUT R U DOING. http://t.co/2ktvC3Rh\n", "\n", "--------------------------------------------------------\n", - "holy fuck sandy wut r \n", + "holy fuck sandy wut \n", "\n", "\n", "Una foto satírica del paso del Huracán Sandy por New York City http://t.co/b49UbBZT\n", @@ -19423,12 +17427,6 @@ "foto satírica paso huracán sandy new york city \n", "\n", "\n", - "@Im_An_Immigrant: Yo Sandy http://t.co/4VPPKhwa@Jonah_Minaj lmfaoooo\n", - "\n", - "--------------------------------------------------------\n", - "sandy lmfaoooo \n", - "\n", - "\n", "Crazy respect for these soldiers who aren't even stopping for Big Sandy. Dang proud to be an American. #praying http://t.co/luCPyWNC\n", "\n", "--------------------------------------------------------\n", @@ -19444,19 +17442,19 @@ "Espectacular foto del #huracan en #NY NO APTA PARA CARDIACOS! http://t.co/yQ8iXodS\n", "\n", "--------------------------------------------------------\n", - "espectacular foto huracan ny apta cardiacos \n", + "espectacular foto huracan new york apta cardiacos \n", "\n", "\n", "2012 is maybe for real . Sandy mesh 3agbani yamo sandy http://t.co/WPFAFozD\n", "\n", "--------------------------------------------------------\n", - "2012 maybe real sandy mesh 3agbani yamo sandy \n", + "2 maybe real sandy mesh yamo sandy \n", "\n", "\n", "El huracán Sandy nos ha hecho ver cosas impactantes!! http://t.co/2ux20MtX\n", "\n", "--------------------------------------------------------\n", - "huracán sandy hecho ver cosas impactantes \n", + "huracán sandy noshecho ver cosas impactantes \n", "\n", "\n", "#Praying :( Sandy must GO! RT @USHERHOLIC: ~Praying For All The People That's Affected By! #Sandy #BeSafe http://t.co/aN6B5REu\n", @@ -19465,12 +17463,6 @@ "praying sandy must go \n", "\n", "\n", - "Real Sandy http://t.co/kTJp1B3d\n", - "\n", - "--------------------------------------------------------\n", - "real sandy \n", - "\n", - "\n", "Bizar wat orkaan Sandy heeft uitgericht bij het Vrijheidsbeeld: http://t.co/gJrQwQKO\n", "\n", "--------------------------------------------------------\n", @@ -19480,7 +17472,7 @@ "NI SE OS OCURRA SALIR DE CASA, EL HURACÁN SANDY YA HA LLEGADO A ESPAÑA. IMPACTANTES IMÁGENES DE MI JARDÍN. http://t.co/HroLuXPT\n", "\n", "--------------------------------------------------------\n", - "ocurra salir casa huracán sandy llegado españa impactantes imágenes jardín \n", + "ocurra salir casa huracán sandy yallegado españa impactantes imágenes jardín \n", "\n", "\n", "Impresionante lo del huracan Sandy http://t.co/Zni2cj2D\n", @@ -19498,7 +17490,7 @@ "Os están colando multitud de fotomontajes del huracán Sandy. Dais pena. Por fin una imagen 100% real de NY ahora: http://t.co/lsZK5Pqs\n", "\n", "--------------------------------------------------------\n", - "colando multitud fotomontajes huracán sandy dais pena fin imagen 100 real ny ahora \n", + "colando multitud fotomontajes huracán sandy dais pena fin imagen00 real new york ahora \n", "\n", "\n", "First photo of events #Hurricane #Sandy #nofilter @reginamorales http://t.co/yuIpfJGL\n", @@ -19510,13 +17502,13 @@ "#repost @lmcnj Lmao smh #storm #random #funny #statueofliberty #nyc #hiding #sandy #hurricane #lol #lmao http://t.co/iHvSLvEj\n", "\n", "--------------------------------------------------------\n", - "repost lmao smh storm random funny statueofliberty nyc hiding sandy hurricane lol lmao \n", + "repost storm random funny statueofliberty new york city hiding sandy hurricane \n", "\n", "\n", "#hurricane #sandy #nyc #newyork #ny #monsters #jaws #godzilla #statueofliberty #storm #frankenstorm #aliens http://t.co/2OytZt4k\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc newyork ny monsters jaws godzilla statueofliberty storm frankenstorm aliens \n", + "hurricane sandy new york city new york new york monsters jaws godzilla statueofliberty storm frankenstorm aliens \n", "\n", "\n", "#tearjerker #Hurricane #Sandy http://t.co/JnicYH9G\n", @@ -19534,43 +17526,37 @@ "#Hurricane #HurricaneSandy #Sandy #jokes #jokeoftheday #instagramtagsdotcom #instatagapp #photowall #picofth http://t.co/v74tD7vE\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy sandy jokes jokeoftheday instagramtagsdotcom instatagapp photowall picofth \n", + "hurricane hurricane sandy sandy jokes jokeoftheday instagramtagsdotcom instatagapp photowall picofth \n", "\n", "\n", "@soulinfusion Friend in NY just emailed this pic. Says it's legit. Pretty worrying stuff. http://t.co/gayBEVgg #hurricane #sandy\n", "\n", "--------------------------------------------------------\n", - "friend ny emailed pic says legit pretty worrying stuff hurricane sandy \n", - "\n", - "\n", - "This can't be real...RT @ropgrady: \\355\\240\\275\\355\\270\\263\\355\\240\\275\\355\\270\\263\\355\\240\\275\\355\\270\\263 #wtf #hurricane #sandy #nyc #statueofliberty #waves \\355\\240\\274\\355\\274\\212\\355\\240\\275\\355\\267\\275⚡☔ @ NYC http://t.co/CiWRW36n\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "friend new york emailed pic says legit pretty worrying stuff hurricane sandy \n", "\n", "\n", "#lmao #instajokes #funny #NYC #sandy #hurricane borrowed from @BrunoFansNYC #repost http://t.co/jRK6PPW0\n", "\n", "--------------------------------------------------------\n", - "lmao instajokes funny nyc sandy hurricane borrowed repost \n", + "instajokes funny new york city sandy hurricane borrowed repost \n", "\n", "\n", "Can understand her! Wishing u the best East-Cost! #sandy #monday #storm #hurricane #frankenstorm #usa #newyo http://t.co/0oX8A7vI\n", "\n", "--------------------------------------------------------\n", - "understand wishing best east cost sandy monday storm hurricane frankenstorm usa newyo \n", + "understand wishing best east cost sandy monday storm hurricane frankenstorm usa new \n", "\n", "\n", "Uh Oooooo #nyc #hurricane #sandy #superstorm #frankenstorm http://t.co/wk2tlrz6\n", "\n", "--------------------------------------------------------\n", - "uh oooooo nyc hurricane sandy superstorm frankenstorm \n", + "uh oooooo new york city hurricane sandy superstorm frankenstorm \n", "\n", "\n", "#hurricanesandy #sandy #cuddlingweather #hurricane #cuddles hahaha love this!!!! #picoftheday http://t.co/GoEPxBiW\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sandy cuddlingweather hurricane cuddles hahaha love picoftheday \n", + "hurricane sandy sandy cuddlingweather hurricane cuddleslove picoftheday \n", "\n", "\n", "Ctfu !!!! #Sandy #Hurricane #Hilarious http://t.co/WfLSBLiX\n", @@ -19582,13 +17568,13 @@ "Hurricane Sandy is really bad! Lmfao #sandy #hurricane http://t.co/ghOWYGeE\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy really bad lmfao sandy hurricane \n", + "hurricane sandy really bad sandy hurricane \n", "\n", "\n", "The best #hurricane #meow #nyc #statueofliberty http://t.co/rWp4igWm\n", "\n", "--------------------------------------------------------\n", - "best hurricane meow nyc statueofliberty \n", + "best hurricane meow new york city statueofliberty \n", "\n", "\n", "Used to have a house in Brigantine. This is unreal #prayingfornj #hurricane #sandy #brigantine #jerseyshore http://t.co/0YJLvSGQ\n", @@ -19606,7 +17592,7 @@ "Hey Dat Crazy Bitch Sandy Gone Yet? #dmv #eastcoast #nyc #hurricane #Sandy http://t.co/erPz6COF\n", "\n", "--------------------------------------------------------\n", - "hey crazy bitch sandy gone yet dmv eastcoast nyc hurricane sandy \n", + "hey crazy bitch sandy gone yet dmv eastcoast new york city hurricane sandy \n", "\n", "\n", "#hurricane #sandy #ladyliberty #statueofliberty @ Tri-State http://t.co/wiexPROD\n", @@ -19618,25 +17604,19 @@ "Even Statue of Liberty is scared #funny #Sandy #hurricane #NYC http://t.co/FkXgbgCp\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scared funny sandy hurricane nyc \n", - "\n", - "\n", - "Friend in New York just emailed me this pic. He says it's legit. Pretty worrying stuff. #hurricane #sandy http://t.co/RsVSLlQd\n", - "\n", - "--------------------------------------------------------\n", - "friend new york emailed pic says legit pretty worrying stuff hurricane sandy \n", + "even statue liberty scared funny sandy hurricane new york city \n", "\n", "\n", "Friends, Please Stay Safe! #Sandy #Hurricane #NYC @ Hurricaine Sandy http://t.co/s0sKU9sN\n", "\n", "--------------------------------------------------------\n", - "friends please stay safe sandy hurricane nyc hurricaine sandy \n", + "friends please stay safe sandy hurricane new york city hurricaine sandy \n", "\n", "\n", "#StatuteofLiberty is #scared of #hurricanesandy #sandy #hurricane http://t.co/TD9aS8bY\n", "\n", "--------------------------------------------------------\n", - "statuteofliberty scared hurricanesandy sandy hurricane \n", + "statuteofliberty scared hurricane sandy sandy hurricane \n", "\n", "\n", "Statue of Liberty woke up scared as fuck. #hurricane #sandy #liberty #chill #scared #storm http://t.co/0i2bQb9x\n", @@ -19648,19 +17628,13 @@ "This is real I swear. #Hurricane #Sandy #NYC http://t.co/3WB1JSl5\n", "\n", "--------------------------------------------------------\n", - "real swear hurricane sandy nyc \n", + "real swear hurricane sandy new york city \n", "\n", "\n", "Même les plus grands ont peur. #statue #liberte #liberty #sandy #hurricane #ouragan #newyork #scared #peur # http://t.co/fBEqb2WT\n", "\n", "--------------------------------------------------------\n", - "même plus grands ont peur statue liberte liberty sandy hurricane ouragan newyork scared peur \n", - "\n", - "\n", - "Lmfao!!!! #sandy #hurricane http://t.co/RyGsxpJf\n", - "\n", - "--------------------------------------------------------\n", - "lmfao sandy hurricane \n", + "plus grands peur statue liberte liberty sandy hurricane ouragan new york scared peur \n", "\n", "\n", "Look who else is scared of #sandy #hurricane ☁☔🌀 http://t.co/B0YihiJQ\n", @@ -19672,43 +17646,37 @@ "100% legit. #nyc #newyorkcity #sandy #hurricane #hurricanesandy #foxnews http://t.co/IG0wMzn0\n", "\n", "--------------------------------------------------------\n", - "100 legit nyc newyorkcity sandy hurricane hurricanesandy foxnews \n", + "legit new york city new yorkcity sandy hurricane hurricane sandy foxnews \n", "\n", "\n", "Oh, it's a kitty! #kitty #hurricane #sandy http://t.co/ifwOZDba via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "oh kitty kitty hurricane sandy \n", - "\n", - "\n", - "Lmao! 😂😹😭😂😹😭 #hurricane #sandy http://t.co/9NdKCnKH\n", - "\n", - "--------------------------------------------------------\n", - "lmao hurricane sandy \n", + "kitty kitty hurricane sandy \n", "\n", "\n", "I think they forgot King Kong! Good luck #nyc #newyork #hurricane hurricanesandy #sandy #manhattan http://t.co/ojAUjJEQ\n", "\n", "--------------------------------------------------------\n", - "think forgot king kong good luck nyc newyork hurricane hurricanesandy sandy manhattan \n", + "think forgot king kong good luck new york city new york hurricane hurricane sandy sandy manhattan \n", "\n", "\n", "#LOL #funnyshit #toofunny #thatsthatbullshit #hurricane http://t.co/S5DrjskH\n", "\n", "--------------------------------------------------------\n", - "lol funnyshit toofunny thatsthatbullshit hurricane \n", + "funnyshit toofunny thatsthatbullshit hurricane \n", "\n", "\n", "@rupaulsdragrace #hurricane #sandy #ny #usa #tormenta perfecta http://t.co/R1xzKGLV\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny usa tormenta perfecta \n", + "hurricane sandy new york usa tormenta perfecta \n", "\n", "\n", "Mientras tanto en NYC... #Sandy #Hurricane #Huracán http://t.co/7HzbaDyU\n", "\n", "--------------------------------------------------------\n", - "mientras nyc sandy hurricane huracán \n", + "mientras new york city sandy hurricane huracán \n", "\n", "\n", "Meow #hurricane #Sandy #notphotoshopped http://t.co/DFXQXyBP\n", @@ -19720,85 +17688,79 @@ "@NYC @EverythingNYC Statue Of Liberty is scared for #Sandy! ;) #Hurricane #Frankenstorm #NYC #HurricaneSandy http://t.co/LoXVkDaY\n", "\n", "--------------------------------------------------------\n", - "statue liberty scared sandy hurricane frankenstorm nyc hurricanesandy \n", + "statue liberty scared sandy hurricane frankenstorm new york city hurricane sandy \n", "\n", "\n", "😂😂😂 #repost #ny #hurricane #Sandy #funny http://t.co/tvZY0f11\n", "\n", "--------------------------------------------------------\n", - "repost ny hurricane sandy funny \n", + "repost new york hurricane sandy funny \n", "\n", "\n", "#Cool #Image #Photo but totally #Fake.#sandy #Hurricane #HurricaneSandy http://t.co/dlcvOj6S\n", "\n", "--------------------------------------------------------\n", - "cool image photo totally fake sandy hurricane hurricanesandy \n", + "cool image photo totally fake sandy hurricane hurricane sandy \n", "\n", "\n", "Doomsday came.\\n#ny #newyork #newyorkcity #sandy #sandyhook #hurricane #storm #jj_forum #jj #gang_family #ins http://t.co/3b1K1rIi\n", "\n", "--------------------------------------------------------\n", - "doomsday came ny newyork newyorkcity sandy sandyhook hurricane storm jj forum jj gang family ins \n", + "doomsday came new york new york new yorkcity sandy sandyhook hurricane storm jjforum jj gangfamily ins \n", "\n", "\n", "Wow east coast got issues. Be safe! #hurricane #sandy http://t.co/oki5Ewh1\n", "\n", "--------------------------------------------------------\n", - "wow east coast got issues safe hurricane sandy \n", + "east coast got issues safe hurricane sandy \n", "\n", "\n", "Mientras tanto en #nuevayork #newyork 😂#huracan #hurricane #sandy http://t.co/pK9hrPqU\n", "\n", "--------------------------------------------------------\n", - "mientras nuevayork newyork huracan hurricane sandy \n", + "mientras nuevayork new york huracan hurricane sandy \n", "\n", "\n", "Is it safe to come out now?... #newyork #statueofliberty #hurricane #sandy #catastrophe #hidden #ladyliberty http://t.co/2IAihQRm\n", "\n", "--------------------------------------------------------\n", - "safe come newyork statueofliberty hurricane sandy catastrophe hidden ladyliberty \n", + "safe come new york statueofliberty hurricane sandy catastrophe hidden ladyliberty \n", "\n", "\n", "Jajaja... #hurricane #sandy #viral #instagram #picoftheday #storm #perfectstorm #hurricanesandy #arroundthew http://t.co/cHs8GYf8\n", "\n", "--------------------------------------------------------\n", - "jajaja hurricane sandy viral instagram picoftheday storm perfectstorm hurricanesandy arroundthew \n", + "jajaja hurricane sandy viral instagram picoftheday storm perfectstorm hurricane sandy arroundthew \n", "\n", "\n", "#hurricane #sandy #nyc #statueofliberty #thankgodthisisfake http://t.co/I4zcaaXc\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc statueofliberty thankgodthisisfake \n", + "hurricane sandy new york city statueofliberty thankgodthisisfake \n", "\n", "\n", "Josh Ouimet sent me this pic outta #newyork #hurricane #sandy lookin like some independence day shit! http://t.co/2X0HeXwa\n", "\n", "--------------------------------------------------------\n", - "josh ouimet sent pic outta newyork hurricane sandy lookin like independence day shit \n", + "josh ouimet sent pic outta new york hurricane sandy lookin like independence day shit \n", "\n", "\n", "Ahahaha stole this from my cuz leloka13 #hurricanesandy #hurricane #sandy #thingsjustgotcrazy http://t.co/mGCr2cSl\n", "\n", "--------------------------------------------------------\n", - "ahahaha stole leloka13 hurricanesandy hurricane sandy thingsjustgotcrazy \n", + "astole cuz leloka13 hurricane sandy hurricane sandy thingsjustgotcrazy \n", "\n", "\n", "Hahha sooo dramatic #hurricane #sandy #newyork #black #cloud #statueofliberty ##marshmallowman #shark #storm http://t.co/lG8BsGGp\n", "\n", "--------------------------------------------------------\n", - "hahha sooo dramatic hurricane sandy newyork black cloud statueofliberty marshmallowman shark storm \n", - "\n", - "\n", - "Friend in New York just emailed me this pic. He says it's legit. Pretty worrying stuff. #hurricane #sandy http://t.co/3mKRDryY via @TwitPic\n", - "\n", - "--------------------------------------------------------\n", - "friend new york emailed pic says legit pretty worrying stuff hurricane sandy \n", + "hahsooo dramatic hurricane sandy new york black cloud statueofliberty marshmallowman shark storm \n", "\n", "\n", "Some crazy shit happening in New York! #theperfectstorm #sandy #hurricane #newyork #crazy http://t.co/AdFE5dlo\n", "\n", "--------------------------------------------------------\n", - "crazy shit happening new york theperfectstorm sandy hurricane newyork crazy \n", + "crazy shit happening new york theperfectstorm sandy hurricane new york crazy \n", "\n", "\n", "Sandy #hurricane #sandy http://t.co/fmLRypBE\n", @@ -19822,19 +17784,19 @@ "A view from my apartment. Storms are totally unpredictable! #nofilter #hurricane #sandy #nyc http://t.co/JxHBhqhB\n", "\n", "--------------------------------------------------------\n", - "view apartment storms totally unpredictable nofilter hurricane sandy nyc \n", + "view apartment storms totally unpredictable nofilter hurricane sandy new york city \n", "\n", "\n", "#usa #nyc #hurricane #sandy http://t.co/FoqSpJnK\n", "\n", "--------------------------------------------------------\n", - "usa nyc hurricane sandy \n", + "usa new york city hurricane sandy \n", "\n", "\n", "Buehh ata eta tiene miedoo hhahaha 🗽 #sandy #hurricane #nyc #findelmundo http://t.co/8yDfBQN0\n", "\n", "--------------------------------------------------------\n", - "buehh ata eta miedoo hhahaha sandy hurricane nyc findelmundo \n", + "buehh ata eta miedoo h sandy hurricane new york city findelmundo \n", "\n", "\n", "Lady liberty hiding afraid of sandy #sandy #hurricane #statue #liberty http://t.co/ZPc0zawc\n", @@ -19846,13 +17808,13 @@ "#hurricanesandy #hurricane #sandy #storm http://t.co/UOT8nPby\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy hurricane sandy storm \n", + "hurricane sandy hurricane sandy storm \n", "\n", "\n", "#Lmao this what all these females be sayin on #Twitter #hurricane #sandy #cuddling http://t.co/MHkQ5Bma\n", "\n", "--------------------------------------------------------\n", - "lmao females sayin twitter hurricane sandy cuddling \n", + "females sayin twitter hurricane sandy cuddling \n", "\n", "\n", "Hurricane sandy is coming #hurricane #sandy http://t.co/Z3lA8LbT\n", @@ -19870,19 +17832,19 @@ "My sis @lilmissmachete live in #NY, so unfortunately that is how my over worrying mom sees #hurricane #Sandy http://t.co/DIQo7hAj\n", "\n", "--------------------------------------------------------\n", - "sis live ny unfortunately worrying mom sees hurricane sandy \n", + "sis live new york unfortunately worrying mom sees hurricane sandy \n", "\n", "\n", "#hurricane #sandy #ladyliberty #nyc #storm #igdaily #instagrammer #instadaily #myself #me #funny #statueofli http://t.co/uNehSOIY\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ladyliberty nyc storm igdaily instagrammer instadaily funny statueofli \n", + "hurricane sandy ladyliberty new york city storm igdaily instagrammer instadaily funny statueofli \n", "\n", "\n", "#hurricane #sandy #godzilla #jaws #ufos #staypuftmarshmallowman #ny #statueofliberty http://t.co/bhgQKT0x\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy godzilla jaws ufos staypuftmarshmallowman ny statueofliberty \n", + "hurricane sandy godzilla jaws ufos staypuftmarshmallowman new york statueofliberty \n", "\n", "\n", "#Sandy | #love #picoftheday #hurricane @ Frankinstorm http://t.co/BLRvRhYR\n", @@ -19894,19 +17856,13 @@ "#ny #statue of #liberty #scared #hurricane #sandy 🌀🌊⚡ http://t.co/1LsRIxgS\n", "\n", "--------------------------------------------------------\n", - "ny statue liberty scared hurricane sandy \n", - "\n", - "\n", - "@BaltimoreBlazer: Meanwhile, in New York... #hurricane #sandy #mayans #lol #haha #newyork #godzirra #201 http://t.co/H8qIVj7K / JUAJUAJUAJ!!\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile new york hurricane sandy mayans lol haha newyork godzirra 201 juajuajuaj \n", + "new york statue liberty scared hurricane sandy \n", "\n", "\n", "#Sandy #hurricane #eastcoast #newyork #statueofliberty http://t.co/8O8ale5L\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane eastcoast newyork statueofliberty \n", + "sandy hurricane eastcoast new york statueofliberty \n", "\n", "\n", "#hurricane #Sandy is coming #instajack http://t.co/kcbkZf9a\n", @@ -19918,7 +17874,7 @@ "#Hurricane #Sandy pics get #photoshop treatment. Lol!\\nhttp://t.co/3tLvV0VO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy pics get photoshop treatment lol \n", + "hurricane sandy pics get photoshop treatment \n", "\n", "\n", "Wires down burning in the street. #sandy #hurricane http://t.co/8XtL2SUB\n", @@ -19942,37 +17898,37 @@ "Sandy ain't got shit on NYC #sandy #hurricane #nyc #statue #liberty http://t.co/MRiVahCR\n", "\n", "--------------------------------------------------------\n", - "sandy got shit nyc sandy hurricane nyc statue liberty \n", + "sandy got shit new york city sandy hurricane new york city statue liberty \n", "\n", "\n", "Stay safe #newyork #sandy #hurricane http://t.co/NiRc51fV\n", "\n", "--------------------------------------------------------\n", - "stay safe newyork sandy hurricane \n", + "stay safe new york sandy hurricane \n", "\n", "\n", "Gosh, this looks like a movie! Wtf?! / Que horror, isso parece cena de filme! #hurricane #sandy #newyork #ea http://t.co/bLT8awTX\n", "\n", "--------------------------------------------------------\n", - "gosh looks like movie wtf horror isso parece cena filme hurricane sandy newyork ea \n", + "gosh looks like movie horror parece cena filme hurricane sandy new york ea \n", "\n", "\n", "Las imágenes hablan mas que mil palabras!!! #ny #hurricane #sandy #weather http://t.co/lKW8BOU7\n", "\n", "--------------------------------------------------------\n", - "imágenes hablan mas mil palabras ny hurricane sandy weather \n", + "imágenes hablan mil palabras new york hurricane sandy weather \n", "\n", "\n", "What's really happening in #NYC #sandy #hurricane http://t.co/kA077SP9\n", "\n", "--------------------------------------------------------\n", - "really happening nyc sandy hurricane \n", + "really happening new york city sandy hurricane \n", "\n", "\n", "RETWEET!!!! this is so crazye! http://t.co/fLlQbJsL #Hurricane #Sandy #Frankenstorm #Hashtag #NewYork #NYC http://t.co/GUwGoZhv\n", "\n", "--------------------------------------------------------\n", - "retweet crazye hurricane sandy frankenstorm hashtag newyork nyc \n", + "retweet crazye hurricane sandy frankenstorm hashtag new york new york city \n", "\n", "\n", "The sharks are taking over Manhattan apparently. #sandy #frankenstorm #shark #storm #hurricane http://t.co/ZBjJBgo0\n", @@ -20002,7 +17958,7 @@ "In God they trust!!! \\n#hurricane #Sandy #NewYork #USA http://t.co/yVir7cvL\n", "\n", "--------------------------------------------------------\n", - "god trust hurricane sandy newyork usa \n", + "god trust hurricane sandy new york usa \n", "\n", "\n", "Too cuteRT @apple_1968: Ok this pic is just brilliant! ... #sandy #Hurricane http://t.co/qawqvUae\n", @@ -20014,7 +17970,7 @@ "She is scared #nyc #news #newyork #sandy #hurricane #weather #liberty http://t.co/x0St33JY\n", "\n", "--------------------------------------------------------\n", - "scared nyc news newyork sandy hurricane weather liberty \n", + "scared new york city news new york sandy hurricane weather liberty \n", "\n", "\n", "#statueofliberty #hiding #storm #sandy #hurricane http://t.co/B6fTDkzv\n", @@ -20026,43 +17982,43 @@ "No está fácil lo q se vive sandy #hurricane #storm #rain #newyork #sandy #instapic #EEUU http://t.co/efVMjnDZ\n", "\n", "--------------------------------------------------------\n", - "fácil q vive sandy hurricane storm rain newyork sandy instapic eeuu \n", + "fácil q vive sandy hurricane storm rain new york sandy instapic eeuu \n", "\n", "\n", "Holy shit! #hurricane #sandy is worse than I thought! #nyc #statueofliberty #staypuff #g @ Camp Crystal Lake http://t.co/13JG1Wh7\n", "\n", "--------------------------------------------------------\n", - "holy shit hurricane sandy worse thought nyc statueofliberty staypuff g camp crystal lake \n", + "holy shit hurricane sandy worse thought new york city statueofliberty staypuff g camp crystal lake \n", "\n", "\n", "Craaazy shot of #Hurricane #Sandy #NY http://t.co/rVAkwwlG\n", "\n", "--------------------------------------------------------\n", - "craaazy shot hurricane sandy ny \n", + "craaazy shot hurricane sandy new york \n", "\n", "\n", "#Sandy #Hurricane #NewYork #GodBless http://t.co/Ks7evLen\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane newyork godbless \n", + "sandy hurricane new york godbless \n", "\n", "\n", "This was too funny!!! Prayers go out to those affected. #sandy #hurricane #hurricanesandy #storm #superstorm http://t.co/PqzDKE6L\n", "\n", "--------------------------------------------------------\n", - "funny prayers go affected sandy hurricane hurricanesandy storm superstorm \n", + "funny prayers go affected sandy hurricane hurricane sandy storm superstorm \n", "\n", "\n", "Look out guys... nardatronic @TacticalAudio @AmirTaghan #Nyc #Hurricane #Sandy http://t.co/Z9Jgx39d\n", "\n", "--------------------------------------------------------\n", - "look guys nardatronic nyc hurricane sandy \n", + "look guys nardatronic new york city hurricane sandy \n", "\n", "\n", "Apparently This Is A Live Pic From #NY?? #hurricane http://t.co/rsut38US\n", "\n", "--------------------------------------------------------\n", - "apparently live pic ny hurricane \n", + "apparently live pic new york hurricane \n", "\n", "\n", "Everyone seems to be scared #Hurricane #Sandy #StatueofLiberty http://t.co/jNTRMS3R\n", @@ -20074,13 +18030,13 @@ "This bitch brought the goons with her!! #hurricane #sandy #goons #newyorkcity http://t.co/9u68tdpP\n", "\n", "--------------------------------------------------------\n", - "bitch brought goons hurricane sandy goons newyorkcity \n", + "bitch brought goons hurricane sandy goons new yorkcity \n", "\n", "\n", "he's gone already?? #sandy #hurricane #newYork #NYC #newYorkers #huracán #noticias #stat @ Statue of Liberty http://t.co/iYAPwuqO\n", "\n", "--------------------------------------------------------\n", - "gone already sandy hurricane newyork nyc newyorkers huracán noticias stat statue liberty \n", + "gone already sandy hurricane new york new york city new yorkers huracán noticias stat statue liberty \n", "\n", "\n", "Stay safe everyone. New York is in for a big one. Snapped moments ago. Amazing. http://t.co/osXNEJrh #hurricane #sandy\n", @@ -20092,13 +18048,13 @@ "Lmao it's funny but it's not funny #hurricane #sandy #2012 http://t.co/FKxaId80\n", "\n", "--------------------------------------------------------\n", - "lmao funny funny hurricane sandy 2012 \n", + "funny funny hurricane sandy012 \n", "\n", "\n", "#ny #newyork #bigapple #statueofliberty #statue #sandy #hide #fear #saveme #hurricane #joke 🗽🗽🗽🗽🗽 http://t.co/oZ6NTs8V\n", "\n", "--------------------------------------------------------\n", - "ny newyork bigapple statueofliberty statue sandy hide fear saveme hurricane joke \n", + "new york new york bigapple statueofliberty statue sandy hide fear saveme hurricane joke \n", "\n", "\n", "#Hurricane #sandy #usa #ykt14 #storm #armageddon http://t.co/ysJsA8e3\n", @@ -20116,7 +18072,7 @@ "Lmfaoo #sandy #statueliberty #nyc #hurricane #teamfollowback #followforfollow #ifollowback #f4f #followback http://t.co/DKH7reIP\n", "\n", "--------------------------------------------------------\n", - "lmfaoo sandy statueliberty nyc hurricane teamfollowback followforfollow ifollowback f4f followback \n", + "sandy statueliberty new york city hurricane teamfollowback followforfollow ifollowback f4f followback \n", "\n", "\n", "Sandy brought all her crew. #sandy #hurricane #real #notphotoshopped http://t.co/5T6jJXfW\n", @@ -20128,25 +18084,25 @@ "#hurricane #hurricanesandy #sandy #storm #storming #wet #cold #ladyliberty #lady #liberty #hairdid #hair #ig http://t.co/w3KlYlUR\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy sandy storm storming wet cold ladyliberty lady liberty hairdid hair ig \n", + "hurricane hurricane sandy sandy storm storming wet cold ladyliberty lady liberty hairdid hair ig \n", "\n", "\n", "Olha a Sandy!!! BUUUUU #sandy #nyc \\n#hurricane #dayaftersandy http://t.co/2zPi6uql\n", "\n", "--------------------------------------------------------\n", - "olha sandy buuuuu sandy nyc hurricane dayaftersandy \n", + "ola sandy buuuuu sandy new york city hurricane dayaftersandy \n", "\n", "\n", "Lady Liberty: \"I didn't sign up for this back in 1886!\" Lol. #sandy #hurricane #nyc #picoftheday #photoofthe http://t.co/ZHMF5OVj\n", "\n", "--------------------------------------------------------\n", - "lady liberty sign back 1886 lol sandy hurricane nyc picoftheday photoofthe \n", + "lady liberty sign back in886 sandy hurricane new york city picoftheday photoofthe \n", "\n", "\n", "LMAO YO!!!! IM DONE!!! #Sandy #HurricaneSandy #Hurricane http://t.co/XLZY0dfv\n", "\n", "--------------------------------------------------------\n", - "lmao im done sandy hurricanesandy hurricane \n", + "done sandy hurricane sandy hurricane \n", "\n", "\n", "You can come out and play now #statueofliberty. Thanks for sending @prabalgurung #sandy #hurricane http://t.co/I1zg0k7F\n", @@ -20164,13 +18120,13 @@ "sandy we dont wont none!!! #sandy #storm #weather #Iphone #iponesia #nyc #nj #hurricane http://t.co/NfZjdCIY\n", "\n", "--------------------------------------------------------\n", - "sandy dont wont none sandy storm weather iphone iponesia nyc nj hurricane \n", + "sandy dont wont none sandy storm weather iphone iponesia new york city new jersey hurricane \n", "\n", "\n", "Oh shit. Lol #sandy #hurricane http://t.co/KfJq88W5\n", "\n", "--------------------------------------------------------\n", - "oh shit lol sandy hurricane \n", + "shit sandy hurricane \n", "\n", "\n", "#hurricane #sandy #real #live #action http://t.co/dQPqGMCG\n", @@ -20182,7 +18138,7 @@ "Is it safe to come out yet? #Hurricane #sandy #HurricaneSandy #help #Statue of #Liberty #Pray for #EastCoast http://t.co/KM8RRaLr\n", "\n", "--------------------------------------------------------\n", - "safe come yet hurricane sandy hurricanesandy help statue liberty pray eastcoast \n", + "safe come yet hurricane sandy hurricane sandy help statue liberty pray eastcoast \n", "\n", "\n", "The day after tomorrow #hurricane #sandy #frankenstorm #lastday #horror http://t.co/9GCATCCs\n", @@ -20194,7 +18150,7 @@ "Yo yall gettin real creative with these pics abt #Hurricane #Sandy .... Even the #StatueOfLiberty scared. #N http://t.co/ZtlncEOO\n", "\n", "--------------------------------------------------------\n", - "yall gettin real creative pics abt hurricane sandy even statueofliberty scared n \n", + "yall gettin real creative picshurricane sandy even statueofliberty scared \n", "\n", "\n", "#hurricane #sandy #frankenstorm http://t.co/Ljw7RIPE\n", @@ -20206,13 +18162,13 @@ "Soooo this is what's happening on the east coast, right??? #Hurricane #Sandy #NY http://t.co/EsZNvBqw\n", "\n", "--------------------------------------------------------\n", - "soooo happening east coast right hurricane sandy ny \n", + "soooo happening east coast right hurricane sandy new york \n", "\n", "\n", "HAHA DYING 😂 #stateofliberty #sandy #Hurricane #funny #scared #NYC #ny http://t.co/gJPcPNhO\n", "\n", "--------------------------------------------------------\n", - "haha dying stateofliberty sandy hurricane funny scared nyc ny \n", + "dying stateofliberty sandy hurricane funny scared new york city new york \n", "\n", "\n", "Has anyone seen \\n#Hurricane #Sandy http://t.co/6wdHqEnf\n", @@ -20224,7 +18180,7 @@ "Hiding from #Hurricane #Sandy haha #LadyLiberty http://t.co/rbgq5sFl\n", "\n", "--------------------------------------------------------\n", - "hiding hurricane sandy haha ladyliberty \n", + "hiding hurricane sandyladyliberty \n", "\n", "\n", "Greeting hurricane sandy #hurricane #sandy #bostonprobs #eastcoaster hope we can swim! 🏊 http://t.co/fEnuN0KF\n", @@ -20236,13 +18192,13 @@ "Lo monumentos también tienen sentimientos y miedo. #sandy #newyork #statue #liberty #nyc #hurricane #huracan http://t.co/ZndFWZD8\n", "\n", "--------------------------------------------------------\n", - "monumentos sentimientos miedo sandy newyork statue liberty nyc hurricane huracan \n", + "monumentos sentimientos miedo sandy new york statue liberty new york city hurricane huracan \n", "\n", "\n", "Ni que \"The Day Afrer Tomorrow\" se hiciera realidad😱 #Sandy #Hurricane #Storm #Rain #Sea #StatueOfLiberty #N http://t.co/k4ihPDtn\n", "\n", "--------------------------------------------------------\n", - "day afrer tomorrow hiciera realidad sandy hurricane storm rain statueofliberty n \n", + "day afrer tomorrow hiciera realidad sandy hurricane storm rain statueofliberty \n", "\n", "\n", "хаха ))) #hurricane http://t.co/xVJPQNuB\n", @@ -20254,13 +18210,13 @@ "Asi estamos todos lol por mi casa todo esta bien. No se preocupen :) #hurricane #sandy #sandyhurricane #stor http://t.co/ZdPSbiIn\n", "\n", "--------------------------------------------------------\n", - "asi lol casa bien preocupen hurricane sandy sandyhurricane stor \n", + "asi casa bien preocupen hurricane sandy sandyhurricane stor \n", "\n", "\n", "Lady Liberty's afraid of #sandy #hurricane #newyork http://t.co/qJDd33VO\n", "\n", "--------------------------------------------------------\n", - "lady liberty afraid sandy hurricane newyork \n", + "lady liberty afraid sandy hurricane new york \n", "\n", "\n", "#Hurricane #Sandy made land fall, looks bad so far...#funny #hilarious http://t.co/RtVw2z1q\n", @@ -20284,25 +18240,25 @@ "Today in Ny.... Terrible Day! #NewYork #Hurricane #Sandy #NYC #Weather #InstaPhoto #Nature #Usa #WallStreet http://t.co/Xi8o0HJ8\n", "\n", "--------------------------------------------------------\n", - "today ny terrible day newyork hurricane sandy nyc weather instaphoto nature usa wallstreet \n", + "today new york terrible day new york hurricane sandy new york city weather instaphoto nature usa wallstreet \n", "\n", "\n", "Sums up this whole experience. #hurricane #sandy #godzilla #jaws #aliens #marshmellow #nyc http://t.co/S1koL7U7\n", "\n", "--------------------------------------------------------\n", - "sums whole experience hurricane sandy godzilla jaws aliens marshmellow nyc \n", + "sums whole experience hurricane sandy godzilla jaws aliens marshmellow new york city \n", "\n", "\n", "Latest shot of NYC during #sandy haha #hurricane #godzilla #itsgonrain http://t.co/LSKl4P7o\n", "\n", "--------------------------------------------------------\n", - "latest shot nyc sandy haha hurricane godzilla itsgonrain \n", + "latest shot new york city sandyhurricane godzilla itsgonrain \n", "\n", "\n", "#newyork #sandy #storm #liberty #irish #ireland #hurricane #instadaily #instagramhub #instatalks #instanews http://t.co/78Y4De0m\n", "\n", "--------------------------------------------------------\n", - "newyork sandy storm liberty irish ireland hurricane instadaily instagramhub instatalks instanews \n", + "new york sandy storm liberty irish ireland hurricane instadaily instagramhub instatalks instanews \n", "\n", "\n", "#hurricane #sandy @ Marine Lines http://t.co/nwJtoFG7\n", @@ -20314,7 +18270,7 @@ "#sandy #hurricane #newyork #hiding http://t.co/qSllBM7S\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane newyork hiding \n", + "sandy hurricane new york hiding \n", "\n", "\n", "DAMN So Sandy got Liberity seeking shelter too 😭😂😄😄#sandy #hurricane #statueofliberty http://t.co/GbEhfHV8\n", @@ -20326,25 +18282,25 @@ "Yes! It's like #TheDayAfterTomorrow. #Sandy #Hurricane #NYC RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/sGCHkmBH\n", "\n", "--------------------------------------------------------\n", - "yes like thedayaftertomorrow sandy hurricane nyc \n", + "yes like thedayaftertomorrow sandy hurricane new york city \n", "\n", "\n", "Lol this shit is way too funny #nyc #sandy #hurricane #statue of #liberty http://t.co/WpxP69Hd\n", "\n", "--------------------------------------------------------\n", - "lol shit way funny nyc sandy hurricane statue liberty \n", + "shit way funny new york city sandy hurricane statue liberty \n", "\n", "\n", "#hurricane #sandy #NY #Statue #Liberty http://t.co/VY1fSW2a\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny statue liberty \n", + "hurricane sandy new york statue liberty \n", "\n", "\n", "Mad fucken #windy out even the #statueofliberty moved! Lol #sandy #hurricane #nyc #scared http://t.co/SuDVouzu\n", "\n", "--------------------------------------------------------\n", - "mad fucken windy even statueofliberty moved lol sandy hurricane nyc scared \n", + "mad fucken windy even statueofliberty moved sandy hurricane new york city scared \n", "\n", "\n", "#sandy destruction next to our Trade Joes store in Edgewater. #edgewater #hurricane http://t.co/WuHXqQmu http://t.co/VeEESAfd\n", @@ -20356,7 +18312,7 @@ "Sandy's hurricane finished?!!\\nNot yet?!! \\n#Sandy #NewYorker #NY\\n#NewYork #hurricane http://t.co/RZNytztS\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane finished yet sandy newyorker ny newyork hurricane \n", + "sandy hurricane finished yet sandy new yorker new york new york hurricane \n", "\n", "\n", "Is that bitch #sandy gone yet #igers #iphone #hurricane #dayafter http://t.co/k62jJrTz\n", @@ -20368,13 +18324,7 @@ "Man this storms starting to look pretty bad #sandy #nyc #godzilla #hurricane http://t.co/lXKjkiex\n", "\n", "--------------------------------------------------------\n", - "storms starting look pretty bad sandy nyc godzilla hurricane \n", - "\n", - "\n", - "🗽 #lmao #hurricane #sandy http://t.co/EvocX1Tu\n", - "\n", - "--------------------------------------------------------\n", - "lmao hurricane sandy \n", + "storms starting look pretty bad sandy new york city godzilla hurricane \n", "\n", "\n", "😂😂😂😂#hurricane #sofunny #rp http://t.co/5ZeEYJUk\n", @@ -20392,13 +18342,13 @@ "To all my friends in NY: be safe!! See you tomorrow after Sandy #ny #nyc #sandy #hurricane #backtony #statue http://t.co/5KRboGSe\n", "\n", "--------------------------------------------------------\n", - "friends ny safe see tomorrow sandy ny nyc sandy hurricane backtony statue \n", + "friends new york safe see tomorrow sandy new york new york city sandy hurricane backtony statue \n", "\n", "\n", "That was the before this is the after #lmao #lol #hurricane #hurricanefake #sandy #hurricanesandy http://t.co/WiXgF1lM\n", "\n", "--------------------------------------------------------\n", - "lmao lol hurricane hurricanefake sandy hurricanesandy \n", + "hurricane hurricanefake sandy hurricane sandy \n", "\n", "\n", "#prepared #scared #statue #of #liberty #hurricane #sandy http://t.co/lQjGLBTb\n", @@ -20416,49 +18366,37 @@ "NYC's worst nightmare. Apparently true, saw it on Facebook. #Sandy #hurricane #jk http://t.co/L7tv8DhD\n", "\n", "--------------------------------------------------------\n", - "nyc worst nightmare apparently true saw facebook sandy hurricane jk \n", - "\n", - "\n", - "🌊☔🌀💦🐋🐳🐬🐟🐠🏊🏄🎣🗽🚣⚓🚢 #hurricane #sandy Lol! http://t.co/1d9CkVNu\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy lol \n", + "new york city worst nightmare apparently true saw facebook sandy hurricane jk \n", "\n", "\n", "And this is #nyc now #sandy #hurricane http://t.co/j8RECrfS\n", "\n", "--------------------------------------------------------\n", - "nyc sandy hurricane \n", - "\n", - "\n", - "😂😂😂 #hurricane #sandy http://t.co/nIfEJ0fg\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "new york city sandy hurricane \n", "\n", "\n", "#Sandy\\n#hurricane Dont worry, Im a survivor http://t.co/YSzaO8El\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane dont worry im survivor \n", + "sandy hurricane dont worry survivor \n", "\n", "\n", "#fuck ----- #frankenstorm #hurricane #sandy #statue #of #liberty #nyc #newyork #instagra @ Statue of Liberty http://t.co/D163Yt1o\n", "\n", "--------------------------------------------------------\n", - "fuck frankenstorm hurricane sandy statue liberty nyc newyork instagra statue liberty \n", + "fuck frankenstorm hurricane sandy statue liberty new york city new york instagra statue liberty \n", "\n", "\n", "Dead 😂\\nBut for real, pray for all the people affected by the storm. 🙏 #hurricane #sandy #goodluck #newyork # http://t.co/a4SuuZqZ\n", "\n", "--------------------------------------------------------\n", - "dead real pray people affected storm hurricane sandy goodluck newyork \n", + "dead real pray people affected storm hurricane sandy goodluck new york \n", "\n", "\n", "Hold on, be strong my NYC family! #hurricane #sandy http://t.co/n1KLYGHe\n", "\n", "--------------------------------------------------------\n", - "hold strong nyc family hurricane sandy \n", + "hold strong new york city family hurricane sandy \n", "\n", "\n", "#hurricane #sally doesn't look that bad to me... http://t.co/nIORExfP\n", @@ -20476,7 +18414,7 @@ "#newyork is ready ... #hurricane #sandy http://t.co/pHFTJryc\n", "\n", "--------------------------------------------------------\n", - "newyork ready hurricane sandy \n", + "new york ready hurricane sandy \n", "\n", "\n", "“@Talal_Doueihi: #Hurricane #Sandy 😱 http://t.co/YICsimyw” hahahahhahaa\n", @@ -20488,25 +18426,19 @@ "#unreal #frankenstorm #newyork #hurricane http://t.co/tTDMtW3r\n", "\n", "--------------------------------------------------------\n", - "unreal frankenstorm newyork hurricane \n", + "unreal frankenstorm new york hurricane \n", "\n", "\n", "Ondertussen in #newyork #hurricane #sandy http://t.co/XlHN7wcQ\n", "\n", "--------------------------------------------------------\n", - "ondertussen newyork hurricane sandy \n", - "\n", - "\n", - "«@Mvan_berkel Ondertussen, in New York... #hurricane #Sandy #statueofbibberty http://t.co/l6nWyFhZ»\n", - "\n", - "--------------------------------------------------------\n", - "ondertussen new york hurricane sandy statueofbibberty \n", + "ondertussen new york hurricane sandy \n", "\n", "\n", "Hope we do not see him #frankenstorm #hurricane #sandy #ny #nj #nyc #newyork #godzilla http://t.co/QjM0UaGQ\n", "\n", "--------------------------------------------------------\n", - "hope see frankenstorm hurricane sandy ny nj nyc newyork godzilla \n", + "hope see frankenstorm hurricane sandy new york new jersey new york city new york godzilla \n", "\n", "\n", "Might be my favorite #Hurricane #Sandy photo. http://t.co/RQEDmcrI\n", @@ -20524,7 +18456,7 @@ "En cambio esta foto de Sandy a su paso por Nueva York SÍ que es real... http://t.co/kSEiat6v Los pelos de punta.\n", "\n", "--------------------------------------------------------\n", - "cambio foto sandy paso nueva york real pelos punta \n", + "cambio foto sandy paso nueva york real punta \n", "\n", "\n", "my dad just sent me this to be ironic. My mom's name happens to be Sandy. this is my life. 😂😄 http://t.co/ZtCNVAmY\n", @@ -20542,7 +18474,7 @@ "You know in every movie..she's a goner...Lmao she not playing with Sandy... http://t.co/YoyVknMD\n", "\n", "--------------------------------------------------------\n", - "know every movie goner lmao playing sandy \n", + "know every movie goner playing sandy \n", "\n", "\n", "She's not felling sandy !! She took cover ! http://t.co/7RdQXQyx\n", @@ -20551,12 +18483,6 @@ "felling sandy took cover \n", "\n", "\n", - "She ain't about that sandy. Lol http://t.co/3zpxGdyX\n", - "\n", - "--------------------------------------------------------\n", - "sandy lol \n", - "\n", - "\n", "Ja ja ja ya se fue la p... De Sandy!!! https://t.co/q6IZJt8S\n", "\n", "--------------------------------------------------------\n", @@ -20572,7 +18498,7 @@ "Lol that's crazy, looks like a scene from Independence Day RT @AtomicKJ: RT @XS_XaviSegura: #sandy #nyc #allisone http://t.co/MdmqriTe\n", "\n", "--------------------------------------------------------\n", - "lol crazy looks like scene independence day \n", + "crazy looks like scene independence day \n", "\n", "\n", "Just spoke to my dad who works at CBS News and told me this picture is not from Sandy. It's from a different http://t.co/gQVA5Rzs\n", @@ -20593,39 +18519,21 @@ "always verify source share accurate sandy photos \n", "\n", "\n", - "Sandy, is that you????? http://t.co/BXQc0jd5\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "That pic too ignant lol RT @_GunzNRoses #Tears RT @iTrumpetBoy RT @flashydeb That hoe sandy gone? http://t.co/uyulVXci\n", "\n", "--------------------------------------------------------\n", - "pic ignant lol \n", + "pic ignant \n", "\n", "\n", "Since there's lots of fake pictures of NY & Sandy, just wondering if anyone was able to confirm if ths one was real yet http://t.co/PmBq1bIT\n", "\n", "--------------------------------------------------------\n", - "since lots fake pictures ny sandy wondering anyone able confirm ths one real yet \n", - "\n", - "\n", - "Sandy's effects http://t.co/9Rg1Jewl\"\n", - "\n", - "--------------------------------------------------------\n", - "sandy effects \n", + "since lots fake pictures new york sandy wondering anyone able confirm ths one real yet \n", "\n", "\n", "Sandy coming what aint nobody got time for that S*** New York don't even suppose to get hurricanes for all t http://t.co/YMMAPjLH\n", "\n", - "--------------------------------------------------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "--------------------------------------------------------\n", "sandy coming aint nobody got time new york even suppose get hurricanes \n", "\n", "\n", @@ -20638,13 +18546,7 @@ "Apparently Sandy has proven she's no Irene. Got everyone running for cover. #StatueofLiberty #NewYork #Hurri http://t.co/MLWQT1CV\n", "\n", "--------------------------------------------------------\n", - "apparently sandy proven irene got everyone running cover statueofliberty newyork hurri \n", - "\n", - "\n", - "Sandy, is that you? https://t.co/lrqhEd0I\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "apparently sandy proven irene got everyone running cover statueofliberty new york hurri \n", "\n", "\n", "#picstitch Fuck that shit Sandy aint getting noone http://t.co/m7HpSxCV\n", @@ -20656,13 +18558,13 @@ "That's funny!!! #lmao #sandy http://t.co/sXyDS2AA\n", "\n", "--------------------------------------------------------\n", - "funny lmao sandy \n", + "funny sandy \n", "\n", "\n", "That jawn Liberty even scared of that other jawn named Sandy. FOH! Lmao Y'all be safe up north! Please check http://t.co/2hZtDvqa\n", "\n", "--------------------------------------------------------\n", - "jawn liberty even scared jawn named sandy foh lmao safe north please check \n", + "jawn liberty even scared jawn named sandy f safe north please check \n", "\n", "\n", "I know it's a serious situation out on the east coast, but this is the best fake Sandy pic I've seen. http://t.co/DxMc95vm\n", @@ -20683,12 +18585,6 @@ "google fake sandy shots \n", "\n", "\n", - "Fuck me RT @PacificMoceans: Just got a foto from @mrxtrabusy on Sandy's damage to his hometown... http://t.co/XyA5WDI2\n", - "\n", - "--------------------------------------------------------\n", - "fuck \n", - "\n", - "\n", "Sandy's coming. #staysafe http://t.co/fGwQ5MY9\n", "\n", "--------------------------------------------------------\n", @@ -20701,34 +18597,22 @@ "heiffer sandy chu \n", "\n", "\n", - "@joncontino: Finally a photo of Sandy that's NOT faked. http://t.co/uz6Wp9Kb @mikollaneous @JoonoSimon\n", - "\n", - "--------------------------------------------------------\n", - "finally photo sandy faked \n", - "\n", - "\n", "Just got a foto from @mrxtrabusy on Sandy's damage to his hometown... http://t.co/8jiLDWLw\n", "\n", - "--------------------------------------------------------\n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "got foto sandy damage hometown \n", "\n", "\n", - "Here's Sandy !!!!! http://t.co/wpTmFkcV\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "“@TweetThvtUp_ “@LesBiREAL_JENx3 Lmaooo sandy that serious 😂😂😂😂 http://t.co/bH3GxwvQ””\n", "\n", "--------------------------------------------------------\n", - "lmaooo sandy serious \n", - "\n", - "\n", - "That hoe sandy gone? http://t.co/sioIj0N5\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", + "sandy serious \n", "\n", "\n", "Finally a photo of Sandy that's NOT faked. http://t.co/E4l2pQNY\n", @@ -20740,13 +18624,13 @@ "@Toure Wow yeah here's another 'incredible Sandy pic', you gullible halfwit: http://t.co/xjFJO4Hi\n", "\n", "--------------------------------------------------------\n", - "wow yeah another incredible sandy pic gullible halfwit \n", + "yeah another incredible sandy pic gullible halfwit \n", "\n", "\n", "Just got the word from 1 of my moms colleagues on how bad hurricane sandy really is right now #not http://t.co/wkWbqoxL\n", "\n", "--------------------------------------------------------\n", - "got word 1 moms colleagues bad hurricane sandy really right \n", + "got word moms colleagues bad hurricane sandy really right \n", "\n", "\n", "“@Kilpatrick24: Awesome picture. Tomb of the unknown soldier still being guarded during Hurricane Sandy http://t.co/RnvtXHC3”\\n#FakeSandy\n", @@ -20770,13 +18654,13 @@ "Sandy got niggas shook lol #sandy http://t.co/IHTajuv1\n", "\n", "--------------------------------------------------------\n", - "sandy got niggas shook lol sandy \n", + "sandy got niggas shook sandy \n", "\n", "\n", "#sandy #newyork #jokes #terror #image #instagood #imageoftheday #funny #photoshop #picoftheday http://t.co/WyOkdnH2\n", "\n", "--------------------------------------------------------\n", - "sandy newyork jokes terror image instagood imageoftheday funny photoshop picoftheday \n", + "sandy new york jokes terror image instagood imageoftheday funny photoshop picoftheday \n", "\n", "\n", "Best pic yet:\\n\"Hurricane #sandy is just getting out of control...\" #staypuft\\n http://t.co/hunJg0uz\n", @@ -20785,12 +18669,6 @@ "best pic yet hurricane sandy getting control staypuft \n", "\n", "\n", - "@iansomerhalder: This looks like a movie!Wtf?! http://t.co/ubRqwHuu omg! This looks like its off #thedayaftertomorrow #staysafe #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "looks like movie wtf omg looks like thedayaftertomorrow staysafe sandy \n", - "\n", - "\n", "alot of fake pics #Sandy http://t.co/Ol6OYQjE\n", "\n", "--------------------------------------------------------\n", @@ -20800,37 +18678,31 @@ "#sandy #storm #usa #newyork #nyc #liberty be strong America dudes http://t.co/hsVveI6a\n", "\n", "--------------------------------------------------------\n", - "sandy storm usa newyork nyc liberty strong america dudes \n", + "sandy storm usa new york new york city liberty strong america dudes \n", "\n", "\n", "A estátua da Liberdade durante o furacão #sandy ;) http://t.co/tiQQoog9\n", "\n", "--------------------------------------------------------\n", - "estátua da liberdade furacão sandy \n", - "\n", - "\n", - "#sandy #storm 😝😝😝😜 http://t.co/1UAmIVIF\n", - "\n", - "--------------------------------------------------------\n", - "sandy storm \n", + "estátua liberdade furacão sandy \n", "\n", "\n", "L'ouragan sur New York, bien au delà de tout ce qu'on pouvait imaginer. #Sandy #NY #realpics http://t.co/uF2NdgQo\n", "\n", "--------------------------------------------------------\n", - "l ouragan sur new york bien au delà tout ce qu pouvait imaginer sandy ny realpics \n", + "ouragan new york bien delà tout pouvait imaginer sandy new york realpics \n", "\n", "\n", "Hiding from hurricane #Sandy Lolololololol http://t.co/bq2Gxh5X\n", "\n", "--------------------------------------------------------\n", - "hiding hurricane sandy lolololololol \n", + "hiding hurricane sandy oool \n", "\n", "\n", "thinking about my friends in NYC. hope you are safe. http://t.co/ROy4DISu #sandy\n", "\n", "--------------------------------------------------------\n", - "thinking friends nyc hope safe sandy \n", + "thinking friends new york city hope safe sandy \n", "\n", "\n", "Idk man seems legit. XD #Sandy http://t.co/ovxDzChX\n", @@ -20848,7 +18720,7 @@ "I expect this photo to be on every major news outlet in 30 seconds. #sandy http://t.co/JIVczQxa\n", "\n", "--------------------------------------------------------\n", - "expect photo every major news outlet 30 seconds sandy \n", + "expect photo every major news outlet in0 seconds sandy \n", "\n", "\n", "Pobre estatua... Se asusto al ver a #Sandy :s jajajajaja http://t.co/8GpIGzBW\n", @@ -20866,7 +18738,7 @@ "Since everyone is posting photoshopped or edited pictures of #sandy hitting #NY.....Here is my share. #Watch http://t.co/jbEmiH9e\n", "\n", "--------------------------------------------------------\n", - "since everyone posting photoshopped edited pictures sandy hitting ny share watch \n", + "since everyone posting photoshopped edited pictures sandy hitting new york share watch \n", "\n", "\n", "Hasta ella le tiene miedo a #Sandy http://t.co/01GO994N\n", @@ -20890,19 +18762,19 @@ "This what it was like last night guys #yolo #nyc #sandy http://t.co/cAAdHqQZ\n", "\n", "--------------------------------------------------------\n", - "like last night guys yolo nyc sandy \n", + "like last night guys yolo new york city sandy \n", "\n", "\n", "100% real snapshot of #newyork #sandy http://t.co/8VGhkUff\n", "\n", "--------------------------------------------------------\n", - "100 real snapshot newyork sandy \n", + "real snapshot new york sandy \n", "\n", "\n", "Sandy even got Liberty shook 😂😂😂 #NYC #Sandy http://t.co/6iUSFgrE\n", "\n", "--------------------------------------------------------\n", - "sandy even got liberty shook nyc sandy \n", + "sandy even got liberty shook new york city sandy \n", "\n", "\n", "Rofl #sandy http://t.co/JRcZzpug\n", @@ -20917,12 +18789,6 @@ "gone sandy \n", "\n", "\n", - "Statue of Liberty right now. #sandy http://t.co/0RoBAGGk\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty right sandy \n", - "\n", - "\n", "Here's some comic relief for today. She's scared of #Sandy too. http://t.co/2EkehXXU\n", "\n", "--------------------------------------------------------\n", @@ -20938,19 +18804,19 @@ "Evn she scared!! #statueofliberty #ny #sandy #funnyshit http://t.co/xCWeJdkc\n", "\n", "--------------------------------------------------------\n", - "evn scared statueofliberty ny sandy funnyshit \n", + "evn scared statueofliberty new york sandy funnyshit \n", "\n", "\n", "#newyork #sandy #humour http://t.co/UWguVHLQ\n", "\n", "--------------------------------------------------------\n", - "newyork sandy humour \n", + "new york sandy humour \n", "\n", "\n", "Comparto una imagen 100% real y actual de #sandy en NYC... via @Mongesaurio http://t.co/r28byJSR\n", "\n", "--------------------------------------------------------\n", - "comparto imagen 100 real actual sandy nyc \n", + "comparto imagen00 real actual sandy new york city \n", "\n", "\n", "Wrong for this #sandy. http://t.co/uY7mWnTL\n", @@ -20962,13 +18828,13 @@ "Ojo, ojo, ojo. Que la cosa empeora por momentos en #NewYork http://t.co/TrJ7qPwG #Photoshop #Sandy\n", "\n", "--------------------------------------------------------\n", - "ojo ojo ojo cosa empeora momentos newyork photoshop sandy \n", + "ojo ojo ojo cosa empeora momentos new york photoshop sandy \n", "\n", "\n", "#symbainei_twra #Sandy http://t.co/26Tdjnmw\"\n", "\n", "--------------------------------------------------------\n", - "symbainei twra sandy \n", + "symbaineitwra sandy \n", "\n", "\n", "poor miss liberty #sandy http://t.co/SnMsldjo\n", @@ -20980,7 +18846,7 @@ "La llegada de #sandy a #NY jaja @anapauglez http://t.co/1BDRCsj7\n", "\n", "--------------------------------------------------------\n", - "llegada sandy ny jaja \n", + "llegada sandy new york jaja \n", "\n", "\n", "#Sandy got yal asses Shook http://t.co/BOTWBMVc\n", @@ -21025,12 +18891,6 @@ "much epic sadly shopped sandy \n", "\n", "\n", - "lmfao #sandy http://t.co/1zTfwvqL\n", - "\n", - "--------------------------------------------------------\n", - "lmfao sandy \n", - "\n", - "\n", "#sandy の被害の写真の中に、ちょっとほっこりしたやつを見つけたw http://t.co/6qOc9gEa\n", "\n", "--------------------------------------------------------\n", @@ -21058,25 +18918,19 @@ "http://t.co/8Q1Gkhc6 Just another day in NY. #Sandy #NY #AverageDayInNY\n", "\n", "--------------------------------------------------------\n", - "another day ny sandy ny averagedayinny \n", + "another day new york sandy new york averagedayinny \n", "\n", "\n", "Sandy?! #instamood #instacool #followback #likeforlike #sandy #hurricanesandy#nyc http://t.co/lU4ObsZy\n", "\n", "--------------------------------------------------------\n", - "sandy instamood instacool followback likeforlike sandy hurricanesandy nyc \n", - "\n", - "\n", - "LOL!!! #Sandy #NewYork http://t.co/Gg8YhB0l\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy newyork \n", + "sandy instacool followback likeforlike sandy hurricane sandynyc \n", "\n", "\n", "Esperando a #Sandy #NewYork http://t.co/D8eWgFxH\n", "\n", "--------------------------------------------------------\n", - "esperando sandy newyork \n", + "esperando sandy new york \n", "\n", "\n", "Best fake #Sandy so far. http://t.co/tBrG4bwB\n", @@ -21085,12 +18939,6 @@ "best fake sandy far \n", "\n", "\n", - "Lmao #repost #sandy http://t.co/QpZS7ovD\n", - "\n", - "--------------------------------------------------------\n", - "lmao repost sandy \n", - "\n", - "\n", "So it's getting bad! #sandy Thx Buffy http://t.co/Ihi60UCA\n", "\n", "--------------------------------------------------------\n", @@ -21100,7 +18948,7 @@ "#sandy @ bronx, NY http://t.co/ogLmhKki\n", "\n", "--------------------------------------------------------\n", - "sandy bronx ny \n", + "sandy bronx new york \n", "\n", "\n", "Look who I found on the Hudson. #sandy http://t.co/BbU8VwWR\n", @@ -21118,25 +18966,13 @@ "Une grande pensée pour mes amis de NY ! #sandy #NY #courage http://t.co/9GzMlrUx\n", "\n", "--------------------------------------------------------\n", - "une grande pensée pour mes amis ny sandy ny courage \n", + "grande pensée amis new york sandy new york courage \n", "\n", "\n", "Fox news reports on what's happening in NYC #sandy http://t.co/8weGC6zD\n", "\n", "--------------------------------------------------------\n", - "fox news reports happening nyc sandy \n", - "\n", - "\n", - "#Sandy #Nyc #Lmao http://t.co/8SvX0f4W\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc lmao \n", - "\n", - "\n", - "😂😂 #Sandy http://t.co/ju2NZVSG\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "fox news reports happening new york city sandy \n", "\n", "\n", "Here's some of the funniest fake hurricane #Sandy pics being shared ;-) http://t.co/fBq4SQZU http://t.co/atIlC7fu http://t.co/bW8fkY1X\n", @@ -21154,31 +18990,25 @@ "Things look to be getting worse in NY... #Sandy is just the tip of the iceberg! http://t.co/UDoQD1SJ\n", "\n", "--------------------------------------------------------\n", - "things look getting worse ny sandy tip iceberg \n", + "things look getting worse new york sandy tip iceberg \n", "\n", "\n", "OMG!!!!!!! #huracan #nyc #sandy http://t.co/aShgJOcC\n", "\n", "--------------------------------------------------------\n", - "omg huracan nyc sandy \n", + "huracan new york city sandy \n", "\n", "\n", "NYC, currently having a really bad night. [PIC] #Sandy #SandyPics http://t.co/gm7t5V9Q\n", "\n", "--------------------------------------------------------\n", - "nyc currently really bad night pic sandy sandypics \n", + "new york city currently really bad night pic sandy sandypics \n", "\n", "\n", "Woah. Crazy #Sandy pic, if real. (h/t @ggfletcher) http://t.co/U1puIbcn\n", "\n", "--------------------------------------------------------\n", - "woah crazy sandy pic real h \n", - "\n", - "\n", - "#Sandy #NY 🗽💨💦☔ http://t.co/SdaEopab\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", + "woah crazy sandy pic real \n", "\n", "\n", "shits getting real #sandy http://t.co/L4F0uS6S\n", @@ -21196,7 +19026,7 @@ "#Sandy: Sauve qui peut! http://t.co/pusXdS2i\n", "\n", "--------------------------------------------------------\n", - "sandy sauve qui peut \n", + "sandy sauve peut \n", "\n", "\n", "#wasted #sandy http://t.co/Hsuq2Mym\n", @@ -21214,7 +19044,7 @@ "Take care miss !\\n#NY #NYC #Sandy http://t.co/2fr6tuGR\n", "\n", "--------------------------------------------------------\n", - "take care miss ny nyc sandy \n", + "take care miss new york new york city sandy \n", "\n", "\n", "Ya a pasado Sandy??? Foto que demuestra la fuerza del viento de Sandy #Sandy #igers #instagram #intagramers http://t.co/008oI29Q\n", @@ -21232,7 +19062,7 @@ "http://t.co/AgGFq3bG Une photo pas du tout shoppée de #sandy sur New york\n", "\n", "--------------------------------------------------------\n", - "une photo pas tout shoppée sandy sur new york \n", + "photo tout shoppée sandy new york \n", "\n", "\n", "Невероятно! Посмотрите, что твориться у берегов Нью-Йорка.... #sandy http://t.co/6D25JipC\n", @@ -21262,13 +19092,7 @@ "Is Sandy gone? :) #NY #Sandy http://t.co/AqcW1vZ3\n", "\n", "--------------------------------------------------------\n", - "sandy gone ny sandy \n", - "\n", - "\n", - "“@JamesCruz1: Even Lady Liberty is taking precautions...#Sandy http://t.co/9UQHn8iK” lol!\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", + "sandy gone new york sandy \n", "\n", "\n", "Ever she is hiding from #sandy http://t.co/D1CgAUa2\n", @@ -21280,19 +19104,19 @@ "Imagen 100% real y actual de #sandy en NYC ZAZ!!! http://t.co/tSlTPhQx\n", "\n", "--------------------------------------------------------\n", - "imagen 100 real actual sandy nyc zaz \n", + "imagen00 real actual sandy new york city zaz \n", "\n", "\n", "A nuestros expatriados en USA: ¿como ha ido todo? #sandy http://t.co/zC36ekj9\n", "\n", "--------------------------------------------------------\n", - "expatriados usa ido sandy \n", + "expatriados usa comoido sandy \n", "\n", "\n", "It's Coming #Sandy #NY #StatueOfLiberty http://t.co/YTfQmJjH\n", "\n", "--------------------------------------------------------\n", - "coming sandy ny statueofliberty \n", + "coming sandy new york statueofliberty \n", "\n", "\n", "No se dejen engañar por fotos trucadas del Huracán #SANDY. Ésta es de verdad! http://t.co/JLreSB7R\n", @@ -21316,19 +19140,19 @@ "Lol..... its getting crazy in new york city #sandy http://t.co/vP82U0s3\n", "\n", "--------------------------------------------------------\n", - "lol getting crazy new york city sandy \n", + "getting crazy new york city sandy \n", "\n", "\n", "Ahí viene sandy.... #huracán #sandy #NY #humor #liberty #libertad #miedo #preparada #Photo #montaje #instagr http://t.co/9fxeAVcw\n", "\n", "--------------------------------------------------------\n", - "ahí viene sandy huracán sandy ny humor liberty libertad miedo preparada photo montaje instagr \n", + "ahí viene sandy huracán sandy new york humor liberty libertad miedo preparada photo montaje instagr \n", "\n", "\n", "Wow! worse than i thought. RT @TexasDarren: Footage of #NYC during #Sandy http://t.co/FjAHNOR0\n", "\n", "--------------------------------------------------------\n", - "wow worse thought \n", + "worse thought \n", "\n", "\n", "What's her name, #Sandy? http://t.co/jsAvQ4z3 #photoshop pictures of the hurricane!\n", @@ -21337,16 +19161,10 @@ "name sandy photoshop pictures hurricane \n", "\n", "\n", - "@cucandc No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE. #Sandy | http://t.co/s3p0rEQi\n", - "\n", - "--------------------------------------------------------\n", - "sé si foto temporal ny fake impactante sandy \n", - "\n", - "\n", "ニューヨーク、おわったな、、、I expect this photo to be on every major news outlet in 30 seconds. #sandy http://t.co/tqd0Jg1H @TwitPicさんから\n", "\n", "--------------------------------------------------------\n", - "ニューヨーク おわったな expect photo every major news outlet 30 seconds sandy \n", + "ニューヨーク おわったな expect photo every major news outlet in0 seconds sandy \n", "\n", "\n", "dios el fin de América #sandy http://t.co/bV9ZMnUB\n", @@ -21358,7 +19176,7 @@ "everything's gonna be alright #sandy #stateofliberty #newyork #nyc #ny #brooklyn #nj #newjersey #newyorkcity http://t.co/Q3UPK7P8\n", "\n", "--------------------------------------------------------\n", - "everything gonna alright sandy stateofliberty newyork nyc ny brooklyn nj newjersey newyorkcity \n", + "everything gonna alright sandy stateofliberty new york new york city new york brooklyn new jersey newjersey new yorkcity \n", "\n", "\n", "Hide!!!! #Sandy is coming!!!!! http://t.co/cpbl1OjO\n", @@ -21370,13 +19188,13 @@ "Attenzione: ho ricevuto segnalazioni che questa foto potrebbe essere un fake: #Sandy http://t.co/WQzSQIzq \\n(Foto postata da @rarunchennai)\n", "\n", "--------------------------------------------------------\n", - "attenzione ho ricevuto segnalazioni che questa foto potrebbe essere fake sandy foto postata da \n", + "attenzione ho ricevuto segnalazioni che questa foto potrebbe essere fake sandy foto postata \n", "\n", "\n", "Las imágenes que circulan del huracán #Sandy son falsas. Esta es la imagen real #Sandy #NY http://t.co/V9rhXBAr\n", "\n", "--------------------------------------------------------\n", - "imágenes circulan huracán sandy falsas imagen real sandy ny \n", + "imágenes circulan huracán sandy falsas imagen real sandy new york \n", "\n", "\n", "Esta foto parece auténtica y muestra la brutalidad de #sandy http://t.co/oBQD8uB2\n", @@ -21388,19 +19206,13 @@ "She's French... #sandy #nyc http://t.co/SraYWkvc\n", "\n", "--------------------------------------------------------\n", - "french sandy nyc \n", + "french sandy new york city \n", "\n", "\n", "«@___Jersey Thought it funny! #sandy #NY http://t.co/ORs0IRlS»\\n@meteoby @OnlinerBY \n", "\n", "--------------------------------------------------------\n", - "thought funny sandy ny \n", - "\n", - "\n", - "Wow. #Sandy http://t.co/uV95SApJ\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", + "thought funny sandy new york \n", "\n", "\n", "Америка и ураган #sandy http://t.co/ULHdrIPw\n", @@ -21409,28 +19221,16 @@ "америка ураган sandy \n", "\n", "\n", - "Smh #sandy http://t.co/mmvzmELn\n", - "\n", - "--------------------------------------------------------\n", - "smh sandy \n", - "\n", - "\n", "smettetela di postare foto finte dell'uragano #Sandy! e se proprio dovete, almeno che facciano sorridere: http://t.co/JSybLZRK\n", "\n", "--------------------------------------------------------\n", - "smettetela di postare foto finte dell uragano sandy proprio dovete almeno che facciano sorridere \n", + "smettetela postare foto finte dell uragano sandy proprio dovete almeno che facciano sorridere \n", "\n", "\n", "#newyork #sandy #photoshop http://t.co/icg2XaSk\n", "\n", "--------------------------------------------------------\n", - "newyork sandy photoshop \n", - "\n", - "\n", - "Is it over? #sandy http://t.co/raz5wK4N\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "new york sandy photoshop \n", "\n", "\n", "“@MishaC4D “@ajhalls1 Latest image from New York before #sandy hits: http://t.co/rwgggwWN””\n", @@ -21442,7 +19242,7 @@ "LOLOLOL #icant! Thanks gyozataco for this one #sandy #nyc http://t.co/eJD2ma6w\n", "\n", "--------------------------------------------------------\n", - "lololol icant thanks gyozataco one sandy nyc \n", + "icant thanks gyozataco one sandy new york city \n", "\n", "\n", "Maybe wrong but still funny #Sandy http://t.co/H64eT3xO\n", @@ -21454,7 +19254,7 @@ "That bitch #Sandy just took off with my robe!! #lmao #epic #funny #storm http://t.co/CpSJsqla\n", "\n", "--------------------------------------------------------\n", - "bitch sandy took robe lmao epic funny storm \n", + "bitch sandy took robe epic funny storm \n", "\n", "\n", "Worst Storm Ever #sandy http://t.co/UgwnOMnF\n", @@ -21463,12 +19263,6 @@ "worst storm ever sandy \n", "\n", "\n", - "“@i_7u55ain: هذي صورة تجمع بعض الاشاعات عن الاعصار 😅\\n#إعصار_ساندي\\n#اعصار_ساندي \\n#Sandy \\n\\nhttp://t.co/hNVLY3fK\n", - "\n", - "--------------------------------------------------------\n", - "صورة تجمع الاشاعات الاعصار إعصار ساندي اعصار ساندي sandy \n", - "\n", - "\n", "Confirmed fake. Scene taken from movie. Not #sandy . Follow me for more #sandy #shark #confirmed photos http://t.co/sW8Emmr0\n", "\n", "--------------------------------------------------------\n", @@ -21478,7 +19272,7 @@ "Oh nooooooo #sandy spare us. The iPad Mini comes out Friday http://t.co/e3ZWhPTU\n", "\n", "--------------------------------------------------------\n", - "oh nooooooo sandy spare us ipad mini comes friday \n", + "nooooooo sandy spare us ipad mini comes friday \n", "\n", "\n", "funny mockups are slowing down, shit just got real https://t.co/F8yMQvKo #sandy\n", @@ -21487,18 +19281,6 @@ "funny mockups slowing shit got real sandy \n", "\n", "\n", - "Don't fuck with #sandy http://t.co/gplY9Ztj\n", - "\n", - "--------------------------------------------------------\n", - "fuck sandy \n", - "\n", - "\n", - "Oh no! “@ggfletcher: Crap! That crane is coming down! #sandy http://t.co/7bHqljCQ”\n", - "\n", - "--------------------------------------------------------\n", - "oh \n", - "\n", - "\n", "What #sandy looks like to Europe http://t.co/x5gyTat3\n", "\n", "--------------------------------------------------------\n", @@ -21508,7 +19290,7 @@ "صورة قديمة و تم نشرها على أنها ل #اعصار_ساندي #sandy http://t.co/HV4Pb8m8\n", "\n", "--------------------------------------------------------\n", - "صورة قديمة و تم نشرها أنها ل اعصار ساندي sandy \n", + "صورة قديمة و تم نشرها أنها ل اعصارساندي sandy \n", "\n", "\n", "#sandy.... I know you saw it before. http://t.co/TGJGJg8k\n", @@ -21520,13 +19302,13 @@ "Oh Yeah #scaredstatue #freedom #sandy http://t.co/5l1xV3zE\n", "\n", "--------------------------------------------------------\n", - "oh yeah scaredstatue freedom sandy \n", + "yeah scaredstatue freedom sandy \n", "\n", "\n", "😂😂😂 #Sandy Even Got #statueofliberty scare and hiding #NY http://t.co/OzkaQgTm\n", "\n", "--------------------------------------------------------\n", - "sandy even got statueofliberty scare hiding ny \n", + "sandy even got statueofliberty scare hiding new york \n", "\n", "\n", "Sandy just got real #sandy http://t.co/0OdpX9ox\n", @@ -21547,12 +19329,6 @@ "zorgt sandy glimlach \n", "\n", "\n", - "Yikes! #sandy http://t.co/GrIlh56W\n", - "\n", - "--------------------------------------------------------\n", - "yikes sandy \n", - "\n", - "\n", "Hope ppl listened & are prepared for #Sandy. Found this \"Worst American disasters\" photo on #fb.. http://t.co/JTuY3Sgg\n", "\n", "--------------------------------------------------------\n", @@ -21565,28 +19341,16 @@ "statue liberté planque sandy \n", "\n", "\n", - "Ahahahaha 👏👏👏#sandy http://t.co/n6RN7lPv\n", - "\n", - "--------------------------------------------------------\n", - "ahahahaha sandy \n", - "\n", - "\n", - "@BarendTreep: Ook het vrijheidsbeeld neemt haar maatregelen #NYC #Sandy http://t.co/qK1ZwP2M\n", - "\n", - "--------------------------------------------------------\n", - "vrijheidsbeeld neemt maatregelen nyc sandy \n", - "\n", - "\n", "Thank you gmom945 #nyc #frankenstorm #sandy http://t.co/yop4Jn61\n", "\n", "--------------------------------------------------------\n", - "thank gmom945 nyc frankenstorm sandy \n", + "thank gmom945 new york city frankenstorm sandy \n", "\n", "\n", "..The Day After #Sandy …. #paura #NewYork http://t.co/2xhHYJsB\n", "\n", "--------------------------------------------------------\n", - "day sandy paura newyork \n", + "day sandy paura new york \n", "\n", "\n", "La foto d #Sandy más falsa d todos los tweets, el arte d PS http://t.co/tFU8I6op\n", @@ -21610,31 +19374,31 @@ "#Sandy comin for her money!! I told her a gotta checkin and a savings! LOL kevinhart4real http://t.co/kAt7a23D\n", "\n", "--------------------------------------------------------\n", - "sandy comin money told gotta checkin savings lol kevinhart4real \n", + "sandy comin money told gotta checkin savings kevinhart4real \n", "\n", "\n", "Chill yo....chill nigga quit playing! #Sandy lol http://t.co/V5BfcrIp\n", "\n", "--------------------------------------------------------\n", - "chill chill nigga quit playing sandy lol \n", + "chill chill nigga quit playing sandy \n", "\n", "\n", "😱😂😂😂😂😂 #rp ode funny #sandy got Lady Liberty shook lmao http://t.co/fLyK76dJ\n", "\n", "--------------------------------------------------------\n", - "rp ode funny sandy got lady liberty shook lmao \n", + "rp ode funny sandy got lady liberty shook \n", "\n", "\n", "Pray for NY! #Sandy \\n#EmpireStateOfMind http://t.co/uSU4xkjx\n", "\n", "--------------------------------------------------------\n", - "pray ny sandy empirestateofmind \n", + "pray new york sandy empirestateofmind \n", "\n", "\n", "Lmfao #Chill #Sandy http://t.co/jhgkO7eE\n", "\n", "--------------------------------------------------------\n", - "lmfao chill sandy \n", + "chill sandy \n", "\n", "\n", "Probably the coolest picture ever. #sandy #prayinforyaNYC http://t.co/6EtSbJe4\n", @@ -21646,25 +19410,25 @@ "Sur le mur FB d'un New-York \"Thanks to all those asking. We are safe so far!\" #Sandy http://t.co/7gLrs8Zi\n", "\n", "--------------------------------------------------------\n", - "sur mur fb new york thanks asking safe far sandy \n", + "mur fb new york thanks asking safe far sandy \n", "\n", "\n", "I know this hurricane isn't a joke, but these memes are friggin hilarious!!! #sandy #lol http://t.co/4z9naK0O\n", "\n", "--------------------------------------------------------\n", - "know hurricane joke memes friggin hilarious sandy lol \n", + "know hurricane joke memes friggin hilarious sandy \n", "\n", "\n", "I, like Lady Liberty, am not about that hurricane life!!! Lol #sandy #nyc #brooklyn #perfectstorm Wowsers!! http://t.co/N6dwo5H6\n", "\n", "--------------------------------------------------------\n", - "like lady liberty hurricane life lol sandy nyc brooklyn perfectstorm wowsers \n", + "like lady liberty hurricane life sandy new york city brooklyn perfectstorm sers \n", "\n", "\n", "madi_hitt21's photo http://t.co/RTFxSjG2. This just about sums up #Sandy #fb\n", "\n", "--------------------------------------------------------\n", - "madi hitt21 photo http co \n", + "madihitt21 photo http co \n", "\n", "\n", "กรี้ด!!! กลัว #sandy #statueofliberty #hmkt http://t.co/bYiingaZ\n", @@ -21676,7 +19440,7 @@ "Remember who you are simba #sandy #lionking #newyork http://t.co/oaJCOCjc\n", "\n", "--------------------------------------------------------\n", - "remember simba sandy lionking newyork \n", + "remember simba sandy lionking new york \n", "\n", "\n", "Pretty much every popular photo of #Sandy has been fake (see: http://t.co/Gg7uuaWE) but this one must be real: http://t.co/32mOumlp\n", @@ -21688,7 +19452,7 @@ "#regram hope everyone is okay. #sandy http://t.co/ccUFYao7\n", "\n", "--------------------------------------------------------\n", - "regram hope everyone okay sandy \n", + "hope everyone okay sandy \n", "\n", "\n", "#sandy #image #funny http://t.co/I0OEUia2\n", @@ -21697,16 +19461,10 @@ "sandy image funny \n", "\n", "\n", - "#NY #Sandy :S http://t.co/t8wIyLdf\n", - "\n", - "--------------------------------------------------------\n", - "ny sandy \n", - "\n", - "\n", "Lmao #nyc #sandy #nogames #ctfu http://t.co/UIWv7OmN\n", "\n", "--------------------------------------------------------\n", - "lmao nyc sandy nogames ctfu \n", + "new york city sandy nogames ctfu \n", "\n", "\n", "Is it safe yet? #sandy http://t.co/xqg5B50j\n", @@ -21724,13 +19482,13 @@ "Haha (jokes aside, hope people stay safe) #sandy http://t.co/9E0g0D2P\n", "\n", "--------------------------------------------------------\n", - "haha jokes aside hope people stay safe sandy \n", + "jokes aside hope people stay safe sandy \n", "\n", "\n", "Even Statue of Liberty is scared #sandy # lol http://t.co/LTx9lvLc\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scared sandy lol \n", + "even statue liberty scared sandy \n", "\n", "\n", "#Sandy for real - http://t.co/OjfPRkow\n", @@ -21739,16 +19497,10 @@ "sandy real \n", "\n", "\n", - "I'd do that.... #sandy http://t.co/Xr9jJrVU\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "It's getting REAL! #NYC #sandy http://t.co/QXBcf1iq\n", "\n", "--------------------------------------------------------\n", - "getting real nyc sandy \n", + "getting real new york city sandy \n", "\n", "\n", "“@JezminNavarro Las fotos \"truqueadas\" y los \"fotochooo\" en las redes sociales se han burlao de #Sandy http://t.co/qZJviyGy”\n", @@ -21760,7 +19512,7 @@ "Ook het vrijheidsbeeld neemt haar maatregelen #NYC #Sandy http://t.co/aJ1PHpx6\n", "\n", "--------------------------------------------------------\n", - "vrijheidsbeeld neemt maatregelen nyc sandy \n", + "vrijheidsbeeld neemt maatregelen new york city sandy \n", "\n", "\n", "My fav of the #sandy memes http://t.co/TrVpjULT\n", @@ -21790,7 +19542,7 @@ "#nyc #sandy #statualiberty #funny #prayer http://t.co/2V67UJS1\n", "\n", "--------------------------------------------------------\n", - "nyc sandy statualiberty funny prayer \n", + "new york city sandy statualiberty funny prayer \n", "\n", "\n", "Lo que el gobierno no quiere que veas #huracan #Sandy http://t.co/liT8TXD2\n", @@ -21820,13 +19572,13 @@ "Here's the most recent update on #Sandy in #NewYork. http://t.co/IGia6OP0\n", "\n", "--------------------------------------------------------\n", - "recent update sandy newyork \n", + "recent update sandy new york \n", "\n", "\n", "#Sandy \"..E' passato?..é passato?..posso uscire?!?..\" http://t.co/4o8zmnj2\n", "\n", "--------------------------------------------------------\n", - "sandy passato é passato posso uscire \n", + "sandy passato passato posso uscire \n", "\n", "\n", "#sandy #frankenstorm http://t.co/LYuLZzLY\n", @@ -21838,7 +19590,7 @@ "Holy sh*t! Way worse than I thought it would be #sandy: http://t.co/uLdCtXga\n", "\n", "--------------------------------------------------------\n", - "holy sh way worse thought would sandy \n", + "holyt way worse thought would sandy \n", "\n", "\n", "Simply brilliant! Statue of Liberty takes shelter from #Sandy. #pic http://t.co/jdYhYnyY\n", @@ -21850,31 +19602,25 @@ "El llamado fue que todos se resguardarán en NY,dijeron que todos... ante la llegada de #Sandy http://t.co/nSorH535\n", "\n", "--------------------------------------------------------\n", - "llamado resguardarán ny dijeron llegada sandy \n", + "llamado resguardarán new york dijeron llegada sandy \n", "\n", "\n", "Omgah you guys #sandy http://t.co/tM1KFgzE\n", "\n", "--------------------------------------------------------\n", - "omgah guys sandy \n", + "ah guys sandy \n", "\n", "\n", "Lol sandy #sandy #huricanesandy #NYC http://t.co/dAA5cBW3\n", "\n", "--------------------------------------------------------\n", - "lol sandy sandy huricanesandy nyc \n", - "\n", - "\n", - "Seems legit. #sandy http://t.co/3i5bGy5X\n", - "\n", - "--------------------------------------------------------\n", - "seems legit sandy \n", + "sandy sandy huricanesandy new york city \n", "\n", "\n", "What is reeally happening at #NewYork with #Sandy http://t.co/ps12xR4t\n", "\n", "--------------------------------------------------------\n", - "reeally happening newyork sandy \n", + "reeally happening new york sandy \n", "\n", "\n", "Incredible photo from #Sandy (via @joemattjoey) Stay safe everyone! http://t.co/9a6ziNPv\n", @@ -21898,7 +19644,7 @@ "Lolz RT @SgtAndyNorris: @Spann #Sandy http://t.co/yWAq6vF3\n", "\n", "--------------------------------------------------------\n", - "lolz \n", + "z \n", "\n", "\n", "Será que viene #Sandy? http://t.co/Vur1iVtr\n", @@ -21940,7 +19686,7 @@ "Trouvé sur FB, je n'ai pas la source mais je la trouve très réussie ;-) #sandy http://t.co/tOndmSzu\n", "\n", "--------------------------------------------------------\n", - "trouvé sur fb n ai pas source mais trouve très réussie sandy \n", + "trouvé fb source trouve très réussie sandy \n", "\n", "\n", "paatamatchavariani's photo #sandy http://t.co/nsxxvPvs\n", @@ -21952,7 +19698,7 @@ "La mejor foto que he visto de NY #Sandy un poco de humor dentro de la realidad. #NY #EstatueOfLiberty #Liber http://t.co/QyUvjN2S\n", "\n", "--------------------------------------------------------\n", - "mejor foto visto ny sandy humor dentro realidad ny estatueofliberty liber \n", + "mejor foto visto new york sandy humor dentro realidad new york estatueofliberty liber \n", "\n", "\n", "Can we add the mama alien from Aliens? http://t.co/GpkRKh1x #sandy\n", @@ -21964,7 +19710,7 @@ "#repost #sandy #ny http://t.co/XqfYEy81\n", "\n", "--------------------------------------------------------\n", - "repost sandy ny \n", + "repost sandy new york \n", "\n", "\n", "Scared Statue of Liberty #sandy “@jgpmolloy: @LanceUlanoff @inafried This one? http://t.co/l44DRowP”\n", @@ -21976,7 +19722,7 @@ "#sandy aterrorizando #newyorkcity http://t.co/D0MZqncN\n", "\n", "--------------------------------------------------------\n", - "sandy aterrorizando newyorkcity \n", + "sandy aterrorizando new yorkcity \n", "\n", "\n", "Stunning images of #Frankenstorm from New York City #sandy http://t.co/jwxWA2Lg\n", @@ -21997,12 +19743,6 @@ "stormrolled sandy frankenstorm new jersey fema ghostbusters \n", "\n", "\n", - "@doriscastro09 Las fotos \"truqueadas\" y los \"fotochooo\" en las redes sociales se han burlao de #Sandy http://t.co/yZTc9eBe\n", - "\n", - "--------------------------------------------------------\n", - "fotos truqueadas fotochooo redes sociales burlao sandy \n", - "\n", - "\n", "The day after tomorrow? #sandy http://t.co/DcKCJ8ZR via @TwitPic\n", "\n", "--------------------------------------------------------\n", @@ -22012,7 +19752,7 @@ "Lol #Dead #Sandy http://t.co/qndRAzj0\n", "\n", "--------------------------------------------------------\n", - "lol dead sandy \n", + "dead sandy \n", "\n", "\n", "La Statue de la Liberté se sent menacée #Sandy “@aravosis: Wish I knew who created this. It's wonderful. http://t.co/jH0Vp4rZ”\n", @@ -22024,13 +19764,13 @@ "Se esconde de #sandy. (Es muy bueno) #nyc http://t.co/28BAWkli\n", "\n", "--------------------------------------------------------\n", - "esconde sandy bueno nyc \n", + "esconde sandy bueno new york city \n", "\n", "\n", "ياخرطي منخش 😁😝 #sandy #insta #q8 #storm #newyork @ نحشه تايم http://t.co/uNms5hs5\n", "\n", "--------------------------------------------------------\n", - "ياخرطي منخش sandy insta q8 storm newyork نحشه تايم \n", + "ياخرطي منخش sandy insta q8 storm new york نحشه تايم \n", "\n", "\n", "Scared of #Sandy http://t.co/3HnQaQWW\n", @@ -22042,13 +19782,13 @@ "You see when people tek Serious ting n mek joke!! This Killed me though #Sandy #Godzilla #Jaws #ETC http://t.co/el4GgVbW\n", "\n", "--------------------------------------------------------\n", - "see people tek serious ting n mek joke killed though sandy godzilla jaws etc \n", + "see people tek serious ting mek joke killed though sandy godzilla jaws etc \n", "\n", "\n", "Hahahhahahahahahhahahahahahahhahahahahahahhahahahahaha #Sandy #usA #US #America http://t.co/7A0zdOLp\n", "\n", "--------------------------------------------------------\n", - "hahahhahahahahahhahahahahahahhahahahahahahhahahahahaha sandy usa us america \n", + "hahahhahahahahahhahahahahahahhahahahahahahsandy usa us america \n", "\n", "\n", "We're all gonna die!!! #sandy http://t.co/qD9DrvIs\n", @@ -22060,55 +19800,31 @@ "Que dijeron que se resguardaran todos en #NY por #Sandy #Humor http://t.co/VnJFpjws\n", "\n", "--------------------------------------------------------\n", - "dijeron resguardaran ny sandy humor \n", - "\n", - "\n", - "scared of #sandy :( http://t.co/CMEkKXFe\n", - "\n", - "--------------------------------------------------------\n", - "scared sandy \n", + "dijeron resguardaran new york sandy humor \n", "\n", "\n", "http://t.co/mo9NgZvN bhahaha #Sandy #Liberty\n", "\n", "--------------------------------------------------------\n", - "bhahaha sandy liberty \n", - "\n", - "\n", - "#Sandy #Storm 🗽 http://t.co/hD5Bi0iA\n", - "\n", - "--------------------------------------------------------\n", - "sandy storm \n", - "\n", - "\n", - "@_T_SOSA_: Lmfao #Chill #Sandy http://t.co/a5zyNCOd lmao! Hahaaha\n", - "\n", - "--------------------------------------------------------\n", - "lmfao chill sandy lmao hahaaha \n", + "bsandy liberty \n", "\n", "\n", "Même la Statue de la Liberté se met a l'abri !! de #sandy http://t.co/KOz1bLHy\n", "\n", "--------------------------------------------------------\n", - "même statue liberté l abri sandy \n", - "\n", - "\n", - "Mentira! Donde es eso? RT @JorgeNunez_15: It's real #USA #SANDY http://t.co/edhoFk8q\n", - "\n", - "--------------------------------------------------------\n", - "mentira \n", + "statue liberté abri sandy \n", "\n", "\n", "No here’s a pic I can get behind!!!! @slikkere: #sandy http://t.co/KkMNh6OY\n", "\n", "--------------------------------------------------------\n", - "pic get behind sandy \n", + "pic get behind \n", "\n", "\n", "You scare of #Sandy bruh?! Lmfao http://t.co/Svh3CFcO\n", "\n", "--------------------------------------------------------\n", - "scare sandy bruh lmfao \n", + "scare sandy bruh \n", "\n", "\n", "#Sandy scary new York pic with extra alien lights http://t.co/MqsvgeMo\n", @@ -22144,7 +19860,7 @@ "Don't be scuurd!!! Lol!! #Sandy http://t.co/l59kCrA7\n", "\n", "--------------------------------------------------------\n", - "scuurd lol sandy \n", + "scuurd sandy \n", "\n", "\n", "#jaws #statepuffmarshmellowman #ghostbusters #godzilla #sandy http://t.co/YurOlcU1\n", @@ -22174,19 +19890,13 @@ "#helpe #sandy #furacaosandy #desastre #iphone #gott #usa #ny #city http://t.co/BW5Kq2XD\n", "\n", "--------------------------------------------------------\n", - "helpe sandy furacaosandy desastre iphone gott usa ny city \n", + "helpe sandy furacaosandy desastre iphone gott usa new york city \n", "\n", "\n", "“@JamesCruz1: Even Lady Liberty is taking precautions...#Sandy http://t.co/6OFu0m7q”<<YOOOOOOOOOOOOOOOO!!!!!!!!!\n", "\n", "--------------------------------------------------------\n", - "less less yoooooooooooooooo \n", - "\n", - "\n", - "#Sandy 😱☔⚡🌀🌊 http://t.co/ztKLdBwk\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "yoooooooooooooooo \n", "\n", "\n", "Damn it's getting wild in New York #sandy http://t.co/CCAsFuIN\n", @@ -22198,7 +19908,7 @@ "El llamado fue que todos se resguardarán en NY,dijeron que todos...humor ante la llegada de #Sandy http://t.co/acz3nb7x\"\n", "\n", "--------------------------------------------------------\n", - "llamado resguardarán ny dijeron humor llegada sandy \n", + "llamado resguardarán new york dijeron humor llegada sandy \n", "\n", "\n", "Shit got real. #sandy http://t.co/qdI2hzSw\n", @@ -22222,7 +19932,7 @@ "Wenn das ein Fake ist, dann gut gemacht. Ansonsten schwimmt hier ein Hai durch eine Straße in New Jersery. http://t.co/BTLb9Ded #sandy\n", "\n", "--------------------------------------------------------\n", - "wenn das ein fake ist dann gut gemacht ansonsten schwimmt ein hai durch eine straße new jersery sandy \n", + "wenn ein fake ist dann gut gemacht ansonsten schwimmt ein hai durch eine straße new jersery sandy \n", "\n", "\n", "Well that escalated quickly. #sandy http://t.co/NXJzj0nu\n", @@ -22243,12 +19953,6 @@ "esconden sandy foto si real \n", "\n", "\n", - "Hurricane #sandy http://t.co/vjKWiR97\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "No crean todo lo q dice twitter, esta foto es fake y muy hollywoodense http://t.co/H7wMe6Oh #Sandy http://t.co/B2sb2jUa http://t.co/w4qdw38W\n", "\n", "--------------------------------------------------------\n", @@ -22258,13 +19962,7 @@ "#sandy pray for ny yal! (Re-post from @TerenceGARFIELD ) http://t.co/n29ekVph\n", "\n", "--------------------------------------------------------\n", - "sandy pray ny yal post \n", - "\n", - "\n", - "Via @qdeezydotcom #sandy lol http://t.co/MBFot389\n", - "\n", - "--------------------------------------------------------\n", - "via sandy lol \n", + "sandy pray new york yal post \n", "\n", "\n", "Photo de fcoflores http://t.co/zTJ02hk5 #sandy #new york\n", @@ -22276,13 +19974,13 @@ "#lol #sandy #statueofliberty #nyc #nj #followgram #tweegram http://t.co/qYixwyiT\n", "\n", "--------------------------------------------------------\n", - "lol sandy statueofliberty nyc nj followgram tweegram \n", + "sandy statueofliberty new york city new jersey followgram tweegram \n", "\n", "\n", "http://t.co/nyBODWCY\\nNYC be chill-the prez is on the way #Sandy\n", "\n", "--------------------------------------------------------\n", - "nyc chill prez way sandy \n", + "new york city chill prez way sandy \n", "\n", "\n", "Lady Liberty is no dummy... She too, took cover when #Sandy passed yesterday... #SandyNYC http://t.co/tPkx3Zw2\n", @@ -22291,12 +19989,6 @@ "lady liberty dummy took cover sandy passed yesterday sandynyc \n", "\n", "\n", - "Lmfao!! RT @AhmedRomel #Sandy ???? http://t.co/tmLpinNF\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", "DEAR LORD! RT “@ZProphet_MMA: Honest to god pics of NYC #sandy http://t.co/I1XL9Po4”\n", "\n", "--------------------------------------------------------\n", @@ -22318,7 +20010,7 @@ "pretty much nyc right now. #sandy @irabrianmiller's photo http://t.co/qUrufzkN\n", "\n", "--------------------------------------------------------\n", - "pretty much nyc right sandy photo \n", + "pretty much new york city right sandy photo \n", "\n", "\n", "#Sandy... Word to Lady Liberty http://t.co/QMz0dVMc\n", @@ -22336,13 +20028,7 @@ "Guys dasal dasal tayo.... Dahil eto ang totoong nangyayari sa US!!!!! #Sandy http://t.co/E3l38bIF\n", "\n", "--------------------------------------------------------\n", - "guys dasal dasal tayo dahil eto ang totoong nangyayari sa us sandy \n", - "\n", - "\n", - "Lmao!! RT @betamaxradio: Shits getting real #Sandy http://t.co/VbwnlCwE\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", + "guys dasal dasal dahil eto ang totoong nangyayari us sandy \n", "\n", "\n", "#oya #storm #sandy #statue of liberty #nature http://t.co/3FlpLR84\n", @@ -22360,7 +20046,7 @@ "Damn #sandy #statueofliberty #ny ☔🗽🌊 http://t.co/YRYH9b1b\n", "\n", "--------------------------------------------------------\n", - "damn sandy statueofliberty ny \n", + "damn sandy statueofliberty new york \n", "\n", "\n", "But wait....#Sandy you trifling for this! No bueno! http://t.co/jGMsjEMw\n", @@ -22378,13 +20064,13 @@ "Même elle c'est planqué #sandy conner ! http://t.co/IcDYKucE\n", "\n", "--------------------------------------------------------\n", - "même elle c est planqué sandy conner \n", + "planqué sandy conner \n", "\n", "\n", "#Sandy #lmfao #dead http://t.co/aTNCrMpx\n", "\n", "--------------------------------------------------------\n", - "sandy lmfao dead \n", + "sandy dead \n", "\n", "\n", "Ну и жесть в США творится… #Sandy http://t.co/MAI351sE http://t.co/7tjm0jrJ http://t.co/9QnclYiI\n", @@ -22396,7 +20082,7 @@ "Shit just got real courtesy of dmataconis #nyc #sandy #frankenstorm http://t.co/LdfA3THq\n", "\n", "--------------------------------------------------------\n", - "shit got real courtesy dmataconis nyc sandy frankenstorm \n", + "shit got real courtesy dmataconis new york city sandy frankenstorm \n", "\n", "\n", "Statue of Liberty while hurricane #Sandy http://t.co/JnKkkghy\n", @@ -22408,7 +20094,7 @@ "Waiting to sandy in #newyork #manhattan #storm #sandy @ 9th Avenue http://t.co/V4IZ6sdQ\n", "\n", "--------------------------------------------------------\n", - "waiting sandy newyork manhattan storm sandy 9th avenue \n", + "waiting sandy new york manhattan storm sandy avenue \n", "\n", "\n", "@bowleazecove have you seen this? #sandy http://t.co/m5WF3pqa\n", @@ -22432,13 +20118,13 @@ "#sandy #nyc #photoshop http://t.co/XRNS2y3O\n", "\n", "--------------------------------------------------------\n", - "sandy nyc photoshop \n", + "sandy new york city photoshop \n", "\n", "\n", "#SANDY even got my #NewYork #Chick #SHOOK... http://t.co/dTyDQUKV\n", "\n", "--------------------------------------------------------\n", - "sandy even got newyork chick shook \n", + "sandy even got new york chick shook \n", "\n", "\n", "Wish I knew who created this. It's wonderful. #sandy http://t.co/b0q0t5IS http://t.co/TQFDN4ZC via @po_st\n", @@ -22450,7 +20136,7 @@ "Enfin une vraie photo de l'ouragan #Sandy http://t.co/oJa4sj8j #Impressionnant #ShitJustGotReal\n", "\n", "--------------------------------------------------------\n", - "enfin une vraie photo l ouragan sandy impressionnant shitjustgotreal \n", + "enfin vraie photo ouragan sandy impressionnant shitjustgotreal \n", "\n", "\n", "Is that really you #Sandy http://t.co/j0dIstBL\n", @@ -22459,12 +20145,6 @@ "really sandy \n", "\n", "\n", - "LMAO. RT @bairet: Woah. Crazy #Sandy pic, if real. (h/t @ggfletcher) http://t.co/Y5Z3EKJV”\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", - "\n", - "\n", "Things are getting hairy in New York. #sandy\\r http://t.co/06GFj9WL\n", "\n", "--------------------------------------------------------\n", @@ -22480,7 +20160,7 @@ "olha a linda #chatiada com a #sandy #furacaosandy http://t.co/ZpR9UlKE\n", "\n", "--------------------------------------------------------\n", - "olha linda chatiada com sandy furacaosandy \n", + "ola linda chatiada sandy furacaosandy \n", "\n", "\n", "немного юмора. простите уж \"Невероятно! Посмотрите, что твориться у берегов Нью-Йорка\".... #sandy http://t.co/gvZmC4qy (с)\n", @@ -22495,12 +20175,6 @@ "pray east coast sandy \n", "\n", "\n", - "LOL! RT @barrykenny: Famous New Yorker prepares for #Sandy MT @MaxizPad: http://t.co/Q0io8A2K\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", - "\n", - "\n", "¡¡Ya Sandy, deja el relajo que tengo miedo..!! #Huracan #new #york #sandy http://t.co/u0QbYQmt\n", "\n", "--------------------------------------------------------\n", @@ -22510,7 +20184,7 @@ "Jajajaja😂😂 #huracán #sandy pobresita tiene miedo! Lollll 😜 http://t.co/FfcEC3hB\n", "\n", "--------------------------------------------------------\n", - "jajajaja huracán sandy pobresita miedo lollll \n", + "jajajaja huracán sandy pobresita miedo lll \n", "\n", "\n", "Atta girl. #sandy http://t.co/cxOWW9wz\n", @@ -22522,7 +20196,7 @@ "Lmao #weak #sandy #repost http://t.co/CbSNRGi4\n", "\n", "--------------------------------------------------------\n", - "lmao weak sandy repost \n", + "weak sandy repost \n", "\n", "\n", "Hurricane #Sandy actual photo. Incredible. http://t.co/HQlYnUC1\n", @@ -22534,7 +20208,7 @@ "These 2 images/pics going around are FAKE people. Please stop! #Sandy http://t.co/vNg3aQsB http://t.co/C8TEKxF0 via @stilez\n", "\n", "--------------------------------------------------------\n", - "2 images pics going around fake people please stop sandy \n", + "images pics going around fake people please stop sandy \n", "\n", "\n", "Finally a real photo of #sandy all the Bad guys even helping https://t.co/fqjNOFNR\n", @@ -22564,13 +20238,7 @@ "Ella mejor se escondio jajaja #sandy #nyc #frankenstorm #hurricanemode http://t.co/k0f2w02g\n", "\n", "--------------------------------------------------------\n", - "mejor escondio jajaja sandy nyc frankenstorm hurricanemode \n", - "\n", - "\n", - "“@TSNN_Rachel: Hilarious!!!! totally legit too RT @brockmclaughlin Legit. #nophotoshop #sandy http://t.co/XVYNOuae” -> LOL!\n", - "\n", - "--------------------------------------------------------\n", - "hilarious totally legit \n", + "mejor escondio jajaja sandy new york city frankenstorm hurricanemode \n", "\n", "\n", "#apocalypse RT @ThijsWhoa: 2012, believe. http://t.co/CDhI6opE #Sandy\n", @@ -22582,31 +20250,25 @@ "la foto de gustavo_gustavo http://t.co/W1A2kpsn algunas Bromas de #Sandy\n", "\n", "--------------------------------------------------------\n", - "foto gustavo gustavo bromas sandy \n", - "\n", - "\n", - "@LiSuarez79: @DiegoCruz83 Y esta fotito es falsa: Huracan #Sandy http://t.co/cxhZ5DIw si es vdd ya me confirmaron eso :p\n", - "\n", - "--------------------------------------------------------\n", - "fotito falsa huracan sandy si vdd confirmaron p \n", + "foto gustavogustavo bromas sandy \n", "\n", "\n", "Updated pic of hurricane #sandy (via imgur) http://t.co/Yix2HJwS\n", "\n", "--------------------------------------------------------\n", - "updated pic hurricane sandy via imgur \n", + "updated pic hurricane sandy imgur \n", "\n", "\n", "#Sandy tar med seg mye rart til #NewYork - http://t.co/rmTnpPlO\n", "\n", "--------------------------------------------------------\n", - "sandy tar seg mye rart til newyork \n", + "sandy tar seg mye rart til new york \n", "\n", "\n", "Lmao really tho?? #Sandy http://t.co/IqNYTktl\n", "\n", "--------------------------------------------------------\n", - "lmao really tho sandy \n", + "really tho sandy \n", "\n", "\n", "The most intense #Sandy footage I have seen. Damn Mayans. Be careful out there. @TWM71 @JackoBeam @chad_hutchison http://t.co/SiOtICAe\n", @@ -22618,13 +20280,13 @@ "Hasta la estatua le cojió miedo a #sandy #storm #ny http://t.co/gB7UBksi\n", "\n", "--------------------------------------------------------\n", - "estatua cojió miedo sandy storm ny \n", + "estatua cojió miedo sandy storm new york \n", "\n", "\n", "Well If i was her i would run too.. Si yo fuera ella yo también corriera 😂 #sandy #storm #tormenta #funny http://t.co/hYouMq6u\n", "\n", "--------------------------------------------------------\n", - "well would run si corriera sandy storm tormenta funny \n", + "well would run sifuera ellatambién corriera sandy storm tormenta funny \n", "\n", "\n", "Best photo ever! #sandy http://t.co/BJMB4eMa\n", @@ -22645,18 +20307,6 @@ "hilarious \n", "\n", "\n", - "@migzestenzo: Guys dasal dasal tayo.... Dahil eto ang totoong nangyayari sa US!!!!! #Sandy http://t.co/E87Sh5dy\n", - "\n", - "--------------------------------------------------------\n", - "guys dasal dasal tayo dahil eto ang totoong nangyayari sa us sandy \n", - "\n", - "\n", - "Is #Sandy gone yet!? http://t.co/c4CBdlad\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet \n", - "\n", - "\n", "ニューヨークがハリケーンどころじゃなくなってる(笑) by @PSUMatt2005 #sandy http://t.co/YSYFRguv”\n", "\n", "--------------------------------------------------------\n", @@ -22690,13 +20340,13 @@ "Seriously... Im STARVING and nothing is open.. #sandy sandy is a dumb bitch. http://t.co/AfMT15E5\n", "\n", "--------------------------------------------------------\n", - "seriously im starving nothing open sandy sandy dumb bitch \n", + "seriously starving nothing open sandy sandy dumb bitch \n", "\n", "\n", "Que maldadeeeeee.... hahahaaha #furacao #sandy #medo #risos @ Minha Vida, Vida Minha! http://t.co/hqVZUN6w\n", "\n", "--------------------------------------------------------\n", - "maldadeeeeee hahahaaha furacao sandy medo risos minha vida vida minha \n", + "maldadeeeeee hahahaafuracao sandy medo risos minvida vida \n", "\n", "\n", "Noo el huracan #Sandy ya viene !!!! http://t.co/UNNk78vW\n", @@ -22714,25 +20364,19 @@ "Had to repost this, \" Lady Liberty getting ready for Sandy\" #Sandy #NYC @ealisonc619 @YonetteOdessa http://t.co/oEPMvrr4\n", "\n", "--------------------------------------------------------\n", - "repost lady liberty getting ready sandy sandy nyc \n", + "repost lady liberty getting ready sandy sandy new york city \n", "\n", "\n", "She comin'...#Sandy (borrowed from FB) #NY http://t.co/IdwaPvxB\n", "\n", "--------------------------------------------------------\n", - "comin sandy borrowed fb ny \n", + "comin sandy borrowed fb new york \n", "\n", "\n", "#sandy got NY under pressure http://t.co/9DSUIFSn\n", "\n", "--------------------------------------------------------\n", - "sandy got ny pressure \n", - "\n", - "\n", - "Scared of #Sandy [from @MaxizPad] http://t.co/R0YRCIr4\n", - "\n", - "--------------------------------------------------------\n", - "scared sandy \n", + "sandy got new york pressure \n", "\n", "\n", "#ladyliberty #scared #sandy http://t.co/SpCIGHG8\n", @@ -22762,37 +20406,31 @@ "Stay strong America! #nyc #eastcoast #fakephotoday #cruelgod #sandy #toosoon? http://t.co/8XFX8lOf\n", "\n", "--------------------------------------------------------\n", - "stay strong america nyc eastcoast fakephotoday cruelgod sandy toosoon \n", + "stay strong america new york city eastcoast fakephotoday cruelgod sandy toosoon \n", "\n", "\n", "The gate keeper and keymaster hooked up in #nyc tonight http://t.co/w9zTR1Ot #sandy #ghostbusters.\n", "\n", "--------------------------------------------------------\n", - "gate keeper keymaster hooked nyc tonight sandy ghostbusters \n", + "gate keeper keymaster hooked new york city tonight sandy ghostbusters \n", "\n", "\n", "Las últimas imágenes de NYC #sandy http://t.co/HtydcNWs\n", "\n", "--------------------------------------------------------\n", - "últimas imágenes nyc sandy \n", - "\n", - "\n", - "“@missKARIbabyyy: #sandy has everyone scared lmao 👀💦🙈 http://t.co/m6phbDAe” hahaha! 😂\n", - "\n", - "--------------------------------------------------------\n", - "hahaha \n", + "últimas imágenes new york city sandy \n", "\n", "\n", "Ainda a propósito da foto que ontem fez furor nas redes sociais... http://t.co/xXuWwzLW #photoshop #sandy #socialmedia #fail\n", "\n", "--------------------------------------------------------\n", - "ainda propósito da foto ontem fez furor nas redes sociais photoshop sandy socialmedia fail \n", + "ainda propósito foto ontem fez furor redes sociais photoshop sandy socialmedia fail \n", "\n", "\n", "DID THE STORM PASS YET #cnn #storm #sandy #hLN #gma #nyc #instagood #insta #instadm #instagramhub #instapop http://t.co/udlkVife\n", "\n", "--------------------------------------------------------\n", - "storm pass yet cnn storm sandy hln gma nyc instagood insta instadm instagramhub instapop \n", + "storm pass yet cnn storm sandy hln gma new york city instagood insta instadm instagramhub instapop \n", "\n", "\n", "Creacion genial del photoshop RT @marellisv: Esta foto de #Sandy es demasiado brutal. http://t.co/YEK81dAb\n", @@ -22801,16 +20439,10 @@ "creacion genial photoshop \n", "\n", "\n", - "@iansomerhalder: This looks like a movie!Wtf?! http://t.co/N409dlyA #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "looks like movie wtf sandy \n", - "\n", - "\n", "#sandy #miedo #NYC http://t.co/QQAQue8Q\n", "\n", "--------------------------------------------------------\n", - "sandy miedo nyc \n", + "sandy miedo new york city \n", "\n", "\n", "Hide Lady Liberty! #Sandy is a bitch!!! http://t.co/pILrQ82s\n", @@ -22840,31 +20472,25 @@ "صورة قديمة ايضا و تم نشرها على أنها ل #اعصار_ساندي #sandy 2⃣ http://t.co/6OXLyKpE\n", "\n", "--------------------------------------------------------\n", - "صورة قديمة ايضا و تم نشرها أنها ل اعصار ساندي sandy 2 \n", + "صورة قديمة ايضا و تم نشرها أنها ل اعصارساندي sandy \n", "\n", "\n", "#repost #sandy #satueofliberty #nyc#nj #hudson http://t.co/8GAA0U15\n", "\n", "--------------------------------------------------------\n", - "repost sandy satueofliberty nyc nj hudson \n", + "repost sandy satueofliberty nycnj hudson \n", "\n", "\n", "Al parecer el huracan #Sandy ha traido muchas cosas extrañas a las costas de NY http://t.co/uH0h9Kqz\n", "\n", "--------------------------------------------------------\n", - "parecer huracan sandy traido muchas cosas extrañas costas ny \n", - "\n", - "\n", - "New York #newyork #sandy http://t.co/k10HqfO6\n", - "\n", - "--------------------------------------------------------\n", - "new york newyork sandy \n", + "parecer huracan sandytraido muchas cosas extrañas costas new york \n", "\n", "\n", "@martyparty420 haha suddenly a couple storms seem like nothing. #Sandy 's getting everybody worried. http://t.co/V0GTKGXn\n", "\n", "--------------------------------------------------------\n", - "haha suddenly couple storms seem like nothing sandy getting everybody worried \n", + "suddenly couple storms seem like nothing sandy getting everybody worried \n", "\n", "\n", "Вот похоже ещё одна https://t.co/gwOnmrqe #fake #Sandy\n", @@ -22876,7 +20502,7 @@ "SMH #ladyliberty #sandy http://t.co/OB0LfVOt\n", "\n", "--------------------------------------------------------\n", - "smh ladyliberty sandy \n", + "ladyliberty sandy \n", "\n", "\n", "#sandy just got worse http://t.co/dlVSFDBn\n", @@ -22894,7 +20520,7 @@ "#repost #statue #of #liberty #scared #ahh #Man #havent #seen #her #move #since #ghostbusters #nyc #sandy #mu http://t.co/RvCroB36\n", "\n", "--------------------------------------------------------\n", - "repost statue liberty scared ahh havent seen move since ghostbusters nyc sandy mu \n", + "repost statue liberty scared ahh havent seen move since ghostbusters new york city sandy mu \n", "\n", "\n", "Day after yesterday. #sandy #picoftheday #photoshoot #photographer #inspiring #intagram #instahot #intafollo http://t.co/5jD7Yc18\n", @@ -22906,13 +20532,7 @@ "#sandy #sandystorm #us #usa #statueofliberty #funny #lol #instagram http://t.co/y0JcNt5X\n", "\n", "--------------------------------------------------------\n", - "sandy sandystorm us usa statueofliberty funny lol instagram \n", - "\n", - "\n", - "LMAO #Sandy http://t.co/zfY27CSO\n", - "\n", - "--------------------------------------------------------\n", - "lmao sandy \n", + "sandy sandystorm us usa statueofliberty funny instagram \n", "\n", "\n", "Statue of #liberty #Manhattan #Sandy #StormPrep http://t.co/H41dzauK\n", @@ -22930,7 +20550,7 @@ "صورة مزيفة على أنها ل #اعصار_ساندي #sandy http://t.co/AzBcCCHy\n", "\n", "--------------------------------------------------------\n", - "صورة مزيفة أنها ل اعصار ساندي sandy \n", + "صورة مزيفة أنها ل اعصارساندي sandy \n", "\n", "\n", "CAUTION MY NEW YORK FAMILLY AND FRIENDS!! #sandy #Tournado http://t.co/lklV7nSs\n", @@ -22942,7 +20562,7 @@ "Ctfu! #Sandy wasn't playing... S/o NYC hope y'all good http://t.co/PlUJtNT2\n", "\n", "--------------------------------------------------------\n", - "ctfu sandy playing nyc hope good \n", + "ctfu sandy playing new york city hope good \n", "\n", "\n", "A fucking joke! RT @alejandrus97: RT @Elzo_: Tiburones en Nueva Jersey #Sandy http://t.co/SOpR4g3r\n", @@ -22960,7 +20580,7 @@ "Wtf is that a shark #NJ #sandy #flood http://t.co/WsNLtJlU\n", "\n", "--------------------------------------------------------\n", - "wtf shark nj sandy flood \n", + "shark new jersey sandy flood \n", "\n", "\n", "“@rbuenod: Preparativos en #NY ante la llegada de #Sandy http://t.co/DAiEsyRF”/ jajajaja me ennnncantooo!!!!!\n", @@ -22969,12 +20589,6 @@ "jajajaja ennnncantooo \n", "\n", "\n", - "Funny #Sandy http://t.co/YqLRmNAW\n", - "\n", - "--------------------------------------------------------\n", - "funny sandy \n", - "\n", - "\n", "Hiding. #statueofliberty #sandy http://t.co/pOuJKUPH\n", "\n", "--------------------------------------------------------\n", @@ -22984,31 +20598,31 @@ "Et falskt bilde, men kult likevel. #sandy #storm #frihetsgudinnen http://t.co/Rf8I24jv\n", "\n", "--------------------------------------------------------\n", - "et falskt bilde kult likevel sandy storm frihetsgudinnen \n", + "falskt bilde kult likevel sandy storm frihetsgudinnen \n", "\n", "\n", "Totally “@JazziiTheVoice “@TheJustinDuncan Heres the latest amazing,totally not-faked photo of #Sandy approaching NYC: http://t.co/YU5rpQ04”\n", "\n", "--------------------------------------------------------\n", - "totally heres latest amazing totally faked photo sandy approaching nyc \n", + "totally heres latest amazing totally faked photo sandy approaching new york city \n", "\n", "\n", "El llamado fue que todos se resguardarán en NY,dijeron que todos...ante la llegada de #Sandy http://t.co/48uGdliG vía @webcamsdemexico\n", "\n", "--------------------------------------------------------\n", - "llamado resguardarán ny dijeron llegada sandy vía \n", + "llamado resguardarán new york dijeron llegada sandy vía \n", "\n", "\n", "#sandy Sandy kilos de Photoshop. Les ricains peuvent pas avoir une catastrophe comme tout le monde ! https://t.co/9wKlANE4\n", "\n", "--------------------------------------------------------\n", - "sandy sandy kilos photoshop ricains peuvent pas avoir une catastrophe comme tout monde \n", + "sandy sandy kilos photoshop ricains peuvent avoir catastrophe comme tout monde \n", "\n", "\n", "jerome_ds's photo http://t.co/EUi4uXJ9 #sandy\n", "\n", "--------------------------------------------------------\n", - "jerome ds photo sandy \n", + "jeromeds photo sandy \n", "\n", "\n", "#sandy impactante #photo http://t.co/pNaNuoiU\n", @@ -23020,7 +20634,7 @@ "#frankenstorm #sandy #NYC #tormenta #nature #espectaculonatural #depelicula http://t.co/v4Oxotb9\n", "\n", "--------------------------------------------------------\n", - "frankenstorm sandy nyc tormenta nature espectaculonatural depelicula \n", + "frankenstorm sandy new york city tormenta nature espectaculonatural depelicula \n", "\n", "\n", "Famous New Yorker prepares for #Sandy MT @MaxizPad: http://t.co/lwiYlfIY\n", @@ -23032,7 +20646,7 @@ "#StatueOfLiberty #nyc #CodeRed #government #haarp #usa #wtf #lmao #sandy http://t.co/u7B1fBBH\n", "\n", "--------------------------------------------------------\n", - "statueofliberty nyc codered government haarp usa wtf lmao sandy \n", + "statueofliberty new york city codered government haarp usa sandy \n", "\n", "\n", "S/o to the people who were swindled and posted this horrible photoshop photo as if it were real. #sandy http://t.co/DM4eF76D\n", @@ -23041,12 +20655,6 @@ "people swindled posted horrible photoshop photo real sandy \n", "\n", "\n", - "😛😬🌀☔ lol #sandy #nyc 🗽 http://t.co/DpVOkrgt\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy nyc \n", - "\n", - "\n", "Hurricane #Sandy is starting to get a little too real on the East Coast http://t.co/0MVxQbmV\n", "\n", "--------------------------------------------------------\n", @@ -23065,12 +20673,6 @@ "sandy cruzcampo \n", "\n", "\n", - "#sandy got everybody shook! 😂🗽 http://t.co/l2mckRRe\n", - "\n", - "--------------------------------------------------------\n", - "sandy got everybody shook \n", - "\n", - "\n", "Lady Liberty is ready for #Sandy http://t.co/t3EkJpLw\n", "\n", "--------------------------------------------------------\n", @@ -23092,7 +20694,7 @@ "Oh shit #nyc is fucked. #perfectstorm #sandy #wtf #eastcoast http://t.co/Pk7wEzfw\n", "\n", "--------------------------------------------------------\n", - "oh shit nyc fucked perfectstorm sandy wtf eastcoast \n", + "shit new york city fucked perfectstorm sandy eastcoast \n", "\n", "\n", "Mauvais fake. RT @JeanNicGagne Quand un requin se retrouve sur ton terrain. #Sandy https://t.co/e1eP0QY4\n", @@ -23116,19 +20718,19 @@ "Chill out #sandy #sandystrikes #nyc #probs http://t.co/mtiUMLOm\n", "\n", "--------------------------------------------------------\n", - "chill sandy sandystrikes nyc probs \n", + "chill sandy sandystrikes new york city probs \n", "\n", "\n", "#StatueOfLiberty. Tags: #ny #nyc #manhattan #sandy #storm #usa #metro #brooklyn #newyork #newyorkcity #newje http://t.co/WLc0wu2x\n", "\n", "--------------------------------------------------------\n", - "statueofliberty tags ny nyc manhattan sandy storm usa metro brooklyn newyork newyorkcity newje \n", + "statueofliberty tags new york new york city manhattan sandy storm usa metro brooklyn new york new yorkcity newje \n", "\n", "\n", "NYC is hunkering down. #sandy http://t.co/DalShU4i\n", "\n", "--------------------------------------------------------\n", - "nyc hunkering sandy \n", + "new york city hunkering sandy \n", "\n", "\n", "#Sandy Sparue?\\nhttp://t.co/WhGt4I89\n", @@ -23140,7 +20742,7 @@ "LMAO YO“@NishaLibra “@ithl123 Ya'll gotta go!!!! RT: @NishaLibra LMFAO!!! 😂 #Sandy http://t.co/F3AHgZdS””\n", "\n", "--------------------------------------------------------\n", - "lmao gotta go \n", + "gotta go \n", "\n", "\n", "East coast friends, you're in my prayers #sandy http://t.co/Ds6SScCb\n", @@ -23155,22 +20757,10 @@ "vraagje echte journalisten nep sandy \n", "\n", "\n", - "LOL #Sandy http://t.co/vOivNTPb\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy \n", - "\n", - "\n", "SHIT JUST GOT REAL IN NY! #sandy #frankenstorm #fema #scared #real #shook #hudsonriver http://t.co/w4fRNqR7\n", "\n", "--------------------------------------------------------\n", - "shit got real ny sandy frankenstorm fema scared real shook hudsonriver \n", - "\n", - "\n", - "@brusselmans: vraagje aan echte journalisten. Is dit nep? http://t.co/p7p4PUEY #sandy haha!!\n", - "\n", - "--------------------------------------------------------\n", - "vraagje echte journalisten nep sandy haha \n", + "shit got real new york sandy frankenstorm fema scared real shook hudsonriver \n", "\n", "\n", "#sandy looks #angry http://t.co/zoBbCYSY\n", @@ -23182,7 +20772,7 @@ "@carollani Latest pix #Sandy #NYC http://t.co/rrqDFGGL\n", "\n", "--------------------------------------------------------\n", - "latest pix sandy nyc \n", + "latest pix sandy new york city \n", "\n", "\n", "Le désastre du cyclone #sandy https://t.co/5h4TTN2M\n", @@ -23194,7 +20784,7 @@ "LMAO. Best photo yet! Thanks @rocco !!!! #sandy #nyc. Stay safe. If your girl Liberty is taking cover you http://t.co/AaT04OKq\n", "\n", "--------------------------------------------------------\n", - "lmao best photo yet thanks sandy nyc stay safe girl liberty taking cover \n", + "best photo yet thanks sandy new york city stay safe girl liberty taking cover \n", "\n", "\n", "ATTENTION ! La voilà !! #Sandy http://t.co/8muQdNqh\n", @@ -23203,16 +20793,10 @@ "attention voilà sandy \n", "\n", "\n", - "Is she gone? #sandy http://t.co/LRPcCHKj\n", - "\n", - "--------------------------------------------------------\n", - "gone sandy \n", - "\n", - "\n", "#funny #sandy #storm #NYC @ NYC http://t.co/PVpnuG6x\n", "\n", "--------------------------------------------------------\n", - "funny sandy storm nyc nyc \n", + "funny sandy storm new york city new york city \n", "\n", "\n", "real hurricane #Sandy photo http://t.co/qXmPeW36 :) #instacane\n", @@ -23236,13 +20820,13 @@ "Nivaldo, a foto é linda realmente, mas é fake ! http://t.co/U4jmcATS RT \"@Nivaaldo #Sandy, sua linda! http://t.co/iqihJo30\"\n", "\n", "--------------------------------------------------------\n", - "nivaldo foto é linda realmente mas é fake \n", + "nivaldo foto linda realmente fake \n", "\n", "\n", "Lolololol Super legit #Sandy pic http://t.co/QTynaAwf\n", "\n", "--------------------------------------------------------\n", - "lolololol super legit sandy pic \n", + "ool super legit sandy pic \n", "\n", "\n", "Посмотрите, что твориться у берегов Нью-Йорка\".... #sandy http://t.co/7Pj0988t\n", @@ -23254,7 +20838,7 @@ "She knew what to do.. #StatueOfLiberty #NYC #Sandy http://t.co/YteZAQd2\n", "\n", "--------------------------------------------------------\n", - "knew statueofliberty nyc sandy \n", + "knew statueofliberty new york city sandy \n", "\n", "\n", "Picture #sandy yet to be authenticated http://t.co/OV5tYuFj\n", @@ -23266,13 +20850,13 @@ "No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE.. #Sandy | http://t.co/TGBFi8mw Claramente no hay tiburones JAJAJAJA\n", "\n", "--------------------------------------------------------\n", - "sé si foto temporal ny fake impactante sandy claramente tiburones jajajaja \n", + "sé si foto temporal new york fake impactante sandy claramente tiburones jajajaja \n", "\n", "\n", "crazy looking scene in NYC right now... http://t.co/HOdG8zxS #sandy\n", "\n", "--------------------------------------------------------\n", - "crazy looking scene nyc right sandy \n", + "crazy looking scene new york city right sandy \n", "\n", "\n", "hey please tell me after #Sandy Crosses :P yours thankfully--- #LIberty :)) http://t.co/N8xZBLEn\n", @@ -23290,7 +20874,7 @@ "Asi esperan a #sandy en #NewYork http://t.co/zpICAkDJ\n", "\n", "--------------------------------------------------------\n", - "asi esperan sandy newyork \n", + "asi esperan sandy new york \n", "\n", "\n", "Beware the Ides of #Sandy 🗽 http://t.co/tgGv0t9K\n", @@ -23317,22 +20901,16 @@ "bueno nueva york huyen sandy miss liberty \n", "\n", "\n", - "@joluisgarcia: El llamado fue que todos se resguardarán en NY,dijeron que todos...humor ante la llegada de #Sandy http://t.co/z6dgl3it\n", - "\n", - "--------------------------------------------------------\n", - "llamado resguardarán ny dijeron humor llegada sandy \n", - "\n", - "\n", "ya se fue #Sandy? jajajaja #newyork http://t.co/Lh4SBrUM\n", "\n", "--------------------------------------------------------\n", - "sandy jajajaja newyork \n", + "sandy jajajaja new york \n", "\n", "\n", "The Biggest Storm Ever!!!! LOL!!!! #Sandy http://t.co/sK9JlIZw\n", "\n", "--------------------------------------------------------\n", - "biggest storm ever lol sandy \n", + "biggest storm ever sandy \n", "\n", "\n", "I hear great whites come w surges. Pissed I'm missing this epic disaster #sandy http://t.co/5Y9yV3fT\n", @@ -23344,13 +20922,13 @@ "https://t.co/DrvEeGgF et pendant ce temps sur Liberty Island... #sandy\n", "\n", "--------------------------------------------------------\n", - "et pendant ce temps sur liberty island sandy \n", + "pendant temps liberty island sandy \n", "\n", "\n", "Tengo meyo #sandy #scary #ladyliberty http://t.co/7zrmfjWH\n", "\n", "--------------------------------------------------------\n", - "meyo sandy scary ladyliberty \n", + "mesandy scary ladyliberty \n", "\n", "\n", "Que mal!! #sandy #statueofliberty #manhattan http://t.co/CzPMxCoK\n", @@ -23368,7 +20946,7 @@ "Foto stupenda ma terribile di #sandy http://t.co/klYa0lpR\n", "\n", "--------------------------------------------------------\n", - "foto stupenda terribile di sandy \n", + "foto stupenda terribile sandy \n", "\n", "\n", "Even LL ain't messin with #Sandy http://t.co/OnQ8U9zt\n", @@ -23377,12 +20955,6 @@ "even messin sandy \n", "\n", "\n", - "@nacorock: ...Mientras tanto en Nueva York! http://t.co/nKrKDGo5// #Sandy o el dia despues de manana...!!!\n", - "\n", - "--------------------------------------------------------\n", - "mientras nueva york sandy dia despues manana \n", - "\n", - "\n", "Het gaat nu echt los in New York #Sandy http://t.co/zO2AWcXw\n", "\n", "--------------------------------------------------------\n", @@ -23392,25 +20964,25 @@ "Is Sandy gone!? Lol #statueofliberty #sandynyc #sandy2012 #nyc #sandy http://t.co/nFYgVxpo\n", "\n", "--------------------------------------------------------\n", - "sandy gone lol statueofliberty sandynyc sandy2012 nyc sandy \n", + "sandy gone statueofliberty sandynyc sandy2012 new york city sandy \n", "\n", "\n", "OMG Sandy is coming.. #Sandy #NYC #statueofliberty http://t.co/ewBb4oER\n", "\n", "--------------------------------------------------------\n", - "omg sandy coming sandy nyc statueofliberty \n", + "sandy coming sandy new york city statueofliberty \n", "\n", "\n", "To all my friends in NYC. Be safe over there. #sandy @ new york city http://t.co/OEhRYXoo\n", "\n", "--------------------------------------------------------\n", - "friends nyc safe sandy new york city \n", + "friends new york city safe sandy new york city \n", "\n", "\n", "Fake storm pics are flooding the Internet. And some people really believe it's true....#sandy #superstorm #n http://t.co/BQ6kaBkH\n", "\n", "--------------------------------------------------------\n", - "fake storm pics flooding internet people really believe true sandy superstorm n \n", + "fake storm pics flooding internet people really believe true sandy superstorm \n", "\n", "\n", "Another shot from New York just before #Sandy hit\\n@ChattertonChris @rossharper http://t.co/0LkHqWOv\n", @@ -23428,7 +21000,7 @@ "Even Lady Liberty not messin with Sandy!!! #nyc #sandy #repost http://t.co/kWhMt4We\n", "\n", "--------------------------------------------------------\n", - "even lady liberty messin sandy nyc sandy repost \n", + "even lady liberty messin sandy new york city sandy repost \n", "\n", "\n", "Is it gone yet? #sandy http://t.co/HwTO4bnc\n", @@ -23452,25 +21024,19 @@ "LMAO niggas gotta chill 😂😂 RT @GillesM_: That bitch #Sandy just took off with my robe!! #lmao #epic #funny #storm http://t.co/AWf93Yyc\n", "\n", "--------------------------------------------------------\n", - "lmao niggas gotta chill \n", + "niggas gotta chill \n", "\n", "\n", "y es que ella estaba preparada para lo peor #estatuadelalibertad #ny #sandy http://t.co/lmewW73a\n", "\n", "--------------------------------------------------------\n", - "preparada peor estatuadelalibertad ny sandy \n", + "preparada peor estatuadelalibertad new york sandy \n", "\n", "\n", "hahahaha #NewYork #Sandy #Scared #Instacool http://t.co/gXjrytUv\n", "\n", "--------------------------------------------------------\n", - "hahahaha newyork sandy scared instacool \n", - "\n", - "\n", - "#Sandy gone yet? http://t.co/7khqM2Xt\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet \n", + "new york sandy scared instacool \n", "\n", "\n", "#rp 😂😭😂😭 even 🗽 not playing with #Sandy http://t.co/ul4Gqxgn\n", @@ -23482,7 +21048,7 @@ "Así esta la ciudad de NY en víspera de #Sandy🗽 http://t.co/q72NMG1E\n", "\n", "--------------------------------------------------------\n", - "así ciudad ny víspera sandy \n", + "así ciudad new york víspera sandy \n", "\n", "\n", "Minutos antes de #sandy http://t.co/r0AcocoR\n", @@ -23497,18 +21063,6 @@ "escapefromny sandy \n", "\n", "\n", - "HAHAHAHAHA #ny #sandy http://t.co/Iw33xXcE\n", - "\n", - "--------------------------------------------------------\n", - "hahahahaha ny sandy \n", - "\n", - "\n", - "Lololol #sandy http://t.co/eGcSLavj\n", - "\n", - "--------------------------------------------------------\n", - "lololol sandy \n", - "\n", - "\n", "Go home trampoline. You are drunk. #SANDY http://t.co/Ame7BjZU - hahahahah\n", "\n", "--------------------------------------------------------\n", @@ -23524,25 +21078,19 @@ "http://t.co/C6LMb4XN galera olhem as últimas notícias de ny !!!!!!! #sandy\n", "\n", "--------------------------------------------------------\n", - "galera olhem últimas notícias ny sandy \n", + "galera olhem últimas notícias new york sandy \n", "\n", "\n", "Marica el último... jajaja #Sandy #NYC http://t.co/EDSh5q4c\n", "\n", "--------------------------------------------------------\n", - "marica último jajaja sandy nyc \n", - "\n", - "\n", - "@noseasmamador: Las imágenes pasadas eran falsas. Esta es la buena #Sandy #NY http://t.co/axzMZtf4 @mikeltru\n", - "\n", - "--------------------------------------------------------\n", - "imágenes pasadas falsas buena sandy ny \n", + "marica último jajaja sandy new york city \n", "\n", "\n", "Las imágenes pasadas eran falsas. Esta es la buena #Sandy #NY http://t.co/OAuq5gqD\n", "\n", "--------------------------------------------------------\n", - "imágenes pasadas falsas buena sandy ny \n", + "imágenes pasadas falsas buena sandy new york \n", "\n", "\n", "Al veel gezien vandaag maar wel leuk! Het vrijheidsbeeld verstopt zich voor de naderende storm #Sandy http://t.co/msb90foJ\n", @@ -23596,7 +21144,7 @@ "Retour à la normale #sandy #newyork http://t.co/JHm5zTSw\n", "\n", "--------------------------------------------------------\n", - "retour à normale sandy newyork \n", + "retourla normale sandy new york \n", "\n", "\n", "Some New Yorkers \\n#Sandy http://t.co/FE6l1MVh\n", @@ -23608,7 +21156,7 @@ "10 fake #sandy photos that went viral http://t.co/7yAjGECR http://t.co/6f5Pd7OG\n", "\n", "--------------------------------------------------------\n", - "10 fake sandy photos went viral \n", + "0 fake sandy photos went viral \n", "\n", "\n", "It just got real people. 😂😂😂. \\n#Sandy http://t.co/0aqym2VG\n", @@ -23644,19 +21192,13 @@ "Boy oh boy, am I glad I'm not in #NYC right now. #Sandy ain't kidding around. \\nhttp://t.co/p8Z517sE\n", "\n", "--------------------------------------------------------\n", - "boy oh boy glad nyc right sandy kidding around \n", + "boyboy glad new york city right sandy kidding around \n", "\n", "\n", "Strange things happening in New York City .... #sandy #NYC http://t.co/UI6Yjfee via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "strange things happening new york city sandy nyc \n", - "\n", - "\n", - "Strange things happening in New York City .... #sandy #NYC http://t.co/KZOIAkQ0\n", - "\n", - "--------------------------------------------------------\n", - "strange things happening new york city sandy nyc \n", + "strange things happening new york city sandy new york city \n", "\n", "\n", "Pic of Statue Of Liberty before Hurricane #Sandy hit http://t.co/TW3mVemv\n", @@ -23668,25 +21210,19 @@ "Honest to god pics of NYC #sandy http://t.co/sekRA1Xt\n", "\n", "--------------------------------------------------------\n", - "honest god pics nyc sandy \n", + "honest god pics new york city sandy \n", "\n", "\n", "#SANDY #Chillout #LOL @ MIAMI BEACH 13.1 http://t.co/g1W8sC7I\n", "\n", "--------------------------------------------------------\n", - "sandy chillout lol miami beach 13 1 \n", + "sandy chillout miami beach3 \n", "\n", "\n", "Er circuleren veel fake foto's rond de orkaan in NY, maar deze schijnt echt te zijn #sandy http://t.co/IFHxYMpa\n", "\n", "--------------------------------------------------------\n", - "circuleren fake foto rond orkaan ny schijnt echt sandy \n", - "\n", - "\n", - "@selemenev: Америка ждет #sandy http://t.co/Xvk4y44I\n", - "\n", - "--------------------------------------------------------\n", - "америка ждет sandy \n", + "circuleren fake foto rond orkaan new york schijnt echt sandy \n", "\n", "\n", "Stay safe NYers it's rough out there. #sandy http://t.co/Yo3qcZnJ\n", @@ -23698,7 +21234,7 @@ "Shark swimming in the streets of Brigantine?? #factorfake #hurricanesandy http://t.co/sM4M9nSa\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine factorfake hurricanesandy \n", + "shark swimming streets brigantine factorfake hurricane sandy \n", "\n", "\n", "Endiito RT @Moluskein La estatua no encontró refugio en lo que pasaba la tormenta #sandy http://t.co/8JhPCJvK\n", @@ -23752,13 +21288,13 @@ "Chill the fuck out Sandy lmfaoooo 😂😂😂😂😂 http://t.co/dpl9Y1gN\n", "\n", "--------------------------------------------------------\n", - "chill fuck sandy lmfaoooo \n", + "chill fuck sandy \n", "\n", "\n", "@robsarj Not just the avg person being duped. @tv6tnt in T&T sent out this pic claiming its Sandy over NY. #lazyasses http://t.co/Z12zRKj9\n", "\n", "--------------------------------------------------------\n", - "avg person duped tandt sent pic claiming sandy ny lazyasses \n", + "avg person duped tandt sent pic claiming sandy new york lazyasses \n", "\n", "\n", "And the mighty one hides from Sandy... http://t.co/lpMAFhqU\n", @@ -23776,7 +21312,7 @@ "Molly.......You in Danger Gurl - Ghost.......Sandy panties are hot and bothered......NY get ready....... W http://t.co/rHgP6oZ3\n", "\n", "--------------------------------------------------------\n", - "molly danger gurl ghost sandy panties hot bothered ny get ready w \n", + "molly danger gurl ghost sandy panties hot bothered new york get ready w \n", "\n", "\n", "https://t.co/yhhNlW4I\\n\\nAmazing scenes in the US in anticipation of storm Sandy!\n", @@ -23794,13 +21330,13 @@ "Y'all play too much haha RT: @LowKeyUHTN: Lmao Sandy got the Tri State so shook 😂😂😂😂😂 http://t.co/26CYT1pA\n", "\n", "--------------------------------------------------------\n", - "play much haha \n", + "play much \n", "\n", "\n", "This is the current situation in NYC right now #nyc #hurricane #wellshit http://t.co/QwPr3vIJ\n", "\n", "--------------------------------------------------------\n", - "current situation nyc right nyc hurricane wellshit \n", + "current situation new york city right new york city hurricane wellshit \n", "\n", "\n", "Sandy got her on the run http://t.co/sEt4nM91\n", @@ -23848,7 +21384,7 @@ "Pica van TotaalVernietiging Des Doods in NY door Sandy http://t.co/GXOXgVMP (zou misschien fake kunnen zijn)\n", "\n", "--------------------------------------------------------\n", - "pica totaalvernietiging des doods ny sandy misschien fake \n", + "pica totaalvernietiging doods new york sandy misschien fake \n", "\n", "\n", "This is honestly the most insane pic of Hurrican Sandy. Not photoshopped! http://t.co/Nlox2cTr\n", @@ -23860,19 +21396,19 @@ "Sandy= 2012 (the movie) http://t.co/RdyXc533\n", "\n", "--------------------------------------------------------\n", - "sandy 2012 movie \n", + "sandy2 movie \n", "\n", "\n", "lolol RT @LowKeyUHTN: Lmao Sandy got the Tri State so shook 😂😂😂😂😂 http://t.co/kc7gv3Hn\n", "\n", "--------------------------------------------------------\n", - "lolol \n", + "ol \n", "\n", "\n", "Definitely wouldn't want to be in NYC and other 'Sandy' affected places right now. http://t.co/BOMJffki\n", "\n", "--------------------------------------------------------\n", - "definitely nyc sandy affected places right \n", + "definitely new york city sandy affected places right \n", "\n", "\n", "Mein persönlich Favorit in Sachen Sandy-Bilder http://t.co/ssWT09ly\n", @@ -23884,19 +21420,19 @@ "Hurricane Sandy update: This just in, the first pics of whats going on in NYC right now... #gadzooks http://t.co/orjYA632\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy update first pics whats going nyc right gadzooks \n", + "hurricane sandy update first pics whats going new york city right gadzooks \n", "\n", "\n", "Sandy & The Satue Playing Hide n see ha ha 😂😂😂😂😂😂😂 http://t.co/zqndNFu4\n", "\n", "--------------------------------------------------------\n", - "sandy satue playing hide n see \n", + "sandy satue playing hide see \n", "\n", "\n", "This is a live shot of Sandy in NYC right now right?... http://t.co/7bmFyeQW\n", "\n", "--------------------------------------------------------\n", - "live shot sandy nyc right right \n", + "live shot sandy new york city right right \n", "\n", "\n", "http://t.co/V6G3dARH Couldn't help but share this pic. Hope US isn't correctly depicted as in this pic in the face of Hurricane Sandy ;-)\n", @@ -23908,13 +21444,13 @@ "Latest shots of Sandy in NYC http://t.co/iefADDFF (thanks @reddit)\n", "\n", "--------------------------------------------------------\n", - "latest shots sandy nyc thanks \n", + "latest shots sandy new york city thanks \n", "\n", "\n", "Amazing picture as brunt of Sandy arrives in NYC RT @bpmccauley: http://t.co/QTFH8iJf\n", "\n", "--------------------------------------------------------\n", - "amazing picture brunt sandy arrives nyc \n", + "amazing picture brunt sandy arrives new york city \n", "\n", "\n", "Thoughts and prayers are with those affected by Sandy. The sun will come out again! http://t.co/oLIrnkOs\n", @@ -23926,103 +21462,103 @@ "#Newyork #hurricane #hurricanesandy #sandy #storm #underwater #world #water #rain #flood #flooding #Manhatta http://t.co/qj8ZP4vn\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane hurricanesandy sandy storm underwater world water rain flood flooding manhatta \n", + "new york hurricane hurricane sandy sandy storm underwater world water rain flood flooding manhatta \n", "\n", "\n", "#Sandy approche... http://t.co/yxhVXAhh #NewYork #HurricaneSandy #StatueOfLiberty\n", "\n", "--------------------------------------------------------\n", - "sandy approche newyork hurricanesandy statueofliberty \n", + "sandy approche new york hurricane sandy statueofliberty \n", "\n", "\n", "Hurricane Sandy #Fake #LooksLegit #HurricaneSandy #Sandy #NewYork http://t.co/HJ1Fte9l\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy fake lookslegit hurricanesandy sandy newyork \n", + "hurricane sandy fake lookslegit hurricane sandy sandy new york \n", "\n", "\n", "#NEDUNO #NYC #NewYork #Sandy #HurricaneSandy http://t.co/4ivOUZKk\n", "\n", "--------------------------------------------------------\n", - "neduno nyc newyork sandy hurricanesandy \n", + "neduno new york city new york sandy hurricane sandy \n", "\n", "\n", "Sandy got everyone scared! #NYC #NewYork #StatueOfLiberty #HurricaneSandy #Sandy http://t.co/zgBa0kcP\n", "\n", "--------------------------------------------------------\n", - "sandy got everyone scared nyc newyork statueofliberty hurricanesandy sandy \n", + "sandy got everyone scared new york city new york statueofliberty hurricane sandy sandy \n", "\n", "\n", "I think this might be photoshopped. 😋\\n#ny #hurricanesandy #hurricane #storm #wtf #newyork #photoshop #toosoo http://t.co/jxbbj7Ex\n", "\n", "--------------------------------------------------------\n", - "think might photoshopped ny hurricanesandy hurricane storm wtf newyork photoshop toosoo \n", + "think might photoshopped new york hurricane sandy hurricane storm new york photoshop toosoo \n", "\n", "\n", "Seems legit?? #hurricane #hurricanesandy #wind #usa #ladyliberty #statueofliberty #picoftheday #nyc #newyork http://t.co/FZjoXOrd\n", "\n", "--------------------------------------------------------\n", - "seems legit hurricane hurricanesandy wind usa ladyliberty statueofliberty picoftheday nyc newyork \n", + "seems legit hurricane hurricane sandy wind usa ladyliberty statueofliberty picoftheday new york city new york \n", "\n", "\n", "Sandy hitting New York. #hurricane #sandy #pets #cats #nofilter #newyork #hurricanesandy http://t.co/RAlyeDSh\n", "\n", "--------------------------------------------------------\n", - "sandy hitting new york hurricane sandy pets cats nofilter newyork hurricanesandy \n", + "sandy hitting new york hurricane sandy pets cats nofilter new york hurricane sandy \n", "\n", "\n", "New York is really gettin fucked. #newyork #statueofliberty #storm #hurricane #hurricanesandy #jaws #aliens http://t.co/NGvyU2pO\n", "\n", "--------------------------------------------------------\n", - "new york really gettin fucked newyork statueofliberty storm hurricane hurricanesandy jaws aliens \n", + "new york really gettin fucked new york statueofliberty storm hurricane hurricane sandy jaws aliens \n", "\n", "\n", "It's amazing what ppl can do with computers...lol #hurricanesandy #newyork #photo #funny #ny #sandy #scared http://t.co/Dx5geToy\n", "\n", "--------------------------------------------------------\n", - "amazing ppl computers lol hurricanesandy newyork photo funny ny sandy scared \n", + "amazing ppl computers hurricane sandy new york photo funny new york sandy scared \n", "\n", "\n", "#hurricanesandy got people all scared #lol #statueofliberty #hurricanesandy #hurricane #sandy #newyork http://t.co/tahMv2DV\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy got people scared lol statueofliberty hurricanesandy hurricane sandy newyork \n", + "hurricane sandy got people scared statueofliberty hurricane sandy hurricane sandy new york \n", "\n", "\n", "Meanwhile, in New York... #hurricane #sandy #hurricanesandy #lmao #mayans #lol #haha #newyork #godzirra #201 http://t.co/kBDURfMM\n", "\n", "--------------------------------------------------------\n", - "meanwhile new york hurricane sandy hurricanesandy lmao mayans lol haha newyork godzirra 201 \n", + "meanwhile new york hurricane sandy hurricane sandy mayans new york godzirra01 \n", "\n", "\n", "Chill Sandy !! 🍁🍂🌊🗽\\n#libertystatue #statues #NYC #newyork #ny #sandy #hurricanesandy #crazy #mothernature #n http://t.co/V3D1s0yk\n", "\n", "--------------------------------------------------------\n", - "chill sandy libertystatue statues nyc newyork ny sandy hurricanesandy crazy mothernature n \n", + "chill sandy libertystatue statues new york city new york new york sandy hurricane sandy crazy mothernature \n", "\n", "\n", "The latest image from NYC #Sandy #hurricane #hurricanesandy #newyork #NYC http://t.co/LeZzwmyK\n", "\n", "--------------------------------------------------------\n", - "latest image nyc sandy hurricane hurricanesandy newyork nyc \n", + "latest image new york city sandy hurricane hurricane sandy new york new york city \n", "\n", "\n", "Hahaha!! #sandy #hurricanesandy #statueofliberty #newyork http://t.co/Xj0Sfj8T\n", "\n", "--------------------------------------------------------\n", - "hahaha sandy hurricanesandy statueofliberty newyork \n", + "sandy hurricane sandy statueofliberty new york \n", "\n", "\n", "Ook het vrijheidsbeeld in #newyork is klaar voor #sandy http://t.co/nmkqk4Mt\n", "\n", "--------------------------------------------------------\n", - "vrijheidsbeeld newyork klaar sandy \n", + "vrijheidsbeeld new york klaar sandy \n", "\n", "\n", "LOL, ook vrijheidsbeeld is er klaar voor: RT @maralgrunn: Ondertussen in #newyork #hurricane #sandy http://t.co/tyrtOeuh\n", "\n", "--------------------------------------------------------\n", - "lol vrijheidsbeeld klaar \n", + "vrijheidsbeeld klaar \n", "\n", "\n", "Fake pic RT @Rhodes411: Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/UfF162ZY\n", @@ -24039,8 +21575,14 @@ "\n", "*passes out* \"@Moe_Town23: Oh fuck no! RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/ekCTT51a\"\n", "\n", - "--------------------------------------------------------\n", - "passes oh fuck \n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "passes \n", "\n", "\n", "😳 HOLY SHIT SANDY IS GETTING SERIOUS! 😭 #Yomama http://t.co/bJDVhTcr\n", @@ -24049,34 +21591,16 @@ "holy shit sandy getting serious yomama \n", "\n", "\n", - "Lmfao smh RT @lipstickqueenx: nah RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/8TSXKarW\n", - "\n", - "--------------------------------------------------------\n", - "lmfao smh \n", - "\n", - "\n", - "@FUNNYPICS: Hurricane Sandy is getting real http://t.co/QwBmzMrU. @Oakley_xo driving beside a shark In NY\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real driving beside shark ny \n", - "\n", - "\n", "Alright hurricane sandy is just getting out of hand #hurricanesandy #nosnow #justrain http://t.co/hsi6WLLg\n", "\n", "--------------------------------------------------------\n", - "alright hurricane sandy getting hand hurricanesandy nosnow justrain \n", - "\n", - "\n", - "Nah RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/kjnCoxIU\n", - "\n", - "--------------------------------------------------------\n", - "nah \n", + "alright hurricane sandy getting hand hurricane sandy nosnow justrain \n", "\n", "\n", "Ohh nahhh lol @FUNNYPICS: Hurricane Sandy is getting real http://t.co/B3natlsh\n", "\n", "--------------------------------------------------------\n", - "ohh nahhh lol hurricane sandy getting real \n", + "nahhh \n", "\n", "\n", "This is a picture I took of hurricane sandy. It surely is getting crazy. http://t.co/EGDimae3\n", @@ -24085,22 +21609,10 @@ "picture took hurricane sandy surely getting crazy \n", "\n", "\n", - "@FUNNYPICS: Hurricane Sandy is getting real http://t.co/9Ovruo0R what di fuck\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real di fuck \n", - "\n", - "\n", - "@FUNNYPICS: Hurricane Sandy is getting real http://t.co/Yxabf4SV this could be the sweetest picture ever\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real could sweetest picture ever \n", - "\n", - "\n", "This old ass pic lol RT @_LiteSKViixen: 👀👀never lol RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/vii64ycO\n", "\n", "--------------------------------------------------------\n", - "old ass pic lol \n", + "old ass pic \n", "\n", "\n", "“@skorty_spice: REAL HURRICANE SANDY PICTURE! http://t.co/dj53ah7E” Ok, this is funny.\n", @@ -24112,7 +21624,7 @@ "Un poco de humor pa' los que la están pasando \"prieta\" alla en #NYC... #HurricaneSandy #Sandy Un abrazo! http://t.co/orEcFGGK\n", "\n", "--------------------------------------------------------\n", - "humor pa pasando prieta nyc hurricanesandy sandy abrazo \n", + "humor pa pasando prieta new york city hurricane sandy sandy abrazo \n", "\n", "\n", "Lady Liberty is like fuck this I'm scared of Sandy too!!! http://t.co/dGyAKYXl\n", @@ -24121,16 +21633,10 @@ "lady liberty like fuck scared sandy \n", "\n", "\n", - "Even the Statue of Liberty is scared of Sandy!! http://t.co/LedkRC0T\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared sandy \n", - "\n", - "\n", "#sandy omg, look what happened to the Statue of Liberty in this hurricane!!! http://t.co/Xmf1j66Z\n", "\n", "--------------------------------------------------------\n", - "sandy omg look happened statue liberty hurricane \n", + "sandy look happened statue liberty hurricane \n", "\n", "\n", "The Statue of Liberty after Hurricane Sandy! xD http://t.co/IeM5DNKg\n", @@ -24142,13 +21648,13 @@ "Lmfao even the Statue of Liberty is afraid of Sandy! 💨💦☔🌀🗽 #statueofliberty #scared #sandy #hurricane #repos http://t.co/Nh5aGgE0\n", "\n", "--------------------------------------------------------\n", - "lmfao even statue liberty afraid sandy statueofliberty scared sandy hurricane repos \n", + "even statue liberty afraid sandy statueofliberty scared sandy hurricane repos \n", "\n", "\n", "They Say The Hurricane Sandy Was So Bad In Ny That Even The Statue of Liberty Took Cover!!! LoL!! http://t.co/3fcs2Ywo\n", "\n", "--------------------------------------------------------\n", - "say hurricane sandy bad ny even statue liberty took cover lol \n", + "say hurricane sandy bad new york even statue liberty took cover \n", "\n", "\n", "😂😂😂 Statue of Liberty scared of Sandy http://t.co/yRDi5tj2\n", @@ -24160,55 +21666,55 @@ "Damn Sandy you even got the statue of liberty hiding. Lol \\n#HurricaneSandy http://t.co/iXacB0eP\n", "\n", "--------------------------------------------------------\n", - "damn sandy even got statue liberty hiding lol hurricanesandy \n", + "damn sandy even got statue liberty hiding hurricane sandy \n", "\n", "\n", "Even the Statue of Liberty is hiding from #HurricaneSandy lol! #hideyokidshideyowife http://t.co/xXyE3WU0\n", "\n", "--------------------------------------------------------\n", - "even statue liberty hiding hurricanesandy lol hideyokidshideyowife \n", + "even statue liberty hiding hurricane sandy hideyokidshideyowife \n", "\n", "\n", "#lmao the Statue of Liberty is hiding from #Sandy http://t.co/my8NLqAk\n", "\n", "--------------------------------------------------------\n", - "lmao statue liberty hiding sandy \n", + "statue liberty hiding sandy \n", "\n", "\n", "A real-time shot of the harbor as #HurricaneSandy is bearing down. Nature can be so powe @ Statue of Liberty http://t.co/ycJuK53Z\n", "\n", "--------------------------------------------------------\n", - "real time shot harbor hurricanesandy bearing nature powe statue liberty \n", + "real time shot harbor hurricane sandy bearing nature powe statue liberty \n", "\n", "\n", "I see Statue of Liberty is fully aware of #Shady! #Hurricane #Weather #LMFAO http://t.co/P79wFSkK\n", "\n", "--------------------------------------------------------\n", - "see statue liberty fully aware shady hurricane weather lmfao \n", + "see statue liberty fully aware shady hurricane weather \n", "\n", "\n", "hahahahahahahahha RT @TheBlackoutBlog OMG! Check out this totally real photo of the Statue of Liberty! #sandy http://t.co/FIbENwsK\n", "\n", "--------------------------------------------------------\n", - "hahahahahahahahha \n", + "hahahahahahahah \n", "\n", "\n", "“@DanManning14 “@Bozzy18 Live photo at the Statue of Liberty!!! #Sandy #HurricaneSandy http://t.co/UcG2TCZf””\n", "\n", "--------------------------------------------------------\n", - "live photo statue liberty sandy hurricanesandy \n", + "live photo statue liberty sandy hurricane sandy \n", "\n", "\n", "We might have to follow in the Statue of Liberty's footsteps #HurricaneSandy #Hidingout http://t.co/LgOLnyE1\n", "\n", "--------------------------------------------------------\n", - "might follow statue liberty footsteps hurricanesandy hidingout \n", + "might follow statue liberty footsteps hurricane sandy hidingout \n", "\n", "\n", "haha! dope. the real sandy vs statue of liberty pic RT @El_Adan: This is not a fake! http://t.co/THPxx3Ov\n", "\n", "--------------------------------------------------------\n", - "haha dope real sandy vs statue liberty pic \n", + "dope real sandy versus statue liberty pic \n", "\n", "\n", "The statue of liberty must be scared of #hurricane sandy too http://t.co/mZlMLSGT\n", @@ -24220,19 +21726,13 @@ "Hurricane Sandy got The Statue of Liberty hiding, lol. http://t.co/LVRYJSfX\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got statue liberty hiding lol \n", - "\n", - "\n", - "The Statue of Liberty was scared of Sandy http://t.co/xQjg0zJb\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty scared sandy \n", + "hurricane sandy got statue liberty hiding \n", "\n", "\n", "Damn sandy got the Statue of Liberty scared lmao http://t.co/9owmPLu7\n", "\n", "--------------------------------------------------------\n", - "damn sandy got statue liberty scared lmao \n", + "damn sandy got statue liberty scared \n", "\n", "\n", "Statue of Liberty is waiting for \"Sandy\" / Статуя Свободы в ожидании урагана \"Сэнди\" :)) http://t.co/1xLfw2qU\n", @@ -24247,12 +21747,6 @@ "wena wena \n", "\n", "\n", - "Even the statue of Liberty is scared of #Sandy lol http://t.co/MfqOgVW2\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared sandy lol \n", - "\n", - "\n", "The news media even has the Statute of Liberty scared of Hurricane Sandy http://t.co/Nrw171Qr\n", "\n", "--------------------------------------------------------\n", @@ -24262,7 +21756,7 @@ "That bitch #Sandy scared da shit out the Statue of Liberty lol 🌀🌊🗽 http://t.co/lVbZ5mVj\n", "\n", "--------------------------------------------------------\n", - "bitch sandy scared da shit statue liberty lol \n", + "bitch sandy scared shit statue liberty \n", "\n", "\n", "@KetyDC Even the Statue of Liberty is afraid for Sandy. https://t.co/KVreckzM\n", @@ -24280,31 +21774,25 @@ "HURRICANE SANDY#DESTROYIN THE NOTHEAST# stair of liberty scurred http://t.co/S9Hptnq7\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy destroyin notheast stair liberty scurred \n", + "hurricane sandydestroyin notheast stair liberty scurred \n", "\n", "\n", "What the statue of liberty said. #sandy #hurricane #chill #newyork #eastcoast http://t.co/bm3HKB6w\n", "\n", "--------------------------------------------------------\n", - "statue liberty said sandy hurricane chill newyork eastcoast \n", + "statue liberty said sandy hurricane chill new york eastcoast \n", "\n", "\n", "Lol ahaaa this is dumb, the Statue of Liberty is hiding from Sandy the Hurricane lol 😂😂 http://t.co/wFkKQeJT\n", "\n", "--------------------------------------------------------\n", - "lol ahaaa dumb statue liberty hiding sandy hurricane lol \n", + "ahaaa dumb statue liberty hiding sandy hurricane \n", "\n", "\n", "Even Lady Liberty is scared of Sandy LOL! http://t.co/OaFPBf60\n", "\n", "--------------------------------------------------------\n", - "even lady liberty scared sandy lol \n", - "\n", - "\n", - "Even the statue of liberty is scared of Sandy....Lmao http://t.co/ZdSN89bV\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared sandy lmao \n", + "even lady liberty scared sandy \n", "\n", "\n", "“@ashadihopper: The Statue of Liberty prepares for Hurricane Sandy http://t.co/OTDH1XD6” #gold #sandy\n", @@ -24319,46 +21807,28 @@ "repost breaking news statue liberty taking cover storm sandy hilarious \n", "\n", "\n", - "The Statue of Liberty is scared of Sandy !! http://t.co/aLNZMJ0e\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty scared sandy \n", - "\n", - "\n", "Even the Statue of Liberty is scared #HurricaneSandy http://t.co/CJHcL6bM\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scared hurricanesandy \n", - "\n", - "\n", - "Even the Statue of Liberty is scared of Sandy!!! http://t.co/SeaJWz7O\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared sandy \n", + "even statue liberty scared hurricane sandy \n", "\n", "\n", "Well I used to be able to see the Statue of Liberty from my balcony..... #ShitJusGotReal #hurricanesandy 😱😱😱 http://t.co/mvnnKxXV\n", "\n", "--------------------------------------------------------\n", - "well used able see statue liberty balcony shitjusgotreal hurricanesandy \n", + "well used able see statue liberty balcony shitjusgotreal hurricane sandy \n", "\n", "\n", "Crazy image of the Statue of Liberty right now - like a scene from a bad movie #HurricaneSandy #Frankenstorm http://t.co/hxs2sqaF\n", "\n", "--------------------------------------------------------\n", - "crazy image statue liberty right like scene bad movie hurricanesandy frankenstorm \n", - "\n", - "\n", - "Damn Sandy got the Statue of Liberty scared http://t.co/u43FfBPj\n", - "\n", - "--------------------------------------------------------\n", - "damn sandy got statue liberty scared \n", + "crazy image statue liberty right like scene bad movie hurricane sandy frankenstorm \n", "\n", "\n", "You Know Its Serious When The Statue of Liberty...#takecover...#hurricane #sandy...LMAO... http://t.co/grzRiBhL\n", "\n", "--------------------------------------------------------\n", - "know serious statue liberty takecover hurricane sandy lmao \n", + "know serious statue liberty takecover hurricane sandy \n", "\n", "\n", "Statue of Liberty at the moment! #Sandy http://t.co/bxFSUsO9\n", @@ -24367,12 +21837,6 @@ "statue liberty moment sandy \n", "\n", "\n", - "Lmao RT @Jay_Wyse: Lol RT @Bri_Nicole713: Damn Sandy got the Statue of Liberty scared http://t.co/8y1cpADn\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", - "\n", - "\n", "I'm tooooo sad, 😂😂😂. Statue Of Liberty not playing with Sandy. http://t.co/slpCthAf\n", "\n", "--------------------------------------------------------\n", @@ -24397,16 +21861,10 @@ "sandy blew statue liberty platform scurred \n", "\n", "\n", - "Even the Statue of Liberty is scared of hurricane #sandy http://t.co/BzRHyF3l http://t.co/IWYCBROm\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared hurricane sandy \n", - "\n", - "\n", "OMG! Check out this totally real photo of the Statue of Liberty! #sandy http://t.co/lfzTrcCh\n", "\n", "--------------------------------------------------------\n", - "omg check totally real photo statue liberty sandy \n", + "check totally real photo statue liberty sandy \n", "\n", "\n", "This isn't good. Here's a live-shot of the Statue of Liberty. #Sandy http://t.co/zSGxwt7y\n", @@ -24418,13 +21876,13 @@ "Lmaooooo! The people is so crazy! the statue of liberty is scared 😂😂😂😂 #omg #storm #sandy #hurr @ Highbridge http://t.co/IByHBGnG\n", "\n", "--------------------------------------------------------\n", - "lmaooooo people crazy statue liberty scared omg storm sandy hurr highbridge \n", + "people crazy statue liberty scared storm sandy hurr highbridge \n", "\n", "\n", "Lord, help NY. Even the Statue of Liberty is scared of Sandy. http://t.co/MXPC4uoR\n", "\n", "--------------------------------------------------------\n", - "lord help ny even statue liberty scared sandy \n", + "lord help new york even statue liberty scared sandy \n", "\n", "\n", "Statue of Liberty got a little scared of Sandy!☺ A little bit of sense of humor doesn't affect anyone. #sand http://t.co/V7TcivAv\n", @@ -24442,7 +21900,7 @@ "Sandy so bad, she made the statue of liberty run for cover! lol!! http://t.co/Sm5zptBS (via @Shel_TheAnomaly)\n", "\n", "--------------------------------------------------------\n", - "sandy bad made statue liberty run cover lol \n", + "sandy bad made statue liberty run cover \n", "\n", "\n", "Jajaja RT @WilliamBarclay2: RT @architectmag: Even more dramatic image of the Statue of Liberty! http://t.co/xeztFNIL (@dmataconis) #sandy\n", @@ -24454,13 +21912,7 @@ "Even statue of liberty scared of sandy. Lmao #rp http://t.co/rQhRjfKK\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scared sandy lmao rp \n", - "\n", - "\n", - "Even the statue of liberty is afraid of Sandy. http://t.co/4Tpe7I6m\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty afraid sandy \n", + "even statue liberty scared sandy rp \n", "\n", "\n", "Pic is fake RT @LuxuryPRGal: Crazy image of the Statue of Liberty right now - like a scene from a bad movie #Sandy http://t.co/vjFFW2us\n", @@ -24469,16 +21921,10 @@ "pic fake \n", "\n", "\n", - "LMFAOOOO RT @SHOCKWAVE_LO: Even the Statue of Liberty ah run from SANDY!!! Lmao 😂😭😂 http://t.co/hHMhEChv\n", - "\n", - "--------------------------------------------------------\n", - "lmfaoooo \n", - "\n", - "\n", "Even the Statue of Liberty is protecting herself from Sandy. #hurricanesandy #sandy #hurricane http://t.co/4LG0F5lb\n", "\n", "--------------------------------------------------------\n", - "even statue liberty protecting sandy hurricanesandy sandy hurricane \n", + "even statue liberty protecting sandy hurricane sandy sandy hurricane \n", "\n", "\n", "Sandy even scared statue of liberty 🙀🙀🙀🙀🙀🙀 http://t.co/MALz0uPM\n", @@ -24490,7 +21936,7 @@ "Statue of liberty vs Sandy http://t.co/n6egEUmO\n", "\n", "--------------------------------------------------------\n", - "statue liberty vs sandy \n", + "statue liberty versus sandy \n", "\n", "\n", "Statue of Liberty ain't feelin SANDY either!! Lmmfao http://t.co/a4CDHGcX\n", @@ -24511,16 +21957,10 @@ "statue liberty waiting sandy sandy \n", "\n", "\n", - "The Statue of Liberty right now! #Sandy http://t.co/EItIkice\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty right sandy \n", - "\n", - "\n", "The original photo of Hurricane Sandy over the Statue of Liberty #sandy #hurricanesandy http://t.co/TAjXMXRk\n", "\n", "--------------------------------------------------------\n", - "original photo hurricane sandy statue liberty sandy hurricanesandy \n", + "original photo hurricane sandy statue liberty sandy hurricane sandy \n", "\n", "\n", "Even the statue of liberty is afraid of #hurricane #sandy http://t.co/YZHUZ91z\n", @@ -24538,13 +21978,7 @@ "Even the Statue of Liberty in NY is taking cover! Lol #HurricaneSandy #Sandy #Nyc #stormphotos http://t.co/J3KCaOnk\n", "\n", "--------------------------------------------------------\n", - "even statue liberty ny taking cover lol hurricanesandy sandy nyc stormphotos \n", - "\n", - "\n", - "Live photo at the Statue of Liberty!\\n\\n#Sandy #HurricaneSandy http://t.co/vKedWHuO\n", - "\n", - "--------------------------------------------------------\n", - "live photo statue liberty sandy hurricanesandy \n", + "even statue liberty new york taking cover hurricane sandy sandy new york city stormphotos \n", "\n", "\n", "Lady liberty is even scured of sandy! #hideYourKidsHideYourWife http://t.co/yGULmERW\n", @@ -24553,13 +21987,7 @@ "lady liberty even scured sandy hideyourkidshideyourwife \n", "\n", "\n", - "Amazing picture of hurricane Sandy at the Statue of Liberty! http://t.co/ZjCOzgtZ\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "Amazing picture of hurricane Sandy at the Statue of Liberty! http://t.co/ZjCOzgtZ\n", "\n", "--------------------------------------------------------\n", "amazing picture hurricane sandy statue liberty \n", @@ -24568,49 +21996,25 @@ "#damn #newyork #hurricanesandy #shitjustgotreal #newyorkflood #somuch for your #undergroundtransit http://t.co/61IARyXF\n", "\n", "--------------------------------------------------------\n", - "damn newyork hurricanesandy shitjustgotreal newyorkflood somuch undergroundtransit \n", + "damn new york hurricane sandy shitjustgotreal new yorkflood somuch undergroundtransit \n", "\n", "\n", "Lmfaoooooooooooo!!!!!! 😂😭😂😭😂😂😂 I'm with her #statueofliberty #hurricanesandy http://t.co/F47Id3kw\n", "\n", "--------------------------------------------------------\n", - "lmfaoooooooooooo statueofliberty hurricanesandy \n", - "\n", - "\n", - "“@MrFerrell732 Lmfao! RT @lazofficial: Sh*t is real!!!!!!! #hurricanesandy http://t.co/SOG6gZtM”\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", - "@lazofficial: Sh*t is real!!!!!!! #hurricanesandy http://t.co/DO2s007Z lmmfaoooo:-) :-) :-) :-)\n", - "\n", - "--------------------------------------------------------\n", - "sh real hurricanesandy lmmfaoooo \n", + "statueofliberty hurricane sandy \n", "\n", "\n", "Sh*t is real!!!!!!! #hurricanesandy http://t.co/MGhPoPQw\n", "\n", "--------------------------------------------------------\n", - "sh real hurricanesandy \n", - "\n", - "\n", - "“@lazofficial: Sh*t is real!!!!!!! #hurricanesandy http://t.co/luKx7rcR”> LMAO!!\n", - "\n", - "--------------------------------------------------------\n", - "greater lmao \n", - "\n", - "\n", - "@Magerit1: Increíble fotografía de #Sandy sobre NY, en estos momentos: http://t.co/8hNR8iNs mira! Popy fresco! @frangar92\n", - "\n", - "--------------------------------------------------------\n", - "increíble fotografía sandy ny momentos mira popy fresco \n", + "sh real hurricane sandy \n", "\n", "\n", "Increíble fotografía de #Sandy sobre NY, en estos momentos: http://t.co/840pjw4e via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "increíble fotografía sandy ny momentos \n", + "increíble fotografía sandy new york momentos \n", "\n", "\n", "Muy impactante... \"@carlosshue: Increíble fotografía de #Sandy sobre NY, en estos momentos: http://t.co/TrCf8MSF\"\n", @@ -24628,13 +22032,7 @@ "Increíble foto de Sandy en NY http://t.co/PKSzBRsy @carlosshue\n", "\n", "--------------------------------------------------------\n", - "increíble foto sandy ny \n", - "\n", - "\n", - "Increíble fotografía de #Sandy sobre NY, en estos momentos: http://t.co/USxcvFU1\n", - "\n", - "--------------------------------------------------------\n", - "increíble fotografía sandy ny momentos \n", + "increíble foto sandy new york \n", "\n", "\n", "Sorry for that fake pic I posted earlier. This one is real. God Bless The Northern East Coast. #Sandy http://t.co/C1gguLDL\n", @@ -24658,7 +22056,7 @@ "Lmaoooo liberty said hell naw not me sandy ain't go get me hahah smh http://t.co/g2MSAB9I\n", "\n", "--------------------------------------------------------\n", - "lmaoooo liberty said hell naw sandy go get hahah smh \n", + "liberty said hell naw sandy go get hahah \n", "\n", "\n", "What Sandy looks like from Europe #reddit http://t.co/IxwL3AfA\n", @@ -24670,7 +22068,7 @@ "Ouragan Sandy : Top des photos truquées qui circulent sur le web! http://t.co/Qag3d9rk\n", "\n", "--------------------------------------------------------\n", - "ouragan sandy top des photos truquées qui circulent sur web \n", + "ouragan sandy top photos truquées circulent web \n", "\n", "\n", "DAMN EVERYBODY SHOOK FROM SANDY http://t.co/xth2yZ8p\n", @@ -24682,7 +22080,7 @@ "Sandy é voce?! Por favor tem como me libertar dessa?! http://t.co/tBzk2R8G\n", "\n", "--------------------------------------------------------\n", - "sandy é voce favor tem libertar \n", + "sandy voce favor libertar \n", "\n", "\n", "really though --->“@BadKidTracii \"Sandy stop playing\" I told your sister Irene I will pay up. http://t.co/K2QDHJU6”\n", @@ -24691,22 +22089,16 @@ "really though sandy stop playing told sister irene pay \n", "\n", "\n", - "Sandy?! http://t.co/1PG5Rlbk\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "OHHHH NOOO sandy is coming 😱😱😱🌊💨💦💨⚡🌀☔☔☔ http://t.co/gOajELo0\n", "\n", "--------------------------------------------------------\n", - "ohhhh nooo sandy coming \n", + "nooo sandy coming \n", "\n", "\n", "Mi gente de NY.... Tranquilos, Sandy hizo mas daños aquí... http://t.co/A7DzDAZu\n", "\n", "--------------------------------------------------------\n", - "gente ny tranquilos sandy hizo mas daños aquí \n", + "gente new york tranquilos sandy hizo daños aquí \n", "\n", "\n", "Chill my nigga , sandy! #rp @DJEzELMP http://t.co/4C75A0UJ\n", @@ -24718,13 +22110,13 @@ "Female battle looks like SANDY is winning...SMH http://t.co/QCYm7EGj\n", "\n", "--------------------------------------------------------\n", - "female battle looks like sandy winning smh \n", + "female battle looks like sandy winning \n", "\n", "\n", "Miss Liberty get ready for Sandy (NY) http://t.co/KRUksrf5\n", "\n", "--------------------------------------------------------\n", - "miss liberty get ready sandy ny \n", + "miss liberty get ready sandy new york \n", "\n", "\n", "Sandy my ass we know what was going on. http://t.co/Fh6oVouf\n", @@ -24742,19 +22134,13 @@ "Sandy stop playing... lol http://t.co/KTWlpRJ4\n", "\n", "--------------------------------------------------------\n", - "sandy stop playing lol \n", + "sandy stop playing \n", "\n", "\n", "MELHOR FOTO DA SANDY EM NY RT \"@zeni: effectivement la meilleure photo de sandy à nyc c'est http://t.co/SdLHMxXF\"\n", "\n", "--------------------------------------------------------\n", - "melhor foto da sandy em ny \n", - "\n", - "\n", - "Sandy ain't playing with y'all! http://t.co/tWaXgI41\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", + "melhor foto sandy new york \n", "\n", "\n", "Here is Think Progress posting a fake photo-> “@thinkprogress: Sandy approaches NYC http://t.co/oDGJNR1a (via @juneambrose)”\n", @@ -24763,24 +22149,6 @@ "think progress posting fake photo \n", "\n", "\n", - "Lmaoo “@Im_An_Immigrant Yo Sandy http://t.co/6yGnuxv3”\n", - "\n", - "--------------------------------------------------------\n", - "lmaoo sandy \n", - "\n", - "\n", - "What Sandy looks like from Europe. http://t.co/vxS6HkJh\n", - "\n", - "--------------------------------------------------------\n", - "sandy looks like europe \n", - "\n", - "\n", - "Estátua da Liberdade durante o furacão Sandy. http://t.co/6dcMqUX7\n", - "\n", - "--------------------------------------------------------\n", - "estátua da liberdade furacão sandy \n", - "\n", - "\n", "Sandy is even worse than we thought. http://t.co/NOG0GbOT\n", "\n", "--------------------------------------------------------\n", @@ -24790,7 +22158,7 @@ "Sandy a punto d llegar a NY y comienzan los preparativos https://t.co/XIcwq25X\n", "\n", "--------------------------------------------------------\n", - "sandy punto llegar ny comienzan preparativos \n", + "sandy punto llegar new york comienzan preparativos \n", "\n", "\n", "Un amigo la está pasando muy feo por el Sandy. Imágenes... http://t.co/i3EuQtFL\n", @@ -24802,7 +22170,7 @@ "Oops..damn it Sandy! Thought u'll give me a break..#NYC http://t.co/soC335hl\n", "\n", "--------------------------------------------------------\n", - "oops damn sandy thought give break nyc \n", + "oops damn sandy thought give break new york city \n", "\n", "\n", "really sandy?! You're quite enough on your own http://t.co/oBB4BVjp\n", @@ -24811,12 +22179,6 @@ "really sandy quite enough \n", "\n", "\n", - "Waiting for sandy http://t.co/dbbpPzAx\n", - "\n", - "--------------------------------------------------------\n", - "waiting sandy \n", - "\n", - "\n", "Arriva Sandy... http://t.co/7Zr3vjJU\n", "\n", "--------------------------------------------------------\n", @@ -24832,7 +22194,7 @@ "Lol sandy really needs to http://t.co/xICiSOM7\n", "\n", "--------------------------------------------------------\n", - "lol sandy really needs \n", + "sandy really needs \n", "\n", "\n", "Chill Sandy.. Stop playin http://t.co/asPj2Wga\n", @@ -24841,12 +22203,6 @@ "chill sandy stop playin \n", "\n", "\n", - "lmaoooo RT @_HiiiPoWerr RT @Mavric_W Yo Sandy... http://t.co/0YMYWhOC\n", - "\n", - "--------------------------------------------------------\n", - "lmaoooo \n", - "\n", - "\n", "la ultima foto de lo que causa Sandy http://t.co/zLiEjtk7\n", "\n", "--------------------------------------------------------\n", @@ -24856,7 +22212,7 @@ "O sandy já foi embora kkkkk http://t.co/9aUdUqWW\n", "\n", "--------------------------------------------------------\n", - "sandy já foi embora kkkkk \n", + "sandy embora kkkkk \n", "\n", "\n", "Damn, Sandy...pick on somebody your own size. #staysafeNY #statueofliberty http://t.co/VcLGxjKe\n", @@ -24868,13 +22224,7 @@ "Photo officielle de Sandy => http://t.co/WzFb5vFV 100% Photoshop free\n", "\n", "--------------------------------------------------------\n", - "photo officielle sandy greater 100 photoshop free \n", - "\n", - "\n", - "Damn Sandy! http://t.co/Go5jdv23\n", - "\n", - "--------------------------------------------------------\n", - "damn sandy \n", + "photo officielle sandy photoshop free \n", "\n", "\n", "YA SE HABRÁ IDO SANDY?? http://t.co/I4JSFZJ4\n", @@ -24892,13 +22242,13 @@ "Hold up!! I did NOT sign up for this!! Who dis Sandy chick yo?? http://t.co/PmJ9U9VL\n", "\n", "--------------------------------------------------------\n", - "hold sign dis sandy chick \n", + "hold sign whosandy chick \n", "\n", "\n", "Sandy is coming.. #takecover #frankenstorm #nyc #windyashell @ Residence Mårtensson http://t.co/CX9xiyQj\n", "\n", "--------------------------------------------------------\n", - "sandy coming takecover frankenstorm nyc windyashell residence mårtensson \n", + "sandy coming takecover frankenstorm new york city windyashell residence mårtensson \n", "\n", "\n", "Hij is te cool. # SANDY #STORM RT @Rotmevrouw: Storm over allready? http://t.co/mvyVEVKr\n", @@ -24910,7 +22260,7 @@ "A Sandy ja foi? Ja posso dar pinta lá em cima novamente??? http://t.co/gOtMw6dH\n", "\n", "--------------------------------------------------------\n", - "sandy foi posso dar pinta lá em cima novamente \n", + "sandy posso dar pinta lá cima novamente \n", "\n", "\n", "Priceless love this pic # sandy http://t.co/rfjeu6yI\n", @@ -24922,7 +22272,7 @@ "Sandy is almost here...Im scared like Lady Liberty!!! http://t.co/MoQ0CXE0\n", "\n", "--------------------------------------------------------\n", - "sandy almost im scared like lady liberty \n", + "sandy almost scared like lady liberty \n", "\n", "\n", "Sandy is one bad b!tch!! All jokes aside...be safe everyone. http://t.co/66KEH2cu\n", @@ -24934,7 +22284,7 @@ "Right before Sandy hit NY. http://t.co/O5BjMJlX\n", "\n", "--------------------------------------------------------\n", - "right sandy hit ny \n", + "right sandy hit new york \n", "\n", "\n", "Sandy is Scary!! http://t.co/oSHnJdRL\n", @@ -24946,7 +22296,7 @@ "Oh snap y'all, Sandy brought some friends! http://t.co/qGJs1YIz\n", "\n", "--------------------------------------------------------\n", - "oh snap sandy brought friends \n", + "snap sandy brought friends \n", "\n", "\n", "Irene not sandy! http://t.co/rAeRzd9y\n", @@ -24970,7 +22320,7 @@ "Et pssss ne dites pas a Sandy ou je suis...chut...;-) http://t.co/E4DvwWUJ\n", "\n", "--------------------------------------------------------\n", - "et pssss ne dites pas sandy ou suis chut \n", + "pssss dites sandy chut \n", "\n", "\n", "Lady Liberty said, \"Miss Sandy bitch, u got it. Ima pack it upppp!!!!!\" http://t.co/F06NpeWu\n", @@ -24985,12 +22335,6 @@ "asi juyendole sandy gusta libertad \n", "\n", "\n", - "Hilarious! RT @KimNicky: I feel you lady liberty...Sandy is spooking my ass too! Lmao!!! http://t.co/DFUAevGG\n", - "\n", - "--------------------------------------------------------\n", - "hilarious \n", - "\n", - "\n", "Sandy go away photo http://t.co/cfPmAORk\n", "\n", "--------------------------------------------------------\n", @@ -25000,19 +22344,13 @@ "@ryanvaughan look at this totally real, 100% not fake picture of Sandy: http://t.co/VITyUnID\n", "\n", "--------------------------------------------------------\n", - "look totally real 100 fake picture sandy \n", - "\n", - "\n", - "A Sandy ja foi ???? http://t.co/Kya85zHM\n", - "\n", - "--------------------------------------------------------\n", - "sandy foi \n", + "look totally real fake picture sandy \n", "\n", "\n", "A chegada de Sandy a Nyc #fon http://t.co/rtRxZsww\n", "\n", "--------------------------------------------------------\n", - "chegada sandy nyc fon \n", + "chegada sandy new york city fon \n", "\n", "\n", "Sandy ain't gon' get me! http://t.co/UHd1zdmD\n", @@ -25024,13 +22362,13 @@ "Sandy sur la côte Est des USA : http://t.co/kEujQtBd Sandy sur la côte Ouest : http://t.co/siOknP5B\n", "\n", "--------------------------------------------------------\n", - "sandy sur côte est des usa sandy sur côte ouest \n", + "sandy côte usa sandy côte ouest \n", "\n", "\n", "#repost sandy is no joke. Lady liberty is like..\"where this bitch at?\" Lmao http://t.co/v887mjW3\n", "\n", "--------------------------------------------------------\n", - "repost sandy joke lady liberty like bitch lmao \n", + "repost sandy joke lady liberty like bitch \n", "\n", "\n", "Jugando a las escondidas con Sandy http://t.co/bIRi8ecm\n", @@ -25048,7 +22386,7 @@ "😱😱😱 Eso solo Lo hace Sandy!!! Hasta yo tengo miedo 😧💨 🌊#Repost @mperdomo23 http://t.co/Caoqgu6H\n", "\n", "--------------------------------------------------------\n", - "solo hace sandy miedo repost \n", + "solo hace sandy hastatengo miedo repost \n", "\n", "\n", "Results of sandy http://t.co/mOyRFL0v\n", @@ -25060,7 +22398,7 @@ "Lmaoooo sandy shutting shit downnn http://t.co/qaoVtC7W\n", "\n", "--------------------------------------------------------\n", - "lmaoooo sandy shutting shit downnn \n", + "sandy shutting shit downnn \n", "\n", "\n", "Sandy got my home girl lady liberty shook. http://t.co/eb3cnQIG\n", @@ -25069,12 +22407,6 @@ "sandy got home girl lady liberty shook \n", "\n", "\n", - "Right Before Sandy hit NY http://t.co/uGP8CMAw\n", - "\n", - "--------------------------------------------------------\n", - "right sandy hit ny \n", - "\n", - "\n", "Sandy got niggaz shook 😭😭😂😂😂 http://t.co/ODw6hxCo\n", "\n", "--------------------------------------------------------\n", @@ -25090,19 +22422,19 @@ "Sandy gone yuh can stop hide now##shweef## http://t.co/xkpbbhuq\n", "\n", "--------------------------------------------------------\n", - "sandy gone yuh stop hide shweef \n", + "sandy gone yuh stop hide nowshweef \n", "\n", "\n", "Impactante foto del huracán Sandy en NYC\\nhttp://t.co/u5usvYb6 http://t.co/lOavyevG\n", "\n", "--------------------------------------------------------\n", - "impactante foto huracán sandy nyc \n", + "impactante foto huracán sandy new york city \n", "\n", "\n", "Waiting for Sandy #NYC http://t.co/4YWbYeu1\n", "\n", "--------------------------------------------------------\n", - "waiting sandy nyc \n", + "waiting sandy new york city \n", "\n", "\n", "Lady Liberty taking cover for Sandy...#fake http://t.co/gGFzPviz\n", @@ -25132,7 +22464,7 @@ "Impactantes imágenes de como se refugian en NYC a causa del huracán Sandy http://t.co/xDewhbpP\n", "\n", "--------------------------------------------------------\n", - "impactantes imágenes refugian nyc causa huracán sandy \n", + "impactantes imágenes refugian new york city causa huracán sandy \n", "\n", "\n", "Sandy! lilpenta http://t.co/VGj9qkzD\n", @@ -25144,25 +22476,19 @@ "Hey has Sandy gone?? Lol http://t.co/6mpnWzzj\n", "\n", "--------------------------------------------------------\n", - "hey sandy gone lol \n", + "hey sandy gone \n", "\n", "\n", "Sandy deja el relajo que no me quiero morir todabia me falta mucho por brillar hahahaha! http://t.co/uXsnuL6a\n", "\n", "--------------------------------------------------------\n", - "sandy deja relajo quiero morir todabia falta brillar hahahaha \n", + "sandy deja relajo quiero morir todabia falta brillar \n", "\n", "\n", "Tadinha, tava esperando a Sandy chegar... http://t.co/RKKbeeSH\n", "\n", "--------------------------------------------------------\n", - "tadinha tava esperando sandy chegar \n", - "\n", - "\n", - "Yo, Sandy http://t.co/3n4roWSM\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "tadin tava esperando sandy chegar \n", "\n", "\n", "Resumen de Sandy en EEUU http://t.co/g7ABw2SG\n", @@ -25171,12 +22497,6 @@ "resumen sandy eeuu \n", "\n", "\n", - "LOL SANDY http://t.co/F82siltL\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy \n", - "\n", - "\n", "Sandy kiere acabar con New York #vidareal http://t.co/1I0DOcs6\n", "\n", "--------------------------------------------------------\n", @@ -25204,13 +22524,7 @@ "Hide yo kids, hide yo wives, hide yo husbands cause Sandy aint playin!! Be safe y'all! 🙏🙏 http://t.co/lbMrpu9J\n", "\n", "--------------------------------------------------------\n", - "hide kids hide wives hide husbands cause sandy aint playin safe \n", - "\n", - "\n", - "LMFAOOOOOOOOOOO! RT @__Brander RT @Im_An_Immigrant Yo Sandy http://t.co/uTyB0Xqe\n", - "\n", - "--------------------------------------------------------\n", - "lmfaooooooooooo \n", + "hidekids hidewives hidehusbands cause sandy aint playin safe \n", "\n", "\n", "Fuck, Sandy is comin' !! http://t.co/9TA8ZWCe\n", @@ -25228,25 +22542,25 @@ "Sandy deja el relajo. Hahahaha #rodé http://t.co/0dZNOzGb\n", "\n", "--------------------------------------------------------\n", - "sandy deja relajo hahahaha rodé \n", + "sandy deja relajo rodé \n", "\n", "\n", "Who is it? Sandy, I wasn't expecting you till tomorrow! @ Bronx, NY http://t.co/m6vyOL26\n", "\n", "--------------------------------------------------------\n", - "sandy expecting tomorrow bronx ny \n", + "sandy expecting tomorrow bronx new york \n", "\n", "\n", "Sandy got #NewYork scared http://t.co/bmgrraze\n", "\n", "--------------------------------------------------------\n", - "sandy got newyork scared \n", + "sandy got new york scared \n", "\n", "\n", "kkkkk só você mesmo “@janizear: Sandy?! http://t.co/hr0EVLzM”\n", "\n", "--------------------------------------------------------\n", - "kkkkk só você mesmo \n", + "kkkkk \n", "\n", "\n", "Lady Liberty is not excited about meeting Ms Sandy http://t.co/4pgZAEH3\n", @@ -25264,7 +22578,7 @@ "“@douglasmoraesjr: HAHAHAHAHAHA ! Toma-teeee ! Foto de ariadyna http://t.co/pA7HTkJc”\\n\\nMedo da Sandy!\n", "\n", "--------------------------------------------------------\n", - "medo da sandy \n", + "medo sandy \n", "\n", "\n", "Extreme Sandy. #reddit http://t.co/R88iWcD1\n", @@ -25285,18 +22599,6 @@ "sandy got everybody trippin \n", "\n", "\n", - "Haha... Sandy is coming... 😱🗽 http://t.co/xeWcRCje\n", - "\n", - "--------------------------------------------------------\n", - "haha sandy coming \n", - "\n", - "\n", - "¿Donde esta Sandy? Where is Sandy? http://t.co/Yz5gnunD\n", - "\n", - "--------------------------------------------------------\n", - "sandy sandy \n", - "\n", - "\n", "Cuidado que ahí viene Sandy!! http://t.co/eazXGryU\n", "\n", "--------------------------------------------------------\n", @@ -25306,7 +22608,7 @@ "Ya basta con la supuesta e impactante imagen de huracan Sandy en NY, obviamente es fake http://t.co/2QeVVinL\n", "\n", "--------------------------------------------------------\n", - "basta supuesta impactante imagen huracan sandy ny obviamente fake \n", + "basta supuesta impactante imagen huracan sandy new york obviamente fake \n", "\n", "\n", "Se estara escondiendo de Sandy ??? Jajajajajaja http://t.co/30kldwWY\n", @@ -25342,25 +22644,25 @@ "A sandy já passou? @ Ravesbel House http://t.co/QTgDZHjP\n", "\n", "--------------------------------------------------------\n", - "sandy já passou ravesbel house \n", + "sandy passou ravesbel house \n", "\n", "\n", "Sandy attacks Nyc http://t.co/uGYNCzZ3\n", "\n", "--------------------------------------------------------\n", - "sandy attacks nyc \n", + "sandy attacks new york city \n", "\n", "\n", "#AHORA: Llegan IMÁGENES EXCLUSIVAS del huracan Sandy llegando a la costa. #PorpocoNews - http://t.co/OXhpx1XA (vía @pabbb_)\n", "\n", "--------------------------------------------------------\n", - "ahora llegan imágenes exclusivas huracan sandy llegando costa porpoconews vía \n", + "ahora llegan imágenes exclusivas huracan sandy llegando costa porpoconews \n", "\n", "\n", "OH NO YOU DONT SANDY http://t.co/hMCUG7rE\n", "\n", "--------------------------------------------------------\n", - "oh dont sandy \n", + "dont sandy \n", "\n", "\n", "Liberty waiting Sandy !!! http://t.co/Alhtuwdh\n", @@ -25372,7 +22674,7 @@ "así se preparan en NY… para la llegada del huracán Sandy!! http://t.co/H2NT9pBw\n", "\n", "--------------------------------------------------------\n", - "así preparan ny llegada huracán sandy \n", + "así preparan new york llegada huracán sandy \n", "\n", "\n", "Yall niggaz killing me #BlueEyesWhiteDragon #JAWS #UFO #GODZILLA 😂😭💦🌊🌊🌊 #Repost from @atownomas @ FUCK SANDY http://t.co/V8FwLKdN\n", @@ -25396,7 +22698,7 @@ "damn.. sandy was fuckin shit up yesterday.. lmao http://t.co/wKDPc2M7\n", "\n", "--------------------------------------------------------\n", - "damn sandy fuckin shit yesterday lmao \n", + "damn sandy fuckin shit yesterday \n", "\n", "\n", "Sandy man chill out, I didn't mean to call you a b!+?# http://t.co/txBSMfrX\n", @@ -25411,12 +22713,6 @@ "image sandy \n", "\n", "\n", - "Scary Sandy http://t.co/FMsJgL72\n", - "\n", - "--------------------------------------------------------\n", - "scary sandy \n", - "\n", - "\n", "Parece que el huracan sandy se dejara caer fuerte en New York. http://t.co/NINYjqgM\n", "\n", "--------------------------------------------------------\n", @@ -25438,7 +22734,7 @@ "Huracan sandy dandole duro a NY http://t.co/y6pQu3HZ\n", "\n", "--------------------------------------------------------\n", - "huracan sandy dandole duro ny \n", + "huracan sandy dandole duro new york \n", "\n", "\n", "La que está liando \"CruzCampo\" que diga Sandy http://t.co/dgqoRAQ3\n", @@ -25468,19 +22764,13 @@ "Oh shyt. Sandy coming! http://t.co/BOlbBe5d\n", "\n", "--------------------------------------------------------\n", - "oh shyt sandy coming \n", + "shyt sandy coming \n", "\n", "\n", "#chatiada com a Sandy 😂😂😂😂😂😂😂😂 @ Lontano di Noi http://t.co/egoEgbSy\n", "\n", "--------------------------------------------------------\n", - "chatiada com sandy lontano di noi \n", - "\n", - "\n", - "http://t.co/lYtSaxBs sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "chatiada sandy lontano noi \n", "\n", "\n", "Todo el mundo acojonao con \"Sandy\"... http://t.co/2ZjoM32i\n", @@ -25489,12 +22779,6 @@ "mundo acojonao sandy \n", "\n", "\n", - "Lady Liberty is ready for Sandy!\\nhttp://t.co/S9rAWfAl\n", - "\n", - "--------------------------------------------------------\n", - "lady liberty ready sandy \n", - "\n", - "\n", "Ok sandy..u win http://t.co/AkKeDcp4\n", "\n", "--------------------------------------------------------\n", @@ -25522,13 +22806,13 @@ "Lmaoooooo!!!! Sandy got people nervous out here. http://t.co/0NuKJOhs\n", "\n", "--------------------------------------------------------\n", - "lmaoooooo sandy got people nervous \n", + "sandy got people nervous \n", "\n", "\n", "#NoFilter #ThirstTrappin Sandy got me out here with jut my briefs on ... Power out over here smh http://t.co/Z77XKkUm\n", "\n", "--------------------------------------------------------\n", - "nofilter thirsttrappin sandy got jut briefs power smh \n", + "nofilter thirsttrappin sandy got jut briefs power \n", "\n", "\n", "Sandy estas ahiii... Ya se fue sandy? http://t.co/BWTOMCXu\n", @@ -25552,19 +22836,13 @@ "Não tá facil pra ninguém mesmo! \\nFuracão Sandy Nova Iorque http://t.co/NeuCU1yj\n", "\n", "--------------------------------------------------------\n", - "não tá facil pra ninguém mesmo furacão sandy nova iorque \n", + "tá facil pra ninguém furacão sandy nova iorque \n", "\n", "\n", "ah come on Sandy leave eh ou http://t.co/L8duahpt\n", "\n", "--------------------------------------------------------\n", - "ah come sandy leave eh ou \n", - "\n", - "\n", - "Why sandy why!! http://t.co/qlIJs6B6\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "ah come sandy leave eh \n", "\n", "\n", "My god. Sandy is worse than I thought... http://t.co/9iiMHVMj\n", @@ -25573,12 +22851,6 @@ "god sandy worse thought \n", "\n", "\n", - "😂😂😂😂😂“@IH8TETEF: Thats from a movie doe 😐 RT @asco_100k: Dis bitch Sandy aint playn http://t.co/12kTjLAs”\n", - "\n", - "--------------------------------------------------------\n", - "thats movie doe \n", - "\n", - "\n", "De longe a melhor foto sobre o furacão Sandy! Rsrs http://t.co/RFfpDpdO\n", "\n", "--------------------------------------------------------\n", @@ -25588,37 +22860,31 @@ "A Sandy já passou, posso sair??? http://t.co/mscsJ2S7\n", "\n", "--------------------------------------------------------\n", - "sandy já passou posso sair \n", + "sandy passou posso sair \n", "\n", "\n", "Circulan fotos falsas del Huracán Sandy,pero juro que esta la acabo de tomar hace 5 minutos con mi IPhone...Ha ha http://t.co/JMBLNI2q\n", "\n", "--------------------------------------------------------\n", - "circulan fotos falsas huracán sandy juro acabo tomar hace 5 minutos iphone \n", + "circulan fotos falsas huracán sandy juro acabo tomar hace minutos iphone \n", "\n", "\n", "😭😂😂😭😂 y'all drawl wit dis sandy shit cuz http://t.co/EtNN8n8t\n", "\n", "--------------------------------------------------------\n", - "drawl wit dis sandy shit \n", + "drawl witsandy shit cuz \n", "\n", "\n", "Oh shit this bitch Sandy is tougher then I am. I had to repost this. Thnx Cys http://t.co/IATd11jW\n", "\n", "--------------------------------------------------------\n", - "oh shit bitch sandy tougher repost thnx cys \n", + "shit bitch sandy tougher repost thnx cys \n", "\n", "\n", "Sandy en NY (de Cruzcampo). http://t.co/uBurV2L7\n", "\n", "--------------------------------------------------------\n", - "sandy ny cruzcampo \n", - "\n", - "\n", - "Ya se fue sandy? http://t.co/IIS0IrFP\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sandy new york cruzcampo \n", "\n", "\n", "What Sandy looks like from Europe. http://t.co/Jb9LOoBT Coments: http://t.co/fSMs4CFi\n", @@ -25642,13 +22908,7 @@ "I feel you lady liberty...Sandy is spooking my ass too! Lmao!!! http://t.co/1U1lUTSM\n", "\n", "--------------------------------------------------------\n", - "feel lady liberty sandy spooking ass lmao \n", - "\n", - "\n", - "Sandy is gone?!? http://t.co/FQHZVaLg\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", + "feel lady liberty sandy spooking ass \n", "\n", "\n", "Esta foto fue tomada hace unas horas previamente a la llegada de sandy a New York http://t.co/oaXyN18y\n", @@ -25666,13 +22926,7 @@ "Nighas better get low Lolol sandy comin http://t.co/70rc40Pc\n", "\n", "--------------------------------------------------------\n", - "nighas better get low lolol sandy comin \n", - "\n", - "\n", - "Chill Sandy http://t.co/E0ZTbeGX\n", - "\n", - "--------------------------------------------------------\n", - "chill sandy \n", + "nighas better get low ol sandy comin \n", "\n", "\n", "@mwjoffe best fake sandy pic since http://t.co/LXQ3WHwu\n", @@ -25684,7 +22938,7 @@ "Foto da atual situação da cidade de Nova York, nos USA, castigada pelo Furacão Sandy http://t.co/bXVJ51Gb #PrayForUSA\n", "\n", "--------------------------------------------------------\n", - "foto da atual situação da cidade nova york usa castigada pelo furacão sandy prayforusa \n", + "foto atual situação cidade nova york usa castigada furacão sandy prayforusa \n", "\n", "\n", "Yup.... Sandy brought it all to New York :'| http://t.co/xhxVw8ey\n", @@ -25696,7 +22950,7 @@ "Weak!!!! «@_imTooDOPE Lmaoo “@Im_An_Immigrant Yo Sandy http://t.co/wTHvg1wi”»\n", "\n", "--------------------------------------------------------\n", - "weak lmaoo sandy \n", + "weak sandy \n", "\n", "\n", "Protecting for tornado: Sandy http://t.co/UYWMjjD5\n", @@ -25705,16 +22959,10 @@ "protecting tornado sandy \n", "\n", "\n", - "Omg sandy http://t.co/9zEFFlG4\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy \n", - "\n", - "\n", "Oh Shit Sandy!!! http://t.co/P219td4N\n", "\n", "--------------------------------------------------------\n", - "oh shit sandy \n", + "shit sandy \n", "\n", "\n", "Ya mero llega Sandy!! http://t.co/zxBpOxr6\n", @@ -25738,7 +22986,7 @@ "Wow sandy is really shaking things around ISLANDS http://t.co/wjKi8vYc\n", "\n", "--------------------------------------------------------\n", - "wow sandy really shaking things around islands \n", + "sandy really shaking things around islands \n", "\n", "\n", "Impresionantes imágenes de @iaurab sobreviviendo al Huracán Sandy en Nueva York !!! http://t.co/uHcZxEdV\n", @@ -25750,7 +22998,7 @@ "Ms Liberty Vs. Sandy http://t.co/rjUB4udn\n", "\n", "--------------------------------------------------------\n", - "ms liberty vs sandy \n", + "ms liberty versus sandy \n", "\n", "\n", "😭😂😭 Sandy got everybody shook. Photo via @_CDiddy 👈👈 follow him http://t.co/N0NhQDz9\n", @@ -25762,7 +23010,7 @@ "La estatua d la libertad escodiendose del siclon Sandy... Hahahha http://t.co/aJ1QRf6p\n", "\n", "--------------------------------------------------------\n", - "estatua libertad escodiendose siclon sandy hahahha \n", + "estatua libertad escodiendose siclon sandy hahah \n", "\n", "\n", "Sandy aint no joke cuh http://t.co/X3suAheg\n", @@ -25774,7 +23022,7 @@ "Vean → El huracan Sandy http://t.co/LGgdo34I y y la pelicula el dia de la independencia → http://t.co/vRBT3bza\n", "\n", "--------------------------------------------------------\n", - "vean huracan sandy pelicula dia independencia \n", + "vean huracan sandy pelicula independencia \n", "\n", "\n", "Sandy attack! http://t.co/A2Swrv4c\n", @@ -25783,12 +23031,6 @@ "sandy attack \n", "\n", "\n", - "Is sandy gone now? http://t.co/3MMksfti\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "Sandy Toy aqui 😂😂😂😂😂 http://t.co/q9LSo3sT\n", "\n", "--------------------------------------------------------\n", @@ -25804,13 +23046,7 @@ "Sandy gpt errbody runnin except me lol http://t.co/fo4UEeZT\n", "\n", "--------------------------------------------------------\n", - "sandy gpt errbody runnin except lol \n", - "\n", - "\n", - "Ya se fue Sandy? LOL http://t.co/gi5nwR7S\n", - "\n", - "--------------------------------------------------------\n", - "sandy lol \n", + "sandy gpt errbody runnin except \n", "\n", "\n", "SANDY BOMBANDO NOS EUA. http://t.co/4Stc8lNT\n", @@ -25822,7 +23058,7 @@ "Sandy?! Já posso subir??? http://t.co/qA9jdoba\n", "\n", "--------------------------------------------------------\n", - "sandy já posso subir \n", + "sandy posso subir \n", "\n", "\n", "Sandy got everybody shook Smmfh http://t.co/atEAJ9wL\n", @@ -25831,18 +23067,6 @@ "sandy got everybody shook smmfh \n", "\n", "\n", - "Sandy já foi?! http://t.co/VMO5RLhs http://t.co/HQfDZtpQ\n", - "\n", - "--------------------------------------------------------\n", - "sandy já foi \n", - "\n", - "\n", - "Sandy is coming! http://t.co/k9HvwJkX\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", - "\n", - "\n", "She ain't playin Sandy comin!!🗽 http://t.co/z6dgTfyr\n", "\n", "--------------------------------------------------------\n", @@ -25858,31 +23082,19 @@ "Sandy @ NY, oct. 2012 http://t.co/q281BhRv\n", "\n", "--------------------------------------------------------\n", - "sandy ny oct 2012 \n", - "\n", - "\n", - "Estátua da Liberdade durante o furacão Sandy.https://t.co/Kl1KgM6I\n", - "\n", - "--------------------------------------------------------\n", - "estátua da liberdade furacão sandy \n", + "sandy new york oct2 \n", "\n", "\n", "Ultima imagen desde NY producto de SANDY http://t.co/TSXIhJcH\n", "\n", "--------------------------------------------------------\n", - "ultima imagen ny producto sandy \n", - "\n", - "\n", - "Sandy not playing! http://t.co/iA44v6Bd\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", + "ultima imagen new york producto sandy \n", "\n", "\n", "La foto mas berreada del huracan sandy es un fake http://t.co/3Idpq8jb\n", "\n", "--------------------------------------------------------\n", - "foto mas berreada huracan sandy fake \n", + "foto berreada huracan sandy fake \n", "\n", "\n", "Diablo Sandy Esta Del CARAJO http://t.co/Ye6Amsie\n", @@ -25906,7 +23118,7 @@ "Finalmente, una foto real del Huracán Sandy en NY. http://t.co/16E920Tr\n", "\n", "--------------------------------------------------------\n", - "finalmente foto real huracán sandy ny \n", + "finalmente foto real huracán sandy new york \n", "\n", "\n", "Sandy was no joke. #hurricat http://t.co/0kUbgxOG\n", @@ -25921,12 +23133,6 @@ "thought sandy pussy came bitches hiding \n", "\n", "\n", - "She was scared of Sandy Too http://t.co/nObPaL4F\n", - "\n", - "--------------------------------------------------------\n", - "scared sandy \n", - "\n", - "\n", "Lady Liberty, “chill sandy you play to much” 🗽💦💦😂😭 http://t.co/JO0c7mOb\n", "\n", "--------------------------------------------------------\n", @@ -25942,13 +23148,13 @@ "Sandy, Ai que meda !!! Kkkkkk #sandy#ny#statueliberty#eua http://t.co/he1mhOGi\n", "\n", "--------------------------------------------------------\n", - "sandy ai meda kkkkkk sandy ny statueliberty eua \n", + "sandy meda kkkkkk sandynystatuelibertyeua \n", "\n", "\n", "No es una escena de 2012 o de El dia despues de mañana...es el huracan Sandy http://t.co/T5LUVAKi\n", "\n", "--------------------------------------------------------\n", - "escena 2012 dia despues mañana huracan sandy \n", + "escena de012 despues mañana huracan sandy \n", "\n", "\n", "Did sandy leave yet? http://t.co/U5VTo1zA\n", @@ -25960,13 +23166,13 @@ "lol sandy got liberty shook lol come on liberty your better than tht http://t.co/rboDmfsC\n", "\n", "--------------------------------------------------------\n", - "lol sandy got liberty shook lol come liberty better tht \n", + "sandy got liberty shook come liberty better tht \n", "\n", "\n", "Wow Sandy is worse than we all thought. http://t.co/6Wx9oH9y\n", "\n", "--------------------------------------------------------\n", - "wow sandy worse thought \n", + "sandy worse thought \n", "\n", "\n", "Escóndete que viene Sandy!!! New York. XD http://t.co/FXcAM6hW\n", @@ -25978,19 +23184,19 @@ "Sandy é o Kralho isso é culpa da Ritahhhh!!! #PrayForUSA @ USA EAST http://t.co/3GoJYauj\n", "\n", "--------------------------------------------------------\n", - "sandy é kralho isso é culpa da ritahhhh prayforusa usa east \n", + "sandy kralho culpa ritahhhh prayforusa usa east \n", "\n", "\n", "Just tell me when Sandy go. lol http://t.co/QeaLOjRd\n", "\n", "--------------------------------------------------------\n", - "tell sandy go lol \n", + "tell sandy go \n", "\n", "\n", "Sandy got bitches scared LoL http://t.co/NqajuasC\n", "\n", "--------------------------------------------------------\n", - "sandy got bitches scared lol \n", + "sandy got bitches scared \n", "\n", "\n", "Insane photo I took as Sandy came into town. Totally unreal. http://t.co/H7yI5EQ1\n", @@ -26023,40 +23229,28 @@ "think sandy \n", "\n", "\n", - "Sandy is no joke ☔🌁🌊😔 http://t.co/VqU8PJiN\n", - "\n", - "--------------------------------------------------------\n", - "sandy joke \n", - "\n", - "\n", "Sandy got everyone shook lol http://t.co/V5EAy1St\n", "\n", "--------------------------------------------------------\n", - "sandy got everyone shook lol \n", + "sandy got everyone shook \n", "\n", "\n", "Damn sandy.. Killin NYC http://t.co/wj48RvWP\n", "\n", "--------------------------------------------------------\n", - "damn sandy killin nyc \n", + "damn sandy killin new york city \n", "\n", "\n", "https://t.co/MnzOwUzn SANDY!!!!! Man esto ta pasaisimo! Misma movie aw\n", "\n", "--------------------------------------------------------\n", - "sandy ta pasaisimo misma movie aw \n", + "sandy pasaisimo misma movie aw \n", "\n", "\n", "Whoa! Seriously shark?! RT @9GAGTweets: Thanks Sandy, I always wanted my.. - http://t.co/Yjspojdp #9gagtweets\n", "\n", "--------------------------------------------------------\n", - "whoa seriously shark \n", - "\n", - "\n", - "Lmao!!!! THIS!!! >>>>> RT @YaBoyBeezy LOL SANDY http://t.co/flcqn4ap\n", - "\n", - "--------------------------------------------------------\n", - "lmao greater greater greater greater greater \n", + "seriously shark \n", "\n", "\n", "SANDY IS NOT PLAYING AROUND http://t.co/ZNNnAKeT\n", @@ -26068,7 +23262,7 @@ "Sandy got NYC shook!!! #holdtight http://t.co/QRHggQSF\n", "\n", "--------------------------------------------------------\n", - "sandy got nyc shook holdtight \n", + "sandy got new york city shook holdtight \n", "\n", "\n", "We are ready for Sandy. http://t.co/JPnyiosw\n", @@ -26086,19 +23280,7 @@ "Sandy llega a NY y ella se asusta... http://t.co/TWhx5wAM\n", "\n", "--------------------------------------------------------\n", - "sandy llega ny asusta \n", - "\n", - "\n", - "Sandy are you gone? :) http://t.co/FQKUoZ1V\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", - "Is Sandy gone yet.. LOL http://t.co/oLPMIDKh\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet lol \n", + "sandy llega new york asusta \n", "\n", "\n", "Peek-a-boo Sandy Liberty sees u.. LMBO this pix jus blessed me .. #theway she is lookn http://t.co/YW5Ns15e\n", @@ -26113,12 +23295,6 @@ "rofl sandy komst iedereenisbangvansandy \n", "\n", "\n", - "# Sandy http://t.co/sKxZsCg4\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Sandy you got to chill http://t.co/386oOnPJ\n", "\n", "--------------------------------------------------------\n", @@ -26128,7 +23304,7 @@ "Todos temen a Sandy en NY https://t.co/bEymtMz0\n", "\n", "--------------------------------------------------------\n", - "temen sandy ny \n", + "temen sandy new york \n", "\n", "\n", "Come on Sandy!!!! http://t.co/MXU9Rg3n\n", @@ -26137,12 +23313,6 @@ "come sandy \n", "\n", "\n", - "Oh Sandy... http://t.co/FWx8b0dB\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", "http://t.co/U2vIDKwZ Schuilen voor orkaan Sandy.\n", "\n", "--------------------------------------------------------\n", @@ -26164,13 +23334,7 @@ "This Sandy Business is Scary....!!!!! ahahahahahahahaha http://t.co/Uzk6nrkZ\n", "\n", "--------------------------------------------------------\n", - "sandy business scary ahahahahahahahaha \n", - "\n", - "\n", - "Chill my nigga Sandy! http://t.co/LeUSihmQ\n", - "\n", - "--------------------------------------------------------\n", - "chill nigga sandy \n", + "sandy business scary \n", "\n", "\n", "Impactante fotografía REAL de como el huracán Sandy desata el caos a su llegada http://t.co/4ZcibpuM\n", @@ -26179,28 +23343,16 @@ "impactante fotografía real huracán sandy desata caos llegada \n", "\n", "\n", - "No Sandy http://t.co/zDjTVMSG\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Sorprendente imagen de Nueva York ante el Huracán Sandy http://t.co/EFLVBa2W\n", "\n", "--------------------------------------------------------\n", "sorprendente imagen nueva york huracán sandy \n", "\n", "\n", - "Waiting 4 Sandy... http://t.co/fNu9uq3x\n", - "\n", - "--------------------------------------------------------\n", - "waiting 4 sandy \n", - "\n", - "\n", "Cuidado com a Sandy NY haha zecabordon http://t.co/Zy0DySEV\n", "\n", "--------------------------------------------------------\n", - "cuidado com sandy ny haha zecabordon \n", + "cuidado sandy new yorkzecabordon \n", "\n", "\n", "hasta amiguitos trajo Sandy http://t.co/akKmZ6E7\n", @@ -26209,30 +23361,12 @@ "amiguitos trajo sandy \n", "\n", "\n", - "Too funny «@TwinklesYO Lmfaooo Sandy http://t.co/gSQErDJK»\n", - "\n", - "--------------------------------------------------------\n", - "funny lmfaooo sandy \n", - "\n", - "\n", - "Lmfao. RT @R_0_N Lady Liberty is not excited about meeting Ms Sandy http://t.co/PEPNp3hH\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", "These Sandy Pics #Hilarious http://t.co/CbnTdBoH\n", "\n", "--------------------------------------------------------\n", "sandy pics hilarious \n", "\n", "\n", - "Sandy ya te fuiste? http://t.co/b2Ekj0RD\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Efeito Sandy!!rs http://t.co/mNDPlm6i\n", "\n", "--------------------------------------------------------\n", @@ -26248,19 +23382,13 @@ "Sandy got her shook hahahahaha hahahahaha http://t.co/4lkV9kgW\n", "\n", "--------------------------------------------------------\n", - "sandy got shook hahahahaha hahahahaha \n", - "\n", - "\n", - "YO..... YO.....SANDY http://t.co/1Zwydiq2\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sandy got shook \n", "\n", "\n", "Furacão Sandy nos EUA: https://t.co/WFWrpLYW e ainda vão dizer que é photoshop ¬¬'\n", "\n", "--------------------------------------------------------\n", - "furacão sandy eua ainda vão dizer é photoshop \n", + "furacão sandy eua ainda vão dizer photoshop \n", "\n", "\n", "Todos refugiados x Sandy...hasta Freedom :P http://t.co/XNo6N9xt\n", @@ -26272,49 +23400,43 @@ "YO SANDY, CHILL MA NIGGA!! \\nMuahahahahahahaha!!!\\nhttp://t.co/6mFfKGnN\n", "\n", "--------------------------------------------------------\n", - "sandy chill nigga muahahahahahahaha \n", + "sandy chill nigga mua \n", "\n", "\n", "@yessieli23 #repost hope sandy doesn't see me 😖 lol http://t.co/n4qmKuQs\n", "\n", "--------------------------------------------------------\n", - "repost hope sandy see lol \n", + "repost hope sandy see \n", "\n", "\n", "Stop playing sandy lol niggas be wallin http://t.co/YxVOuTia\n", "\n", "--------------------------------------------------------\n", - "stop playing sandy lol niggas wallin \n", + "stop playing sandy niggas wallin \n", "\n", "\n", "#NYC Is Sandy here yet? http://t.co/LP2lnqxz\n", "\n", "--------------------------------------------------------\n", - "nyc sandy yet \n", - "\n", - "\n", - "Sandy is coming RT @BarbyeTurica: Arriva Sandy... http://t.co/x2g9ZA5F\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", + "new york city sandy yet \n", "\n", "\n", "Dijeron q todos debían resguardares del huracán Sandy en New York... Es sorprendente la @ New York, NY. EUA http://t.co/rosOV1u3\n", "\n", "--------------------------------------------------------\n", - "dijeron q debían resguardares huracán sandy new york sorprendente new york ny eua \n", + "dijeron q debían resguardares huracán sandy new york sorprendente new york new york eua \n", "\n", "\n", "Sandy is coming to town ... #I❤NY http://t.co/y6RAyith\n", "\n", "--------------------------------------------------------\n", - "sandy coming town ny \n", + "sandy coming town new york \n", "\n", "\n", "These Sandy pics are jokes lol http://t.co/Me5HKe4E\n", "\n", "--------------------------------------------------------\n", - "sandy pics jokes lol \n", + "sandy pics jokes \n", "\n", "\n", "Lady Liberty ---\"Sandy is one mean B*tch ! You represent freedom I'm out !!! http://t.co/OaCtFzTj http://t.co/KuJATIQZ\n", @@ -26335,16 +23457,10 @@ "traten protegerce tormenta sandy viene bajando teke teke ahora \n", "\n", "\n", - "Lmaoo RT @MoneyPowerJUICE: Que poosie RT @COMMEdesJUAN: Sandy Mira lo que tu hiciste mmg http://t.co/yP1fSjHk\n", - "\n", - "--------------------------------------------------------\n", - "lmaoo \n", - "\n", - "\n", "La Etatua Dijo Llego Sandy Mktr3 De Aki Hahahaha http://t.co/Xy3ZBUOR\n", "\n", "--------------------------------------------------------\n", - "etatua dijo llego sandy mktr3 aki hahahaha \n", + "etatua dijo llego sandy mktr3 aki \n", "\n", "\n", "Hasta la estatua se quiero esconder de Sandy. 😂😱#repost http://t.co/yf2amGAA\n", @@ -26356,19 +23472,19 @@ "Impresionante imagen del huracan Sandy en pleno apogeo al llegar a NY...\\nhttp://t.co/ewfHyWwZ\n", "\n", "--------------------------------------------------------\n", - "impresionante imagen huracan sandy pleno apogeo llegar ny \n", + "impresionante imagen huracan sandy pleno apogeo llegar new york \n", "\n", "\n", "effectivement la meilleure photo de sandy à nyc c'est http://t.co/fpVUrsBV\n", "\n", "--------------------------------------------------------\n", - "effectivement meilleure photo sandy à nyc c est \n", + "effectivement meilleure photo sandynew york city \n", "\n", "\n", "Se viene otro huracán como Sandy? No! Sanata hará un informe en NY (La Libertad, aterrada!) http://t.co/0dnHMoeL\n", "\n", "--------------------------------------------------------\n", - "viene huracán sandy sanata hará informe ny libertad aterrada \n", + "viene huracán sandy sanata hará informe new york libertad aterrada \n", "\n", "\n", "http://t.co/1VzAUrXm Ist Sandy weg ???\n", @@ -26377,12 +23493,6 @@ "ist sandy weg \n", "\n", "\n", - "Inmiddels zoekt heel NYC dekking voor Sandy... via @toinevp http://t.co/ztubFBiX\n", - "\n", - "--------------------------------------------------------\n", - "inmiddels zoekt heel nyc dekking sandy \n", - "\n", - "\n", "Uy que viene Sandy http://t.co/qlRWqPhY\n", "\n", "--------------------------------------------------------\n", @@ -26416,7 +23526,7 @@ "funniest sandy picture lol http://t.co/YFlPu2qi\n", "\n", "--------------------------------------------------------\n", - "funniest sandy picture lol \n", + "funniest sandy picture \n", "\n", "\n", "Sandy is comin #besmart #stockup #besafe #haveadrink #illbewatchinupdatesonBBCNews http://t.co/OrPW8pAd\n", @@ -26428,19 +23538,13 @@ "La foto con referencia a como está Nueva York tiene fecha 2009 y no corresponde a Sandy http://t.co/EzwIrpuR via @GabbyOria\n", "\n", "--------------------------------------------------------\n", - "foto referencia nueva york fecha 2009 corresponde sandy \n", + "foto referencia nueva york fecha009 corresponde sandy \n", "\n", "\n", "Esta foto indica que lo peor del Sandy parece que ha pasado ya http://t.co/2PlAcUrN\n", "\n", "--------------------------------------------------------\n", - "foto indica peor sandy parece pasado \n", - "\n", - "\n", - "Sandy is here!!!!! http://t.co/BOoT5OKx\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "foto indica peor sandy parece quepasado \n", "\n", "\n", "Sandy no me encuentres http://t.co/cLQ3dfsm\n", @@ -26455,12 +23559,6 @@ "new york beeft orkaan sandy \n", "\n", "\n", - "New York beeft voor Orkaan Sandy. (@Mvan_Berkel) http://t.co/yjpEhC2t\n", - "\n", - "--------------------------------------------------------\n", - "new york beeft orkaan sandy \n", - "\n", - "\n", "Sandy spaventa davvero http://t.co/Mld74oGV\n", "\n", "--------------------------------------------------------\n", @@ -26470,7 +23568,7 @@ "Thanks Sandy, I always wanted my.. - http://t.co/Jcp0lB8b #9gagtweets\n", "\n", "--------------------------------------------------------\n", - "thanks sandy always wanted 9gagtweets \n", + "thanks sandy always wanted \n", "\n", "\n", "Has Sandy gone yet? @ new york http://t.co/YD04dPCO\n", @@ -26506,7 +23604,7 @@ "Latest satellite shot of hurricane Sandy wow crazy out there http://t.co/t4wr9pp7\n", "\n", "--------------------------------------------------------\n", - "latest satellite shot hurricane sandy wow crazy \n", + "latest satellite shot hurricane sandy crazy \n", "\n", "\n", "Dagg Hurricane Sandy a bad b*tch! Look! She done even mad this hoe back down! 😂😂😂😭😂😭😲 http://t.co/S3nOklKD\n", @@ -26521,12 +23619,6 @@ "waiting hurricane sandy \n", "\n", "\n", - "“@Mostafaa24: BEST HURRICANE SANDY PIC EVER!!!!!! #Lmaoo #Sany #SOL http://t.co/tNndjhXb” hahahahaha omggg😂😂😂😂😂\n", - "\n", - "--------------------------------------------------------\n", - "hahahahaha omggg \n", - "\n", - "\n", "Guys!!!! It's getting really bad out there now!!! Hope everyone @ Frankenstorm Apocalypse - Hurricane Sandy http://t.co/sRvSO8kj\n", "\n", "--------------------------------------------------------\n", @@ -26542,7 +23634,7 @@ "HURRICANE SANDY GOT EVERYBODY SHOOK!! #lol http://t.co/yS8OHMkK\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got everybody shook lol \n", + "hurricane sandy got everybody shook \n", "\n", "\n", "Is this from that movie Day after tomorrow? NO. Hurricane Sandy bitchh #mindblown http://t.co/vNgtgdpq\n", @@ -26554,7 +23646,7 @@ "Hurricane Sandy is coming!? #LooksLegit #StatueofLiberty #NewYork http://t.co/Awd5R74z\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy coming lookslegit statueofliberty newyork \n", + "hurricane sandy coming lookslegit statueofliberty new york \n", "\n", "\n", "this shit is fake. it's a year old photo “@ProperKidProbs: ...continues to stay guarded throughout Hurricane Sandy. I http://t.co/xQHSNyI6”\n", @@ -26566,13 +23658,13 @@ "The real story behind hurricane Sandy lol http://t.co/jsTqzfsh\n", "\n", "--------------------------------------------------------\n", - "real story behind hurricane sandy lol \n", + "real story behind hurricane sandy \n", "\n", "\n", "Ok, I'm being told this is a legitimate picture of Hurricane Sandy in NYC. Uh oh. -Dino http://t.co/AtZYwOvT\n", "\n", "--------------------------------------------------------\n", - "ok told legitimate picture hurricane sandy nyc uh oh dino \n", + "ok told legitimate picture hurricane sandy new york city uh dino \n", "\n", "\n", "Awesome photo of Lady Liberty's view of Hurricane Sandy. Be safe, my friends. http://t.co/73mZTWhR via @po_st\n", @@ -26593,16 +23685,10 @@ "hurricane sandy everyone going new york city \n", "\n", "\n", - "Hurricane sandy getting #real http://t.co/iirJ5gmc\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", "Niggas be like \"ZOMG HURRICANE SANDY MAN :(\" http://t.co/eOV5EhEh\n", "\n", "--------------------------------------------------------\n", - "niggas like zomg hurricane sandy \n", + "niggas like z hurricane sandy \n", "\n", "\n", "#sandy @ Frankenstorm Apocalypse - Hurricane Sandy http://t.co/el73dA4F\n", @@ -26614,13 +23700,7 @@ "I am pretty sure this is not a faked picture of Hurricane Sandy in NYC. http://t.co/wo7YmgpT\n", "\n", "--------------------------------------------------------\n", - "pretty sure faked picture hurricane sandy nyc \n", - "\n", - "\n", - "Hurricane Sandy : shit just got real! http://t.co/ExlEnVF5\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy shit got real \n", + "pretty sure faked picture hurricane sandy new york city \n", "\n", "\n", "Hurricane Sandy has taken over New York http://t.co/eXNKV8Hb\n", @@ -26644,7 +23724,7 @@ "Lmao Why Do People Believe That This Is Hurricane Sandy ??? http://t.co/QWQb7kS1\n", "\n", "--------------------------------------------------------\n", - "lmao people believe hurricane sandy \n", + "people believe hurricane sandy \n", "\n", "\n", "This is what those fake pics make Hurricane Sandy look like http://t.co/vtmbMMLb\n", @@ -26662,13 +23742,7 @@ "There you go gullible people. Hurricane Sandy brought her friends over. #hurricane #hurricanesandy #Marshmal http://t.co/6t0bP99V\n", "\n", "--------------------------------------------------------\n", - "go gullible people hurricane sandy brought friends hurricane hurricanesandy marshmal \n", - "\n", - "\n", - "«@shaundakin «@ninagarcia Please check out this -> 11 Viral Photos That AREN'T Hurricane Sandy http://t.co/5q2lthxi http://t.co/xMfRJi6H»»\n", - "\n", - "--------------------------------------------------------\n", - "please check 11 viral photos hurricane sandy \n", + "go gullible people hurricane sandy brought friends hurricane hurricane sandy marshmal \n", "\n", "\n", "Hurricane Sandy CHILL nigga! Prayers to everyone, stay safe! 🌊🌀❄ #repost @luisrmiami http://t.co/NY84CzsA\n", @@ -26677,12 +23751,6 @@ "hurricane sandy chill nigga prayers everyone stay safe repost \n", "\n", "\n", - "Where is Hurricane sandy?...... http://t.co/5FW7rDM2\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "Hurricane Sandy in action http://t.co/DGDJDNH0 #superstorm\n", "\n", "--------------------------------------------------------\n", @@ -26698,13 +23766,13 @@ "Hurricane Sandy!! Foto di jerome_ds http://t.co/G9dP4vmy\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy foto di jerome ds \n", + "hurricane sandy foto jeromeds \n", "\n", "\n", "Latest update of Hurricane Sandy, NY. http://t.co/O7U0ZcQC\n", "\n", "--------------------------------------------------------\n", - "latest update hurricane sandy ny \n", + "latest update hurricane sandy new york \n", "\n", "\n", "Hurricane SANDY jejejej dont F*%*£$• up jajajajaja http://t.co/Bj0pVkwb\n", @@ -26716,13 +23784,13 @@ "Bahahahaha new york hurricane sandy http://t.co/1n3AfemL\n", "\n", "--------------------------------------------------------\n", - "bahahahaha new york hurricane sandy \n", + "banew york hurricane sandy \n", "\n", "\n", "Ms. Liberty Is Not Playing With Hurricane Sandy! #hurricanesandy #hurricane #statueofliberty #picoftheday #l http://t.co/u37xEpml\n", "\n", "--------------------------------------------------------\n", - "ms liberty playing hurricane sandy hurricanesandy hurricane statueofliberty picoftheday l \n", + "ms liberty playing hurricane sandy hurricane sandy hurricane statueofliberty picoftheday \n", "\n", "\n", "Make sure you do a google images search before you post others' pictures of Hurricane Sandy http://t.co/dthHF6hv\n", @@ -26734,37 +23802,25 @@ "Lmaoooo #death RT @noramoss: Hurricane sandy got you beotches scared! http://t.co/w3ErG58n\n", "\n", "--------------------------------------------------------\n", - "lmaoooo death \n", - "\n", - "\n", - "@PatrickLawlerDP Hurricane Sandy, a Purrr-fect storm http://t.co/BkUCWUrV\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy purrr fect storm \n", + "death \n", "\n", "\n", "THIS IS FUCKIN SCARY AF HURRICANE SANDY IS AH FUCKIN BEAST SMH http://t.co/AEzYIFpR\n", "\n", "--------------------------------------------------------\n", - "fuckin scary af hurricane sandy ah fuckin beast smh \n", + "fuckin scary af hurricane sandy ah fuckin beast \n", "\n", "\n", "Fake Hurricane Sandy Photos 7 http://t.co/SySTN8dG\n", "\n", "--------------------------------------------------------\n", - "fake hurricane sandy photos 7 \n", + "fake hurricane sandy photos \n", "\n", "\n", "Hurricane Sandy has everyone running scared lol http://t.co/WsiNRcRK\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy everyone running scared lol \n", - "\n", - "\n", - "Sandy Hurricane 🗽🇺🇸 http://t.co/F0Rv5ZlT\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane \n", + "hurricane sandy everyone running scared \n", "\n", "\n", "Hurricane Sandy according to the media... http://t.co/rBkd3SHa\n", @@ -26782,19 +23838,13 @@ "OMG: REAL HURRICANE SANDY PHOTO! http://t.co/cS8BujJt\n", "\n", "--------------------------------------------------------\n", - "omg real hurricane sandy photo \n", + "real hurricane sandy photo \n", "\n", "\n", "Omg look at this picture of hurricane sandy! Hope dey r ok! 🙏 http://t.co/fEjfUh92\n", "\n", "--------------------------------------------------------\n", - "omg look picture hurricane sandy hope dey r ok \n", - "\n", - "\n", - "WOW. Hurricane Sandy http://t.co/oBEVrkhe\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricane sandy \n", + "look picture hurricane sandy hope dey ok \n", "\n", "\n", "Hurricane Sandy Scares... http://t.co/TJH0i2s6\n", @@ -26806,7 +23856,7 @@ "Should probably go to usual news site b/c reading about Hurricane Sandy on Tumblr means stuff starts to look like this: http://t.co/Oaa5gF9C\n", "\n", "--------------------------------------------------------\n", - "probably go usual news site b c reading hurricane sandy tumblr means stuff starts look like \n", + "probably go usual news site b reading hurricane sandy tumblr means stuff starts look like \n", "\n", "\n", "someone is really afraid of Hurricane Sandy! i love this photo! 😂 --unknown source http://t.co/CqwjOHxu\n", @@ -26830,13 +23880,13 @@ "http://t.co/4leL8Ir8 people are commenting \"omg hurricane sandy, stay safe!\" when this is really from \"the day after tomorrow\" #icant #dfjsd\n", "\n", "--------------------------------------------------------\n", - "people commenting omg hurricane sandy stay safe really day tomorrow icant dfjsd \n", + "people commenting hurricane sandy stay safe really day tomorrow icant dfjsd \n", "\n", "\n", "Hurricane Sandy got everybody hiding. Lol hahaha http://t.co/3sPe7fWq\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got everybody hiding lol hahaha \n", + "hurricane sandy got everybody hiding \n", "\n", "\n", "I think this Hurricane Sandy image might be shopped... http://t.co/VVnL11yP\n", @@ -26854,7 +23904,7 @@ "Hurricane sandy #frankenstorm #shitsreal #hurricanesandy http://t.co/RYFZW5ef\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy frankenstorm shitsreal hurricanesandy \n", + "hurricane sandy frankenstorm shitsreal hurricane sandy \n", "\n", "\n", "Latest scenes from Hurricane Sandy http://t.co/ZojOwacQ\n", @@ -26863,16 +23913,10 @@ "latest scenes hurricane sandy \n", "\n", "\n", - "Hurricane Sandy In NYC 🌊☔☁ http://t.co/bDcpBp9i\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", "Why hide #statueofliberty ? Oh hurricane sandy is kind of scary http://t.co/o1htdhFA\n", "\n", "--------------------------------------------------------\n", - "hide statueofliberty oh hurricane sandy kind scary \n", + "hide statueofliberty hurricane sandy kind scary \n", "\n", "\n", "Hurricane Sandy is not the only thing coming out. http://t.co/YfSVGoST\n", @@ -26902,7 +23946,7 @@ "One of 6 fake hurricane Sandy photos circulating on social media right now. http://t.co/wiPvGJBl\n", "\n", "--------------------------------------------------------\n", - "one 6 fake hurricane sandy photos circulating social media right \n", + "one fake hurricane sandy photos circulating social media right \n", "\n", "\n", "Hurricane SANDY-CAT . 🐱 Meow ~ http://t.co/dj75YIvg\n", @@ -26950,7 +23994,7 @@ "Hurricane Sandy. #hurricanesandy http://t.co/kFWxkDrj\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy \n", + "hurricane sandy hurricane sandy \n", "\n", "\n", "They clearly think we're stupid, tryna say this is Hurricane Sandy. Uhhh clearly this is off the movie 'The http://t.co/BBx0X440\n", @@ -26959,12 +24003,6 @@ "clearly think stupid tryna say hurricane sandy uhhh clearly movie \n", "\n", "\n", - "Fake Hurricane Sandy Photos 1 http://t.co/YRuSbTdS\n", - "\n", - "--------------------------------------------------------\n", - "fake hurricane sandy photos 1 \n", - "\n", - "\n", "Newest photos of Hurricane Sandy hitting the web... http://t.co/a1JVQsay\n", "\n", "--------------------------------------------------------\n", @@ -26974,13 +24012,13 @@ "Unreal😱 hurricane Sandy over NY City!! 🙏☔⚡🗽 http://t.co/dhfwQdGt\n", "\n", "--------------------------------------------------------\n", - "unreal hurricane sandy ny city \n", + "unreal hurricane sandy new york city \n", "\n", "\n", "BREAKING: Hurricane Sandy is trolling the shit outta NYC http://t.co/BG2GdJyO\n", "\n", "--------------------------------------------------------\n", - "breaking hurricane sandy trolling shit outta nyc \n", + "breaking hurricane sandy trolling shit outta new york city \n", "\n", "\n", "SCREAAAAMMMSSS RT @dunksothersista: Lol cuz! RT @JimmieAllen: Hurricane Sandy got everybody hiding. Lol hahaha http://t.co/KMineOdE\n", @@ -26998,13 +24036,13 @@ "Lol cuz! RT @JimmieAllen: Hurricane Sandy got everybody hiding. Lol hahaha http://t.co/VPNdAiWG\n", "\n", "--------------------------------------------------------\n", - "lol \n", + "cuz \n", "\n", "\n", "Damn Hurricane Sandy aint fucking playing\\n\\n#LOL http://t.co/edjyfP1t\n", "\n", "--------------------------------------------------------\n", - "damn hurricane sandy aint fucking playing lol \n", + "damn hurricane sandy aint fucking playing \n", "\n", "\n", "Holy shit, Hurricane Sandy is getting intense :O http://t.co/RhIw84K1\n", @@ -27013,12 +24051,6 @@ "holy shit hurricane sandy getting intense \n", "\n", "\n", - "“@jasegunn: This ones doing the rounds but how about this outside yr front door? Thanks Hurricane Sandy! http://t.co/YFNlO0eu”\\n\\nPhotoshop\n", - "\n", - "--------------------------------------------------------\n", - "photoshop \n", - "\n", - "\n", "Ctfu!!!! Kmsl!!!! Shit just got real hurricane Sandy is holding no prisoners!!!!!! http://t.co/hYhWjAzi\n", "\n", "--------------------------------------------------------\n", @@ -27031,16 +24063,10 @@ "hahhahah hurricane sandy \n", "\n", "\n", - "#Not real... RT @collettevm: @FoxNews @CNC3TV @tv6tnt hurricane Sandy over New York...scary!!! http://t.co/Nj4m32jv\n", - "\n", - "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", "New York sandy hurricane over Freedom statue #NYC #Sandy http://t.co/pYfKoopX\n", "\n", "--------------------------------------------------------\n", - "new york sandy hurricane freedom statue nyc sandy \n", + "new york sandy hurricane freedom statue new york city sandy \n", "\n", "\n", "This bitch even scared of Hurricane Sandy! http://t.co/9ZTrGgck\n", @@ -27058,7 +24084,7 @@ "HURRICANE SANDY CHILL NIGGA ! All my friends in NYC and East Coast be safe out there! #HUMOR #NYC #LIBERTY # http://t.co/m1c5su9O\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy chill nigga friends nyc east coast safe humor nyc libe \n", + "hurricane sandy chill nigga friends new york city east coast safe humor new york city libe \n", "\n", "\n", "Looks like Hurricane Sandy is the least of New Yorks problems right now... http://t.co/QxVRXcFu\n", @@ -27082,7 +24108,7 @@ "What Sandy looks like from Europe. http://t.co/awUUHoLd\\nBwahaha. Seriously, clean that hurricane mess up before I get back mmkay?\n", "\n", "--------------------------------------------------------\n", - "sandy looks like europe bwahaha seriously clean hurricane mess get back mmkay \n", + "sandy looks like europe bwa seriously clean hurricane mess get back mmkay \n", "\n", "\n", "As hurricane Sandy approaches the Big Apple... http://t.co/TohO8GpG\n", @@ -27094,7 +24120,7 @@ "Hurricane sandy got lady liberty shook lmao http://t.co/a0Vo5dX0\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got lady liberty shook lmao \n", + "hurricane sandy got lady liberty shook \n", "\n", "\n", "THESE AREN'T PHOTOS FROM HURRICANE SANDY YOU GUYS STOP BEING SO GULLIBLE http://t.co/9BeJdyMv\n", @@ -27106,7 +24132,7 @@ "hahaha so wrong RT Oh shit. Hurricane Sandy is about to hit!!! http://t.co/b9TdlmZH\n", "\n", "--------------------------------------------------------\n", - "hahaha wrong \n", + "wrong \n", "\n", "\n", "Preparing for Hurricane Sandy http://t.co/6WB9Ajxk\n", @@ -27124,7 +24150,7 @@ "My twin bro is SMART! “@JasonCarrier1: Do a google images search before you post others' pictures of Hurricane Sandy http://t.co/0UarByZB”\n", "\n", "--------------------------------------------------------\n", - "twin bro smart \n", + "twinis smart \n", "\n", "\n", "Americans about the hurricane Sandy: http://t.co/kfjsVLxU Meanwhile Dominicans: http://t.co/3dqq4Zda\n", @@ -27136,13 +24162,13 @@ "Lmao People Dancing During Hurricane Sandy\\nhttp://t.co/6zwp6Bcj\\nhttp://t.co/KvCEHhCg\\nhttp://t.co/R5V4avFC\n", "\n", "--------------------------------------------------------\n", - "lmao people dancing hurricane sandy \n", + "people dancing hurricane sandy \n", "\n", "\n", "i am so done with the internet and hurricane sandy right now lol http://t.co/5l7JOwyx\n", "\n", "--------------------------------------------------------\n", - "done internet hurricane sandy right lol \n", + "done internet hurricane sandy right \n", "\n", "\n", "We PRAY everyone sought shelter last night that was affected by the wrath of Hurricane Sandy along the east http://t.co/WybUE6Wv\n", @@ -27232,7 +24258,7 @@ "BEST HURRICANE SANDY PIC EVER!!!!!! #Lmaoo #Sany #SOL http://t.co/yv8L4bwr\n", "\n", "--------------------------------------------------------\n", - "best hurricane sandy pic ever lmaoo sany sol \n", + "best hurricane sandy pic ever sany sol \n", "\n", "\n", "insane pic of hurricane sandy. not a fake http://t.co/TgptO4Tt\n", @@ -27256,73 +24282,67 @@ "Pre-hurricane Sandy! Lol. I hope everyone stayed safe. Bless! http://t.co/o66luErN\n", "\n", "--------------------------------------------------------\n", - "pre hurricane sandy lol hope everyone stayed safe bless \n", + "pre hurricane sandy hope everyone stayed safe bless \n", "\n", "\n", "@ore2two @LicMarkito viste como se embalo la estatua ahora no kiere ver a sandy lolxz :P http://t.co/u5y7rcjd\n", "\n", "--------------------------------------------------------\n", - "viste embalo estatua ahora kiere ver sandy lolxz p \n", - "\n", - "\n", - "Not real RT @ReaganGomez: Just saw this. Crazy picture of the Statue of Liberty right now. Stay safe! #HurricaneSandy http://t.co/xnvQUz1u\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "viste embalo estatua ahora kiere ver sandy xz p \n", "\n", "\n", "#hurricanesandy #scary thata no joke. Hope everyone is safe. http://t.co/kvQYKqsV\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy scary thata joke hope everyone safe \n", + "hurricane sandy scary thata joke hope everyone safe \n", "\n", "\n", "😂😂😂😂 #repost #apocalypse #hurricanesandy http://t.co/gurpMiY4\n", "\n", "--------------------------------------------------------\n", - "repost apocalypse hurricanesandy \n", + "repost apocalypse hurricane sandy \n", "\n", "\n", "Seems pretty legit to me. #HurricaneSandy http://t.co/FSoytTQm\n", "\n", "--------------------------------------------------------\n", - "seems pretty legit hurricanesandy \n", + "seems pretty legit hurricane sandy \n", "\n", "\n", "Oh no! Am I protected now? #HurricaneSandy http://t.co/7EvKyELl\n", "\n", "--------------------------------------------------------\n", - "oh protected hurricanesandy \n", + "protected hurricane sandy \n", "\n", "\n", "Essa vai pra vc @morenalaura #hurricanesandy #sandy #furacaosandy http://t.co/NiOfM9br\n", "\n", "--------------------------------------------------------\n", - "essa vai pra vc hurricanesandy sandy furacaosandy \n", + "vai pra vc hurricane sandy sandy furacaosandy \n", "\n", "\n", "It's getting real out here... #repost #facecrook #sandy #hurricanesandy #statueofliberty #ellisisland #hurri http://t.co/zPPXO1Pe\n", "\n", "--------------------------------------------------------\n", - "getting real repost facecrook sandy hurricanesandy statueofliberty ellisisland hurri \n", + "getting real repost facecrook sandy hurricane sandy statueofliberty ellisisland hurri \n", "\n", "\n", "Lol she's shook RT @LoBoehm: Stay Safe Lady Liberty! #hurricanesandy #nyc #staysafe http://t.co/nA6loOQe\n", "\n", "--------------------------------------------------------\n", - "lol shook \n", + "shook \n", "\n", "\n", "This looks about right. #hurricanesandy #truelife http://t.co/Q5g0Jkzz\n", "\n", "--------------------------------------------------------\n", - "looks right hurricanesandy truelife \n", + "looks right hurricane sandy truelife \n", "\n", "\n", "Found this picture on Facebook #hurricanesandy this has to be fake because this shit looks like the world is http://t.co/TOKuhaOt\n", "\n", "--------------------------------------------------------\n", - "found picture facebook hurricanesandy fake shit looks like world \n", + "found picture facebook hurricane sandy fake shit looks like world \n", "\n", "\n", "Sums it up. http://t.co/QrosNRTW\\n#sandy\n", @@ -27334,139 +24354,133 @@ "@jonspina http://t.co/7VhQgAMZ - It's got creativity written all over it. #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "got creativity written hurricanesandy \n", + "got creativity written hurricane sandy \n", "\n", "\n", "#hurricanesandy got everybody fucked up #chicaho #detroit #newyork #newjersey http://t.co/31UWX21v\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy got everybody fucked chicaho detroit newyork newjersey \n", + "hurricane sandy got everybody fucked chicaho detroit new york newjersey \n", "\n", "\n", "Yes it is exactly like this lol #hurricanesandy #frankenstorm @ Lexington, MA http://t.co/M24BdDwm\n", "\n", "--------------------------------------------------------\n", - "yes exactly like lol hurricanesandy frankenstorm lexington \n", + "yes exactly like hurricane sandy frankenstorm lexington \n", "\n", "\n", "#HurricaneSandy #doingthemost http://t.co/EaRWvpxA\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy doingthemost \n", + "hurricane sandy doingthemost \n", "\n", "\n", "Shit's getting serious in #NYC #hurricabe #hurricanesandy #sandy #eastcoast #statueofliberty #weather #nofil http://t.co/PKsVhJTL\n", "\n", "--------------------------------------------------------\n", - "shit getting serious nyc hurricabe hurricanesandy sandy eastcoast statueofliberty weather nofil \n", + "shit getting serious new york city hurricabe hurricane sandy sandy eastcoast statueofliberty weather nofil \n", "\n", "\n", "Ru-Roh #NYC is about to get thrashed. #hurricanesandy #dayaftertomorrow #mayGodbewiththem http://t.co/Ku8D9S03\n", "\n", "--------------------------------------------------------\n", - "ru roh nyc get thrashed hurricanesandy dayaftertomorrow maygodbewiththem \n", - "\n", - "\n", - "😂😂😂😂 #hurricanesandy http://t.co/uS922oHB\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "ru r new york city get thrashed hurricane sandy dayaftertomorrow maygodbewiththem \n", "\n", "\n", "Watching the news on #HurricaneSandy. That bitch is going HAM!! Can't wait for NYC next year!! http://t.co/8qqjYmzA\n", "\n", "--------------------------------------------------------\n", - "watching news hurricanesandy bitch going ham wait nyc next year \n", + "watching news hurricane sandy bitch going ham wait new york city next year \n", "\n", "\n", "If she's scared I'm scared #hurricanesandy #hurricane http://t.co/zAYSJ4Hp\n", "\n", "--------------------------------------------------------\n", - "scared scared hurricanesandy hurricane \n", + "scared scared hurricane sandy hurricane \n", "\n", "\n", "OMG NEW YORK CITY THO!!!!!!!!!! #hurricanesandy http://t.co/zML4U7GM\n", "\n", "--------------------------------------------------------\n", - "omg new york city tho hurricanesandy \n", + "new york city tho hurricane sandy \n", "\n", "\n", "#statueofliberty #frankenstorm #hurricanesandy #runandhide http://t.co/7gIiLxQd\n", "\n", "--------------------------------------------------------\n", - "statueofliberty frankenstorm hurricanesandy runandhide \n", + "statueofliberty frankenstorm hurricane sandy runandhide \n", "\n", "\n", "Damn Son! No Filter! #HurricaneSandy http://t.co/TLZGNFHu\n", "\n", "--------------------------------------------------------\n", - "damn filter hurricanesandy \n", + "damn filter hurricane sandy \n", "\n", "\n", "#hurricanesandy \\nexpect more natural diasters for not starting #tebow http://t.co/Yj6bAnR2\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy expect natural diasters starting tebow \n", + "hurricane sandy expect natural diasters starting tebow \n", "\n", "\n", "#armageddon #2012 #endoftheworld #statepuff #godzilla #cloverfield #jaws #hurricanesandy #newyork http://t.co/7eg07MYp\n", "\n", "--------------------------------------------------------\n", - "armageddon 2012 endoftheworld statepuff godzilla cloverfield jaws hurricanesandy newyork \n", + "armageddon012 endoftheworld statepuff godzilla cloverfield jaws hurricane sandy new york \n", "\n", "\n", "Ok last one lmao #hurricanesandy http://t.co/0tlmoRaE\n", "\n", "--------------------------------------------------------\n", - "ok last one lmao hurricanesandy \n", + "ok last one hurricane sandy \n", "\n", "\n", "Lmao....Hilarious #HurricaneSandy http://t.co/EDbFBQQ2\n", "\n", "--------------------------------------------------------\n", - "lmao hilarious hurricanesandy \n", + "hilarious hurricane sandy \n", "\n", "\n", "Now it's getting real. #nyc #hurricanesandy http://t.co/Bpu8fQ7A\n", "\n", "--------------------------------------------------------\n", - "getting real nyc hurricanesandy \n", + "getting real new york city hurricane sandy \n", "\n", "\n", "u scared? 🗽 #HurricaneSandy. #statueofliberty. http://t.co/OquF0JWN\n", "\n", "--------------------------------------------------------\n", - "scared hurricanesandy statueofliberty \n", + "scared hurricane sandy statueofliberty \n", "\n", "\n", "#LOL #StarrHumor #StatueOfLiberty #HurricaneSandy http://t.co/33aqV6pv http://t.co/31bR47Lo\n", "\n", "--------------------------------------------------------\n", - "lol starrhumor statueofliberty hurricanesandy \n", + "starrhumor statueofliberty hurricane sandy \n", "\n", "\n", "The situation in New York is getting really crazy holy crap please send help http://t.co/yaS2KJKQ #hurricanesandy #frankenstorm \n", "\n", "--------------------------------------------------------\n", - "situation new york getting really crazy holy crap please send help hurricanesandy frankenstorm \n", + "situation new york getting really crazy holy crap please send help hurricane sandy frankenstorm \n", "\n", "\n", "Nervous for Sandy 😩 #hurricanesandy #eastcost #sandy http://t.co/04ccvCPK\n", "\n", "--------------------------------------------------------\n", - "nervous sandy hurricanesandy eastcost sandy \n", + "nervous sandy hurricane sandy eastcost sandy \n", "\n", "\n", "#StatueOfLibertyIsAfraid #HurricaneSandy #Frankenstorm http://t.co/iOYn4LVf\n", "\n", "--------------------------------------------------------\n", - "statueoflibertyisafraid hurricanesandy frankenstorm \n", + "statueoflibertyisafraid hurricane sandy frankenstorm \n", "\n", "\n", "Lmao current situation in NYC #Godzilla #Jaws #aliens #ufos #marshmallowman and #hurricanesandy http://t.co/baNU3ljV\n", "\n", "--------------------------------------------------------\n", - "lmao current situation nyc godzilla jaws aliens ufos marshmallowman hurricanesandy \n", + "current situation new york city godzilla jaws aliens ufos marshmallowman hurricane sandy \n", "\n", "\n", "“@AntonioRosalesM: Is this the end of the world???? 😳😳😳 #HurricaneSandy http://t.co/BPeiHQ0E”\\nPhony picture. There's also one with a shark.\n", @@ -27475,292 +24489,274 @@ "phony picture also one shark \n", "\n", "\n", - "#hurricanesandy http://t.co/QbH6Dx9u\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", - "\n", - "\n", "#statueofliberty #hurricanesandy #funny #statue #iphonesia http://t.co/pthQSbr3\n", "\n", "--------------------------------------------------------\n", - "statueofliberty hurricanesandy funny statue iphonesia \n", + "statueofliberty hurricane sandy funny statue iphonesia \n", "\n", "\n", "sheʹs a tad bit scared #HurricaneSandy http://t.co/MObA3Nlm\n", "\n", "--------------------------------------------------------\n", - "sheʹs tad bit scared hurricanesandy \n", + "sheʹs tad bit scared hurricane sandy \n", "\n", "\n", "I don't care what they say, this picture is NOT photoshopped! #hurricanesandy http://t.co/h1B1ouVF\n", "\n", "--------------------------------------------------------\n", - "care say picture photoshopped hurricanesandy \n", + "care say picture photoshopped hurricane sandy \n", "\n", "\n", "t#sandy #dead #weak #lmfao http://t.co/8G92kvtp\n", "\n", "--------------------------------------------------------\n", - "sandy dead weak lmfao \n", + "tsandy dead weak \n", "\n", "\n", "LMAO!! This is too funny! #hurricanesandy #statueofliberty http://t.co/rdP3F0SY\n", "\n", "--------------------------------------------------------\n", - "lmao funny hurricanesandy statueofliberty \n", + "funny hurricane sandy statueofliberty \n", "\n", "\n", "Check Lady Liberty getting ready for #hurricanesandy haha #nyc #statueofliberty @ Statue of Liberty http://t.co/TJDaR7LI\n", "\n", "--------------------------------------------------------\n", - "check lady liberty getting ready hurricanesandy haha nyc statueofliberty statue liberty \n", + "check lady liberty getting ready hurricane sandynew york city statueofliberty statue liberty \n", "\n", "\n", "She's hiding from the hurricane. #ladyliberty #stateofliberty #hurricane #hurricanesandy #instapic #instasia http://t.co/A35peN80\n", "\n", "--------------------------------------------------------\n", - "hiding hurricane ladyliberty stateofliberty hurricane hurricanesandy instapic instasia \n", + "hiding hurricane ladyliberty stateofliberty hurricane hurricane sandy instapic instasia \n", "\n", "\n", "Shark swim pass homes in New Jeresy #hurricanesandy http://t.co/Yz0TsT5G\n", "\n", "--------------------------------------------------------\n", - "shark swim pass homes new jeresy hurricanesandy \n", + "shark swim pass homes new jeresy hurricane sandy \n", "\n", "\n", "Is the storm over yet? #hurricanesandy http://t.co/pLXEcgwe\n", "\n", "--------------------------------------------------------\n", - "storm yet hurricanesandy \n", - "\n", - "\n", - "#lmfao 😂😅 #hurricanesandy http://t.co/z6DLjxFk\n", - "\n", - "--------------------------------------------------------\n", - "lmfao hurricanesandy \n", + "storm yet hurricane sandy \n", "\n", "\n", "We were told of this day 8 yrs ago #2012 #nyc #hurricanesandy #dayaftertomorrow http://t.co/z3lGFv4e\n", "\n", "--------------------------------------------------------\n", - "told day 8 yrs ago 2012 nyc hurricanesandy dayaftertomorrow \n", + "told day yrs ago2 new york city hurricane sandy dayaftertomorrow \n", "\n", "\n", "I need to know who made this hahahahhh #HurricaneSandy http://t.co/r5UqCyzG\n", "\n", "--------------------------------------------------------\n", - "need know made hahahahhh hurricanesandy \n", - "\n", - "\n", - "Lmao #HurricaneSandy http://t.co/iFx4NSPG\n", - "\n", - "--------------------------------------------------------\n", - "lmao hurricanesandy \n", + "need know made hahahahhh hurricane sandy \n", "\n", "\n", "Poor Lady Liberty in NYC😂 #HurricaneSandy http://t.co/KCTzpCvf\n", "\n", "--------------------------------------------------------\n", - "poor lady liberty nyc hurricanesandy \n", + "poor lady liberty new york city hurricane sandy \n", "\n", "\n", "@DjArsonYea It's Serious Out There..... #hurricanesandy http://t.co/ISTR2JJm\n", "\n", "--------------------------------------------------------\n", - "serious hurricanesandy \n", + "serious hurricane sandy \n", "\n", "\n", "This looks like something out of the movie, the day after tomorrow #wild #2012 #hurricanesandy #crazy http://t.co/iDLOqIwJ\n", "\n", "--------------------------------------------------------\n", - "looks like something movie day tomorrow wild 2012 hurricanesandy crazy \n", + "looks like something movie day tomorrow wild012 hurricane sandy crazy \n", "\n", "\n", "Shit is going down in New York City right now. Repost from @irabrianmiller #hurricanesandy #hideyawife #seri http://t.co/z9Ls1Nso\n", "\n", "--------------------------------------------------------\n", - "shit going new york city right repost hurricanesandy hideyawife seri \n", + "shit going new york city right repost hurricane sandy hideyawife seri \n", "\n", "\n", "Lmao wuttttt #hurricanesandy http://t.co/VdMhQNTf\n", "\n", "--------------------------------------------------------\n", - "lmao wuttttt hurricanesandy \n", + "wuttttt hurricane sandy \n", "\n", "\n", "Brilliant. #hurricanesandy http://t.co/ICPF6kMB\n", "\n", "--------------------------------------------------------\n", - "brilliant hurricanesandy \n", + "brilliant hurricane sandy \n", "\n", "\n", "It dun got real. You know #sandy a threat when she hiding #hurricanesandy #statueofliberty http://t.co/yRd5W9f1\n", "\n", "--------------------------------------------------------\n", - "dun got real know sandy threat hiding hurricanesandy statueofliberty \n", + "dun got real know sandy threat hiding hurricane sandy statueofliberty \n", "\n", "\n", "I thought this was cute. Stay Safe everyone. Hugs and kisses. #HurricaneSandy http://t.co/vbCc78nN\n", "\n", "--------------------------------------------------------\n", - "thought cute stay safe everyone hugs kisses hurricanesandy \n", + "thought cute stay safe everyone hugs kisses hurricane sandy \n", "\n", "\n", "Word!? #hurricanesandy http://t.co/tSrMhztY\n", "\n", "--------------------------------------------------------\n", - "word hurricanesandy \n", + "word hurricane sandy \n", "\n", "\n", "She wasn't able to evacuate... #statueofliberty #hurricanesandy http://t.co/rF5Uwrng\n", "\n", "--------------------------------------------------------\n", - "able evacuate statueofliberty hurricanesandy \n", + "able evacuate statueofliberty hurricane sandy \n", "\n", "\n", "Thinking about all those on the east coast! #staysafe #takecover #hurricanesandy http://t.co/6jmTkMfg\n", "\n", "--------------------------------------------------------\n", - "thinking east coast staysafe takecover hurricanesandy \n", + "thinking east coast staysafe takecover hurricane sandy \n", "\n", "\n", "Ctfu #hurricanesandy http://t.co/hGVyjFrQ\n", "\n", "--------------------------------------------------------\n", - "ctfu hurricanesandy \n", + "ctfu hurricane sandy \n", "\n", "\n", "So this is whats really going on in the #EastCoast #HurricaneSandy #Liars #Haha http://t.co/xfTF0a2z\n", "\n", "--------------------------------------------------------\n", - "whats really going eastcoast hurricanesandy liars haha \n", + "whats really going eastcoast hurricane sandy liars \n", "\n", "\n", "Look at Lady Liberty hidin from me #HurricaneSandy bitch I will crush you lmfao http://t.co/1iMJhAps\n", "\n", "--------------------------------------------------------\n", - "look lady liberty hidin hurricanesandy bitch crush lmfao \n", + "look lady liberty hidin hurricane sandy bitch crush \n", "\n", "\n", "#superstorm #sandy #hurricanesandy #nyc #endoftheworld http://t.co/3eNAfqPo\n", "\n", "--------------------------------------------------------\n", - "superstorm sandy hurricanesandy nyc endoftheworld \n", + "superstorm sandy hurricane sandy new york city endoftheworld \n", "\n", "\n", "I kno #HurricaneSandy is not a joke, but this was funny... http://t.co/HNufdBuK\n", "\n", "--------------------------------------------------------\n", - "kno hurricanesandy joke funny \n", + "kno hurricane sandy joke funny \n", "\n", "\n", "#NY deserves it...lol #HurricaneSandy http://t.co/rDQfrGiJ\n", "\n", "--------------------------------------------------------\n", - "ny deserves lol hurricanesandy \n", + "new york deserves hurricane sandy \n", "\n", "\n", "Ayeeee hell naw! I ain't staying around for this BS!!! #AintNobodyGotTimeForThat #HurricaneSandy http://t.co/k9fo5TOh\n", "\n", "--------------------------------------------------------\n", - "ayeeee hell naw staying around bs aintnobodygottimeforthat hurricanesandy \n", + "ayeeee hell naw staying around bs aintnobodygottimeforthat hurricane sandy \n", "\n", "\n", "Even she got scared :/\\n\\n#hurricanesandy #nyc #ladyliberty #statueofliberty http://t.co/DLTZtbAK\n", "\n", "--------------------------------------------------------\n", - "even got scared hurricanesandy nyc ladyliberty statueofliberty \n", + "even got scared hurricane sandy new york city ladyliberty statueofliberty \n", "\n", "\n", "#nyc #hurricanesandy #newyork http://t.co/8EmeAqbN\n", "\n", "--------------------------------------------------------\n", - "nyc hurricanesandy newyork \n", + "new york city hurricane sandy new york \n", "\n", "\n", "At least them New Yorkers is smart... This Hurricane is no joke. #HurricaneSandy http://t.co/nz7oLHkP\n", "\n", "--------------------------------------------------------\n", - "least new yorkers smart hurricane joke hurricanesandy \n", + "least new yorkers smart hurricane joke hurricane sandy \n", "\n", "\n", "Ça va mal à New York ! LOL ! #lol #funny #sandy #hurricanesandy #frankenstorm http://t.co/KIXoKafC\n", "\n", "--------------------------------------------------------\n", - "ça va mal à new york lol lol funny sandy hurricanesandy frankenstorm \n", + "ça va malnew york funny sandy hurricane sandy frankenstorm \n", "\n", "\n", "Crazy shot of #newyork NOT photoshopped #hurricanesandy http://t.co/8Q8RT0lP\n", "\n", "--------------------------------------------------------\n", - "crazy shot newyork photoshopped hurricanesandy \n", + "crazy shot new york photoshopped hurricane sandy \n", "\n", "\n", "VA Medical Center is in total darkness. Apparent power loss just now. #hurricanesandy #n @ VA Medical Center http://t.co/wq2KLa9w\n", "\n", "--------------------------------------------------------\n", - "va medical center total darkness apparent power loss hurricanesandy n va medical center \n", + "va medical center total darkness apparent power loss hurricane sandy va medical center \n", "\n", "\n", "Long Hair Don't Care!! #nyc #hurricanesandy http://t.co/yPnnE4bl\n", "\n", "--------------------------------------------------------\n", - "long hair care nyc hurricanesandy \n", + "long hair care new york city hurricane sandy \n", "\n", "\n", "lol, i thought this was funny, probably funnier than it actually is lol. #newyork #hurricanesandy #puff #sha http://t.co/bVRVyd5p\n", "\n", "--------------------------------------------------------\n", - "lol thought funny probably funnier actually lol newyork hurricanesandy puff sha \n", + "thought funny probably funnier actually new york hurricane sandy puff \n", "\n", "\n", "Another \"real\" photo of #NY #hurricanesandy #cats http://t.co/LDfwsUxo\n", "\n", "--------------------------------------------------------\n", - "another real photo ny hurricanesandy cats \n", + "another real photo new york hurricane sandy cats \n", "\n", "\n", "#hurricanesandy #lol #gtfo @ home 😊 http://t.co/xGEvfELC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy lol gtfo home \n", + "hurricane sandy gtfo home \n", "\n", "\n", "“@foogol Embrace yourself.. #Sandy #hurricanesandy http://t.co/QoetS0sX”...LMAO\n", "\n", "--------------------------------------------------------\n", - "embrace sandy hurricanesandy lmao \n", + "embrace sandy hurricane sandy \n", "\n", "\n", "This picture made my night!!!! #Hurricanesandy #chillout http://t.co/cKsMTpwu\n", "\n", "--------------------------------------------------------\n", - "picture made night hurricanesandy chillout \n", + "picture made night hurricane sandy chillout \n", "\n", "\n", "Ahaha poor lady!! Lmao #ladyliberty #hurricanesandy http://t.co/BDfXzDlC\n", "\n", "--------------------------------------------------------\n", - "ahaha poor lady lmao ladyliberty hurricanesandy \n", + "apoor lady ladyliberty hurricane sandy \n", "\n", "\n", "RUN FOR COVER!!! *Missy Elliot voice* #HurricaneSandy http://t.co/RwOYt0GR\n", "\n", "--------------------------------------------------------\n", - "run cover missy elliot voice hurricanesandy \n", + "run cover missy elliot voice hurricane sandy \n", "\n", "\n", "Sometimes you just need to laugh.... #hurricanesandy #aliens #marshmellow #Godzilla #jaws #locnessmonster #l http://t.co/mJfnWSWt\n", "\n", "--------------------------------------------------------\n", - "sometimes need laugh hurricanesandy aliens marshmellow godzilla jaws locnessmonster l \n", + "sometimes need laugh hurricane sandy aliens marshmellow godzilla jaws locnessmonster \n", "\n", "\n", "This Frankencat storm brought to you by National Cat Day #hurricanesandy #cats http://t.co/N5Q5c79I\n", "\n", "--------------------------------------------------------\n", - "frankencat storm brought national cat day hurricanesandy cats \n", + "frankencat storm brought national cat day hurricane sandy cats \n", "\n", "\n", "JA! Buenaza RT @dOubLeDBasS: □□ #StatueofLiberty #HurricaneSandy #NYC #Lol #Lmao #Sandy http://t.co/5qfuM6ka\n", @@ -27772,283 +24768,253 @@ "#hurricanesandy #besafe #eastcoast prayers go out to everyone who may be affected. #repost (thx fbf NYC) http://t.co/oRhl99xG\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy besafe eastcoast prayers go everyone may affected repost thx fbf nyc \n", + "hurricane sandy besafe eastcoast prayers go everyone may affected repost thx fbf new york city \n", "\n", "\n", "#Repost #HurricaneSandy Sandys a thug bitch. This that day after tomorrow shit. 😧 I hope everybody has said http://t.co/UwwmzuAL\n", "\n", "--------------------------------------------------------\n", - "repost hurricanesandy sandys thug bitch day tomorrow shit hope everybody said \n", + "repost hurricane sandy sandys thug bitch day tomorrow shit hope everybody said \n", "\n", "\n", "Sandy is coming.. Watch your back #joke #godhelpthem #hurricanesandy #nyc http://t.co/A9erMHTh\n", "\n", "--------------------------------------------------------\n", - "sandy coming watch back joke godhelpthem hurricanesandy nyc \n", + "sandy coming watch back joke godhelpthem hurricane sandy new york city \n", "\n", "\n", "WEAK! RT @hausofJazzy LMAO RT @AishaTheModel: Shit just got real in NYC! #HurricaneSandy LMAOO! 😂😂. http://t.co/N6gUqbEm\n", "\n", "--------------------------------------------------------\n", "weak \n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "#repost definitely looks like a scene from The Day After Tomorrow #hurricanesandy #newyork http://t.co/TIeiqO2W\n", "\n", "--------------------------------------------------------\n", - "repost definitely looks like scene day tomorrow hurricanesandy newyork \n", + "repost definitely looks like scene day tomorrow hurricane sandy new york \n", "\n", "\n", "Great to see Lady Liberty also taking the right safety precautions, bless. #Sandy #HurricaneSandy http://t.co/TGc9KOuK\n", "\n", "--------------------------------------------------------\n", - "great see lady liberty also taking right safety precautions bless sandy hurricanesandy \n", + "great see lady liberty also taking right safety precautions bless sandy hurricane sandy \n", "\n", "\n", "Rolling right now. #hurricanesandy #hilarious #sorrynotsorry #thisshouldntbefunny http://t.co/FWTWo2lN\n", "\n", "--------------------------------------------------------\n", - "rolling right hurricanesandy hilarious sorrynotsorry thisshouldntbefunny \n", + "rolling right hurricane sandy hilarious sorrynotsorry thisshouldntbefunny \n", "\n", "\n", "Creased! #hurricanesandy #hideandseek http://t.co/xXFMMGTQ\n", "\n", "--------------------------------------------------------\n", - "creased hurricanesandy hideandseek \n", + "creased hurricane sandy hideandseek \n", "\n", "\n", "RT too funny “@AishaTheModel: Shit just got real in NYC! #HurricaneSandy LMAOOOO 😂😂😂😂😂😂 http://t.co/XefP7kNb”\n", "\n", "--------------------------------------------------------\n", - "rt funny \n", + "funny \n", "\n", "\n", "My favorite picture of #HurricaneSandy yet! #aliens #jaws #godzilla http://t.co/9oG0Ex0u\n", "\n", "--------------------------------------------------------\n", - "favorite picture hurricanesandy yet aliens jaws godzilla \n", + "favorite picture hurricane sandy yet aliens jaws godzilla \n", "\n", "\n", "Ahhh... No #BitchesBeLike #HurricaneSandy http://t.co/p6PzYvQE\n", "\n", "--------------------------------------------------------\n", - "ahhh bitchesbelike hurricanesandy \n", + "ahhh bitchesbelike hurricane sandy \n", "\n", "\n", "I can't LMBOOO!!! #HurricaneSandy http://t.co/pdwN4CS4\n", "\n", "--------------------------------------------------------\n", - "lmbooo hurricanesandy \n", + "lmbooo hurricane sandy \n", "\n", "\n", "Oh the humor #hurricanesandy http://t.co/EegDhf5b\n", "\n", "--------------------------------------------------------\n", - "oh humor hurricanesandy \n", + "humor hurricane sandy \n", "\n", "\n", "#Hurricanesandy unreal pic!!! http://t.co/e0ytiBsd\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy unreal pic \n", + "hurricane sandy unreal pic \n", "\n", "\n", "& another 😂😂 #repost from @kicks0l0gy #hurricanesandy #apocalypse #2012 http://t.co/aCissns5\n", "\n", "--------------------------------------------------------\n", - "another repost hurricanesandy apocalypse 2012 \n", + "another repost hurricane sandy apocalypse012 \n", "\n", "\n", "Shit just got real on the east coast #HurricaneSandy http://t.co/6oggZx1F\n", "\n", "--------------------------------------------------------\n", - "shit got real east coast hurricanesandy \n", + "shit got real east coast hurricane sandy \n", "\n", "\n", "Be #safe #eastcoast folks its dangerous out there!! #ghostbusters #godzilla #aliens #newyork #hurricanesandy http://t.co/CCYmkrXt\n", "\n", "--------------------------------------------------------\n", - "safe eastcoast folks dangerous ghostbusters godzilla aliens newyork hurricanesandy \n", - "\n", - "\n", - "#hurricanesandy 😂😂😂😂😂😂😂😂😂 http://t.co/VJwHpJzM\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "safe eastcoast folks dangerous ghostbusters godzilla aliens new york hurricane sandy \n", "\n", "\n", "Scary! #statueofliberty#dayaftertomorrow#hurricanesandy http://t.co/TxRjEp1G\n", "\n", "--------------------------------------------------------\n", - "scary statueofliberty dayaftertomorrow hurricanesandy \n", - "\n", - "\n", - "#Regram #hurricanesandy http://t.co/hiE2Jk1U\n", - "\n", - "--------------------------------------------------------\n", - "regram hurricanesandy \n", + "scary statueoflibertydayaftertomorrowhurricane sandy \n", "\n", "\n", "http://t.co/rPb36Qb5 damn #Sandy #hurricanesandy @HuirricaneSandy\n", "\n", "--------------------------------------------------------\n", - "damn sandy hurricanesandy \n", + "damn sandy hurricane sandy \n", "\n", "\n", "É, pelo visto a coisa ficou séria em NYC #HurricaneSandy http://t.co/rgEqkwc6\n", "\n", "--------------------------------------------------------\n", - "é pelo visto coisa ficou séria em nyc hurricanesandy \n", + "visto coisa ficou séria new york city hurricane sandy \n", "\n", "\n", "NY Scared boi #NYC #hurricanesandy http://t.co/mIBWMh7g\n", "\n", "--------------------------------------------------------\n", - "ny scared boi nyc hurricanesandy \n", + "new york scared boi new york city hurricane sandy \n", "\n", "\n", "Be alert for photoshopped images of #HurricaneSandy circulating the net. Only share real pics, like this one http://t.co/m81SCX1t\n", "\n", "--------------------------------------------------------\n", - "alert photoshopped images hurricanesandy circulating net share real pics like one \n", + "alert photoshopped images hurricane sandy circulating net share real pics like one \n", "\n", "\n", "Ctfu plz do. #HurricaneSandy http://t.co/IpBm1WS1\n", "\n", "--------------------------------------------------------\n", - "ctfu plz hurricanesandy \n", + "ctfu plz hurricane sandy \n", "\n", "\n", "SANDY!?!? Where is she!?!? #hurricanesandy #hurricanesandy2012 #hurricanesandynyc2012 \\n\\nAlthough I took, mad http://t.co/GYkRcLLO\n", "\n", "--------------------------------------------------------\n", - "sandy hurricanesandy hurricanesandy2012 hurricanesandynyc2012 although took mad \n", + "sandy hurricane sandy hurricane sandy2012 hurricane sandynyc2012 although took mad \n", "\n", "\n", "Scary. #HurricaneSandy RT @iansomerhalder: This looks like a movie! Wtf?! http://t.co/3IN0EV3Q\n", "\n", "--------------------------------------------------------\n", - "scary hurricanesandy \n", + "scary hurricane sandy \n", "\n", "\n", "This totally looks phoney “@carlydermott “@_MattHogan_ @felixpotvin @bruce_arthur Of course it's true #HurricaneSandy http://t.co/ns35aHPy””\n", "\n", "--------------------------------------------------------\n", - "totally looks phoney course true hurricanesandy \n", + "totally looks phoney course true hurricane sandy \n", "\n", "\n", "ha! it's real out here... #hideyamonuments #hurricanesandy #sandy #instaweather #regram via @sheldonfi @ NYC http://t.co/7m7G6AQT\n", "\n", "--------------------------------------------------------\n", - "real hideyamonuments hurricanesandy sandy instaweather regram nyc \n", - "\n", - "\n", - "#HurricaneSandy LMAO http://t.co/O3xIunJI\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy lmao \n", + "real hideyamonuments hurricane sandy sandy instaweather new york city \n", "\n", "\n", "#ohshit #shitjustgotreal #hurricanesandy http://t.co/YN7tYBoL\n", "\n", "--------------------------------------------------------\n", - "ohshit shitjustgotreal hurricanesandy \n", + "shit shitjustgotreal hurricane sandy \n", "\n", "\n", "Too funny!! #hurricanesandy 😂😂😂😂 http://t.co/hJt2N64M\n", "\n", "--------------------------------------------------------\n", - "funny hurricanesandy \n", + "funny hurricane sandy \n", "\n", "\n", "New York is shut down. Everyone is hiding due to #hurricanesandy they're expecting floods of water 12ft abov http://t.co/u0CZkHie\n", "\n", "--------------------------------------------------------\n", - "new york shut everyone hiding due hurricanesandy expecting floods water 12ft abov \n", + "new york shut everyone hiding due hurricane sandy expecting floods water2ft abov \n", "\n", "\n", "Best. Picture. Evar! #Frankenstorm #2012 #HurricaneSandy #EastCoastUnderAttack 10/29 @ Franken Sickles Storm http://t.co/is5vGwDg\n", "\n", "--------------------------------------------------------\n", - "best picture evar frankenstorm 2012 hurricanesandy eastcoastunderattack 10 29 franken sickles storm \n", - "\n", - "\n", - "It's crazy out here !!!!!\\n#hurricanesandy #hahaha http://t.co/rwNXKZrI\n", - "\n", - "--------------------------------------------------------\n", - "crazy hurricanesandy hahaha \n", + "best picture evar frankenstorm012 hurricane sandy eastcoastunderattack09 franken sickles storm \n", "\n", "\n", "Latest pics from NYC and #HurricaneSandy via @brandonlemois (though, it may be photoshopped) - http://t.co/paMx8zRB\n", "\n", "--------------------------------------------------------\n", - "latest pics nyc hurricanesandy though may photoshopped \n", + "latest pics new york city hurricane sandy though may photoshopped \n", "\n", "\n", "NYC I screwed. #HurricaneSandy http://t.co/9RWFDcmj\n", "\n", "--------------------------------------------------------\n", - "nyc screwed hurricanesandy \n", + "new york city screwed hurricane sandy \n", "\n", "\n", "Looks like The Day After Tomorrow!! Creepy! #hurricanesandy #newyork #flooding http://t.co/rNMtejT8\n", "\n", "--------------------------------------------------------\n", - "looks like day tomorrow creepy hurricanesandy newyork flooding \n", - "\n", - "\n", - "LMAO!!! RT @Tsholo_Royal: Hahaha :'''D In all honesty, i wont even deny the humour in this pic! #HurricaneSandy http://t.co/MdnKeVpC\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", + "looks like day tomorrow creepy hurricane sandy new york flooding \n", "\n", "\n", "Lmaooo #DEAD #sandy #hurricanesandy http://t.co/FYaO4NOF\n", "\n", "--------------------------------------------------------\n", - "lmaooo dead sandy hurricanesandy \n", + "dead sandy hurricane sandy \n", "\n", "\n", "She changed her mind. #ladyliberty #hurricanesandy http://t.co/S9qRmvmo\n", "\n", "--------------------------------------------------------\n", - "changed mind ladyliberty hurricanesandy \n", - "\n", - "\n", - "#ny #hurricanesandy http://t.co/yA3a07mo\n", - "\n", - "--------------------------------------------------------\n", - "ny hurricanesandy \n", + "changed mind ladyliberty hurricane sandy \n", "\n", "\n", "Situation currently in New York #HurricaneSandy http://t.co/yquQQ5Sr\n", "\n", "--------------------------------------------------------\n", - "situation currently new york hurricanesandy \n", + "situation currently new york hurricane sandy \n", "\n", "\n", "ROFL #hurricanesandy http://t.co/Ag6duKN2\n", "\n", "--------------------------------------------------------\n", - "rofl hurricanesandy \n", + "rofl hurricane sandy \n", "\n", "\n", "Someone has some good photoshop skills #hurricanesandy #hurricanesandy2012 http://t.co/VTZJrNjP\n", "\n", "--------------------------------------------------------\n", - "someone good photoshop skills hurricanesandy hurricanesandy2012 \n", + "someone good photoshop skills hurricane sandy hurricane sandy2012 \n", "\n", "\n", "Chillllllll. Lmfao #HurricaneSandy http://t.co/VVquG7Me\n", "\n", "--------------------------------------------------------\n", - "chillllllll lmfao hurricanesandy \n", + "chillllllll hurricane sandy \n", "\n", "\n", "#Hurricanesandy...everyone is scurred....http://t.co/Z6lKfxqf\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy everyone scurred \n", + "hurricane sandy everyone scurred \n", "\n", "\n", "Day After Tomorrow type shit. RT @kiki5_0: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/cU6uXMV8\"\n", @@ -28060,217 +25026,193 @@ "#HURRICANE#NEWYORK#STATUEOFLIBERTY# http://t.co/NcnVFxr6\n", "\n", "--------------------------------------------------------\n", - "hurricane newyork statueoflibe \n", + "hurricanenew yorkstatueoflibe \n", "\n", "\n", "#hurricanesandy got people up #north shook tho http://t.co/hxP3S8Du\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy got people north shook tho \n", + "hurricane sandy got people north shook tho \n", "\n", "\n", "I think this one may have been #photoshopped #sandy #hurricanesandy http://t.co/IMsGDgHd\n", "\n", "--------------------------------------------------------\n", - "think one may photoshopped sandy hurricanesandy \n", + "think one may photoshopped sandy hurricane sandy \n", "\n", "\n", "rt#Sandy Aint Playin http://t.co/tUNxFzv7 via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "rt sandy aint playin \n", + "rtsandy aint playin \n", "\n", "\n", "#repost. Lmaooooo #hurricanesandy http://t.co/k2XNtexe\n", "\n", "--------------------------------------------------------\n", - "repost lmaooooo hurricanesandy \n", + "repost hurricane sandy \n", "\n", "\n", "#repost lmboooo #rp #statueofliberty #ladyliberty #hide #nyc #hurricane #hurricanesandy http://t.co/zo4gMkcw\n", "\n", "--------------------------------------------------------\n", - "repost lmboooo rp statueofliberty ladyliberty hide nyc hurricane hurricanesandy \n", + "repost lmboooo rp statueofliberty ladyliberty hide new york city hurricane hurricane sandy \n", "\n", "\n", "I bet people believe this picture is real too!! Lol smh #HurricaneSandy http://t.co/TWRIBJHZ\n", "\n", "--------------------------------------------------------\n", - "bet people believe picture real lol smh hurricanesandy \n", + "bet people believe picture real hurricane sandy \n", "\n", "\n", "Seems legit? #hurricanesandy --> http://t.co/cg7oafeN\n", "\n", "--------------------------------------------------------\n", - "seems legit hurricanesandy \n", + "seems legit hurricane sandy \n", "\n", "\n", "#newyork #nyc #Liiberty standing up against #hurricanesandy http://t.co/n099fjfl\n", "\n", "--------------------------------------------------------\n", - "newyork nyc liiberty standing hurricanesandy \n", + "new york new york city liiberty standing hurricane sandy \n", "\n", "\n", "Looks like I got outta #NYC just in time... Thinking of you, east coast! #Sandy #HurricaneSandy http://t.co/bbc4MvsL\n", "\n", "--------------------------------------------------------\n", - "looks like got outta nyc time thinking east coast sandy hurricanesandy \n", + "looks like got outta new york city time thinking east coast sandy hurricane sandy \n", "\n", "\n", "How Europeans See #hurricanesandy http://t.co/9tCFDCaV\n", "\n", "--------------------------------------------------------\n", - "europeans see hurricanesandy \n", + "europeans see hurricane sandy \n", "\n", "\n", "Everyone is scared! #sandy #hurricanesandy #ny #statueofliberty http://t.co/KYTIK4nv\n", "\n", "--------------------------------------------------------\n", - "everyone scared sandy hurricanesandy ny statueofliberty \n", - "\n", - "\n", - "I'm out! #hurricanesandy http://t.co/SP0jScR7\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "everyone scared sandy hurricane sandy new york statueofliberty \n", "\n", "\n", "Lib was enjoying that breeze... And then ish got real! #hurricaneSandy #NY #2012 http://t.co/eSSrmGOj\n", "\n", "--------------------------------------------------------\n", - "lib enjoying breeze ish got real hurricanesandy ny 2012 \n", + "lib enjoying breeze ish got real hurricane sandy ny012 \n", "\n", "\n", "#statueofliberty #NY #NYC #newyorkcity #newyork #hiding #hurricanesandy #france #lmao http://t.co/D7olfcLP\n", "\n", "--------------------------------------------------------\n", - "statueofliberty ny nyc newyorkcity newyork hiding hurricanesandy france lmao \n", + "statueofliberty new york new york city new yorkcity new york hiding hurricane sandy france \n", "\n", "\n", "Be safe everyone! #sandy #hurricanesandy #thosewindsarecrazy #hopemypowerstayson #2012 #fullmoon #crazystorm http://t.co/ROMQWB5z\n", "\n", "--------------------------------------------------------\n", - "safe everyone sandy hurricanesandy thosewindsarecrazy hopemypowerstayson 2012 fullmoon crazystorm \n", - "\n", - "\n", - "OH: http://t.co/I1dz2Z40 #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "oh hurricanesandy \n", + "safe everyone sandy hurricane sandy thosewindsarecrazy hopemypowerstayson012 fullmoon crazystorm \n", "\n", "\n", "DEAD. #terrifiedofsandy #statueofliberty #hurricanesandy #nyc #bigapple #NY http://t.co/19AxDv58\n", "\n", "--------------------------------------------------------\n", - "dead terrifiedofsandy statueofliberty hurricanesandy nyc bigapple ny \n", + "dead terrifiedofsandy statueofliberty hurricane sandy new york city bigapple new york \n", "\n", "\n", "#hide from #sandy#statueofliberty http://t.co/ZKeKdgzt\n", "\n", "--------------------------------------------------------\n", - "hide sandy statueofliberty \n", + "hide sandystatueofliberty \n", "\n", "\n", "This picture in intense! #hurricanesandy #statueofliberty http://t.co/WsUCJM6R\n", "\n", "--------------------------------------------------------\n", - "picture intense hurricanesandy statueofliberty \n", + "picture intense hurricane sandy statueofliberty \n", "\n", "\n", "Hide your kids, hide your wife! #HurricaneSandy #scurrred :P http://t.co/dfAcOH09\n", "\n", "--------------------------------------------------------\n", - "hide kids hide wife hurricanesandy scurrred p \n", + "hide kids hide wife hurricane sandy scurrred p \n", "\n", "\n", "Hell nahhh lmfao. #hurricanesandy http://t.co/ohG3pq3I\n", "\n", "--------------------------------------------------------\n", - "hell nahhh lmfao hurricanesandy \n", + "hell nahhh hurricane sandy \n", "\n", "\n", "isso é photoshop ? me digam que sim :O https://t.co/q3fmUaIL #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "isso é photoshop digam sim hurricanesandy \n", + "photoshop digam sim hurricane sandy \n", "\n", "\n", "Live from New York, it's #HurricaneSandy!! 🌀☔ http://t.co/exPG5DkV\n", "\n", "--------------------------------------------------------\n", - "live new york hurricanesandy \n", + "live new york hurricane sandy \n", "\n", "\n", "Latest picture of NewYork. What a terrible #superstorm #hurricanesandy #frankenstorm http://t.co/9wvF2vS5\n", "\n", "--------------------------------------------------------\n", - "latest picture newyork terrible superstorm hurricanesandy frankenstorm \n", + "latest picture new york terrible superstorm hurricane sandy frankenstorm \n", "\n", "\n", "I think this might be real. What do you think @JeremyRitch? #hurricanesandy @ Chops Barbershop http://t.co/J9TzzYEL\n", "\n", "--------------------------------------------------------\n", - "think might real think hurricanesandy chops barbershop \n", - "\n", - "\n", - "#lmaoooo 😂😭😂😭😂😭😂😭😂 #hurricanesandy http://t.co/i7gMFyu6\n", - "\n", - "--------------------------------------------------------\n", - "lmaoooo hurricanesandy \n", + "think might real think hurricane sandy chops barbershop \n", "\n", "\n", "Totally not fake! #hurricanesandy is crazy in #newyork right now! #wild http://t.co/tWm3PTdK\n", "\n", "--------------------------------------------------------\n", - "totally fake hurricanesandy crazy newyork right wild \n", + "totally fake hurricane sandy crazy new york right wild \n", "\n", "\n", "#ThePEOPLE said Sandy had NYC SHOOK!! #HurricaneSandy #SandyWho http://t.co/sLxwW4AN\n", "\n", "--------------------------------------------------------\n", - "thepeople said sandy nyc shook hurricanesandy sandywho \n", + "thepeople said sandy new york city shook hurricane sandy sandywho \n", "\n", "\n", "Watch out! Sandy's coming to NYC #HurricaneSandy http://t.co/Twkn9Ime\n", "\n", "--------------------------------------------------------\n", - "watch sandy coming nyc hurricanesandy \n", + "watch sandy coming new york city hurricane sandy \n", "\n", "\n", "This made me chuckle! #hurricanesandy #ny #statueofliberty http://t.co/JrJNGAgf\n", "\n", "--------------------------------------------------------\n", - "made chuckle hurricanesandy ny statueofliberty \n", + "made chuckle hurricane sandy new york statueofliberty \n", "\n", "\n", "Pray for New York. This storm is furr real #hurricanesandy http://t.co/1fYn9cXF\n", "\n", "--------------------------------------------------------\n", - "pray new york storm furr real hurricanesandy \n", - "\n", - "\n", - "😂😂😂#hurricanesandy http://t.co/UHNcDQxo\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "pray new york storm furr real hurricane sandy \n", "\n", "\n", "Pretty much how my mom was acting thanks to the overhyped news #hurricanesandy #nyc http://t.co/LgO2BZIZ\n", "\n", "--------------------------------------------------------\n", - "pretty much mom acting thanks overhyped news hurricanesandy nyc \n", + "pretty much mom acting thanks overhyped news hurricane sandy new york city \n", "\n", "\n", "LMAO too soon? #HurricaneSandy http://t.co/ReOlUZjk\n", "\n", "--------------------------------------------------------\n", - "lmao soon hurricanesandy \n", + "soon hurricane sandy \n", "\n", "\n", "#hurricaneSandy done fucked shit up in NYC & surrounding areas @ Sandy Aftermathpocalypse 2012 http://t.co/aSoaOo58\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy done fucked shit nyc surrounding areas sandy aftermathpocalypse 2012 \n", + "hurricane sandy done fucked shit new york city surrounding areas sandy aftermathpocalypse012 \n", "\n", "\n", "Hahahahaha\"@nkamoSaveAChild: Hahahahahahahaha #HurricaneSandy http://t.co/rHk4KNsG\"\n", @@ -28282,409 +25224,355 @@ "Eah! #HurricaneSandy #Thedayaftertomorrow http://t.co/KbbdvXlt\n", "\n", "--------------------------------------------------------\n", - "eah hurricanesandy thedayaftertomorrow \n", + "eah hurricane sandy thedayaftertomorrow \n", "\n", "\n", "#repost Lady Liberty said, \"Sandy ain't messin up my torch\" !!! #hurricanesandy http://t.co/5szfd54B\n", "\n", "--------------------------------------------------------\n", - "repost lady liberty said sandy messin torch hurricanesandy \n", + "repost lady liberty said sandy messin torch hurricane sandy \n", "\n", "\n", "#hurricanesandy #sandy http://t.co/4xHUDr5z\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sandy \n", + "hurricane sandy sandy \n", "\n", "\n", "“@dougblackjr: Latest pics from NYC from #HurricaneSandy via @brandonlemois: http://t.co/4WqScCx8”” || lololol back to you, Doug.\n", "\n", "--------------------------------------------------------\n", - "lololol back doug \n", + "back doug \n", "\n", "\n", "#HurricaneSandy #StatueofLiberty http://t.co/BmGHccOi\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statueofliberty \n", + "hurricane sandy statueofliberty \n", "\n", "\n", "Hehehe #hurricanesandy #peekaboo #scaredlady #nyc #nj http://t.co/tc4WuScU\n", "\n", "--------------------------------------------------------\n", - "hehehe hurricanesandy peekaboo scaredlady nyc nj \n", + "hehehe hurricane sandy peekaboo scaredlady new york city new jersey \n", "\n", "\n", "Be safe out there #NJ #NYC #HurricaneSandy http://t.co/EtqV5kMn\n", "\n", "--------------------------------------------------------\n", - "safe nj nyc hurricanesandy \n", + "safe new jersey new york city hurricane sandy \n", "\n", "\n", "#statueofliberty #hurricanesandy #crazy #beautiful http://t.co/MtL1oBrm\n", "\n", "--------------------------------------------------------\n", - "statueofliberty hurricanesandy crazy beautiful \n", + "statueofliberty hurricane sandy crazy beautiful \n", "\n", "\n", "#HurricaneSandy This is a sick picture #NY1 #StatueOfLiberty #NewYork bluebblazin http://t.co/VYrj3Wf9\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sick picture ny1 statueofliberty newyork bluebblazin \n", + "hurricane sandy sick picture ny1 statueofliberty new york bluebblazin \n", "\n", "\n", "Courtesy of @kimnicky - Lady Libery is not feeling #hurricanesandy 😂 http://t.co/b9DP3DL7\n", "\n", "--------------------------------------------------------\n", - "courtesy lady libery feeling hurricanesandy \n", + "courtesy lady libery feeling hurricane sandy \n", "\n", "\n", "Sandy got Liberty shook!!! #repost #hurricanesandy #hurricaneseason #runandhide #lmao #ctfu #smh #ijs #insta http://t.co/sSupUAWI\n", "\n", "--------------------------------------------------------\n", - "sandy got liberty shook repost hurricanesandy hurricaneseason runandhide lmao ctfu smh ijs insta \n", + "sandy got liberty shook repost hurricane sandy hurricaneseason runandhide ctfu ijs insta \n", "\n", "\n", "Stay Puft #hurricanesandy http://t.co/U9NPCFLm\n", "\n", "--------------------------------------------------------\n", - "stay puft hurricanesandy \n", + "stay puft hurricane sandy \n", "\n", "\n", "Shits real mainy over there.... sheesh! Lookin like a movie. Smh. #HurricaneSandy http://t.co/j3mbXl07\n", "\n", "--------------------------------------------------------\n", - "shits real mainy sheesh lookin like movie smh hurricanesandy \n", - "\n", - "\n", - "http://t.co/YKxGNYlB #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "shits real mainy sheesh lookin like movie hurricane sandy \n", "\n", "\n", "Jajajajajajajajajajajaja :P #HurricaneSandy http://t.co/aMmZBRCm\n", "\n", "--------------------------------------------------------\n", - "jajajajajajajajajajajaja p hurricanesandy \n", + "jajajajajajajajajajajaja p hurricane sandy \n", "\n", "\n", "Geez this Sandy is def scaring New Yorkers! we've been thru worst NY! #hurricaneSandy #nyc http://t.co/UL5IWjts\n", "\n", "--------------------------------------------------------\n", - "geez sandy def scaring new yorkers thru worst ny hurricanesandy nyc \n", + "geez sandy def scaring new yorkers worst new york hurricane sandy new york city \n", "\n", "\n", "She ain't playing no games Lml ! #hurricanesandy http://t.co/KjcTeI9c\n", "\n", "--------------------------------------------------------\n", - "playing games lml hurricanesandy \n", + "playing games lml hurricane sandy \n", "\n", "\n", "#repost #newyork #hurricanesandy http://t.co/hClLRpIf\n", "\n", "--------------------------------------------------------\n", - "repost newyork hurricanesandy \n", + "repost new york hurricane sandy \n", "\n", "\n", "Lol #hurricane #hurricanesandy #instadaily #goodmorning http://t.co/U9AvIdGl\n", "\n", "--------------------------------------------------------\n", - "lol hurricane hurricanesandy instadaily goodmorning \n", + "hurricane hurricane sandy instadaily goodmorning \n", "\n", "\n", "Holy shit the poor east coast. I hope everyone makes it through ok it looks rough. #hurricanesandy #wtf #nat http://t.co/uVuD4SKm\n", "\n", "--------------------------------------------------------\n", - "holy shit poor east coast hope everyone makes ok looks rough hurricanesandy wtf nat \n", + "holy shit poor east coast hope everyone makes ok looks rough hurricane sandy nat \n", "\n", "\n", "#patrickhoelck #diary #nyc #sandy #storm #statueofliberty #hurricanesandy @danshadian @ nyc http://t.co/4XaJfq7X\n", "\n", "--------------------------------------------------------\n", - "patrickhoelck diary nyc sandy storm statueofliberty hurricanesandy nyc \n", + "patrickhoelck diary new york city sandy storm statueofliberty hurricane sandy new york city \n", "\n", "\n", "Photo taken today in New York #hurricanesandy #newyork #lol #funny #marshmallowman #godzilla #statueoflibert http://t.co/fsd0p2DM\n", "\n", "--------------------------------------------------------\n", - "photo taken today new york hurricanesandy newyork lol funny marshmallowman godzilla statueoflibert \n", - "\n", - "\n", - "#hurricanesandy got lady liberty shook up http://t.co/E3vhcb66\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy got lady liberty shook \n", + "photo taken today new york hurricane sandy new york funny marshmallowman godzilla statueoflibert \n", "\n", "\n", "#HurricaneSandy aint no joke! Yall see what she did http://t.co/a4LQT526\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy aint joke yall see \n", + "hurricane sandy aint joke yall see \n", "\n", "\n", "- This may seems real but #HurricaneSandy isn't this bad..This photo was captured from the movie The Day Aft http://t.co/2D1H77VH\n", "\n", "--------------------------------------------------------\n", - "may seems real hurricanesandy bad photo captured movie day aft \n", + "may seems real hurricane sandy bad photo captured movie day aft \n", "\n", "\n", "#hurricanesandy is really getting out of control!! Good luck #eastcoast http://t.co/CysFYxGA\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy really getting control good luck eastcoast \n", + "hurricane sandy really getting control good luck eastcoast \n", "\n", "\n", "#Lmao #Deadass #HurricaneSandy #StatueOfLiberty http://t.co/Rgl0UB7w\n", "\n", "--------------------------------------------------------\n", - "lmao deadass hurricanesandy statueofliberty \n", - "\n", - "\n", - "Omg 😂😂😂😂 #hurricanesandy http://t.co/jlaUZLcx\n", - "\n", - "--------------------------------------------------------\n", - "omg hurricanesandy \n", + "deadass hurricane sandy statueofliberty \n", "\n", "\n", "#HurricaneSandy ain't no joke, she even got Lady Liberty shook.... http://t.co/jifGTtnV\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy joke even got lady liberty shook \n", + "hurricane sandy joke even got lady liberty shook \n", "\n", "\n", "I see dis shit I leave town this some movie looking shit #hurricanesandy http://t.co/zdz3nVgZ\n", "\n", "--------------------------------------------------------\n", - "see dis shit leave town movie looking shit hurricanesandy \n", + "seeshit leave town movie looking shit hurricane sandy \n", "\n", "\n", "Yea It's Serious Out There..... #hurricanesandy http://t.co/XJm9bP8E\n", "\n", "--------------------------------------------------------\n", - "yea serious hurricanesandy \n", + "yea serious hurricane sandy \n", "\n", "\n", "Had to repost! Thanks @Chiquita91 #repost #nyc #hurricanesandy http://t.co/BGG7rHng\n", "\n", "--------------------------------------------------------\n", - "repost thanks repost nyc hurricanesandy \n", + "repost thanks repost new york city hurricane sandy \n", "\n", "\n", "Shit I'd hide too 😔🌀🗽🏤 #Sandy #HurricaneSandy #HideNSeek http://t.co/a7gpMsJN\n", "\n", "--------------------------------------------------------\n", - "shit hide sandy hurricanesandy hidenseek \n", + "shit hide sandy hurricane sandy hidenseek \n", "\n", "\n", "#TheDayAfterTomorrow #HurricaneSandy http://t.co/6j46sRTL\n", "\n", "--------------------------------------------------------\n", - "thedayaftertomorrow hurricanesandy \n", + "thedayaftertomorrow hurricane sandy \n", "\n", "\n", "You KNOW it's real, when Ms Liberty has to get off her post......#hurricanesandy http://t.co/An1syKKA\n", "\n", "--------------------------------------------------------\n", - "know real ms liberty get post hurricanesandy \n", - "\n", - "\n", - "LOL #hurricanesandy http://t.co/H9ZIaws1\n", - "\n", - "--------------------------------------------------------\n", - "lol hurricanesandy \n", + "know real ms liberty get post hurricane sandy \n", "\n", "\n", "Hahaha #statueofliberty #hurricanesandy #newyork http://t.co/GEYfw4UD\n", "\n", "--------------------------------------------------------\n", - "hahaha statueofliberty hurricanesandy newyork \n", + "statueofliberty hurricane sandy new york \n", "\n", "\n", "We're screwed #hurricanesandy http://t.co/GiaKZizW\n", "\n", "--------------------------------------------------------\n", - "screwed hurricanesandy \n", + "screwed hurricane sandy \n", "\n", "\n", "هااا خلص #اعصار_ساندي ؟ اطلع ولا انخش ؟ #sandy #usa #hurricanesandy http://t.co/JwoQyJVZ\n", "\n", "--------------------------------------------------------\n", - "هااا خلص اعصار ساندي اطلع انخش sandy usa hurricanesandy \n", + "هااا خلص اعصارساندي اطلع انخش sandy usa hurricane sandy \n", "\n", "\n", "These 2 images/pics going around are FAKE people. Please stop! #Sandy #HurricaneSandy http://t.co/DtgOVEfL http://t.co/t6hQ8cfD\n", "\n", "--------------------------------------------------------\n", - "2 images pics going around fake people please stop sandy hurricanesandy \n", + "images pics going around fake people please stop sandy hurricane sandy \n", "\n", "\n", "A great shot of #hurricanesandy from last night: http://t.co/wq9necL6\n", "\n", "--------------------------------------------------------\n", - "great shot hurricanesandy last night \n", - "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Oh! #HurricaneSandy http://t.co/q89LHsHG\n", - "\n", - "--------------------------------------------------------\n", - "oh hurricanesandy \n", + "great shot hurricane sandy last night \n", "\n", "\n", "Really?!? Lmao #hurricanesandy http://t.co/gMS08nDi\n", "\n", "--------------------------------------------------------\n", - "really lmao hurricanesandy \n", + "really hurricane sandy \n", "\n", "\n", "#HurricaneSandy getting stronger http://t.co/qBxPhdUN\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy getting stronger \n", - "\n", - "\n", - "Friend in New York just emailed me this pic. He says its legit. Pretty worrying stuff. #hurricanesandy http://t.co/uNOTtwNJ @beccacummings_\n", - "\n", - "--------------------------------------------------------\n", - "friend new york emailed pic says legit pretty worrying stuff hurricanesandy \n", + "hurricane sandy getting stronger \n", "\n", "\n", "Shit just got real in NYC! #HurricaneSandy LMAOOOO 😂😂😂😂😂😂 http://t.co/ladQIhP4\n", "\n", "--------------------------------------------------------\n", - "shit got real nyc hurricanesandy lmaoooo \n", + "shit got real new york city hurricane sandy \n", "\n", "\n", "Lmao 😂😂😂\\n#originalpost #hurricanesandy #floridalife #aintshit http://t.co/d5Adpwun\n", "\n", "--------------------------------------------------------\n", - "lmao originalpost hurricanesandy floridalife aintshit \n", + "originalpost hurricane sandy floridalife aintshit \n", "\n", "\n", "#hurricanesandy #GodZilla #Staypuffed #Doomsday http://t.co/YeYGcO61\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy godzilla staypuffed doomsday \n", + "hurricane sandy godzilla staypuffed doomsday \n", "\n", "\n", "That about sums it up. #hurricanesandy http://t.co/7TRiyq4W\n", "\n", "--------------------------------------------------------\n", - "sums hurricanesandy \n", - "\n", - "\n", - "#hurricanesandy lol http://t.co/FcADkFlE\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy lol \n", + "sums hurricane sandy \n", "\n", "\n", "#repost #stolen from #Facebook #StatueOfLiberty #storm #weather #rain #hurricaneSandy lol http://t.co/QqgVKc7A\n", "\n", "--------------------------------------------------------\n", - "repost stolen facebook statueofliberty storm weather rain hurricanesandy lol \n", + "repost stolen facebook statueofliberty storm weather rain hurricane sandy \n", "\n", "\n", "Lmbo! #hurricaneSandy #relax #chill #jokes #toomuch #scared http://t.co/nzLITcBo\n", "\n", "--------------------------------------------------------\n", - "lmbo hurricanesandy relax chill jokes toomuch scared \n", + "lmbo hurricane sandy relax chill jokes toomuch scared \n", "\n", "\n", "#holyshit #dayaftertomorrow #hurricanesandy http://t.co/pkUWSVAP\n", "\n", "--------------------------------------------------------\n", - "holyshit dayaftertomorrow hurricanesandy \n", + "holyshit dayaftertomorrow hurricane sandy \n", "\n", "\n", "New, shocking photos from NYC: http://t.co/uPEAfuYV #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "new shocking photos nyc hurricanesandy \n", + "new shocking photos new york city hurricane sandy \n", "\n", "\n", "Is there anything the Internet won't make about #cats?? :) #hurricanesandy http://t.co/UNLqzAaW\n", "\n", "--------------------------------------------------------\n", - "anything internet make cats hurricanesandy \n", + "anything internet make cats hurricane sandy \n", "\n", "\n", "Looks legit #HurricaneSandy http://t.co/gHAsQWqX\n", "\n", "--------------------------------------------------------\n", - "looks legit hurricanesandy \n", + "looks legit hurricane sandy \n", "\n", "\n", "#HurricaneSandy #TebowTime http://t.co/wxom7ylg\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy tebowtime \n", + "hurricane sandy tebowtime \n", "\n", "\n", "Hahahahahahaaahaha I'm out RT @bbm_soweto: #HurricaneSandy http://t.co/0BBvp9vb\n", "\n", "--------------------------------------------------------\n", - "hahahahahahaaahaha \n", + "hahahahahahaaai \n", "\n", "\n", "#repost #statueofliberty #hurricanesandy #ShxtGettinReal http://t.co/PdCuEMI1\n", "\n", "--------------------------------------------------------\n", - "repost statueofliberty hurricanesandy shxtgettinreal \n", + "repost statueofliberty hurricane sandy shxtgettinreal \n", "\n", "\n", "Things are getting serious in NY #hurricane#sandy#nyc http://t.co/AKTKppUv\n", "\n", "--------------------------------------------------------\n", - "things getting serious ny hurricane sandy nyc \n", - "\n", - "\n", - "😂😂😂😂😂😂 #repost #HurricaneSandy @all_moroccan http://t.co/d6pDQekQ\n", - "\n", - "--------------------------------------------------------\n", - "repost hurricanesandy \n", + "things getting serious new york hurricane sandynyc \n", "\n", "\n", "#hurricanesandy is Screaming outside...sounding like #thedayaftertomorrow lol 😳 http://t.co/ZZii0IbL\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy screaming outside sounding like thedayaftertomorrow lol \n", + "hurricane sandy screaming outside sounding like thedayaftertomorrow \n", "\n", "\n", "#hurricanesandy ain't playin no games !!! Statue of Liberty ain't takin her shit http://t.co/cPyF2zF9\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy playin games statue liberty takin shit \n", + "hurricane sandy playin games statue liberty takin shit \n", "\n", "\n", "The latest from New York #hurricanesandy http://t.co/oGvGnUuD\n", "\n", "--------------------------------------------------------\n", - "latest new york hurricanesandy \n", + "latest new york hurricane sandy \n", "\n", "\n", "Is it safe yet?! #HurricaneSandy http://t.co/AebZiaDN\n", "\n", "--------------------------------------------------------\n", - "safe yet hurricanesandy \n", + "safe yet hurricane sandy \n", "\n", "\n", "#hurricanesandy #chillll http://t.co/Pvdqbjpj\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy chillll \n", + "hurricane sandy chillll \n", "\n", "\n", "Liberty hiding from sandy lol, she ain't about life ctfu http://t.co/GpqJHRDG\n", "\n", "--------------------------------------------------------\n", - "liberty hiding sandy lol life ctfu \n", + "liberty hiding sandy life ctfu \n", "\n", "\n", "Hiding from Sandy #Sandy #Storm http://t.co/Ocq4VxTU\n", @@ -28696,13 +25584,13 @@ "Fuck storm sandy im hiding from that bitch lol lmao http://t.co/Paf9AyRB\n", "\n", "--------------------------------------------------------\n", - "fuck storm sandy im hiding bitch lol lmao \n", + "fuck storm sandy hiding bitch \n", "\n", "\n", "lady liberty hiding from #hurricanesandy http://t.co/s5HXxmAN\n", "\n", "--------------------------------------------------------\n", - "lady liberty hiding hurricanesandy \n", + "lady liberty hiding hurricane sandy \n", "\n", "\n", "Everyone hiding from Sandy! http://t.co/l9XaQReX\n", @@ -28714,37 +25602,25 @@ "Lady Liberty hiding from Sandy, lol http://t.co/ibJuWzsx\n", "\n", "--------------------------------------------------------\n", - "lady liberty hiding sandy lol \n", + "lady liberty hiding sandy \n", "\n", "\n", "Statue of Liberty hiding from Sandy. jerome_ds's photo http://t.co/JDVKYzWM #fb\n", "\n", "--------------------------------------------------------\n", - "statue liberty hiding sandy jerome ds photo fb \n", + "statue liberty hiding sandy jeromeds photo fb \n", "\n", "\n", "hiding from hurricane Sandy .. lol...http://t.co/bjD6Fabq\n", "\n", "--------------------------------------------------------\n", - "hiding hurricane sandy lol \n", - "\n", - "\n", - "Lady Liberty Hiding from Sandy http://t.co/Nb9BddQV\n", - "\n", - "--------------------------------------------------------\n", - "lady liberty hiding sandy \n", + "hiding hurricane sandy \n", "\n", "\n", "Hilarious!! Even Lady Liberty hiding from Sandy!! Lol!!!!! http://t.co/py79sokj\n", "\n", "--------------------------------------------------------\n", - "hilarious even lady liberty hiding sandy lol \n", - "\n", - "\n", - "Statue of Liberty hiding from #Sandy. Lol http://t.co/cPFF7zr5\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty hiding sandy lol \n", + "hilarious even lady liberty hiding sandy \n", "\n", "\n", "Liberty.. Hiding from Hurricane Sandy http://t.co/5AUo8y0C\n", @@ -28756,7 +25632,7 @@ "Liberty hiding from sandy lol http://t.co/BtrHr2jj\n", "\n", "--------------------------------------------------------\n", - "liberty hiding sandy lol \n", + "liberty hiding sandy \n", "\n", "\n", "Poor Statue of Liberty, she's scared and hiding from hurricane Sandy. http://t.co/bLWex9Pg\n", @@ -28777,16 +25653,10 @@ "lady liberty hiding sandy scared run hide hurricane sandy \n", "\n", "\n", - "Hiding from hurricane sandy http://t.co/AJ1ZImm7\n", - "\n", - "--------------------------------------------------------\n", - "hiding hurricane sandy \n", - "\n", - "\n", "You kno shitz bad wen lady liberty is hiding... This lady.been standing tall for ao long.n sandy showed lady http://t.co/u8cFgvSE\n", "\n", "--------------------------------------------------------\n", - "kno shitz bad wen lady liberty hiding lady standing tall ao long n sandy showed lady \n", + "kno shitz bad wen lady liberty hiding lady standing tall long sandy showed lady \n", "\n", "\n", "THIS :) (Hiding from Sandy) http://t.co/mdnL9UQ1\n", @@ -28801,12 +25671,6 @@ "know threat lady liberty hiding sandy \n", "\n", "\n", - "Statue of Liberty hiding from #Sandy RT @14_yr_old_Etard: ROFL! RT @lavsmohan: LOL “@PuneerSoda: HAHAHA! http://t.co/GQfZ9Tgn”\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty hiding sandy \n", - "\n", - "\n", "Liberty hiding from #Sandy - cuuuuuute!!!!!!!!!!! http://t.co/4PzIUSsc\n", "\n", "--------------------------------------------------------\n", @@ -28816,13 +25680,13 @@ "Statue of Liberty hiding from Sandy. Lmao #funny #instafunny #sandy #statue #liberty #october http://t.co/4ooWQhk2\n", "\n", "--------------------------------------------------------\n", - "statue liberty hiding sandy lmao funny instafunny sandy statue liberty october \n", + "statue liberty hiding sandy funny instafunny sandy statue liberty october \n", "\n", "\n", "Lady Liberty hiding from Sandy... B**** Stand up 4 yaself lmao #rp from @sandraebonilla ahahah #repost http://t.co/xz3chPQF\n", "\n", "--------------------------------------------------------\n", - "lady liberty hiding sandy b stand 4 yaself lmao rp ahahah repost \n", + "lady liberty hiding sandy b stand yaself rp ahahah repost \n", "\n", "\n", "Entire New York is hiding from Sandy http://t.co/a4AHUriE\n", @@ -28864,13 +25728,13 @@ "Preparativos en #NY ante la llegada de #Sandy http://t.co/O3OwAxWK\n", "\n", "--------------------------------------------------------\n", - "preparativos ny llegada sandy \n", + "preparativos new york llegada sandy \n", "\n", "\n", "La mejor foto de lo que esta pasando en NYC con #Sandy... de miedo ! http://t.co/hS3SetlL\n", "\n", "--------------------------------------------------------\n", - "mejor foto pasando nyc sandy miedo \n", + "mejor foto pasando new york city sandy miedo \n", "\n", "\n", "EXCLUSIVO: La Estatua de la Libertad está muy asustada con el paso del huracán Sandy por Nueva York. http://t.co/MPAArIaQ\n", @@ -28882,7 +25746,7 @@ "#lol....Así esta la estatua d la libertad en NY#sandy go awayyyy!!!! http://t.co/JLMkjHnm\n", "\n", "--------------------------------------------------------\n", - "lol así estatua libertad ny sandy go awayyyy \n", + "así estatua libertad nysandy go awayyyy \n", "\n", "\n", "La estatua de la Libertad también espera al Huracán Sandy: http://t.co/ANddhBBq\n", @@ -28906,7 +25770,7 @@ "http://t.co/PHuDfmjn asi con la estatua de la libertad y el Huracán Sandy\n", "\n", "--------------------------------------------------------\n", - "asi estatua libertad huracán sandy \n", + "así estatua libertad huracán sandy \n", "\n", "\n", "Hasta la estatua de la libertad se esconde tras el paso del huracán sandy http://t.co/4gaZ7xzd\n", @@ -28936,7 +25800,7 @@ "Mas fake y me mato :l RT @cymstore El huracán #sandy se llevara a su paso la estatua de la libertad? http://t.co/A9YX8TRY\n", "\n", "--------------------------------------------------------\n", - "mas fake mato l \n", + "fake mato \n", "\n", "\n", "“URGENTE Huracán Sandy: La Estatua de la Libertad en estos momentos. http://t.co/k6IUJxgC”\n", @@ -28948,13 +25812,13 @@ "Ultimo minuoto. Asi esta la estatua de la libertad después del Huracan #Sandy http://t.co/eNbeDbe6\n", "\n", "--------------------------------------------------------\n", - "ultimo minuoto asi estatua libertad después huracan sandy \n", + "ultimo minuoto así estatua libertad después huracan sandy \n", "\n", "\n", "NY: La estatua de la LIbertad se resguarda a la espera de #Sandy (vía Le Huffington Post Québec) http://t.co/qjJtv218\n", "\n", "--------------------------------------------------------\n", - "ny estatua libertad resguarda espera sandy vía huffington post québec \n", + "new york estatua libertad resguarda espera sandy huffington post québec \n", "\n", "\n", "“@hacemosturismo: La Estatua de la Libertad en estos momentos por el Huracán Sandy... http://t.co/1TKtWK2d” muy bueno!\n", @@ -28966,19 +25830,13 @@ "Hasta la estatua d la libertad se mando corriendo cuando #Sandy llego hahhaha http://t.co/p6O0fbgG\"\n", "\n", "--------------------------------------------------------\n", - "estatua libertad mando corriendo sandy llego hahhaha \n", + "estatua libertad mando corriendo sandy llego hah \n", "\n", "\n", "Disculpen la imagen que le di RT no corresponde a #SANDY fue sacada de esta página http://t.co/IRW6cWxy\n", "\n", "--------------------------------------------------------\n", - "disculpen imagen di \n", - "\n", - "\n", - "La estatua de la Libertad esperando a Sandy http://t.co/FeYQEPui”\"\n", - "\n", - "--------------------------------------------------------\n", - "estatua libertad esperando sandy \n", + "disculpen imagen \n", "\n", "\n", "Hasta la estatua de la libertad le tiene miedo a Sandy http://t.co/bcI6JF01\n", @@ -28990,7 +25848,7 @@ "La estatua de la libertad ta moca con sandy lol #miedo #grima http://t.co/elQuf3Dc\n", "\n", "--------------------------------------------------------\n", - "estatua libertad ta moca sandy lol miedo grima \n", + "estatua libertad moca sandy miedo grima \n", "\n", "\n", "Huracán Sandy y la Estatua de la libertad. http://t.co/uc90mpNd\n", @@ -29002,7 +25860,7 @@ "Actual estado de la Estatua de la Libertad de NY (comico) por la llegada del huracán Sandy\\nhttp://t.co/pN5HLKWr\n", "\n", "--------------------------------------------------------\n", - "actual estatua libertad ny comico llegada huracán sandy \n", + "actual estatua libertad new york comico llegada huracán sandy \n", "\n", "\n", "Me informan que la estatua de la Libertad ya se bajó!! #Sandy http://t.co/9JSDdg9i\n", @@ -29020,7 +25878,7 @@ "La estatua de la libertad ya tomo precauciones #NewYork #Sandy #huracán http://t.co/hc7GepYO\n", "\n", "--------------------------------------------------------\n", - "estatua libertad tomo precauciones newyork sandy huracán \n", + "estatua libertad tomo precauciones new york sandy huracán \n", "\n", "\n", "El huracán #sandy se llevara a su paso la estatua de la libertad? http://t.co/UfpvlWR8\n", @@ -29032,13 +25890,7 @@ "Jajajajaja las estatua de la libertad escondiéndose de sandy. #nuevayork #sandy #huracán #lol #cool #estat http://t.co/ccVi0qv5\n", "\n", "--------------------------------------------------------\n", - "jajajajaja estatua libertad escondiéndose sandy nuevayork sandy huracán lol cool estat \n", - "\n", - "\n", - "@jimmygreco: This storm is no joke! Yet you may as well find humor #sandy http://t.co/9DmGkjEV//estatua de La Libertad espera a #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "storm joke yet may well find humor sandy estatua libertad espera sandy \n", + "jajajajaja estatua libertad escondiéndose sandy nuevayork sandy huracán cool estat \n", "\n", "\n", "@MissRoxyMusic Mentira, esa estatua de la libertad no es real, está \"photoshopeada\" Lo demás si se ve auténtico #Sandy http://t.co/j5wwb9mB\n", @@ -29074,13 +25926,13 @@ "Sandy provoca el pánico en New York a TODOS vía Borja Terán La Estatua de la Libertad en estos momentos. http://t.co/w8xLCoLR\n", "\n", "--------------------------------------------------------\n", - "sandy provoca pánico new york vía borja terán estatua libertad momentos \n", + "sandy provoca pánico new york todosborja terán estatua libertad momentos \n", "\n", "\n", "rocco_ny's photo http://t.co/KUyYs70J la estatua de la libertad preparada para recibir a #sandy jejeje\n", "\n", "--------------------------------------------------------\n", - "rocco ny photo estatua libertad preparada recibir sandy jejeje \n", + "roccony photo estatua libertad preparada recibir sandy jejeje \n", "\n", "\n", "Chequen la estatua de la libertad como esta por el paso del Huracán #Sandy http://t.co/YTZf2arG\n", @@ -29101,16 +25953,10 @@ "huracán sandy imagen estatua libertad \n", "\n", "\n", - "La Estatua de La Libertad esperando a Sandy http://t.co/LeE0qebM\n", - "\n", - "--------------------------------------------------------\n", - "estatua libertad esperando sandy \n", - "\n", - "\n", "L'estàtua de la Llibertat després del pas de #Sandy #NY @antonibassas @salamartin http://t.co/0TKEpfbi\n", "\n", "--------------------------------------------------------\n", - "l estàtua llibertat després pas sandy ny \n", + "estàtua llibertat després sandy new york \n", "\n", "\n", "Así se encuentra la Estatua de la Libertad en Nueva York con la llegada de Sandy http://t.co/aY5wL1Ph\n", @@ -29149,12 +25995,6 @@ "estatua libertad acojonoda huracan sándy \n", "\n", "\n", - "@kpauwells: “@Ubbik: Preparativos en #NY ante la llegada de #Sandy http://t.co/wvN27DtN”/ jajajajaja\n", - "\n", - "--------------------------------------------------------\n", - "jajajajaja \n", - "\n", - "\n", "La estatua de la libertad momentos antes de la llegada de Sandy, impresionante! http://t.co/SnpJnWTk\n", "\n", "--------------------------------------------------------\n", @@ -29200,7 +26040,7 @@ "Oh dear. New York is in a lot of trouble. #Sandy RT @mrgrumpystephen: OMFG POOR NYC http://t.co/ikSvyNiW\n", "\n", "--------------------------------------------------------\n", - "oh dear new york lot trouble sandy \n", + "dear new york lot trouble sandy \n", "\n", "\n", "It's hard to believe that this is a real picture. Not a scene from Day After Tomorrow. #Sandy http://t.co/UF86GFdK\n", @@ -29254,13 +26094,13 @@ "This is the follow up to my last post...#sandy got everyone hiding! LOL! #Storms #Yikes #YouAlreadyKnow #Saf http://t.co/jGaO1BPw\n", "\n", "--------------------------------------------------------\n", - "follow last post sandy got everyone hiding lol storms yikes youalreadyknow saf \n", + "follow last post sandy got everyone hiding storms youalreadyknow saf \n", "\n", "\n", "This Hurricane #Sandy is getting out of control. Whoa! http://t.co/ZcFNFTYJ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy getting control whoa \n", + "hurricane sandy getting control \n", "\n", "\n", "So everyone knows, this incredible picture of Hurricane #Sandy is apparently fake. http://t.co/8Sy9XeZU (via @AndyBaldwin) love it!!!\n", @@ -29278,19 +26118,19 @@ "Awe! :*( Where do u find this stuff lol RT @MaxizPad Scared of #Sandy http://t.co/I1t0Ir7t\n", "\n", "--------------------------------------------------------\n", - "awe find stuff lol \n", + "awe find stuff \n", "\n", "\n", "This is not a fake, NYC and #Sandy https://t.co/XzGY8q10\n", "\n", "--------------------------------------------------------\n", - "fake nyc sandy \n", + "fake new york city sandy \n", "\n", "\n", "This is funny! Repost from @prophiphop #StatueOfLiberty #Sandy #NY #joke http://t.co/bssHSpMo\n", "\n", "--------------------------------------------------------\n", - "funny repost statueofliberty sandy ny joke \n", + "funny repost statueofliberty sandy new york joke \n", "\n", "\n", "Clearly photoshopped. RT @Keshia0215: #Sandy is no joke http://t.co/fVWRVxbr\n", @@ -29299,12 +26139,6 @@ "clearly photoshopped \n", "\n", "\n", - "RT \"@jensiegrist“@ClaytonMorris: I just snapped this picture in lower Manhattan. #sandy http://t.co/LsP3qZSB”\n", - "\n", - "--------------------------------------------------------\n", - "rt \n", - "\n", - "\n", "This wins. RT @MissZindzi Best #Sandy pic so far RT @charles270: @Nerd_Ferguson I was weak when I saw this http://t.co/zxQWFBGT\n", "\n", "--------------------------------------------------------\n", @@ -29338,31 +26172,25 @@ "HaHa this one trumps the S.O.L. Pic I tweeted!\\nRT: @KreuzersKorner: Wow! Some of the photos of NYC are amazing! #Sandy http://t.co/yIyLO4g1”\n", "\n", "--------------------------------------------------------\n", - "haha one trumps l pic tweeted \n", + "one trumps pic tweeted \n", "\n", "\n", "#hurricanesandy pretty sure this photo is legit. #sandy but seriously though. Hope everyone is getting to a http://t.co/WJ5ttRdF\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy pretty sure photo legit sandy seriously though hope everyone getting \n", + "hurricane sandy pretty sure photo legit sandy seriously though hope everyone getting \n", "\n", "\n", "Wow #Sandy is looking scary RT @Heilemann: This just in.\\nhttp://t.co/wRXiG5pt\n", "\n", "--------------------------------------------------------\n", - "wow sandy looking scary \n", - "\n", - "\n", - "Is that #Sandy ? http://t.co/fBOIaR7f\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sandy looking scary \n", "\n", "\n", "Haha #Sandy is so bad http://t.co/pI7CLmR5\n", "\n", "--------------------------------------------------------\n", - "haha sandy bad \n", + "sandy bad \n", "\n", "\n", ".@ryanjwill Fake hurricane photos?!! This one is real though, right? #sandy http://t.co/IvGDJrqI\n", @@ -29398,7 +26226,7 @@ "God Forgive Me! Lmao! This is too funny #sandy #dominicanproblems #statueofliberty http://t.co/6q7BdmC7\n", "\n", "--------------------------------------------------------\n", - "god forgive lmao funny sandy dominicanproblems statueofliberty \n", + "god forgive funny sandy dominicanproblems statueofliberty \n", "\n", "\n", "Dammit! So this is why my bus got cancelled?! #sandy http://t.co/Yu1B1IuN\n", @@ -29410,25 +26238,25 @@ "Someone just sent me this live shot from #sandy in NYC. Be careful out there. http://t.co/VlH2e68P\n", "\n", "--------------------------------------------------------\n", - "someone sent live shot sandy nyc careful \n", + "someone sent live shot sandy new york city careful \n", "\n", "\n", "Shit Just Got Real!!!!! #sandy lmao.. @mike_paper this is real!!! 😜 http://t.co/rHmQIm4I\n", "\n", "--------------------------------------------------------\n", - "shit got real sandy lmao real \n", + "shit got real sandy real \n", "\n", "\n", "This is #nyc now! #sandy #frankenstorm http://t.co/TaffrY8S\n", "\n", "--------------------------------------------------------\n", - "nyc sandy frankenstorm \n", + "new york city sandy frankenstorm \n", "\n", "\n", "#sandy -- This is how us New Yorker's see it !!! Lmaoooo http://t.co/LYEi2JWE http://t.co/MkRzlGWd\n", "\n", "--------------------------------------------------------\n", - "sandy us new yorker see lmaoooo \n", + "sandy us new yorker see \n", "\n", "\n", "This photo is actually photoshop RT @MsBunz617: That shits the devil RT @MsNanny1: Sandy is a beauty http://t.co/yh4iYJoa\n", @@ -29446,13 +26274,7 @@ "#best #photooftheday today in #nyc 😱 is this bitch #sandy still here? 😄 @ Statue of Liberty http://t.co/05WjYVlu\n", "\n", "--------------------------------------------------------\n", - "best photooftheday today nyc bitch sandy still statue liberty \n", - "\n", - "\n", - "Hurricane #sandy is just getting out of control... http://t.co/YRsLWSFU\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting control \n", + "best photooftheday today new york city bitch sandy still statue liberty \n", "\n", "\n", "There's a lot of fake pictures doing the rounds re hurricane #Sandy, but I'm sure this is legit http://t.co/N1b48SqB\n", @@ -29476,13 +26298,13 @@ "#hurricanesandy This storm is crazy! #nophotoshop @joeyraya http://t.co/u36vngYf\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy storm crazy nophotoshop \n", + "hurricane sandy storm crazy nophotoshop \n", "\n", "\n", "This is straight #comedy HA #repost @mellaniemonroe #lol #funny #nyc #hurricanesandy #frankenstorm http://t.co/6fpC0Uny\n", "\n", "--------------------------------------------------------\n", - "straight comedy repost lol funny nyc hurricanesandy frankenstorm \n", + "straight comedyrepost funny new york city hurricane sandy frankenstorm \n", "\n", "\n", "Got The Word Hurricane Sandy Is Coming This Way http://t.co/O6er5lbG\n", @@ -29491,16 +26313,10 @@ "got word hurricane sandy coming way \n", "\n", "\n", - "Oh #sandy is coming! http://t.co/0gO7aepi\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy coming \n", - "\n", - "\n", "Ok no more fake pictures. This is what's really going on in NYC. #sandy http://t.co/umPZFYzZ\n", "\n", "--------------------------------------------------------\n", - "ok fake pictures really going nyc sandy \n", + "ok fake pictures really going new york city sandy \n", "\n", "\n", "Don't take the piss. Someone tell me this pictures fake #sandy http://t.co/bZJUIRnl\n", @@ -29524,13 +26340,13 @@ "OMFG you guys!!! This is honestly the most insane pic of Hurrican Sandy. Not photoshopped! http://t.co/r4zWm3F3\n", "\n", "--------------------------------------------------------\n", - "omfg guys honestly insane pic hurrican sandy photoshopped \n", + "guys honestly insane pic hurrican sandy photoshopped \n", "\n", "\n", "#regram sandy don't got nothing on our soldiers http://t.co/65Zbhvln\n", "\n", "--------------------------------------------------------\n", - "regram sandy got nothing soldiers \n", + "sandy got nothing soldiers \n", "\n", "\n", "Damn! Sandy! Damn! http://t.co/lneNqVZB\n", @@ -29542,19 +26358,7 @@ "Oh Sandy, you are so beautiful http://t.co/6yAW8qi3\n", "\n", "--------------------------------------------------------\n", - "oh sandy beautiful \n", - "\n", - "\n", - "Sandy!!!! http://t.co/lC4p80jK\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "Huracán Sandy en NY. http://t.co/bT0RhmzP\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy ny \n", + "sandy beautiful \n", "\n", "\n", "Es falsa. RT @Technocracia: No se la veracidad de esta foto, pero Sandy se ve terrible entrando en NY http://t.co/6JoAmIL8\n", @@ -29566,7 +26370,7 @@ "Día de la independencia, el día después de mañana, 2012, armaguedon???? No, es sandy atacando NY http://t.co/QlWW6ZG1\n", "\n", "--------------------------------------------------------\n", - "día independencia día después mañana 2012 armaguedon sandy atacando ny \n", + "día independencia día después mañana2 armaguedon sandy atacando new york \n", "\n", "\n", "My City during Sandy.. Got People evacuating already.!! http://t.co/Hpsa47hP\n", @@ -29578,19 +26382,13 @@ "@thinkprogress Sandy approaches NYC http://t.co/iPIgs9Om OMGGGGGGGGGGGGGGGGGG\n", "\n", "--------------------------------------------------------\n", - "sandy approaches nyc omgggggggggggggggggg \n", - "\n", - "\n", - "Sandy over NYC.... Wow http://t.co/WavEsf3B\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc wow \n", + "sandy approaches new york city \n", "\n", "\n", "“@PAPERVIEW1 Sandy got Sharks floating around ppl house smh http://t.co/ovKLXYtQ”\n", "\n", "--------------------------------------------------------\n", - "sandy got sharks floating around ppl house smh \n", + "sandy got sharks floating around ppl house \n", "\n", "\n", "Damn sandy let my lady liberty be http://t.co/FzajR6YS\n", @@ -29602,7 +26400,7 @@ "Oh Sandy...#hurricane #statueofliberty #clouds http://t.co/reyXWiyj\n", "\n", "--------------------------------------------------------\n", - "oh sandy hurricane statueofliberty clouds \n", + "sandy hurricane statueofliberty clouds \n", "\n", "\n", "Si así es Sandy, como será papo ... http://t.co/tBqOdLUy\n", @@ -29620,7 +26418,7 @@ "Sandy!! Entering NYC @ new york city http://t.co/VymkS6tQ\n", "\n", "--------------------------------------------------------\n", - "sandy entering nyc new york city \n", + "sandy entering new york city new york city \n", "\n", "\n", "Duuudee... RT @mariotorrejon: Impresionantes imágenes del huracán Sandy en Manhattan!! http://t.co/VxTaCd7u\n", @@ -29629,34 +26427,10 @@ "duuudee \n", "\n", "\n", - "Sandy got Sharks floating around ppl house smh http://t.co/2V2DBhMU\n", - "\n", - "--------------------------------------------------------\n", - "sandy got sharks floating around ppl house smh \n", - "\n", - "\n", "Impresionante foto del huracán Sandy sobre NY http://t.co/UXFY6Fyf\n", "\n", "--------------------------------------------------------\n", - "impresionante foto huracán sandy ny \n", - "\n", - "\n", - "Sandy en NYC http://t.co/jDexgfY3\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", - "There is no Sandy. Only Zuul. RT @thinkprogress: Sandy approaches NYC http://t.co/6Wz7pwkF (via @juneambrose)\"\n", - "\n", - "--------------------------------------------------------\n", - "sandy zuul \n", - "\n", - "\n", - "Sandy looks angry. http://t.co/GQ10ZbDP\n", - "\n", - "--------------------------------------------------------\n", - "sandy looks angry \n", + "impresionante foto huracán sandy new york \n", "\n", "\n", "Tristeza e apreensão...Furacão Sandy se aproximando de Manhattan... http://t.co/CVLuA6Ml\n", @@ -29668,25 +26442,19 @@ "Furacão SANDY \\nPor Robert Bogdony\\n29/10/2012 @ NY http://t.co/9bnesGQx\n", "\n", "--------------------------------------------------------\n", - "furacão sandy robert bogdony 29 10 2012 ny \n", + "furacão sandy robert bogdony90012 new york \n", "\n", "\n", "MEU DEUSS o cara achou um tubarão no quintal http://t.co/t9lzrALJ pcaus da Sandy\n", "\n", "--------------------------------------------------------\n", - "meu deuss cara achou um tubarão quintal pcaus da sandy \n", - "\n", - "\n", - "Sandy :'c http://t.co/MukUhS73\n", - "\n", - "--------------------------------------------------------\n", - "sandy c \n", + "deuss achou tubarão quintal pcaus sandy \n", "\n", "\n", "NY prima dell'uragano SANDY!! http://t.co/wixs2YZG\n", "\n", "--------------------------------------------------------\n", - "ny prima dell uragano sandy \n", + "new york prima dell uragano sandy \n", "\n", "\n", "Can't go to work today, there is a shark outside. Damn sandy! http://t.co/7I1mx2GC\n", @@ -29710,7 +26478,7 @@ "My cousin sent me this....her ppl from NJ sent HER this....wow! #shark #Hurricane Sandy http://t.co/J9Gl9hTr\n", "\n", "--------------------------------------------------------\n", - "cousin sent ppl nj sent wow shark hurricane sandy \n", + "cousin sent ppl new jersey sent shark hurricane sandy \n", "\n", "\n", "Sandy brought sharks to Jersey 🙈🙈🙈🙈🙈 http://t.co/22ihnXMi\n", @@ -29788,13 +26556,13 @@ "Huracan Sandy en NY- Dios Los proteja rondon09 http://t.co/BYE5SJm6\n", "\n", "--------------------------------------------------------\n", - "huracan sandy ny dios proteja rondon09 \n", + "huracan sandy new york dios proteja rondon09 \n", "\n", "\n", "Sandy at work yesterday...smh. May those who perished RIP. http://t.co/yLaUEUhr\n", "\n", "--------------------------------------------------------\n", - "sandy work yesterday smh may perished rip \n", + "sandy work yesterday may perished rip \n", "\n", "\n", "New York , \"Sandy\" nadie circulando !!!!! http://t.co/G82jaZC3\n", @@ -29818,7 +26586,7 @@ "Protecting thru Sandy!! #respect http://t.co/d8k1HJP1\n", "\n", "--------------------------------------------------------\n", - "protecting thru sandy respect \n", + "protecting sandy respect \n", "\n", "\n", "Crazy crazy Dat dumb chick Sandy http://t.co/IinGplW5\n", @@ -29830,7 +26598,7 @@ "Storm SANDY OVER NY http://t.co/23DKGHJB\n", "\n", "--------------------------------------------------------\n", - "storm sandy ny \n", + "storm sandy new york \n", "\n", "\n", "This girl just posted this pic sandy ain't playing http://t.co/O1BgH0Tk\n", @@ -29860,19 +26628,19 @@ "OMG um tubarão nas ruas devivo ao avanço do mar http://t.co/ZF68IEPy Furacão Sandy\n", "\n", "--------------------------------------------------------\n", - "omg um tubarão nas ruas devivo ao avanço mar furacão sandy \n", + "tubarão ruas devivo avanço mar furacão sandy \n", "\n", "\n", "Sandy .... New York ... Shit makes no sense ... Dec 21st ? http://t.co/2YxcyuMx\n", "\n", "--------------------------------------------------------\n", - "sandy new york shit makes sense dec 21st \n", + "sandy new york shit makes sense dec1st \n", "\n", "\n", "This right here ..sandy not playin games omg http://t.co/oXgYayKP\n", "\n", "--------------------------------------------------------\n", - "right sandy playin games omg \n", + "right sandy playin games \n", "\n", "\n", "Mega tormenta \"sandy\" http://t.co/MRJtzAUB\n", @@ -29890,13 +26658,13 @@ "Foto foda! Furacão Sandy fazendo uma visita à Estátua da Liberdade. https://t.co/Gx9rOF0M\n", "\n", "--------------------------------------------------------\n", - "foto foda furacão sandy fazendo uma visita à estátua da liberdade \n", + "foto foda furacão sandy fazendo visitaestátua liberdade \n", "\n", "\n", "Huracán Sandy New York - 2012\\nhttp://t.co/0lhC2uX2\n", "\n", "--------------------------------------------------------\n", - "huracán sandy new york 2012 \n", + "huracán sandy new york 2 \n", "\n", "\n", "Furacão Sandy aterrorizando os EUA. Confira na Foto http://t.co/DiE7aoTr\n", @@ -29908,31 +26676,31 @@ "http://t.co/5bpIgmiJ mas que ta bonito esse furacão sandy ele ta né\n", "\n", "--------------------------------------------------------\n", - "mas ta bonito esse furacão sandy ele ta né \n", + "bonito furacão sandy né \n", "\n", "\n", "isso é um tubarao< no meio da rua< kra furacao sandy passe longe http://t.co/lR8wIfVv\n", "\n", "--------------------------------------------------------\n", - "isso é um tubarao less meio da rua less kra furacao sandy passe longe \n", + "tubarao meio rua kra furacao sandy passe longe \n", "\n", "\n", "Wow, beautiful and dangerous. Sandy. http://t.co/DokJFm05\n", "\n", "--------------------------------------------------------\n", - "wow beautiful dangerous sandy \n", + "beautiful dangerous sandy \n", "\n", "\n", "This right now, this. #proudtobeanamerican soldiers-1 Sandy-0 nothing can take our dedication away. #melting http://t.co/taMxuHsf\n", "\n", "--------------------------------------------------------\n", - "right proudtobeanamerican soldiers 1 sandy 0 nothing take dedication away melting \n", + "right proudtobeanamerican soldiers sandy nothing take dedication away melting \n", "\n", "\n", "Asi fué la gran entrada de Sandy a NYC... http://t.co/tpEbRmU6\n", "\n", "--------------------------------------------------------\n", - "asi fué gran entrada sandy nyc \n", + "asi fué gran entrada sandy new york city \n", "\n", "\n", "Sandy hitting New York. Praying all my family and friends back home are safe! http://t.co/vFsgCBqw\n", @@ -29950,7 +26718,7 @@ "OMG esta foto del huracan Sandy que miedo wow impresionante http://t.co/h71HLcxe\n", "\n", "--------------------------------------------------------\n", - "omg foto huracan sandy miedo wow impresionante \n", + "foto huracan sandy miedo impresionante \n", "\n", "\n", "#repost sandy is Crazy http://t.co/t146P5ME\n", @@ -29962,7 +26730,7 @@ "I know Sandy sucks and while we're all panicking and complaining, these soldiers are still out doing their j http://t.co/8e4POET0\n", "\n", "--------------------------------------------------------\n", - "know sandy sucks panicking complaining soldiers still j \n", + "know sandy sucks panicking complaining soldiers still \n", "\n", "\n", "Sandy Mande anraje http://t.co/n5eKn5D9\n", @@ -29977,22 +26745,16 @@ "still guard despite sandy \n", "\n", "\n", - "America 1 sandy 0 http://t.co/oj8DNH2b\n", - "\n", - "--------------------------------------------------------\n", - "america 1 sandy 0 \n", - "\n", - "\n", "Holy crap indeed - foreboding pic of hurrance Sandy: http://t.co/XHJDrv52 /via http://t.co/Xt7GD86P\n", "\n", "--------------------------------------------------------\n", - "holy crap indeed foreboding pic hurrance sandy via \n", + "holy crap indeed foreboding pic hurrance sandy \n", "\n", "\n", "Imágenes del huracán Sandy , llegando a new York , 7,000 vuelos cancelados http://t.co/ouBrIEgN\n", "\n", "--------------------------------------------------------\n", - "imágenes huracán sandy llegando new york 7 000 vuelos cancelados \n", + "imágenes huracán sandy llegando new york vuelos cancelados \n", "\n", "\n", "What Sandy is doing right now.. ⚡🌊 http://t.co/muqBCw8Q\n", @@ -30013,16 +26775,10 @@ "holy hell look hurricaine sandy spinned id stroke biggestfear \n", "\n", "\n", - "Sandy. #NYC http://t.co/U6560HL2\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "Sandy aint playing games!! #Nyc http://t.co/iCtyvWqt\n", "\n", "--------------------------------------------------------\n", - "sandy aint playing games nyc \n", + "sandy aint playing games new york city \n", "\n", "\n", "Hello Sandy http://t.co/9fBi7d62\n", @@ -30040,13 +26796,7 @@ "Omg Sandy approaching NYC!! Pleeeeeease be safe everyone!! http://t.co/n9hIthPw\n", "\n", "--------------------------------------------------------\n", - "omg sandy approaching nyc pleeeeeease safe everyone \n", - "\n", - "\n", - "NYC {#Hurricane Sandy} http://t.co/IVkjBTkP\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricane sandy \n", + "sandy approaching new york city pleeeeeease safe everyone \n", "\n", "\n", "#hurricane Sandy #operationsurvival #areyouprepared http://t.co/BH4G3dVC\n", @@ -30058,13 +26808,13 @@ "Sandy da mas miedo q los marcianos d Independence Day!!! https://t.co/JPcu54dX\n", "\n", "--------------------------------------------------------\n", - "sandy da mas miedo q marcianos independence day \n", + "sandy miedo q marcianos independence day \n", "\n", "\n", "olha a sandy gemt http://t.co/dlfS0CCS\n", "\n", "--------------------------------------------------------\n", - "olha sandy gemt \n", + "ola sandy gemt \n", "\n", "\n", "Independance day Sandy New-York http://t.co/60Y3cp5P\n", @@ -30073,22 +26823,10 @@ "independance day sandy new york \n", "\n", "\n", - "Sandy approaches NYC http://t.co/xOtk4K3v @juneambrose @thinkprogress @IntegrativeInfo RT @gardencatlady #photo\n", - "\n", - "--------------------------------------------------------\n", - "sandy approaches nyc \n", - "\n", - "\n", "Fiquei impressionada com essa foto,furacão Sandy passando por NY,e parece que já começou a fazer estragos. Q http://t.co/ozmoDguW\n", "\n", "--------------------------------------------------------\n", - "fiquei impressionada com essa foto furacão sandy passando ny parece já começou fazer estragos q \n", - "\n", - "\n", - "Sandy... #NY http://t.co/5dtL2J3n\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", + "fiquei impressionada foto furacão sandy passando new york parece começou fazer estragos q \n", "\n", "\n", "http://t.co/KaPwut3q\\nAwesome picture of our military men who brave bin laden or sandy!\n", @@ -30106,19 +26844,19 @@ "Achei q era una foto desses filmes de Hollywood mas não êh não.. Êh o furacão Sandy http://t.co/TRDq6SQP\n", "\n", "--------------------------------------------------------\n", - "achei q foto desses filmes hollywood mas não êh não êh furacão sandy \n", + "achei q foto desses filmes hollywood êh êh furacão sandy \n", "\n", "\n", "SANDY. #weather #nyc #instaday #nature #nofilter #instanature #igersnyc #fear #endoftheworld? #instasave #i http://t.co/6L7R2adc\n", "\n", "--------------------------------------------------------\n", - "sandy weather nyc instaday nature nofilter instanature igersnyc fear endoftheworld instasave \n", + "sandy weather new york city instaday nature nofilter instanature igersnyc fear endoftheworld instasave \n", "\n", "\n", "Sandy chegando em Nova York! @ New York http://t.co/2sRBaXBx\n", "\n", "--------------------------------------------------------\n", - "sandy chegando em nova york new york \n", + "sandy chegando nova york new york \n", "\n", "\n", "Sandy u a crazy bitch. http://t.co/3DRHGdct\n", @@ -30142,25 +26880,19 @@ "http://t.co/9bqU2Bg4 - QUE FOTO FODA! NYC e o Furacão Sandy!\n", "\n", "--------------------------------------------------------\n", - "foto foda nyc furacão sandy \n", + "foto foda new york city furacão sandy \n", "\n", "\n", "Sandy en NY qe bonita tenia qe ser mujer hahah http://t.co/wESo2i8w\n", "\n", "--------------------------------------------------------\n", - "sandy ny qe bonita tenia qe ser mujer hahah \n", + "sandy new york qe bonita tenia qe ser mujer hahah \n", "\n", "\n", "Ela esta por vir... Sandy!!!!! #Quemedo http://t.co/AolfKZnC\n", "\n", "--------------------------------------------------------\n", - "ela vir sandy quemedo \n", - "\n", - "\n", - "WOW! SANDY IS NOT PLAYING! http://t.co/VjnN4eHT\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy playing \n", + "vir sandy quemedo \n", "\n", "\n", "El huracán Sandy no juega carritos, y los tiburones menos. http://t.co/6kZWZmbu\n", @@ -30184,7 +26916,7 @@ "A cidade que eu mais amo no mundo :(. 29/10/12 - Sandy. (Via @PBiaL) #nyc #ny #usa @ NYC http://t.co/4zHOQWH7\n", "\n", "--------------------------------------------------------\n", - "cidade eu mais amo mundo 29 10 12 sandy via nyc ny usa nyc \n", + "cidade amo mundo 2 sandy new york city new york usa new york city \n", "\n", "\n", "Photo de sarahkenigsman http://t.co/OUqs9Ux4 sandy new york\n", @@ -30196,7 +26928,7 @@ "Thoughts and prayers with those who are vulnerable. “@thinkprogress: Sandy approaches NYC http://t.co/QIOZuq6V\n", "\n", "--------------------------------------------------------\n", - "thoughts prayers vulnerable sandy approaches nyc \n", + "thoughts prayers vulnerable \n", "\n", "\n", "Sandy #nofilter http://t.co/6RKXg6en\n", @@ -30214,13 +26946,13 @@ "My poor NYC. Be safe.RT @dtissagirl this real life? RT: @thinkprogress: Sandy approaches NYC http://t.co/WFH4NmUL (via @juneambrose)\n", "\n", "--------------------------------------------------------\n", - "poor nyc safe \n", + "poor new york city safe \n", "\n", "\n", "#movingpicture. Soldiers:1 Sandy:0 http://t.co/6fJ7UY3s\n", "\n", "--------------------------------------------------------\n", - "movingpicture soldiers 1 sandy 0 \n", + "movingpicture soldiers sandy \n", "\n", "\n", "Sandy hoy en New York. http://t.co/O2P8UaP6\n", @@ -30238,7 +26970,7 @@ "Sandy fazendo show em NY!!! http://t.co/L0C5BQ50\n", "\n", "--------------------------------------------------------\n", - "sandy fazendo show em ny \n", + "sandy fazendo show new york \n", "\n", "\n", "이 사진... 진짜일까?? 뉴욕에 허리케인 Sandy가 온다는데... ㅠㅠ http://t.co/hV71TYyC\n", @@ -30262,13 +26994,13 @@ "Sandy ant playn no games n Jersey... Praying for my fam n frnds nda NYC area!! http://t.co/92Sm8p80\n", "\n", "--------------------------------------------------------\n", - "sandy ant playn games n jersey praying fam n frnds nda nyc area \n", + "sandy ant playn games jersey praying fam frnds nda new york city area \n", "\n", "\n", "Cmon sandy lol http://t.co/LLLf1r1O\n", "\n", "--------------------------------------------------------\n", - "cmon sandy lol \n", + "cmon sandy \n", "\n", "\n", "here comes sandy #statueofliberty #underwater #ahhshit http://t.co/C489Zm6m\n", @@ -30280,13 +27012,13 @@ "My heart and prayers go out to NY and everyone affected by Sandy. http://t.co/O5BC4A3r\n", "\n", "--------------------------------------------------------\n", - "heart prayers go ny everyone affected sandy \n", + "heart prayers go new york everyone affected sandy \n", "\n", "\n", "Huracan sandy... te declaro la guerra! Me cagaste con el viaje a NY http://t.co/f9odMX2a\n", "\n", "--------------------------------------------------------\n", - "huracan sandy declaro guerra cagaste viaje ny \n", + "huracan sandy declaro guerra cagaste viaje new york \n", "\n", "\n", "Superstrom Sandy Pray for USA 🙏🇺🇸 http://t.co/99yvYQ2X\n", @@ -30295,18 +27027,6 @@ "superstrom sandy pray usa \n", "\n", "\n", - "SANDY........😱 http://t.co/usUOrhMU\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "Her it is!!! Sandy http://t.co/6booPxgM\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "How pretty yet tumultuous Sandy looks RT @thinkprogress Sandy approaches NYC http://t.co/lggW4jR0 (via @juneambrose)\n", "\n", "--------------------------------------------------------\n", @@ -30316,7 +27036,7 @@ "Holy hell. NYCers, careful out there. “Sandy approaches NYC” http://t.co/dTbEYqZA (via @juneambrose) (via @pnh)\n", "\n", "--------------------------------------------------------\n", - "holy hell nycers careful sandy approaches nyc \n", + "holy hell nycers careful sandy approaches new york city \n", "\n", "\n", "Sandy is od! http://t.co/LWRhvzxC\n", @@ -30328,7 +27048,7 @@ "Sandy,achei impressionante essa foto tirada hoje em nova york! Caramba, dá medo! http://t.co/2ohtLJGK\n", "\n", "--------------------------------------------------------\n", - "sandy achei impressionante essa foto tirada hoje em nova york caramba dá medo \n", + "sandy achei impressionante foto tirada hoje nova york caramba dá medo \n", "\n", "\n", "Espectacular imagen del huracán Sandy. http://t.co/YwiFwA5M\n", @@ -30340,7 +27060,7 @@ "Subhannallah...kiamat kecil pun da menakutkan... Taufan Sandy http://t.co/Kg5cwHk3\n", "\n", "--------------------------------------------------------\n", - "subhannallah kiamat kecil pun da menakutkan taufan sandy \n", + "subhannallah kiamat menakutkan taufan sandy \n", "\n", "\n", "Lo de moda sandy http://t.co/Pk1nJwwa\n", @@ -30349,12 +27069,6 @@ "moda sandy \n", "\n", "\n", - "@eluniversocom Huracán Sandy en NY http://t.co/rwZ434wu\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy ny \n", - "\n", - "\n", "Storm Sandy http://t.co/eircZfkG\n", "\n", "--------------------------------------------------------\n", @@ -30400,31 +27114,25 @@ "http://t.co/9GwyGdyr parem de falar q é o sandy esse pAREM E VÃO VER CNN BJO\n", "\n", "--------------------------------------------------------\n", - "parem falar q é sandy esse parem vão ver cnn bjo \n", + "parem falar q sandy parem vão ver cnn bjo \n", "\n", "\n", "No se la veracidad de esta foto, pero Sandy se ve terrible entrando en NY http://t.co/GGDobdTc\n", "\n", "--------------------------------------------------------\n", - "veracidad foto sandy terrible entrando ny \n", + "veracidad foto sandy terrible entrando new york \n", "\n", "\n", "Oh my !! sandy what damage are you doing !!!! http://t.co/tKxJs958\n", "\n", "--------------------------------------------------------\n", - "oh sandy damage \n", - "\n", - "\n", - "New york before Sandy! http://t.co/z9OlJVEh\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", + "sandy damage \n", "\n", "\n", "Tiburones en las calles inundadas de #NJ # SANDY http://t.co/s2d0Qqmg\n", "\n", "--------------------------------------------------------\n", - "tiburones calles inundadas nj sandy \n", + "tiburones calles inundadas new jersey sandy \n", "\n", "\n", "Sandy is bringing wildlife on niggas front steps nd shit! 😱 http://t.co/eilvShl8\n", @@ -30433,22 +27141,10 @@ "sandy bringing wildlife niggas front steps nd shit \n", "\n", "\n", - "#WOW Sandy. http://t.co/UlAkKo1L\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", - "\n", - "\n", - "Espectacular imagen del huracán sandy http://t.co/6BUcBSKi\n", - "\n", - "--------------------------------------------------------\n", - "espectacular imagen huracán sandy \n", - "\n", - "\n", "Waaaaat a shark tho!! Swimmin thru somebody jersey yard!! Sandy ain't playin!!! http://t.co/HkEAU3gh\n", "\n", "--------------------------------------------------------\n", - "waaaaat shark tho swimmin thru somebody jersey yard sandy playin \n", + "waaaaat shark tho swimmin somebody jersey yard sandy playin \n", "\n", "\n", "Glad this ain't my neighborhood. Sandy don't got crabs she got sharks!! http://t.co/Qp4bux9e\n", @@ -30472,7 +27168,7 @@ "Impresionante Imagen De La Llegada De Sandy A N. Y. http://t.co/lHlpFpCk\n", "\n", "--------------------------------------------------------\n", - "impresionante imagen llegada sandy n \n", + "impresionante imagen llegada sandy \n", "\n", "\n", "Sandy is next http://t.co/lG8B1dUZ\n", @@ -30481,12 +27177,6 @@ "sandy next \n", "\n", "\n", - "“@Peepsqueak: Sandy approaches NYC http://t.co/F3ZBiFME @juneambrose @thinkprogress @IntegrativeInfo RT @gardencatlady #photo”\n", - "\n", - "--------------------------------------------------------\n", - "sandy approaches nyc \n", - "\n", - "\n", "Hurricaine Sandy. 🇺🇸🗽🌊 http://t.co/3MwBOpKY\n", "\n", "--------------------------------------------------------\n", @@ -30526,7 +27216,7 @@ "La vecina se atormenta en NY. SANDY http://t.co/C1fnThSK\n", "\n", "--------------------------------------------------------\n", - "vecina atormenta ny sandy \n", + "vecina atormenta new york sandy \n", "\n", "\n", "New York + Sandy #HuricaneSandy http://t.co/Pz2z2dRx\n", @@ -30544,13 +27234,7 @@ "Photo de srscott11 http://t.co/ar3i7R21 impressionnantes les images qu'on commence à voir de Sandy approchant New-York.\n", "\n", "--------------------------------------------------------\n", - "photo srscott11 impressionnantes images qu commence à voir sandy approchant new york \n", - "\n", - "\n", - "Scare of Sandy 😭😭😭😭😬😬😬😬 http://t.co/M5D6OeTV\n", - "\n", - "--------------------------------------------------------\n", - "scare sandy \n", + "photo srscott11 impressionnantes images commencevoir sandy approchant new york \n", "\n", "\n", "I AIN'T SLEEPING ON THIS BITCH SANDY MAN! 😱😣😔🙏 http://t.co/cMLbQ4Ce\n", @@ -30562,7 +27246,7 @@ "http://t.co/zqaOE2Ur Foto del huracán Sandy en NY :|\n", "\n", "--------------------------------------------------------\n", - "foto huracán sandy ny \n", + "foto huracán sandy new york \n", "\n", "\n", "Sandy aint no joke! http://t.co/payDBbJk\n", @@ -30586,13 +27270,13 @@ "Furacão Sandy chegando em Nova York!!!! Que medo!!!! @ Edf. La Vivance http://t.co/H2BM3mzW\n", "\n", "--------------------------------------------------------\n", - "furacão sandy chegando em nova york medo edf vivance \n", + "furacão sandy chegando nova york medo edf vivance \n", "\n", "\n", "O_O https://t.co/gZSEMNrJ This is Sandy .-.\n", "\n", "--------------------------------------------------------\n", - "sandy \n", + "oo sandy \n", "\n", "\n", "Terrible catástrofe del huracán Sandy de su paso por NEW YORK. http://t.co/IC292pAS\n", @@ -30604,7 +27288,7 @@ "Isso foi só a SANDY....Agora imagina se o Junior viesse junto...Coitada da Estátua da Liberdade http://t.co/LLY177th\n", "\n", "--------------------------------------------------------\n", - "isso foi só sandy agora imagina junior viesse junto coitada da estátua da liberdade \n", + "sandy agora imagina junior viesse junto coitada estátua liberdade \n", "\n", "\n", "Sandy better leave my people alone! http://t.co/0teyGSm6\n", @@ -30622,7 +27306,7 @@ "Foto de Nova Iorque indagorinha... http://t.co/0VLdm8j1 Sandy depois que liberou o verbo, tá pegando geral.\n", "\n", "--------------------------------------------------------\n", - "foto nova iorque indagorinha sandy depois liberou verbo tá pegando geral \n", + "foto nova iorque indagorin sandy liberou verbo tá pegando geral \n", "\n", "\n", "If You Were Sandy @ Be Careful http://t.co/D2KLvbss\n", @@ -30634,25 +27318,25 @@ "#liberty taking it like a champ!!! Sandy ain't strong enough to knock her down!! #NYC #StatueOfLiberty http://t.co/ZgdqIiFx\n", "\n", "--------------------------------------------------------\n", - "liberty taking like champ sandy strong enough knock nyc statueofliberty \n", + "liberty taking like champ sandy strong enough knock new york city statueofliberty \n", "\n", "\n", "A Sandy ta ficando nervosa!!!! @ Midtown Manhattan http://t.co/oUyCVdRL\n", "\n", "--------------------------------------------------------\n", - "sandy ta ficando nervosa midtown manhattan \n", + "sandy ficando nervosa midtown manhattan \n", "\n", "\n", "Sandy llego a NY http://t.co/hqBke2Pn\n", "\n", "--------------------------------------------------------\n", - "sandy llego ny \n", + "sandy llego new york \n", "\n", "\n", "Sandy nos ha querido quitar la libertad http://t.co/it13fJ0x\n", "\n", "--------------------------------------------------------\n", - "sandy querido quitar libertad \n", + "sandy nosquerido quitar libertad \n", "\n", "\n", "Be Safe from Sandy http://t.co/CWw4C4rO\n", @@ -30661,12 +27345,6 @@ "safe sandy \n", "\n", "\n", - "Sandy was here http://t.co/8kJZhgMN\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Not gonna lie, Sandy is pretty hot. 😂 http://t.co/gfVJUxbV\n", "\n", "--------------------------------------------------------\n", @@ -30676,7 +27354,7 @@ "“@thinkprogress Sandy approaches NYC http://t.co/7YFSfKxC (via @juneAmbrose)” my word\n", "\n", "--------------------------------------------------------\n", - "sandy approaches nyc word \n", + "sandy approaches new york city word \n", "\n", "\n", "Crazy sandy http://t.co/nU8hJVjC\n", @@ -30688,7 +27366,7 @@ "Here is a shot of NYC as Sandy makes her way. http://t.co/x0txzrnj\n", "\n", "--------------------------------------------------------\n", - "shot nyc sandy makes way \n", + "shot new york city sandy makes way \n", "\n", "\n", "Photo de breakingnewschile http://t.co/GQiULTsW lady Liberty is waiting Sandy\n", @@ -30706,31 +27384,25 @@ "still going even through sandy #repost #highestrespect #unknownsoldier http://t.co/8cgzn9NR\n", "\n", "--------------------------------------------------------\n", - "still going even sandy repost highestrespect unknownsoldier \n", + "still going even sandy repost highestrespect unknown soldier \n", "\n", "\n", "Imagens do show da Sandy em NY\\nhttp://t.co/FY6FNcbS\n", "\n", "--------------------------------------------------------\n", - "imagens show da sandy em ny \n", + "imagens show sandy new york \n", "\n", "\n", "Impresionante la foto del huracán Sandy sobre NY. Parece de película. http://t.co/eKGv0bmU vía @TwitPic\n", "\n", "--------------------------------------------------------\n", - "impresionante foto huracán sandy ny parece película vía \n", + "impresionante foto huracán sandy new york parece película vía \n", "\n", "\n", "Brigantine Nj had this visitor. Thanks sandy now we are food. http://t.co/Uf6345tr\n", "\n", "--------------------------------------------------------\n", - "brigantine nj visitor thanks sandy food \n", - "\n", - "\n", - "Damn sandy http://t.co/bRQS5eLk\n", - "\n", - "--------------------------------------------------------\n", - "damn sandy \n", + "brigantine new jersey visitor thanks sandy food \n", "\n", "\n", "Huracán Sandy. Imagen real @riperbaa @ruben__ponce http://t.co/ZuURqOfD\n", @@ -30742,13 +27414,7 @@ "La siguiente imagen no es 1 invasión extraterrestre, ni mucho menos Chávez visitando a New York en helicoptero,es Sandy http://t.co/ewk23WSP\n", "\n", "--------------------------------------------------------\n", - "siguiente imagen 1 invasión extraterrestre menos chávez visitando new york helicoptero sandy \n", - "\n", - "\n", - "Huracan Sandy en NY http://t.co/gY3gZ1wM\n", - "\n", - "--------------------------------------------------------\n", - "huracan sandy ny \n", + "siguiente imagen invasión extraterrestre menos chávez visitando new york helicoptero sandy \n", "\n", "\n", "I think we are fine .. Sandy ain't got nothin on us. http://t.co/3UHlJg1P\n", @@ -30769,24 +27435,12 @@ "sandy fucking shit yea thats damn shark \n", "\n", "\n", - "Sandy por @pedrobial http://t.co/c4C3Krlh\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Praying for everyone affected by #hurricane sandy.. http://t.co/5I8RfXBU\n", "\n", "--------------------------------------------------------\n", "praying everyone affected hurricane sandy \n", "\n", "\n", - "http://t.co/IUNQ7OCB Sandy ;0\n", - "\n", - "--------------------------------------------------------\n", - "sandy 0 \n", - "\n", - "\n", "Hoax RT “@DuarteJr_: Imagens do Furacão Sandy passando por New York! Impressionante como somos vulneráveis by @rodlago http://t.co/6eVgSeWa”\n", "\n", "--------------------------------------------------------\n", @@ -30805,16 +27459,10 @@ "bitch sandy \n", "\n", "\n", - "Huracán Sandy en NY!!! http://t.co/30OX56ua\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy ny \n", - "\n", - "\n", "Para tomar en cuenta! Huracán Sandy en NY http://t.co/44PZZP36\n", "\n", "--------------------------------------------------------\n", - "tomar cuenta huracán sandy ny \n", + "tomar cuenta huracán sandy new york \n", "\n", "\n", "Fuuuuuuuuuuuuuuuuu sandy http://t.co/Z472E7XE\n", @@ -30859,12 +27507,6 @@ "sandy work \n", "\n", "\n", - "Huracán Sandy : ( http://t.co/uaPiRVIt\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy \n", - "\n", - "\n", "“@talybcn17: @Alerguez Has visto la foto del huracán Sandy? http://t.co/N8VJiSEY” #pacagarse\n", "\n", "--------------------------------------------------------\n", @@ -30904,7 +27546,7 @@ "El huracán Sandy llegar a NY #LikeAMovie http://t.co/teJ1LWgv\n", "\n", "--------------------------------------------------------\n", - "huracán sandy llegar ny likeamovie \n", + "huracán sandy llegar new york likeamovie \n", "\n", "\n", "@Alerguez Has visto la foto del huracán Sandy? http://t.co/6N3FQiAV\n", @@ -30916,13 +27558,13 @@ "NYC vs sandy http://t.co/uIZkVPhk\n", "\n", "--------------------------------------------------------\n", - "nyc vs sandy \n", + "new york city versus sandy \n", "\n", "\n", "IMPRESIONANTE LLEGADA DEL HURACÁN SANDY A NY! http://t.co/fUUrn67B\n", "\n", "--------------------------------------------------------\n", - "impresionante llegada huracán sandy ny \n", + "impresionante llegada huracán sandy new york \n", "\n", "\n", "Regardless of sandy. http://t.co/zLN2ymcL\n", @@ -30946,25 +27588,19 @@ "OMG fuck this! Sandy is scary #scary #hurricane #newyork #weather #2012 http://t.co/UvjEFgru\n", "\n", "--------------------------------------------------------\n", - "omg fuck sandy scary scary hurricane newyork weather 2012 \n", + "fuck sandy scary scary hurricane new york weather012 \n", "\n", "\n", "NYC looking crazy for sandy http://t.co/zD8DFH14\n", "\n", "--------------------------------------------------------\n", - "nyc looking crazy sandy \n", - "\n", - "\n", - "Sandy :0 http://t.co/DsrdTHpY\n", - "\n", - "--------------------------------------------------------\n", - "sandy 0 \n", + "new york city looking crazy sandy \n", "\n", "\n", "Huracán Sandy, haciendo de las suyas en NY!!!!!!!!!!! http://t.co/gLYjAqBs\n", "\n", "--------------------------------------------------------\n", - "huracán sandy haciendo ny \n", + "huracán sandy haciendo new york \n", "\n", "\n", "Jaws and sandy http://t.co/cWpOwniY\n", @@ -30973,18 +27609,6 @@ "jaws sandy \n", "\n", "\n", - "Here comes sandy 😳 http://t.co/1uPlzcmR\n", - "\n", - "--------------------------------------------------------\n", - "comes sandy \n", - "\n", - "\n", - "http://t.co/GErhjOXn FURACÃO SANDY <3\n", - "\n", - "--------------------------------------------------------\n", - "furacão sandy less 3 \n", - "\n", - "\n", "Repost SANDY aint playing http://t.co/a8ia95x8\n", "\n", "--------------------------------------------------------\n", @@ -30994,19 +27618,13 @@ "Sup Sandy. #repost #hurricane #NYC http://t.co/R2ckzziI\n", "\n", "--------------------------------------------------------\n", - "sup sandy repost hurricane nyc \n", - "\n", - "\n", - "NY During Sandy http://t.co/iT2xHU5b\n", - "\n", - "--------------------------------------------------------\n", - "ny sandy \n", + "sup sandy repost hurricane new york city \n", "\n", "\n", "This is amazing. Since 1937, Soldiers have been guarding this tomb. And Sandy will be no exception. http://t.co/6ep48Lqv\n", "\n", "--------------------------------------------------------\n", - "amazing since 1937 soldiers guarding tomb sandy exception \n", + "amazing since937 soldiers guarding tomb sandy exception \n", "\n", "\n", "Lady liberty meets sandy #amazing http://t.co/M1Rz0BdZ\n", @@ -31018,13 +27636,13 @@ "Sandy hits NY http://t.co/I0CWGdxF\n", "\n", "--------------------------------------------------------\n", - "sandy hits ny \n", + "sandy hits new york \n", "\n", "\n", "No sé si està manipulada, però és una imatge brutal: el Sandy sobre NY https://t.co/8dZXZbyF\n", "\n", "--------------------------------------------------------\n", - "sé si està manipulada però és imatge brutal sandy ny \n", + "sé si està manipulada però és imatge brutal sandy new york \n", "\n", "\n", "Sandy on its way to new york...:( http://t.co/PyBNAXGG\n", @@ -31036,7 +27654,7 @@ "@_tomate Imagina se fosse Sandy e Junior #FuraçãoSandy http://t.co/59mBRwss\n", "\n", "--------------------------------------------------------\n", - "imagina fosse sandy junior furaçãosandy \n", + "imagina sandy junior furaçãosandy \n", "\n", "\n", "Eita.... sinistro!!! Furacão Sandy!! Foto de Tomate!! http://t.co/lutBiWg0\n", @@ -31048,13 +27666,13 @@ "Tormenta Sandy en NY >>> http://t.co/kVthtTgW”\n", "\n", "--------------------------------------------------------\n", - "tormenta sandy ny greater greater greater \n", + "tormenta sandy new york \n", "\n", "\n", "resultados da sandy: http://t.co/gI0ulRBT 1 tubarão em new jersey q\n", "\n", "--------------------------------------------------------\n", - "resultados da sandy 1 tubarão em new jersey q \n", + "resultados sandy tubarão new jersey q \n", "\n", "\n", "http://t.co/fwYkEBSd Furacão Sandy, fóda *---*\n", @@ -31084,13 +27702,13 @@ "Até tubarão nas ruas de New Jersey http://t.co/6byFiEG7 (Furacão Sandy)\n", "\n", "--------------------------------------------------------\n", - "até tubarão nas ruas new jersey furacão sandy \n", + "tubarão ruas new jersey furacão sandy \n", "\n", "\n", "Furacão Sandy chegando em NY O.O http://t.co/onlWisHb\n", "\n", "--------------------------------------------------------\n", - "furacão sandy chegando em ny \n", + "furacão sandy chegando new york \n", "\n", "\n", "la foto de neojpx http://t.co/C9kDZqv5 HURACÁN SANDY. El metro!\n", @@ -31098,7 +27716,13 @@ "--------------------------------------------------------\n", "foto neojpx huracán sandy metro \n", "\n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "gente, que foto perfeita/assustadora do furacão Sandy http://t.co/y0F8fKIN :O\n", "\n", "--------------------------------------------------------\n", @@ -31126,13 +27750,13 @@ "Hurracan sandy NY 2012 http://t.co/jzYNUYY6\n", "\n", "--------------------------------------------------------\n", - "hurracan sandy ny 2012 \n", + "hurracan sandy ny012 \n", "\n", "\n", "NYC meet Sandy... Sandy do work #welcometothejungle http://t.co/ncUzbIVp\n", "\n", "--------------------------------------------------------\n", - "nyc meet sandy sandy work welcometothejungle \n", + "new york city meet sandy sandy work welcometothejungle \n", "\n", "\n", "Sandy wasnt playin http://t.co/EVEsmaUP\n", @@ -31144,7 +27768,7 @@ "Sandy too... banyak jalan dinaiki air.. pandulah berhati-hati... http://t.co/bPPCjCIn\n", "\n", "--------------------------------------------------------\n", - "sandy banyak jalan dinaiki air pandulah berhati hati \n", + "sandy jalan dinaiki air pandulah berhati hati \n", "\n", "\n", "New York today.. damn sandy go back to bikini bottom http://t.co/ZKjTEqGN\n", @@ -31183,16 +27807,10 @@ "sandy puso loca help yameasuste \n", "\n", "\n", - "Sandy :o RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/OMv5eBuA\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Foto di illypocket http://t.co/qdz9CQlR foto dagli USA dell'uragano Sandy prese da Instagram\n", "\n", "--------------------------------------------------------\n", - "foto di illypocket foto dagli usa dell uragano sandy prese da instagram \n", + "foto illypocket foto dagli usa dell uragano sandy prese instagram \n", "\n", "\n", "Oke dit geloof ik dus weer niet RT @SwagxPube door de orkaan sandy zwemmen er zelf haaien door de straten. http://t.co/2V8KYHnb\n", @@ -31210,13 +27828,13 @@ "#ForeverFunny this is Category 1 Sandy http://t.co/pPZBnLYn\n", "\n", "--------------------------------------------------------\n", - "foreverfunny category 1 sandy \n", + "foreverfunny category sandy \n", "\n", "\n", "Sandy coming for #NYC http://t.co/pLaSNfYP\n", "\n", "--------------------------------------------------------\n", - "sandy coming nyc \n", + "sandy coming new york city \n", "\n", "\n", "Is Sandy coming to a town near you? http://t.co/Axj5KQ9S\n", @@ -31228,7 +27846,7 @@ "Sandy at her finest ... #Masterpiece #Beautiful #NYC #Hurricane http://t.co/HVLJuqGQ\n", "\n", "--------------------------------------------------------\n", - "sandy finest masterpiece beautiful nyc hurricane \n", + "sandy finest masterpiece beautiful new york city hurricane \n", "\n", "\n", "Sandy..que foto! http://t.co/Snb6EEYT\n", @@ -31246,7 +27864,7 @@ "Hope my city is goin to be ok afta dis sandy bitch #ny😱😢😢😢 http://t.co/UVNXU5LT\n", "\n", "--------------------------------------------------------\n", - "hope city goin ok afta dis sandy bitch ny \n", + "hope city going ok aftasandy bitch new york \n", "\n", "\n", "Sandy turntup http://t.co/vk4PslnK\n", @@ -31258,25 +27876,19 @@ "U see sandy? #hurricane #NewYork http://t.co/yga1X3NV\n", "\n", "--------------------------------------------------------\n", - "see sandy hurricane newyork \n", - "\n", - "\n", - "Oh sandy http://t.co/TEnuHSH1\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", + "see sandy hurricane new york \n", "\n", "\n", "NY fantasma por Sandy cavb1977 http://t.co/HtUCloTK\n", "\n", "--------------------------------------------------------\n", - "ny fantasma sandy cavb1977 \n", + "new york fantasma sandy cavb1977 \n", "\n", "\n", "Foto di edwardngzh http://t.co/banl3Oc8 foto dagli USA dell'uragano Sandy prese da Instagram\n", "\n", "--------------------------------------------------------\n", - "foto di edwardngzh foto dagli usa dell uragano sandy prese da instagram \n", + "foto edwardngzh foto dagli usa dell uragano sandy prese instagram \n", "\n", "\n", "Se impone ante sandy http://t.co/VXaLlmR2\n", @@ -31300,7 +27912,7 @@ "Não é cena de filme, é furacão Sandy - chegando em New York #Oremos http://t.co/cuepRDKq\n", "\n", "--------------------------------------------------------\n", - "não é cena filme é furacão sandy chegando em new york oremos \n", + "cena filme furacão sandy chegando new york oremos \n", "\n", "\n", "Sandy is definitely making an EPIC appearance!!! http://t.co/16TvEf58\n", @@ -31312,7 +27924,7 @@ "No es ninguna película de Hollywood, sólo es el Huracán Sandy llegando a NY http://t.co/4CjrluNk\n", "\n", "--------------------------------------------------------\n", - "ninguna película hollywood sólo huracán sandy llegando ny \n", + "ninguna película hollywood sólo huracán sandy llegando new york \n", "\n", "\n", "Sandy be good http://t.co/MJGvx710\n", @@ -31324,13 +27936,13 @@ "Increible sandy trae tiburon a las calles de nj 😳 http://t.co/0ppoWlaq\n", "\n", "--------------------------------------------------------\n", - "increible sandy trae tiburon calles nj \n", + "increible sandy trae tiburon calles new jersey \n", "\n", "\n", "Le prochain Roland Emmerich ? oh wait… RT @bertrand_k Sandy approaches NYC http://t.co/8BCk2ttj via @juneambrose @iznogoodgood\n", "\n", "--------------------------------------------------------\n", - "prochain roland emmerich oh wait \n", + "prochain roland emmerich wait \n", "\n", "\n", "Sandy en Nueva York :D http://t.co/2KE2cARr\n", @@ -31351,16 +27963,10 @@ "new york skyline sandy approaches \n", "\n", "\n", - "Sandy en NY >>> http://t.co/USYKPHVA\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny greater greater greater \n", - "\n", - "\n", "'Merica-1. Sandy-0. Fuck yeah. http://t.co/XMIEntMw\n", "\n", "--------------------------------------------------------\n", - "merica 1 sandy 0 fuck yeah \n", + "merica sandy fuck yeah \n", "\n", "\n", "Aquí esta la foro de Sandy sobre new york http://t.co/QZLooHS0\n", @@ -31396,7 +28002,7 @@ "WELCOME TO NYC SANDY.!! http://t.co/Ksj80hQO\n", "\n", "--------------------------------------------------------\n", - "welcome nyc sandy \n", + "welcome new york city sandy \n", "\n", "\n", "Joder.... RT @Fernybg7: MPRESIONANTE¡¡¡¡¡ Imagen de Nueva York con la llegada del huracán Sandy... http://t.co/RJMgGMSY\"\n", @@ -31408,13 +28014,13 @@ "Furacão Sandy está acabando com os Estados Unidos http://t.co/IRKfgbDh\n", "\n", "--------------------------------------------------------\n", - "furacão sandy acabando com unidos \n", + "furacão sandy acabando unidos \n", "\n", "\n", "Tormenta Sandy , NYC ... Impresionante imagen ... http://t.co/eh8lBDP3\n", "\n", "--------------------------------------------------------\n", - "tormenta sandy nyc impresionante imagen \n", + "tormenta sandy new york city impresionante imagen \n", "\n", "\n", "I named this shark Sandy. http://t.co/wSxLZBg3\n", @@ -31432,7 +28038,7 @@ "Sandy al momento de llegar a NY☔⚡🗽 http://t.co/XYENcmXd\n", "\n", "--------------------------------------------------------\n", - "sandy momento llegar ny \n", + "sandy momento llegar new york \n", "\n", "\n", "Furacão Sandy @ Taguatinga http://t.co/g9Z6pjti\n", @@ -31444,13 +28050,7 @@ "Sandy Storm kayak di film2 Hollywood ...\\nhttp://t.co/nFMoFjt6\n", "\n", "--------------------------------------------------------\n", - "sandy storm kayak di film2 hollywood \n", - "\n", - "\n", - "@MonsieurJacob: Saw this picture of sandy on Facebook, daaaaaang http://t.co/5oiM6hMi 😳\n", - "\n", - "--------------------------------------------------------\n", - "saw picture sandy facebook daaaaaang \n", + "sandy storm kayak film2 hollywood \n", "\n", "\n", "https://t.co/ZUStjAjv tendeu sandy....\n", @@ -31462,7 +28062,7 @@ "Sandy just wants to say HI. #hurricane #omg #panjc http://t.co/6MWYoRUR\n", "\n", "--------------------------------------------------------\n", - "sandy wants say hi hurricane omg panjc \n", + "sandy wants say hi hurricane panjc \n", "\n", "\n", "Furacao Sandy! Voo cancelado! http://t.co/2JvPF132\n", @@ -31495,12 +28095,6 @@ "times square tras evacuación apocalipsis zomb err huracán sandy \n", "\n", "\n", - "“@_pushaC: Sandy http://t.co/E0e4PKJM” crazy\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", - "\n", - "\n", "Man sandy Foreal?? ⚡⚡⚡☔☔⚡🌊🌊☁🚣⛵💡🔌🚬🚬🚬🔫🔫🔒🔒🔐🔑🔒🚪🚪🚪🔨🔨🔨🏊🏊🏊🏊🎣🎣🎣😱😰😖😫😩😤💨💨💨💨💦💦💦💧💦💥💥💥👽💩🙌🙌🙌🙌🙌🏃🏃🏃🏃🏃👫👭💏👪👪👬👭💑🙇🌕🌕🌕🌎 http://t.co/vEWVXy10\n", "\n", "--------------------------------------------------------\n", @@ -31513,16 +28107,10 @@ "sandy fucking around \n", "\n", "\n", - "Sandy aint no joke http://t.co/i6BcM3bm\n", - "\n", - "--------------------------------------------------------\n", - "sandy aint joke \n", - "\n", - "\n", "la imagen impantante del dia son los tiburones en las calles de N.Y por el hurracan sandy http://t.co/mp0wBWnD\n", "\n", "--------------------------------------------------------\n", - "imagen impantante dia tiburones calles n hurracan sandy \n", + "imagen impantante tiburones calles hurracan sandy \n", "\n", "\n", "O.M.G!!!! RT @thinkprogress: Sandy approaches NYC http://t.co/lF6IAzE3 (via @juneambrose) ll @JALpalyul\n", @@ -31540,19 +28128,19 @@ "Sandy by @JasonOtts #NY #Liberty #Photography http://t.co/nNrOn5Hu\n", "\n", "--------------------------------------------------------\n", - "sandy ny liberty photography \n", + "sandy new york liberty photography \n", "\n", "\n", "New Yorks skyline Sandy is forming smh http://t.co/i6qkS6GF\n", "\n", "--------------------------------------------------------\n", - "new yorks skyline sandy forming smh \n", + "new yorks skyline sandy forming \n", "\n", "\n", "“@thinkprogress: Sandy approaches NYC http://t.co/cQGeRxuN (via @juneambrose)” stay safe NYC 💜\n", "\n", "--------------------------------------------------------\n", - "stay safe nyc \n", + "stay safe new york city \n", "\n", "\n", "Una imagen de la llegada de Sandy, la tormenta perfecta a Cuidad Gotica, New York\\nhttp://t.co/d1R4cpBP\n", @@ -31564,13 +28152,13 @@ "De todas as imagens que eu vi do furacão Sandy, essa foi a mais impressionante: http://t.co/7lI45nHd\n", "\n", "--------------------------------------------------------\n", - "todas imagens eu furacão sandy essa foi mais impressionante \n", + "todas imagens furacão sandy impressionante \n", "\n", "\n", "Sandy over NYC #hurricane #statueofliberty #hurricane #storm #amazing #Love #instagood #photooftheday #iphon http://t.co/cjzYAJmM\n", "\n", "--------------------------------------------------------\n", - "sandy nyc hurricane statueofliberty hurricane storm amazing love instagood photooftheday iphon \n", + "sandy new york city hurricane statueofliberty hurricane storm amazing love instagood photooftheday iphon \n", "\n", "\n", "Sandy is a bad bitch... http://t.co/O8RWeLJB\n", @@ -31582,7 +28170,7 @@ "foto de la tormenta sandy en NY http://t.co/dyhXQSUW\n", "\n", "--------------------------------------------------------\n", - "foto tormenta sandy ny \n", + "foto tormenta sandy new york \n", "\n", "\n", "Sandy has nothing on America 🇺🇸 http://t.co/dOs2Rx7s\n", @@ -31594,25 +28182,19 @@ "Tem até tubarão em NY por causa do Sandy http://t.co/OBf8ZQXn #2012\n", "\n", "--------------------------------------------------------\n", - "tem até tubarão em ny causa sandy 2012 \n", - "\n", - "\n", - "“@Nleland4: Sandy at her finest! http://t.co/q2OvgBTL” fake pic lol\n", - "\n", - "--------------------------------------------------------\n", - "fake pic lol \n", + "tubarão new york causa sandy2 \n", "\n", "\n", "Slutty Sandy over NYC today. Crazy. http://t.co/GP7ev24J\n", "\n", "--------------------------------------------------------\n", - "slutty sandy nyc today crazy \n", + "slutty sandy new york city today crazy \n", "\n", "\n", "Wow, amazing photo! RT @IndScene Sandy arriving to New York City http://t.co/X33GCq0L\n", "\n", "--------------------------------------------------------\n", - "wow amazing photo \n", + "amazing photo \n", "\n", "\n", "Esto tambien lo trajo SANDY a New Jersey http://t.co/tOyBDboX …un tiburón!\n", @@ -31645,12 +28227,6 @@ "sandy repost \n", "\n", "\n", - "Sandy over NYC http://t.co/oh4H8rrx\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "Sandy http://t.co/VXNsRH4x 😰 #staysafe\n", "\n", "--------------------------------------------------------\n", @@ -31666,31 +28242,25 @@ "Sandy, non distruggere la mia NYC.... ❤ http://t.co/vcLo11Pi\n", "\n", "--------------------------------------------------------\n", - "sandy non distruggere mia nyc \n", + "sandy non distruggere mia new york city \n", "\n", "\n", "Sandy approaching NYC. http://t.co/7IMn40M0\n", "\n", "--------------------------------------------------------\n", - "sandy approaching nyc \n", + "sandy approaching new york city \n", "\n", "\n", "Increible imagen del huracan \"Sandy\" sobre NYC http://t.co/GjAXMIU9\n", "\n", "--------------------------------------------------------\n", - "increible imagen huracan sandy nyc \n", - "\n", - "\n", - "Sandy isn't playing. http://t.co/qD4nymXp\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", + "increible imagen huracan sandy new york city \n", "\n", "\n", "Day after tomorrow? Nah Sandy #probstoFrank http://t.co/fBEoMUym\n", "\n", "--------------------------------------------------------\n", - "day tomorrow nah sandy probstofrank \n", + "day tomorrow sandy probstofrank \n", "\n", "\n", "puta madre !!! SANDY ... http://t.co/KObIkP7P\n", @@ -31702,7 +28272,7 @@ "Sandy llega u NY !!!! ☁⚡🌀🌊 http://t.co/qavh9vPZ\n", "\n", "--------------------------------------------------------\n", - "sandy llega ny \n", + "sandy llega new york \n", "\n", "\n", "sandy e jr se formando http://t.co/De2rwuzy\n", @@ -31714,19 +28284,13 @@ "Bellos los efectos de el huran sandy en NY aun q los q estan ahi no ah de pensar lo mismo http://t.co/D6Kag1uA\n", "\n", "--------------------------------------------------------\n", - "bellos efectos huran sandy ny aun q q estan ahi ah pensar mismo \n", + "bellos efectos huran sandy new york aun q q estan ahi ah pensar mismo \n", "\n", "\n", "2012 smh Sandy got shit lookin crazy http://t.co/Zpk5qE6w\n", "\n", "--------------------------------------------------------\n", - "2012 smh sandy got shit lookin crazy \n", - "\n", - "\n", - "29/10 - Sandy! http://t.co/FHSsHr3d\n", - "\n", - "--------------------------------------------------------\n", - "29 10 sandy \n", + "2 sandy got shit lookin crazy \n", "\n", "\n", "Corre que Sandy chegou. #ig #instapic #instagram #instameet #instahub #instagood #instalove #instadaily #fol http://t.co/AbcecfSq\n", @@ -31762,25 +28326,19 @@ "Awesome: http://t.co/CZetcgdT Soldiers 1, Sandy 0\n", "\n", "--------------------------------------------------------\n", - "awesome soldiers 1 sandy 0 \n", - "\n", - "\n", - "Huracán Sandy... http://t.co/PPJvEgZN\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy \n", + "awesome soldiers sandy \n", "\n", "\n", "Honor Duty Country Not even Sandy can stop our 3rd Infantry http://t.co/04g0N0MW\n", "\n", "--------------------------------------------------------\n", - "honor duty country even sandy stop 3rd infantry \n", + "honor duty country even sandy stop infantry \n", "\n", "\n", "WTF.. Sandy Ain't Playing...Shyt Just Got Real http://t.co/JFUeAzzC\n", "\n", "--------------------------------------------------------\n", - "wtf sandy playing shyt got real \n", + "sandy playing shyt got real \n", "\n", "\n", "Calm down 'Sandy', take it easy. http://t.co/FAed6ZoI\n", @@ -31792,7 +28350,7 @@ "http://t.co/u0aP3QFl alucinante foto del huracan sandy en NY #cagatemanolo\n", "\n", "--------------------------------------------------------\n", - "alucinante foto huracan sandy ny cagatemanolo \n", + "alucinante foto huracan sandy new york cagatemanolo \n", "\n", "\n", "JODER CON \"SANDY\"....... http://t.co/ncb1kQPa\n", @@ -31809,14 +28367,8 @@ "\n", "Aí caramba dezembro esta chegando com o furacão Sandy http://t.co/3ymiWFyV\n", "\n", - "--------------------------------------------------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "aí caramba dezembro chegando com furacão sandy \n", + "--------------------------------------------------------\n", + "aí caramba dezembro chegando furacão sandy \n", "\n", "\n", "Flipando con las fotos del huracán Sandy!! Ha llevado tiburones alas calles de Nueva Jersey !! #PRAYFOREEU http://t.co/OuMTwYbp\n", @@ -31831,12 +28383,6 @@ "espeluznante foto huracán sandy \n", "\n", "\n", - "@edaldus en hier is Sandy 2.. http://t.co/jPy90IpC\n", - "\n", - "--------------------------------------------------------\n", - "sandy 2 \n", - "\n", - "\n", "Llego sandy http://t.co/IUR10Poj\n", "\n", "--------------------------------------------------------\n", @@ -31852,13 +28398,7 @@ "Sandy gonna wipe NYC out http://t.co/XP5rTKic\n", "\n", "--------------------------------------------------------\n", - "sandy gonna wipe nyc \n", - "\n", - "\n", - "Whoa! «@davesurber SANDY FRANKENSTORMY KRUEGER FTW! http://t.co/Z0EwTvMB»\n", - "\n", - "--------------------------------------------------------\n", - "whoa sandy frankenstormy krueger ftw \n", + "sandy gonna wipe new york city \n", "\n", "\n", "Sandy is making its way over, stay safe everybody. http://t.co/geiv702O\n", @@ -31867,34 +28407,16 @@ "sandy making way stay safe everybody \n", "\n", "\n", - "@os_fretes: que postal mas impresionante!! http://t.co/KsA4Ocsx que loco! Como está el paso de sandy por ahí?\n", - "\n", - "--------------------------------------------------------\n", - "postal mas impresionante loco paso sandy ahí \n", - "\n", - "\n", - "Hey Sandy. http://t.co/D60i5sPr\n", - "\n", - "--------------------------------------------------------\n", - "hey sandy \n", - "\n", - "\n", "Prayers to those up north going thru \"Sandy\" http://t.co/dBEAZiLk\n", "\n", "--------------------------------------------------------\n", - "prayers north going thru sandy \n", + "prayers north going sandy \n", "\n", "\n", "http://t.co/Kkz20smq crazy picture of Sandy coming to NEWYORK.\n", "\n", "--------------------------------------------------------\n", - "crazy picture sandy coming newyork \n", - "\n", - "\n", - "Sandy ain't playing around... http://t.co/ZRgVkeaY\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing around \n", + "crazy picture sandy coming new york \n", "\n", "\n", "Thats some Day After tomorrow type ish RT @TouchMeTEEzeMe: Sandy.. http://t.co/8iSynM35\n", @@ -31912,7 +28434,7 @@ "TUBARÃO nas ruas http://t.co/qtRRVmtw isso é só uma previa do furacão sandy ?? ou\n", "\n", "--------------------------------------------------------\n", - "tubarão nas ruas isso é só uma previa furacão sandy ou \n", + "tubarão ruas predo furacão sandy \n", "\n", "\n", "stay safe everyone. RT @byo0shi: New York meeting sandy .. #hurricane http://t.co/dbx90q4Q\n", @@ -31924,13 +28446,13 @@ "NYC. This morning. Sandy quedate por alla y no te acerques mas x aqui :) http://t.co/dXW7h1bN\n", "\n", "--------------------------------------------------------\n", - "nyc morning sandy quedate acerques mas x aqui \n", + "new york city morning sandy quedate acerques x aqui \n", "\n", "\n", "NYC with sandy approaching http://t.co/6p1h8x8i\n", "\n", "--------------------------------------------------------\n", - "nyc sandy approaching \n", + "new york city sandy approaching \n", "\n", "\n", "Día después de mañana?? noo es new York con el paso de sandy http://t.co/XUozP0hf\n", @@ -31942,13 +28464,13 @@ "NYC Storm!!! Sandy is on her way!!! http://t.co/DfcXfsb0\n", "\n", "--------------------------------------------------------\n", - "nyc storm sandy way \n", + "new york city storm sandy way \n", "\n", "\n", "Alucinante foto del huracán Sandy en NY...una pena.... http://t.co/Ri2kCPrf\n", "\n", "--------------------------------------------------------\n", - "alucinante foto huracán sandy ny pena \n", + "alucinante foto huracán sandy new york pena \n", "\n", "\n", "Soldiers - Sandy come get sum ! Thank you for protecting our unknown http://t.co/L1Sruu86\n", @@ -31960,7 +28482,7 @@ "Já pensou vc ta lá esperando o Sandy na varanda de casa e vê isso http://t.co/LBB1drvY\n", "\n", "--------------------------------------------------------\n", - "já pensou vc ta lá esperando sandy varanda casa vê isso \n", + "pensou vc lá esperando sandy varanda casa vê \n", "\n", "\n", "Huracán sandy en new York. Dios cuida a todas las personas http://t.co/X2uHfnfu\n", @@ -31978,7 +28500,7 @@ "ouvir dizer que isso aqui é o furacão sandy https://t.co/Y7lbuFFo\n", "\n", "--------------------------------------------------------\n", - "ouvir dizer isso aqui é furacão sandy \n", + "ouvir dizer aqui furacão sandy \n", "\n", "\n", "https://t.co/wjia7njt O Furacão Sandy a chegar a New York #PrayForUSA\n", @@ -31996,13 +28518,13 @@ "Uragano Sandy 🗽 #NYC #newyorkcity #newyork #america #USA #uragani #uraganosandy #statodicalamità #obama #all http://t.co/o3cy7egg\n", "\n", "--------------------------------------------------------\n", - "uragano sandy nyc newyorkcity newyork america usa uragani uraganosandy statodicalamità obama \n", + "uragano sandy new york city new yorkcity new york america usa uragani uraganosandy statodicalamità obama \n", "\n", "\n", "Sandy ....... Parece até cena de filme , chega a dar medo http://t.co/5UpwfyPk\n", "\n", "--------------------------------------------------------\n", - "sandy parece até cena filme chega dar medo \n", + "sandy parece cena filme chega dar medo \n", "\n", "\n", "JESUS CHRIST! Sandy... Y u so ratchet?!!! http://t.co/0jTDuWdz\n", @@ -32020,25 +28542,7 @@ "29/10/12. Sandy. http://t.co/zZgvDJjF\n", "\n", "--------------------------------------------------------\n", - "29 10 12 sandy \n", - "\n", - "\n", - "@lovacti0ner Furacão Sandy https://t.co/6SBGGz6R https://t.co/Cz3rb4JA :'O\n", - "\n", - "--------------------------------------------------------\n", - "furacão sandy \n", - "\n", - "\n", - "Impresionante fotografía del Huracán Sandy en New York - via @Joselito17RBB http://t.co/4QgwwwEe\n", - "\n", - "--------------------------------------------------------\n", - "impresionante fotografía huracán sandy new york \n", - "\n", - "\n", - "OMFG RT @thinkprogress Sandy approaches NYC http://t.co/QXSbe7Do (via @juneambrose)\n", - "\n", - "--------------------------------------------------------\n", - "omfg \n", + "2 sandy \n", "\n", "\n", "shot from weather channel of Sandy http://t.co/mpm6GeNC\n", @@ -32047,30 +28551,12 @@ "shot weather channel sandy \n", "\n", "\n", - "Holy shit Sandy http://t.co/oEfbxRuq\n", - "\n", - "--------------------------------------------------------\n", - "holy shit sandy \n", - "\n", - "\n", "While Sandy disrupts so much, some things go on without a glitch http://t.co/YFroG4i1\n", "\n", "--------------------------------------------------------\n", "sandy disrupts much things go without glitch \n", "\n", "\n", - "EL HURACÁN SANDY, OMGGGG. http://t.co/Exq5Lyv1\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy omgggg \n", - "\n", - "\n", - "Sandy you bitch! http://t.co/Zc3gL7ZT\n", - "\n", - "--------------------------------------------------------\n", - "sandy bitch \n", - "\n", - "\n", "Sandy just got real 😱😱 http://t.co/gxWnmbiX\n", "\n", "--------------------------------------------------------\n", @@ -32089,28 +28575,22 @@ "nyまじ sandyこわすぎやん \n", "\n", "\n", - "@CatStaggs: Wow!! RT @thinkprogress: Sandy approaches NYC http://t.co/5SnDVIhy (via @juneambrose) HOLY FUCK\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "New York sepi dan tergenang air akibat badai Sandy atau Frankenstorm http://t.co/TTjYdres\n", "\n", "--------------------------------------------------------\n", - "new york sepi tergenang air akibat badai sandy atau frankenstorm \n", + "new york sepi tergenang air akibat badai sandy frankenstorm \n", "\n", "\n", "Sandy overtaking NYC!!! http://t.co/dD2AVdSh\n", "\n", "--------------------------------------------------------\n", - "sandy overtaking nyc \n", + "sandy overtaking new york city \n", "\n", "\n", "#repost ...these are real men #guardingunknownsoldier stop complaining about sandy! http://t.co/GmSC0Eq6\n", "\n", "--------------------------------------------------------\n", - "repost real guardingunknownsoldier stop complaining sandy \n", + "repost real guardingunknown soldier stop complaining sandy \n", "\n", "\n", "Huracán Sandy en Nueva York, impresionante! http://t.co/7GLZW2eQ\n", @@ -32128,13 +28608,13 @@ "A foto do Sandy que mais rola no Instagram: um possível tubarão nas ruas de New Jersey http://t.co/SySbIUPv\n", "\n", "--------------------------------------------------------\n", - "foto sandy mais rola instagram um possível tubarão nas ruas new jersey \n", + "foto sandy rola instagram possível tubarão ruas new jersey \n", "\n", "\n", "Sandy vs. #NewYork http://t.co/LErHv9BX\n", "\n", "--------------------------------------------------------\n", - "sandy vs newyork \n", + "sandy versus new york \n", "\n", "\n", "“@PeterYoungLive: NEW YORK NOW....SANDY IS COMING STRONGER.! http://t.co/sUgz12wT”\\n\\nBe carefull.... 😱😘\n", @@ -32164,7 +28644,7 @@ "NYC vs Sandy... #REPOST http://t.co/yGmM0YIX\n", "\n", "--------------------------------------------------------\n", - "nyc vs sandy repost \n", + "new york city versus sandy repost \n", "\n", "\n", "America unphased by sandy #America http://t.co/hsadvyLZ\n", @@ -32176,7 +28656,7 @@ "huracan sandy llegando a nueva york (dicen que el q va en la lancha es chileno) http://t.co/eYsm1OKH\n", "\n", "--------------------------------------------------------\n", - "huracan sandy llegando nueva york dicen q va lancha chileno \n", + "huracan sandy llegando nueva york dicen q va lances chileno \n", "\n", "\n", "Huracan Sandy llegando a Nueva York http://t.co/7NcmHuov\n", @@ -32194,7 +28674,7 @@ "esse furacão sandy ein, q isso http://t.co/pAeJYndo olha os tubarão no meio da rua\n", "\n", "--------------------------------------------------------\n", - "esse furacão sandy ein q isso olha tubarão meio da rua \n", + "furacão sandy ein q olos tubarão meio rua \n", "\n", "\n", "Impresionante foto del huracán Sandy https://t.co/PgQb8szs\n", @@ -32203,12 +28683,6 @@ "impresionante foto huracán sandy \n", "\n", "\n", - "You don't scare me Sandy!! http://t.co/AFKQW5fR\n", - "\n", - "--------------------------------------------------------\n", - "scare sandy \n", - "\n", - "\n", "#EEUU impresionante imagen del huracán Sandy sobre Nueva York http://t.co/XrO1Snxi\n", "\n", "--------------------------------------------------------\n", @@ -32218,7 +28692,7 @@ "Espectacular toma de Sandy sobre NY. http://t.co/xkluCRDu\n", "\n", "--------------------------------------------------------\n", - "espectacular toma sandy ny \n", + "espectacular toma sandy new york \n", "\n", "\n", "Sandy sacó a este tiburon a la calle #SandyHuracán http://t.co/csKfVWeb\n", @@ -32230,13 +28704,13 @@ "Sandy ha hecho que ir por la calle y encontrarte esto sea lo mas normal del mundo en New Jersey. http://t.co/mmcuhBCw\n", "\n", "--------------------------------------------------------\n", - "sandy hecho ir calle encontrarte mas normal mundo new jersey \n", + "sandyhecho ir calle encontrarte normal mundo new jersey \n", "\n", "\n", "OLHA O FURACÃO SANDY EM NY http://t.co/YZgQnZoO que medo cara\n", "\n", "--------------------------------------------------------\n", - "olha furacão sandy em ny medo cara \n", + "olo furacão sandy new york medo \n", "\n", "\n", "Awww “@whiteboytatted: Hurricane sandy be thankful for what you have id save my dog also http://t.co/lPiAIncc”\n", @@ -32254,7 +28728,7 @@ "oh God, kindly save people there RT @MrAcconci: Amazing picture of Hurricane Sandy http://t.co/31wNUvGl\n", "\n", "--------------------------------------------------------\n", - "oh god kindly save people \n", + "god kindly save people \n", "\n", "\n", "“@_NICH_ Our prayers got out to everyone effected by this hurricane Sandy.. These are guards still holding there post http://t.co/gNQgfir6”\n", @@ -32272,7 +28746,7 @@ "Crazy Shot of NYC w/ Hurricane Sandy on the Move http://t.co/nMDashvh\n", "\n", "--------------------------------------------------------\n", - "crazy shot nyc w hurricane sandy move \n", + "crazy shot new york city w hurricane sandy move \n", "\n", "\n", "God's creations are beautiful. Please pray for those being affected by hurricane sandy. #havefaith #pray #go http://t.co/lCPLgbW8\n", @@ -32290,7 +28764,7 @@ "You know Hurricane Sandy is angry when sharks show up by your porch mhm *not my photo* #hurricanesandy #shar http://t.co/AA1qUdOo\n", "\n", "--------------------------------------------------------\n", - "know hurricane sandy angry sharks show porch mhm photo hurricanesandy shar \n", + "know hurricane sandy angry sharks show porch mhm photo hurricane sandy shar \n", "\n", "\n", "I hope that everyone in New York are safe from hurricane sandy. Property can be replaced but lives can't! ❤ http://t.co/nku8J4yx\n", @@ -32302,13 +28776,13 @@ "Hurricane Sandy about to hit NYC via @sirgutz http://t.co/wiz5FC3f\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hit nyc \n", + "hurricane sandy hit new york city \n", "\n", "\n", "Essential personnel reported to work for Hurricane Sandy #TombOfTheUnknownSoldier #ArlingtonNationalCemetery http://t.co/0Tl0aGj0\n", "\n", "--------------------------------------------------------\n", - "essential personnel reported work hurricane sandy tomboftheunknownsoldier arlingtonnationalcemetery \n", + "essential personnel reported work hurricane sandy tomboftheunknown soldier arlingtonnationalcemetery \n", "\n", "\n", "이거 멋지다 해야 하나? ㅎㄷㄷ\\n\\nRT @estima7 초현실적인 사진... RT @woosungahn: Hurricane Sandy http://t.co/1IpSWech unbelievable..\n", @@ -32320,19 +28794,13 @@ "Insane pic of Hurricane Sandy approaching NYC. http://t.co/INZISIjh\n", "\n", "--------------------------------------------------------\n", - "insane pic hurricane sandy approaching nyc \n", + "insane pic hurricane sandy approaching new york city \n", "\n", "\n", "“@Kellie_Kellz Hurricane Sandy coming in over NY....look like something out of a movie! Stay safe! http://t.co/ngwI1iga” o woww\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy coming ny look like something movie stay safe woww \n", - "\n", - "\n", - "@thegame: Damn, Hurricane Sandy got sharks swimming thru the neighborhood !!!! #ShitJustGotReal http://t.co/ORbTzwVX\n", - "\n", - "--------------------------------------------------------\n", - "damn hurricane sandy got sharks swimming thru neighborhood shitjustgotreal \n", + "hurricane sandy coming new york look like something movie stay safe w \n", "\n", "\n", "Prayers going out to everyone that is affected by Hurricane Sandy 🙏🙏🙏 http://t.co/pY5ZRpPL\n", @@ -32344,7 +28812,7 @@ "Hurricane Sandy shit.... Smh http://t.co/YkzUEg5h\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy shit smh \n", + "hurricane sandy shit \n", "\n", "\n", "http://t.co/u8LyfBg5 Hurricane Sandy...... miedazo\n", @@ -32356,7 +28824,7 @@ "Hurricane Sandy over NYC #nofilter http://t.co/gwY9zJGA\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc nofilter \n", + "hurricane sandy new york city nofilter \n", "\n", "\n", "These guys don't even stop for hurricane sandy. Major respect #tombguards #respect http://t.co/QKipFe4X\n", @@ -32368,13 +28836,13 @@ "Hurricane Sandy approaching Ny City...!!!!! 😱😱😱😱😱 http://t.co/cPfiSDiA\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy approaching ny city \n", + "hurricane sandy approaching new york city \n", "\n", "\n", "Hiu sampe ke tgh kota gitu?@irtif: *hah* #sandy \"@thegame: Damn, Hurricane Sandy got sharks swimming #ShitJustGotReal http://t.co/nITxQu1l\n", "\n", "--------------------------------------------------------\n", - "hiu sampe ke tgh kota gitu hah sandy damn hurricane sandy got sharks swimming shitjustgotreal \n", + "hiu sampe tgh kota gitu \n", "\n", "\n", "Even during hurricane sandy the Marines are There guarding! http://t.co/m8ebEpWe\n", @@ -32392,7 +28860,7 @@ "Hurricane Sandy got sharks swimming infront of peoples houses!!!!! Omg http://t.co/pMNFhWUT\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got sharks swimming infront peoples houses omg \n", + "hurricane sandy got sharks swimming infront peoples houses \n", "\n", "\n", "HURRICANE SANDY #reggaeton #ps3 #pimp #puertorican #prettyboyswag #swagga #dembow #flow #hiphop #hurricanesa http://t.co/ayuadzxd\n", @@ -32422,7 +28890,7 @@ "Hurricane \"Frankenstorm\" Sandy. Incredible. #hurricane #NewYork #amazing #disaster http://t.co/NBVF82Uh\n", "\n", "--------------------------------------------------------\n", - "hurricane frankenstorm sandy incredible hurricane newyork amazing disaster \n", + "hurricane frankenstorm sandy incredible hurricane new york amazing disaster \n", "\n", "\n", "Sandy Hurricane is coming... http://t.co/NzIuiveD\n", @@ -32431,16 +28899,10 @@ "sandy hurricane coming \n", "\n", "\n", - "Hurricane Sandy. Wow http://t.co/ykIdq5Op\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy wow \n", - "\n", - "\n", "Hurricane sandy looks immense over NY http://t.co/xUKjmfcv\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy looks immense ny \n", + "hurricane sandy looks immense new york \n", "\n", "\n", "Hurricane Sandy over New York. #Armageddon #DarknessIsbreaking #WindowsAreShaking #IthasBegun #HurricaneSand http://t.co/NUkUP5Fm\n", @@ -32452,7 +28914,7 @@ "hurricane sandy😱 #shitscrazy #realphoto #nofilter #statueofliberty #newyork http://t.co/y6nmCmXt\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy shitscrazy realphoto nofilter statueofliberty newyork \n", + "hurricane sandy shitscrazy realphoto nofilter statueofliberty new york \n", "\n", "\n", "Hurricane Sandy in New York! Beautiful but scary! Stay safe familial http://t.co/8AD3IQ0R\n", @@ -32467,12 +28929,6 @@ "real hurricane sandy \n", "\n", "\n", - "wow, amazing photo RT @I_FlyPlanez: Pretty sick photo of Hurricane Sandy approaching NYC 🗽 http://t.co/zANapt54\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing photo \n", - "\n", - "\n", "Picture someone took during hurricane Sandy! #crazy #sharktank #hirricanesandy #praying http://t.co/WipZOtDV\n", "\n", "--------------------------------------------------------\n", @@ -32482,25 +28938,19 @@ "Hurricane Sandy #sandy #hurricanesandy #nofilter http://t.co/qfED0PWv\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy sandy hurricanesandy nofilter \n", + "hurricane sandy sandy hurricane sandy nofilter \n", "\n", "\n", "Awe, I'd do the same!!! 🐶❤ RT“@whiteboytatted: Hurricane sandy be thankful for what you have id save my dog also http://t.co/V2paLlNT”\n", "\n", "--------------------------------------------------------\n", - "awe \n", - "\n", - "\n", - "Our prayers got out to everyone effected by this hurricane Sandy.. These are guards still holding there post http://t.co/KvXrmuuE\n", - "\n", - "--------------------------------------------------------\n", - "prayers got everyone effected hurricane sandy guards still holding post \n", + "awe rt \n", "\n", "\n", "Ummm hurricane sandy aint no joke smh http://t.co/z98B5eXA\n", "\n", "--------------------------------------------------------\n", - "ummm hurricane sandy aint joke smh \n", + "ummm hurricane sandy aint joke \n", "\n", "\n", "even through hurricane sandy... #tomb #of #unknown #soldier #honor #dc http://t.co/whw9tVdZ\n", @@ -32524,7 +28974,7 @@ "Wow crazy photo of Hurricane Sandy, NYC. (via mini324 ) http://t.co/lJpVl37I\n", "\n", "--------------------------------------------------------\n", - "wow crazy photo hurricane sandy nyc via mini324 \n", + "crazy photo hurricane sandy new york city mini324 \n", "\n", "\n", "Hurricane Sandy over New York #amazingpicture http://t.co/HKwfHksA\n", @@ -32548,13 +28998,7 @@ "Hurricane Sandy bring sharks to New Jersey \\355\\240\\275\\355\\270\\261 #hurricanesandy #sandy #sandyhurricane #huracan #huracansandy # http://t.co/sSvR2YsZ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy bring sharks new jersey 355 240 275 355 270 261 hurricanesandy sandy sandyhurricane huracan huracansandy \n", - "\n", - "\n", - "Hurricane Sandy... New York. http://t.co/vHymBIVZ\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", + "hurricane sandy bring sharks new jersey4075557061 hurricane sandy sandy sandyhurricane huracan huracansandy \n", "\n", "\n", "You have to admit Hurricane Sandy looks beautiful. http://t.co/cjB0IWFF\n", @@ -32572,19 +29016,13 @@ "Hurricane Sandy Hitting NYC, this looks like some The Day After Tomorrow type shit http://t.co/a7s2aObG\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hitting nyc looks like day tomorrow type shit \n", + "hurricane sandy hitting new york city looks like day tomorrow type shit \n", "\n", "\n", "I'm not sure if this picture a friend sent me of Hurricane Sandy approaching NYC is real or not (unfortunately I... http://t.co/AkTvVbnQ\n", "\n", "--------------------------------------------------------\n", - "sure picture friend sent hurricane sandy approaching nyc real unfortunately \n", - "\n", - "\n", - "Hurricane Sandy ;A;; http://t.co/TxkunEIx\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "sure picture friend sent hurricane sandy approaching new york city real unfortunately \n", "\n", "\n", "Hurricane Sandy. #pray http://t.co/ez1Net5b\n", @@ -32605,22 +29043,10 @@ "stand guard hurricane sandy ppl cant even quiet formation \n", "\n", "\n", - "Whoa! Is this real? “@lesegoworld: New York, hurricane sandy is here...real pic taken today via Scooter http://t.co/pDdj18Gd”\n", - "\n", - "--------------------------------------------------------\n", - "whoa real \n", - "\n", - "\n", - "Hurricane sandy wow http://t.co/Ng0m03qr\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy wow \n", - "\n", - "\n", "Hurricane Sandy over NYC #clouds #NYC http://t.co/lw3aW4Zt\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc clouds nyc \n", + "hurricane sandy new york city clouds new york city \n", "\n", "\n", "so crazy..that is literally a shark swimming in someones front yard in new jersey. hurricane Sandy is destro http://t.co/rPbmijoN\n", @@ -32644,13 +29070,7 @@ "Holy hurricane! Just saw this pic of Hurricane Sandy approaching NYC. Praying for all of the amazing people http://t.co/oOlbgH0x\n", "\n", "--------------------------------------------------------\n", - "holy hurricane saw pic hurricane sandy approaching nyc praying amazing people \n", - "\n", - "\n", - "Hurricane Sandy>>> http://t.co/QuEoomNS\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy greater greater greater \n", + "holy hurricane saw pic hurricane sandy approaching new york city praying amazing people \n", "\n", "\n", "Even during Hurricane Sandy http://t.co/rrX1KePo\n", @@ -32659,12 +29079,6 @@ "even hurricane sandy \n", "\n", "\n", - "@TayIsMySunshine: OMFG OMFG OMFG HURRICANE SANDY I HOPE EVERYONE IN NEW YORK STAY SAFE OMG THIS IS INSANE. http://t.co/xY8XucmA WHOA!!!!\n", - "\n", - "--------------------------------------------------------\n", - "omfg omfg omfg hurricane sandy hope everyone new york stay safe omg insane whoa \n", - "\n", - "\n", "looks so damn fresh RT @Khanvict24: Hurricane Sandy around Lady Liberty 🗽 http://t.co/NYiJQqDZ\n", "\n", "--------------------------------------------------------\n", @@ -32695,12 +29109,6 @@ "hurricane sandy approaching new york scary \n", "\n", "\n", - "http://t.co/MtefDg4m New York with hurricane sandy!\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricane sandy \n", - "\n", - "\n", "Ok, now the Hurricane Sandy pics are getting outrageously unbelievable! http://t.co/G8bxTfYi\n", "\n", "--------------------------------------------------------\n", @@ -32710,13 +29118,13 @@ "Siick picture, NYC & Hurricane Sandy http://t.co/aXBnS95Y\n", "\n", "--------------------------------------------------------\n", - "siick picture nyc hurricane sandy \n", + "siick picture new york city hurricane sandy \n", "\n", "\n", "This is a dope pic. Hurricane Sandy approaching NY http://t.co/vXFg4KaY\n", "\n", "--------------------------------------------------------\n", - "dope pic hurricane sandy approaching ny \n", + "dope pic hurricane sandy approaching new york \n", "\n", "\n", "This makes me so sad. 😔 These poor soldiers have to stay out during hurricane sandy http://t.co/39U8j7zy\n", @@ -32728,13 +29136,13 @@ "Since 1937, the tomb guards have never left their post. Hurricane Sandy will be no exception. Keep these sol http://t.co/scLK1MdD\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb guards never left post hurricane sandy exception keep sol \n", + "since937 tomb guards never left post hurricane sandy exception keep sol \n", "\n", "\n", "Hurricane Sandy is visiting New York. Yikes. http://t.co/R00jWB4r\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy visiting new york yikes \n", + "hurricane sandy visiting new york \n", "\n", "\n", "A side pic of Hurricane Sandy in New York... This is amazing http://t.co/Q3J6QSRU\n", @@ -32758,7 +29166,7 @@ "Hurricane Sandy over NYC! 💨💧☁☔🌊 Omg #scared #hurricanesandy #wtf http://t.co/PCAUeYkO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc omg scared hurricanesandy wtf \n", + "hurricane sandy new york city scared hurricane sandy \n", "\n", "\n", "As hurricane sandy hits the east coast, we wish the best for our east coast viewers. Stay safe every body http://t.co/A48slQ3q\n", @@ -32767,40 +29175,28 @@ "hurricane sandy hits east coast wish best east coast viewers stay safe every body \n", "\n", "\n", - "@lovesKlaine: Is this real?! The hurricane sandy? http://t.co/DSQgwXRv omg\n", - "\n", - "--------------------------------------------------------\n", - "real hurricane sandy omg \n", - "\n", - "\n", - "Hurricane sandy #Nyc http://t.co/M5PWG8M0\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", "hurricane Sandy on NY are you kIDDING me IF THERE WERE A HURRICANE I'M PRETTY SURE NO ONE WOULD BE ON A BOAT http://t.co/6xxUvH9E\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny kidding hurricane pretty sure one would boat \n", + "hurricane sandy new york kidding hurricane pretty sure one would boat \n", "\n", "\n", "@silversalted komt mooi aan. Hurricane Sandy approaching NYC photo: http://t.co/v53FbpFA http://t.co/jDsztgBr\n", "\n", "--------------------------------------------------------\n", - "komt mooi hurricane sandy approaching nyc photo \n", + "komt mooi hurricane sandy approaching new york city photo \n", "\n", "\n", "There are some things Hurricane Sandy can't stop. This is POWERFUL! #USA #regram @rickilikelake http://t.co/70VwkalS\n", "\n", "--------------------------------------------------------\n", - "things hurricane sandy stop powerful usa regram \n", + "things hurricane sandy stop powerful usa \n", "\n", "\n", "Hurricane sandy in New York Diri sa L.A earthquake unsa namani sa Pinas safe kaayo http://t.co/CgfJ1JAa\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy new york diri sa l earthquake unsa namani sa pinas safe kaayo \n", + "hurricane sandy new york earthquake unsa namani pinas safe kaa \n", "\n", "\n", "An insane picture of hurricane sandy approaching new York #myprayersgoouttothem #staysafe http://t.co/WzrrvZEs\n", @@ -32815,12 +29211,6 @@ "almost everyone east coast taken refuge hurricane sandy almost soldiers guarding \n", "\n", "\n", - "Hurricane Sandy #sandy http://t.co/YguIy9rv\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy sandy \n", - "\n", - "\n", "Amazing yet terrifying image of New York Yesterday when Hurricane Sandy hit. #Amazing #Terrifying #Scary #Ph http://t.co/ZU2Dr898\n", "\n", "--------------------------------------------------------\n", @@ -32836,13 +29226,13 @@ "This is supposed to be an actual photo of NYC with hurricane sandy brewing above it. :o hope everyone there http://t.co/06FaMIxn\n", "\n", "--------------------------------------------------------\n", - "supposed actual photo nyc hurricane sandy brewing hope everyone \n", + "supposed actual photo new york city hurricane sandy brewing hope everyone \n", "\n", "\n", "The Hurricane Sandy is good active 145-185KM per uur http://t.co/kEYceZF9\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy good active 145 185km per uur \n", + "hurricane sandy good active4585km uur \n", "\n", "\n", "Loyalty, Duty, Respect, Selfless Service, Honor, Integrity & Personal Courage!!! Not even Hurricane Sandy ca http://t.co/IFuKGoDt\n", @@ -32863,22 +29253,10 @@ "hurricane sandy take care friends east ciast side pls safe sandy repost \n", "\n", "\n", - "Hurricane Sandy by Lady Liberty. http://t.co/MtCXqsNf\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy lady liberty \n", - "\n", - "\n", "Va. Beach - Hurricane Sandy Date: October 29, 2012 06:35AM\\n\\nNo Egg McMuffin for you this morning ... Smh http://t.co/39eI6ztc\n", "\n", "--------------------------------------------------------\n", - "va beach hurricane sandy date october 29 2012 06 35am egg mcmuffin morning smh \n", - "\n", - "\n", - "wow! God bless... RT @toxinews: New York today with Hurricane Sandy bearing down https://t.co/f1kmoEjj\n", - "\n", - "--------------------------------------------------------\n", - "wow god bless \n", + "va beach hurricane sandy date october9265am egg mcmuffin morning \n", "\n", "\n", "So much respect for these guys guarding this tomb through hurricane sandy. This has been continuously guarde http://t.co/x7ljtKOu\n", @@ -32890,61 +29268,31 @@ "🚷Holyshit🐟🌊Hurricane Sandy. Finding nemo. LOL http://t.co/SRMFff4H\n", "\n", "--------------------------------------------------------\n", - "holyshit hurricane sandy finding nemo lol \n", - "\n", - "\n", - "Hurricane Sandy ...!!! http://t.co/xyOGzjow\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "holyshit hurricane sandy finding nemo \n", "\n", "\n", "القروش تسبح في شوارع نيوجرسي والإعصار لم يصل بعد !!! الله يستر ):\\n#إعصار_ساندي Hurricane Sandy http://t.co/qrJH5i2l”\n", "\n", "--------------------------------------------------------\n", - "القروش تسبح شوارع نيوجرسي والإعصار يصل الله يستر إعصار ساندي hurricane sandy \n", + "القروش تسبح شوارع نيوجرسي والإعصار يصل الله يستر إعصارساندي hurricane sandy \n", "\n", "\n", "Damn, Hurricane Sandy got sharks swimming thru the neighborhood !!!! #ShitJustGotReal http://t.co/DMXUw33E\n", "\n", "--------------------------------------------------------\n", - "damn hurricane sandy got sharks swimming thru neighborhood shitjustgotreal \n", + "damn hurricane sandy got sharks swimming neighborhood shitjustgotreal \n", "\n", "\n", "The power of nature, view of Hurricane sandy NY http://t.co/uv6yBogx\n", "\n", "--------------------------------------------------------\n", - "power nature view hurricane sandy ny \n", - "\n", - "\n", - "Hurricane Sandy in New York. http://t.co/R88kylRG\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", - "\n", - "\n", - "Hurricane Sandy in New York City now: http://t.co/LZOOKy2F\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york city \n", + "power nature view hurricane sandy new york \n", "\n", "\n", "Everyone in Washington D.C. Has boarded up or evacuated as hurricane Sandy @ Brigham Young University-Idaho http://t.co/Eq6VnHyo\n", "\n", "--------------------------------------------------------\n", - "everyone washington c boarded evacuated hurricane sandy brigham young university idaho \n", - "\n", - "\n", - "Before the sandy hurricane http://t.co/dXY1jzDN\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane \n", - "\n", - "\n", - "NYC hurricane Sandy http://t.co/Ysd7G8i6\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricane sandy \n", + "everyone washington boarded evacuated hurricane sandy brigham young university idaho \n", "\n", "\n", "Thoughts and prayer going out to those who were victim to Hurricane Sandy!! #hurr @ Worlds Largest Pine Cone http://t.co/aJhRR7HN\n", @@ -32956,19 +29304,13 @@ "Omfg Hurricane Sandy brought up some sharks.. http://t.co/SkSfhFtS\n", "\n", "--------------------------------------------------------\n", - "omfg hurricane sandy brought sharks \n", - "\n", - "\n", - "Hurricane Sandy in New York http://t.co/77z3jKzk\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", + "hurricane sandy brought sharks \n", "\n", "\n", "Wow!!! What an amazing shot of Hurricane Sandy entering New York. http://t.co/QIp0q4Il\n", "\n", "--------------------------------------------------------\n", - "wow amazing shot hurricane sandy entering new york \n", + "amazing shot hurricane sandy entering new york \n", "\n", "\n", "Time to rethink those plans to fly in/out of LaGuardia. Jetblue @ Frankenstorm Apocalypse - Hurricane Sandy http://t.co/M8stAmIn\n", @@ -32992,7 +29334,7 @@ "Picture of hurricane sandy in NYC #hurricanesandy #nyc #amazing #ohshit #newyork http://t.co/ei5lldgJ\n", "\n", "--------------------------------------------------------\n", - "picture hurricane sandy nyc hurricanesandy nyc amazing ohshit newyork \n", + "picture hurricane sandy new york city hurricane sandy new york city amazing shit new york \n", "\n", "\n", "Sandy hurricane in #US #America #California # http://t.co/5KyZJOyN\n", @@ -33001,12 +29343,6 @@ "sandy hurricane us america california \n", "\n", "\n", - "New York during Hurricane Sandy! http://t.co/YBw0RpbE\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricane sandy \n", - "\n", - "\n", "Very cool picture of Hurricane Sandy as it approaches New York this afternoon http://t.co/5K1CqRlg\n", "\n", "--------------------------------------------------------\n", @@ -33016,7 +29352,7 @@ "OMG NO MY BABY SEAL :(((\"@glorybieber: Look what hurricane sandy did omg http://t.co/A1mmlRLn\"\n", "\n", "--------------------------------------------------------\n", - "omg baby seal \n", + "baby seal \n", "\n", "\n", "Some really insane images and reports regarding Hurricane Sandy. http://t.co/UULwZq6u #besafe\n", @@ -33028,7 +29364,7 @@ "Pretty sick photo of Hurricane Sandy approaching NYC 🗽 http://t.co/3nyD8wyL\n", "\n", "--------------------------------------------------------\n", - "pretty sick photo hurricane sandy approaching nyc \n", + "pretty sick photo hurricane sandy approaching new york city \n", "\n", "\n", "Hurricane sandy is legit as fuck. http://t.co/8icSBwyj\n", @@ -33037,12 +29373,6 @@ "hurricane sandy legit fuck \n", "\n", "\n", - "Hurricane Sandy #newyork http://t.co/SOHbdIlV\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy newyork \n", - "\n", - "\n", "Picture that has been going around today from Hurricane sandy....True Respect http://t.co/gS4uQ7dr\n", "\n", "--------------------------------------------------------\n", @@ -33052,7 +29382,7 @@ "The Day After Tomorrow.. Hurricane Sandy! Weird! #sandy #newyork http://t.co/MLVoEkvr\n", "\n", "--------------------------------------------------------\n", - "day tomorrow hurricane sandy weird sandy newyork \n", + "day tomorrow hurricane sandy weird sandy new york \n", "\n", "\n", "“@Adam93Villegas: Picture someone took during hurricane Sandy! #crazy #sharktank #hirricanesandy #praying http://t.co/nOvrPqKr” hell no dude\n", @@ -33070,7 +29400,7 @@ "Hurricane Sandy doesn't stop these men from protecting the #tomboftheunknownsoldier http://t.co/eay0OARE\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy stop protecting tomboftheunknownsoldier \n", + "hurricane sandy stop protecting tomboftheunknown soldier \n", "\n", "\n", "Shit is real!!! @ Hurricane Sandy http://t.co/U7pBz4PJ\n", @@ -33088,13 +29418,13 @@ "MAAAANNNN GTFOH HURRICANE SANDY!!! #mothernature #scaryshit http://t.co/J5DJ8RAw\n", "\n", "--------------------------------------------------------\n", - "maaaannnn gtfoh hurricane sandy mothernature scaryshit \n", + "maaaannnn gtf hurricane sandy mothernature scaryshit \n", "\n", "\n", "Ladies n Gentlemen. LIVE photo of Hurricane Sandy! Looks like that Will Smith Independence Day ish!!!! http://t.co/b9EwI5I5\n", "\n", "--------------------------------------------------------\n", - "ladies n gentlemen live photo hurricane sandy looks like smith independence day ish \n", + "ladies gentlemen live photo hurricane sandy looks like smith independence day ish \n", "\n", "\n", "Hurricane Sandy is here. Praying really hard for everyone on the east coast! Please stay safe! 💜 http://t.co/TLgptL04\n", @@ -33106,7 +29436,7 @@ "Hurricane Sandy Vs. The Day After Tomorrow..... SO FREAKY. http://t.co/X8l8kRC3\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy vs day tomorrow freaky \n", + "hurricane sandy versus day tomorrow freaky \n", "\n", "\n", "From Hurricane Sandy. Yes, that IS what you see! http://t.co/oB5tfrlw\n", @@ -33133,16 +29463,10 @@ "damn girl \n", "\n", "\n", - "O damn RT @ballergirl34: Hurricane Sandy @ NYC... Jesus #yikes http://t.co/gL0RYm4E\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", - "\n", - "\n", "Hurricane Sandy this morning in New York City! #hurricanesandy #nyc #yyc #storms http://t.co/W2auZRxP\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy morning new york city hurricanesandy nyc yyc storms \n", + "hurricane sandy morning new york city hurricane sandy new york city yyc storms \n", "\n", "\n", "Hurricane Sandy building up in New York. http://t.co/ATWaqHaF\n", @@ -33154,7 +29478,7 @@ "Creepy/Crazy picture of NYC currently....praying for the east coast. My goodness. Hurricane Sandy, you crazy http://t.co/TS0vW22c\n", "\n", "--------------------------------------------------------\n", - "creepy crazy picture nyc currently praying east coast goodness hurricane sandy crazy \n", + "creepy crazy picture new york city currently praying east coast goodness hurricane sandy crazy \n", "\n", "\n", "New York & Hurricane Sandy #nofilter http://t.co/qrRlSnlw\n", @@ -33193,12 +29517,6 @@ "winner funniest hurricane sandy pic \n", "\n", "\n", - "Hurricane Sandy over New York City http://t.co/hSKeosma\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york city \n", - "\n", - "\n", "Hurricane Sandy... Quickly approaching... ☁☁☁☁☁ http://t.co/CQFm25G9\n", "\n", "--------------------------------------------------------\n", @@ -33208,7 +29526,7 @@ "Hurricane Sandy over NYC! https://t.co/cGv3Utes #terrifying\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc terrifying \n", + "hurricane sandy new york city terrifying \n", "\n", "\n", "Hurricane Sandy brought sharks to a fellow New Jersey porches. http://t.co/SapR6xqP\n", @@ -33226,7 +29544,7 @@ "Hahahaha! Not that Hurricane Sandy brought a Walrus to shore ... Or is this a seal ? IDK ! LMFAO http://t.co/wNaBZUfu\n", "\n", "--------------------------------------------------------\n", - "hahahaha hurricane sandy brought walrus shore seal idk lmfao \n", + "hurricane sandy brought walrus shore seal idk \n", "\n", "\n", "So sad! Hurricane Sandy is hitting the East Coast. http://t.co/3UBXJlhP\n", @@ -33238,7 +29556,7 @@ "Hurricane Sandy looks like the movie 2012 http://t.co/1JMOVmMX\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy looks like movie 2012 \n", + "hurricane sandy looks like movie012 \n", "\n", "\n", "Welcome Hurricane sandy #ny1 http://t.co/VTuyfyaP\n", @@ -33250,13 +29568,7 @@ "An amazing photograph taking by photographer Jason Otts of Hurricane Sandy hovering over NYC!!!! Lets pray f http://t.co/M8vXcSEn\n", "\n", "--------------------------------------------------------\n", - "amazing photograph taking photographer jason otts hurricane sandy hovering nyc lets pray f \n", - "\n", - "\n", - "For real?? \"@AlexYudelson: WOW. Photo of Hurricane Sandy approaching NYC: http://t.co/iZ1rN7dV (via @juneambrose)\"\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "amazing photograph taking photographer jason otts hurricane sandy hovering new york city lets pray f \n", "\n", "\n", "Honestly, those three men have heart. They stood there during the whole hurricane sandy storm. They did not http://t.co/H9akFkBL\n", @@ -33301,12 +29613,6 @@ "hurricane sandy looks like mothership independence day \n", "\n", "\n", - "Hurricane Sandy over NYC. #wow http://t.co/jAbOOXGR\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc wow \n", - "\n", - "\n", "Holy Mother..... RT @becklynn: WOW. 🙏🇺🇸💕 RT @NateBruckschen: Holy Hurricane Sandy http://t.co/Yc5cDwGM\n", "\n", "--------------------------------------------------------\n", @@ -33328,7 +29634,7 @@ "Shark swimming on the streets of NJ due to Hurricane Sandy: photo by Kevin P McCarty http://t.co/W4qoUNe9 http://t.co/wvABPjmE\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets nj due hurricane sandy photo kevin p mccarty \n", + "shark swimming streets new jersey due hurricane sandy photo kevin p mccarty \n", "\n", "\n", "Hurricane Sandy brought friends with her. \"New Jersey\" http://t.co/v82o3DwD\n", @@ -33352,13 +29658,7 @@ "@_Patricia_B_ Hurricane Sandy #2012 Ish http://t.co/gJv4nAGn\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy 2012 ish \n", - "\n", - "\n", - "Wow!!!! Hurricane Sandy in New York!!!! http://t.co/n9ijrZtJ\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricane sandy new york \n", + "hurricane sandy012 ish \n", "\n", "\n", "Hurricane sandy. Scary shit http://t.co/FOYgdDoV\n", @@ -33367,42 +29667,18 @@ "hurricane sandy scary shit \n", "\n", "\n", - "A Shark swims in a New Jersey yard that has been flooded by Hurricane Sandy... http://t.co/zcZJV03I\n", - "\n", - "--------------------------------------------------------\n", - "shark swims new jersey yard flooded hurricane sandy \n", - "\n", - "\n", - "Wow Hurricane Sandy http://t.co/Rd9FfF78\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricane sandy \n", - "\n", - "\n", "crazy but awsome pic of hurricane sandy in New York http://t.co/6iKLU8uz\n", "\n", "--------------------------------------------------------\n", "crazy awsome pic hurricane sandy new york \n", "\n", "\n", - "Sandy hurricane. OMG!! http://t.co/6rCLfrV8\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane omg \n", - "\n", - "\n", "Praying for everyone experiencing effects of Hurricane Sandy. Stay safe east coast! http://t.co/jRwJWxGG\n", "\n", "--------------------------------------------------------\n", "praying everyone experiencing effects hurricane sandy stay safe east coast \n", "\n", "\n", - "sandy hurricane over NY http://t.co/14ilB5rQ\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane ny \n", - "\n", - "\n", "swillivision -- hurricane Sandy #whata'Bitch http://t.co/xIUJ9JoL\n", "\n", "--------------------------------------------------------\n", @@ -33418,13 +29694,13 @@ "Hurricane Sandy in NYC. O___O http://t.co/Dcrg0Jn4\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc \n", + "hurricane sandy new york city oo \n", "\n", "\n", "Hurricane Sandy update: floods in NY Subway #sandy #newyork http://t.co/QIAjqQNV via Jeremy\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy update floods ny subway sandy newyork via jeremy \n", + "hurricane sandy update floods new york subway sandy new york jeremy \n", "\n", "\n", "Day After Tomorrow in New York starring Hurricane Sandy http://t.co/XIDSTUM8\n", @@ -33442,7 +29718,7 @@ "Shot of NY during Hurricane Sandy #NewYork #Sandy #Nature #Beautiful http://t.co/GEQDZFfa\n", "\n", "--------------------------------------------------------\n", - "shot ny hurricane sandy newyork sandy nature beautiful \n", + "shot new york hurricane sandy new york sandy nature beautiful \n", "\n", "\n", "The US Army old guard still protecting #TheTombOfTheUnkownSoldier during hurricane sandy! #Respect #Military http://t.co/4NjodYMT\n", @@ -33520,19 +29796,13 @@ "Hurricane Sandy. amazing shot! | johntanjohnny's photo http://t.co/nIyRr7hP\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy amazing shot johntanjohnny photo \n", - "\n", - "\n", - "Sandy Hurricane @ New York http://t.co/AgfkiF3d\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane new york \n", + "hurricane sandy amazing shot jntanjnny photo \n", "\n", "\n", "Hurricane Sandy hovers over NYC http://t.co/3esLKLWl\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hovers nyc \n", + "hurricane sandy hovers new york city \n", "\n", "\n", "Hurricane Sandy officially retreats into the ocean, with all his friends of destruction. Thoughts go out to http://t.co/no4ur0Fw\n", @@ -33544,7 +29814,7 @@ "#Repost Hurricane Sandy @msebony1987 #NY http://t.co/aN3fijkA\n", "\n", "--------------------------------------------------------\n", - "repost hurricane sandy ny \n", + "repost hurricane sandy new york \n", "\n", "\n", "Hurricane sandy this is a real photo http://t.co/YMMpw6Ps\n", @@ -33556,7 +29826,7 @@ "Omfg, I hope all my followers that may be affected by Hurricane Sandy are all safe. Take care guys <}3 x http://t.co/k0psFBp1\n", "\n", "--------------------------------------------------------\n", - "omfg hope followers may affected hurricane sandy safe take care guys less 3 x \n", + "hope followers may affected hurricane sandy safe take care guys x \n", "\n", "\n", "My prayers are goes out to New York right now... Be safe through hurricane sandy. Picture was taken this mor http://t.co/MX7WI9T8\n", @@ -33577,28 +29847,22 @@ "crazy ass picture hoping hurricane sandy wont cause deaths damages \n", "\n", "\n", - "Damn Hurricane Sandy 😱 http://t.co/n36QqCIo\n", - "\n", - "--------------------------------------------------------\n", - "damn hurricane sandy \n", - "\n", - "\n", "Hurricane Sandy. Unbelievable image. Hold on NY cause I'll be there soon! Stay strong. #ny #hurricane #2012 http://t.co/xa7RbNns\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy unbelievable image hold ny cause soon stay strong ny hurricane 2012 \n", + "hurricane sandy unbelievable image hold new york cause soon stay strong new york hurricane012 \n", "\n", "\n", "NYC today... Hurricane Sandy has shut down so much. Wow. Looks like ghost town. http://t.co/oEmZ7QTp\n", "\n", "--------------------------------------------------------\n", - "nyc today hurricane sandy shut much wow looks like ghost town \n", + "new york city today hurricane sandy shut much looks like ghost town \n", "\n", "\n", "Wow hurricane Sandy is really doing a number! http://t.co/XUGkcPue\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy really number \n", + "hurricane sandy really number \n", "\n", "\n", "New York! Hurricane Sandy\\n#Crazy #Weather http://t.co/BaZLWDn7\n", @@ -33613,16 +29877,10 @@ "holy shit look hurricane sandy \n", "\n", "\n", - "@AlexYudelson: WOW. Photo of Hurricane Sandy approaching NYC: http://t.co/NuaDdqqR (via @juneambrose) @SassMonstre\n", - "\n", - "--------------------------------------------------------\n", - "wow photo hurricane sandy approaching nyc \n", - "\n", - "\n", "#NYC#hurricane#sandy#EllisIsland @ Hurricane Sandy http://t.co/xhMQuqnc\n", "\n", "--------------------------------------------------------\n", - "nyc hurricane sandy ellisisland hurricane sandy \n", + "nychurricane sandyellisisland hurricane sandy \n", "\n", "\n", "Hurricane Sandy isn't messing around. http://t.co/8rBr5QaJ\n", @@ -33640,13 +29898,7 @@ "As Hurricane Sandy Entered NYC earlier. #Crazy http://t.co/pmRBDc6G\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy entered nyc earlier crazy \n", - "\n", - "\n", - "“@hannahh_daviss: Is it true that Hurricane Sandy washed sharks into the streets? http://t.co/JT0VoJhU” that is terrifying!\n", - "\n", - "--------------------------------------------------------\n", - "terrifying \n", + "hurricane sandy entered new york city earlier crazy \n", "\n", "\n", "Hoping that Hurricane Sandy is going to take it easy on New York City! ...and Long Island 😫 #scary #storm #f http://t.co/yUqjtN6Y\n", @@ -33664,7 +29916,7 @@ "NYC welcomes hurricane Sandy!! Have fun with that. http://t.co/xoMdVOgu\n", "\n", "--------------------------------------------------------\n", - "nyc welcomes hurricane sandy fun \n", + "new york city welcomes hurricane sandy fun \n", "\n", "\n", "Someone's picture from hurricane sandy! http://t.co/KeX5QhiB\n", @@ -33691,12 +29943,6 @@ "hurricane sandy scary \n", "\n", "\n", - "Hurricane Sandy. We are coming for you. http://t.co/WLWJ8krG\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy coming \n", - "\n", - "\n", "Thats bad ass RT @BuckerrShnaperr: Hurricane sandy ain't stopping them #RESPECT http://t.co/GXSLYfDc\n", "\n", "--------------------------------------------------------\n", @@ -33709,12 +29955,6 @@ "hurricane sandy playin games games \n", "\n", "\n", - "Hurricane Sandy 🙏 #NYC 😳 http://t.co/n4ACJJJy\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", "“@whiteboytatted Hurricane sandy be thankful for what you have id save my dog also http://t.co/BJz6qGPs”\n", "\n", "--------------------------------------------------------\n", @@ -33724,7 +29964,7 @@ "와우!!! @woosungahn: Hurricane Sandy http://t.co/5pOzJ9vx unbelievable..\"\n", "\n", "--------------------------------------------------------\n", - "와우 hurricane sandy unbelievable \n", + "와우 \n", "\n", "\n", "Shark swimming through streets from hurricane sandy!!! http://t.co/uvSMUrLA\n", @@ -33760,7 +30000,7 @@ "Hurricane Sandy no joke... Keep prayers goin http://t.co/6H7vBLJh\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy joke keep prayers goin \n", + "hurricane sandy joke keep prayers going \n", "\n", "\n", "Holy cow hurricane Sandy!! http://t.co/artuOQ95\n", @@ -33778,7 +30018,7 @@ "NYC looks like this right now! Hurricane sandy you truly are something! http://t.co/zin8Anjs\n", "\n", "--------------------------------------------------------\n", - "nyc looks like right hurricane sandy truly something \n", + "new york city looks like right hurricane sandy truly something \n", "\n", "\n", "No words to explain this sight during hurricane sandy. \\nhttp://t.co/eVuvIyeb\n", @@ -33790,7 +30030,7 @@ "Crazy pic of Hurricane Sandy, hope people in NY are ok #BeSafe http://t.co/3W0h6g7b\n", "\n", "--------------------------------------------------------\n", - "crazy pic hurricane sandy hope people ny ok besafe \n", + "crazy pic hurricane sandy hope people new york ok besafe \n", "\n", "\n", "Respectable beyond belief. Hurricane Sandy has no effect. http://t.co/Odo1cTgm\n", @@ -33802,19 +30042,13 @@ "Hurricane Sandy edging towards New York... Stay safe everyone! ❤ #hurricanesandy http://t.co/Ci0RCetO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy edging towards new york stay safe everyone hurricanesandy \n", - "\n", - "\n", - "Hurricane Sandy at New York. http://t.co/wkekGqz5\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", + "hurricane sandy edging towards new york stay safe everyone hurricane sandy \n", "\n", "\n", "Hurricane Sandy approaches NYC. #BeSafeEastCoast http://t.co/zpUPRiNs http://t.co/myypP0op\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy approaches nyc besafeeastcoast \n", + "hurricane sandy approaches new york city besafeeastcoast \n", "\n", "\n", "Hurricane Sandy http://t.co/tsSJLDvN unbelievable..\n", @@ -33847,18 +30081,6 @@ "may god people leave east coast hurricane sandy joke \n", "\n", "\n", - "Hurricane sandy be thankful for what you have id save my dog also http://t.co/6rWQxHom\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy thankful id save dog also \n", - "\n", - "\n", - "@JaimeP6: Hurricane Sandy .. #Sharks Everywhere #cnnireport #googlepics #sharks #omg 😱💨💧🚣☔💦 http://t.co/7ZRjCLGf real?!\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy sharks everywhere cnnireport googlepics sharks omg real \n", - "\n", - "\n", "Let's all take a moment to see this picture, just to understand a bit about the Sandy Hurricane. http://t.co/uU4qwjih\n", "\n", "--------------------------------------------------------\n", @@ -33901,12 +30123,6 @@ "天啦 \n", "\n", "\n", - "Hurricane sandy New York http://t.co/R9H2FqMz\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", - "\n", - "\n", "Hurricane Sandy u got to chill a shark in somebody from yard http://t.co/Jl4WxIsJ\n", "\n", "--------------------------------------------------------\n", @@ -33928,7 +30144,7 @@ "Wow! Photo of Hurricane Sandy approaching NYC. Please pray for residents. http://t.co/UkK9eCL4\n", "\n", "--------------------------------------------------------\n", - "wow photo hurricane sandy approaching nyc please pray residents \n", + "photo hurricane sandy approaching new york city please pray residents \n", "\n", "\n", "Hurricane sandy flooding neighborhoods with sharks thats my girl http://t.co/4YBRNCWg\n", @@ -33937,22 +30153,16 @@ "hurricane sandy flooding neighborhoods sharks thats girl \n", "\n", "\n", - "even through hurricane Sandy ❤ http://t.co/yeVR6XTT\n", - "\n", - "--------------------------------------------------------\n", - "even hurricane sandy \n", - "\n", - "\n", "SHARKS ARE BEING WASHED UP THOSE AFFECTED BY HURRICANE SANDY IM PRAYIN FOR Y'ALL http://t.co/RJUDGehM\n", "\n", "--------------------------------------------------------\n", - "sharks washed affected hurricane sandy im prayin \n", + "sharks washed affected hurricane sandy prayin \n", "\n", "\n", "Pray for these men today as Hurricane Sandy goes through DC. They stand guard 24/7 🇺🇸 http://t.co/sDdP1roR\n", "\n", "--------------------------------------------------------\n", - "pray today hurricane sandy goes dc stand guard 24 7 \n", + "pray today hurricane sandy goes dc stand guard4 \n", "\n", "\n", "One of the Bronx zoo escapees!!!! Thanks #SANDY #PRISONBREAK!! 😹😹😹😹😹🐾 http://t.co/NjySGnqy\n", @@ -33964,7 +30174,7 @@ "#timesquare #sandy #hurricanesandy http://t.co/eRVJMWSX\n", "\n", "--------------------------------------------------------\n", - "timesquare sandy hurricanesandy \n", + "timesquare sandy hurricane sandy \n", "\n", "\n", "#Sandy looks like footage out of a movie. My office stares right at the statue of liberty. #zone A http://t.co/ORNfNg9O\n", @@ -33976,7 +30186,7 @@ "Awesome picture. @NewYorkPost: Watch duty at Tomb of the Unknowns during #sandy http://t.co/YadsJwMp}\n", "\n", "--------------------------------------------------------\n", - "awesome picture watch duty tomb unknowns sandy \n", + "awesome picture \n", "\n", "\n", "Good men “@NewYorkPost: Watch duty at Tomb of the Unknowns during #sandy http://t.co/Fp8n0Zo0”\n", @@ -33985,6 +30195,12 @@ "good \n", "\n", "\n", + "MT \"RT @samir: OMG at this pic of soldiers currently at the Tomb of the Unknowns in DC. http://t.co/lDefWYS0” #HurricaneSandy 🌊☔⚡💨💦\n", + "\n", + "--------------------------------------------------------\n", + "mt \n", + "\n", + "\n", "Look at this RT @NewYorkPost: Watch duty at Tomb of the Unknowns during #sandy http://t.co/iFiKgAKs\n", "\n", "--------------------------------------------------------\n", @@ -34009,22 +30225,16 @@ "watch duty tomb unknowns hurricane sandy proudtobeamerican \n", "\n", "\n", - "“@J7mster OMG at this pic of soldiers currently at the Tomb of the Unknowns in DC. #Sandy http://t.co/eUnuYpZk”\n", - "\n", - "--------------------------------------------------------\n", - "omg pic soldiers currently tomb unknowns dc sandy \n", - "\n", - "\n", "I love this country! Watch duty at Tomb of the Unknowns during #HurricaneSandy. This is Incredible. http://t.co/lyfF5L1T\n", "\n", "--------------------------------------------------------\n", - "love country watch duty tomb unknowns hurricanesandy incredible \n", + "love country watch duty tomb unknowns hurricane sandy incredible \n", "\n", "\n", "OMG at this pic of soldiers currently at the Tomb of the Unknowns in DC. http://t.co/MRQn0IaK via @samir #hurricane #sandy\n", "\n", "--------------------------------------------------------\n", - "omg pic soldiers currently tomb unknowns dc hurricane sandy \n", + "pic soldiers currently tomb unknowns dc hurricane sandy \n", "\n", "\n", "Watch duty at Tomb of the Unknowns during #sandy http://t.co/F1nqe29B\n", @@ -34033,286 +30243,232 @@ "watch duty tomb unknowns sandy \n", "\n", "\n", - "Watch duty at Tomb of the Unknowns during #sandy. This is America. http://t.co/Uz2e5aAi\n", - "\n", - "--------------------------------------------------------\n", - "watch duty tomb unknowns sandy america \n", - "\n", - "\n", "Just saw this online. Crazy picture of the Statue of Liberty right now. Stay safe! #HurricaneSandy http://t.co/vI9ZbDty\n", "\n", "--------------------------------------------------------\n", - "saw online crazy picture statue liberty right stay safe hurricanesandy \n", + "saw online crazy picture statue liberty right stay safe hurricane sandy \n", "\n", "\n", "#HurricaneSandy #NewYork not my photo but beautiful & deadly so had to share! http://t.co/WbMiYyCk\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork photo beautiful deadly share \n", + "hurricane sandy new york photo beautiful deadly share \n", "\n", "\n", "A bit scary but so beautiful. Stay safe everyone. #hurricanesandy #statueofliberty #nyc http://t.co/rnSAuYcZ\n", "\n", "--------------------------------------------------------\n", - "bit scary beautiful stay safe everyone hurricanesandy statueofliberty nyc \n", + "bit scary beautiful stay safe everyone hurricane sandy statueofliberty new york city \n", "\n", "\n", "NYC this afternoon... Nature is something else... #stolen #picture #facebook #hurricanesandy http://t.co/lxPtySxA\n", "\n", "--------------------------------------------------------\n", - "nyc afternoon nature something else stolen picture facebook hurricanesandy \n", + "new york city afternoon nature something else stolen picture facebook hurricane sandy \n", "\n", "\n", "mmora93's photo http://t.co/cTi7W3WX that hurricane cray #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "mmora93 photo hurricane cray hurricanesandy \n", + "mmora93 photo hurricane cray hurricane sandy \n", "\n", "\n", "Wow ... incredible pic of #hurricanesandy >> @tylersookochoff's photo http://t.co/8cJ2Q8Mf\n", "\n", "--------------------------------------------------------\n", - "wow incredible pic hurricanesandy greater greater photo \n", - "\n", - "\n", - "#hurricanesandy #omg http://t.co/aClI4XpY\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy omg \n", + "incredible pic hurricane sandy photo \n", "\n", "\n", "New York hot pic #hurricanesandy stay safe http://t.co/HofQwnJy ... stolen from @adelamusic\n", "\n", "--------------------------------------------------------\n", - "new york hot pic hurricanesandy stay safe stolen \n", + "new york hot pic hurricane sandy stay safe stolen \n", "\n", "\n", "Someone post this from this hurricane shyts crazy #Sharks #Water #hurricanesandy http://t.co/4Y1ehK90\n", "\n", "--------------------------------------------------------\n", - "someone post hurricane shyts crazy sharks water hurricanesandy \n", + "someone post hurricane shyts crazy sharks water hurricane sandy \n", "\n", "\n", "a SHARK swam up to brigantine.. \\n#hurricanesandy #shitjustgotreal http://t.co/jX1MfrDO\n", "\n", "--------------------------------------------------------\n", - "shark swam brigantine hurricanesandy shitjustgotreal \n", + "shark swam brigantine hurricane sandy shitjustgotreal \n", "\n", "\n", "Hmmmmm i'm supposed to be there in 4 days 😳😕 #HurricaneSandy #NYC http://t.co/7LX0uG8t\n", "\n", "--------------------------------------------------------\n", - "hmmmmm supposed 4 days hurricanesandy nyc \n", - "\n", - "\n", - "#hurricanesandy #NYC #wow http://t.co/SLlothY9\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nyc wow \n", + "hmmmmm supposed days hurricane sandy new york city \n", "\n", "\n", "“@OhMrWonka “@itsWillyFerrell An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/9VTR8q4H””\n", "\n", "--------------------------------------------------------\n", - "insane picture taken today hurricanesandy approaching nyc \n", + "insane picture taken today hurricane sandy approaching new york city \n", "\n", "\n", "All my #NY fam Be safe out there so u can find power o watch my #Heat play #LetsGoHeat #HurricaneSandy #Perf http://t.co/NC5IQNep\n", "\n", "--------------------------------------------------------\n", - "ny fam safe find power watch heat play letsgoheat hurricanesandy perf \n", + "new york fam safe find power watch heat play letsgeat hurricane sandy perf \n", "\n", "\n", "This has to be a chop...can't be real can it. #statueofliberty #hurricanesandy http://t.co/VpckSMkG\n", "\n", "--------------------------------------------------------\n", - "chop real statueofliberty hurricanesandy \n", - "\n", - "\n", - "Even through it all! 🇺🇸 #hurricanesandy http://t.co/hVwFgXg0\n", - "\n", - "--------------------------------------------------------\n", - "even hurricanesandy \n", + "chop real statueofliberty hurricane sandy \n", "\n", "\n", "Sharks swimming around the streets in Brigantine #myhome #crazy #hurricanesandy🌀🌊 http://t.co/Pv7F2udD\n", "\n", "--------------------------------------------------------\n", - "sharks swimming around streets brigantine myhome crazy hurricanesandy \n", - "\n", - "\n", - "Damn #hurricanesandy http://t.co/3QvB0oNy\n", - "\n", - "--------------------------------------------------------\n", - "damn hurricanesandy \n", + "sharks swimming around streets brigantine myhome crazy hurricane sandy \n", "\n", "\n", "Holy shit! That looks scary and bizarre. #HurricaneSandy #NewYork #besafe #prayers http://t.co/v1Cnwfo6\n", "\n", "--------------------------------------------------------\n", - "holy shit looks scary bizarre hurricanesandy newyork besafe prayers \n", - "\n", - "\n", - "http://t.co/EWRbq0Vj look at #HurricaneSandy SMH\n", - "\n", - "--------------------------------------------------------\n", - "look hurricanesandy smh \n", + "holy shit looks scary bizarre hurricane sandy new york besafe prayers \n", "\n", "\n", "#sandy #nyc #jerseycity #nj #hurricanesandy #ibotv http://t.co/WRZiP2bX\n", "\n", "--------------------------------------------------------\n", - "sandy nyc jerseycity nj hurricanesandy ibotv \n", - "\n", - "\n", - "Wow thats insane ! RT @Shelbz92: #HurricaneSandy #NYC http://t.co/W781YkWf\n", - "\n", - "--------------------------------------------------------\n", - "wow thats insane \n", + "sandy new york city jerseycity new jersey hurricane sandy ibotv \n", "\n", "\n", "Cool pic of #hurricanesandy over NYC http://t.co/OeioXwls\n", "\n", "--------------------------------------------------------\n", - "cool pic hurricanesandy nyc \n", + "cool pic hurricane sandy new york city \n", "\n", "\n", "Good luck everyone in NYC #NYC #USA #America #Sandy #HurricaneSandy #StatueOfLiberty #wow #igers #picoftheda http://t.co/MfpzGJ7O\n", "\n", "--------------------------------------------------------\n", - "good luck everyone nyc nyc usa america sandy hurricanesandy statueofliberty wow igers picoftheda \n", + "good luck everyone new york city nyc usa america sandy hurricane sandy statueofliberty igers picoftheda \n", "\n", "\n", "Holy cow. #NYC #HurricaneSandy http://t.co/caBy6Yea\n", "\n", "--------------------------------------------------------\n", - "holy cow nyc hurricanesandy \n", + "holy cow new york city hurricane sandy \n", "\n", "\n", "#holyshit #nyc #newyork #hurricanesandy #crazy http://t.co/jg6IFXgl\n", "\n", "--------------------------------------------------------\n", - "holyshit nyc newyork hurricanesandy crazy \n", + "holyshit new york city new york hurricane sandy crazy \n", "\n", "\n", "No kiddin!!! Look at this pic from the storm in NY! #HurricaneSandy http://t.co/5bIOm2SK\n", "\n", "--------------------------------------------------------\n", - "kiddin look pic storm ny hurricanesandy \n", + "kiddin look pic storm new york hurricane sandy \n", "\n", "\n", "Sharks in the street? Only at the jersey shore. #hurricane #hurricanesandy #shark #streets #nature #hilariou http://t.co/zv7pBQui\n", "\n", "--------------------------------------------------------\n", - "sharks street jersey shore hurricane hurricanesandy shark streets nature hilariou \n", + "sharks street jersey shore hurricane hurricane sandy shark streets nature hilariou \n", "\n", "\n", "#hurricanesandy about to hit dc http://t.co/eryKdMCA\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy hit dc \n", + "hurricane sandy hit dc \n", "\n", "\n", "WOW. SubhanAllah. Amazing photo. #HurricaneSandy http://t.co/WhDdBWKo\n", "\n", "--------------------------------------------------------\n", - "wow subhanallah amazing photo hurricanesandy \n", + "subhanallah amazing photo hurricane sandy \n", "\n", "\n", "Holy shit #sandy #hurricanesandy #statueofliberty #stolen http://t.co/ypqmGvA8\n", "\n", "--------------------------------------------------------\n", - "holy shit sandy hurricanesandy statueofliberty stolen \n", + "holy shit sandy hurricane sandy statueofliberty stolen \n", "\n", "\n", "Holy shiiiiit! #HurricaneSandy http://t.co/FMgGDSsp\n", "\n", "--------------------------------------------------------\n", - "holy shiiiiit hurricanesandy \n", + "holy shiiiiit hurricane sandy \n", "\n", "\n", "Damn #hurricaneSandy is cleaning up that dirty French whore up in #nyc http://t.co/irEXUXLv\n", "\n", "--------------------------------------------------------\n", - "damn hurricanesandy cleaning dirty french whore nyc \n", + "damn hurricane sandy cleaning dirty french whore new york city \n", "\n", "\n", "Da hilft auch kein raketenabwehrschild!! #Hurricanesandy #derzornallahs http://t.co/rBS5qKX4\n", "\n", "--------------------------------------------------------\n", - "da hilft auch kein raketenabwehrschild hurricanesandy derzornallahs \n", + "hilft auch kein raketenabwehrschild hurricane sandy derzornallahs \n", "\n", "\n", "#fFankenstorm is making its way into #NewYorkCity. #sandy #hurricanesandy http://t.co/NZbpCdwm\n", "\n", "--------------------------------------------------------\n", - "ffankenstorm making way newyorkcity sandy hurricanesandy \n", + "ffankenstorm making way new yorkcity sandy hurricane sandy \n", "\n", "\n", "Scary stuff! #HurricaneSandy http://t.co/lq1XJ8I9\n", "\n", "--------------------------------------------------------\n", - "scary stuff hurricanesandy \n", + "scary stuff hurricane sandy \n", "\n", "\n", "This photo terrifies me! #HurricaneSandy #NewYork #HalloweenWeather http://t.co/Ao1RklPU\n", "\n", "--------------------------------------------------------\n", - "photo terrifies hurricanesandy newyork halloweenweather \n", + "photo terrifies hurricane sandy new york halloweenweather \n", "\n", "\n", "No filter needed #hurricanesandy #nyc http://t.co/PhaKFmWN\n", "\n", "--------------------------------------------------------\n", - "filter needed hurricanesandy nyc \n", - "\n", - "\n", - "This is crazy... #hurricanesandy http://t.co/0ZrhMzyO\n", - "\n", - "--------------------------------------------------------\n", - "crazy hurricanesandy \n", + "filter needed hurricane sandy new york city \n", "\n", "\n", "#nyc #hurricanesandy #USA #igers #igdaily #iphone5 #ig_nesia #instalol #instausa #iphonesia #iphonesia #ins http://t.co/0iTjC9O9\n", "\n", "--------------------------------------------------------\n", - "nyc hurricanesandy usa igers igdaily iphone5 ig nesia instalol instausa iphonesia iphonesia ins \n", + "new york city hurricane sandy usa igers igdaily iphone5 ignesia insta instausa iphonesia iphonesia ins \n", "\n", "\n", "Foto de niccccwitttt http://t.co/0XObcLOT #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto niccccwitttt hurricanesandy \n", + "foto niccccwitttt hurricane sandy \n", "\n", "\n", "Sandy has officially introduced herself to Lady Liberty. #hurricanesandy #statueoflibery #nyc http://t.co/QiMDazkr\n", "\n", "--------------------------------------------------------\n", - "sandy officially introduced lady liberty hurricanesandy statueoflibery nyc \n", - "\n", - "\n", - "Shit Just Got Real. #HurricaneSandy http://t.co/4lmGQqcU\n", - "\n", - "--------------------------------------------------------\n", - "shit got real hurricanesandy \n", + "sandy officially introduced lady liberty hurricane sandy statueoflibery new york city \n", "\n", "\n", "My heart and prayers to everyone on the east coast be safe everyone🙏#hurricanesandy #hurricane#sandy#safe#pr http://t.co/WSK56IZp\n", "\n", "--------------------------------------------------------\n", - "heart prayers everyone east coast safe everyone hurricanesandy hurricane sandy safe pr \n", + "heart prayers everyone east coast safe everyone hurricane sandy hurricane sandysafepr \n", "\n", "\n", "Ummmmm, yeah! Deep sea diving in the #TimesSquare train station! #TooReal #hurricanesandy #nyc http://t.co/pQcstBhH\n", "\n", "--------------------------------------------------------\n", - "ummmmm yeah deep diving timessquare train station tooreal hurricanesandy nyc \n", + "ummmmm yeah deep diving timessquare train station tooreal hurricane sandy new york city \n", "\n", "\n", "#sharing #pics #hurricanesandy BE SAFE PEOPLE! #oiga #oigaevents @ http://t.co/MUQK9WvK http://t.co/xSghYzBS\n", "\n", "--------------------------------------------------------\n", - "sharing pics hurricanesandy safe people oiga oigaevents \n", + "sharing pics hurricane sandy safe people oiga oigaevents \n", "\n", "\n", "The world is coming to a end for real o.o RT @kissmyasshleey: #hurricaneSandy just got real http://t.co/jqbyv0M3\n", @@ -34324,235 +30480,217 @@ "#Scary 😱#hurricane #hurricanesandy #statueofliberty http://t.co/QVTT4QgE\n", "\n", "--------------------------------------------------------\n", - "scary hurricane hurricanesandy statueofliberty \n", + "scary hurricane hurricane sandy statueofliberty \n", "\n", "\n", "Supposedly #HurricaneSandy on the east coast looks like #TheDayAfterTomorrow #fact http://t.co/b9Khm2RV\n", "\n", "--------------------------------------------------------\n", - "supposedly hurricanesandy east coast looks like thedayaftertomorrow fact \n", + "supposedly hurricane sandy east coast looks like thedayaftertomorrow fact \n", "\n", "\n", "Just a shark in someone's front yard #hurricanesandy 😖😖 http://t.co/2poNoAzP\n", "\n", "--------------------------------------------------------\n", - "shark someone front yard hurricanesandy \n", + "shark someone front yard hurricane sandy \n", "\n", "\n", "#Amazing picture of #HurricaneSandy approaching #NewYorkCity today ! #Awesome 🌀🌊💨 http://t.co/AKo8HqyZ\n", "\n", "--------------------------------------------------------\n", - "amazing picture hurricanesandy approaching newyorkcity today awesome \n", + "amazing picture hurricane sandy approaching new yorkcity today awesome \n", "\n", "\n", "Nature is so powerful, yet so beautiful... #Sandy #HurricaneSandy http://t.co/FmyyRPhB\n", "\n", "--------------------------------------------------------\n", - "nature powerful yet beautiful sandy hurricanesandy \n", + "nature powerful yet beautiful sandy hurricane sandy \n", "\n", "\n", "A shark swimming in someone's front yard in Brigantine, NJ ! #shark #hurricanesandy http://t.co/4o6e0BKn\n", "\n", "--------------------------------------------------------\n", - "shark swimming someone front yard brigantine nj shark hurricanesandy \n", + "shark swimming someone front yard brigantine new jersey shark hurricane sandy \n", "\n", "\n", "Street sharks?! Hope my Virginia family is safe! 🚣 #hurricanesandy http://t.co/nQQNtLwV\n", "\n", "--------------------------------------------------------\n", - "street sharks hope virginia family safe hurricanesandy \n", + "street sharks hope virginia family safe hurricane sandy \n", "\n", "\n", "Another shark in someone's yard. #HurricaneSandy #CrazyShit http://t.co/EhoK4gf5\n", "\n", "--------------------------------------------------------\n", - "another shark someone yard hurricanesandy crazyshit \n", + "another shark someone yard hurricane sandy crazyshit \n", "\n", "\n", "#HurricaneSandy #SuperStorm New Jersey http://t.co/XZOpzlaR\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy superstorm new jersey \n", + "hurricane sandy superstorm new jersey \n", "\n", "\n", "#hurricanesandy or the end of the world..... Like in a movie http://t.co/SkB7SJa8\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy end world like movie \n", + "hurricane sandy end world like movie \n", "\n", "\n", "Taken this morning of the storm..I can't! I didn't come to New York for this crap #repost #hurricanesandy http://t.co/rG2vOk16\n", "\n", "--------------------------------------------------------\n", - "taken morning storm come new york crap repost hurricanesandy \n", + "taken morning storm come new york crap repost hurricane sandy \n", "\n", "\n", "#tagstagram @tagstagram fabshots #fabshots #beautiful #view of #hurricanesandy & #statuteofliberty http://t.co/K4jce4pz\n", "\n", "--------------------------------------------------------\n", - "tagstagram fabshots fabshots beautiful view hurricanesandy statuteofliberty \n", + "tagstagram fabshots fabshots beautiful view hurricane sandy statuteofliberty \n", "\n", "\n", "This seal was found washed up on the streets of NY #HurricaneSandy http://t.co/I5DxWvNi\n", "\n", "--------------------------------------------------------\n", - "seal found washed streets ny hurricanesandy \n", + "seal found washed streets new york hurricane sandy \n", "\n", "\n", "#hurricanesandy over New York yesterday #scarystuff #endoftheworldshit http://t.co/hPGVDOf6\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy new york yesterday scarystuff endoftheworldshit \n", + "hurricane sandy new york yesterday scarystuff endoftheworldshit \n", "\n", "\n", "Wow the FRONT of #HurricaneSandy heading over NY!! INCREDIBLE\\nhttp://t.co/rjmNb15f\n", "\n", "--------------------------------------------------------\n", - "wow front hurricanesandy heading ny incredible \n", + "front hurricane sandy heading new york incredible \n", "\n", "\n", "From Facebook , #hurricanesandy #repost and pray http://t.co/SCpVUokU\n", "\n", "--------------------------------------------------------\n", - "facebook hurricanesandy repost pray \n", + "facebook hurricane sandy repost pray \n", "\n", "\n", "This picture is seriously amazing. 💙 #TombOfTheUnkown #hurricanesandy http://t.co/7YtJZmHf\n", "\n", "--------------------------------------------------------\n", - "picture seriously amazing tomboftheunkown hurricanesandy \n", + "picture seriously amazing tomboftheunkown hurricane sandy \n", "\n", "\n", "That's awesome. So much #respect . #hurricanesandy #sandy #praying http://t.co/dRcSBNNu\n", "\n", "--------------------------------------------------------\n", - "awesome much respect hurricanesandy sandy praying \n", + "awesome much respect hurricane sandy sandy praying \n", "\n", "\n", "Look at her!!! Isn't she a sight to see #hurricanesandy http://t.co/6Rc5jTRX\n", "\n", "--------------------------------------------------------\n", - "look sight see hurricanesandy \n", + "look sight see hurricane sandy \n", "\n", "\n", "😳 Yes, that is indeed a #shark swimming in some New Jersian's lawn 🌀 #hurricanesandy #craziness #goaway http://t.co/N63BdRdT\n", "\n", "--------------------------------------------------------\n", - "yes indeed shark swimming new jersian lawn hurricanesandy craziness goaway \n", + "yes indeed shark swimming new jersian lawn hurricane sandy craziness goaway \n", "\n", "\n", "Dear Lord, subdue #HurricaneSandy, help the homeless, restore electricity, secure senior citizens & be a she http://t.co/5koMTTOV\n", "\n", "--------------------------------------------------------\n", - "dear lord subdue hurricanesandy help homeless restore electricity secure senior citizens \n", - "\n", - "\n", - "OMG @#HurricaneSandy http://t.co/VkBWFoMw\n", - "\n", - "--------------------------------------------------------\n", - "omg hurricanesandy \n", + "dear lord subdue hurricane sandy help homeless restore electricity secure senior citizens \n", "\n", "\n", "#realpic #noeffects #hurricanesandy http://t.co/9M1ebEgF\n", "\n", "--------------------------------------------------------\n", - "realpic noeffects hurricanesandy \n", + "realpic noeffects hurricane sandy \n", "\n", "\n", "Sandy's coming for us. #HurricaneSandy #NY http://t.co/lBwA5U4c\n", "\n", "--------------------------------------------------------\n", - "sandy coming us hurricanesandy ny \n", + "sandy coming us hurricane sandy new york \n", "\n", "\n", "Bloody hell!!! Scary shit!!! #hurricanesandy http://t.co/whc7li67\n", "\n", "--------------------------------------------------------\n", - "bloody hell scary shit hurricanesandy \n", + "bloody hell scary shit hurricane sandy \n", "\n", "\n", "it looks crazy!!........ #NY #Sandy #hurricanesandy http://t.co/mE8l58r6\n", "\n", "--------------------------------------------------------\n", - "looks crazy ny sandy hurricanesandy \n", + "looks crazy new york sandy hurricane sandy \n", "\n", "\n", "New York City #newyorkcity #cool #hurricanesandy http://t.co/NHNJ8EvD\n", "\n", "--------------------------------------------------------\n", - "new york city newyorkcity cool hurricanesandy \n", + "new york city new yorkcity cool hurricane sandy \n", "\n", "\n", "out for a swim. bbl. #timessq #reportinglive #hurricanesandy #mta #subway #underwater http://t.co/Zl0FvxXG\n", "\n", "--------------------------------------------------------\n", - "swim bbl timessq reportinglive hurricanesandy mta subway underwater \n", + "swim bbl timessq reportinglive hurricane sandy mta subway underwater \n", "\n", "\n", "Epic ! #hurricanesandy http://t.co/U75PiP9e\n", "\n", "--------------------------------------------------------\n", - "epic hurricanesandy \n", + "epic hurricane sandy \n", "\n", "\n", "HOLY. SHIT. #HurricaneSandy http://t.co/QGNS0REe\n", "\n", "--------------------------------------------------------\n", - "holy shit hurricanesandy \n", - "\n", - "\n", - "Scary stuff #HurricaneSandy http://t.co/freTrWY8\n", - "\n", - "--------------------------------------------------------\n", - "scary stuff hurricanesandy \n", + "holy shit hurricane sandy \n", "\n", "\n", "New York this morning #beautifulbutscary #hurricanesandy #frankenstorm http://t.co/sndp2X78\n", "\n", "--------------------------------------------------------\n", - "new york morning beautifulbutscary hurricanesandy frankenstorm \n", + "new york morning beautifulbutscary hurricane sandy frankenstorm \n", "\n", "\n", "Shark in front of someone's house! Holy crap! This is my town...#LongBeach after #HurricaneSandy http://t.co/BPLweAGd\n", "\n", "--------------------------------------------------------\n", - "shark front someone house holy crap town longbeach hurricanesandy \n", + "shark front someone house holy crap town longbeach hurricane sandy \n", "\n", "\n", "A menancing storm - http://t.co/WmUmsm83 #HurricaneSandy via @photoprob\n", "\n", "--------------------------------------------------------\n", - "menancing storm hurricanesandy \n", + "menancing storm hurricane sandy \n", "\n", "\n", "#hurricanesandy the beginning of the end of the world 😳😧 http://t.co/LiEB8QwJ\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy beginning end world \n", + "hurricane sandy beginning end world \n", "\n", "\n", "Some crazy shit #hurricanesandy http://t.co/HoNhdStl\n", "\n", "--------------------------------------------------------\n", - "crazy shit hurricanesandy \n", + "crazy shit hurricane sandy \n", "\n", "\n", "HAD to repost this from my man @darendixon. #HurricaneSandy has brought SHARKS to the New Jersey streets!!! http://t.co/L2wZKSV1\n", "\n", "--------------------------------------------------------\n", - "repost hurricanesandy brought sharks new jersey streets \n", + "repost hurricane sandy brought sharks new jersey streets \n", "\n", "\n", "Drawlin #HurricaneSandy http://t.co/Iam6wxKD\n", "\n", "--------------------------------------------------------\n", - "drawlin hurricanesandy \n", - "\n", - "\n", - "#HurricaneSandy #NewYork http://t.co/i6QA0cvz\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy newyork \n", + "drawlin hurricane sandy \n", "\n", "\n", "Aah RT @byebye__blondie: Thinking of all those affected by #hurricaneSandy you and your families remain in our prayers! http://t.co/6F3DuFWU\n", @@ -34564,61 +30702,61 @@ "#hurricanesandy #newyork #nyc http://t.co/ceYAJh0v\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork nyc \n", + "hurricane sandy new york new york city \n", "\n", "\n", "Praying for my brother during this #repost #hurricanesandy #fuckmothernature http://t.co/JxeZzEbm\n", "\n", "--------------------------------------------------------\n", - "praying brother repost hurricanesandy fuckmothernature \n", + "praying brother repost hurricane sandy fuckmothernature \n", "\n", "\n", "Even #hurricanesandy cant stop #teammerica http://t.co/lWEcA59K\n", "\n", "--------------------------------------------------------\n", - "even hurricanesandy cant stop teammerica \n", + "even hurricane sandy cant stop teammerica \n", "\n", "\n", "Espetacular!!! #hurricanesandy #ny #thehuffingtonpost http://t.co/l9YP7MuV\n", "\n", "--------------------------------------------------------\n", - "espetacular hurricanesandy ny thehuffingtonpost \n", + "espetacular hurricane sandy new york thehuffingtonpost \n", "\n", "\n", "Shit jus got real... #hurricanesandy http://t.co/n2PzbA98\n", "\n", "--------------------------------------------------------\n", - "shit jus got real hurricanesandy \n", + "shit jus got real hurricane sandy \n", "\n", "\n", "No Way in or Out of Manhattan NY! #HurricaneSandy http://t.co/WYp4WHWL\n", "\n", "--------------------------------------------------------\n", - "way manhattan ny hurricanesandy \n", + "way manhattan new york hurricane sandy \n", "\n", "\n", "Somebody let their shark out #HurricaneSandy #Frankenstorm #obx http://t.co/lEz1rvsi\n", "\n", "--------------------------------------------------------\n", - "somebody let shark hurricanesandy frankenstorm obx \n", + "somebody let shark hurricane sandy frankenstorm obx \n", "\n", "\n", "“@Ghost_noSwag “@freshIife Is that a fucking shark? Smfh #HurricaneSandy http://t.co/huUppJg2””\n", "\n", "--------------------------------------------------------\n", - "fucking shark smfh hurricanesandy \n", + "fucking shark smfh hurricane sandy \n", "\n", "\n", "I don't know if this is real but if it is its awesome. #hurricanesandy http://t.co/NStajCE6\n", "\n", "--------------------------------------------------------\n", - "know real awesome hurricanesandy \n", + "know real awesome hurricane sandy \n", "\n", "\n", "If this is real... some day after tomorrow ish right hur. #HurricaneSandy http://t.co/Qx5Hpnmn\n", "\n", "--------------------------------------------------------\n", - "real day tomorrow ish right hurricanesandy \n", + "real day tomorrow ish right hurricane sandy \n", "\n", "\n", "Tf RT @Cash19320: Died RT @ShesASweetheart: Meanwhile on 202....#HurricaneSandy #ItsREALOutHere 😳 http://t.co/iNo45fZP\n", @@ -34630,205 +30768,199 @@ "I'd do the same thing for my dog. #hurricanesandy http://t.co/UcnzJH7H\n", "\n", "--------------------------------------------------------\n", - "thing dog hurricanesandy \n", + "thing dog hurricane sandy \n", "\n", "\n", "Stay safe @jamimong and for all those staying in the east coast. #godblessamerica #hurricanesandy #newyork # http://t.co/Qt8IRuEz\n", "\n", "--------------------------------------------------------\n", - "stay safe staying east coast godblessamerica hurricanesandy newyork \n", + "stay safe staying east coast godblessamerica hurricane sandy new york \n", "\n", "\n", "Atlantic City Road, New Jersey Got Sharks. #HurricaneSandy http://t.co/k3CilkLo\n", "\n", "--------------------------------------------------------\n", - "atlantic city road new jersey got sharks hurricanesandy \n", + "atlantic city road new jersey got sharks hurricane sandy \n", "\n", "\n", "Omg ! Imagine seeing this in nyc!!! #hurricanesandy http://t.co/Yo4Joppm\n", "\n", "--------------------------------------------------------\n", - "omg imagine seeing nyc hurricanesandy \n", + "imagine seeing new york city hurricane sandy \n", "\n", "\n", "Mother Nature, don't destroy the Iron Jungle. #HurricaneSandy #NYC http://t.co/pwm7EvFs\n", "\n", "--------------------------------------------------------\n", - "mother nature destroy iron jungle hurricanesandy nyc \n", + "mother nature destroy iron jungle hurricane sandy new york city \n", "\n", "\n", "Better think twice before walking through a flooded street if you live near the beach #hurricanesandy #thech http://t.co/UdRxlVXm\n", "\n", "--------------------------------------------------------\n", - "better think twice walking flooded street live near beach hurricanesandy thech \n", + "better think twice walking flooded street live near beach hurricane sandy thech \n", "\n", "\n", "Keep the dogs upstairs! #newjersey #hurricanesandy http://t.co/OeyzwW6K\n", "\n", "--------------------------------------------------------\n", - "keep dogs upstairs newjersey hurricanesandy \n", - "\n", - "\n", - "Whoa!!! #HurricaneSandy http://t.co/FpqyjnIh\n", - "\n", - "--------------------------------------------------------\n", - "whoa hurricanesandy \n", + "keep dogs upstairs newjersey hurricane sandy \n", "\n", "\n", "frankenstorm over NYC #HurricaneSandy http://t.co/oeadmHvd\n", "\n", "--------------------------------------------------------\n", - "frankenstorm nyc hurricanesandy \n", + "frankenstorm new york city hurricane sandy \n", "\n", "\n", "#HurricaneSandy Be safe niggaz http://t.co/CwdeLBSd\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy safe niggaz \n", + "hurricane sandy safe niggaz \n", "\n", "\n", "Storm is brewing! Stay strong New York! #HurricaneSandy #eerie #instagrampics #photooftheday http://t.co/0OTUBwgS\n", "\n", "--------------------------------------------------------\n", - "storm brewing stay strong new york hurricanesandy eerie instagrampics photooftheday \n", + "storm brewing stay strong new york hurricane sandy eerie instagrampics photooftheday \n", "\n", "\n", "#hurricanesandy で検索してみたら…なんだこれ! jddabarberoさんの写真 http://t.co/PAa42j9j\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy で検索してみたら なんだこれ jddabarberoさんの写真 \n", + "hurricane sandy で検索してみたら なんだこれ jddabarberoさんの写真 \n", "\n", "\n", "#TheDayAfterTomorrow in #NewJersey - #HurricaneSandy http://t.co/hDZ966QR\n", "\n", "--------------------------------------------------------\n", - "thedayaftertomorrow newjersey hurricanesandy \n", + "thedayaftertomorrow newjersey hurricane sandy \n", "\n", "\n", "#sharks, #hurricanesandy #borrow http://t.co/MUB3eefq\n", "\n", "--------------------------------------------------------\n", - "sharks hurricanesandy borrow \n", + "sharks hurricane sandy borrow \n", "\n", "\n", "Wow #libertyisland #hurricanesandy http://t.co/Npe2Jo8U\n", "\n", "--------------------------------------------------------\n", - "wow libertyisland hurricanesandy \n", + "libertyisland hurricane sandy \n", "\n", "\n", "Photo of #HurricaneSandy approaching NYC #tight http://t.co/TPNRZ49L\n", "\n", "--------------------------------------------------------\n", - "photo hurricanesandy approaching nyc tight \n", + "photo hurricane sandy approaching new york city tight \n", "\n", "\n", "Aaaayo, this ish is scary but cool. I'm screwed if we have to swim LOL #hurricanesandy #newyork #besafe #201 http://t.co/kVqjeI1v\n", "\n", "--------------------------------------------------------\n", - "aaaayo ish scary cool screwed swim lol hurricanesandy newyork besafe 201 \n", + "aaaa ish scary cool screwed swim hurricane sandy new york besafe01 \n", "\n", "\n", "An insane picture of #hurricanesandy approaching New York! http://t.co/PBAdcOpy\n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "--------------------------------------------------------\n", - "insane picture hurricanesandy approaching new york \n", + "insane picture hurricane sandy approaching new york \n", "\n", "\n", "Craaaazy!! 😱 #HurricaneSandy http://t.co/3shNQNv9\n", "\n", "--------------------------------------------------------\n", - "craaaazy hurricanesandy \n", - "\n", - "\n", - "An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/dGADvnQi””\n", - "\n", - "--------------------------------------------------------\n", - "insane picture taken today hurricanesandy approaching nyc \n", + "craaaazy hurricane sandy \n", "\n", "\n", "Praying for everyone on the east cost. #hurricanesandy #pray #love http://t.co/PQVml5AA\n", "\n", "--------------------------------------------------------\n", - "praying everyone east cost hurricanesandy pray love \n", + "praying everyone east cost hurricane sandy pray love \n", "\n", "\n", "#HurricaneSandy #TheWorldIsEnding http://t.co/Kl8qKLTR\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy theworldisending \n", + "hurricane sandy theworldisending \n", "\n", "\n", "#hurricanesandy #NYC #2012 #pray #mothernature http://t.co/61xmLz9i\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc 2012 pray mothernature \n", + "hurricane sandy nyc012 pray mothernature \n", "\n", "\n", "That is just crazy scary.. #Hurricane #HurricaneSandy #Frankenstorm #Swag #Scary #creepy #omg http://t.co/iy8oJqVR\n", "\n", "--------------------------------------------------------\n", - "crazy scary hurricane hurricanesandy frankenstorm swag scary creepy omg \n", + "crazy scary hurricane hurricane sandy frankenstorm swag scary creepy \n", "\n", "\n", "Next time you're talking about how your job sucks think about these guys. #hurricanesandy #tomboftheunknowns http://t.co/Mm2FeFBv\n", "\n", "--------------------------------------------------------\n", - "next time talking job sucks think guys hurricanesandy tomboftheunknowns \n", + "next time talking job sucks think guys hurricane sandy tomboftheunknowns \n", "\n", "\n", "This shit crazy !! #newyork #subway #flooded##hurricanesandy #timessquare http://t.co/BYOGNWUN\n", "\n", "--------------------------------------------------------\n", - "shit crazy newyork subway flooded hurricanesandy timessquare \n", + "shit crazy new york subway floodedhurricane sandy timessquare \n", "\n", "\n", "ok...now I'm scared. pls be safe everyone!!! #hurricanesandy #frankenstorm http://t.co/MVYjxAIT\n", "\n", "--------------------------------------------------------\n", - "ok scared pls safe everyone hurricanesandy frankenstorm \n", + "ok scared pls safe everyone hurricane sandy frankenstorm \n", "\n", "\n", "What a pic! #HurricaneSandy http://t.co/fth3Tseu\n", "\n", "--------------------------------------------------------\n", - "pic hurricanesandy \n", + "pic hurricane sandy \n", "\n", "\n", "Stole this from a girl in #jersey !! #shark #swimming #jerseystreets #insane only #hurricanesandy http://t.co/ssEf42zC\n", "\n", "--------------------------------------------------------\n", - "stole girl jersey shark swimming jerseystreets insane hurricanesandy \n", + "stole girl jersey shark swimming jerseystreets insane hurricane sandy \n", "\n", "\n", "Flooded streets, shark swimming by. No biggie 😯😳 #HurricaneSandy Wtf man.. http://t.co/XU3dyi3P\n", "\n", "--------------------------------------------------------\n", - "flooded streets shark swimming biggie hurricanesandy wtf \n", + "flooded streets shark swimming biggie hurricane sandy \n", "\n", "\n", "Oh. My. God. :| #hurricanesandy #NY http://t.co/N5S2IYGo\n", "\n", "--------------------------------------------------------\n", - "oh god hurricanesandy ny \n", + "god hurricane sandy new york \n", "\n", "\n", "Impressionnant cette photos de NEW YORK aujourd'hui #HurricaneSandy http://t.co/ratUZnLx\n", "\n", "--------------------------------------------------------\n", - "impressionnant cette photos new york aujourd hui hurricanesandy \n", + "impressionnant cette photos new york aujourd hui hurricane sandy \n", "\n", "\n", "This sight though?!?!? So dope! 😱💦🌊☔🗽🚣 #ny #hurricanesandy #mothernature #ladyliberty http://t.co/Tzuyelhi\n", "\n", "--------------------------------------------------------\n", - "sight though dope ny hurricanesandy mothernature ladyliberty \n", + "sight though dope new york hurricane sandy mothernature ladyliberty \n", "\n", "\n", "Storm picture. #hurricanesandy #speechless http://t.co/wu2P2wjS\n", "\n", "--------------------------------------------------------\n", - "storm picture hurricanesandy speechless \n", + "storm picture hurricane sandy speechless \n", "\n", "\n", "“@FrankBertelle: #HurricaneSandy #StatueOfLiberty #NYC http://t.co/lGzwr8xc” that picture is so sick!\n", @@ -34837,652 +30969,616 @@ "picture sick \n", "\n", "\n", - "#HurricaneSandy is here http://t.co/Rc2cvkvZ\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", - "\n", - "\n", "Shark swims up to someone's house #hurricaneSandy http://t.co/YbkVUHUU\n", "\n", "--------------------------------------------------------\n", - "shark swims someone house hurricanesandy \n", + "shark swims someone house hurricane sandy \n", "\n", "\n", "Its serious outside #sandy#wild http://t.co/miRBzjU3\n", "\n", "--------------------------------------------------------\n", - "serious outside sandy wild \n", + "serious outside sandywild \n", "\n", "\n", "For real! Smfh #hurricanesandy #aftermath #bosses #fools http://t.co/ufw497gm\n", "\n", "--------------------------------------------------------\n", - "real smfh hurricanesandy aftermath bosses fools \n", + "real smfh hurricane sandy aftermath bosses fools \n", "\n", "\n", "Had to share this pic of NYC this morning. #didnttakethis #natureispowerful #hurricanesandy #nofilter 🌀🌊 http://t.co/z7mqZCSv\n", "\n", "--------------------------------------------------------\n", - "share pic nyc morning didnttakethis natureispowerful hurricanesandy nofilter \n", - "\n", - "\n", - "Yikes. RT @QueenReesa: #HurricaneSandy RT @bellametaphor: juneambrose's photo http://t.co/1ufztaMf\n", - "\n", - "--------------------------------------------------------\n", - "yikes \n", + "share pic new york city morning didnttakethis natureispowerful hurricane sandy nofilter \n", "\n", "\n", "This is an amazing pic, but I am so glad I got out of there!!! #nyc #hurricanesandy http://t.co/FM2d2Ysc\n", "\n", "--------------------------------------------------------\n", - "amazing pic glad got nyc hurricanesandy \n", + "amazing pic glad got new york city hurricane sandy \n", "\n", "\n", "#hurricaneSandy #libertyisland http://t.co/Vq9lMshU\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy libertyisland \n", + "hurricane sandy libertyisland \n", "\n", "\n", "so much respect for this. #soldiers #unknown #guarding #hurricanesandy http://t.co/JUzAB22D\n", "\n", "--------------------------------------------------------\n", - "much respect soldiers unknown guarding hurricanesandy \n", + "much respect soldiers unknown guarding hurricane sandy \n", "\n", "\n", "#hurricanesandy oh GOD http://t.co/SpuuUMAa\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy oh god \n", + "hurricane sandygod \n", "\n", "\n", "Mark saw this photo posted to twitter! Whoa! #HurricaneSandy http://t.co/fJi2JPOx\n", "\n", "--------------------------------------------------------\n", - "mark saw photo posted twitter whoa hurricanesandy \n", + "mark saw photo posted twitter hurricane sandy \n", "\n", "\n", "Is this real life?! #HurricaneSandy #NewYork http://t.co/m8nRb18q\n", "\n", "--------------------------------------------------------\n", - "real life hurricanesandy newyork \n", + "real life hurricane sandy new york \n", "\n", "\n", "Say a pray for these brave soldiers today! #proud #american #soldiers #hurricanesandy #brave #usa http://t.co/F3hWuz7M\n", "\n", "--------------------------------------------------------\n", - "say pray brave soldiers today proud american soldiers hurricanesandy brave usa \n", + "say pray brave soldiers today proud american soldiers hurricane sandy brave usa \n", "\n", "\n", "#damn #hurricanesandy #storm #statueofliberty #crazy #waves http://t.co/A4F91Ag8\n", "\n", "--------------------------------------------------------\n", - "damn hurricanesandy storm statueofliberty crazy waves \n", + "damn hurricane sandy storm statueofliberty crazy waves \n", "\n", "\n", "#hurricanesandy done brought the #sharks to shore 🐟 http://t.co/BFbLCxbb\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy done brought sharks shore \n", + "hurricane sandy done brought sharks shore \n", "\n", "\n", "#theNewJerseyShark#Sandy http://t.co/5hD1JpUc\n", "\n", "--------------------------------------------------------\n", - "thenewjerseyshark sandy \n", + "thenewjerseysharksandy \n", "\n", "\n", "#hurricanesandy reporting from my car. #NoPower #CarChargers #ItsADisaster #Repost http://t.co/x2VkE3HO\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy reporting car nopower carchargers itsadisaster repost \n", + "hurricane sandy reporting car nopower carchargers itsadisaster repost \n", "\n", "\n", "#sandy moving into #nyc this morning #hurricanesandy #2012 http://t.co/X4ko1K0X\n", "\n", "--------------------------------------------------------\n", - "sandy moving nyc morning hurricanesandy 2012 \n", - "\n", - "\n", - "WOW at this pic of soldiers currently at the Tomb of the Unknowns in DC. http://t.co/OmwYKgYx #HurricaneSandy who?\n", - "\n", - "--------------------------------------------------------\n", - "wow pic soldiers currently tomb unknowns dc hurricanesandy \n", + "sandy moving new york city morning hurricane sandy012 \n", "\n", "\n", "Holy crap! #Hurricanesandy http://t.co/Dw7brniF\n", "\n", "--------------------------------------------------------\n", - "holy crap hurricanesandy \n", + "holy crap hurricane sandy \n", "\n", "\n", "#HurricaneSandy #Insane #SweetPhoto http://t.co/gP6VpFrK\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy insane sweetphoto \n", + "hurricane sandy insane sweetphoto \n", "\n", "\n", "Mad love to my US Fam. Praying for you all. Be safe. X #hurricanesandy #hurricane #nyc #usa http://t.co/ehln0ugz\n", "\n", "--------------------------------------------------------\n", - "mad love us fam praying safe x hurricanesandy hurricane nyc usa \n", + "mad love us fam praying safe x hurricane sandy hurricane new york city usa \n", "\n", "\n", "#Hurricanesandy marvis5555's photo http://t.co/D81R2KYH\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy marvis5555 photo \n", + "hurricane sandy marvis5555 photo \n", "\n", "\n", "beccabear1994's photo http://t.co/ZBIlpLnv shark swimming down the street! #hurricanesandy #sharks #cantevenimagine #isthisreal\n", "\n", "--------------------------------------------------------\n", - "beccabear1994 photo shark swimming street hurricanesandy sharks cantevenimagine isthisreal \n", + "beccabear1994 photo shark swimming street hurricane sandy sharks cantevenimagine isthisreal \n", "\n", "\n", "Not my photo obviously, but just amazed by their dedication. God bless them. #hurricanesandy #america http://t.co/MkYmunzA\n", "\n", "--------------------------------------------------------\n", - "photo obviously amazed dedication god bless hurricanesandy america \n", + "photo obviously amazed dedication god bless hurricane sandy america \n", "\n", "\n", "#newyorkcity #hurricanesandy http://t.co/tzpYcjhK\n", "\n", "--------------------------------------------------------\n", - "newyorkcity hurricanesandy \n", + "new yorkcity hurricane sandy \n", "\n", "\n", "Hurricane and sharks go hand and hand I guess. #hurricanesandy #sealifetoland http://t.co/vpSE5hXc\n", "\n", "--------------------------------------------------------\n", - "hurricane sharks go hand hand guess hurricanesandy sealifetoland \n", + "hurricane sharks go hand hand guess hurricane sandy sealifetoland \n", "\n", "\n", "Now thats awesome. #HurricaneSandy #NewYork #StatueOfLiberty http://t.co/bKEmA0GU\n", "\n", "--------------------------------------------------------\n", - "thats awesome hurricanesandy newyork statueofliberty \n", + "thats awesome hurricane sandy new york statueofliberty \n", "\n", "\n", "#HurricaneSandy Over NYC :/. #Prepared #PrayForUs 🙏🙏😞🗽🌊🌊 http://t.co/SwyzLzyY\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc prepared prayforus \n", + "hurricane sandy new york city prepared prayforus \n", "\n", "\n", "Day 29 wind, prayers go out to the families on the east coast. #photoadayoctober #hurricanesandy http://t.co/kgMbkFvW\n", "\n", "--------------------------------------------------------\n", - "day 29 wind prayers go families east coast photoadayoctober hurricanesandy \n", + "day9 wind prayers go families east coast photoadayoctober hurricane sandy \n", "\n", "\n", "#hurricane #hurricanesandy #sharks #shark #sharkweek #damnnatureyouscary #outifplace #devistation #lookout # http://t.co/5gkW8RgQ\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy sharks shark sharkweek damnnatureyouscary outifplace devistation lookout \n", + "hurricane hurricane sandy sharks shark sharkweek damnnatureyouscary outifplace devistation lookout \n", "\n", "\n", "Praying for all of my family members out in New York. #hurricanesandy #PowerOfPrayer http://t.co/o3vWEyco\n", "\n", "--------------------------------------------------------\n", - "praying family members new york hurricanesandy powerofprayer \n", + "praying family members new york hurricane sandy powerofprayer \n", "\n", "\n", "#HurricaneSandy #Liberty #NewYork #scary #Storm #SandySucks #igersmanila #igers #instagramers #instaphoto #B http://t.co/N54bxLAC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy liberty newyork scary storm sandysucks igersmanila igers instagramers instaphoto b \n", - "\n", - "\n", - "@rarelydull: #repost from my buddy kord, #hurricaneSandy washing #shark up to the front door! #wow http://t.co/KlG2MKNM\n", - "\n", - "--------------------------------------------------------\n", - "repost buddy kord hurricanesandy washing shark front wow \n", + "hurricane sandy liberty new york scary storm sandysucks igersmanila igers instagramers instaphoto b \n", "\n", "\n", "Amazing photo from NY Frankenstorm.... Stay safe East coast... we pray 🙏🙏🙏🙏 #hurricanesandy http://t.co/MNLtzkH6\n", "\n", "--------------------------------------------------------\n", - "amazing photo ny frankenstorm stay safe east coast pray hurricanesandy \n", + "amazing photo new york frankenstorm stay safe east coast pray hurricane sandy \n", "\n", "\n", "Sharks in the street... #HurricaneSandy http://t.co/AEuhCNbC\n", "\n", "--------------------------------------------------------\n", - "sharks street hurricanesandy \n", + "sharks street hurricane sandy \n", "\n", "\n", "This picture of #hurricaneSandy is incredible. http://t.co/DBW0CfVr\n", "\n", "--------------------------------------------------------\n", - "picture hurricanesandy incredible \n", + "picture hurricane sandy incredible \n", "\n", "\n", "Oh my bad... You thought Sandy was bullshittin'!?!?!?!.... TAKE COVER BITCHESSS!!!... #Sandy #HurricaneSandy http://t.co/hkbbggDA\n", "\n", "--------------------------------------------------------\n", - "oh bad thought sandy bullshittin take cover bitchesss sandy hurricanesandy \n", + "bad thought sandy bullshittin take cover bitchesss sandy hurricane sandy \n", "\n", "\n", "Sad sorry. Amazing picture. #hurricanesandy http://t.co/9F75jS5q\n", "\n", "--------------------------------------------------------\n", - "sad sorry amazing picture hurricanesandy \n", + "sad sorry amazing picture hurricane sandy \n", "\n", "\n", "Forget zombie attacks were dealing with jaws! #doomed #hurricanesandy http://t.co/JXFYCLrE\n", "\n", "--------------------------------------------------------\n", - "forget zombie attacks dealing jaws doomed hurricanesandy \n", + "forget zombie attacks dealing jaws doomed hurricane sandy \n", "\n", "\n", "This is #CRAY , I'm praying for the east coast , #hurricanesandy . http://t.co/sLg8MBjl\n", "\n", "--------------------------------------------------------\n", - "cray praying east coast hurricanesandy \n", + "cray praying east coast hurricane sandy \n", "\n", "\n", "Oh naw sharks in the streets #HurricaneSandy... http://t.co/mqFdrHcH\n", "\n", "--------------------------------------------------------\n", - "oh naw sharks streets hurricanesandy \n", + "naw sharks streets hurricane sandy \n", "\n", "\n", "Lord continue to let lady liberty stand tall #HurricaneSandy #StatueOfLiberty #NewYork #GodBless #Thoughts & http://t.co/sf0dirSB\n", "\n", "--------------------------------------------------------\n", - "lord continue let lady liberty stand tall hurricanesandy statueofliberty newyork godbless thoughts \n", + "lord continue let lady liberty stand tall hurricane sandy statueofliberty new york godbless thoughts \n", "\n", "\n", "Someone put this on facebook. This was an actual picture of #hurricanesandy before it hit. That's ridiculous http://t.co/7rhUQrYP\n", "\n", "--------------------------------------------------------\n", - "someone put facebook actual picture hurricanesandy hit ridiculous \n", + "someone put facebook actual picture hurricane sandy hit ridiculous \n", "\n", "\n", "#respect #hurricanesandy #usa http://t.co/MCuVStPa\n", "\n", "--------------------------------------------------------\n", - "respect hurricanesandy usa \n", + "respect hurricane sandy usa \n", "\n", "\n", "Shark In Jersey Water... #HurricaneSandy http://t.co/edK5Wx6o\n", "\n", "--------------------------------------------------------\n", - "shark jersey water hurricanesandy \n", + "shark jersey water hurricane sandy \n", "\n", "\n", "#HurricaneSandy #FuracãoSandy #LibertyState http://t.co/9fn7qLE6\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy furacãosandy libertystate \n", + "hurricane sandy furacãosandy libertystate \n", "\n", "\n", "Not everything on the east coast is shut down. #hurricanesandy #tomboftheunknownsoldier #arlington http://t.co/uuLMs4od\n", "\n", "--------------------------------------------------------\n", - "everything east coast shut hurricanesandy tomboftheunknownsoldier arlington \n", + "everything east coast shut hurricane sandy tomboftheunknown soldier arlington \n", "\n", "\n", "#hurricanesandy #crazy #statuteofliberty http://t.co/QHZoqWjv\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy crazy statuteofliberty \n", + "hurricane sandy crazy statuteofliberty \n", "\n", "\n", "This is f*cking nuts! #hurricanesandy #instagood #theendisnear #newyork http://t.co/eRRirlYD\n", "\n", "--------------------------------------------------------\n", - "f cking nuts hurricanesandy instagood theendisnear newyork \n", + "f cking nuts hurricane sandy instagood theendisnear new york \n", "\n", "\n", "New York city meets Sandy #HurricaneSandy http://t.co/RVGn0ri2\n", "\n", "--------------------------------------------------------\n", - "new york city meets sandy hurricanesandy \n", + "new york city meets sandy hurricane sandy \n", "\n", "\n", "#hurricanesandy #nyc #statueofliberty http://t.co/pEWoW7Cs\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc statueofliberty \n", + "hurricane sandy new york city statueofliberty \n", "\n", "\n", "Apparently this is a real picture of New York earlier....some scary shit! #hurricanesandy http://t.co/sOWXaHyq\n", "\n", "--------------------------------------------------------\n", - "apparently real picture new york earlier scary shit hurricanesandy \n", + "apparently real picture new york earlier scary shit hurricane sandy \n", "\n", "\n", "I'd save my dog too #hurricanesandy http://t.co/QFt5VOwg\n", "\n", "--------------------------------------------------------\n", - "save dog hurricanesandy \n", + "save dog hurricane sandy \n", "\n", "\n", "This speaks volumes about this country that I am so blessed to live in. #GodblesstheUSA #hurricanesandy #ame http://t.co/n8CoAJdh\n", "\n", "--------------------------------------------------------\n", - "speaks volumes country blessed live godblesstheusa hurricanesandy ame \n", + "speaks volumes country blessed live godblesstheusa hurricane sandy ame \n", "\n", "\n", "Crazy beautiful #HurricaneSandy http://t.co/QPOTzdaC\n", "\n", "--------------------------------------------------------\n", - "crazy beautiful hurricanesandy \n", + "crazy beautiful hurricane sandy \n", "\n", "\n", "So this is #hurricanesandy over #newyorkcity? You can't fool me, I've seen #independenceday 👽 http://t.co/zvyVrvjd\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyorkcity fool seen independenceday \n", + "hurricane sandy new yorkcity fool seen independenceday \n", "\n", "\n", "Um yea that's awesome. Not the death and destruction though.. #HurricaneSandy #StatueOfLiberty #NewYork S/O http://t.co/cypKDelj\n", "\n", "--------------------------------------------------------\n", - "um yea awesome death destruction though hurricanesandy statueofliberty newyork \n", + "yea awesome death destruction though hurricane sandy statueofliberty new york \n", "\n", "\n", "SHEz COMING.\\n#HURRICANESANDY\\n#LIBERTYISLAND \\n#NYBRACEYASELF http://t.co/jTURMNO3\n", "\n", "--------------------------------------------------------\n", - "shez coming hurricanesandy libe \n", + "shez coming hurricane sandy libe \n", "\n", "\n", "This was taken the morning before the storm in New York. Does this picture look edited? #HurricaneSandy @Adel_Bibi http://t.co/hBetvIY0\n", "\n", "--------------------------------------------------------\n", - "taken morning storm new york picture look edited hurricanesandy \n", + "taken morning storm new york picture look edited hurricane sandy \n", "\n", "\n", "This is some End of Days type Shit!!! Mannnn #hurricanesandy http://t.co/oUXSuf5j\n", "\n", "--------------------------------------------------------\n", - "end days type shit mannnn hurricanesandy \n", + "end days type shit mannnn hurricane sandy \n", "\n", "\n", "Just saw this on my twitter feed. Sharks in people's front yards in Brigantine ! #hurricanesandy #sandynj http://t.co/bDtqVXtF\n", "\n", "--------------------------------------------------------\n", - "saw twitter feed sharks people front yards brigantine hurricanesandy sandynj \n", + "saw twitter feed sharks people front yards brigantine hurricane sandy sandynj \n", "\n", "\n", "Praying For Them #HurricaneSandy http://t.co/wrN3rV30\n", "\n", "--------------------------------------------------------\n", - "praying hurricanesandy \n", + "praying hurricane sandy \n", "\n", "\n", "Sandy of NYC #hurricanesandy http://t.co/97lhNSZx\n", "\n", "--------------------------------------------------------\n", - "sandy nyc hurricanesandy \n", + "sandy new york city hurricane sandy \n", "\n", "\n", "Praying for NY and east coast... #hurricanesandy http://t.co/WqN2yetG\n", "\n", "--------------------------------------------------------\n", - "praying ny east coast hurricanesandy \n", - "\n", - "\n", - "«@DoubleHTown: There's really a SHARK in the flooded waters caused by #HurricaneSandy http://t.co/32M7CSsm»» ( see look @Hannahkazik )!!\n", - "\n", - "--------------------------------------------------------\n", - "really shark flooded waters caused hurricanesandy see look \n", + "praying new york east coast hurricane sandy \n", "\n", "\n", "That's when shit gets real when sharks are swimming in the street! #hurricanesandy http://t.co/isLX7Kjj\n", "\n", "--------------------------------------------------------\n", - "shit gets real sharks swimming street hurricanesandy \n", + "shit gets real sharks swimming street hurricane sandy \n", "\n", "\n", "Dedication ❤🇺🇸 #hurricaneSandy http://t.co/gpcsfDCl\n", "\n", "--------------------------------------------------------\n", - "dedication hurricanesandy \n", + "dedication hurricane sandy \n", "\n", "\n", "Atlantic City #hurricanesandy http://t.co/niIwfNvo\n", "\n", "--------------------------------------------------------\n", - "atlantic city hurricanesandy \n", + "atlantic city hurricane sandy \n", "\n", "\n", "Times Square underwater!!! #hurricanesandy http://t.co/O9gYQcYz\n", "\n", "--------------------------------------------------------\n", - "times square underwater hurricanesandy \n", + "times square underwater hurricane sandy \n", "\n", "\n", "NYC subways are flooded! Oh my gosh! That's not good! #notgood #nyc #hurricanesandy #damage #water #subway http://t.co/ySJgCxR0\n", "\n", "--------------------------------------------------------\n", - "nyc subways flooded oh gosh good notgood nyc hurricanesandy damage water subway \n", + "new york city subways flooded gosh good notgood new york city hurricane sandy damage water subway \n", "\n", "\n", "#repost this is CRAY! #hurricanesandy http://t.co/gkFn0jGS\n", "\n", "--------------------------------------------------------\n", - "repost cray hurricanesandy \n", + "repost cray hurricane sandy \n", "\n", "\n", "#HurricaneSandy tryna compete w/her sister #Katrina! #NYC #StatueOfLiberty...this storm aint got nothing on http://t.co/B3k2YsTM\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy tryna compete w sister katrina nyc statueofliberty storm aint got nothing \n", + "hurricane sandy tryna compete w sister katrina new york city statueofliberty storm aint got nothing \n", "\n", "\n", "😳😳😳😳😳😳😳 glad I decided to visit my mom in Atlanta this week #hurricanesandy you got it ✌ , everybody in the http://t.co/7zWRcUpg\n", "\n", "--------------------------------------------------------\n", - "glad decided visit mom atlanta week hurricanesandy got everybody \n", + "glad decided visit mom atlanta week hurricane sandy got everybody \n", "\n", "\n", "Still praying! #HurricaneSandy http://t.co/D8MrzLuo\n", "\n", "--------------------------------------------------------\n", - "still praying hurricanesandy \n", + "still praying hurricane sandy \n", "\n", "\n", "Sharks swimming through a neighborhood street in jersey. 🐋🐋 #hurricaneSandy #realitypictureOftheDay http://t.co/B1AeET5i\n", "\n", "--------------------------------------------------------\n", - "sharks swimming neighborhood street jersey hurricanesandy realitypictureoftheday \n", + "sharks swimming neighborhood street jersey hurricane sandy realitypictureoftheday \n", "\n", "\n", "#HurricaneSandy how can something so horrible look so nice http://t.co/fQy9c6no\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy something horrible look nice \n", + "hurricane sandy something horrible look nice \n", "\n", "\n", "This is crazy #repost #hurricanesandy http://t.co/dDSrPpFk\n", "\n", "--------------------------------------------------------\n", - "crazy repost hurricanesandy \n", + "crazy repost hurricane sandy \n", "\n", "\n", "There's just sharks swimmin through neighborhoods and shit in New Jersey. #HurricaneSandy http://t.co/fd9k5y45\n", "\n", "--------------------------------------------------------\n", - "sharks swimmin neighborhoods shit new jersey hurricanesandy \n", + "sharks swimmin neighborhoods shit new jersey hurricane sandy \n", "\n", "\n", "شوارع نيوجرسي الآن! \\nSharks in New Jersy streets \\n\\n\\n#إعصار_ساندي \\n\\n#HurricaneSandy \\n#Sandy http://t.co/N8ptDR04 http://t.co/mo7W1emg\n", "\n", "--------------------------------------------------------\n", - "شوارع نيوجرسي الآن sharks new jersy streets إعصار ساندي hurricanesandy sandy \n", + "شوارع نيوجرسي الآن sharks new jersy streets إعصارساندي hurricane sandy sandy \n", "\n", "\n", "My Godfather sent me this pic of the soldiers guarding the #TomboftheUnknowns during #HurricaneSandy Tuesday http://t.co/mfoQ56cU\n", "\n", "--------------------------------------------------------\n", - "godfather sent pic soldiers guarding tomboftheunknowns hurricanesandy tuesday \n", + "godfather sent pic soldiers guarding tomboftheunknowns hurricane sandy tuesday \n", "\n", "\n", "What my mom showed me #NYC #Ladyliberty #Repost #hurricane #HurricaneSandy #Scary http://t.co/XxzNhzn1\n", "\n", "--------------------------------------------------------\n", - "mom showed nyc ladyliberty repost hurricane hurricanesandy scary \n", + "mom showed new york city ladyliberty repost hurricane hurricane sandy scary \n", "\n", "\n", "Woah.... #HurricaneSandy http://t.co/j32Fza9z\n", "\n", "--------------------------------------------------------\n", - "woah hurricanesandy \n", + "woah hurricane sandy \n", "\n", "\n", "Horrible things happen to this world. #newyork #hurricanesandy #myfavouriteplace http://t.co/SAEsUugN\n", "\n", "--------------------------------------------------------\n", - "horrible things happen world newyork hurricanesandy myfavouriteplace \n", + "horrible things happen world new york hurricane sandy myfavouriteplace \n", "\n", "\n", "The world is gunna end cuhhh!!! #HurricaneSandy http://t.co/xt7MHt9y\n", "\n", "--------------------------------------------------------\n", - "world gunna end cuhhh hurricanesandy \n", + "world gunna end cuhhh hurricane sandy \n", "\n", "\n", "Praying for all of those going to be hit or going to be touched by #HurricaneSandy #mayGodBless you and your http://t.co/nuQINdBF\n", "\n", "--------------------------------------------------------\n", - "praying going hit going touched hurricanesandy maygodbless \n", + "praying going hit going touched hurricane sandy maygodbless \n", "\n", "\n", "#Damnthissucks ...A shark in the water in New York #HurricaneSandy http://t.co/nOIYMopH\n", "\n", "--------------------------------------------------------\n", - "damnthissucks shark water new york hurricanesandy \n", + "damnthissucks shark water new york hurricane sandy \n", "\n", "\n", "#NYC today #hurricanesandy http://t.co/MDz9BLBl\n", "\n", "--------------------------------------------------------\n", - "nyc today hurricanesandy \n", + "new york city today hurricane sandy \n", "\n", "\n", "Jesus this #hurricanesandy looks mean! hope everyone in #newyork is safe! http://t.co/vxNz1AzM\n", "\n", "--------------------------------------------------------\n", - "jesus hurricanesandy looks mean hope everyone newyork safe \n", + "jesus hurricane sandy looks mean hope everyone new york safe \n", "\n", "\n", "#hurricanesandy #pray Thoughts and prayers out to those who have been and will be affected by hurricane sand http://t.co/YKu2XdDx\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy pray thoughts prayers affected hurricane sand \n", + "hurricane sandy pray thoughts prayers affected hurricane sand \n", "\n", "\n", "mkldeleo's photo http://t.co/9CcM7Gga #hurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "mkldeleo photo hurricanesandy \n", + "mkldeleo photo hurricane sandy \n", "\n", "\n", "Incredible. #HurricaneSandy 🌊 http://t.co/rkJWe64l\n", "\n", "--------------------------------------------------------\n", - "incredible hurricanesandy \n", + "incredible hurricane sandy \n", "\n", "\n", "Crazy picture of how nature works! #hurricanesandy #prayers #nyc #storm http://t.co/doNT1097\n", "\n", "--------------------------------------------------------\n", - "crazy picture nature works hurricanesandy prayers nyc storm \n", + "crazy picture nature works hurricane sandy prayers new york city storm \n", "\n", "\n", "#shark #chillin #hurricanesandy http://t.co/XS97cYbM\n", "\n", "--------------------------------------------------------\n", - "shark chillin hurricanesandy \n", + "shark chillin hurricane sandy \n", "\n", "\n", "Sharks ? #HurricaneSandy http://t.co/pJBqtRdj\n", "\n", "--------------------------------------------------------\n", - "sharks hurricanesandy \n", + "sharks hurricane sandy \n", "\n", "\n", "#hurricanesandy i jus wanna kno whos in that boat, they need a beatin smh http://t.co/XI0VkIJm\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy jus wanna kno whos boat need beatin smh \n", + "hurricane sandy jus wanna kno whos boat need beatin \n", "\n", "\n", "Holy shit #hurricanesandy #staysafe #scary http://t.co/prL4S658\n", "\n", "--------------------------------------------------------\n", - "holy shit hurricanesandy staysafe scary \n", + "holy shit hurricane sandy staysafe scary \n", "\n", "\n", "True Heros! MT @jeff_emt: We forget tomb unknown soldier is guard 24/7 365 ! #hurricanesandy #frankenstorm http://t.co/qZZtq9Et\n", "\n", "--------------------------------------------------------\n", - "true heros forget tomb unknown soldier guard 24 7 365 hurricanesandy frankenstorm \n", + "true heros \n", "\n", "\n", "Holy shit street sharks?! Thanks #hurricanesandy #rad I prefer dolphins though.. http://t.co/699lBiBA\n", "\n", "--------------------------------------------------------\n", - "holy shit street sharks thanks hurricanesandy rad prefer dolphins though \n", + "holy shit street sharks thanks hurricane sandy rad prefer dolphins though \n", "\n", "\n", "Feel bad for the neighbors who gotta deal with this guy lol #HurricaneSandy http://t.co/yKHAL6O4\n", "\n", "--------------------------------------------------------\n", - "feel bad neighbors gotta deal guy lol hurricanesandy \n", + "feel bad neighbors gotta deal guy hurricane sandy \n", "\n", "\n", "Reposting. Wishing everyone to stay safe on the east. #hurricanesandy #statueofliberty http://t.co/1b45yX8Q\n", "\n", "--------------------------------------------------------\n", - "reposting wishing everyone stay safe east hurricanesandy statueofliberty \n", + "reposting wishing everyone stay safe east hurricane sandy statueofliberty \n", "\n", "\n", "Jeepers...... #NYC #HurricaneSandy http://t.co/K5AAiSka\n", "\n", "--------------------------------------------------------\n", - "jeepers nyc hurricanesandy \n", + "jeepers new york city hurricane sandy \n", "\n", "\n", "This is New York right now...wtf\\nI'm praying for yall #HurricaneSandy #Crazy http://t.co/QYYCqxWt\n", "\n", "--------------------------------------------------------\n", - "new york right wtf praying yall hurricanesandy crazy \n", + "new york right praying yall hurricane sandy crazy \n", "\n", "\n", "#shark #hurricanesandy2012 #hurricanesandy #twitter when I saw this on twitter I had to repost it! Crazyyyy http://t.co/cPoviL7w\n", "\n", "--------------------------------------------------------\n", - "shark hurricanesandy2012 hurricanesandy twitter saw twitter repost crazyyyy \n", + "shark hurricane sandy2012 hurricane sandy twitter saw twitter repost crazyyyy \n", "\n", "\n", "Shark Week on the roads thanks to #HurricaneSandy ? http://t.co/NctKKiU3\n", "\n", "--------------------------------------------------------\n", - "shark week roads thanks hurricanesandy \n", + "shark week roads thanks hurricane sandy \n", "\n", "\n", "Beautiful picture, bad storm #hurricanesandy http://t.co/M98bSp7r\n", "\n", "--------------------------------------------------------\n", - "beautiful picture bad storm hurricanesandy \n", - "\n", - "\n", - "Wait. “@NYLA247: Sharks roaming around #newjersey streets #sandy #hurricanesandy http://t.co/NrFVW75y”\n", - "\n", - "--------------------------------------------------------\n", - "wait \n", + "beautiful picture bad storm hurricane sandy \n", "\n", "\n", "#HurricaneSandy #6ABCSANDY #StatueOfLiberty @ New York City, NY http://t.co/QVCrFxvH\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy 6abcsandy statueofliberty new york city ny \n", + "hurricane sandy statueofliberty new york city new york \n", "\n", "\n", "Is that a gator?? RT @PSwaze84: The most endearing pic of #HURRICANESANDY thus far http://t.co/0urbXywP\n", @@ -35494,361 +31590,307 @@ "#HurricaneSandy! Jesusss http://t.co/LHYSbMhD\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy jesusss \n", + "hurricane sandy jesusss \n", "\n", "\n", "Independence day in real life. Sending my thoughts and prayer out to the ppl in east coast. #hurricanesandy http://t.co/u5N3uKz0\n", "\n", "--------------------------------------------------------\n", - "independence day real life sending thoughts prayer ppl east coast hurricanesandy \n", + "independence day real life sending thoughts prayer ppl east coast hurricane sandy \n", "\n", "\n", "Looks like the day after tomorrow #hurricanesandy http://t.co/3gMcWCmv\n", "\n", "--------------------------------------------------------\n", - "looks like day tomorrow hurricanesandy \n", + "looks like day tomorrow hurricane sandy \n", "\n", "\n", "Nature So Powerful. Yet So Beautiful! #hurricaneSandy #NewYork #Bautiful #MyPrayersToThemTho #Harmful #Power http://t.co/2IatWpeM\n", "\n", "--------------------------------------------------------\n", - "nature powerful yet beautiful hurricanesandy newyork bautiful myprayerstothemtho harmful power \n", + "nature powerful yet beautiful hurricane sandy new york bautiful myprayerstothemtho harmful power \n", "\n", "\n", "#hurricanesandy and I just complained I was cold #sorry stay safe, good luck X http://t.co/nPZ4lnLC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy complained cold sorry stay safe good luck x \n", + "hurricane sandy complained cold sorry stay safe good luck x \n", "\n", "\n", "Baddass thunderstorm over Statue of Liberty. #HurricaneSandy #violentnature #beauty what a #paradox #instap http://t.co/yPlwikOS\n", "\n", "--------------------------------------------------------\n", - "baddass thunderstorm statue liberty hurricanesandy violentnature beauty paradox instap \n", + "baddass thunderstorm statue liberty hurricane sandy violentnature beauty paradox instap \n", "\n", "\n", "Sharks swimming in my hood! FAMILY BE SAFE #HURRICANESANDY #SHARKS #NEWJERSEY http://t.co/TJhn7MmT\n", "\n", "--------------------------------------------------------\n", - "sharks swimming hood family safe hurricanesandy sharks newjersey \n", + "sharks swimming hood family safe hurricane sandy sharks newjersey \n", "\n", "\n", "Kicking off in New York #NYC #HurricaneSandy http://t.co/jym8Orwr\n", "\n", "--------------------------------------------------------\n", - "kicking new york nyc hurricanesandy \n", - "\n", - "\n", - "#hurricanesandy #newyork #statueofliberty http://t.co/Su4hJzuM\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy newyork statueofliberty \n", - "\n", - "\n", - "Woah #HurricaneSandy http://t.co/n9CVijd8\n", - "\n", - "--------------------------------------------------------\n", - "woah hurricanesandy \n", + "kicking new york new york city hurricane sandy \n", "\n", "\n", "#hurricane# sandy#nyc http://t.co/FUO8BO2A\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", - "#hurricanesandy #crazy http://t.co/fhEYLwLw\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy crazy \n", + "hurricane sandynyc \n", "\n", "\n", "Okay, this is probably the most #Amazing picture of #HurricaneSandy I've seen yet. #Wow #Awesome http://t.co/aYGMCNHr\n", "\n", "--------------------------------------------------------\n", - "okay probably amazing picture hurricanesandy seen yet wow awesome \n", - "\n", - "\n", - "New York #hurricanesandy http://t.co/VkZ58kkr\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricanesandy \n", - "\n", - "\n", - "#hurricaneSandy #shark http://t.co/EAnK80Um\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy shark \n", + "okay probably amazing picture hurricane sandy seen yet awesome \n", "\n", "\n", "Crazy picture. It'd look like a picture from a movie. #HurricaneSandy http://t.co/d96VLEta\n", "\n", "--------------------------------------------------------\n", - "crazy picture look like picture movie hurricanesandy \n", + "crazy picture look like picture movie hurricane sandy \n", "\n", "\n", "Crazy shot of NYC! #hurricanesandy http://t.co/6QyZTPQr\n", "\n", "--------------------------------------------------------\n", - "crazy shot nyc hurricanesandy \n", + "crazy shot new york city hurricane sandy \n", "\n", "\n", "#hurricanesandy was just like \"fade into darkness, bitches\" http://t.co/0bxAhMeT\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy like fade darkness bitches \n", + "hurricane sandy like fade darkness bitches \n", "\n", "\n", "#NewYork #HurricaneSandy This Shit Is Trippy! http://t.co/5IP1ybB4\n", "\n", "--------------------------------------------------------\n", - "newyork hurricanesandy shit trippy \n", + "new york hurricane sandy shit trippy \n", "\n", "\n", "Shit just got REAL! #HurricaneSandy #NYC #StatueOfLiberty #NoFilter http://t.co/GLIHNTrf\n", "\n", "--------------------------------------------------------\n", - "shit got real hurricanesandy nyc statueofliberty nofilter \n", + "shit got real hurricane sandy new york city statueofliberty nofilter \n", "\n", "\n", "Out of everything I'm seeing about #hurricanesandy this is what I respect.. People are making fun of it but http://t.co/4LTNK756\n", "\n", "--------------------------------------------------------\n", - "everything seeing hurricanesandy respect people making fun \n", + "everything seeing hurricane sandy respect people making fun \n", "\n", "\n", "More sharks in #newjersey #sandy #hurricanesandy from http://t.co/M57TywVE http://t.co/MdlP2E1q\n", "\n", "--------------------------------------------------------\n", - "sharks newjersey sandy hurricanesandy \n", + "sharks newjersey sandy hurricane sandy \n", "\n", "\n", "#dope #hurricanesandy http://t.co/qZIqkZHy\n", "\n", "--------------------------------------------------------\n", - "dope hurricanesandy \n", + "dope hurricane sandy \n", "\n", "\n", "#NewYork #HurricaneSandy #MotherNature #BeautifulYetDangerous http://t.co/j7dfZOsZ\n", "\n", "--------------------------------------------------------\n", - "newyork hurricanesandy mothernature beautifulyetdangerous \n", + "new york hurricane sandy mothernature beautifulyetdangerous \n", "\n", "\n", "https://t.co/atyJhXsM damn it... shark in New Jersey ... #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "damn shark new jersey hurricanesandy \n", + "damn shark new jersey hurricane sandy \n", "\n", "\n", "Meanwhile on #Manhattan's 42nd st... #Subway #Sandy #HurricaneSandy #diver http://t.co/6rv8Jnab\n", "\n", "--------------------------------------------------------\n", - "meanwhile manhattan 42nd st subway sandy hurricanesandy diver \n", + "meanwhile manhattan s2nd st subway sandy hurricane sandy diver \n", "\n", "\n", "#hurricanesandy #statuteofliberty #hightides #highwinds http://t.co/XCIbZDf1\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statuteofliberty hightides highwinds \n", + "hurricane sandy statuteofliberty hightides highwinds \n", "\n", "\n", "so much respect for these guys ❤ #tomboftheunknownsoldier #DC #guarding #24/7 #hurricanesandy http://t.co/B8QtuwFd\n", "\n", "--------------------------------------------------------\n", - "much respect guys tomboftheunknownsoldier dc guarding 24 7 hurricanesandy \n", + "much respect guys tomboftheunknown soldier dc guarding4 hurricane sandy \n", "\n", "\n", "A new Jersey street...sharks swimming around like its the ocean....smh #hurricanesandy http://t.co/4v9u4mF2\n", "\n", "--------------------------------------------------------\n", - "new jersey street sharks swimming around like ocean smh hurricanesandy \n", + "new jersey street sharks swimming around like ocean hurricane sandy \n", "\n", "\n", "😥😱😫😲😵🌀 #hurricanesandy2012 #hurricanesandy #prayforNY #NYC http://t.co/Hwnil53w\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy2012 hurricanesandy prayforny nyc \n", - "\n", - "\n", - "😳 #hurricanesandy http://t.co/Rmhyyv9l\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "hurricane sandy2012 hurricane sandy prayforny new york city \n", "\n", "\n", "#HurricaneSandy #beautiful http://t.co/mwN8dnw2\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy beautiful \n", + "hurricane sandy beautiful \n", "\n", "\n", "Shit looks fake almost #hurricanesandy sandidaboss http://t.co/rv3zTGf6\n", "\n", "--------------------------------------------------------\n", - "shit looks fake almost hurricanesandy sandidaboss \n", + "shit looks fake almost hurricane sandy sandidaboss \n", "\n", "\n", "This is all sorts if crazy #hurricaneSandy http://t.co/4tjYoP67\n", "\n", "--------------------------------------------------------\n", - "sorts crazy hurricanesandy \n", - "\n", - "\n", - "Woah... #hurricanesandy http://t.co/cRpLEeGp\n", - "\n", - "--------------------------------------------------------\n", - "woah hurricanesandy \n", + "sorts crazy hurricane sandy \n", "\n", "\n", "#hurricanesandy needs to chill out!!!!! It was never that serious. http://t.co/ePwnVZqL\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy needs chill never serious \n", + "hurricane sandy needs chill never serious \n", "\n", "\n", "Here comes #HurricaneSandy http://t.co/ivP8SL1o\n", "\n", "--------------------------------------------------------\n", - "comes hurricanesandy \n", + "comes hurricane sandy \n", "\n", "\n", "#HurricaneSandy no filters needed #nature #beauty #powerful #Cyclone #NewYork http://t.co/ZZ1QRvn3\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy filters needed nature beauty powerful cyclone newyork \n", + "hurricane sandy filters needed nature beauty powerful cyclone new york \n", "\n", "\n", "“We don’t have a dog to protect our front yard. We have a SHARK!” http://t.co/KU1ryFYx #HurricaneSandy #NotMyPic\n", "\n", "--------------------------------------------------------\n", - "dog protect front yard shark hurricanesandy notmypic \n", + "dog protect front yard shark hurricane sandy notmypic \n", "\n", "\n", "the day after tomorrow is really happening #hurricanesandy http://t.co/wtnjuet7\n", "\n", "--------------------------------------------------------\n", - "day tomorrow really happening hurricanesandy \n", + "day tomorrow really happening hurricane sandy \n", "\n", "\n", "Good luck to the New Yorkers! #hurricanesandy #hurricane #storm #hanginthere #brave http://t.co/scM14chR\n", "\n", "--------------------------------------------------------\n", - "good luck new yorkers hurricanesandy hurricane storm hanginthere brave \n", + "good luck new yorkers hurricane sandy hurricane storm hanginthere brave \n", "\n", "\n", "Oh naw.....#hurricanesandy #sharktale #findingnemo http://t.co/Doaeuti3\n", "\n", "--------------------------------------------------------\n", - "oh naw hurricanesandy sharktale findingnemo \n", + "naw hurricane sandy sharktale findingnemo \n", "\n", "\n", "#Stolenpic #hurricaneSandy over #NewYork ...#amazing http://t.co/7PFAuXXP\n", "\n", "--------------------------------------------------------\n", - "stolenpic hurricanesandy newyork amazing \n", - "\n", - "\n", - "epic! #hurricanesandy http://t.co/KUC65mur\n", - "\n", - "--------------------------------------------------------\n", - "epic hurricanesandy \n", + "stolenpic hurricane sandy new york amazing \n", "\n", "\n", "well that's not good #hurricanesandy http://t.co/FBfvDeA3\n", "\n", "--------------------------------------------------------\n", - "well good hurricanesandy \n", + "well good hurricane sandy \n", "\n", "\n", "Honor, Courage, Commitment. #TombOfTheUnknowns #HurricaneSandy http://t.co/6yijwD9O\n", "\n", "--------------------------------------------------------\n", - "honor courage commitment tomboftheunknowns hurricanesandy \n", + "honor courage commitment tomboftheunknowns hurricane sandy \n", "\n", "\n", "What would you do if a shark showed up? #hurricanesandy #shark #disaster #regram cc: @Officialcoolkid http://t.co/boymezkK\n", "\n", "--------------------------------------------------------\n", - "would shark showed hurricanesandy shark disaster regram cc \n", + "would shark showed hurricane sandy shark disaster cc \n", "\n", "\n", "Live shot from NY. Praying for Maddie's family! #StatueOfLiberty #hurricanesandy http://t.co/35YMYwmf\n", "\n", "--------------------------------------------------------\n", - "live shot ny praying maddie family statueofliberty hurricanesandy \n", + "live shot new york praying maddie family statueofliberty hurricane sandy \n", "\n", "\n", "Shit is so real in NJ #shark #hurricanesandy #wow saw this on fb http://t.co/XOMuw2Se\n", "\n", "--------------------------------------------------------\n", - "shit real nj shark hurricanesandy wow saw fb \n", + "shit real new jersey shark hurricane sandy saw fb \n", "\n", "\n", "“@J1970K “@vin_nolan Ok this is fucked up a shark in someone's yard in jersey? #HurricaneSandy http://t.co/PqxLYLmD”” that's weird\n", "\n", "--------------------------------------------------------\n", - "ok fucked shark someone yard jersey hurricanesandy weird \n", + "ok fucked shark someone yard jersey hurricane sandy weird \n", "\n", "\n", "#StatueOfLiberty #HurricaneSandy #98MPHStorm #CaliDontKnowAnythingAboutStorm #NYC #NOSCHOOL!!! #LetsHopeILiv http://t.co/nvluTaHq\n", "\n", "--------------------------------------------------------\n", - "statueofliberty hurricanesandy 98mphstorm calidontknowanythingaboutstorm nyc noschool letshopeiliv \n", + "statueofliberty hurricane sandy8mphstorm calidontknowanythingaboutstorm new york city noschool letshopeiliv \n", "\n", "\n", "Re-post! #HurricaneSandy #NYC #Frankinstorm http://t.co/cWddwJw8\n", "\n", "--------------------------------------------------------\n", - "post hurricanesandy nyc frankinstorm \n", + "post hurricane sandy new york city frankinstorm \n", "\n", "\n", "#storm #newyork #hurricanesandy Scary but beautiful http://t.co/LMhU4W76\n", "\n", "--------------------------------------------------------\n", - "storm newyork hurricanesandy scary beautiful \n", - "\n", - "\n", - "Whoa. RT @jenbshoemaker: wow. JUST WOW. #HURRICANESANDY Shits gettin real!! http://t.co/dLv5dNI7\n", - "\n", - "--------------------------------------------------------\n", - "whoa \n", + "storm new york hurricane sandy scary beautiful \n", "\n", "\n", "Picture of #HurricaneSandy \\nLord I pray for those on the East Coast. May you hold them in your arms and keep http://t.co/5f0fMrej\n", "\n", "--------------------------------------------------------\n", - "picture hurricanesandy lord pray east coast may hold arms keep \n", + "picture hurricane sandy lord pray east coast may hold arms keep \n", "\n", "\n", "Y'all be safe up there. My brother just sent me this pic of #hurricanesandy and it doesn't look pretty http://t.co/ka781Rwz\n", "\n", "--------------------------------------------------------\n", - "safe brother sent pic hurricanesandy look pretty \n", + "safe brother sent pic hurricane sandy look pretty \n", "\n", "\n", "Ok now this shit looks scary . #hurricane#sandy#newyork#scary#shit#liberty http://t.co/Cyc0JTwr\n", "\n", "--------------------------------------------------------\n", - "ok shit looks scary hurricane sandy newyork scary shit liberty \n", + "ok shit looks scary hurricane sandynew yorkscaryshitliberty \n", "\n", "\n", "Crazy pic.\\n#hurricanesandy #hurricane #NY #statueofliberty #statue #nyc #dope #crazy #US http://t.co/nlAo1z0B\n", "\n", "--------------------------------------------------------\n", - "crazy pic hurricanesandy hurricane ny statueofliberty statue nyc dope crazy us \n", + "crazy pic hurricane sandy hurricane new york statueofliberty statue new york city dope crazy us \n", "\n", "\n", "@TristonBell1 «@itsWillyFerrell An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/26fcvAkB CRAZY\n", "\n", "--------------------------------------------------------\n", - "insane picture taken today hurricanesandy approaching nyc crazy \n", + "insane picture taken today hurricane sandy approaching new york city crazy \n", "\n", "\n", "sharks in #AlanticCity #hurricanesandy http://t.co/NiwZD770\n", "\n", "--------------------------------------------------------\n", - "sharks alanticcity hurricanesandy \n", + "sharks alanticcity hurricane sandy \n", "\n", "\n", "Insane RT @itsWillyFerrell: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/Ay1L3Bud\n", @@ -35860,25 +31902,25 @@ "#hurricanesandy #newyork #madpersoninboat #lovelydayout http://t.co/NwRpxhZC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork madpersoninboat lovelydayout \n", + "hurricane sandy new york madpersoninboat lovelydayout \n", "\n", "\n", "These soldiers protected the Monument of the Unknown Soldier\" through #hurricanesandy despite risks to their http://t.co/Ac1tAfZF\n", "\n", "--------------------------------------------------------\n", - "soldiers protected monument unknown soldier hurricanesandy despite risks \n", + "soldiers protected monument unknown soldier hurricane sandy despite risks \n", "\n", "\n", "Wow crazy #hurricanesandy #newyork #statueofliberty http://t.co/n3LaJeSH\n", "\n", "--------------------------------------------------------\n", - "wow crazy hurricanesandy newyork statueofliberty \n", + "crazy hurricane sandy new york statueofliberty \n", "\n", "\n", "Shiiiiiiit... #HurricaneSandy http://t.co/W0E8dgnZ\n", "\n", "--------------------------------------------------------\n", - "shiiiiiiit hurricanesandy \n", + "shiiiiiiit hurricane sandy \n", "\n", "\n", "Yeah, it's pretty bad @gamercore RT @a_vargas 😳 #hurricanesandy that shit cray http://t.co/K6Ou5lXl\n", @@ -35887,52 +31929,34 @@ "yeah pretty bad \n", "\n", "\n", - "Thanks #hurricanesandy now we have sharks swimming in our front yards. http://t.co/ZM64XZbK\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "Thanks #hurricanesandy now we have sharks swimming in our front yards. http://t.co/ZM64XZbK\n", "\n", "--------------------------------------------------------\n", - "thanks hurricanesandy sharks swimming front yards \n", + "thanks hurricane sandy sharks swimming front yards \n", "\n", "\n", "#TimeSquare#Sandy http://t.co/delDK0fI\n", "\n", "--------------------------------------------------------\n", - "timesquare sandy \n", + "timesquaresandy \n", "\n", "\n", "Seriously one of the sweetest pictures I've ever seen. #HurricaneSandy #hurricane http://t.co/D87Cz4gQ\n", "\n", "--------------------------------------------------------\n", - "seriously one sweetest pictures ever seen hurricanesandy hurricane \n", + "seriously one sweetest pictures ever seen hurricane sandy hurricane \n", "\n", "\n", "Repost !!! NYC as of Today !!! #HurricaneSandy #GodBless http://t.co/H8s3WZWM\n", "\n", "--------------------------------------------------------\n", - "repost nyc today hurricanesandy godbless \n", - "\n", - "\n", - "Crazy! #HurricaneSandy http://t.co/VfA3fqRI\n", - "\n", - "--------------------------------------------------------\n", - "crazy hurricanesandy \n", - "\n", - "\n", - "#HurricaneSandy #Praying http://t.co/IFfWGEjN\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy praying \n", + "repost new york city today hurricane sandy godbless \n", "\n", "\n", "Wow. This is photo I found searching #HurricaneSandy and I am totally speechless. Prayers up to those that a http://t.co/6RYziPEX\n", "\n", "--------------------------------------------------------\n", - "wow photo found searching hurricanesandy totally speechless prayers \n", + "photo found searching hurricane sandy totally speechless prayers \n", "\n", "\n", "holy!!! RT @DJCharles91: Shit just got real in NYC #HurricaneSandy http://t.co/jVkEqJ8u\n", @@ -35944,31 +31968,31 @@ "Just to put into perspective this is literally in view from my neighborhood #hurricanesandy #eatadick #ET #p http://t.co/yvNrYweb\n", "\n", "--------------------------------------------------------\n", - "put perspective literally view neighborhood hurricanesandy eatadick et p \n", + "put perspective literally view neighborhood hurricane sandy eatadick p \n", "\n", "\n", "This was taken #3hrs ago #godbless all the #eastcoast #people #hurricanesandy #real #life #shit http://t.co/ZkCP4ij4\n", "\n", "--------------------------------------------------------\n", - "taken 3hrs ago godbless eastcoast people hurricanesandy real life shit \n", + "taken ago godbless eastcoast people hurricane sandy real life shit \n", "\n", "\n", "#sharks #hurricanesandy #newjersey Sharks swimming up the roads next to cars?!?🐟🚗🐋🚙 http://t.co/Cp3ssV0Y\n", "\n", "--------------------------------------------------------\n", - "sharks hurricanesandy newjersey sharks swimming roads next cars \n", + "sharks hurricane sandy newjersey sharks swimming roads next cars \n", "\n", "\n", "What outside is looking like #nofilter #hurricaneSandy http://t.co/sr9kEsln\n", "\n", "--------------------------------------------------------\n", - "outside looking like nofilter hurricanesandy \n", + "outside looking like nofilter hurricane sandy \n", "\n", "\n", "Now that's dedication. #usarmy #tomboftheunknowns #sandy #hurricanesandy http://t.co/WDeAF8Gx\n", "\n", "--------------------------------------------------------\n", - "dedication usarmy tomboftheunknowns sandy hurricanesandy \n", + "dedication usarmy tomboftheunknowns sandy hurricane sandy \n", "\n", "\n", "Looks like aliens are approachinRT @itsWillyFerrell: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/kQYArsfx\n", @@ -35977,46 +32001,34 @@ "looks like aliens approachin \n", "\n", "\n", - "“@VII_XV_MMXI WOW! “@Lucky20747: #repost #NewYork #HurricaneSandy http://t.co/9lb3Pq6c””\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "This is why we are America. #dedication #hurricanesandy http://t.co/oBnNVXuB\n", "\n", "--------------------------------------------------------\n", - "america dedication hurricanesandy \n", + "america dedication hurricane sandy \n", "\n", "\n", "praying, praying, praying #Godwillprovide #hurricaneSandy #Godisable http://t.co/MNNqybvg\n", "\n", "--------------------------------------------------------\n", - "praying praying praying godwillprovide hurricanesandy godisable \n", + "praying praying praying godwillprovide hurricane sandy godisable \n", "\n", "\n", "just a crazy thought... #hurricanesandy http://t.co/uGoa7itw\n", "\n", "--------------------------------------------------------\n", - "crazy thought hurricanesandy \n", + "crazy thought hurricane sandy \n", "\n", "\n", "OOMMGG!!! #HurricaneSandy “@Anjeebaby: brandonascott1's photo http://t.co/h3VclOXS <<<<<WOW”\n", "\n", "--------------------------------------------------------\n", - "oommgg hurricanesandy \n", + "oommgg hurricane sandy \n", "\n", "\n", "Lol #repost shit just got real #hurricanesandy http://t.co/Ebh8dQLE\n", "\n", "--------------------------------------------------------\n", - "lol repost shit got real hurricanesandy \n", - "\n", - "\n", - "#hurricanesandy #New York http://t.co/MYQqaHqU\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy new york \n", + "repost shit got real hurricane sandy \n", "\n", "\n", "AW HELL NAW! #NOTINTHESOUTH! RT @kissmyasshleey: #hurricaneSandy just got real http://t.co/dCES86H3\n", @@ -36028,169 +32040,157 @@ "Sweet ! Isto além de arrepiaste é lindoo ! #hurricane#sandy#EUA http://t.co/AZIldz8p\n", "\n", "--------------------------------------------------------\n", - "sweet isto além arrepiaste é lindoo hurricane sandy eua \n", + "sweet além arrepiaste lindoo hurricane sandyeua \n", "\n", "\n", "A real picture someone took today of #hurricanesandy from Brooklyn.... http://t.co/D1vwfu24\n", "\n", "--------------------------------------------------------\n", - "real picture someone took today hurricanesandy brooklyn \n", + "real picture someone took today hurricane sandy brooklyn \n", "\n", "\n", "#help #HurricaneSandy I should have bought floaties http://t.co/dFJ1z9Ge\n", "\n", "--------------------------------------------------------\n", - "help hurricanesandy bought floaties \n", + "help hurricane sandy bought floaties \n", "\n", "\n", "#HurricaneSandy versus #LadyLiberty http://t.co/vHKdIRsK\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy versus ladyliberty \n", - "\n", - "\n", - "Damn RT @ChrisHarris34: \"@DaRealNiecey: \"#HurricaneSandy http://t.co/WffH89IS\"\" - Holy shit\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", + "hurricane sandy versus ladyliberty \n", "\n", "\n", "That's so crazy! #HurricaneSandy #NY http://t.co/zTPSYYZZ\n", "\n", "--------------------------------------------------------\n", - "crazy hurricanesandy ny \n", + "crazy hurricane sandy new york \n", "\n", "\n", "This is Dedication! #Proud #HurricaneSandy #TombOfTheUnknownSoldiers http://t.co/gAuvMzfM\n", "\n", "--------------------------------------------------------\n", - "dedication proud hurricanesandy tomboftheunknownsoldiers \n", + "dedication proud hurricane sandy tomboftheunknown soldiers \n", "\n", "\n", "#hurricanesandy on her way to #NYC. http://t.co/yMtcHXI7\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy way nyc \n", + "hurricane sandy way new york city \n", "\n", "\n", "Crazy photo of New York #hurricanesandy http://t.co/lW1HBqwZ\n", "\n", "--------------------------------------------------------\n", - "crazy photo new york hurricanesandy \n", + "crazy photo new york hurricane sandy \n", "\n", "\n", "Nature is both scary and beautiful #hurricanesandy #newyork http://t.co/6wFFjA1f\n", "\n", "--------------------------------------------------------\n", - "nature scary beautiful hurricanesandy newyork \n", + "nature scary beautiful hurricane sandy new york \n", "\n", "\n", "I hope that everyone on the east coast is okay. You're in my prayers 🙏 #HurricaneSandy http://t.co/eVRUQXQU\n", "\n", "--------------------------------------------------------\n", - "hope everyone east coast okay prayers hurricanesandy \n", + "hope everyone east coast okay prayers hurricane sandy \n", "\n", "\n", "Ok maybe were fucked after all #NYC #hurricanesandy http://t.co/DJzYHGze\n", "\n", "--------------------------------------------------------\n", - "ok maybe fucked nyc hurricanesandy \n", + "ok maybe fucked new york city hurricane sandy \n", "\n", "\n", "Pretty sick shot of Sandy and Liberty. Like something out of a movie. #hurricanesandy http://t.co/KORV0h1H\n", "\n", "--------------------------------------------------------\n", - "pretty sick shot sandy liberty like something movie hurricanesandy \n", + "pretty sick shot sandy liberty like something movie hurricane sandy \n", "\n", "\n", "Jersey is like a scene from Jaws #HurricaneSandy #NJ #NewJersey http://t.co/w5CxYGKx\n", "\n", "--------------------------------------------------------\n", - "jersey like scene jaws hurricanesandy nj newjersey \n", + "jersey like scene jaws hurricane sandy new jersey newjersey \n", "\n", "\n", "This shit aint no joke! We bout to get this work! #StatueofLiberty #NYC #HurricaneSandy http://t.co/nal1xGdx\n", "\n", "--------------------------------------------------------\n", - "shit aint joke bout get work statueofliberty nyc hurricanesandy \n", + "shit aint joke bout get work statueofliberty new york city hurricane sandy \n", "\n", "\n", "Sandy ain't bullshiting all my east coast be safe out there #hurricanesandy http://t.co/qAAcithE\n", "\n", "--------------------------------------------------------\n", - "sandy bullshiting east coast safe hurricanesandy \n", + "sandy bullshiting east coast safe hurricane sandy \n", "\n", "\n", "SHITS GETTIN REAL #HurricaneSandy http://t.co/uENPGCpB\n", "\n", "--------------------------------------------------------\n", - "shits gettin real hurricanesandy \n", + "shits gettin real hurricane sandy \n", "\n", "\n", "This picture shocks me #gottabefake #crazythough #hurricanesandy http://t.co/HhF93seS\n", "\n", "--------------------------------------------------------\n", - "picture shocks gottabefake crazythough hurricanesandy \n", + "picture shocks gottabefake crazythough hurricane sandy \n", "\n", "\n", "Damn ya'll about to get it /“@Yes_Its_WayneG Not a Good look yall it's about to goo down #NYC #hurricanesandy http://t.co/MrAFXxZD”\n", "\n", "--------------------------------------------------------\n", - "damn get good look yall goo nyc hurricanesandy \n", + "damn get good look yall goo new york city hurricane sandy \n", "\n", "\n", "It's real folks #hurricanesandy #sandy http://t.co/2DM71y5i\n", "\n", "--------------------------------------------------------\n", - "real folks hurricanesandy sandy \n", + "real folks hurricane sandy sandy \n", "\n", "\n", "#hurricanesandy so powerful yet so beautiful http://t.co/iNeyO10F\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy powerful yet beautiful \n", + "hurricane sandy powerful yet beautiful \n", "\n", "\n", "https://t.co/8hVL7gd1 Don't no if that's Photoshopped but if its not what the hell! #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "photoshopped hell hurricanesandy \n", + "photoshopped hell hurricane sandy \n", "\n", "\n", "#itsreal#sandy http://t.co/caDTmyan\n", "\n", "--------------------------------------------------------\n", - "itsreal sandy \n", + "itsrealsandy \n", "\n", "\n", "Street Sharks!!! Sickkk!! 😍🌀🌊 #hurricanesandy http://t.co/iajNlw2j\n", "\n", "--------------------------------------------------------\n", - "street sharks sickkk hurricanesandy \n", + "street sharks sickkk hurricane sandy \n", "\n", "\n", "Wow. I would hate to be in NYNY right now! #HurricaneSandy ☔⚡🌀☁ http://t.co/KwUn6dSb\n", "\n", "--------------------------------------------------------\n", - "wow would hate nyny right hurricanesandy \n", + "would hate nyny right hurricane sandy \n", "\n", "\n", "This morning!!! #hurricanesandy #beauty #powerful #nature 🌊☁☔🗽 http://t.co/WHOldAAX\n", "\n", "--------------------------------------------------------\n", - "morning hurricanesandy beauty powerful nature \n", + "morning hurricane sandy beauty powerful nature \n", "\n", "\n", "Thinking of all those affected by #hurricaneSandy you and your families remain in our prayers! http://t.co/NpupFKOK\n", "\n", "--------------------------------------------------------\n", - "thinking affected hurricanesandy families remain prayers \n", - "\n", - "\n", - "OMFG! #hurricanesandy http://t.co/JLdzQIb9\n", - "\n", - "--------------------------------------------------------\n", - "omfg hurricanesandy \n", + "thinking affected hurricane sandy families remain prayers \n", "\n", "\n", "“@e_BEHR25: So crazy scary. #Frankenstorm #HurricaneSandy http://t.co/C0gk73F3” dear boat, what are you thinking?!\n", @@ -36202,241 +32202,223 @@ "#hurricanesandy #sandy http://t.co/fVQ0wMiD Who is faster mmhh ? 😄 Hope no one is hurt even\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sandy faster mmhh hope one hurt even \n", + "hurricane sandy sandy faster mmhh hope one hurt even \n", "\n", "\n", "#wow #amazing #pic of #hurricanesandy #storm in #nyc. #statueofliberty #rain #winds #weather #hurricane #cra http://t.co/Jq9btLxo\n", "\n", "--------------------------------------------------------\n", - "wow amazing pic hurricanesandy storm nyc statueofliberty rain winds weather hurricane cra \n", + "amazing pic hurricane sandy storm new york city statueofliberty rain winds weather hurricane cra \n", "\n", "\n", "And not a single fuck was given that day. #HurricaneSandy http://t.co/gVs7jygk\n", "\n", "--------------------------------------------------------\n", - "single fuck given day hurricanesandy \n", + "single fuck given day hurricane sandy \n", "\n", "\n", "God please watch over and bless all friends, family and everyone in New York City #hurricanesandy #sandy http://t.co/CVXZ6NhE\n", "\n", "--------------------------------------------------------\n", - "god please watch bless friends family everyone new york city hurricanesandy sandy \n", + "god please watch bless friends family everyone new york city hurricane sandy sandy \n", "\n", "\n", "If this is a real photo...that's sum scary shit. #prayforNYC #hurricanesandy #stormwatch #staysafe #toronto http://t.co/H8yF7ndY\n", "\n", "--------------------------------------------------------\n", - "real photo sum scary shit prayfornyc hurricanesandy stormwatch staysafe toronto \n", + "real photo sum scary shit prayfornyc hurricane sandy stormwatch staysafe toronto \n", "\n", "\n", "#HurricaneSandy #Update #ThatsWild 😱 http://t.co/mHmtgX1x\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy update thatswild \n", + "hurricane sandy update thatswild \n", "\n", "\n", "#HurricaneSandy #NewYork #Praying http://t.co/F59q0QnP\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork praying \n", + "hurricane sandy new york praying \n", "\n", "\n", "Not a Good look yall it's about to goo down #NYC #hurricanesandy http://t.co/VpLnEtMd\n", "\n", "--------------------------------------------------------\n", - "good look yall goo nyc hurricanesandy \n", - "\n", - "\n", - "New York!! #hurricanesandy http://t.co/1OBrpLQW\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricanesandy \n", + "good look yall goo new york city hurricane sandy \n", "\n", "\n", "Seems legit!! #hurricanesandy #america #usa #staysafe #funnypics #fake #humour http://t.co/rMcgB5TU\n", "\n", "--------------------------------------------------------\n", - "seems legit hurricanesandy america usa staysafe funnypics fake humour \n", + "seems legit hurricane sandy america usa staysafe funnypics fake humour \n", "\n", "\n", "This picture is scary. #hurricaneSandy http://t.co/KPiTld97\n", "\n", "--------------------------------------------------------\n", - "picture scary hurricanesandy \n", + "picture scary hurricane sandy \n", "\n", "\n", "#HurricaneSandy pray for those affected...that The Lord guides them and let's them know that the storm can't http://t.co/DawIr9BQ\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy pray affected lord guides let know storm \n", + "hurricane sandy pray affected lord guides let know storm \n", "\n", "\n", "Lets say a Prayer for all our friends and family in East Coast. #HurricaneSandy http://t.co/oVcfpxII\n", "\n", "--------------------------------------------------------\n", - "lets say prayer friends family east coast hurricanesandy \n", + "lets say prayer friends family east coast hurricane sandy \n", "\n", "\n", "Due to #hurricanesandy rena REBORN will be closed today. We apologize for any inconvience. Stay Safe #NYC http://t.co/qg3ydwcw\n", "\n", "--------------------------------------------------------\n", - "due hurricanesandy rena reborn closed today apologize inconvience stay safe nyc \n", + "due hurricane sandy rena reborn closed today apologize inconvience stay safe new york city \n", "\n", "\n", "Another pic of Sharks swimming down the street #repost #hurricanesandy http://t.co/8eaNSOj0\n", "\n", "--------------------------------------------------------\n", - "another pic sharks swimming street repost hurricanesandy \n", + "another pic sharks swimming street repost hurricane sandy \n", "\n", "\n", "Live in NYC #hurricanesandy http://t.co/zXveCg8B\"\n", "\n", "--------------------------------------------------------\n", - "live nyc hurricanesandy \n", + "live new york city hurricane sandy \n", "\n", "\n", "Saw this on Facebook, shared by Rebecca King Cortez. #HurricaneSandy http://t.co/cxf3D4vE\n", "\n", "--------------------------------------------------------\n", - "saw facebook shared rebecca king cortez hurricanesandy \n", + "saw facebook shared rebecca king cortez hurricane sandy \n", "\n", "\n", "Who knew a hurricane could look so beautiful #hurricanesandy 🌀🌊☔ http://t.co/mvMfCvsP\n", "\n", "--------------------------------------------------------\n", - "knew hurricane could look beautiful hurricanesandy \n", - "\n", - "\n", - "@LMAO_TWITPICS: #HurricaneSandyJustGotReal http://t.co/VLDI2x8U fuuuuuck that dude! #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandyjustgotreal fuuuuuck dude hurricanesandy \n", - "\n", - "\n", - "Wow... #hurricanesandy http://t.co/LS3OzsE8\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricanesandy \n", + "knew hurricane could look beautiful hurricane sandy \n", "\n", "\n", "Had to #repost incredible #tomboftheunkownsoldiers #honor #hurricanesandy http://t.co/zNeXQ6xy\n", "\n", "--------------------------------------------------------\n", - "repost incredible tomboftheunkownsoldiers honor hurricanesandy \n", + "repost incredible tomboftheunkownsoldiers honor hurricane sandy \n", "\n", "\n", "#nofilter #NY #NYC #newyork #newyorkcity #hurricanesandy #clouds #scary #wtf #empirestate http://t.co/yAoJqCmy\n", "\n", "--------------------------------------------------------\n", - "nofilter ny nyc newyork newyorkcity hurricanesandy clouds scary wtf empirestate \n", + "nofilter new york new york city new york new yorkcity hurricane sandy clouds scary empirestate \n", "\n", "\n", "New york looks nice #HurricaneSandy http://t.co/KfVrUrFI\n", "\n", "--------------------------------------------------------\n", - "new york looks nice hurricanesandy \n", + "new york looks nice hurricane sandy \n", "\n", "\n", "Still guarding #tomboftheunknown even through #hurricanesandy http://t.co/DyqMU2sV\n", "\n", "--------------------------------------------------------\n", - "still guarding tomboftheunknown even hurricanesandy \n", + "still guarding tomboftheunknown even hurricane sandy \n", "\n", "\n", "So shyt is gettin Real real in NY!! Shark on da highway!! YALL B CAREFUL!! #PRAYERS #NY #NJ #HurricaneSandy http://t.co/pdM3qzbI\n", "\n", "--------------------------------------------------------\n", - "shyt gettin real real ny shark da highway yall b careful prayers ny nj hurricanesandy \n", + "shyt gettin real real new york shark highway yall b careful prayers new york new jersey hurricane sandy \n", "\n", "\n", "Perfect Combination of #mothernature & #nyc #hurricanesandy #sandy #satueofliberty #manhattan #hurrica @ nyc http://t.co/ZnMYzEhG\n", "\n", "--------------------------------------------------------\n", - "perfect combination mothernature nyc hurricanesandy sandy satueofliberty manhattan hurrica nyc \n", + "perfect combination mothernature new york city hurricane sandy sandy satueofliberty manhattan hurrica new york city \n", "\n", "\n", "#hurricanesandy #statue #of #liberty #sick #wtf sandyy ain't playin.she for real. http://t.co/Gac9I4Iy\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statue liberty sick wtf sandyy playin real \n", + "hurricane sandy statue liberty sick sandyy playin real \n", "\n", "\n", "No freaking way. 😳 #hurricanesandy http://t.co/NEay2cN3\n", "\n", "--------------------------------------------------------\n", - "freaking way hurricanesandy \n", + "freaking way hurricane sandy \n", "\n", "\n", "#frankenstorm #hurricanesandy #Eastcoast praying for my friends and others on the East Coast..... #coolpic http://t.co/Hd2JmImL\n", "\n", "--------------------------------------------------------\n", - "frankenstorm hurricanesandy eastcoast praying friends others east coast coolpic \n", + "frankenstorm hurricane sandy eastcoast praying friends others east coast coolpic \n", "\n", "\n", "Oh shit “@FashionFwd2010 “@Super_Negra NJ pic: shark shows up in someone's yard. WOW!!!! #HurricaneSandy crazy!!! http://t.co/JedvUzAs””\n", "\n", "--------------------------------------------------------\n", - "oh shit nj pic shark shows someone yard wow hurricanesandy crazy \n", + "shit new jersey pic shark shows someone yard hurricane sandy crazy \n", "\n", "\n", "Dang that looks crazy, but dope at the same time!! #HurricaneSandy http://t.co/KInuKFjC\n", "\n", "--------------------------------------------------------\n", - "dang looks crazy dope time hurricanesandy \n", + "dang looks crazy dope time hurricane sandy \n", "\n", "\n", "OMG That's wild RT @MarlowOnline Notice the #SHARK swimming in my friend's driveway in Ocean City, NJ! #HurricaneSandy http://t.co/2VckUtLZ\n", "\n", "--------------------------------------------------------\n", - "omg wild \n", + "wild \n", "\n", "\n", "Foto de amparo_n_roll http://t.co/D5yToJEq #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto amparo n roll hurricanesandy \n", + "foto amparonroll hurricane sandy \n", "\n", "\n", "Just the end of the world 😱 #HurricaneSandy #Regram http://t.co/F01NozbI\n", "\n", "--------------------------------------------------------\n", - "end world hurricanesandy regram \n", + "end world hurricane sandy \n", "\n", "\n", "#EllisIsland 10.29.12 #nyc #sandy #hurricanesandy #wavy #statueofliberty http://t.co/mWK2Tej0\n", "\n", "--------------------------------------------------------\n", - "ellisisland 10 29 12 nyc sandy hurricanesandy wavy statueofliberty \n", + "ellisisland092 new york city sandy hurricane sandy wavy statueofliberty \n", "\n", "\n", "#hurricanesandy #StatueOfLiberty #NY #pray http://t.co/kBWyRB1v\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statueofliberty ny pray \n", + "hurricane sandy statueofliberty new york pray \n", "\n", "\n", "Amazing picture of Servant #Leadership!! I am humbled by this! #HurricaneSandy #TombOfUnknownSoldier #nofilt http://t.co/HqtqmmTc\n", "\n", "--------------------------------------------------------\n", - "amazing picture servant leadership humbled hurricanesandy tombofunknownsoldier nofilt \n", + "amazing picture servant leadership humbled hurricane sandy tombofunknown soldier nofilt \n", "\n", "\n", "اسماك القرش تتجول في نيويورك بعد اعصار سنادي ،،، #newyork #USA #hurricanesandy @i7sawy http://t.co/NvmUvPVH\n", "\n", "--------------------------------------------------------\n", - "اسماك القرش تتجول نيويورك اعصار سنادي newyork usa hurricanesandy \n", + "اسماك القرش تتجول نيويورك اعصار سنادي new york usa hurricane sandy \n", "\n", "\n", "Shit. Just. Got. Real. 🏊 #hurricanesandy #shark #ohno #shitjustgotreal #damn #flood #yolo http://t.co/FsyFOjzI\n", "\n", "--------------------------------------------------------\n", - "shit got real hurricanesandy shark ohno shitjustgotreal damn flood yolo \n", + "shit got real hurricane sandy shark shitjustgotreal damn flood yolo \n", "\n", "\n", "Well shoot. #HurricaneSandy #Frankstorm #NewYork http://t.co/ZSwIyQRl\n", "\n", "--------------------------------------------------------\n", - "well shoot hurricanesandy frankstorm newyork \n", + "well shoot hurricane sandy frankstorm new york \n", "\n", "\n", "ยังกะในหนัง bless you RT @FuegYou: @itsWillyFerrell: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/M7OK65Bx\n", @@ -36445,28 +32427,22 @@ "ย งกะในหน ง bless \n", "\n", "\n", - "#HurricaneSandy #FuracãoSandy #LibertyState http://t.co/GxmPqEBp\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy furacãosandy libertystate \n", - "\n", - "\n", "OH FUCK NO #CantSwim #HelpMe #HurricaneSandy #YouWin http://t.co/r7jJa7Ja\n", "\n", "--------------------------------------------------------\n", - "oh fuck cantswim helpme hurricanesandy youwin \n", + "fuck cantswim helpme hurricane sandy youwin \n", "\n", "\n", "This picture is so cool #HurricaneSandy #StatueOfLiberty http://t.co/QXWsucRK\n", "\n", "--------------------------------------------------------\n", - "picture cool hurricanesandy statueofliberty \n", + "picture cool hurricane sandy statueofliberty \n", "\n", "\n", "Thats just crazy #hurricanesandy http://t.co/AXbLve5Y\n", "\n", "--------------------------------------------------------\n", - "thats crazy hurricanesandy \n", + "thats crazy hurricane sandy \n", "\n", "\n", "“@TJCarpenterWHB:Sharks in New Jersey!! http://t.co/ebFkmY2A” @TJCarpenterWHB they are looking for dinner! #jaws was shot in MA! #Sandy\n", @@ -36478,337 +32454,313 @@ "New York, Sandy. Sandy, New York. #hurricanesandy http://t.co/gQWBZ6Ep\n", "\n", "--------------------------------------------------------\n", - "new york sandy sandy new york hurricanesandy \n", + "new york sandy sandy new york hurricane sandy \n", "\n", "\n", "Incredible but scary picture of #HurricaneSandy ready to chew up #NewYork. Hope everyone on the #EastCoast i http://t.co/icT2OleD\n", "\n", "--------------------------------------------------------\n", - "incredible scary picture hurricanesandy ready chew newyork hope everyone eastcoast \n", + "incredible scary picture hurricane sandy ready chew new york hope everyone eastcoast \n", "\n", "\n", "Sandy is here... Everyone stay safe and dry and my God be with u all ❤ #sandy #hurricanesandy #NYC #statueof http://t.co/xaHDT2uC\n", "\n", "--------------------------------------------------------\n", - "sandy everyone stay safe dry god sandy hurricanesandy nyc statueof \n", + "sandy everyone stay safe dry god sandy hurricane sandy new york city statueof \n", "\n", "\n", "#LooksSoScary #Incredible #HurricaneSandy http://t.co/hCwreh58\n", "\n", "--------------------------------------------------------\n", - "lookssoscary incredible hurricanesandy \n", + "lookssoscary incredible hurricane sandy \n", "\n", "\n", "What a photo!!! Nature will always be one step ahead! #sandy #hurricanesandy http://t.co/kR62TgO7\n", "\n", "--------------------------------------------------------\n", - "photo nature always one step ahead sandy hurricanesandy \n", + "photo nature always one step ahead sandy hurricane sandy \n", "\n", "\n", "#NYC #hurricanesandy #crazy #beautiful #weather #mothernature http://t.co/eQBFSXzr\n", "\n", "--------------------------------------------------------\n", - "nyc hurricanesandy crazy beautiful weather mothernature \n", + "new york city hurricane sandy crazy beautiful weather mothernature \n", "\n", "\n", "Omg there are sharks in the streets of Atlantic City😳😱 #hurricanesandy http://t.co/SDN8VTql\n", "\n", "--------------------------------------------------------\n", - "omg sharks streets atlantic city hurricanesandy \n", + "sharks streets atlantic city hurricane sandy \n", "\n", "\n", "It feels damn great to be a Texan right about now! #NYC #HurricaneSandy http://t.co/b3WhmtOj\n", "\n", "--------------------------------------------------------\n", - "feels damn great texan right nyc hurricanesandy \n", + "feels damn great texan right new york city hurricane sandy \n", "\n", "\n", "Imagine looking out your window and seeing this #scary #hurricanesandy http://t.co/4RITz7W7\n", "\n", "--------------------------------------------------------\n", - "imagine looking window seeing scary hurricanesandy \n", + "imagine looking window seeing scary hurricane sandy \n", "\n", "\n", "Ssssooo #hurricanesandy #nyc #subway #flooding no this is just an artist rendition. Though the NYC subway IS http://t.co/Mb2Js5ck\n", "\n", "--------------------------------------------------------\n", - "ssssooo hurricanesandy nyc subway flooding artist rendition though nyc subway \n", + "ssssooo hurricane sandy new york city subway flooding artist rendition though new york city subway \n", "\n", "\n", "Nature is cruel....#hurricanesandy http://t.co/EemuEJyK\n", "\n", "--------------------------------------------------------\n", - "nature cruel hurricanesandy \n", + "nature cruel hurricane sandy \n", "\n", "\n", "Baby there's a shark in the water!!! #hurricanesandy http://t.co/ym9HAFPX\n", "\n", "--------------------------------------------------------\n", - "baby shark water hurricanesandy \n", + "baby shark water hurricane sandy \n", "\n", "\n", "#hurricaneSandy You can take the girl out of Florida, but can't take Florida out of the girl http://t.co/FVVBLnW4\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy take girl florida take florida girl \n", + "hurricane sandy take girl florida take florida girl \n", "\n", "\n", "Warms my heart... My prayers are with you <3 #HurricaneSandy #GodblessYou http://t.co/XO0CHAOt\n", "\n", "--------------------------------------------------------\n", - "warms heart prayers less 3 hurricanesandy godblessyou \n", + "warms heart prayers hurricane sandy godblessyou \n", "\n", "\n", "A crap situation but what a beautiful picture! #HurricaneSandy @ New York, USA http://t.co/Vri1noIX\n", "\n", "--------------------------------------------------------\n", - "crap situation beautiful picture hurricanesandy new york usa \n", + "crap situation beautiful picture hurricane sandy new york usa \n", "\n", "\n", "Escape from New York. #HurricaneSandy http://t.co/YHhXN3LC\n", "\n", "--------------------------------------------------------\n", - "escape new york hurricanesandy \n", + "escape new york hurricane sandy \n", "\n", "\n", "Imagine driving home and seeing that #shark #hurricanesandy http://t.co/dcohN6mb\n", "\n", "--------------------------------------------------------\n", - "imagine driving home seeing shark hurricanesandy \n", + "imagine driving home seeing shark hurricane sandy \n", "\n", "\n", "#HurricaneSandy creeping in NYC http://t.co/qKwL1hnZ\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy creeping nyc \n", + "hurricane sandy creeping new york city \n", "\n", "\n", "Idk if this is real or not but damn #hurricanesandy #itscoming #besafe http://t.co/Zq1eOo3v\n", "\n", "--------------------------------------------------------\n", - "idk real damn hurricanesandy itscoming besafe \n", + "idk real damn hurricane sandy itscoming besafe \n", "\n", "\n", "Wishing all my #EastCoast friends good luck with #HurricaneSandy\\nI love you guys! http://t.co/WaDHD83u\n", "\n", "--------------------------------------------------------\n", - "wishing eastcoast friends good luck hurricanesandy love guys \n", + "wishing eastcoast friends good luck hurricane sandy love guys \n", "\n", "\n", "that shit #cray #hurricanesandy looks like something from a movie http://t.co/ZZfuXXzC\n", "\n", "--------------------------------------------------------\n", - "shit cray hurricanesandy looks like something movie \n", + "shit cray hurricane sandy looks like something movie \n", "\n", "\n", "Impresionante foto de chaseponder del #hurricanesandy #huracansandy. Siempre se puede estar peor http://t.co/PvKvKPum\n", "\n", "--------------------------------------------------------\n", - "impresionante foto chaseponder hurricanesandy huracansandy siempre puede peor \n", - "\n", - "\n", - "“@thinkprogress: Sandy approaches NYC http://t.co/yGpiQdxZ (via @juneambrose)”\\n\\nWow #scary #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "wow scary hurricanesandy \n", - "\n", - "\n", - "#newyork #hurricanesandy http://t.co/ghIDPxzd\n", - "\n", - "--------------------------------------------------------\n", - "newyork hurricanesandy \n", + "impresionante foto chaseponder hurricane sandy huracansandy siempre puede peor \n", "\n", "\n", "Sharks just chillin in the streets of NY - no biggie. #HurricaneSandy http://t.co/ZUe2dbAI\n", "\n", "--------------------------------------------------------\n", - "sharks chillin streets ny biggie hurricanesandy \n", + "sharks chillin streets new york biggie hurricane sandy \n", "\n", "\n", "Sentinels at the Tomb of the Unknowns in Arlington National Cemetery brave the #HurricaneSandy in D.C http://t.co/xH3q9nt1\n", "\n", "--------------------------------------------------------\n", - "sentinels tomb unknowns arlington national cemetery brave hurricanesandy c \n", + "sentinels tomb unknowns arlington national cemetery brave hurricane sandy \n", "\n", "\n", "Insane. #hurricanesandy #nyc http://t.co/rFjEQpZe\n", "\n", "--------------------------------------------------------\n", - "insane hurricanesandy nyc \n", + "insane hurricane sandy new york city \n", "\n", "\n", "#repost @juneambrose #nyc #hurricanesandy #hurricanesandy2012 looks like a movie http://t.co/c9PMm4sc\n", "\n", "--------------------------------------------------------\n", - "repost nyc hurricanesandy hurricanesandy2012 looks like movie \n", + "repost new york city hurricane sandy hurricane sandy2012 looks like movie \n", "\n", "\n", "A Shark in ac chilling next to a house awkkk.. #sandy #storm #hurricanesandy #hightide #ac #atlanticcity http://t.co/59hT0301\n", "\n", "--------------------------------------------------------\n", - "shark ac chilling next house awkkk sandy storm hurricanesandy hightide ac atlanticcity \n", + "shark ac chilling next house awkkk sandy storm hurricane sandy hightide ac atlanticcity \n", "\n", "\n", "Nature and all it's wrath.... #hurricane #hurricanesandy http://t.co/u2bdlHzd\n", "\n", "--------------------------------------------------------\n", - "nature wrath hurricane hurricanesandy \n", + "nature wrath hurricane hurricane sandy \n", "\n", "\n", "#StatueofLiberty #HurricaneSandy #nyc #nofilter 🗽 http://t.co/ISo5T5J4\n", "\n", "--------------------------------------------------------\n", - "statueofliberty hurricanesandy nyc nofilter \n", + "statueofliberty hurricane sandy new york city nofilter \n", "\n", "\n", "#NY #hurricanesandy #sandy #StatueofLiberty #sky #horror 🌊🗽 http://t.co/jVqWr3Rm\n", "\n", "--------------------------------------------------------\n", - "ny hurricanesandy sandy statueofliberty sky horror \n", + "new york hurricane sandy sandy statueofliberty sky horror \n", "\n", "\n", "A house in New Jersey after #HurricaneSandy http://t.co/pBVDvZIj\n", "\n", "--------------------------------------------------------\n", - "house new jersey hurricanesandy \n", + "house new jersey hurricane sandy \n", "\n", "\n", "Times Square empty. #hurricanesandy http://t.co/ZDTxJ6z7\n", "\n", "--------------------------------------------------------\n", - "times square empty hurricanesandy \n", + "times square empty hurricane sandy \n", "\n", "\n", "As if flooding wasn't bad enough #hurricanesandy http://t.co/ZeU56K9R\n", "\n", "--------------------------------------------------------\n", - "flooding bad enough hurricanesandy \n", + "flooding bad enough hurricane sandy \n", "\n", "\n", "“@Super_Negra NJ pic: shark shows up in someone's yard. WOW!!!! #HurricaneSandy crazy!!! http://t.co/D1zmLxck”\n", "\n", "--------------------------------------------------------\n", - "nj pic shark shows someone yard wow hurricanesandy crazy \n", + "new jersey pic shark shows someone yard hurricane sandy crazy \n", "\n", "\n", "I stole this from suaz187 this would be so insane!!!!!!! #HurricaneSandy #NyC #TimesSquare #ScoobaDive http://t.co/wxWMuxqq\n", "\n", "--------------------------------------------------------\n", - "stole suaz187 would insane hurricanesandy nyc timessquare scoobadive \n", + "stole suaz187 would insane hurricane sandy new york city timessquare scoobadive \n", "\n", "\n", "Nature is so powerful, yet so beautiful. #HurricaneSandy #LadyLiberty #Beauty http://t.co/8XdP7NwH\n", "\n", "--------------------------------------------------------\n", - "nature powerful yet beautiful hurricanesandy ladyliberty beauty \n", + "nature powerful yet beautiful hurricane sandy ladyliberty beauty \n", "\n", "\n", "Tchê tubarões ja são encontrados nas ruas de Nova Jersey devido ao #hurricanesandy http://t.co/golh6a8q\n", "\n", "--------------------------------------------------------\n", - "tchê tubarões são encontrados nas ruas nova jersey devido ao hurricanesandy \n", - "\n", - "\n", - "Ooh my! RT @enhlembali: #hurricaneSandy #shark http://t.co/fFWDsb6N\n", - "\n", - "--------------------------------------------------------\n", - "ooh \n", + "tchê tubarões encontrados ruas nova jersey devido hurricane sandy \n", "\n", "\n", "OMG This was taken today! I had to steal this pic! #HurricaneSandy #NYC #NewYorker 🗽 http://t.co/7wclVBc5\n", "\n", "--------------------------------------------------------\n", - "omg taken today steal pic hurricanesandy nyc newyorker \n", + "taken today steal pic hurricane sandy new york city new yorker \n", "\n", "\n", "Shark swimming in somebody's yard in Jersey #Brutal #HurricaneSandy #Aftermath http://t.co/fqpt0oi1\n", "\n", "--------------------------------------------------------\n", - "shark swimming somebody yard jersey brutal hurricanesandy aftermath \n", + "shark swimming somebody yard jersey brutal hurricane sandy aftermath \n", "\n", "\n", "Shot of NYC today! Praying for everyone on the east coast! #hurricanesandy #frankenstorm http://t.co/oKp9QNj2\n", "\n", "--------------------------------------------------------\n", - "shot nyc today praying everyone east coast hurricanesandy frankenstorm \n", + "shot new york city today praying everyone east coast hurricane sandy frankenstorm \n", "\n", "\n", "#HurricaneSandy #Frankenstorm #NYC http://t.co/opbZ7fc5\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy frankenstorm nyc \n", + "hurricane sandy frankenstorm new york city \n", "\n", "\n", "Simply amazing #GodBlessAmerica #HurricaneSandy #ChangingOfTheGuard #WashingtonDC http://t.co/bnggFRfs\n", "\n", "--------------------------------------------------------\n", - "simply amazing godblessamerica hurricanesandy changingoftheguard washingtondc \n", - "\n", - "\n", - "Sharks on the street #hurricanesandy http://t.co/p7o2MPPD\n", - "\n", - "--------------------------------------------------------\n", - "sharks street hurricanesandy \n", + "simply amazing godblessamerica hurricane sandy changingoftheguard washingtondc \n", "\n", "\n", "eriklevier's photo http://t.co/TNOlNnkh #hurricanesandy #statueofliberty\n", "\n", "--------------------------------------------------------\n", - "eriklevier photo hurricanesandy statueofliberty \n", + "eriklevier photo hurricane sandy statueofliberty \n", "\n", "\n", "#SharksInTheWater #HurricaneSandy http://t.co/AErcgWDj\n", "\n", "--------------------------------------------------------\n", - "sharksinthewater hurricanesandy \n", + "sharksinthewater hurricane sandy \n", "\n", "\n", "Thinking of you guys in New York and USA. Be safe!! #hurricanesandy #newyork #usa #likeforlike #like4like http://t.co/QGMydHp3\n", "\n", "--------------------------------------------------------\n", - "thinking guys new york usa safe hurricanesandy newyork usa likeforlike like4like \n", + "thinking guys new york usa safe hurricane sandy new york usa likeforlike like4like \n", "\n", "\n", "Hopefully I see one swimming to Scranton! 😱🐟 #sharkobsession #hurricanesandy http://t.co/L4SNlaKK\n", "\n", "--------------------------------------------------------\n", - "hopefully see one swimming scranton sharkobsession hurricanesandy \n", + "hopefully see one swimming scranton sharkobsession hurricane sandy \n", "\n", "\n", "Gotta respect these Soldiers, still standing out there in that rain during #HurricaneSandy http://t.co/09o6nH71\n", "\n", "--------------------------------------------------------\n", - "gotta respect soldiers still standing rain hurricanesandy \n", + "gotta respect soldiers still standing rain hurricane sandy \n", "\n", "\n", "Sea Lion on the street in NY. My prayers go out to the people up North. #hurricanesandy #love #prayer #hurri http://t.co/oi4mDdGt\n", "\n", "--------------------------------------------------------\n", - "lion street ny prayers go people north hurricanesandy love prayer hurri \n", + "lion street new york prayers go people north hurricane sandy love prayer hurri \n", "\n", "\n", "Sh*t just got real... Crazy . #HurricaneSandy http://t.co/21yo93xd\n", "\n", "--------------------------------------------------------\n", - "sh got real crazy hurricanesandy \n", + "sh got real crazy hurricane sandy \n", "\n", "\n", "Ahhhhh, it's coming for us!!! #hurricanesandy http://t.co/7yPAxDWp\n", "\n", "--------------------------------------------------------\n", - "ahhhhh coming us hurricanesandy \n", + "ahhhhh coming us hurricane sandy \n", "\n", "\n", "This is why I love out troops. Still standing guard in #hurricanesandy. #respect #repost http://t.co/JnQxln1c\n", "\n", "--------------------------------------------------------\n", - "love troops still standing guard hurricanesandy respect repost \n", + "love troops still standing guard hurricane sandy respect repost \n", "\n", "\n", "Hope everyone's ok in NYC #hurricanesandy http://t.co/w5XqWpPr\n", "\n", "--------------------------------------------------------\n", - "hope everyone ok nyc hurricanesandy \n", + "hope everyone ok new york city hurricane sandy \n", "\n", "\n", "LMFFAAOO @ whale RT @B_tchsLoveJoeyK: is that fucking whale O.o RT @kissmyasshleey: #hurricaneSandy just got real http://t.co/vumSri9j\n", @@ -36817,16 +32769,10 @@ "lmffaaoo whale \n", "\n", "\n", - "Is this the end of the world???? 😳😳😳 #HurricaneSandy http://t.co/ppH96wF3\n", - "\n", - "--------------------------------------------------------\n", - "end world hurricanesandy \n", - "\n", - "\n", "#crazy pic of #hurricanesandy #sandy #statueofliberty #nyc #storm #damn #wow #rain #instago #photooftheday # http://t.co/6tY6oVa5\n", "\n", "--------------------------------------------------------\n", - "crazy pic hurricanesandy sandy statueofliberty nyc storm damn wow rain instago photooftheday \n", + "crazy pic hurricane sandy sandy statueofliberty new york city storm damn rain instago photooftheday \n", "\n", "\n", "Thats Crazy “@Lazardi: #hurricanesandy #huracansandy http://t.co/gg8Cqt51”\n", @@ -36838,7 +32784,7 @@ "Shark swimming in front yard. #NBD #insta #hurricanesandy #hurricaneproblems #crazy http://t.co/OB9xEQlE\n", "\n", "--------------------------------------------------------\n", - "shark swimming front yard nbd insta hurricanesandy hurricaneproblems crazy \n", + "shark swimming front yard nbd insta hurricane sandy hurricaneproblems crazy \n", "\n", "\n", "Damn is that a sharkRT @EdgarCano13: RT @ItsSabrinna: Didn't think it was that crucial... Be careful. #hurricanesandy http://t.co/vQpj5yvR\n", @@ -36850,37 +32796,37 @@ "#NYC #NJ #NC #EastCoasters our prayers are with you all to make it past this safely! #HurricaneSandy #Weather http://t.co/kP70I6fD\n", "\n", "--------------------------------------------------------\n", - "nyc nj nc eastcoasters prayers make past safely hurricanesandy weather \n", + "new york city new jersey nc eastcoasters prayers make past safely hurricane sandy weather \n", "\n", "\n", "Swim Gear out da_realtae lol #nyc #hurricanesandy http://t.co/47hPKg6Z\n", "\n", "--------------------------------------------------------\n", - "swim gear da realtae lol nyc hurricanesandy \n", + "swim gear darealtae new york city hurricane sandy \n", "\n", "\n", "My heart goes out! #hurricanesandy #relentless #prayer http://t.co/MyovbKrC\n", "\n", "--------------------------------------------------------\n", - "heart goes hurricanesandy relentless prayer \n", + "heart goes hurricane sandy relentless prayer \n", "\n", "\n", "Crazy pic #HurricaneSandy http://t.co/Xmrb624X\n", "\n", "--------------------------------------------------------\n", - "crazy pic hurricanesandy \n", + "crazy pic hurricane sandy \n", "\n", "\n", "…その一方で、こう言うジョーク画像もハッシュタグ付いてる…(´ω`) >Instagramで「 #HurricaneSandy 」 aj69uranusさんの写真 http://t.co/qoZl47fF\n", "\n", "--------------------------------------------------------\n", - "その一方で こう言うジョーク画像もハッシュタグ付いてる ω instagramで hurricanesandy aj69uranusさんの写真 \n", + "その一方で こう言うジョーク画像もハッシュタグ付いてる ω instagramで hurricane sandy aj69uranusさんの写真 \n", "\n", "\n", "This is crazy... Sharks at the front porch #hurricanesandy http://t.co/99ni2cpr\n", "\n", "--------------------------------------------------------\n", - "crazy sharks front porch hurricanesandy \n", + "crazy sharks front porch hurricane sandy \n", "\n", "\n", "Ctfu huh!?! RT @ShesASweetheart: Meanwhile on 202....#HurricaneSandy #ItsREALOutHere ?? http://t.co/YAEQkaMf\n", @@ -36892,37 +32838,37 @@ "A seal lookin so scared on these city streets of manhattan looks so scared. 😱😢#sandy #hurricanesandy #seal # http://t.co/Oje21n6u\n", "\n", "--------------------------------------------------------\n", - "seal lookin scared city streets manhattan looks scared sandy hurricanesandy seal \n", + "seal lookin scared city streets manhattan looks scared sandy hurricane sandy seal \n", "\n", "\n", "Is this real life ?#HurricaneSandy #NYC http://t.co/9GUjMT5U\n", "\n", "--------------------------------------------------------\n", - "real life hurricanesandy nyc \n", + "real life hurricane sandy new york city \n", "\n", "\n", "This shit tho #unreal #hurricanesandy hoping my cousin mwaite11 all gucci :D http://t.co/bBHFmndc\n", "\n", "--------------------------------------------------------\n", - "shit tho unreal hurricanesandy hoping cousin mwaite11 gucci \n", + "shit tho unreal hurricane sandy hoping cousin mwaite11 gucci \n", "\n", "\n", "Is this for real??? ⚡🌀🌀🌀⚡ #hurricanesandy #nyc #picstitch #instagramhub\\n#webstagram #instadaily #newyork #ne http://t.co/30tsAp8y\n", "\n", "--------------------------------------------------------\n", - "real hurricanesandy nyc picstitch instagramhub webstagram instadaily newyork ne \n", + "real hurricane sandy new york city picstitch instagramhub webstagram instadaily new york \n", "\n", "\n", "#hurricanesandy \\n#rns wet wet http://t.co/bVmuBcqv\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy rns wet wet \n", + "hurricane sandy rns wet wet \n", "\n", "\n", "Well crap. #hurricanesandy 😳🌀🌊 http://t.co/lfCFqkal\n", "\n", "--------------------------------------------------------\n", - "well crap hurricanesandy \n", + "well crap hurricane sandy \n", "\n", "\n", "“@Zgood_: No filter... & yes this is real life 😳💨🌑🌊 #hurricanesandy http://t.co/9FKZnaad”why the fuck Is there a boat in the water!!!\n", @@ -36934,19 +32880,19 @@ "Destroyed! Statue of Liberty! #hurricanesandy #omg #wow http://t.co/7WX4lbV3\n", "\n", "--------------------------------------------------------\n", - "destroyed statue liberty hurricanesandy omg wow \n", + "destroyed statue liberty hurricane sandy \n", "\n", "\n", "Omg!!! There's a shark in someone's yard in NJ bcuz of #hurricanesandy !!!! #crazy!!!!! I'd die!!! #dead #fb http://t.co/Jk4QP2QH\n", "\n", "--------------------------------------------------------\n", - "omg shark someone yard nj hurricanesandy crazy dead fb \n", + "shark someone yard new jersey hurricane sandy crazy dead fb \n", "\n", "\n", "How beautiful yet dangerous nature can be. Stay strong for those in New York. #HurricaneSandy http://t.co/egyHBkM3\n", "\n", "--------------------------------------------------------\n", - "beautiful yet dangerous nature stay strong new york hurricanesandy \n", + "beautiful yet dangerous nature stay strong new york hurricane sandy \n", "\n", "\n", "Lets keep on praying people. RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/CgUzNSC8 #HurricaneSandy\n", @@ -36958,217 +32904,205 @@ "#HurricaneSandy over #NYC nature is a powerful thing.... http://t.co/6JuvHm6B\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc nature powerful thing \n", + "hurricane sandy new york city nature powerful thing \n", "\n", "\n", "Jersey got hit baddd #hurricanesandy #gotsandy http://t.co/fQ4hAOV7\n", "\n", "--------------------------------------------------------\n", - "jersey got hit baddd hurricanesandy gotsandy \n", + "jersey got hit baddd hurricane sandy gotsandy \n", "\n", "\n", "#Respect #America #HurricaneSandy #Soldiers #Prayers http://t.co/kNcvCsB3\n", "\n", "--------------------------------------------------------\n", - "respect america hurricanesandy soldiers prayers \n", + "respect america hurricane sandy soldiers prayers \n", "\n", "\n", "#HurricaneSandy #real #nofilter #epic http://t.co/ILnx6Yxp\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy real nofilter epic \n", + "hurricane sandy real nofilter epic \n", "\n", "\n", "Another Shark Pic #HurricaneSandy smh... http://t.co/IZZXrj3C\n", "\n", "--------------------------------------------------------\n", - "another shark pic hurricanesandy smh \n", + "another shark pic hurricane sandy \n", "\n", "\n", "Real or fake? #hurricanesandy http://t.co/0ZZHh7pd\n", "\n", "--------------------------------------------------------\n", - "real fake hurricanesandy \n", + "real fake hurricane sandy \n", "\n", "\n", "This picture is mad! #hurricanesandy #newyork http://t.co/iDC9S1Ja\n", "\n", "--------------------------------------------------------\n", - "picture mad hurricanesandy newyork \n", + "picture mad hurricane sandy new york \n", "\n", "\n", "#hurricanesandy #NY this shit scary. we pray http://t.co/xvCcnJQ6\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy ny shit scary pray \n", + "hurricane sandy new york shit scary pray \n", "\n", "\n", "#StatueOfLiberty #NYC #HurricaneSandy #Frankenstorm http://t.co/KxHsoPsu\n", "\n", "--------------------------------------------------------\n", - "statueofliberty nyc hurricanesandy frankenstorm \n", + "statueofliberty new york city hurricane sandy frankenstorm \n", "\n", "\n", "That's dedication <3 #hurricanesandy #proudamerican #standtall #alittlerainneverhurtanyone #unknowntomb #mil http://t.co/2k0WdMx2\n", "\n", "--------------------------------------------------------\n", - "dedication less 3 hurricanesandy proudamerican standtall alittlerainneverhurtanyone unknowntomb mil \n", + "dedication hurricane sandy proudamerican standtall alittlerainneverhurtanyone unknowntomb mil \n", "\n", "\n", "Holy fucking shit. #HurricaneSandy http://t.co/nz9TUun3\n", "\n", "--------------------------------------------------------\n", - "holy fucking shit hurricanesandy \n", + "holy fucking shit hurricane sandy \n", "\n", "\n", "Whoa. Incredibly awesome picture. Be safe, NYC and the rest of east coast. #HurricaneSandy\\nhttp://t.co/9tBmhJv8\n", "\n", "--------------------------------------------------------\n", - "whoa incredibly awesome picture safe nyc rest east coast hurricanesandy \n", + "incredibly awesome picture safe new york city rest east coast hurricane sandy \n", "\n", "\n", "#HurricaneSandy #Shark swims by someone's home in #NewJersey http://t.co/AY9FpLBU\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy shark swims someone home newjersey \n", + "hurricane sandy shark swims someone home newjersey \n", "\n", "\n", "Sandy beefin with tha Statue aof Liberty must be personal..#SourRow #GlassFull #HurricaneSandy #Millay http://t.co/JIrJ1Hv1\n", "\n", "--------------------------------------------------------\n", - "sandy beefin tha statue aof liberty must personal sourrow glassfull hurricanesandy millay \n", + "sandy beefin tstatue aof liberty must personal sourrow glassfull hurricane sandy millay \n", "\n", "\n", "Shark in somebody's yard. Lol #HurricaneSandy http://t.co/LMBR2wbW\n", "\n", "--------------------------------------------------------\n", - "shark somebody yard lol hurricanesandy \n", + "shark somebody yard hurricane sandy \n", "\n", "\n", "#HurricaneSandy ain't playing. Sharks and shit swimming in the streets. Smfh http://t.co/N0nEaOMl\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy playing sharks shit swimming streets smfh \n", + "hurricane sandy playing sharks shit swimming streets smfh \n", "\n", "\n", "😱😱😱😨😨😨 I pray for my family and friends in #newyork as #hurricanesandy is about to hit #statueofliberty http://t.co/gYL61t9a\n", "\n", "--------------------------------------------------------\n", - "pray family friends newyork hurricanesandy hit statueofliberty \n", + "pray family friends new york hurricane sandy hit statueofliberty \n", "\n", "\n", "stay safe #hurricanesandy http://t.co/cAyjRLlE\n", "\n", "--------------------------------------------------------\n", - "stay safe hurricanesandy \n", + "stay safe hurricane sandy \n", "\n", "\n", "#Hurricanesandy.. Shits gettin real yo.. Drivin with sharks? http://t.co/gXhuFvMO\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy shits gettin real drivin sharks \n", + "hurricane sandy shits gettin real drivin sharks \n", "\n", "\n", "FUCK THAT. #hurricanesandy http://t.co/LKzAAjsa\n", "\n", "--------------------------------------------------------\n", - "fuck hurricanesandy \n", - "\n", - "\n", - "@KellyRipa stay safe #hurricanesandy http://t.co/7QdhMpFF\n", - "\n", - "--------------------------------------------------------\n", - "stay safe hurricanesandy \n", + "fuck hurricane sandy \n", "\n", "\n", "That's crazy, sharks on your front yard #hurricanesandy http://t.co/IJag4x8h\n", "\n", "--------------------------------------------------------\n", - "crazy sharks front yard hurricanesandy \n", + "crazy sharks front yard hurricane sandy \n", "\n", "\n", "#CrazyShit #HurricaneSandy http://t.co/kYdDCZPQ\n", "\n", "--------------------------------------------------------\n", - "crazyshit hurricanesandy \n", + "crazyshit hurricane sandy \n", "\n", "\n", "@LiaMarieJohnson lol look at this pic i found #HurricaneSandy http://t.co/BUGIwe8E\n", "\n", "--------------------------------------------------------\n", - "lol look pic found hurricanesandy \n", + "look pic found hurricane sandy \n", "\n", "\n", "Cool photo of #hurricaneSandy ... stay safe family and friends! http://t.co/vd8yUbSb\n", "\n", "--------------------------------------------------------\n", - "cool photo hurricanesandy stay safe family friends \n", + "cool photo hurricane sandy stay safe family friends \n", "\n", "\n", "So crazy looking! #hurricanesandy #NYC #NewYorkCity #statueofliberty http://t.co/zqK3wnGb\n", "\n", "--------------------------------------------------------\n", - "crazy looking hurricanesandy nyc newyorkcity statueofliberty \n", - "\n", - "\n", - "«@DoubleHTown: There's really a SHARK in the flooded waters caused by #HurricaneSandy http://t.co/32M7CSsm»\n", - "\n", - "--------------------------------------------------------\n", - "really shark flooded waters caused hurricanesandy \n", + "crazy looking hurricane sandy new york city new yorkcity statueofliberty \n", "\n", "\n", "Foto de katiehoran7 http://t.co/Gvo2S3xI #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto katiehoran7 hurricanesandy \n", + "foto katiehoran7 hurricane sandy \n", "\n", "\n", "#jaws havin a paddle in #NYC #hurricanesandy http://t.co/IH2RjgJ6\n", "\n", "--------------------------------------------------------\n", - "jaws havin paddle nyc hurricanesandy \n", + "jaws havin paddle new york city hurricane sandy \n", "\n", "\n", "Wow look at the #statueofliberty . #hurricanesandy is #crazy http://t.co/i9F4IRTP\n", "\n", "--------------------------------------------------------\n", - "wow look statueofliberty hurricanesandy crazy \n", + "look statueofliberty hurricane sandy crazy \n", "\n", "\n", "Wow!! Nature! #HurricaneSandy\\n#Repost http://t.co/O3oiTwkk\n", "\n", "--------------------------------------------------------\n", - "wow nature hurricanesandy repost \n", + "nature hurricane sandy repost \n", "\n", "\n", "Wow... Just.. Wow... #prayers #hurricanesandy http://t.co/bI7Bbud4\n", "\n", "--------------------------------------------------------\n", - "wow wow prayers hurricanesandy \n", + "prayers hurricane sandy \n", "\n", "\n", "«@979beat This is what NYC woke up to this morning!! #HurricaneSandy #Prayers http://t.co/0k0wi19F»\n", "\n", "--------------------------------------------------------\n", - "nyc woke morning hurricanesandy prayers \n", + "new york city woke morning hurricane sandy prayers \n", "\n", "\n", "Fuck around and get eaten on the streets up in the east coast #HurricaneSandy http://t.co/auIwaN5J\n", "\n", "--------------------------------------------------------\n", - "fuck around get eaten streets east coast hurricanesandy \n", + "fuck around get eaten streets east coast hurricane sandy \n", "\n", "\n", "GOD BLESS 🙏 #EastCoast #HurricaneSandy#clouds #storms#mothernature #instapic#igers#igdaily#all_shots#gang_fa http://t.co/FLygH3wr\n", "\n", "--------------------------------------------------------\n", - "god bless eastcoast hurricanesandy clouds storms mothernature instapic igers igdaily shots gang fa \n", + "god bless eastcoast hurricane sandyclouds stormsmothernature instapicigersigdailyallshotsgangfa \n", "\n", "\n", "Cant believe this is real...#omg #hurricanesandy #wow #insane #NYC #statueofliberty http://t.co/ITMnooCI\n", "\n", "--------------------------------------------------------\n", - "cant believe real omg hurricanesandy wow insane nyc statueofliberty \n", + "cant believe real hurricane sandy insane new york city statueofliberty \n", "\n", "\n", "صورة دخول اعصار ساندي على مدينة نيويورك ..سبحان الله . \\n\\n[http://t.co/svD0irPo]\\n\\n#Sandy\n", @@ -37180,55 +33114,49 @@ "We gon' die. #hurricanesandy http://t.co/KX1FCPLD\n", "\n", "--------------------------------------------------------\n", - "gon hurricanesandy \n", + "gon hurricane sandy \n", "\n", "\n", "Absolutely amazing! Stay Strong East Coast. #tomboftheunkownsoldier #hurricanesandy http://t.co/vmiqrS96\n", "\n", "--------------------------------------------------------\n", - "absolutely amazing stay strong east coast tomboftheunkownsoldier hurricanesandy \n", + "absolutely amazing stay strong east coast tomboftheunkownsoldier hurricane sandy \n", "\n", "\n", "This nyc rite now!! “#HurricaneSandy #NYC #StatueOfLiberty #NewYork http://t.co/gEh0DmSn”\n", "\n", "--------------------------------------------------------\n", - "nyc rite hurricanesandy nyc statueofliberty newyork \n", + "new york city rite hurricane sandy new york city statueofliberty new york \n", "\n", "\n", "Gorgeous photography #notmine #hurricanesandy #nyc #nycphotography #statueofliberty #photography http://t.co/LpMKBw2z\n", "\n", "--------------------------------------------------------\n", - "gorgeous photography notmine hurricanesandy nyc nycphotography statueofliberty photography \n", + "gorgeous photography notmine hurricane sandy new york city nycphotography statueofliberty photography \n", "\n", "\n", "Are they #serious a damn #shark damn u #hurricanesandy http://t.co/llXquinH\n", "\n", "--------------------------------------------------------\n", - "serious damn shark damn hurricanesandy \n", + "serious damn shark damn hurricane sandy \n", "\n", "\n", "Much #respect their out there even in #hurricaneSandy #GodBlessThem http://t.co/niQqFG1h\n", "\n", "--------------------------------------------------------\n", - "much respect even hurricanesandy godblessthem \n", - "\n", - "\n", - "#HurricaneSandy SmH http://t.co/QepjSOXC\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy smh \n", + "much respect even hurricane sandy godblessthem \n", "\n", "\n", "This is beautiful yet scary... Praying for my #NYC fam. #hurricanesandy http://t.co/YVHikdmS\n", "\n", "--------------------------------------------------------\n", - "beautiful yet scary praying nyc fam hurricanesandy \n", + "beautiful yet scary praying new york city fam hurricane sandy \n", "\n", "\n", "New York City better prepare. #hurricanesandy http://t.co/yfguCCyh\n", "\n", "--------------------------------------------------------\n", - "new york city better prepare hurricanesandy \n", + "new york city better prepare hurricane sandy \n", "\n", "\n", "“@HShakeee: Hello, Sandy... http://t.co/nSniadkk #HurricaneSandy” AHH ! BE SAFE !\n", @@ -37240,31 +33168,31 @@ "Shit just got real whn u step out side n c thz shit #hurricanesandy http://t.co/XTNgvoJt\n", "\n", "--------------------------------------------------------\n", - "shit got real whn step side n c thz shit hurricanesandy \n", + "shit got real whn step side thz shit hurricane sandy \n", "\n", "\n", "This is real... Not edited. Hope the family in NYC is safe. #hurricanesandy http://t.co/uv5HqJTy\n", "\n", "--------------------------------------------------------\n", - "real edited hope family nyc safe hurricanesandy \n", + "real edited hope family new york city safe hurricane sandy \n", "\n", "\n", "Real Life Street Sharks! #HurricaneSandy #jerseyshore #finpumping #newjawsy #landshark #crazy #weaintsafenow http://t.co/d245bygU\n", "\n", "--------------------------------------------------------\n", - "real life street sharks hurricanesandy jerseyshore finpumping newjawsy landshark crazy weaintsafenow \n", + "real life street sharks hurricane sandy jerseyshore finpumping newjawsy landshark crazy weaintsafenow \n", "\n", "\n", "Cuuuud #hurricaneSandy http://t.co/9KNAlURD\n", "\n", "--------------------------------------------------------\n", - "cuuuud hurricanesandy \n", + "cuuuud hurricane sandy \n", "\n", "\n", "Sooo insane!! 😁 #hurricanesandy http://t.co/QSHb60ti\n", "\n", "--------------------------------------------------------\n", - "sooo insane hurricanesandy \n", + "sooo insane hurricane sandy \n", "\n", "\n", "From not the brightest card in the deck RT @IAMRUBY: Wow incredible pic of #hurricanesandy >> @tylersookochoff's photo http://t.co/74l7siKJ\n", @@ -37273,466 +33201,424 @@ "brightest card deck \n", "\n", "\n", - "“@iansomerhalder: This looks like a movie!Wtf?! http://t.co/XwgncslA” whoa! #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "whoa hurricanesandy \n", - "\n", - "\n", "Love this picture #HurricaneSandy http://t.co/LZDgbIvX\n", "\n", "--------------------------------------------------------\n", - "love picture hurricanesandy \n", + "love picture hurricane sandy \n", "\n", "\n", "Lmao LIES lol RT @itsWillyFerrell: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/6kqvWbsW\n", "\n", "--------------------------------------------------------\n", - "lmao lies lol \n", + "lies \n", "\n", "\n", "Even through the hurricane the unnamed soldiers rest easy.. #respect #military #heros #hurricanesandy #usa # http://t.co/oLQexX2P\n", "\n", "--------------------------------------------------------\n", - "even hurricane unnamed soldiers rest easy respect military heros hurricanesandy usa \n", + "even hurricane unnamed soldiers rest easy respect military heros hurricane sandy usa \n", "\n", "\n", "Standing tall in the face of adversity #hurricanesandy #NYC @ Anjou http://t.co/KWUvsXGb\n", "\n", "--------------------------------------------------------\n", - "standing tall face adversity hurricanesandy nyc anjou \n", + "standing tall face adversity hurricane sandy new york city anjou \n", "\n", "\n", "Wow... #hurricanesandy. Stay safe NYC! http://t.co/QQfJvAn6\n", "\n", "--------------------------------------------------------\n", - "wow hurricanesandy stay safe nyc \n", + "hurricane sandy stay safe new york city \n", "\n", "\n", "#Merica #HurricaneSandy 🇺🇸 http://t.co/eOmDfw0G\n", "\n", "--------------------------------------------------------\n", - "merica hurricanesandy \n", - "\n", - "\n", - "#HurricaneSandy over #NYC http://t.co/GipzsO3A\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nyc \n", + "merica hurricane sandy \n", "\n", "\n", "You know shits craycray when there's a shark on your front lawn #Nj by Atlantic City #hurricanesandy http://t.co/dESAImK4\n", "\n", "--------------------------------------------------------\n", - "know shits craycray shark front lawn nj atlantic city hurricanesandy \n", + "know shits craycray shark front lawn new jersey atlantic city hurricane sandy \n", "\n", "\n", "major respect for these 3 dudes. #UnknownSoldier #America #GuardingTomb #HurricaneSandy http://t.co/NotSSaVb\n", "\n", "--------------------------------------------------------\n", - "major respect 3 dudes unknownsoldier america guardingtomb hurricanesandy \n", + "major respect dudes unknown soldier america guardingtomb hurricane sandy \n", "\n", "\n", "Omg dude! 😰😱 “@salbeast23: #hurricanesandy http://t.co/cZy1BNoP”\n", "\n", "--------------------------------------------------------\n", - "omg dude \n", + "dude \n", "\n", "\n", "#HurricaneSandy #Just #Got #Real #In #NYC #SHARKS #SWIMMING #IN #THE #ROAD http://t.co/sfBhABvD\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy got real nyc sharks swimming road \n", + "hurricane sandy got real new york city sharks swimming road \n", "\n", "\n", "Lord keep everyone safe Especially my family!!!! #HurricaneSandy #Nyc #Repost http://t.co/arhBXJYp\n", "\n", "--------------------------------------------------------\n", - "lord keep everyone safe especially family hurricanesandy nyc repost \n", + "lord keep everyone safe especially family hurricane sandy new york city repost \n", "\n", "\n", "My bitch Liberty aint going nowhere Sandy!!! #hurricanesandy #StatueOfLiberty #Eyecandy #NY #ImSoNY http://t.co/8RHJ5oXg\n", "\n", "--------------------------------------------------------\n", - "bitch liberty aint going nowhere sandy hurricanesandy statueofliberty eyecandy ny imsony \n", + "bitch liberty aint going nowhere sandy hurricane sandy statueofliberty eyecandy new york imsony \n", "\n", "\n", "New York today! #hurricaneSandy #incredible http://t.co/KbavFruo\n", "\n", "--------------------------------------------------------\n", - "new york today hurricanesandy incredible \n", + "new york today hurricane sandy incredible \n", "\n", "\n", "Talk about commitment!!! #RespectForTheUknownSoildier #HurricaneSandy http://t.co/hhCMQ9k4\n", "\n", "--------------------------------------------------------\n", - "talk commitment respectfortheuknownsoildier hurricanesandy \n", + "talk commitment respectfortheuknownsoildier hurricane sandy \n", "\n", "\n", "Be thankful this isn't you #hurricanesandy http://t.co/sxmOofyO\n", "\n", "--------------------------------------------------------\n", - "thankful hurricanesandy \n", + "thankful hurricane sandy \n", "\n", "\n", "Sharks are swimming up highways and shit.. #HurricaneSandy http://t.co/5S3ryZqy\n", "\n", "--------------------------------------------------------\n", - "sharks swimming highways shit hurricanesandy \n", + "sharks swimming highways shit hurricane sandy \n", "\n", "\n", "WOW! #hurricanesandy #usa #america #newyorkcity #manhattan #libertyisland #storm #flood http://t.co/vxlLwwIF\n", "\n", "--------------------------------------------------------\n", - "wow hurricanesandy usa america newyorkcity manhattan libertyisland storm flood \n", + "hurricane sandy usa america new yorkcity manhattan libertyisland storm flood \n", "\n", "\n", "Nature is Crazy #HurricaneSandy http://t.co/s9zfWzcY\n", "\n", "--------------------------------------------------------\n", - "nature crazy hurricanesandy \n", + "nature crazy hurricane sandy \n", "\n", "\n", "http://t.co/gtsdGD2g My thoughts and prayers are with you. Be Safe guys. God be with y'all. All love. #PrayForUSA #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "thoughts prayers safe guys god love prayforusa hurricanesandy \n", + "thoughts prayers safe guys god love prayforusa hurricane sandy \n", "\n", "\n", "Pray for New York and the whole eastern seaboard 🙏 ☔🌊 #hurricanesandy http://t.co/cU5n4twy\n", "\n", "--------------------------------------------------------\n", - "pray new york whole eastern seaboard hurricanesandy \n", + "pray new york whole eastern seaboard hurricane sandy \n", "\n", "\n", "Ummmm.... A SHARK in front of your house due to a hurricane!? No, thanks! #NJ #hurricanesandy #notfunny http://t.co/rkZ0PNIz\n", "\n", "--------------------------------------------------------\n", - "ummmm shark front house due hurricane thanks nj hurricanesandy notfunny \n", + "ummmm shark front house due hurricane thanks new jersey hurricane sandy notfunny \n", "\n", "\n", "#hurricanesandy is here folks http://t.co/gRmZJrLr\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy folks \n", - "\n", - "\n", - "🇺🇸 #merica #hurricanesandy http://t.co/k9gZtzKk\n", - "\n", - "--------------------------------------------------------\n", - "merica hurricanesandy \n", - "\n", - "\n", - "#WTF #HurricaneSandy http://t.co/7Dxoe63t\n", - "\n", - "--------------------------------------------------------\n", - "wtf hurricanesandy \n", + "hurricane sandy folks \n", "\n", "\n", "That shit crayy!!! #NewYork #HurricaneSandy #Frankenstorm #Nature http://t.co/IIrqFoCz\n", "\n", "--------------------------------------------------------\n", - "shit crayy newyork hurricanesandy frankenstorm nature \n", + "shit crayy new york hurricane sandy frankenstorm nature \n", "\n", "\n", "So crazy scary. #Frankenstorm #HurricaneSandy http://t.co/QZOVEJxn\n", "\n", "--------------------------------------------------------\n", - "crazy scary frankenstorm hurricanesandy \n", + "crazy scary frankenstorm hurricane sandy \n", "\n", "\n", "Shark ended up on a New Jersey Doorstep... #HurricaneSandy http://t.co/Em00qDBF\n", "\n", "--------------------------------------------------------\n", - "shark ended new jersey doorstep hurricanesandy \n", + "shark ended new jersey doorstep hurricane sandy \n", "\n", "\n", "We don't even have it bad... #HurricaneSandy http://t.co/0GpYj8ch\n", "\n", "--------------------------------------------------------\n", - "even bad hurricanesandy \n", + "even bad hurricane sandy \n", "\n", "\n", "Huge respect for them 💜 #hurricanesandy #unknownsoldier #protect http://t.co/XFZx4FGQ\n", "\n", "--------------------------------------------------------\n", - "huge respect hurricanesandy unknownsoldier protect \n", + "huge respect hurricane sandy unknown soldier protect \n", "\n", "\n", "Lol ain't no way «@kissmyasshleey #hurricaneSandy just got real http://t.co/0zlI6Ns5»\n", "\n", "--------------------------------------------------------\n", - "lol way hurricanesandy got real \n", + "way hurricane sandy got real \n", "\n", "\n", "Rain or shine us soldiers stand together #hurricanesandy http://t.co/VSqsKnfS\n", "\n", "--------------------------------------------------------\n", - "rain shine us soldiers stand together hurricanesandy \n", - "\n", - "\n", - "Yikes! #HurricaneSandy #NY http://t.co/ySZRoRhU\n", - "\n", - "--------------------------------------------------------\n", - "yikes hurricanesandy ny \n", + "rain shine us soldiers stand together hurricane sandy \n", "\n", "\n", "The respect I have for them is beyond extraordinary. #HurricaneSandy #ThreeUnknownSoldiers #DC http://t.co/LWZUTL6w\n", "\n", "--------------------------------------------------------\n", - "respect beyond extraordinary hurricanesandy threeunknownsoldiers dc \n", + "respect beyond extraordinary hurricane sandy threeunknown soldiers dc \n", "\n", "\n", "So there's a shark in the street... #lbi #hurricanesandy http://t.co/wzW9RoQv\n", "\n", "--------------------------------------------------------\n", - "shark street lbi hurricanesandy \n", + "shark street lbi hurricane sandy \n", "\n", "\n", "#repost from my buddy kord, but damn #hurricaneSandy washing #shark up to the front door! #wow http://t.co/ZEdApooN\n", "\n", "--------------------------------------------------------\n", - "repost buddy kord damn hurricanesandy washing shark front wow \n", + "repost buddy kord damn hurricane sandy washing shark front \n", "\n", "\n", "Sharks just swimming through the neighborhood.. #hurricanesandy http://t.co/kVHkoIEy\n", "\n", "--------------------------------------------------------\n", - "sharks swimming neighborhood hurricanesandy \n", + "sharks swimming neighborhood hurricane sandy \n", "\n", "\n", "I've never had more respect for someone. #tomboftheunknownsoldier #hurricanesandy #dedication http://t.co/KKn6jKX2\n", "\n", "--------------------------------------------------------\n", - "never respect someone tomboftheunknownsoldier hurricanesandy dedication \n", + "never respect someone tomboftheunknown soldier hurricane sandy dedication \n", "\n", "\n", "#TomboftheUnknownSoldier#nevernotguarded #commitment #pride #hurricanesandy http://t.co/rkmcFAfw\n", "\n", "--------------------------------------------------------\n", - "tomboftheunknownsoldier nevernotguarded commitment pride hurricanesandy \n", + "tomboftheunknown soldiernevernotguarded commitment pride hurricane sandy \n", "\n", "\n", "wow #repost #dedication #TombofTheUnknown #hurricanesandy #arlingtonnationalcemetary http://t.co/RdfcLsU7\n", "\n", "--------------------------------------------------------\n", - "wow repost dedication tomboftheunknown hurricanesandy arlingtonnationalcemetary \n", + "repost dedication tomboftheunknown hurricane sandy arlingtonnationalcemetary \n", "\n", "\n", "An empty Times Square, something I never expected to see. #stillmissyounyc #hurricanesandy #nyc http://t.co/HtcoqQXM\n", "\n", "--------------------------------------------------------\n", - "empty times square something never expected see stillmissyounyc hurricanesandy nyc \n", + "empty times square something never expected see stillmissyounyc hurricane sandy new york city \n", "\n", "\n", "Honey, there's a #shark in the front yard! #hurricanesandy #NewJersy http://t.co/hHjhdZ6t\n", "\n", "--------------------------------------------------------\n", - "honey shark front yard hurricanesandy newjersy \n", + "honey shark front yard hurricane sandy newjersy \n", "\n", "\n", "#respect #TombOfTheUnknownSoldier #HurricaneSandy #military #USA #Proud http://t.co/K6zZQo9t\n", "\n", "--------------------------------------------------------\n", - "respect tomboftheunknownsoldier hurricanesandy military usa proud \n", + "respect tomboftheunknown soldier hurricane sandy military usa proud \n", "\n", "\n", "Whoaaaa! =/ Some \"2012\" shit #Scary #HurricaneSandy #NYisFucked http://t.co/SNYE26Go\n", "\n", "--------------------------------------------------------\n", - "whoaaaa 2012 shit scary hurricanesandy nyisfucked \n", + "some2 shit scary hurricane sandy nyisfucked \n", "\n", "\n", "Shark by someone's front door #hurricanesandy http://t.co/qiY9Jcxl\n", "\n", "--------------------------------------------------------\n", - "shark someone front hurricanesandy \n", + "shark someone front hurricane sandy \n", "\n", "\n", "Times Square train station looking mint.. #timessquare #hurricanesandy http://t.co/vGL6RMFe\n", "\n", "--------------------------------------------------------\n", - "times square train station looking mint timessquare hurricanesandy \n", + "times square train station looking mint timessquare hurricane sandy \n", "\n", "\n", "#NY #newyork #statueofliberty #hurricanesandy #theworldisending http://t.co/KlXTJsFG\n", "\n", "--------------------------------------------------------\n", - "ny newyork statueofliberty hurricanesandy theworldisending \n", + "new york new york statueofliberty hurricane sandy theworldisending \n", "\n", "\n", "free scuba lessons in Times Square! thanks sandy! #hurricanesandy #hurricanenyc #flood http://t.co/8XaojqEV\n", "\n", "--------------------------------------------------------\n", - "free scuba lessons times square thanks sandy hurricanesandy hurricanenyc flood \n", + "free scuba lessons times square thanks sandy hurricane sandy hurricanenyc flood \n", "\n", "\n", "#hurricanesandy hits nyc http://t.co/eybWHWMc\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy hits nyc \n", + "hurricane sandy hits new york city \n", "\n", "\n", "#tomboftheunknownsoldier #hurricanesandy #MERICA #supportourtroops http://t.co/fELeUfSo\n", "\n", "--------------------------------------------------------\n", - "tomboftheunknownsoldier hurricanesandy merica supportourtroops \n", + "tomboftheunknown soldier hurricane sandy merica supportourtroops \n", "\n", "\n", "Washed up on Rutland.... #9oz #90s #sandy #hurricanesandy http://t.co/JnwsgLh8\n", "\n", "--------------------------------------------------------\n", - "washed rutland 9oz 90s sandy hurricanesandy \n", - "\n", - "\n", - "Omg. #repost #hurricanesandy http://t.co/2hOWbIai\n", - "\n", - "--------------------------------------------------------\n", - "omg repost hurricanesandy \n", + "washed rutland 0s sandy hurricane sandy \n", "\n", "\n", "What #sandy looks like in New York . #dope #hurricanesandy #statueofliberty http://t.co/LFogA7D2\n", "\n", "--------------------------------------------------------\n", - "sandy looks like new york dope hurricanesandy statueofliberty \n", + "sandy looks like new york dope hurricane sandy statueofliberty \n", "\n", "\n", "#dedication #honor #heroes #america #hurricanesandy #TombOfTheUnknownSoldier http://t.co/XbIEp9Ls\n", "\n", "--------------------------------------------------------\n", - "dedication honor heroes america hurricanesandy tomboftheunknownsoldier \n", + "dedication honor heroes america hurricane sandy tomboftheunknown soldier \n", "\n", "\n", "#HurricaneSandy #StatueOfLiberty #NYC http://t.co/4SO0XN3W\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statueofliberty nyc \n", + "hurricane sandy statueofliberty new york city \n", "\n", "\n", "Forgot to post this last night #hurricanesandy http://t.co/6pe5aHlC\n", "\n", "--------------------------------------------------------\n", - "forgot post last night hurricanesandy \n", + "forgot post last night hurricane sandy \n", "\n", "\n", "This should keep the Kids from playing in the water!!! #Hurricane #HurricaneSandy http://t.co/3gzs9GaU\n", "\n", "--------------------------------------------------------\n", - "keep kids playing water hurricane hurricanesandy \n", + "keep kids playing water hurricane hurricane sandy \n", "\n", "\n", "Nature in its deadliest form!! #hurricanesandy #amazingpic http://t.co/lBr9rCvU\n", "\n", "--------------------------------------------------------\n", - "nature deadliest form hurricanesandy amazingpic \n", + "nature deadliest form hurricane sandy amazingpic \n", "\n", "\n", "This display of dedication makes me proud to be an American #unknownsoldier #guards #hurricaneSandy http://t.co/QtbIEA4k\n", "\n", "--------------------------------------------------------\n", - "display dedication makes proud american unknownsoldier guards hurricanesandy \n", + "display dedication makes proud american unknown soldier guards hurricane sandy \n", "\n", "\n", "O que estão vendo são apenas tubarões nadando pelas ruas de #nyc #hurricanesandy http://t.co/mRzUKMAl\n", "\n", "--------------------------------------------------------\n", - "estão vendo são apenas tubarões nadando pelas ruas nyc hurricanesandy \n", + "vendo apenas tubarões nadando ruas new york city hurricane sandy \n", "\n", "\n", "Lord bless them. Still standing during #HurricaneSandy http://t.co/shozTrfG\n", "\n", "--------------------------------------------------------\n", - "lord bless still standing hurricanesandy \n", + "lord bless still standing hurricane sandy \n", "\n", "\n", "That's hilarious.... #hurricanesandy #sandy #shark #flood http://t.co/nfEYaIMT\n", "\n", "--------------------------------------------------------\n", - "hilarious hurricanesandy sandy shark flood \n", + "hilarious hurricane sandy sandy shark flood \n", "\n", "\n", "Umm, this isn't okay. #nyc #frankenstorm #hurricanesandy http://t.co/yDxgUlOX\n", "\n", "--------------------------------------------------------\n", - "umm okay nyc frankenstorm hurricanesandy \n", - "\n", - "\n", - "«@shreyaghoshal “@Jeffreyiqbal: Flooding so bad the sharks are out to play! #HurricaneSandy http://t.co/8wfCwes2” is it real!!!!»\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "umm okay new york city frankenstorm hurricane sandy \n", "\n", "\n", "Wowzers #hurricanesandy #2012 http://t.co/kVzi9H4J\n", "\n", "--------------------------------------------------------\n", - "wowzers hurricanesandy 2012 \n", + "zers hurricane sandy012 \n", "\n", "\n", "Holy crap that looks awesome! #hurricanesandy #hurricanesandynj #hurricanesandyny http://t.co/ZfVo8F6l\n", "\n", "--------------------------------------------------------\n", - "holy crap looks awesome hurricanesandy hurricanesandynj hurricanesandyny \n", + "holy crap looks awesome hurricane sandy hurricane sandynj hurricane sandyny \n", "\n", "\n", "New York has a way of making everything look amazing, even #hurricanesandy stay safe loves 🗽 http://t.co/69sPP6kz\n", "\n", "--------------------------------------------------------\n", - "new york way making everything look amazing even hurricanesandy stay safe loves \n", + "new york way making everything look amazing even hurricane sandy stay safe loves \n", "\n", "\n", "Major respect #hurricanesandy #tomboftheinknownsoldier http://t.co/9pDOS03o\n", "\n", "--------------------------------------------------------\n", - "major respect hurricanesandy tomboftheinknownsoldier \n", + "major respect hurricane sandy tomboftheinknownsoldier \n", "\n", "\n", "#HurricaneSandy I wish everyone to be safe out there. http://t.co/D4G8usqe\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy wish everyone safe \n", + "hurricane sandy wish everyone safe \n", "\n", "\n", "A house in New Jersey. Pretty crazy #HurricaneSandy http://t.co/pNWi2Z5z\n", "\n", "--------------------------------------------------------\n", - "house new jersey pretty crazy hurricanesandy \n", + "house new jersey pretty crazy hurricane sandy \n", "\n", "\n", "أوكي جاك العلم .. يريور يقز بشوارع نيوجيرسي - a shark in wondering in NJ streets! #sandy #hurricanesandy http://t.co/MT2mhgZK\n", "\n", "--------------------------------------------------------\n", - "أوكي جاك العلم يريور يقز بشوارع نيوجيرسي shark wondering nj streets sandy hurricanesandy \n", + "أوكي جاك العلم يريور يقز بشوارع نيوجيرسي shark wondering new jersey streets sandy hurricane sandy \n", "\n", "\n", "#heroes #HurricaneSandy http://t.co/isOUo8lk\n", "\n", "--------------------------------------------------------\n", - "heroes hurricanesandy \n", + "heroes hurricane sandy \n", "\n", "\n", "Sharks on the FDR tho.... #hurricaneSandy http://t.co/Yja7ugTM\n", "\n", "--------------------------------------------------------\n", - "sharks fdr tho hurricanesandy \n", + "sharks fdr tho hurricane sandy \n", "\n", "\n", "Tony Soprano replaced by new sharks in New Jersey neighbourhoods. #HurricaneSandy http://t.co/sU6e4ZwW\n", "\n", "--------------------------------------------------------\n", - "tony soprano replaced new sharks new jersey neighbourhoods hurricanesandy \n", + "tony soprano replaced new sharks new jersey neighbourhoods hurricane sandy \n", "\n", "\n", "Looks like its off a film #hurricanesandy http://t.co/RNQs4zKv\n", "\n", "--------------------------------------------------------\n", - "looks like film hurricanesandy \n", + "looks like film hurricane sandy \n", "\n", "\n", "#repost #supportourtroops #usa #soldier #militarylove #hurricanesandy ❤❤❤❤💙💙💙💙🇺🇸 http://t.co/fiXKDJR2\n", "\n", "--------------------------------------------------------\n", - "repost supportourtroops usa soldier militarylove hurricanesandy \n", + "repost supportourtroops usa soldier militarylove hurricane sandy \n", "\n", "\n", "Liberty y u fuck wit Sandy and now u hiding #repost #comedy http://t.co/fJvH46bA\n", @@ -37753,16 +33639,10 @@ "joder tiburinos lado casas gente sandy \n", "\n", "\n", - "@milenagimon:#Sandy en NY! Tremenda imagen del huracán. Parece el \"Día de la Independencia 2\" http://t.co/41jUweux SOBRECOGEDOR! RT.\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny tremenda imagen huracán parece día independencia 2 sobrecogedor rt \n", - "\n", - "\n", "La Estatua de La Libertad vs. Sandy. http://t.co/J6qDWzLP\n", "\n", "--------------------------------------------------------\n", - "estatua libertad vs sandy \n", + "estatua libertad versus sandy \n", "\n", "\n", "Hayyyy nanita!!!! EN VIVO #SANDY / ESTATUA DE LA LIBERTAD #NEWYORK #USA http://t.co/I0pdTfsk” / impresionante :0\n", @@ -37786,13 +33666,7 @@ "Espectacular foto de l'estatua de la llibertat amb l'huracá #sandy a sobre!! http://t.co/pGA2Xfyw\n", "\n", "--------------------------------------------------------\n", - "espectacular foto l estatua llibertat amb l huracá sandy \n", - "\n", - "\n", - "@ToneItUp: Okay this is crazy... #Sandy http://t.co/rgOzmxtt omggg lol\n", - "\n", - "--------------------------------------------------------\n", - "okay crazy sandy omggg lol \n", + "espectacular foto estatua llibertat amb huracá sandy \n", "\n", "\n", "Just for the record, this picture is so shopped it hurts my brain that people think it's real: http://t.co/f5GERSSJ #sandy\n", @@ -37804,25 +33678,19 @@ "I'm not sure if this is real or not but this is insane #Sandy #NY #2012 http://t.co/DsEgYtxs\n", "\n", "--------------------------------------------------------\n", - "sure real insane sandy ny 2012 \n", + "sure real insane sandy ny012 \n", "\n", "\n", "This is no movie!!! #Sandy #HurricaneSandy #Praying #NYC #NJ #USA 🙏😞🙏 http://t.co/8nCnqg0C\n", "\n", "--------------------------------------------------------\n", - "movie sandy hurricanesandy praying nyc nj usa \n", - "\n", - "\n", - "WOW \\n#SANDY\\n\\nRT:\"@CHUCKIELOVE: SHE IS ARRIVING! \"..And So I says, COME ON..\"\\nhttp://t.co/1v9ZyvbW”\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", + "movie sandy hurricane sandy praying new york city new jersey usa \n", "\n", "\n", "Not sure if this is real, but if it is... Wow. #Sandy http://t.co/cf1lyvY0\n", "\n", "--------------------------------------------------------\n", - "sure real wow sandy \n", + "sure real sandy \n", "\n", "\n", "Woa, is this legit? RT @psimadethis: #UnderwaterSubway #Sandy http://t.co/978MRnyX\n", @@ -37837,18 +33705,6 @@ "shark swimming road new jersey freaking sandy \n", "\n", "\n", - "this real?!RT \\n“@MarlowNYC: Holy Shit Alert: shark swimmin in strts of Brigantine, N.J., during #Sandy (via @sista71) http://t.co/OBtUKseB”\n", - "\n", - "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", - "wow! for real? hurricane #sandy? RT @mizzliann: \"@iansomerhalder: This looks like a movie!Wtf?! http://t.co/2mWZPxcE\" omg\n", - "\n", - "--------------------------------------------------------\n", - "wow real hurricane sandy \n", - "\n", - "\n", "Amazing pic RT @elenaquiros9: RT @damnitstrue: This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/vaQBex3i\n", "\n", "--------------------------------------------------------\n", @@ -37858,13 +33714,13 @@ "This picture is #amazing. #Hurricane #Sandy #HurricaneSandy #Weather #Storm #Cool http://t.co/1UulCV9N\n", "\n", "--------------------------------------------------------\n", - "picture amazing hurricane sandy hurricanesandy weather storm cool \n", + "picture amazing hurricane sandy hurricane sandy weather storm cool \n", "\n", "\n", "Dear #Sandy, this is real ironic how you washed up a #Shark on a #NJ #Highway. Did @ Perth Amboy Waterfront http://t.co/IBTFfdzg\n", "\n", "--------------------------------------------------------\n", - "dear sandy real ironic washed shark nj highway perth amboy waterfront \n", + "dear sandy real ironic washed shark new jersey highway perth amboy waterfront \n", "\n", "\n", "That is an unsettling image:( RT @RSHotel: A very #empty Times Square (via Reddit) #nyc #sandy http://t.co/tnW4JfkG\n", @@ -37888,25 +33744,13 @@ "#Sandy #nyc #statueofliberty this is an astonishing picture http://t.co/ZZhAXGb2\n", "\n", "--------------------------------------------------------\n", - "sandy nyc statueofliberty astonishing picture \n", - "\n", - "\n", - "Is that real?? Whoa RT @pablogarabito: #Sandy http://t.co/4tV3y1Jo\n", - "\n", - "--------------------------------------------------------\n", - "real whoa \n", - "\n", - "\n", - "Is this 4 real? #sandy http://t.co/Vc04VcMh\n", - "\n", - "--------------------------------------------------------\n", - "4 real sandy \n", + "sandy new york city statueofliberty astonishing picture \n", "\n", "\n", "No ways lol RT @BlackheartViper: RT @ToneItUp: Okay this is crazy... #Sandy http://t.co/kGw9DDmU\n", "\n", "--------------------------------------------------------\n", - "ways lol \n", + "ways \n", "\n", "\n", "These guards are why America is so amazing. #Military #Merica #Sandy http://t.co/8mDjrb0L\n", @@ -37933,12 +33777,6 @@ "repost kinda scary sandy \n", "\n", "\n", - "Crazy RT @Mr__2DamnRaw: This is insane! New York with #hurricanesandy! http://t.co/rL6kpxcb\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", - "\n", - "\n", "This shit is deep #SANDY SHARKS IN THE FLOODED STREETS OF NEW JERSEY http://t.co/VSsP07md\n", "\n", "--------------------------------------------------------\n", @@ -37948,13 +33786,13 @@ "this is what NYC looked like #sandy http://t.co/D9EnTpAZ\n", "\n", "--------------------------------------------------------\n", - "nyc looked like sandy \n", + "new york city looked like sandy \n", "\n", "\n", "This is awesome. #NYC #Sandy http://t.co/XO94KQsJ\n", "\n", "--------------------------------------------------------\n", - "awesome nyc sandy \n", + "awesome new york city sandy \n", "\n", "\n", "#sandy looks hella crazy, but this photo is amazing. #beautiful even. Stay safe, east coast!! 🙏 #statueoflib http://t.co/GwpEiIz3\n", @@ -37975,16 +33813,10 @@ "nuts sharks streetsharks newjersey besafe boattime sidemirror sandy flooding igna \n", "\n", "\n", - "Is this real? RT @FawazJ7 New York sandy hurricane over Freedom statue #NYC #Sandy http://t.co/MrzPahU8\n", - "\n", - "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", "This is going to be one hell of a storm! Hope you guys will get through this one safe!#NYC #Sandy http://t.co/X3G7diwk\n", "\n", "--------------------------------------------------------\n", - "going one hell storm hope guys get one safe nyc sandy \n", + "going one hell storm hope guys get one safe new york city sandy \n", "\n", "\n", "Where's Will Smith!? RT @Pykaso_: Dope & Scary RT @OvATyME: This is a dope pic. Hurricane Sandy approaching NY http://t.co/kfRTCYWY\n", @@ -37996,25 +33828,19 @@ "This is terrifying #HurricaneSandy#SuperStormSandy #NewYork http://t.co/7LGj5Auf\n", "\n", "--------------------------------------------------------\n", - "terrifying hurricanesandy superstormsandy newyork \n", + "terrifying hurricane sandysuperstormsandy new york \n", "\n", "\n", "This is not fake or an album cover its #NYC #sandy Nature is a bitch @ GPR http://t.co/64Qq5B2I\n", "\n", "--------------------------------------------------------\n", - "fake album cover nyc sandy nature bitch gpr \n", + "fake album cover new york city sandy nature bitch gpr \n", "\n", "\n", "Is that real? RT“@ikeepsit_1hunid: OMG Prayers & Stay Safe!! RT @NuJerzeyDevil: Shit is real on the east coast! #Sandy http://t.co/eLnD1dPf”\n", "\n", "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", - "Holy...RT @ohiheartquotes: This shark was found in front of someone's house in New Jersey. #ohmygod #Sandy http://t.co/YwYBJTM4\n", - "\n", - "--------------------------------------------------------\n", - "holy \n", + "real rt \n", "\n", "\n", "Allahu Akbar!! RT @damnitstrue: This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/l2pZk0t2\n", @@ -38023,34 +33849,16 @@ "allahu akbar \n", "\n", "\n", - "WTF ???!! RT @J_BoMb10: RT @cait_grave: Is this real life!? #shark in the streets of #rehoboth #Sandy ahhhhhhh !!!! http://t.co/9zsZKhNw\n", - "\n", - "--------------------------------------------------------\n", - "wtf \n", - "\n", - "\n", - "@ToneItUp: Okay this is crazy... #Sandy http://t.co/On5KrPd5 wow that's crazy.\n", - "\n", - "--------------------------------------------------------\n", - "okay crazy sandy wow crazy \n", - "\n", - "\n", "#Repost. Saying this is an extremely rare sight would be an understatement. #NewYork #Sandy @ Times Square http://t.co/hLYdgW6l\n", "\n", "--------------------------------------------------------\n", - "repost saying extremely rare sight would understatement newyork sandy times square \n", + "repost saying extremely rare sight would understatement new york sandy times square \n", "\n", "\n", "Un requin à New York ! RT @andrewjo52: This is creepy. Sharks swimming in downtown New Jersey ?????? #Sandy http://t.co/RyeUFQe1\n", "\n", "--------------------------------------------------------\n", - "requin à new york \n", - "\n", - "\n", - "#repost this is crazy!! #Sandy http://t.co/Q8bgoE9P\n", - "\n", - "--------------------------------------------------------\n", - "repost crazy sandy \n", + "requinnew york \n", "\n", "\n", "#sandy #USA ??? This is a false picture !!!!! http://t.co/6nxzomUr\n", @@ -38068,7 +33876,7 @@ "Hoping this is fake... #WTF #Sandy http://t.co/t4frvHmr\n", "\n", "--------------------------------------------------------\n", - "hoping fake wtf sandy \n", + "hoping fake sandy \n", "\n", "\n", "“@alksmorgan: Is this supposed to be scary? Sharks in the streets #sandy http://t.co/ABY8xbCn” no way! That's messed up\n", @@ -38092,13 +33900,7 @@ "Is it weird that I think this picture is beautiful?...like wow #sandy #newyork #statueofliberty http://t.co/tuPTGjr2\n", "\n", "--------------------------------------------------------\n", - "weird think picture beautiful like wow sandy newyork statueofliberty \n", - "\n", - "\n", - "Whoaaaaa. #Sandy RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/LlhdCQVO\n", - "\n", - "--------------------------------------------------------\n", - "whoaaaaa sandy \n", + "weird think picture beautiful like sandy new york statueofliberty \n", "\n", "\n", "Salute to the Marines. Strong Statement in this pic. RT @SteveMHII: #Sandy who? http://t.co/ylQojGMp\n", @@ -38131,16 +33933,10 @@ "prayers continue dealing w sandy situations like pic shark photo shopped \n", "\n", "\n", - "@WHODATLIFEGUARD: #SANDY got sharks swimming in the road , This is not a fake. Photo was sent by a friend in NY http://t.co/jqmgJz4D\n", - "\n", - "--------------------------------------------------------\n", - "sandy got sharks swimming road fake photo sent friend ny \n", - "\n", - "\n", "Is this photo of NYC real? #Sandy :( http://t.co/krZ2dwku\n", "\n", "--------------------------------------------------------\n", - "photo nyc real sandy \n", + "photo new york city real sandy \n", "\n", "\n", "Swag RT @Every1HatesQue: Crazy RT @Mr__2DamnRaw: This is insane! New York with #hurricanesandy! http://t.co/zWNrNpNk\n", @@ -38149,12 +33945,6 @@ "swag \n", "\n", "\n", - "@SirSchueler: “@ToneItUp: Okay this is crazy... #Sandy http://t.co/SUHArxJa” #Shark #إعصار_ساندي\n", - "\n", - "--------------------------------------------------------\n", - "shark إعصار ساندي \n", - "\n", - "\n", "This is Scary, taken from somebody stuck in hurricane sandy. #sandy #shark #flood http://t.co/GSQhrble\n", "\n", "--------------------------------------------------------\n", @@ -38164,19 +33954,19 @@ "OMG which movie is it?? RT @DddDominguez: RT @danaybg: You must see this… Another Shark on the street! #Sandy http://t.co/bk2fMQgM\n", "\n", "--------------------------------------------------------\n", - "omg movie \n", + "movie \n", "\n", "\n", "Yup“@SeanEatsAtlaNta: Is this real? RT @FawazJ7 New York sandy hurricane over Freedom statue #NYC #Sandy http://t.co/pYfKoopX”\n", "\n", "--------------------------------------------------------\n", - "yup real \n", + "yup \n", "\n", "\n", "#Sharks swimming in the streets of #NewJersey. Lol this is #nuts. Damn you #sandy! \\nThank you kemonutz for http://t.co/sLh0bWhU\n", "\n", "--------------------------------------------------------\n", - "sharks swimming streets newjersey lol nuts damn sandy thank kemonutz \n", + "sharks swimming streets newjersey nuts damn sandy thank kemonutz \n", "\n", "\n", "Is this supposed to be scary? Sharks in the streets #sandy http://t.co/sFw6bkhn\n", @@ -38188,13 +33978,13 @@ "Is this from Independence Day or Hurricane Sandy!? #Sandy #Armageddon #omg http://t.co/uH67Kbep\n", "\n", "--------------------------------------------------------\n", - "independence day hurricane sandy sandy armageddon omg \n", + "independence day hurricane sandy sandy armageddon \n", "\n", "\n", "Omg this is so 2012. #sandy #hurricanesandy @ New York City, NY http://t.co/TUUrlLlq\n", "\n", "--------------------------------------------------------\n", - "omg 2012 sandy hurricanesandy new york city ny \n", + "so012 sandy hurricane sandy new york city new york \n", "\n", "\n", "This shit is crazy... #sandy is a real bitch... http://t.co/3WxvHfzM\n", @@ -38203,46 +33993,40 @@ "shit crazy sandy real bitch \n", "\n", "\n", - "Is that real?? RT @LaurieMeisel: I am there everyday! #NYC subway system UNDERWATER! via @SeanMalarkey #Sandy http://t.co/WbjVgpT8\n", - "\n", - "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", "My prayers to the #eastcoast right now. Especially #ny cause this bitch #sandy is no joke. http://t.co/6TJBCyzn\n", "\n", "--------------------------------------------------------\n", - "prayers eastcoast right especially ny cause bitch sandy joke \n", + "prayers eastcoast right especially new york cause bitch sandy joke \n", "\n", "\n", "This pic is for real. Holy Sh@t #Sandy http://t.co/dU0CYUtV\n", "\n", "--------------------------------------------------------\n", - "pic real holy sh sandy \n", + "pic real holysandy \n", "\n", "\n", "Whoah, is this for real?? > Porch fishing for sharks #Sandy > http://t.co/Qjxe8fPW\n", "\n", "--------------------------------------------------------\n", - "whoah real greater porch fishing sharks sandy greater \n", + "real porch fishing sharks sandy \n", "\n", "\n", "This is awesome #TombOfTheUnknownSoldier #DC #Sandy #HurricaneSandy http://t.co/GFkgVJk4\n", "\n", "--------------------------------------------------------\n", - "awesome tomboftheunknownsoldier dc sandy hurricanesandy \n", + "awesome tomboftheunknown soldier dc sandy hurricane sandy \n", "\n", "\n", "Is this real life? #sandy #hurricanesandy #storm #cray http://t.co/mxh90FLq\n", "\n", "--------------------------------------------------------\n", - "real life sandy hurricanesandy storm cray \n", + "real life sandy hurricane sandy storm cray \n", "\n", "\n", "This pic is so freaking American “@bri_j_amos: #Sandy doesn't stop Soldiers protecting the Tomb of the Unknown Soldier. http://t.co/xKrWQUv1\n", "\n", "--------------------------------------------------------\n", - "pic freaking american sandy stop soldiers protecting tomb unknown soldier \n", + "pic freaking american \n", "\n", "\n", "Soldiers still guarding the Tomb of the Unknowns...this picture is from this morning. #Sandy http://t.co/R1WVKqRD via @TwitPic\n", @@ -38257,16 +34041,10 @@ "times square legend style earlier evening sandy \n", "\n", "\n", - "Lmfao RT @StyleOnEleven: This is Times Square #Sandy http://t.co/zNuc5ZwT\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", "Being told this one is real. Wow. RT @Franke609: @AtlanticCity911 Shark in the street in #Brigantine, New Jersey #Sandy http://t.co/Xu7Cxnr1\n", "\n", "--------------------------------------------------------\n", - "told one real wow \n", + "told one real \n", "\n", "\n", "It's also not of this storm! RT @KomalMinhas: Well that's an insane image! #sandy http://t.co/pIW1lkCc\n", @@ -38278,7 +34056,7 @@ "This is real? Shark in New Jersey #BraziliansPrayForUSA #PrayForUSA #HurricaneSandy #Sandy http://t.co/zBI8O44l\n", "\n", "--------------------------------------------------------\n", - "real shark new jersey braziliansprayforusa prayforusa hurricanesandy sandy \n", + "real shark new jersey braziliansprayforusa prayforusa hurricane sandy sandy \n", "\n", "\n", "https://t.co/VPTI3ffn #sandy....this is some day after tomorrow type ish\n", @@ -38290,13 +34068,13 @@ "Omg!! This is huge RT @Gidi_Traffic: #PHOTO @Ogaugust451: Hurricane Sandy gaining momentum. #sm4cc @Gidi_Traffic http://t.co/0AR2G9Vj\n", "\n", "--------------------------------------------------------\n", - "omg huge \n", + "huge \n", "\n", "\n", "This is by far the craziest thing I've seen in all these #storm #sandy #pics #sharks in #flood in #NJ #yikes http://t.co/zXn2uArj\n", "\n", "--------------------------------------------------------\n", - "far craziest thing seen storm sandy pics sharks flood nj yikes \n", + "far craziest thing seen storm sandy pics sharks flood new jersey \n", "\n", "\n", "“@kennybelvin: How very, ominous. #sandy http://t.co/Z7bLhY5d” is that legit real?\n", @@ -38314,13 +34092,13 @@ "This is not a movie .. This is #NewYork city yesterday !! #Sandy http://t.co/XXYqWQee\n", "\n", "--------------------------------------------------------\n", - "movie newyork city yesterday sandy \n", + "movie new york city yesterday sandy \n", "\n", "\n", "This is an actual picture of #Sandy as it was coming into NYC today...My prayers are with the people in her http://t.co/8crq1Em6\n", "\n", "--------------------------------------------------------\n", - "actual picture sandy coming nyc today prayers people \n", + "actual picture sandy coming new york city today prayers people \n", "\n", "\n", "This looks like War of the Worlds. Cue space invasion. #Frankenstorm RT @_amber_b: Wow!! #sandy http://t.co/OyMauTVL\n", @@ -38332,7 +34110,7 @@ "Wilding for respect lol RT @BoBBiLLz: Lmfao RT @StyleOnEleven: This is Times Square #Sandy http://t.co/2ZodxMNh\n", "\n", "--------------------------------------------------------\n", - "wilding respect lol \n", + "wilding respect \n", "\n", "\n", "The calm before the storm. This is an amazing photograph! #sandy #scaryshot http://t.co/P2N4SxHs\n", @@ -38350,19 +34128,13 @@ "And this is why I will always live in California 😳🎣 #HurricaneSandy http://t.co/xEHGzcaX\n", "\n", "--------------------------------------------------------\n", - "always live california hurricanesandy \n", - "\n", - "\n", - "That is a shark. . #sandy RT @ToneItUp: Okay this is crazy... #Sandy http://t.co/cPOCo5eR\n", - "\n", - "--------------------------------------------------------\n", - "shark sandy \n", + "always live california hurricane sandy \n", "\n", "\n", "#Sandy #Superstorm This is a picture of a shark on 142nd street in OC!!!! !!! http://t.co/LJSWKcy1\n", "\n", "--------------------------------------------------------\n", - "sandy superstorm picture shark 142nd street oc \n", + "sandy superstorm picture shark on42nd street oc \n", "\n", "\n", "You must see this... Another Shark on the street! #Sandy http://t.co/YXwTOtNX”\n", @@ -38380,7 +34152,7 @@ "Whoa! This is the Statue of Liberty right now - http://t.co/X3q8yTC5 #sandy via cam @cnn @weatherchannel\n", "\n", "--------------------------------------------------------\n", - "whoa statue liberty right sandy via cam \n", + "statue liberty right sandycam \n", "\n", "\n", "This is the real day after tomorrow! #sandy #hurricane #eastcoast http://t.co/i6my04Gm まるで、リアル「デイ・アフター・トゥモロー」状態。ニューヨークはえらい事になってます。\n", @@ -38404,25 +34176,25 @@ "Craziest pic this is #surreal #subway #nyc #timesquare #flood #flooding #sandy #crazy #nofilter http://t.co/RcfmVwUs\n", "\n", "--------------------------------------------------------\n", - "craziest pic surreal subway nyc timesquare flood flooding sandy crazy nofilter \n", + "craziest pic surreal subway new york city timesquare flood flooding sandy crazy nofilter \n", "\n", "\n", "#regram this picture is sweet! #sandy🌊🌀 http://t.co/RmBtUWIX\n", "\n", "--------------------------------------------------------\n", - "regram picture sweet sandy \n", + "picture sweet sandy \n", "\n", "\n", "Can someone verify if this seal is real? #HurricaneSandy http://t.co/MJwngA6F\n", "\n", "--------------------------------------------------------\n", - "someone verify seal real hurricanesandy \n", + "someone verify seal real hurricane sandy \n", "\n", "\n", "Hurricane Sandy. Wow. This is crazy. #sandy http://t.co/EIhXUe01\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy wow crazy sandy \n", + "hurricane sandy crazy sandy \n", "\n", "\n", "This photo is phenomenal. Army soldiers guard The Tomb of the Unknowns as Sandy begins to rage. http://t.co/83aQwcdO\n", @@ -38449,36 +34221,18 @@ "unbelievable sandy \n", "\n", "\n", - "#sandy #staysafe RT @billmckibben: Boardwalk floating in sections through the flooded streets of Atlantic City http://t.co/QMcqLQss #sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy staysafe \n", - "\n", - "\n", "Ground Zero #Sandy http://t.co/KA1jNv3I\n", "\n", "--------------------------------------------------------\n", "ground zero sandy \n", "\n", "\n", - "scary: “@jfporchez: Ground zero http://t.co/wn8wZzHk #sandy”\n", - "\n", - "--------------------------------------------------------\n", - "scary \n", - "\n", - "\n", "#SANDY IMPACT: Ground Zero http://t.co/qGbk7voa (via @BuzzFeedAndrew) (attn: @ShafaqHasan)\n", "\n", "--------------------------------------------------------\n", "sandy impact ground zero attn \n", "\n", "\n", - "Amazing photo RT @WGRZ: Flooding has turned Ground Zero into a waterfall. @AP photo #NYC #Sandy http://t.co/UoQwHmZX\n", - "\n", - "--------------------------------------------------------\n", - "amazing photo \n", - "\n", - "\n", "Water pouring into Ground Zero http://t.co/XAJPgpsL #Sandy\n", "\n", "--------------------------------------------------------\n", @@ -38494,25 +34248,25 @@ "whoa... ground zero is flooded. #Sandy http://t.co/eU8vr72z\n", "\n", "--------------------------------------------------------\n", - "whoa ground zero flooded sandy \n", + "ground zero flooded sandy \n", "\n", "\n", "#Sandy, l'acqua a cascata nel cantiere di Ground Zero http://t.co/5VfDnIZ3\n", "\n", "--------------------------------------------------------\n", - "sandy l acqua cascata nel cantiere di ground zero \n", + "sandy acqua cascata nel cantiere ground zero \n", "\n", "\n", "Incredible picture of water filling the construction site at ground zero. #NYC #flooding #sandy http://t.co/51hFjoNt\n", "\n", "--------------------------------------------------------\n", - "incredible picture water filling construction site ground zero nyc flooding sandy \n", + "incredible picture water filling construction site ground zero new york city flooding sandy \n", "\n", "\n", "Ground Zero Under Water is pretty sad :( #frankenstorm #hurricane #sandy #newyork #nyc #storm #floodings #fl http://t.co/Z4gf6kJ6\n", "\n", "--------------------------------------------------------\n", - "ground zero water pretty sad frankenstorm hurricane sandy newyork nyc storm floodings fl \n", + "ground zero water pretty sad frankenstorm hurricane sandy new york new york city storm floodings fl \n", "\n", "\n", "Woah RT @theJFord: This photo from Ground Zero in #NYC says it all on #Sandy there. (Credit: @GettyImages) http://t.co/OHTy5IHP\n", @@ -38536,13 +34290,7 @@ "Ground zero flooded today in #NYC. I am speechless! #Sandy #WTC #Flooding #GroundZero #HurricaneSandy #Fran http://t.co/KvYsSI9R\n", "\n", "--------------------------------------------------------\n", - "ground zero flooded today nyc speechless sandy wtc flooding groundzero hurricanesandy fran \n", - "\n", - "\n", - "Man.....Ground zero #sandy RT @AmayaRR: jasminesolano's photo http://t.co/t9tx0IiW\n", - "\n", - "--------------------------------------------------------\n", - "ground zero sandy \n", + "ground zero flooded today new york city speechless sandy wtc flooding groundzero hurricane sandy fran \n", "\n", "\n", "Ground zero construction site = giant waterfall #sandy ☔ http://t.co/JukOLMN1\n", @@ -38584,13 +34332,19 @@ "Il cantiere di Ground Zero è totalmente allagato #sandy #ny #newyork http://t.co/UUi1h4Tv\n", "\n", "--------------------------------------------------------\n", - "il cantiere di ground zero è totalmente allagato sandy ny newyork \n", - "\n", + "cantiere ground zero è totalmente allagato sandy new york new york \n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "NYC getting pounded by #sandy Rt \"@ethanklapper: Ground Zero = Flooded (AP Photo/John Minchillo) http://t.co/xkABQWhJ\"\n", "\n", "--------------------------------------------------------\n", - "nyc getting pounded sandy \n", + "new york city getting pounded sandy \n", "\n", "\n", "#sandy at the #wtc ground zero construction site. Still unsure exactly where this is. http://t.co/aKncC1qn\n", @@ -38614,19 +34368,19 @@ "INSANE pics: 1)Ground Zero inundated: http://t.co/KJykc8x8 2)#Sandy busting thru Hoboken PATH station: http://t.co/bAp02AJX\n", "\n", "--------------------------------------------------------\n", - "insane pics 1 ground zero inundated 2 sandy busting thru hoboken path station \n", + "insane pics ground zero inundated sandy busting hoboken path station \n", "\n", "\n", "Via 60minutes - Ground Zero site flooding. Mother Nature is not playin right now. #Sandy #NYC http://t.co/ouYqIOzt”\n", "\n", "--------------------------------------------------------\n", - "via 60minutes ground zero site flooding mother nature playin right sandy nyc \n", + "via0minutes ground zero site flooding mother nature playin right sandy new york city \n", "\n", "\n", "Allagata Ground Zero, la foto è impressionante https://t.co/mbkj6ReK (via @NewYorkPost) #sandy #newyork\n", "\n", "--------------------------------------------------------\n", - "allagata ground zero foto è impressionante sandy newyork \n", + "allagata ground zero foto è impressionante sandy new york \n", "\n", "\n", "Water floods Ground Zero construction site #silenthill #sandy http://t.co/XIRFlhql\n", @@ -38638,19 +34392,13 @@ "Ground zero, flooded (via ap) #HurricaneSandy #sandy #Hurricane #GodBless #flooding #flood #horrible #sandy http://t.co/HXUX2TMW\n", "\n", "--------------------------------------------------------\n", - "ground zero flooded via ap hurricanesandy sandy hurricane godbless flooding flood horrible sandy \n", + "ground zero flooded ap hurricane sandy sandy hurricane godbless flooding flood horrible sandy \n", "\n", "\n", "Ground Zero #Ground #Zero #NYC #New #York #City #Hurricane #Sandy #Sea #Hudson http://t.co/lxrRYXJ5\n", "\n", "--------------------------------------------------------\n", - "ground zero ground zero nyc new york city hurricane sandy hudson \n", - "\n", - "\n", - "Wow!!! RT @CatchMeOnTour: Ground Zero being bombarded with water :( #HurricaneSandy #NYC #Storm #Flooding http://t.co/pBhMkFfH\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", + "ground zero ground zero new york city new york city hurricane sandy hudson \n", "\n", "\n", "#ManhattanNY Ground Zero construction site flooded. #Sandy #BREAKING http://t.co/WututGQ4\n", @@ -38662,115 +34410,109 @@ "Ground Zero is #flooded. #sandy #nyc http://t.co/yNmpwPWV\n", "\n", "--------------------------------------------------------\n", - "ground zero flooded sandy nyc \n", - "\n", - "\n", - "@hunterwalk: Amazing pic of Ground Zero flooding in NYC #Sandy http://t.co/UXLZD7Bl\\nShared via TweetCaster\n", - "\n", - "--------------------------------------------------------\n", - "amazing pic ground zero flooding nyc sandy shared via tweetcaster \n", + "ground zero flooded sandy new york city \n", "\n", "\n", "Ground zero lastnight! #hurricanesandy #nyc @_ilovehazza_ http://t.co/721leIAA\n", "\n", "--------------------------------------------------------\n", - "ground zero lastnight hurricanesandy nyc \n", + "ground zero lastnight hurricane sandy new york city \n", "\n", "\n", "Ground zero .... Omfg😰 #hurricanesandy http://t.co/LZoC2Yuz\n", "\n", "--------------------------------------------------------\n", - "ground zero omfg hurricanesandy \n", + "ground zero hurricane sandy \n", "\n", "\n", "Ground Zero Construction site ..NewYork #HurricaneSandy http://t.co/sJo5b0v4\n", "\n", "--------------------------------------------------------\n", - "ground zero construction site newyork hurricanesandy \n", + "ground zero construction site new york hurricane sandy \n", "\n", "\n", "Ground Zero construction area http://t.co/98sZiSuB #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "ground zero construction area hurricanesandy \n", + "ground zero construction area hurricane sandy \n", "\n", "\n", "Ground Zero NYC flooded. #hurricanesandy http://t.co/4xPwjRg7\n", "\n", "--------------------------------------------------------\n", - "ground zero nyc flooded hurricanesandy \n", + "ground zero new york city flooded hurricane sandy \n", "\n", "\n", "Ground Zero. #pray #hurricanesandy #nyc http://t.co/756QRvEL\n", "\n", "--------------------------------------------------------\n", - "ground zero pray hurricanesandy nyc \n", + "ground zero pray hurricane sandy new york city \n", "\n", "\n", "Ground Zero 😣 #prayers for all those effected by #HurricaneSandy!!! Heartbreaking!! 💔 http://t.co/gVtHAtYF\n", "\n", "--------------------------------------------------------\n", - "ground zero prayers effected hurricanesandy heartbreaking \n", + "ground zero prayers effected hurricane sandy heartbreaking \n", "\n", "\n", "Ground zero New York #hurricanesandy http://t.co/MqgkLgmF\n", "\n", "--------------------------------------------------------\n", - "ground zero new york hurricanesandy \n", + "ground zero new york hurricane sandy \n", "\n", "\n", "💔 So sad, Praying for NYC & The Whole East Coast #hurricanesandy #groundzero #Pray http://t.co/qqbccRiW\n", "\n", "--------------------------------------------------------\n", - "sad praying nyc whole east coast hurricanesandy groundzero pray \n", + "sad praying new york city whole east coast hurricane sandy groundzero pray \n", "\n", "\n", "#groundzero #ny #hurricanesandy http://t.co/eqFdFGKi\n", "\n", "--------------------------------------------------------\n", - "groundzero ny hurricanesandy \n", + "groundzero new york hurricane sandy \n", "\n", "\n", "#hurricane #hurricanesandy #groundzero #flood http://t.co/vrhdzHIB\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy groundzero flood \n", + "hurricane hurricane sandy groundzero flood \n", "\n", "\n", "#groundzero #hurricanesandy #newyork #storm #sandy #crazy #speachless http://t.co/Xh3hTKai\n", "\n", "--------------------------------------------------------\n", - "groundzero hurricanesandy newyork storm sandy crazy speachless \n", + "groundzero hurricane sandy new york storm sandy crazy speachless \n", "\n", "\n", "#GroundZero #hurricanesandy #nofilter #notmyphoto http://t.co/t57kyglh\n", "\n", "--------------------------------------------------------\n", - "groundzero hurricanesandy nofilter notmyphoto \n", + "groundzero hurricane sandy nofilter notmyphoto \n", "\n", "\n", "Wow check out groundZero #hurricanesandy #sandy #911 #groundZero #currentsituation http://t.co/otIozM8m\n", "\n", "--------------------------------------------------------\n", - "wow check groundzero hurricanesandy sandy 911 groundzero currentsituation \n", + "check groundzero hurricane sandy sandy11 groundzero currentsituation \n", "\n", "\n", "Pray for New York!!!! 🙏🙏🙏 #NewYork #HurricaneSandy #GroundZero #GoodTimes #Me #True #Instamood #Instagood #I http://t.co/DnGiySgP\n", "\n", "--------------------------------------------------------\n", - "pray new york newyork hurricanesandy groundzero goodtimes true instamood instagood \n", + "pray new york new york hurricane sandy groundzero goodtimes true instagood \n", "\n", "\n", "#Groundzero #nyc #hurricanesandy #instagram #wow #mothernature http://t.co/lzzqJkc4\n", "\n", "--------------------------------------------------------\n", - "groundzero nyc hurricanesandy instagram wow mothernature \n", + "groundzero new york city hurricane sandy instagram mothernature \n", "\n", "\n", "#groundzero #freedomtower #flooding #nyc #sandy http://t.co/5cAfARlk\n", "\n", "--------------------------------------------------------\n", - "groundzero freedomtower flooding nyc sandy \n", + "groundzero freedomtower flooding new york city sandy \n", "\n", "\n", "#GroundZero #Sandy http://t.co/xEAVv7Vr\n", @@ -38782,31 +34524,31 @@ "sonjabee's photo http://t.co/HUQkxeoj #groundzero #nyc #superstorm #sandy\n", "\n", "--------------------------------------------------------\n", - "sonjabee photo groundzero nyc superstorm sandy \n", + "sonjabee photo groundzero new york city superstorm sandy \n", "\n", "\n", "#surreal #image #sandy #storm #ny #groundzero http://t.co/vHjsq2qF\n", "\n", "--------------------------------------------------------\n", - "surreal image sandy storm ny groundzero \n", + "surreal image sandy storm new york groundzero \n", "\n", "\n", "“@nynewsn: Waterfalls of #GroundZero\\nhttp://t.co/rcG40ZyC #nyc #newyork #sandy” @OzgeMemisoglu bak gecen gun oldugun yer ne halde!\n", "\n", "--------------------------------------------------------\n", - "bak gecen gun oldugun yer ne halde \n", + "bak gecen gun oldugun yer halde \n", "\n", "\n", "Dam #mothernature you #scary #groundzero #nyc #sandy #worldgoingtoshit http://t.co/PZqayJd9\n", "\n", "--------------------------------------------------------\n", - "dam mothernature scary groundzero nyc sandy worldgoingtoshit \n", + "dam mothernature scary groundzero new york city sandy worldgoingtoshit \n", "\n", "\n", "#groundzero flooding. Crazy #nyc #sandy http://t.co/nB1Q4aTl\n", "\n", "--------------------------------------------------------\n", - "groundzero flooding crazy nyc sandy \n", + "groundzero flooding crazy new york city sandy \n", "\n", "\n", "#groundzero #sandy #cityunderwater pray for these people. God help them🙏 http://t.co/ffjYAy0d\n", @@ -38836,19 +34578,19 @@ "Water gushing into the #GroundZero construction site #NY #Sandy http://t.co/JZzKwTjB\n", "\n", "--------------------------------------------------------\n", - "water gushing groundzero construction site ny sandy \n", + "water gushing groundzero construction site new york sandy \n", "\n", "\n", "#sea #water #floods #ground #zero #construction #site #NY #sandy http://t.co/LslUl4cd\n", "\n", "--------------------------------------------------------\n", - "water floods ground zero construction site ny sandy \n", + "water floods ground zero construction site new york sandy \n", "\n", "\n", "#groundzero in #nyc during #sandy stay safe east coast friends! http://t.co/Z1jixJBE\n", "\n", "--------------------------------------------------------\n", - "groundzero nyc sandy stay safe east coast friends \n", + "groundzero new york city sandy stay safe east coast friends \n", "\n", "\n", "Powerful images streaming in from #Sandy's arrival #groundzero\\nhttp://t.co/Epd4jqsG http://t.co/PM126nCe\n", @@ -38860,37 +34602,31 @@ "Because of #sandy this is what #groundzero looks like in #newyork!! #godbless http://t.co/bv0NOdZA\n", "\n", "--------------------------------------------------------\n", - "sandy groundzero looks like newyork godbless \n", + "sandy groundzero looks like new york godbless \n", "\n", "\n", "Took this from #hurricanesandy fb page. This is the #groundzero construction site. #nyc #hurricane #sandy http://t.co/3ANYiZMt\n", "\n", "--------------------------------------------------------\n", - "took hurricanesandy fb page groundzero construction site nyc hurricane sandy \n", + "took hurricane sandy fb page groundzero construction site new york city hurricane sandy \n", "\n", "\n", "Ground Zero. -_- #hurricanesandy #nyc http://t.co/gTmugNIS\n", "\n", "--------------------------------------------------------\n", - "ground zero hurricanesandy nyc \n", - "\n", - "\n", - "Ground Zero. #hurricanesandy http://t.co/4OPbVkBJ\n", - "\n", - "--------------------------------------------------------\n", - "ground zero hurricanesandy \n", + "ground zero hurricane sandy new york city \n", "\n", "\n", "L'immagine simbolo di NY oggi è l'acqua a cascata nel cantiere di Ground Zero #Sandy\\nhttp://t.co/x7GINJe6 (via @Maumol)\\n#staystrongAmerica\n", "\n", "--------------------------------------------------------\n", - "l immagine simbolo di ny oggi è l acqua cascata nel cantiere di ground zero sandy staystrongamerica \n", + "immagine simbolo new york oggi è acqua cascata nel cantiere ground zero sandy staystrongamerica \n", "\n", "\n", "Ground Zero looks like Niagara Falls! (Image via ap) #sandy #NYC @ Ground Zero http://t.co/3LfVRcUk\n", "\n", "--------------------------------------------------------\n", - "ground zero looks like niagara falls image via ap sandy nyc ground zero \n", + "ground zero looks like niagara falls imageap sandy new york city ground zero \n", "\n", "\n", "Pray for our east coast brothers and sisters. Ground zero is flooded... #Sandy http://t.co/FY4KajML\n", @@ -38902,13 +34638,13 @@ "This photo of sea water flooding Ground Zero in #NYC is heartbreaking. #Sandy (via AP/John Minchillo) http://t.co/gARvHZhW\n", "\n", "--------------------------------------------------------\n", - "photo water flooding ground zero nyc heartbreaking sandy via ap john minchillo \n", + "photo water flooding ground zero new york city heartbreaking sandy ap jn minchillo \n", "\n", "\n", "cascata nel cantiere di Ground Zero #Sandy\\nhttp://t.co/D69zMitw\n", "\n", "--------------------------------------------------------\n", - "cascata nel cantiere di ground zero sandy \n", + "cascata nel cantiere ground zero sandy \n", "\n", "\n", "Flood waters are currently inundating the Ground Zero construction site in New York City. http://t.co/XJ0zH6UH #Sandy\n", @@ -38920,13 +34656,13 @@ "“@wkyc Flooding has turned Ground Zero into a waterfall. @AP photo #NYC #Sandy http://t.co/gLKipCUQ”\n", "\n", "--------------------------------------------------------\n", - "flooding turned ground zero waterfall photo nyc sandy \n", + "flooding turned ground zero waterfall photo new york city sandy \n", "\n", "\n", "Ground zero flooding #nyc #sandy #superstorm #frankenstorm #hurricane http://t.co/dc5RF6Ng\n", "\n", "--------------------------------------------------------\n", - "ground zero flooding nyc sandy superstorm frankenstorm hurricane \n", + "ground zero flooding new york city sandy superstorm frankenstorm hurricane \n", "\n", "\n", "Flood waters at Ground Zero. #prayfortheeastcoast #sandy http://t.co/5B6Gn4J7\n", @@ -38938,7 +34674,7 @@ "Ground zero...#hurricanesandy, #groundzero, #flood http://t.co/gb4WytZX\n", "\n", "--------------------------------------------------------\n", - "ground zero hurricanesandy groundzero flood \n", + "ground zero hurricane sandy groundzero flood \n", "\n", "\n", "Now Ground Zero site flooding (AP) http://t.co/bAccYsYU #sandy\n", @@ -38950,19 +34686,19 @@ "Ground Zero flooded. #HurricaneSandy http://t.co/UW0oWKaw\n", "\n", "--------------------------------------------------------\n", - "ground zero flooded hurricanesandy \n", + "ground zero flooded hurricane sandy \n", "\n", "\n", "Water rushing at Ground Zero construction site. #hurricane #hurricanesandy #praying #staysafenyc http://t.co/gp3wWEDX\n", "\n", "--------------------------------------------------------\n", - "water rushing ground zero construction site hurricane hurricanesandy praying staysafenyc \n", + "water rushing ground zero construction site hurricane hurricane sandy praying staysafenyc \n", "\n", "\n", "Flood waters at Ground Zero. #hurricanesandy #speechless http://t.co/R7xRUHD0\n", "\n", "--------------------------------------------------------\n", - "flood waters ground zero hurricanesandy speechless \n", + "flood waters ground zero hurricane sandy speechless \n", "\n", "\n", "GroundZero has even flooded...#sandy is not playing.... http://t.co/Ism1A8OB\n", @@ -38974,13 +34710,13 @@ "#repost damn... #NY #HurricaneSandy http://t.co/apf21LUB\n", "\n", "--------------------------------------------------------\n", - "repost damn ny hurricanesandy \n", + "repost damn new york hurricane sandy \n", "\n", "\n", "Damn #prayers #hurricanesandy #repost http://t.co/TssN4bha\n", "\n", "--------------------------------------------------------\n", - "damn prayers hurricanesandy repost \n", + "damn prayers hurricane sandy repost \n", "\n", "\n", "“@THEREAL_McMandi: #repost damn... #NY #HurricaneSandy http://t.co/xbPObQjG” | MOTHER NATURE AIN'T PLAYING!! LOOK. REPOST. PRAY #Sandy 😱🙏🙏\n", @@ -38992,37 +34728,31 @@ "7PM. Plymouth St & lower park areas flooded, water now breaching carousel. #dumbo #brooklyn #sandy http://t.co/jnxDlF34\n", "\n", "--------------------------------------------------------\n", - "7pm plymouth st lower park areas flooded water breaching carousel dumbo brooklyn sandy \n", + "plymouth st lower park areas flooded water breaching carousel dumbo brooklyn sandy \n", + "\n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ "Inundación en la Zona Cero de Nueva York por huracán #Sandy.#NewYork http://t.co/f7MraGSv\n", "\n", "--------------------------------------------------------\n", - "inundación zona cero nueva york huracán sandy newyork \n", + "inundación zona cero nueva york huracán sandy new york \n", "\n", "\n", "Inundación en la Zona Cero de Nueva York por huracán #Sandy. Foto: AP #GroundZero #NewYork http://t.co/f5QswEAX\n", "\n", "--------------------------------------------------------\n", - "inundación zona cero nueva york huracán sandy foto ap groundzero newyork \n", + "inundación zona cero nueva york huracán sandy foto ap groundzero new york \n", "\n", "\n", "Front facade of a building on 92nd ripped off! #nyc #sandy #hell http://t.co/XnSq4ZOT\n", "\n", "--------------------------------------------------------\n", - "front facade building 92nd ripped nyc sandy hell \n", + "front facade building on2nd ripped new york city sandy hell \n", "\n", "\n", "Front of building falls off in Chelsea. #sandy #frankenstorm #nyc http://t.co/N1jR4qeM\n", "\n", "--------------------------------------------------------\n", - "front building falls chelsea sandy frankenstorm nyc \n", + "front building falls chelsea sandy frankenstorm new york city \n", "\n", "\n", "La Zona Cero de Nueva York transformada en una cascada por la súpertormenta #Sandy http://t.co/TnE5Tp0v\n", @@ -39040,31 +34770,25 @@ "Damn. World Trade Center right now. #Flooded #WaterFall #HurricaneSandy http://t.co/oHVij5s5\n", "\n", "--------------------------------------------------------\n", - "damn world trade center right flooded waterfall hurricanesandy \n", + "damn world trade center right flooded waterfall hurricane sandy \n", "\n", "\n", "FDR Manhattan #34thStreet #Washout #HurricaneSandy #FrankenStorm http://t.co/Scf5P0d4\n", "\n", "--------------------------------------------------------\n", - "fdr manhattan 34thstreet washout hurricanesandy frankenstorm \n", - "\n", - "\n", - "@InmaNaBel: Impresionante imagen de la zona del World Trade Center inundándose #Sandy http://t.co/EBgpk61h (vía @BreakingNewsChi)\n", - "\n", - "--------------------------------------------------------\n", - "impresionante imagen zona world trade center inundándose sandy vía \n", + "fdr manhattan4thstreet washout hurricane sandy frankenstorm \n", "\n", "\n", "#Sandy Le site de la reconstruction du World Trade Center à New York est inondé. https://t.co/g7hFYqj1\n", "\n", "--------------------------------------------------------\n", - "sandy site reconstruction world trade center à new york est inondé \n", + "sandy site reconstruction world trade centernew york inondé \n", "\n", "\n", "La foto más difundida de los destrozos de #Sandy en #NY es esta de la \"Zona cero\" del WTC http://t.co/LXmMt0ax\n", "\n", "--------------------------------------------------------\n", - "foto difundida destrozos sandy ny zona cero wtc \n", + "foto difundida destrozos sandy new york zona cero wtc \n", "\n", "\n", "Imagen: La zona del World Trade Center comienza a inundarse #Sandy http://t.co/mgBBqUXr\n", @@ -39076,13 +34800,13 @@ "Impresionante imagen de la zona del World Trade Center inundándose #Sandy http://t.co/xpaXSDvS (vía @BreakingNewsChi)\n", "\n", "--------------------------------------------------------\n", - "impresionante imagen zona world trade center inundándose sandy vía \n", + "impresionante imagen zona world trade center inundándose sandy \n", "\n", "\n", "Wow. #Sandy sure did destroy some things. http://t.co/SROwv09j\n", "\n", "--------------------------------------------------------\n", - "wow sandy sure destroy things \n", + "sandy sure destroy things \n", "\n", "\n", "Esto es Seaside Heights, donde se grabó Jersey Shore, después del huracán Sandy http://t.co/zjOYQfck\n", @@ -39094,43 +34818,37 @@ "Hurrican Sandy At Fucking Around... #lmao #funny #shit #dying #hilarious #wow #insane #crazy #trampoline #wi http://t.co/2hVeHqPW\n", "\n", "--------------------------------------------------------\n", - "hurrican sandy fucking around lmao funny shit dying hilarious wow insane crazy trampoline wi \n", + "hurrican sandy fucking around funny shit dying hilarious insane crazy trampoline wi \n", "\n", "\n", "Hurricane Sandy is killing redhook and it's only about 9hrs away from starting. http://t.co/X3TpnF1N\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy killing redhook 9hrs away starting \n", + "hurricane sandy killing redhook away starting \n", "\n", "\n", "Lower East Side manhattan. Hurricane Sandy. #hurricanesandy http://t.co/PT2qgKL7\n", "\n", "--------------------------------------------------------\n", - "lower east side manhattan hurricane sandy hurricanesandy \n", + "lower east side manhattan hurricane sandy hurricane sandy \n", "\n", "\n", "Sandy ain't no Irene, this is Red Hook now. If you live in Zone 1 evacuate!! Take heed to the warning. http://t.co/2eeFwcO9\n", "\n", "--------------------------------------------------------\n", - "sandy irene red hook live zone 1 evacuate take heed warning \n", - "\n", - "\n", - "Sandy is not playing! http://t.co/CuzIOX1s\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", + "sandy irene red hook live zone evacuate take heed warning \n", "\n", "\n", "Sandy doing damage... Manhattan, Ny http://t.co/pnbGBk9H\n", "\n", "--------------------------------------------------------\n", - "sandy damage manhattan ny \n", + "sandy damage manhattan new york \n", "\n", "\n", "Oh hell noooo!! Sandy ain't playing !! http://t.co/P7HHf81a\n", "\n", "--------------------------------------------------------\n", - "oh hell noooo sandy playing \n", + "hell noooo sandy playing \n", "\n", "\n", "Prayers go out to all those that are/will be affected by Hurricane Sandy. http://t.co/q4B0jUCU\n", @@ -39142,7 +34860,7 @@ "Another amazing Sandy photo — a flooded parking lot filled with taxi cabs in Hoboken, N.J. http://t.co/uYHGpUFc\n", "\n", "--------------------------------------------------------\n", - "another amazing sandy photo flooded parking lot filled taxi cabs hoboken n j \n", + "another amazing sandy photo flooded parking lot filled taxi cabs hoboken \n", "\n", "\n", "This is not that fun, Sandy overcame the expectations http://t.co/QvTi2n1Y\n", @@ -39184,7 +34902,7 @@ "#Sandy laid the smack down on a building on 15th and 8th ave. @ Frankenstorm Apocalypse - Hurricane Sandy http://t.co/JlhgaWfm\n", "\n", "--------------------------------------------------------\n", - "sandy laid smack building 15th 8th ave frankenstorm apocalypse hurricane sandy \n", + "sandy laid smack building on5th ave frankenstorm apocalypse hurricane sandy \n", "\n", "\n", "Sandy is going off right now!! http://t.co/SUX3V29F\n", @@ -39199,16 +34917,10 @@ "ready branches sandy bring \n", "\n", "\n", - "Sandy not playing http://t.co/3SS6prnS\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", - "\n", - "\n", "foto de un parque alla en NY afectado por Sandy → http://t.co/GHiTDnx6\n", "\n", "--------------------------------------------------------\n", - "foto parque ny afectado sandy \n", + "foto parque new york afectado sandy \n", "\n", "\n", "Latest full disk image of Earth puts Hurricane Sandy into perspective. http://t.co/XYCh10VU\n", @@ -39232,13 +34944,13 @@ "Wow, look what #sandy threw on shore!!...sandy aint playin. Stay safe people http://t.co/RXwF9vAt\n", "\n", "--------------------------------------------------------\n", - "wow look sandy threw shore sandy aint playin stay safe people \n", + "look sandy threw shore sandy aint playin stay safe people \n", "\n", "\n", "Subway station in NY... Sandy showed her ass! http://t.co/8YqvAnwc\n", "\n", "--------------------------------------------------------\n", - "subway station ny sandy showed ass \n", + "subway station new york sandy showed ass \n", "\n", "\n", "This is what happen to east coast after the devastating hurricane named \"sandy\" strikes .. Let's #pray for t http://t.co/zckSM7t6\n", @@ -39256,7 +34968,7 @@ "Super Storm Sandy\\nAt least 33 dead and more than 7m without power after Sandy brought punishing winds and severe f http://t.co/789py8ZR\n", "\n", "--------------------------------------------------------\n", - "super storm sandy least 33 dead 7m without power sandy brought punishing winds severe f \n", + "super storm sandy least3 dead without power sandy brought punishing winds severe f \n", "\n", "\n", "You wanna play sandy?? http://t.co/LuVToBjd\n", @@ -39280,13 +34992,13 @@ "A fantastic NASA photo of Sandy... Pretty horrific. ☁☔🌊🍃⚡🌀 #hurricanesandy #frankenstorm @ Cockeysville, MD http://t.co/ODYEVBPI\n", "\n", "--------------------------------------------------------\n", - "fantastic nasa photo sandy pretty horrific hurricanesandy frankenstorm cockeysville md \n", + "fantastic nasa photo sandy pretty horrific hurricane sandy frankenstorm cockeysville md \n", "\n", "\n", "Hurricane Sandy as seen from space. 😳💨🌎🌌 #hurricanesandy #earth #itgonrain #frankenstorm http://t.co/AbCCwiy8\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy seen space hurricanesandy earth itgonrain frankenstorm \n", + "hurricane sandy seen space hurricane sandy earth itgonrain frankenstorm \n", "\n", "\n", "The wrath of Sandy http://t.co/kEDSs5XV\n", @@ -39322,7 +35034,7 @@ "Nueva York 29/10/12 huracán Sandy #huracánSandy #Frakenstorm foto 2 http://t.co/OnLdr6xX\n", "\n", "--------------------------------------------------------\n", - "nueva york 29 10 12 huracán sandy huracánsandy frakenstorm foto 2 \n", + "nueva york902 huracán sandy huracánsandy frakenstorm foto \n", "\n", "\n", "dwm1212's photo http://t.co/zOMC1oTY saying prayers for all of those effected by hurricane Sandy.\n", @@ -39340,7 +35052,7 @@ "Sandy is a little angryy! Ooohhh ! http://t.co/vdoxuJc0\n", "\n", "--------------------------------------------------------\n", - "sandy little angryy ooohhh \n", + "sandy little angryy \n", "\n", "\n", "This is what Hurricane Sandy is doing to Ground Zero! http://t.co/o7Cg8GXZ\n", @@ -39349,12 +35061,6 @@ "hurricane sandy ground zero \n", "\n", "\n", - "da fuck Sandy...... http://t.co/Z8bqPDVF\n", - "\n", - "--------------------------------------------------------\n", - "da fuck sandy \n", - "\n", - "\n", "I don't think sandy wants another season of jersey shore either.. http://t.co/pY08B7Tf\n", "\n", "--------------------------------------------------------\n", @@ -39364,7 +35070,7 @@ "#Re-post Photo of Hurricane Sandy destruction in midtown NYC http://t.co/3CKn8yoQ\n", "\n", "--------------------------------------------------------\n", - "post photo hurricane sandy destruction midtown nyc \n", + "post photo hurricane sandy destruction midtown new york city \n", "\n", "\n", "Satellite image of hurricane Sandy. Everyone, please pray for those affected along the East coast down throu http://t.co/UXVpegLX\n", @@ -39388,13 +35094,7 @@ "Trampoline tangled in power lines. Hurricane Sandy. #hurricanesandy http://t.co/VspIboL5\n", "\n", "--------------------------------------------------------\n", - "trampoline tangled power lines hurricane sandy hurricanesandy \n", - "\n", - "\n", - "Hurricane Sandy 2012. http://t.co/96EBIahs\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy 2012 \n", + "trampoline tangled power lines hurricane sandy hurricane sandy \n", "\n", "\n", "An aerial on the devestation occuring over night in #USA sandy has destroyed so many yellow cabs.. Pray for http://t.co/FX3N4cYH\n", @@ -39403,12 +35103,6 @@ "aerial devestation occuring night usa sandy destroyed many yellow cabs pray \n", "\n", "\n", - "Hurricane Sandy! New York.. http://t.co/capeHhIn\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", - "\n", - "\n", "Sandy is@North Carolina http://t.co/IBAJa7HB\n", "\n", "--------------------------------------------------------\n", @@ -39418,13 +35112,13 @@ "Really tho lmao @ hurricane sandy http://t.co/JVC2dOiq\n", "\n", "--------------------------------------------------------\n", - "really tho lmao hurricane sandy \n", + "really tho hurricane sandy \n", "\n", "\n", "Hurricane Sandy. #hurricanesandy Follow me for more photos!!!! http://t.co/6f3tZ322\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy follow photos \n", + "hurricane sandy hurricane sandy follow photos \n", "\n", "\n", "ประมวลภาพ Herricane Sandy http://t.co/CtHX4k65\n", @@ -39433,12 +35127,6 @@ "ประมวลภาพ herricane sandy \n", "\n", "\n", - "SANDY...:-( http://t.co/gh7LbPez\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Look what Sandy did to Seaside... http://t.co/oeaDgEet\n", "\n", "--------------------------------------------------------\n", @@ -39460,7 +35148,7 @@ "To those that were/are ignorant by saying that the northeast coast was being \"over dramatic\" about Sandy...j http://t.co/hQedjYUj\n", "\n", "--------------------------------------------------------\n", - "ignorant saying northeast coast dramatic sandy j \n", + "ignorant saying northeast coast dramatic sandy \n", "\n", "\n", "Wait a min! Now she throwing shit at people! Sandy go in a corner you have a attitude problem & I don't like http://t.co/EpcfNRVj\n", @@ -39478,7 +35166,7 @@ "What a beautiful reminder to NYC of God's promises! My prayers go out to all the victims of Hurricane Sandy! http://t.co/SnwLlFls\n", "\n", "--------------------------------------------------------\n", - "beautiful reminder nyc god promises prayers go victims hurricane sandy \n", + "beautiful reminder new york city god promises prayers go victims hurricane sandy \n", "\n", "\n", "A pic of hurricane sandy from space http://t.co/0YuIR1VJ\n", @@ -39490,19 +35178,19 @@ "The streets of NYC Sandy is mad at somebody #Prayers http://t.co/bfpJyIFQ\n", "\n", "--------------------------------------------------------\n", - "streets nyc sandy mad somebody prayers \n", + "streets new york city sandy mad somebody prayers \n", "\n", "\n", "Hurricane Sandy in NYC. 💦💦💧💧💨💨 #hurricanesandy #sandy http://t.co/prrq53ds\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc hurricanesandy sandy \n", + "hurricane sandy new york city hurricane sandy sandy \n", "\n", "\n", "Oh Sandy Sandy Sandy _thecoolhunter_'s photo http://t.co/j7tO3Wcl\n", "\n", "--------------------------------------------------------\n", - "oh sandy sandy sandy thecoolhunter photo \n", + "sandy sandy sandy thecoolhunter photo \n", "\n", "\n", "The effects of hurricane sandy in Harlem New York @ Memorial Dr http://t.co/6LhuNhsH\n", @@ -39514,7 +35202,7 @@ "Wow Sandy in the City wrecking havoc...repost from @swaggga_right http://t.co/Sdh4r8M1\n", "\n", "--------------------------------------------------------\n", - "wow sandy city wrecking havoc repost \n", + "sandy city wrecking havoc repost \n", "\n", "\n", "This image of Jane's carousel is going to haunt me. Sandy's Seahorses: http://t.co/ftIbq4GK (via @Instagram andjelicaaa)\n", @@ -39544,13 +35232,13 @@ "Omg :( dark days. Sandy needs to stop! http://t.co/rI2KpwDT\n", "\n", "--------------------------------------------------------\n", - "omg dark days sandy needs stop \n", + "dark days sandy needs stop \n", "\n", "\n", "Fleet in the floods : Yellow Cabs stranded after Superstorm Sandy via Daily Mail http://t.co/XvVigV3P\n", "\n", "--------------------------------------------------------\n", - "fleet floods yellow cabs stranded superstorm sandy via daily mail \n", + "fleet floods yellow cabs stranded superstorm sandydaily mail \n", "\n", "\n", "Hurricane Sandy #NASA http://t.co/3YlITIF0\n", @@ -39568,19 +35256,19 @@ "HURRICANE DESTRUCTION: fellow IGers shared this...I have reason to believe this is actually around 14th stre http://t.co/9283RQgf\n", "\n", "--------------------------------------------------------\n", - "hurricane destruction fellow igers shared reason believe actually around 14th stre \n", + "hurricane destruction fellow igers shared reason believe actually around4th stre \n", "\n", "\n", "Assez énorme cette photo en une de @lemondefr à propos du cyclone Sandy. http://t.co/3MCWufCJ\n", "\n", "--------------------------------------------------------\n", - "assez énorme cette photo une à propos cyclone sandy \n", + "assez énorme cette photo depropos cyclone sandy \n", "\n", "\n", "Wow ! Sandy booked most of the cabs. #NYC http://t.co/G4uO5SVG\n", "\n", "--------------------------------------------------------\n", - "wow sandy booked cabs nyc \n", + "sandy booked cabs new york city \n", "\n", "\n", "Who doesn't secure a trampoline in a hurricane? Really??? http://t.co/AsUSx9Bs\n", @@ -39598,7 +35286,7 @@ "Oh that how you feel sandy!! http://t.co/qZUTopAn\n", "\n", "--------------------------------------------------------\n", - "oh feel sandy \n", + "feel sandy \n", "\n", "\n", "NASA satellite photo of Hurricane Sandy! Cool!\\nnasagoddard's photo http://t.co/ioOREqIC\n", @@ -39610,25 +35298,25 @@ "Damn so many memories smh RT @Chrissy_Momo: Goodbye dumbo 😢😨 ... SCARY SANDY #brooklyn @ Brooklyn http://t.co/RXjVlM8z\n", "\n", "--------------------------------------------------------\n", - "damn many memories smh \n", + "damn many memories \n", "\n", "\n", "Sandy Taxis in New York @ NYC http://t.co/G00AXab2\n", "\n", "--------------------------------------------------------\n", - "sandy taxis new york nyc \n", + "sandy taxis new york new york city \n", "\n", "\n", "Hurricane Sandy aftermath!\\n#NYC will always come back stronger! http://t.co/FpN6aFVW\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy aftermath nyc always come back stronger \n", + "hurricane sandy aftermath new york city always come back stronger \n", "\n", "\n", "Hurricane Sandy in relation to the Earth (via Nasa Goddard) http://t.co/nappWBWJ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy relation earth via nasa goddard \n", + "hurricane sandy relation earth nasa goddard \n", "\n", "\n", "Sandy is pissed http://t.co/ZUh8jRL9\n", @@ -39640,7 +35328,7 @@ "SANDY Wants to play lmao that shit crazy... http://t.co/cXaPJZOg\n", "\n", "--------------------------------------------------------\n", - "sandy wants play lmao shit crazy \n", + "sandy wants play shit crazy \n", "\n", "\n", "Sandy going HAM http://t.co/xaNm8t5n\n", @@ -39652,13 +35340,13 @@ "Sandy's like who da fuck was Irene?! I fuck up shit here!! Lol http://t.co/TJIRqEYq\n", "\n", "--------------------------------------------------------\n", - "sandy like da fuck irene fuck shit lol \n", + "sandy like fuck irene fuck shit \n", "\n", "\n", "Sandy fucking up the crib smh #hurricane #NYC http://t.co/98MkiXlJ\n", "\n", "--------------------------------------------------------\n", - "sandy fucking crib smh hurricane nyc \n", + "sandy fucking crib hurricane new york city \n", "\n", "\n", "Hurricane impacting Ocean City, Maryland http://t.co/YIW4Gikl\n", @@ -39694,7 +35382,7 @@ "New York après le passage du cyclone Sandy ? Un marécage. Ne manquent plus que les alligators.... http://t.co/wkVRYE7u\n", "\n", "--------------------------------------------------------\n", - "new york après passage cyclone sandy marécage ne manquent plus alligators \n", + "new york après passage cyclone sandy marécage manquent plus alligators \n", "\n", "\n", "Sandy needs to calm the fuck down ! http://t.co/nidk8tRS\n", @@ -39712,31 +35400,31 @@ "#repost post-Sandy in NYC from @Capricorn_MiMi 🌈 -- Genesis 9:12-13 📖 Then God said, “I am giving you a sig http://t.co/paA6V3VA\n", "\n", "--------------------------------------------------------\n", - "repost post sandy nyc genesis 9 12 13 god said giving \n", + "repost post sandy new york city genesis23 god said giving \n", "\n", "\n", "Hurricane Sandy!! Smh... #Repost http://t.co/h2JeoM0M\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy smh repost \n", + "hurricane sandy repost \n", "\n", "\n", "Love this photo. \\nTaken after Sandy left NYC. God's goodness continues.\\n💙🗽🇺🇸💙 http://t.co/HfsIR7Am\n", "\n", "--------------------------------------------------------\n", - "love photo taken sandy left nyc god goodness continues \n", + "love photo taken sandy left new york city god goodness continues \n", "\n", "\n", "Sandy haciendo daños en NYC http://t.co/kBPdqooU\n", "\n", "--------------------------------------------------------\n", - "sandy haciendo daños nyc \n", + "sandy haciendo daños new york city \n", "\n", "\n", "Hurricane Sandy ain't messing around. Ugh this bitch. #hurricanesandy #hurricane #imdead #goodbyeworld #putt http://t.co/bPEPuSkw\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy messing around ugh bitch hurricanesandy hurricane imdead goodbyeworld putt \n", + "hurricane sandy messing around ugh bitch hurricane sandy hurricane imdead goodbyeworld putt \n", "\n", "\n", "InstaSnopes: factchecking Twitter's photos of Hurricane Sandy. http://t.co/S9tQsyVv (This one http://t.co/WJazFpcr is amazing and real.)\n", @@ -39751,12 +35439,6 @@ "dang sandy \n", "\n", "\n", - "This sums up hurricane sandy http://t.co/SSz960kG\n", - "\n", - "--------------------------------------------------------\n", - "sums hurricane sandy \n", - "\n", - "\n", "Sandy is acting up http://t.co/OfAp6KGH\n", "\n", "--------------------------------------------------------\n", @@ -39778,7 +35460,7 @@ "Sandy is fucked up but I fucks with Sandy bcuz Sandy b like F*€k da Police http://t.co/KXaLJSei\n", "\n", "--------------------------------------------------------\n", - "sandy fucked fucks sandy sandy b like f k da police \n", + "sandy fucked fucks sandy sandy b like f k police \n", "\n", "\n", "Sandy got us.. This is the LES morning!! http://t.co/DhXvDRMt\n", @@ -39790,7 +35472,7 @@ "Most impactful image of Sandy's affect on NYC. http://t.co/TrXT4uvU\n", "\n", "--------------------------------------------------------\n", - "impactful image sandy affect nyc \n", + "impactful image sandy affect new york city \n", "\n", "\n", "Seaside after the hurricane Sandy #prayforUSA http://t.co/TkrQB6GQ\n", @@ -39799,12 +35481,6 @@ "seaside hurricane sandy prayforusa \n", "\n", "\n", - "Crazy sandy! http://t.co/xGzorFZk\n", - "\n", - "--------------------------------------------------------\n", - "crazy sandy \n", - "\n", - "\n", "Post-Sandy rainbow in Manhattan. http://t.co/AfJoNflQ\n", "\n", "--------------------------------------------------------\n", @@ -39826,7 +35502,7 @@ "Watch out newyorkers! Sandy is comin'. #sandy http://t.co/rqG6FH1E\n", "\n", "--------------------------------------------------------\n", - "watch newyorkers sandy comin sandy \n", + "watch new yorkers sandy comin sandy \n", "\n", "\n", "Woaw Sandy is knocking down buildings in Chelsea http://t.co/3gih2AP4\n", @@ -39850,7 +35526,7 @@ "Seaside Heights, NJ #JerseyShore My prayers go out to all the people affected by Sandy http://t.co/iX7dWPSq\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj jerseyshore prayers go people affected sandy \n", + "seaside heights new jersey jerseyshore prayers go people affected sandy \n", "\n", "\n", "Hurricane Sandy is no joke people 😫😧😦🙉👎🙆🙅 #hurricane #sandy #trampoline #connecticut #sad #nojoke http://t.co/r9fBKZed\n", @@ -39868,7 +35544,7 @@ "Lower Manhattan goes dark during hurricane Sandy, as seen from Brooklyn, N.Y. Sandy continued on its path.#f http://t.co/D4iefUBL\n", "\n", "--------------------------------------------------------\n", - "lower manhattan goes dark hurricane sandy seen brooklyn n sandy continued path f \n", + "lower manhattan goes dark hurricane sandy seen brooklyn sandy continued path f \n", "\n", "\n", "Sandy's flooding Brooklyn... http://t.co/oJp0fy3z via @doorsixteen\n", @@ -39892,13 +35568,13 @@ "Photo de nationalpost http://t.co/5zfp1heu Taxis sit in a flooded lot from Hurricane Sandy on Oct. 30.\n", "\n", "--------------------------------------------------------\n", - "photo nationalpost taxis sit flooded lot hurricane sandy oct 30 \n", + "photo nationalpost taxis sit flooded lot hurricane sandy oct 0 \n", "\n", "\n", "“@aterkel: Whoa http://t.co/g0UgituE” OMG! Prayers & Positive Chi 2 NYC; anyone impacted by Sandy!\n", "\n", "--------------------------------------------------------\n", - "omg prayers positive chi 2 nyc anyone impacted sandy \n", + "prayers positive chi new york city anyone impacted sandy \n", "\n", "\n", "Got this pic from ABC and prayers and thoughts are going to all those affected by Sandy. http://t.co/3nCMnVAq\n", @@ -39940,7 +35616,7 @@ "Hurricane Sandy said \"FUCK YO TRAMPOLINE!!\" http://t.co/XIrbqRCG\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy said fuck trampoline \n", + "hurricane sandy said fucktrampoline \n", "\n", "\n", "andjelicaaa's photo http://t.co/U1PI0vtE Beautiful and haunting photograph from the effects of Sandy\n", @@ -39970,13 +35646,13 @@ "Shot of 1926 carousel in Brooklyn by @andjelicaaa has to be the image of Sandy, a metaphor for us all? http://t.co/fD2ZKrea\n", "\n", "--------------------------------------------------------\n", - "shot 1926 carousel brooklyn image sandy metaphor us \n", + "shot of926 carousel brooklyn image sandy metaphor us \n", "\n", "\n", "Hurricane sandy is not a joke! My prayers go out to the families in newyork http://t.co/IEenSQfz\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy joke prayers go families newyork \n", + "hurricane sandy joke prayers go families new york \n", "\n", "\n", "Sandy got Jokes. Ctfu http://t.co/PpwcOAsz\n", @@ -39988,13 +35664,7 @@ "Just to give you an idea of how bad sandy really is... #Sandy #NYC http://t.co/gFp2thdZ\n", "\n", "--------------------------------------------------------\n", - "give idea bad sandy really sandy nyc \n", - "\n", - "\n", - "@nasa hurricane!!! http://t.co/Np5H3T3k\n", - "\n", - "--------------------------------------------------------\n", - "hurricane \n", + "give idea bad sandy really sandy new york city \n", "\n", "\n", "DUMBO carousel during Sandy http://t.co/Y6avi2K6\n", @@ -40024,7 +35694,7 @@ "@Ryan_DuToit lolzzz!! Check this out. Hurricane Sandy mad. http://t.co/05v5Mh2N\n", "\n", "--------------------------------------------------------\n", - "lolzzz check hurricane sandy mad \n", + "zzz check hurricane sandy mad \n", "\n", "\n", "New Jersey after Sandy Storm \\nنيوجيرسي بعد عاصفة ساندي http://t.co/oa9Ao3iv\n", @@ -40048,13 +35718,13 @@ "Wow! This is just mind blowing! New York ATM.....all due to Hurricane Sandy; this is becoming very serious http://t.co/2joWUVqj\n", "\n", "--------------------------------------------------------\n", - "wow mind blowing new york atm due hurricane sandy becoming serious \n", + "mind blowing new york atm due hurricane sandy becoming serious \n", "\n", "\n", "Rainbow over NYC today after this horrible superstorm sandy. Oct 30, 2012 http://t.co/yvlmIxip\n", "\n", "--------------------------------------------------------\n", - "rainbow nyc today horrible superstorm sandy oct 30 2012 \n", + "rainbow new york city today horrible superstorm sandy oct02 \n", "\n", "\n", "Sandoso sandy http://t.co/AGvqTXGO\n", @@ -40090,7 +35760,7 @@ "Foto fantástica da Terra, mostrando o furacão Sandy.\\nFoto de nasagoddard (NASA) on Instagram) http://t.co/zZdT6Mvz\n", "\n", "--------------------------------------------------------\n", - "foto fantástica da terra mostrando furacão sandy foto nasagoddard nasa instagram \n", + "foto fantástica terra mostrando furacão sandy foto nasagoddard nasa instagram \n", "\n", "\n", "Sandy go away! http://t.co/8TqFSSHj\n", @@ -40108,13 +35778,13 @@ "Sandy gets artsy RT - @BuzzFeed: A carousel in Brooklyn, now in the East River http://t.co/ZUTtch4M\n", "\n", "--------------------------------------------------------\n", - "sandy gets artsy rt carousel brooklyn east river \n", + "sandy gets artsy \n", "\n", "\n", "Lmfao sandy is not chilling - ericgoldie's photo http://t.co/myB3KTNk\n", "\n", "--------------------------------------------------------\n", - "lmfao sandy chilling ericgoldie photo \n", + "sandy chilling ericgoldie photo \n", "\n", "\n", "Hurricane Sandy is huge bra http://t.co/D2ZdNK7p\n", @@ -40126,7 +35796,7 @@ "She's a wild one, oh sandy is. http://t.co/lxqzp5nO\n", "\n", "--------------------------------------------------------\n", - "wild one oh sandy \n", + "wild one sandy \n", "\n", "\n", "HURRICANE SANDY FROM SPACE #sandy #hurricane #space #image #noaa #nasa #earth http://t.co/NVvKatNx\n", @@ -40138,19 +35808,13 @@ "Manhattan alagada pela Sandy! http://t.co/e3GqU8xX (Foto de @davidhunterjr)\n", "\n", "--------------------------------------------------------\n", - "manhattan alagada pela sandy foto \n", - "\n", - "\n", - "Ground zero after hurricane Sandy http://t.co/m3UxAGJM\n", - "\n", - "--------------------------------------------------------\n", - "ground zero hurricane sandy \n", + "manhattan alagada sandy foto \n", "\n", "\n", "My prayers are with everyone who has been effected by the hurricane #NYC #bad#weather #God#bless#all#thank#g http://t.co/HGsFp0L9\n", "\n", "--------------------------------------------------------\n", - "prayers everyone effected hurricane nyc bad weather god bless thank g \n", + "prayers everyone effected hurricane new york city badweather godblessallthankg \n", "\n", "\n", "Inundación de la zona cero por Sandy http://t.co/NGCJ8GS8\n", @@ -40192,7 +35856,7 @@ "Former WTC location... prayers to #NYC # Sandy http://t.co/vxU2gS83\n", "\n", "--------------------------------------------------------\n", - "former wtc location prayers nyc sandy \n", + "former wtc location prayers new york city sandy \n", "\n", "\n", "@laultimahora aki les djo.algunas imagenes de lo q se vive en nueva york #huracan sandy http://t.co/1lUibCGq\n", @@ -40204,25 +35868,19 @@ "Hurricane Sandy picked up strength and turned toward New York City and the U.S. East Coast's other largest c http://t.co/THNul3gf\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy picked strength turned toward new york city east coast largest c \n", + "hurricane sandy picked strength turned toward new york city east coast largest \n", "\n", "\n", "Hoekom as ek die Fotos so sien van Hurricane Sandy laat dit my dink aan die flieks \"2012\" en \"The day after tomorrow??? http://t.co/JtcBOtVB\n", "\n", "--------------------------------------------------------\n", - "hoekom ek fotos sien hurricane sandy laat dink flieks 2012 day tomorrow \n", - "\n", - "\n", - "Hurricane. http://t.co/6qZEZNA7\n", - "\n", - "--------------------------------------------------------\n", - "hurricane \n", + "hoekom ek fotos sien hurricane sandy laat dink flieks2 day tomorrow \n", "\n", "\n", "Satellite imagery of Hurricane Sandy. #Satellite #Image #NewYork #Manhattan #America #Hurricane #HurricaneSa http://t.co/x2umbqAG\n", "\n", "--------------------------------------------------------\n", - "satellite imagery hurricane sandy satellite image newyork manhattan america hurricane hurricanesa \n", + "satellite imagery hurricane sandy satellite image new york manhattan america hurricane hurricanesa \n", "\n", "\n", "Now Sandy bring with you together with Halloween away all the winds of the crises and people fears http://t.co/7AAZlpjw\n", @@ -40234,13 +35892,13 @@ "Foto de loq sandy esta hasiendo!! En NY!.. oremos !. http://t.co/LxEMz5JC\n", "\n", "--------------------------------------------------------\n", - "foto loq sandy hasiendo ny oremos \n", + "foto loq sandy hasiendo new york oremos \n", "\n", "\n", "Oh okay, Sandy....I see you.... http://t.co/z7eHfPE5\n", "\n", "--------------------------------------------------------\n", - "oh okay sandy see \n", + "okay sandy see \n", "\n", "\n", "Taxi cabs after Sandy... http://t.co/Mksq1rsJ\n", @@ -40252,13 +35910,13 @@ "Seaside Heights, NJ - after Hurricane Sandy http://t.co/mx85aqmW\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj hurricane sandy \n", + "seaside heights new jersey hurricane sandy \n", "\n", "\n", "Jersey Shore....dam sandy... chase_landreth http://t.co/hvEg7w0J\n", "\n", "--------------------------------------------------------\n", - "jersey shore dam sandy chase landreth \n", + "jersey shore dam sandy chaselandreth \n", "\n", "\n", "Hurricane Sandy #hurricane #sandy #eastern #coast #us #pray http://t.co/1UBZjBOJ\n", @@ -40300,7 +35958,7 @@ "Leave Long Island alone Sandy! #hurricanesandy #destruction #longisland http://t.co/dUSp7GfR\n", "\n", "--------------------------------------------------------\n", - "leave long island alone sandy hurricanesandy destruction longisland \n", + "leave long island alone sandy hurricane sandy destruction longisland \n", "\n", "\n", "Damn now we have to endure a Sandy compilation song RT @WillyDope: My cousin sent me this picture from lower manhattan http://t.co/waLUXliY\n", @@ -40324,7 +35982,7 @@ "Wow.... Ground Zero being engulfed by Sandy #superstorm #superstormsandy #2012 #nyc #worldtradecenter #natur http://t.co/ACvwhtoH\n", "\n", "--------------------------------------------------------\n", - "wow ground zero engulfed sandy superstorm superstormsandy 2012 nyc worldtradecenter natur \n", + "ground zero engulfed sandy superstorm superstormsandy012 new york city worldtradecenter natur \n", "\n", "\n", "Ground zero flooding tonight from sandy... http://t.co/CzzZVeyS\n", @@ -40336,19 +35994,19 @@ "Wow. Sandy is here to steal all the kids' outdoor toys. RT @KidFury Who's gonna get that shit down? http://t.co/0pvngOsU\n", "\n", "--------------------------------------------------------\n", - "wow sandy steal kids outdoor toys \n", + "sandy steal kids outdoor toys \n", "\n", "\n", "Damn sandy fuccd seaside heights up smh http://t.co/yegh4x4S\n", "\n", "--------------------------------------------------------\n", - "damn sandy fuccd seaside heights smh \n", + "damn sandy fuccd seaside heights \n", "\n", "\n", "Hurricane Sandy Foto di nasagoddard http://t.co/zfcfNz78\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy foto di nasagoddard \n", + "hurricane sandy foto nasagoddard \n", "\n", "\n", "Atleast sandy cleansed the streets of seaside... #scumland http://t.co/Lulcqknm\n", @@ -40366,13 +36024,13 @@ "Hurricane Sandy Foto di usatoday http://t.co/rT030jHT\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy foto di usatoday \n", + "hurricane sandy foto usatoday \n", "\n", "\n", "Sandy says these big yellow taxi's submerged in a NY parking lot ain't taking no-one away today. http://t.co/YQdAjuPY\n", "\n", "--------------------------------------------------------\n", - "sandy says big yellow taxi submerged ny parking lot taking one away today \n", + "sandy says big yellow taxi submerged new york parking lot taking one away today \n", "\n", "\n", "Atlantic City now sleeping with Death after SANDY http://t.co/lqIu6FHV\n", @@ -40393,16 +36051,10 @@ "city new york felt sandy pain western new york feel pain well get read \n", "\n", "\n", - "Sandy *nyc* http://t.co/hZ7vJRLL\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "Hurricane Sandy from space. Yikes! http://t.co/zFuQSimM\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy space yikes \n", + "hurricane sandy space \n", "\n", "\n", "Definitely glad I don't have to mess with that chick Sandy http://t.co/E7K8Nooo\n", @@ -40414,7 +36066,7 @@ "Lol Sandy wins this one http://t.co/Tz62UH3s\n", "\n", "--------------------------------------------------------\n", - "lol sandy wins one \n", + "sandy wins one \n", "\n", "\n", "This is unreal: Hurricane Sandy flooding at Ground Zero in Manhattan, New York http://t.co/N92s0JZr\n", @@ -40432,7 +36084,7 @@ "So they said Hurricane Sandy brought this trampoline from 2 towns over.. 😳 http://t.co/kMKXKrGc\n", "\n", "--------------------------------------------------------\n", - "said hurricane sandy brought trampoline 2 towns \n", + "said hurricane sandy brought trampoline towns \n", "\n", "\n", "Esto hiso Sandy en Jersey Shore! :O http://t.co/JmJPV0C9\n", @@ -40444,7 +36096,7 @@ "Hurricane Sandy!!! #hurricanesandy #hurricane #windy #trampoline #storm @ VFP Gym http://t.co/hRItryyU\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy hurricane windy trampoline storm vfp gym \n", + "hurricane sandy hurricane sandy hurricane windy trampoline storm vfp gym \n", "\n", "\n", "Dicen que despues de la tormenta llega la calma! Rainbow after Sandy #Beautiful http://t.co/ais7L8L1\n", @@ -40468,13 +36120,13 @@ "Wow look what sandy did http://t.co/RRKig3jN\n", "\n", "--------------------------------------------------------\n", - "wow look sandy \n", + "look sandy \n", "\n", "\n", "it's unreal to see one of my most favorite brooklyn spots surrounded by water. . . ✨🎠✨ ny @ 💨 sandy's wrath http://t.co/Clq605AM\n", "\n", "--------------------------------------------------------\n", - "unreal see one favorite brooklyn spots surrounded water ny sandy wrath \n", + "unreal see one favorite brooklyn spots surrounded water new york sandy wrath \n", "\n", "\n", "Seaside .. Fuck you sandy http://t.co/niqdqueO\n", @@ -40486,19 +36138,19 @@ "Had to delete my last Hurricane Sandy Post after I seen this ... Dam a category 1 doing this to NYC. Shit cr http://t.co/NL6O2Yhy\n", "\n", "--------------------------------------------------------\n", - "delete last hurricane sandy post seen dam category 1 nyc shit cr \n", + "delete last hurricane sandy post seen dam category new york city shit cr \n", "\n", "\n", "Ahahaha sandy is fucking shit up #dirty #whore http://t.co/2octYB9z\n", "\n", "--------------------------------------------------------\n", - "ahahaha sandy fucking shit dirty whore \n", + "asandy fucking shit dirty whore \n", "\n", "\n", "lol fuckin sandy http://t.co/X0KJw5PX\n", "\n", "--------------------------------------------------------\n", - "lol fuckin sandy \n", + "fuckin sandy \n", "\n", "\n", "For real though Sandy Wildin like this? http://t.co/9AUCXMLl\n", @@ -40516,7 +36168,7 @@ "Whoa!! And if Sandy stayed a hurricane..? @Time pic of firemen searching for ppl trapped in cars, 15h & Ave C http://t.co/eQKtExUx\n", "\n", "--------------------------------------------------------\n", - "whoa sandy stayed hurricane pic firemen searching ppl trapped cars 15h ave c \n", + "sandy stayed hurricane pic firemen searching ppl trapped cars 5h ave \n", "\n", "\n", "For my fellow Floridians who think the Northerners are overreacting about the hurricane... #keepquiet #thisi http://t.co/PZy4uY41\n", @@ -40552,7 +36204,7 @@ "The devastation of hurricane sandy on the lower east side #nyc #sandy http://t.co/bppHglui\n", "\n", "--------------------------------------------------------\n", - "devastation hurricane sandy lower east side nyc sandy \n", + "devastation hurricane sandy lower east side new york city sandy \n", "\n", "\n", "Последствия урагана Sandy\\n https://t.co/T5L5513n\\nhttps://t.co/9NTnBgx9\\nhttps://t.co/seHgbdX8\\nhttps://t.co/CY2ihGFy\n", @@ -40564,13 +36216,7 @@ "Atlantic City vs Sandy photo http://t.co/ZJ47bbie\n", "\n", "--------------------------------------------------------\n", - "atlantic city vs sandy photo \n", - "\n", - "\n", - "Sandy Par @nasagoddard http://t.co/CAcvMTNn\n", - "\n", - "--------------------------------------------------------\n", - "sandy par \n", + "atlantic city versus sandy photo \n", "\n", "\n", "liked Hurricane Sandy over the Bahamas The Moderate Resolution Imaging Spectroradiometer (MODIS) on NASA’... http://t.co/iX3AHta9\n", @@ -40582,7 +36228,7 @@ "Woooow the Hurricane hit Brooklyn pretty hard man! Smh http://t.co/ya105Epq\n", "\n", "--------------------------------------------------------\n", - "woooow hurricane hit brooklyn pretty hard smh \n", + "woooow hurricane hit brooklyn pretty hard \n", "\n", "\n", "Praying for all those cleaning up after Hurricane Sandy today. http://t.co/JdKNvrf8\n", @@ -40594,7 +36240,7 @@ "I know it's not a car,but hurricane sandy is going hard!\\n#hurricane #hurricanesandy #storm #lol # @ Scranton http://t.co/tgOxquXJ\n", "\n", "--------------------------------------------------------\n", - "know car hurricane sandy going hard hurricane hurricanesandy storm lol scranton \n", + "know car hurricane sandy going hard hurricane hurricane sandy storm scranton \n", "\n", "\n", "Superstorm #Sandy finally# receded, but only after carving a #trailSuperstorm Sandy finally receded, but onl http://t.co/Wl78DjSA\n", @@ -40606,7 +36252,7 @@ "Sandy said oops lol http://t.co/UdgWQy5a\n", "\n", "--------------------------------------------------------\n", - "sandy said oops lol \n", + "sandy said oops \n", "\n", "\n", "Sandy is serious. Lower Man flooding! http://t.co/ewDQE8cs\n", @@ -40618,19 +36264,19 @@ "Photo from the Goes 13 satellite. Pray for those in Sandy's path. http://t.co/FlmK3jau\n", "\n", "--------------------------------------------------------\n", - "photo goes 13 satellite pray sandy path \n", + "photo goes3 satellite pray sandy path \n", "\n", "\n", "nasagoddard's photo http://t.co/U9uMXtGv Whoa, Sandy. Stay safe, East coasters.\n", "\n", "--------------------------------------------------------\n", - "nasagoddard photo whoa sandy stay safe east coasters \n", + "nasagoddard photo sandy stay safe east coasters \n", "\n", "\n", "Real classy Sandy #Omg http://t.co/bJa2dHjT\n", "\n", "--------------------------------------------------------\n", - "real classy sandy omg \n", + "real classy sandy \n", "\n", "\n", "Please keep praying! These are the taxis of my sister Sandy's town Hoboken. Relief and restoration! #hudson http://t.co/23Tq9LNz\n", @@ -40648,7 +36294,7 @@ "Casino Pier - Seaside Heights, NJ - 10/30/12 after Hurricane Sandy! http://t.co/Mb1XSIHQ\n", "\n", "--------------------------------------------------------\n", - "casino pier seaside heights nj 10 30 12 hurricane sandy \n", + "casino pier seaside heights new jersey 2 hurricane sandy \n", "\n", "\n", "Sandy y no precisamente con Papo. http://t.co/itRc7LIv\n", @@ -40660,7 +36306,7 @@ "Hep taxi !!! Photos de Sandy sur le site Instacane http://t.co/SSDvRarI\n", "\n", "--------------------------------------------------------\n", - "hep taxi photos sandy sur site instacane \n", + "hep taxi photos sandy site instacane \n", "\n", "\n", "How sandy looks from space http://t.co/8upLGDan\n", @@ -40672,13 +36318,13 @@ "#repost that ish is real... Praying for tha hurricane sandy victims 🙏 http://t.co/oZY8IFQA\n", "\n", "--------------------------------------------------------\n", - "repost ish real praying tha hurricane sandy victims \n", + "repost ish real praying thurricane sandy victims \n", "\n", "\n", "For those of you who don't think Hurricane Sandy is affecting anyone and think that e @ Technology Commons 1 http://t.co/fm2iCMqL\n", "\n", "--------------------------------------------------------\n", - "think hurricane sandy affecting anyone think technology commons 1 \n", + "think hurricane sandy affecting anyone think technology commons \n", "\n", "\n", "I guess this hurricane is for real, shit http://t.co/EkfRbcoK\n", @@ -40690,31 +36336,19 @@ "Wishing NYC a swift recovery from Sandy. This picture is shocking. Poor little horses. http://t.co/oeiYu0ve\n", "\n", "--------------------------------------------------------\n", - "wishing nyc swift recovery sandy picture shocking poor little horses \n", + "wishing new york city swift recovery sandy picture shocking poor little horses \n", "\n", "\n", "Noooooo.....our transplanted Idora Park Carousel is under water...c'mon Sandy...have a heart! http://t.co/MfMtzq0E\n", "\n", "--------------------------------------------------------\n", - "noooooo transplanted idora park carousel water c mon sandy heart \n", + "noooooo transplanted idora park carousel water sandy heart \n", "\n", "\n", "#repost I see that hurricane sandy wasn't playing no games #nyc #praying for y'all #hopeyallok http://t.co/YIPBVDVb\n", "\n", "--------------------------------------------------------\n", - "repost see hurricane sandy playing games nyc praying hopeyallok \n", - "\n", - "\n", - "HURRICANE SANDY...... http://t.co/Kg0xC7SN\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", - "Sandy doing work!!! http://t.co/yQt7AOuM\n", - "\n", - "--------------------------------------------------------\n", - "sandy work \n", + "repost see hurricane sandy playing games new york city praying hopeyallok \n", "\n", "\n", "Yoo sandy chill I loved that trampoline http://t.co/UjZbse36\n", @@ -40738,7 +36372,7 @@ "Sandy's destruction vol 2 - BBG #Hurricane http://t.co/0KQ1FyuA\n", "\n", "--------------------------------------------------------\n", - "sandy destruction vol 2 bbg hurricane \n", + "sandy destruction vol bbg hurricane \n", "\n", "\n", "The Sandy aftermath http://t.co/Bd2CoJDq\n", @@ -40762,7 +36396,7 @@ "Sandy! Wow! Ah BIG GIRL!!! http://t.co/2Wi9kR8o\n", "\n", "--------------------------------------------------------\n", - "sandy wow ah big girl \n", + "sandy ah big girl \n", "\n", "\n", "#Hurricane #Sandy How dare you! @ 💨Hurricane Sandy💦 http://t.co/GtsutGri\n", @@ -40780,7 +36414,7 @@ "Seaside Heights, NJ- thanks to Hurricane Sandy 10/29/12. This place has been a part of my life for the past http://t.co/HigjTDzT\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj thanks hurricane sandy 10 29 12 place part life past \n", + "seaside heights new jersey thanks hurricane sandy092 place part life past \n", "\n", "\n", "It's real out here Sandy ain't playin http://t.co/EdaeB9Yh\n", @@ -40804,13 +36438,13 @@ "Sandy tryin to grip my neighbors trampoline lol #bitch #fail #sandy #funny #storm #wind #crazy #instagood #i http://t.co/bcp3QlDz\n", "\n", "--------------------------------------------------------\n", - "sandy tryin grip neighbors trampoline lol bitch fail sandy funny storm wind crazy instagood \n", + "sandy tryin grip neighbors trampoline bitch fail sandy funny storm wind crazy instagood \n", "\n", "\n", "This huge pier amusement park in NJ was destroyed. That's crazy! Sandy meant business! http://t.co/tsHrR2Xw\n", "\n", "--------------------------------------------------------\n", - "huge pier amusement park nj destroyed crazy sandy meant business \n", + "huge pier amusement park new jersey destroyed crazy sandy meant business \n", "\n", "\n", "Praying for everyone affected by Hurricane Sandy #sandy #hurricane #prayers #hurricansandy #eastcoast #weath http://t.co/TmTM31Vr\n", @@ -40822,13 +36456,7 @@ "Hurricane Sandy really did a job on New York sandy #sandy #hurricane #newyork #rain #damage #disaster #sto http://t.co/gK3gCjPX\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy really job new york sandy sandy hurricane newyork rain damage disaster sto \n", - "\n", - "\n", - "Some of Sandy's damage http://t.co/YEds0GTN\n", - "\n", - "--------------------------------------------------------\n", - "sandy damage \n", + "hurricane sandy really job new york sandy sandy hurricane new york rain damage disaster sto \n", "\n", "\n", "Miss Sandy in New Jersey http://t.co/opIUFP84\n", @@ -40840,19 +36468,7 @@ "LES looking CRAZY!! Dam Sandy WTF U DOIN TO NY!!😡🙈👎😵 http://t.co/qruO8c18\n", "\n", "--------------------------------------------------------\n", - "looking crazy dam sandy wtf doin ny \n", - "\n", - "\n", - "Sandy, oh Sandy! http://t.co/K9iDgEY1\n", - "\n", - "--------------------------------------------------------\n", - "sandy oh sandy \n", - "\n", - "\n", - "Sandy effects ... http://t.co/7XrR1jyq\n", - "\n", - "--------------------------------------------------------\n", - "sandy effects \n", + "looking crazy dam sandy doin new york \n", "\n", "\n", "Hurricane Sandy is insane. Praying for everyone in the East Coast. Especially my brother and his wife #besaf http://t.co/koC4svzN\n", @@ -40870,7 +36486,7 @@ "Sandy leaves death, damp and darkness in wake.\\n\\nOn October 25 I wrote:Before Obama become a president, I had a dre http://t.co/n9Y38Ptn\n", "\n", "--------------------------------------------------------\n", - "sandy leaves death damp darkness wake october 25 wrote obama become president dre \n", + "sandy leaves death damp darkness wake october5 wrote obama become president dre \n", "\n", "\n", "http://t.co/WSQffF04 hurricane sandy surreal carousel\n", @@ -40906,7 +36522,7 @@ "That's fair,after creepy sandy hurricane. The rainbow finally touchdown in NY :) http://t.co/FiMU26J3\n", "\n", "--------------------------------------------------------\n", - "fair creepy sandy hurricane rainbow finally touchdown ny \n", + "fair creepy sandy hurricane rainbow finally touchdown new york \n", "\n", "\n", "Sandy is not playing. Stay safe. #sandy #liveinpeace http://t.co/B9S2yKfS\n", @@ -40924,25 +36540,25 @@ "Taxis in New Jersey after hurricane Sandy #repost #hurricane #Sandy #taxis #newjersey #NJ #flood #insane http://t.co/PsmToUYX\n", "\n", "--------------------------------------------------------\n", - "taxis new jersey hurricane sandy repost hurricane sandy taxis newjersey nj flood insane \n", + "taxis new jersey hurricane sandy repost hurricane sandy taxis newjersey new jersey flood insane \n", "\n", "\n", "bwebb_two's photo http://t.co/R87S71Ft Ground zero suffers from Hurricane Sandy\n", "\n", "--------------------------------------------------------\n", - "bwebb two photo ground zero suffers hurricane sandy \n", + "bwebbtwo photo ground zero suffers hurricane sandy \n", "\n", "\n", "Lmaoo hurricane sandy playing games http://t.co/KkaPpyLN\n", "\n", "--------------------------------------------------------\n", - "lmaoo hurricane sandy playing games \n", + "hurricane sandy playing games \n", "\n", "\n", "Great Find @Kat_Bk! Pray For All The Cabs In NYC! #Cabaholics! Post Your Hurricane Sandy Cabaholic Photo http://t.co/oUm1JXKH\n", "\n", "--------------------------------------------------------\n", - "great find pray cabs nyc cabaholics post hurricane sandy cabaholic photo \n", + "great find pray cabs new york city cabaholics post hurricane sandy cabaholic photo \n", "\n", "\n", "Red Hook, Brooklyn. Hurricane Sandy http://t.co/AVT2HY0O\n", @@ -40966,7 +36582,7 @@ "DAMN SANDY!!! iHOPE MY COUSINS @vice_verse2 && justcallmelee ARE OKAY!! && charlycharles_suge http://t.co/3DOiZRju\n", "\n", "--------------------------------------------------------\n", - "damn sandy ihope cousins andand justcallmelee okay andand charlycharles suge \n", + "damn sandy ihope cousins andand justcallmelee okay andand charlycharlessuge \n", "\n", "\n", "sandy #thisisreal 😳 http://t.co/NDZRBQyZ\n", @@ -40978,7 +36594,7 @@ "Wowww....Ground Zero in NY 🗽🏦🌊after Hurricane Sandy!!! http://t.co/RjQHDmTp\n", "\n", "--------------------------------------------------------\n", - "wowww ground zero ny hurricane sandy \n", + "ww ground zero new york hurricane sandy \n", "\n", "\n", "Sandy's comin! 😳 #scurred http://t.co/CalaEWlg\n", @@ -41044,7 +36660,7 @@ "@ninagarcia WoW! Please stay safe->The Most Unbelievable but Real Pictures of Sandy's Destruction http://t.co/n7HdHkEY http://t.co/58w0w8Kc\n", "\n", "--------------------------------------------------------\n", - "wow please stay safethe unbelievable real pictures sandy destruction \n", + "please stay safe unbelievable real pictures sandy destruction \n", "\n", "\n", "Sandy took my trampoline... http://t.co/s6rQ6H0J\n", @@ -41068,7 +36684,7 @@ "“@CriticaPa Copa ha suspendido 11 vuelos a EU debido a tormenta Sandy. #Panamá http://t.co/rKddXTD0”\n", "\n", "--------------------------------------------------------\n", - "copa suspendido 11 vuelos eu debido tormenta sandy panamá \n", + "copasuspendido1 vuelos debido tormenta sandy panamá \n", "\n", "\n", "Dammit Sandy... Right when I wanted to go jump on my trampoline. http://t.co/ZNbkL5bk\n", @@ -41086,7 +36702,7 @@ "hurricane is still 100 miles offshore, and Atlantic City’s boardwalk is already under water. pic:\\nhttp://t.co/Ktp30wxa\n", "\n", "--------------------------------------------------------\n", - "hurricane still 100 miles offshore atlantic city boardwalk already water pic \n", + "hurricane still00 miles offshore atlantic city boardwalk already water pic \n", "\n", "\n", "Great full disc Sandy still takes up most of eastern North America can you see Rosa? #sandy @abc7news http://t.co/3t7eOvqT\n", @@ -41104,7 +36720,7 @@ "Surreal image of Hurricane Sandy infiltrating Ground Zero NYC http://t.co/lMoWSIZk\n", "\n", "--------------------------------------------------------\n", - "surreal image hurricane sandy infiltrating ground zero nyc \n", + "surreal image hurricane sandy infiltrating ground zero new york city \n", "\n", "\n", "The latest full disk image of Earth puts Hurricane Sandy into perspective...it's massive.#sandy #frankenstorm http://t.co/4oGYBrAK\n", @@ -41116,7 +36732,7 @@ "Hurricane Sandy is on a rampage. Top picture is the Carolina coast. Bottom pic is in NYC. http://t.co/cOCC5ppE\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy rampage top picture carolina coast bottom pic nyc \n", + "hurricane sandy rampage top picture carolina coast bottom pic new york city \n", "\n", "\n", "Another crazy Sandy pic. RT @michaelhayes: Roller coaster swept out to sea (Seaside Heights, NJ) http://t.co/JUS2BjXX\n", @@ -41146,7 +36762,7 @@ "Wow, Sandy you're the worst! http://t.co/ijlAHRzq\n", "\n", "--------------------------------------------------------\n", - "wow sandy worst \n", + "sandy worst \n", "\n", "\n", "A bitch Sandy is showing out! http://t.co/oksMEk5F\n", @@ -41155,22 +36771,10 @@ "bitch sandy showing \n", "\n", "\n", - "Sandy in NY http://t.co/miZoDZgE\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", - "Well damn sandy http://t.co/0nmESlm8\n", - "\n", - "--------------------------------------------------------\n", - "well damn sandy \n", - "\n", - "\n", "Sandy fait danser les trampollinnes des enfants Photo de asap_paulie http://t.co/m7A3VE70\n", "\n", "--------------------------------------------------------\n", - "sandy fait danser trampollinnes des enfants photo asap paulie \n", + "sandy fait danser trampollinnes enfants photo asappaulie \n", "\n", "\n", "Uhm yeah... Sandy is not fucking around... #Milford http://t.co/ultyVnYo\n", @@ -41182,19 +36786,13 @@ "Hurricane Sandy years through \"Sea Side Pier\" in NJ! Good thoughts to those affected by the storm! http://t.co/XD9hPo8X\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy years side pier nj good thoughts affected storm \n", - "\n", - "\n", - "Wat bitch sandy does!! http://t.co/v9PUH7ko\n", - "\n", - "--------------------------------------------------------\n", - "bitch sandy \n", + "hurricane sandy years side pier new jersey good thoughts affected storm \n", "\n", "\n", "Sandy vs. The Roller Coaster. Guess who won? http://t.co/WW4cUL01 (from Seaside Heights, N.J.) #sandy\n", "\n", "--------------------------------------------------------\n", - "sandy vs roller coaster guess seaside heights n j sandy \n", + "sandy versus roller coaster guess seaside heights sandy \n", "\n", "\n", "Sandy Relief: on http://t.co/TemvqZ1q http://t.co/AfurdTxt\n", @@ -41206,13 +36804,13 @@ "GOOD MORNING...IS THIS #NYC OR IS IT NEW ORLEANS DAM SANDY PUT THE SMACK DOWN ANOCHE ON US !! http://t.co/bAbFegdG\n", "\n", "--------------------------------------------------------\n", - "good morning nyc new orleans dam sandy put smack anoche us \n", + "good morning new york city new orleans dam sandy put smack anoche us \n", "\n", "\n", "Hurricane Sandy . Live from NYC: Across the street from 92 8th Avenue where building facade collapse just no http://t.co/8ot03sV6\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy live nyc across street 92 8th avenue building facade collapse \n", + "hurricane sandy live new york city across street from2 avenue building facade collapse \n", "\n", "\n", "Sandy photo of LES right now. http://t.co/Zv6i3Stg\n", @@ -41248,7 +36846,7 @@ "Wow! Hurricane \"Sandy\" is huge. Cool view. http://t.co/MOwPlcUB\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy huge cool view \n", + "hurricane sandy huge cool view \n", "\n", "\n", "Sandy Not Fucking Playing Wit Yall Dawg ! http://t.co/ajgERqXr\n", @@ -41272,7 +36870,7 @@ "Crazy pic my cousin just sent me from NY....Everyone say a prayer for everyone experiencing Sandy http://t.co/Z8tKRwve\n", "\n", "--------------------------------------------------------\n", - "crazy pic cousin sent ny everyone say prayer everyone experiencing sandy \n", + "crazy pic cousin sent new york everyone say prayer everyone experiencing sandy \n", "\n", "\n", "Sandy floods http://t.co/rf7eoh46\n", @@ -41284,7 +36882,7 @@ "After a hurricane, comes a rainbow.. NYC after Sandy hit last night.. 🙏 http://t.co/lZ3dDVts\n", "\n", "--------------------------------------------------------\n", - "hurricane comes rainbow nyc sandy hit last night \n", + "hurricane comes rainbow new york city sandy hit last night \n", "\n", "\n", "instacnvs's photo http://t.co/v6kUdNGH Check out Sandy from space!\n", @@ -41296,7 +36894,7 @@ "Dam sandy doin work in NYC. http://t.co/tQB1MsPr\n", "\n", "--------------------------------------------------------\n", - "dam sandy doin work nyc \n", + "dam sandy doin work new york city \n", "\n", "\n", "Sandy Cabs http://t.co/VO5JA6oY\n", @@ -41314,13 +36912,13 @@ "full disk image from #nasa shows how massive Hurricane Sandy; wow -- http://t.co/vWH0z7lZ\n", "\n", "--------------------------------------------------------\n", - "full disk image nasa shows massive hurricane sandy wow \n", + "full disk image nasa shows massive hurricane sandy \n", "\n", "\n", "Hurricane Sandy 2012: Satellite Image http://t.co/tS8rt6aD\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy 2012 satellite image \n", + "hurricane sandy012 satellite image \n", "\n", "\n", "Sandy doing werk http://t.co/wirz9es2\n", @@ -41334,7 +36932,13 @@ "--------------------------------------------------------\n", "ground zero please pray everyone affected hurricane sandy \n", "\n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "A pic of manhattan, sandy is no joke hope everyone is safe http://t.co/gowL8YBA\n", "\n", "--------------------------------------------------------\n", @@ -41350,19 +36954,19 @@ "Hurricane Sandy flooded Manhattan NY. Many in NY and NJ have lost power. #prayersplease http://t.co/2GUyQzTU\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy flooded manhattan ny many ny nj lost power prayersplease \n", + "hurricane sandy flooded manhattan new york many new york new jersey lost power prayersplease \n", "\n", "\n", "#AstroPicture Badai Sandy difoto dari luar angkasa: http://t.co/5rSgjRof\n", "\n", "--------------------------------------------------------\n", - "astropicture badai sandy difoto dari luar angkasa \n", + "astropicture badai sandy difoto angkasa \n", "\n", "\n", "Sandy already fucking up 9 year olds days. This is in Milford #suckstosuck http://t.co/RpMqbost\n", "\n", "--------------------------------------------------------\n", - "sandy already fucking 9 year olds days milford suckstosuck \n", + "sandy already fucking year olds days milford suckstosuck \n", "\n", "\n", "The Atlantic City boardwalk is a different kind of Sandy today. http://t.co/xwJeiYEL\n", @@ -41380,13 +36984,13 @@ "Taxis sit in a flooded lot after Hurricane Sandy Oct. 30, 2012 in Hoboken, New Jersey. http://t.co/AVjQi4e3\n", "\n", "--------------------------------------------------------\n", - "taxis sit flooded lot hurricane sandy oct 30 2012 hoboken new jersey \n", + "taxis sit flooded lot hurricane sandy oct 02 hoboken new jersey \n", "\n", "\n", "Sandy- 1 Trampoline- 0 http://t.co/kZ1jEB5E\n", "\n", "--------------------------------------------------------\n", - "sandy 1 trampoline 0 \n", + "sandy trampoline \n", "\n", "\n", "Hola says Hurricane Sandy http://t.co/4RjQXbsw\n", @@ -41431,18 +37035,6 @@ "okay sandy right \n", "\n", "\n", - "Sandy aint playin.... http://t.co/VwMV6GSL\n", - "\n", - "--------------------------------------------------------\n", - "sandy aint playin \n", - "\n", - "\n", - "Sandy ain't playing http://t.co/Ax48JKQm\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", - "\n", - "\n", "Imponerende Sandy-billede andjelicaaa's photo http://t.co/QWhCygG8\n", "\n", "--------------------------------------------------------\n", @@ -41485,12 +37077,6 @@ "brooklyn sandy arrived \n", "\n", "\n", - "Hurricane sandy's damage http://t.co/rQKquxmE\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy damage \n", - "\n", - "\n", "Prayers go out to all who have been effected by sandy #seasidepier destroyed #memories #sosad http://t.co/mdIYCQh5\n", "\n", "--------------------------------------------------------\n", @@ -41500,19 +37086,13 @@ "Bomberos en NY. http://t.co/raLDYbOy # sandy\n", "\n", "--------------------------------------------------------\n", - "bomberos ny sandy \n", - "\n", - "\n", - "Holy shit! @ashley2426: @MikeFrancisWX: AMAZING PIC!! Water in NYC at record levels! 14th st &Ave C: http://t.co/1Z99ebeh #news #sandy\n", - "\n", - "--------------------------------------------------------\n", - "holy shit amazing pic water nyc record levels 14th st andave c news sandy \n", + "bomberos new york sandy \n", "\n", "\n", "Would suggest the kids not play on this for now # wtnh #hurricanesandy http://t.co/4bIxAPVa\n", "\n", "--------------------------------------------------------\n", - "would suggest kids play wtnh hurricanesandy \n", + "would suggest kids play wtnh hurricane sandy \n", "\n", "\n", "Seaside after Sandy 😳😢😭💔 #seaside #boardwalk #sandy #hurricane #depressing http://t.co/nvuGbQqi\n", @@ -41548,7 +37128,7 @@ "A Double Rainbow touches down in #NYC as Hurricane #Sandy passes - via Kurt Wilberding http://t.co/1bSYkFYG (via @NYC)\n", "\n", "--------------------------------------------------------\n", - "double rainbow touches nyc hurricane sandy passes via kurt wilberding \n", + "double rainbow touches new york city hurricane sandy passes kurt wilberding \n", "\n", "\n", "the doublest rainbow of them all, captured by @kurtdietrich, touches down in lower Manhattan after #sandy http://t.co/bHgQDgc8\n", @@ -41560,7 +37140,7 @@ "RT! A rainbow after Sandy via @kurtdietrich Rainbow touches down in lower Manhattan #hurricane #sandy\\nhttp://t.co/1WIy9Qn4\n", "\n", "--------------------------------------------------------\n", - "rt rainbow sandy rainbow touches lower manhattan hurricane sandy \n", + "rainbow sandy rainbow touches lower manhattan hurricane sandy \n", "\n", "\n", "Rainbow touches down in Manhattan after #Sandy passed. A real rainbow. A ray of hope. http://t.co/yVu5O0tA via @kurtdietrich | cc @YOlivia28\n", @@ -41587,48 +37167,18 @@ "sandy通過したのかな やっとww ダブルレインボー \n", "\n", "\n", - "@kurtdietrich: Rainbow touches down in NYC #sandy http://t.co/4yvER9Fj God promises, \"I will never flood NYC again, until next year.\"\n", - "\n", - "--------------------------------------------------------\n", - "rainbow touches nyc sandy god promises never flood nyc next year \n", - "\n", - "\n", - "Rainbow touches down in lower Manhattan #hurricane #sandy http://t.co/mV32jXji\n", - "\n", - "--------------------------------------------------------\n", - "rainbow touches lower manhattan hurricane sandy \n", - "\n", - "\n", "The morning after RT @kurtdietrich Rainbow touches down in lower Manhattan #hurricane #sandy http://t.co/B0yFdI1O\n", "\n", "--------------------------------------------------------\n", "morning \n", "\n", "\n", - "Rainbow touches down in lower Manhattan #hurricane #sandy http://t.co/RSb5SvDq via @kurtdietrich RT @NewYorkPost\n", - "\n", - "--------------------------------------------------------\n", - "rainbow touches lower manhattan hurricane sandy \n", - "\n", - "\n", - "A Double Rainbow touches down in #NYC as Hurricane #Sandy passes - via Kurt Wilberding http://t.co/ZFuIrZiC\n", - "\n", - "--------------------------------------------------------\n", - "double rainbow touches nyc hurricane sandy passes via kurt wilberding \n", - "\n", - "\n", "The morning after #Sandy. Rainbow touches down in lower Manhattan. http://t.co/MUW0GOlR\n", "\n", "--------------------------------------------------------\n", "morning sandy rainbow touches lower manhattan \n", "\n", "\n", - "@toppscards Rainbow touches down in lower Manhattan #hurricane #sandy http://t.co/kMpHdkNK\n", - "\n", - "--------------------------------------------------------\n", - "rainbow touches lower manhattan hurricane sandy \n", - "\n", - "\n", "Great photo of rainbow touching down in lower Manhattan after #Sandy http://t.co/Qf14EkZf via @kurtdietrich @NewYorkPost\n", "\n", "--------------------------------------------------------\n", @@ -41644,13 +37194,13 @@ "Ok this is #&@#king incredible O_o Rt @Chadisms \" My friend's sister's Trampoline in Long Island. #HurricaneSandy http://t.co/NdUItEti \"\n", "\n", "--------------------------------------------------------\n", - "ok king incredible \n", + "ok king incredible oo \n", "\n", "\n", "My friend's sister's Trampolene in Long Island. #HurricaneSandy http://t.co/sroRwHhV\n", "\n", "--------------------------------------------------------\n", - "friend sister trampolene long island hurricanesandy \n", + "friend sister trampolene long island hurricane sandy \n", "\n", "\n", "#SANDY #Queens #BreezyPoint aftermath http://t.co/UOuYYFcn\n", @@ -41686,7 +37236,7 @@ "ภาพคุ้นๆ A parking lot full of yellow cabs is flooded as a result of Hurricane Sandy on Oct 30,2012 in Hoboken, NJ. http://t.co/Sju6YsZQ\n", "\n", "--------------------------------------------------------\n", - "ภาพค นๆ parking lot full yellow cabs flooded result hurricane sandy oct 30 2012 hoboken nj \n", + "ภาพค นๆ parking lot full yellow cabs flooded result hurricane sandy oct0012 hoboken new jersey \n", "\n", "\n", "Fantastic pic RT @thecoolhunter A parking lot full of yellow cabs flooded in Hoboken. #Sandy http://t.co/vruQkvy0\n", @@ -41698,7 +37248,7 @@ "A parking lot full of yellow cabs is flooded as a result of #Sandy 30 Oct Hoboken, NJ http://t.co/v3rhvrIi (AP Photo/Charles Sykes)\n", "\n", "--------------------------------------------------------\n", - "parking lot full yellow cabs flooded result sandy 30 oct hoboken nj ap photo charles sykes \n", + "parking lot full yellow cabs flooded result sandy0 oct hoboken new jersey ap photo charles sykes \n", "\n", "\n", "A parking lot full of yellow cabs is flooded as a result of Hurricane Sandy in Hoboken. - http://t.co/NwoXpUJX\n", @@ -41710,37 +37260,31 @@ "Photo: Flooded parking lot full of yellow taxis in Hoboken, NJ. (Charles Sykes / AP) #Sandy http://t.co/9GqfzJRo\n", "\n", "--------------------------------------------------------\n", - "photo flooded parking lot full yellow taxis hoboken nj charles sykes ap sandy \n", + "photo flooded parking lot full yellow taxis hoboken new jersey charles sykes ap sandy \n", "\n", "\n", "A parking lot full of yellow cabs sits flooded as a result of Hurricane Sandy on Tuesday, October 30, 2012 in Hobo http://t.co/dL7aX45L\n", "\n", "--------------------------------------------------------\n", - "parking lot full yellow cabs sits flooded result hurricane sandy tuesday october 30 2012 hobo \n", + "parking lot full yellow cabs sits flooded result hurricane sandy tuesday october02 hobo \n", "\n", "\n", "A parking lot of flooded yellow cabs brought to you by #HurricaneSandy http://t.co/MvTlnaOX #insane http://t.co/geuyiJC7\n", "\n", "--------------------------------------------------------\n", - "parking lot flooded yellow cabs brought hurricanesandy insane \n", + "parking lot flooded yellow cabs brought hurricane sandy insane \n", "\n", "\n", "Wow, here's a parking lot of flooded yellow cabs. #sandy http://t.co/4ksyg1DH\n", "\n", "--------------------------------------------------------\n", - "wow parking lot flooded yellow cabs sandy \n", - "\n", - "\n", - "A parking lot of flooded yellow cabs brought to you by Hurricane #Sandy http://t.co/xl34dLne #SU\n", - "\n", - "--------------------------------------------------------\n", - "parking lot flooded yellow cabs brought hurricane sandy \n", + "parking lot flooded yellow cabs sandy \n", "\n", "\n", "Empire State Building shines in the dark.... #Sandy #HurricaneSandy http://t.co/ZJsGNS94\n", "\n", "--------------------------------------------------------\n", - "empire state building shines dark sandy hurricanesandy \n", + "empire state building shines dark sandy hurricane sandy \n", "\n", "\n", "This is just nuts. -> abnieves27's photo #sandy http://t.co/Cr1UNeT7\n", @@ -41749,12 +37293,6 @@ "nuts abnieves27 photo sandy \n", "\n", "\n", - "@alexpriest: Woah. RT @mikemadden: This photo by NASA is just absurd: http://t.co/p1iEKp33 #sandy\n", - "\n", - "--------------------------------------------------------\n", - "woah \n", - "\n", - "\n", "Taxis inundados en New Jersey por el huracán #Sandy http://t.co/CAJASOfx\n", "\n", "--------------------------------------------------------\n", @@ -41770,13 +37308,13 @@ "El frente de un edificio en Nueva York se vino abajo > http://t.co/WjFuPZ9e < New Jersey Huracán Sandy .\n", "\n", "--------------------------------------------------------\n", - "frente edificio nueva york vino abajo greater less new jersey huracán sandy \n", + "frente edificio nueva york vino abajo new jersey huracán sandy \n", "\n", "\n", "Manhattan, EEUU. Después de la tormenta, llega la calma.. #eeuu #sandy #ny #beautiful #building #tower #clou http://t.co/9V4aqiFa\n", "\n", "--------------------------------------------------------\n", - "manhattan eeuu después tormenta llega calma eeuu sandy ny beautiful building tower clou \n", + "manhattan eeuu después tormenta llega calma eeuu sandy new york beautiful building tower clou \n", "\n", "\n", "Vista del huracán Sandy desde satélite de la NASA en el espacio http://t.co/nCy262Qs\n", @@ -41788,7 +37326,7 @@ "Regresamos con más imágenes de #Sandy donde han confirmado la muerte de 11 personas en este momento. http://t.co/73tN8cNd\n", "\n", "--------------------------------------------------------\n", - "regresamos imágenes sandy confirmado muerte 11 personas momento \n", + "regresamos imágenes sandy confirmado muerte de1 personas momento \n", "\n", "\n", "El agua en las obras de la zona cero de Nueva York http://t.co/xI8FhTyl #Sandy #foto\n", @@ -41824,13 +37362,13 @@ "La otra cara de #Sandy. La espectaculares imágenes que se pueden hacer. Los taxis de NY hundidos. http://t.co/YmiHWMgr\n", "\n", "--------------------------------------------------------\n", - "cara sandy espectaculares imágenes pueden hacer taxis ny hundidos \n", + "sandy espectaculares imágenes pueden hacer taxis new york hundidos \n", "\n", "\n", "#Sandy el monstruo! Dios misericordia pa'l noroeste!🙏🙏 ,Dios cuide mi gente de Boston y NY / nasagoddard's photo http://t.co/bC9HfQ5F\n", "\n", "--------------------------------------------------------\n", - "sandy monstruo dios misericordia pa l noroeste dios cuide gente boston ny nasagoddard photo \n", + "sandy monstruo dios misericordia pa noroeste dios cuide gente boston new york nasagoddard photo \n", "\n", "\n", "El HMS Bounty devorado x las aguas del Atlántico al paso de la tormenta #sandy http://t.co/2pv6yiJd\n", @@ -41854,7 +37392,7 @@ "Huracan Sandy lleva mas de una semana haciendo estragos desde el caribe hasta canada http://t.co/DHaGkn36\n", "\n", "--------------------------------------------------------\n", - "huracan sandy lleva mas semana haciendo estragos caribe canada \n", + "huracan sandy lleva semana haciendo estragos caribe canada \n", "\n", "\n", "Y fuera bromas, ahora una foto real de lo sucedido por el huracán Sandy (Zona Cero, memorial) http://t.co/whzoE0By\n", @@ -41866,7 +37404,7 @@ "#NewYork la Virgen Milagrosa En Perfectas Condiciones en medio del desastre causado por #sandy http://t.co/zNtAt0s0\n", "\n", "--------------------------------------------------------\n", - "newyork virgen milagrosa perfectas condiciones medio desastre causado sandy \n", + "new york virgen milagrosa perfectas condiciones medio desastre causado sandy \n", "\n", "\n", "Imagen reciente de la #NASA demuestra que sigue escondida la costa de #E.U.A. por #sandy http://t.co/oReWY7Os\n", @@ -41884,31 +37422,31 @@ "la foto de femmedarmes http://t.co/ExRRW5Em #sandy #nyc #storn\n", "\n", "--------------------------------------------------------\n", - "foto femmedarmes sandy nyc storn \n", + "foto femmedarmes sandy new york city storn \n", "\n", "\n", "Después de la tormenta, dos arcoiris. Alguien ha activado algo en alguna parte... #sandy #harwitum http://t.co/sEiniLBy\n", "\n", "--------------------------------------------------------\n", - "después tormenta dos arcoiris alguien activado alguna parte sandy harwitum \n", + "después tormenta arcoiris alguienactivado alguna parte sandy harwitum \n", "\n", "\n", "#SANDY: O que se ver neste momento no céu de Nov York é o arco-iris. Será um bom sinal? Vamos aguardar as próximas hrs http://t.co/q2HEoYSr\n", "\n", "--------------------------------------------------------\n", - "sandy ver neste momento céu nov york é arco iris um bom sinal vamos aguardar próximas hrs \n", + "sandy ver neste momento céu nov york arco iris bom sinal vamos aguardar próximas hrs \n", "\n", "\n", "#Ríos de #agua en un #parking de #NuevaYork #NewYork por el #Huracán #Sandy http://t.co/YhST8DOQ\n", "\n", "--------------------------------------------------------\n", - "ríos agua parking nuevayork newyork huracán sandy \n", + "ríos agua parking nuevayork new york huracán sandy \n", "\n", "\n", "Crazy shit este building se de grano en 8ave #sandy http://t.co/1SMqBTA0\n", "\n", "--------------------------------------------------------\n", - "crazy shit building grano 8ave sandy \n", + "crazy shit building grano sandy \n", "\n", "\n", "la foto de jacobsantiago #Sandy http://t.co/5sKCUfzx\n", @@ -41920,19 +37458,19 @@ "La obra de la zona zero (donde estaban las Torres Gemelas) quedó inundado. #Sandy vía facebook de @FDNY http://t.co/R1UTDUqa\n", "\n", "--------------------------------------------------------\n", - "obra zona zero torres gemelas quedó inundado sandy vía facebook \n", + "obra zona zero torres gemelas quedó inundado sandyfacebook \n", "\n", "\n", "Despues de la tormenta, siempre llega la calma #NY #Manhattan #Sandy http://t.co/kecqqbRd\n", "\n", "--------------------------------------------------------\n", - "despues tormenta siempre llega calma ny manhattan sandy \n", + "despues tormenta siempre llega calma new york manhattan sandy \n", "\n", "\n", "Después de la tormenta siempre llega la calma. #NewYork #Sandy http://t.co/z4BcuhbA\n", "\n", "--------------------------------------------------------\n", - "después tormenta siempre llega calma newyork sandy \n", + "después tormenta siempre llega calma new york sandy \n", "\n", "\n", "Otra buena de #sandy ( foto de librattus http://t.co/Kl7qfKDR )\n", @@ -41962,7 +37500,7 @@ "Terminal de #taxi en Hoboken, New Jersey Via @nbcnewyork #Sandy #NYC http://t.co/KIzk7vFr\n", "\n", "--------------------------------------------------------\n", - "terminal taxi hoboken new jersey via sandy nyc \n", + "terminal taxi hoboken new jersey sandy new york city \n", "\n", "\n", "Midtown Tun Aquí les compartimos unas imágenes de el huracán #sandy http://t.co/OqHqZdot\n", @@ -41980,7 +37518,7 @@ "la foto de johnnyluca http://t.co/ODUnY9Lb #nyc #sandy\n", "\n", "--------------------------------------------------------\n", - "foto johnnyluca nyc sandy \n", + "foto jnnyluca new york city sandy \n", "\n", "\n", "It looks like surfing is out 🏄\\n#hurricane http://t.co/geb24Dul\n", @@ -41992,199 +37530,187 @@ "#hurricanesandy doing work http://t.co/VUEqdtdj\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy work \n", + "hurricane sandy work \n", "\n", "\n", "#AtlanticCity #NewJersey #HurricaneSandy http://t.co/j5F73lik\n", "\n", "--------------------------------------------------------\n", - "atlanticcity newjersey hurricanesandy \n", + "atlanticcity newjersey hurricane sandy \n", "\n", "\n", "#NoFilter Shiid just got REAL #HurricaneSandy🙈🙀💦🏃💨 http://t.co/w2RfYQIG\n", "\n", "--------------------------------------------------------\n", - "nofilter shiid got real hurricanesandy \n", + "nofilter shiid got real hurricane sandy \n", "\n", "\n", "Wow! Flooded yellow cabs. \\n\\n#nyc #hurricanesandy #yellowcab #taxi http://t.co/eYx3oAir\n", "\n", "--------------------------------------------------------\n", - "wow flooded yellow cabs nyc hurricanesandy yellowcab taxi \n", + "flooded yellow cabs new york city hurricane sandy yellowcab taxi \n", "\n", "\n", "Seaside Heights Casino Pier roller coaster in the ocean!!! #hurricanesandy http://t.co/tbPxCOGK\n", "\n", "--------------------------------------------------------\n", - "seaside heights casino pier roller coaster ocean hurricanesandy \n", + "seaside heights casino pier roller coaster ocean hurricane sandy \n", "\n", "\n", "Seaside Heights Pier NO MORE!! #seaside #heights #nj #hurricane #hurricanesandy #funtime #rollercoaster #oc http://t.co/u04576s1\n", "\n", "--------------------------------------------------------\n", - "seaside heights pier seaside heights nj hurricane hurricanesandy funtime rollercoaster oc \n", + "seaside heights pier seaside heights new jersey hurricane hurricane sandy funtime rollercoaster oc \n", "\n", "\n", "20th Street and Avenue C #NewYork #HurricaneSandy http://t.co/ZqLA3KS6\n", "\n", "--------------------------------------------------------\n", - "20th street avenue c newyork hurricanesandy \n", + "0th street avenue new york hurricane sandy \n", "\n", "\n", "hide yo kids, hide yo wife #sandy #hurricanesandy #milford #ct #connecticut #yolo http://t.co/0HRl4ptM\n", "\n", "--------------------------------------------------------\n", - "hide kids hide wife sandy hurricanesandy milford ct connecticut yolo \n", + "hidekids hidewife sandy hurricane sandy milford ct connecticut yolo \n", "\n", "\n", "Avenue C & 8th Street #NYC #HurricaneSandy http://t.co/FwJOVSVd\n", "\n", "--------------------------------------------------------\n", - "avenue c 8th street nyc hurricanesandy \n", + "avenue street new york city hurricane sandy \n", "\n", "\n", "Corner of Avenue C & 8th St, Anonymous Photo #nyc #Flood #Sandy #Frankenstorm #APSuperstorm #HPSandy\\nhttp://t.co/dpuNbuhM\n", "\n", "--------------------------------------------------------\n", - "corner avenue c 8th st anonymous photo nyc flood sandy frankenstorm apsuperstorm hpsandy \n", + "corner avenue st anonymous photo new york city flood sandy frankenstorm apsuperstorm hpsandy \n", "\n", "\n", "Prayers & blessings go to everybody on the East coast! #hurricanesandy #besafe #naturaldisaster ☁💨💦💧🌊🌀👏🙏 http://t.co/TuUJ0208\n", "\n", "--------------------------------------------------------\n", - "prayers blessings go everybody east coast hurricanesandy besafe naturaldisaster \n", + "prayers blessings go everybody east coast hurricane sandy besafe naturaldisaster \n", "\n", "\n", "#frankenstorm as seen from #outerspace . #hurricane #hurricanesandy http://t.co/0PKcknRE\n", "\n", "--------------------------------------------------------\n", - "frankenstorm seen outerspace hurricane hurricanesandy \n", + "frankenstorm seen outerspace hurricane hurricane sandy \n", "\n", "\n", "What the hell am I seeing happen in NYC man?! #HURRICANESANDY http://t.co/nYWLddO8\n", "\n", "--------------------------------------------------------\n", - "hell seeing happen nyc hurricanesandy \n", + "hell seeing happen new york city hurricane sandy \n", "\n", "\n", "Trampoline go home, you're drunk. #hurricanesandy #trampoline #crazy. #hurricane #sandy #longisland (phildi http://t.co/18LAlVil\n", "\n", "--------------------------------------------------------\n", - "trampoline go home drunk hurricanesandy trampoline crazy hurricane sandy longisland phildi \n", + "trampoline go home drunk hurricane sandy trampoline crazy hurricane sandy longisland phildi \n", "\n", "\n", "Firefighters going car to car on Avenue C to check for trapped motorists. Godspeed. #sandy http://t.co/CVaM5HGF\n", "\n", "--------------------------------------------------------\n", - "firefighters going car car avenue c check trapped motorists godspeed sandy \n", + "firefighters going car car avenue check trapped motorists godspeed sandy \n", "\n", "\n", "Repost from das_schulze Avenue C & 8th #hurricane #sandy #eastvillage http://t.co/qpHIGKW7\n", "\n", "--------------------------------------------------------\n", - "repost das schulze avenue c 8th hurricane sandy eastvillage \n", + "repost dasschulze avenue hurricane sandy eastvillage \n", "\n", "\n", "Nypd cars under water at avenue C east village #silenthill #sandy http://t.co/o4N4dgnI\n", "\n", "--------------------------------------------------------\n", - "nypd cars water avenue c east village silenthill sandy \n", + "nypd cars water avenue east village silenthill sandy \n", "\n", "\n", "14th Street & Avenue C, NYC #sandy http://t.co/2bI7EvMW -- HONEY GERMAN @vafatboy @kittyboo2121\n", "\n", "--------------------------------------------------------\n", - "14th street avenue c nyc sandy honey german \n", + "4th street avenue new york city sandy honey german \n", "\n", "\n", "One word: WOW!\\n#taxi #underwater #NYC after the #hurricane http://t.co/ecYuxC7M\n", "\n", "--------------------------------------------------------\n", - "one word wow taxi underwater nyc hurricane \n", - "\n", - "\n", - "#hurricanesandy http://t.co/Nki0KD7f\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "one word taxi underwater new york city hurricane \n", "\n", "\n", "#AtlanticCity #HurricaneSandy #Newjersey http://t.co/vpQUEFN7\n", "\n", "--------------------------------------------------------\n", - "atlanticcity hurricanesandy newjersey \n", + "atlanticcity hurricane sandy newjersey \n", "\n", "\n", "nasagoddardさんの写真 http://t.co/DKiEVceV\\n16時間前のSandy\n", "\n", "--------------------------------------------------------\n", - "nasagoddardさんの写真 16時間前のsandy \n", + "nasagoddardさんの写真 6時間前のsandy \n", "\n", "\n", "nasagoddard's photo http://t.co/7BP2VB3M wow! #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "nasagoddard photo wow hurricanesandy \n", + "nasagoddard photo hurricane sandy \n", "\n", "\n", "Near my job. Not for nothing I'm a little nervous now. #LES lower east side #hurricaneSandy this wind is nut http://t.co/0LzAFL1M\n", "\n", "--------------------------------------------------------\n", - "near job nothing little nervous lower east side hurricanesandy wind nut \n", - "\n", - "\n", - "#HurricaneSandy. Wow!! http://t.co/cx7i04kd\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy wow \n", + "near job nothing little nervous lower east side hurricane sandy wind nut \n", "\n", "\n", "Manhattan... Pray for New Yorkers #hurricaneSandy #repost http://t.co/kYGniItG\n", "\n", "--------------------------------------------------------\n", - "manhattan pray new yorkers hurricanesandy repost \n", + "manhattan pray new yorkers hurricane sandy repost \n", "\n", "\n", "no more jersey shore #SeaSideHeights #hurricanesandy http://t.co/bCUrfxYh\n", "\n", "--------------------------------------------------------\n", - "jersey shore seasideheights hurricanesandy \n", + "jersey shore seasideheights hurricane sandy \n", "\n", "\n", "We live to see another day. #hurricanesandy #rainbow #nyc #dayafter #survivor @ NYC http://t.co/VAeoAWGG\n", "\n", "--------------------------------------------------------\n", - "live see another day hurricanesandy rainbow nyc dayafter survivor nyc \n", + "live see another day hurricane sandy rainbow new york city dayafter survivor new york city \n", "\n", "\n", "PATH station in Hoboken :( my city is underwater. Praying for those who endured destruction. #hurricanesandy http://t.co/owVDqdXz\n", "\n", "--------------------------------------------------------\n", - "path station hoboken city underwater praying endured destruction hurricanesandy \n", + "path station hoboken city underwater praying endured destruction hurricane sandy \n", "\n", "\n", "#hurricanesandy Hoboken, NJ http://t.co/fzjYWF9e\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy hoboken nj \n", + "hurricane sandy hoboken new jersey \n", "\n", "\n", "Hoboken path station flood. #NewJersey #flood #hurricanesandy. #hurricane. #sandy http://t.co/MXj5Cvdn\n", "\n", "--------------------------------------------------------\n", - "hoboken path station flood newjersey flood hurricanesandy hurricane sandy \n", + "hoboken path station flood newjersey flood hurricane sandy hurricane sandy \n", "\n", "\n", "#Hoboken #NJ - #YellowCabs #HurricaneSandy #NY http://t.co/JNeQah1Q http://t.co/rSFGOXpU\n", "\n", "--------------------------------------------------------\n", - "hoboken nj yellowcabs hurricanesandy ny \n", + "hoboken new jersey yellowcabs hurricane sandy new york \n", "\n", "\n", "wow...this is so scary. #sandy#path#hoboken http://t.co/erjlYh9v\n", "\n", "--------------------------------------------------------\n", - "wow scary sandy path hoboken \n", + "scary sandypathhoboken \n", "\n", "\n", "Bonkers! RT @weeddude: RT @reedtimmerTVN: An AP photo coming out of Hoboken, NJ of taxis under water! #HurricaneSandy http://t.co/AHGPMj6v\n", @@ -42196,43 +37722,43 @@ "#hoboken #underwater #hurricanesandy @ Hoboken http://t.co/tXDttAmG\n", "\n", "--------------------------------------------------------\n", - "hoboken underwater hurricanesandy hoboken \n", + "hoboken underwater hurricane sandy hoboken \n", "\n", "\n", "Brand new cabs ruined north of 14th Street RT @MistaChubbz: #Hoboken #NJ - #YellowCabs #HurricaneSandy #NY http://t.co/AaZaC88O\n", "\n", "--------------------------------------------------------\n", - "brand new cabs ruined north 14th street \n", + "brand new cabs ruined north of4th street \n", "\n", "\n", "So this is lower #manhattan right about #meow\\n\\n#hurricane #sandy #hurricanesandy #2012 #nyc #iloveny #werefu http://t.co/xNOakLyK\n", "\n", "--------------------------------------------------------\n", - "lower manhattan right meow hurricane sandy hurricanesandy 2012 nyc iloveny werefu \n", + "lower manhattan right meow hurricane sandy hurricane sandy012 new york city iloveny werefu \n", "\n", "\n", "Craziness!!! #hurricanesandy http://t.co/3klZq7Dz\n", "\n", "--------------------------------------------------------\n", - "craziness hurricanesandy \n", + "craziness hurricane sandy \n", "\n", "\n", "Lowkey glad I'm in Fla for the time being... But I'm praying for my hometown 😭😱 #nyc #hurricanesandy #disast http://t.co/0FVS56ES\n", "\n", "--------------------------------------------------------\n", - "lowkey glad fla time praying hometown nyc hurricanesandy disast \n", + "lowkey glad fla time praying hometown new york city hurricane sandy disast \n", "\n", "\n", "#NYC Streets! #HurricaneSandy #Manhattan http://t.co/fHSLGH9L\n", "\n", "--------------------------------------------------------\n", - "nyc streets hurricanesandy manhattan \n", + "new york city streets hurricane sandy manhattan \n", "\n", "\n", "Brooklyn, NY #HurricaneSandy http://t.co/gpM5XyaI\n", "\n", "--------------------------------------------------------\n", - "brooklyn ny hurricanesandy \n", + "brooklyn new york hurricane sandy \n", "\n", "\n", "My homie DJKARTEL posted this outta #Manhatten #hurricanesandy http://t.co/Lj7COvXY\n", @@ -42244,137 +37770,107 @@ "That's a big ol' storm. #hurricanesandy #frankenstorm http://t.co/ZbxX5JZf\n", "\n", "--------------------------------------------------------\n", - "big ol storm hurricanesandy frankenstorm \n", + "big ol storm hurricane sandy frankenstorm \n", "\n", "\n", "Lol #hurricanesandy #sandy #milford #trampoline http://t.co/0I4dKr5g\n", "\n", "--------------------------------------------------------\n", - "lol hurricanesandy sandy milford trampoline \n", + "hurricane sandy sandy milford trampoline \n", "\n", "\n", "#hurricanesandy #shitjustgotreal I guess she didn't like the way it was looking at her lol http://t.co/Scxmve44\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy shitjustgotreal guess like way looking lol \n", + "hurricane sandy shitjustgotreal guess like way looking \n", "\n", "\n", "You want to play game #hurricanesandy http://t.co/CgZgToUa\n", "\n", "--------------------------------------------------------\n", - "play game hurricanesandy \n", - "\n", - "\n", - "Atlantic City... #hurricanesandy http://t.co/Ns1mWzCD\n", - "\n", - "--------------------------------------------------------\n", - "atlantic city hurricanesandy \n", - "\n", - "\n", - "Atlantic City. http://t.co/5Trzinwt #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "atlantic city hurricanesandy \n", + "play game hurricane sandy \n", "\n", "\n", "This is real life. Lower Manhattan, as we speak!! 😱😱😱😱 #HurricaneSandy #NYC #Manhattan #Queens http://t.co/IPzBGOyz\n", "\n", "--------------------------------------------------------\n", - "real life lower manhattan speak hurricanesandy nyc manhattan queens \n", + "real life lower manhattan speak hurricane sandy new york city manhattan queens \n", "\n", "\n", "#eastvillage #hurricanesandy #cyclone #newyorkcity #newyork #flood #nature #wow #instamood #igers #instagram http://t.co/38KtFWRm\n", "\n", "--------------------------------------------------------\n", - "eastvillage hurricanesandy cyclone newyorkcity newyork flood nature wow instamood igers instagram \n", - "\n", - "\n", - "Omg NYC.... #hurricanesandy http://t.co/soyFBWJn\n", - "\n", - "--------------------------------------------------------\n", - "omg nyc hurricanesandy \n", + "eastvillage hurricane sandy cyclone new yorkcity new york flood nature igers instagram \n", "\n", "\n", "R.I.P so many memories :( #seasideheights #sad #fuck #hurricanesandy #dumbbitch http://t.co/XNGmivZH\n", "\n", "--------------------------------------------------------\n", - "r p many memories seasideheights sad fuck hurricanesandy dumbbitch \n", + "r p many memories seasideheights sad fuck hurricane sandy dumbbitch \n", "\n", "\n", "lmao😂😂😂😂 #hurricane #hurricanesandy #sandy http://t.co/7XkY3SUx\n", "\n", "--------------------------------------------------------\n", - "lmao hurricane hurricanesandy sandy \n", + "hurricane hurricane sandy sandy \n", "\n", "\n", "Funny!! But not funny!! I think this is someplace in NJ. #regram originaltandan #hurricanesandy http://t.co/dMbZpZHz\n", "\n", "--------------------------------------------------------\n", - "funny funny think someplace nj regram originaltandan hurricanesandy \n", + "funny funny think someplace new jersey originaltandan hurricane sandy \n", "\n", "\n", "Cabs In Water #usatoday #coverstory #hurricanesandy #newjersey http://t.co/p3qdIs0w\n", "\n", "--------------------------------------------------------\n", - "cabs water usatoday coverstory hurricanesandy newjersey \n", + "cabs water usatoday coverstory hurricane sandy newjersey \n", "\n", "\n", "#usa #hurricanesandy #ny #sandy @ My Home http://t.co/ziqQ3UVL\n", "\n", "--------------------------------------------------------\n", - "usa hurricanesandy ny sandy home \n", + "usa hurricane sandy new york sandy home \n", "\n", "\n", "RIP seaside pier 😢🎢 #seaside #jerseyshore #hurricanesandy http://t.co/HyguNdup\n", "\n", "--------------------------------------------------------\n", - "rip seaside pier seaside jerseyshore hurricanesandy \n", - "\n", - "\n", - "Damn this is from #hurricaneSandy http://t.co/TlJZDxmZ\n", - "\n", - "--------------------------------------------------------\n", - "damn hurricanesandy \n", + "rip seaside pier seaside jerseyshore hurricane sandy \n", "\n", "\n", "Foto de kaylamaria http://t.co/CtnePmP2 #hurricanesandy #NYC\n", "\n", "--------------------------------------------------------\n", - "foto kaylamaria hurricanesandy nyc \n", + "foto kaylamaria hurricane sandy nyc \n", "\n", "\n", "Yup so #newyork is almost completely underwater now...#hurricanesandy http://t.co/xnwH6XFK\n", "\n", "--------------------------------------------------------\n", - "yup newyork almost completely underwater hurricanesandy \n", + "yup new york almost completely underwater hurricane sandy \n", "\n", "\n", "#nyc #fdr #sandy #hurricane #hurricanesandy #photograph #photography #staysafe #flooding http://t.co/KzFSIMmD\n", "\n", "--------------------------------------------------------\n", - "nyc fdr sandy hurricane hurricanesandy photograph photography staysafe flooding \n", + "new york city fdr sandy hurricane hurricane sandy photograph photography staysafe flooding \n", "\n", "\n", "According to Facebook, this supposedly happened in Lorain. I'm skeptical. #hurricanesandy #highwind #windy # http://t.co/tW4lQKWv\n", "\n", "--------------------------------------------------------\n", - "according facebook supposedly happened lorain skeptical hurricanesandy highwind windy \n", + "according facebook supposedly happened lorain skeptical hurricane sandy highwind windy \n", "\n", "\n", "#hurricanesandy #nyc #newyork #bigapple #water #floods #instashit #streetphotography #instagram #photography http://t.co/Zxen5yQl\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc newyork bigapple water floods instashit streetphotography instagram photography \n", + "hurricane sandy new york city new york bigapple water floods instashit streetphotography instagram photography \n", "\n", "\n", "Damn heights RT @Cyn_Santana: Seaside heights after #hurricanesandy http://t.co/rxJGz9r4\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "--------------------------------------------------------\n", "damn heights \n", "\n", @@ -42382,661 +37878,649 @@ "lochobags's photo - #HurricaneSandy http://t.co/ooAs7ha0\n", "\n", "--------------------------------------------------------\n", - "lochobags photo hurricanesandy \n", + "lochobags photo hurricane sandy \n", "\n", "\n", "Flooded in #NewYorkCity because #HurricaneSandy. Photo from @stumbleupon http://t.co/Pj3cjgs9\n", "\n", "--------------------------------------------------------\n", - "flooded newyorkcity hurricanesandy photo \n", + "flooded new yorkcity hurricane sandy photo \n", "\n", "\n", "Whoaaaa.... U kno its real when that shit jumping all over the place #HurricaneSandy http://t.co/lySlaHX0\n", "\n", "--------------------------------------------------------\n", - "whoaaaa kno real shit jumping place hurricanesandy \n", + "kno real shit jumping place hurricane sandy \n", "\n", "\n", "Seaside pier omg #hurricanesandy did some really bad damage that bitch!!! http://t.co/G5vYyUHC\n", "\n", "--------------------------------------------------------\n", - "seaside pier omg hurricanesandy really bad damage bitch \n", + "seaside pier hurricane sandy really bad damage bitch \n", "\n", "\n", "R.I.P seaside #hurricanesandy #aftermath http://t.co/qaphNhHP\n", "\n", "--------------------------------------------------------\n", - "r p seaside hurricanesandy aftermath \n", + "r p seaside hurricane sandy aftermath \n", "\n", "\n", "That swirl is #hurricanesandy!!! It is real out there!!! #besafe people. http://t.co/1ppXwmJs\n", "\n", "--------------------------------------------------------\n", - "swirl hurricanesandy real besafe people \n", + "swirl hurricane sandy real besafe people \n", "\n", "\n", "Damn I can't believe this is #nyc right now #hurricanesandy http://t.co/qeaKu20r\n", "\n", "--------------------------------------------------------\n", - "damn believe nyc right hurricanesandy \n", + "damn believe new york city right hurricane sandy \n", "\n", "\n", "Seaside Heights, NJ grew up going here as a kid #HurricaneSandy #PrayersToEveryoneThere http://t.co/0g14J920\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj grew going kid hurricanesandy prayerstoeveryonethere \n", + "seaside heights new jersey grew going kid hurricane sandy prayerstoeveryonethere \n", "\n", "\n", "Earth showing #HurricaneSandy :-o http://t.co/PWtSM5dK\n", "\n", "--------------------------------------------------------\n", - "earth showing hurricanesandy \n", + "earth showing hurricane sandy \n", "\n", "\n", "WOW, sad. World Trade Center construction area being taken over by flood waters! #nywx #hurricanesandy http://t.co/7LIKeZnJ\n", "\n", "--------------------------------------------------------\n", - "wow sad world trade center construction area taken flood waters nywx hurricanesandy \n", + "sad world trade center construction area taken flood waters nywx hurricane sandy \n", "\n", "\n", "#hurricanesandy trying to catch a cab in #nyc think again? http://t.co/CaYxPf9P\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy trying catch cab nyc think \n", + "hurricane sandy trying catch cab new york city think \n", "\n", "\n", "#East8th Street and Ave E in #LowerManhattan...crazzzy a$$ storm! #HurricaneSandy http://t.co/l34evgs6\n", "\n", "--------------------------------------------------------\n", - "east8th street ave lowermanhattan crazzzy storm hurricanesandy \n", + "east8th street ave lowermanhattan crazzzy storm hurricane sandy \n", "\n", "\n", "That is not suppose to be there....😨 #seaside #nofilter #hurricanesandy #sad #rollercoaster #ocean http://t.co/9GhUd8q2\n", "\n", "--------------------------------------------------------\n", - "suppose seaside nofilter hurricanesandy sad rollercoaster ocean \n", + "suppose seaside nofilter hurricane sandy sad rollercoaster ocean \n", "\n", "\n", "Manhattans view 2 hours ago! Damnnn!!! #hurricanesandy http://t.co/H16h6UNE\n", "\n", "--------------------------------------------------------\n", - "manhattans view 2 hours ago damnnn hurricanesandy \n", + "manhattans view hours ago damnnn hurricane sandy \n", "\n", "\n", "#seasideheights #aka #jerseyshore #hurricane #hurricanesandy #damaged #gone #beach #boardwalk http://t.co/3rsob04K\n", "\n", "--------------------------------------------------------\n", - "seasideheights aka jerseyshore hurricane hurricanesandy damaged gone beach boardwalk \n", + "seasideheights aka jerseyshore hurricane hurricane sandy damaged gone beach boardwalk \n", "\n", "\n", "This is where I book shows and I'm not ready to say bye yet :( #atlanticcity #hurricanesandy #goodbye http://t.co/XTKMaUfD\n", "\n", "--------------------------------------------------------\n", - "book shows ready say bye yet atlanticcity hurricanesandy goodbye \n", + "book shows ready say bye yet atlanticcity hurricane sandy goodbye \n", "\n", "\n", "NASA's Latest Image of #HurricaneSandy ... THIS STORM IS BIG AS SHIT!!!! #BreathTaking http://t.co/PXtzh27m\n", "\n", "--------------------------------------------------------\n", - "nasa latest image hurricanesandy storm big shit breathtaking \n", + "nasa latest image hurricane sandy storm big shit breathtaking \n", "\n", "\n", "&& people think this shits funny, fucking shame on yall. #hurricanesandy if you think this is funny I CAN'T http://t.co/VN0VBTqP\n", "\n", "--------------------------------------------------------\n", - "andand people think shits funny fucking shame yall hurricanesandy think funny \n", + "andand people think shits funny fucking shame yall hurricane sandy think funny \n", "\n", "\n", "RIP seaside heights and bored walk #jerseyshore #hurricanesandy http://t.co/nKeUgpjP\n", "\n", "--------------------------------------------------------\n", - "rip seaside heights bored walk jerseyshore hurricanesandy \n", + "rip seaside heights bored walk jerseyshore hurricane sandy \n", "\n", "\n", "This is incredible. #seaside #rollercoaster #ocean #done #upset #hurricanesandy #disaster 😰😿😟 http://t.co/3qgHRGKz\n", "\n", "--------------------------------------------------------\n", - "incredible seaside rollercoaster ocean done upset hurricanesandy disaster \n", + "incredible seaside rollercoaster ocean done upset hurricane sandy disaster \n", "\n", "\n", "And you thought it was hard to get a cab in #CoMo @thisistumtum. #hurricanesandy http://t.co/2NdxPY0L\n", "\n", "--------------------------------------------------------\n", - "thought hard get cab hurricanesandy \n", + "thought hard get cab hurricane sandy \n", "\n", "\n", "How will i ever get home?! #midtowntunnel #newyork #longisland #home #hurricanesandy http://t.co/yR6Wk6OT\n", "\n", "--------------------------------------------------------\n", - "ever get home midtowntunnel newyork longisland home hurricanesandy \n", + "ever get home midtowntunnel new york longisland home hurricane sandy \n", "\n", "\n", "The Hudson River has made this one cab lot an underwater parking lot!!! #hurricanesandy aftermath!!! http://t.co/M2OrPI2w\n", "\n", "--------------------------------------------------------\n", - "hudson river made one cab lot underwater parking lot hurricanesandy aftermath \n", + "hudson river made one cab lot underwater parking lot hurricane sandy aftermath \n", "\n", "\n", "A birds eye view AC #HurricaneSandy http://t.co/G3034lyq\n", "\n", "--------------------------------------------------------\n", - "birds eye view ac hurricanesandy \n", - "\n", - "\n", - "“@skymarkwhite: Another pic of serious flooding in Atlantic City, NJ - courtesy @Hoeboma: http://t.co/LsZ0roOx” omg #HurricaneSandy 🙏🇺🇸\n", - "\n", - "--------------------------------------------------------\n", - "omg hurricanesandy \n", + "birds eye view ac hurricane sandy \n", "\n", "\n", "#hurricanesandy #milfordproblems this is actually hilarious that this happened in milford http://t.co/uSwCBeWf\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy milfordproblems actually hilarious happened milford \n", + "hurricane sandy milfordproblems actually hilarious happened milford \n", "\n", "\n", "Rainbow in manhattan. #hurricanesandy Follow me for more photos!!!! http://t.co/vZJQhM1c\n", "\n", "--------------------------------------------------------\n", - "rainbow manhattan hurricanesandy follow photos \n", + "rainbow manhattan hurricane sandy follow photos \n", "\n", "\n", "OMG lol (Bohemia, NY) Darn #hurricanesandy #hurricane #sandy #instadaily #scary http://t.co/cgKV7iEq\n", "\n", "--------------------------------------------------------\n", - "omg lol bohemia ny darn hurricanesandy hurricane sandy instadaily scary \n", + "bemia new york darn hurricane sandy hurricane sandy instadaily scary \n", "\n", "\n", "#hurricane #sandy #hurricanesandy #hurricaneseason #weathet #earth #planets #storm http://t.co/24Wdduca\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy hurricaneseason weathet earth planets storm \n", + "hurricane sandy hurricane sandy hurricaneseason weathet earth planets storm \n", "\n", "\n", "#unreal #atlanticcity #newjersey #storm #hurricanesandy from #wboc. #boardwalk #flood http://t.co/KlOtA1ty\n", "\n", "--------------------------------------------------------\n", - "unreal atlanticcity newjersey storm hurricanesandy wboc boardwalk flood \n", + "unreal atlanticcity newjersey storm hurricane sandy wboc boardwalk flood \n", "\n", "\n", "Lower Manhattan Flooded... #HurricaneSandy http://t.co/4bTcYeVS\n", "\n", "--------------------------------------------------------\n", - "lower manhattan flooded hurricanesandy \n", + "lower manhattan flooded hurricane sandy \n", "\n", "\n", "Bye #seaside #nj #hurricanesandy http://t.co/Vyddsqqb\n", "\n", "--------------------------------------------------------\n", - "bye seaside nj hurricanesandy \n", + "bye seaside new jersey hurricane sandy \n", "\n", "\n", "The east village #haarp #hurricanesandy http://t.co/txDNqFih\n", "\n", "--------------------------------------------------------\n", - "east village haarp hurricanesandy \n", + "east village haarp hurricane sandy \n", "\n", "\n", "Trampoline trapped in the powerlines #hurricanesandy http://t.co/Pyw1Zg7O\n", "\n", "--------------------------------------------------------\n", - "trampoline trapped powerlines hurricanesandy \n", + "trampoline trapped powerlines hurricane sandy \n", "\n", "\n", "AFTER: casino pier Seaside Heights New Jersey #hurricanesandy. #hurricane. #sandy. #NewJersey. #storm. http://t.co/QtYNsYHi\n", "\n", "--------------------------------------------------------\n", - "casino pier seaside heights new jersey hurricanesandy hurricane sandy newjersey storm \n", + "casino pier seaside heights new jersey hurricane sandy hurricane sandy newjersey storm \n", "\n", "\n", "je_nnaleigh's photo http://t.co/1qkvJ0V4 #hurricanesandy #sandy\n", "\n", "--------------------------------------------------------\n", - "nnaleigh photo hurricanesandy sandy \n", + "jennaleigh photo hurricane sandy sandy \n", "\n", "\n", "Trampoline caught in power lines in Connecticut #hurricanesandy http://t.co/M8RtrKXc\n", "\n", "--------------------------------------------------------\n", - "trampoline caught power lines connecticut hurricanesandy \n", + "trampoline caught power lines connecticut hurricane sandy \n", "\n", "\n", "#lowermanhatten #hurricanesandy http://t.co/XE7v91aT\n", "\n", "--------------------------------------------------------\n", - "lowermanhatten hurricanesandy \n", + "lowermanhatten hurricane sandy \n", "\n", "\n", "#Casinopier out to sea #nj #hurricanesandy #seaside http://t.co/ULqDmOwf\n", "\n", "--------------------------------------------------------\n", - "casinopier nj hurricanesandy seaside \n", + "casinopier new jersey hurricane sandy seaside \n", "\n", "\n", "Damn, son. #hurricanesandy. #hurricane2012. #ripseaside. #byebyeguid0z! #newjersey. http://t.co/dg5kkKpQ\n", "\n", "--------------------------------------------------------\n", - "damn hurricanesandy hurricane2012 ripseaside byebyeguid0z newjersey \n", + "damn hurricane sandy hurricane2012 ripseaside byebyeguid0z newjersey \n", "\n", "\n", "Sandy! You can blow over my house, but don't take my trampoline #hurricanesandy #staysafe http://t.co/hKwyRMlk\n", "\n", "--------------------------------------------------------\n", - "sandy blow house take trampoline hurricanesandy staysafe \n", + "sandy blow house take trampoline hurricane sandy staysafe \n", "\n", "\n", "#LowerManhattan #nyc #hurricaneSandy http://t.co/MsSeQ8lD\n", "\n", "--------------------------------------------------------\n", - "lowermanhattan nyc hurricanesandy \n", + "lowermanhattan new york city hurricane sandy \n", "\n", "\n", "Sandy is the destroyer #hurricanesandy #NYC http://t.co/Bn2tUjlR\n", "\n", "--------------------------------------------------------\n", - "sandy destroyer hurricanesandy nyc \n", + "sandy destroyer hurricane sandy new york city \n", "\n", "\n", "Lower east side NYC...WOW. #hurricanesandy http://t.co/yxsAIW7X\n", "\n", "--------------------------------------------------------\n", - "lower east side nyc wow hurricanesandy \n", + "lower east side new york city hurricane sandy \n", "\n", "\n", "#HurricaneSandy #SeaSide #NJ #JerseyShore #Sandy http://t.co/FqaZLAud\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy seaside nj jerseyshore sandy \n", + "hurricane sandy seaside new jersey jerseyshore sandy \n", "\n", "\n", "So sad... #starjet #casinopier #hurricanesandy #newjersey #heights #jerseyshore #rollercoaster #flooded me # http://t.co/zJrvfusZ\n", "\n", "--------------------------------------------------------\n", - "sad starjet casinopier hurricanesandy newjersey heights jerseyshore rollercoaster flooded \n", + "sad starjet casinopier hurricane sandy newjersey heights jerseyshore rollercoaster flooded \n", "\n", "\n", "I had to share @djchaserfe photo. This is The jersey Shore, AKA Seaside Heights, NJ #hurricanesandy http://t.co/HumM8suB\n", "\n", "--------------------------------------------------------\n", - "share photo jersey shore aka seaside heights nj hurricanesandy \n", + "share photo jersey shore aka seaside heights new jersey hurricane sandy \n", "\n", "\n", "Taken from George Tekei Facebook.. Double rainbow, recovery begins #NYC #HurricaneSandy .. Stay safe everyon http://t.co/47V2DfNA\n", "\n", "--------------------------------------------------------\n", - "taken george tekei facebook double rainbow recovery begins nyc hurricanesandy stay safe everyon \n", + "taken george tekei facebook double rainbow recovery begins new york city hurricane sandy stay safe everyon \n", "\n", "\n", "Foto de the_e21_workshop http://t.co/vZjY7MVH #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto e21 workshop hurricanesandy \n", + "foto thee21workshop hurricane sandy \n", "\n", "\n", "The Morning After The Storm. #HurricaneSandy #NewYork #Manhattan #Rainbow http://t.co/1cDQn4QD\n", "\n", "--------------------------------------------------------\n", - "morning storm hurricanesandy newyork manhattan rainbow \n", + "morning storm hurricane sandy new york manhattan rainbow \n", "\n", "\n", "Wow. The Roller coaster at seaside is done :( #Jersey #JerseyShore #RollerCoaster #HurricaneSandy http://t.co/sSAzn1De\n", "\n", "--------------------------------------------------------\n", - "wow roller coaster seaside done jersey jerseyshore rollercoaster hurricanesandy \n", + "roller coaster seaside done jersey jerseyshore rollercoaster hurricane sandy \n", "\n", "\n", "Jersey Shore :( #hurricaneSandy #JerseyShore #NJ #Jersey #PenguinsProductions http://t.co/ua8miekM\n", "\n", "--------------------------------------------------------\n", - "jersey shore hurricanesandy jerseyshore nj jersey penguinsproductions \n", + "jersey shore hurricane sandy jerseyshore new jersey jersey penguinsproductions \n", "\n", "\n", "#HurricaneSandy will me you #JumpJump flying trampoline in Ma #OffTheWire http://t.co/7pTwI8VQ\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy jumpjump flying trampoline offthewire \n", + "hurricane sandy jumpjump flying trampoline offthewire \n", "\n", "\n", "A car right now in the LES Manhattan #hurricanesandy http://t.co/NUqv7dsq\n", "\n", "--------------------------------------------------------\n", - "car right manhattan hurricanesandy \n", + "car right manhattan hurricane sandy \n", "\n", "\n", "Brooklyn #flooding #hurricanesandy !! Prayers for my family and friends in the northeast http://t.co/PamXZyDX\n", "\n", "--------------------------------------------------------\n", - "brooklyn flooding hurricanesandy prayers family friends northeast \n", + "brooklyn flooding hurricane sandy prayers family friends northeast \n", "\n", "\n", "good luck east village #sandy #hurricanesandy #eastvillage http://t.co/xJnShW26\n", "\n", "--------------------------------------------------------\n", - "good luck east village sandy hurricanesandy eastvillage \n", + "good luck east village sandy hurricane sandy eastvillage \n", "\n", "\n", "Trampoline on wires from sandy #omg #flood #fuckthisshit #hightide #hurricanesandy #sandy #storm #shitjus http://t.co/t0MPCalu\n", "\n", "--------------------------------------------------------\n", - "trampoline wires sandy omg flood fuckthisshit hightide hurricanesandy sandy storm shitjus \n", + "trampoline wires sandy flood fuckthisshit hightide hurricane sandy sandy storm shitjus \n", "\n", "\n", "Baby don't worry about a thing. Cause every little thing's gonna be alright! #hurricanesandy #nyc #longislan http://t.co/53xsrPim\n", "\n", "--------------------------------------------------------\n", - "baby worry thing cause every little thing gonna alright hurricanesandy nyc longislan \n", + "baby worry thing cause every little thing gonna alright hurricane sandy new york city longislan \n", "\n", "\n", "Cabs #yellow #huracan #hurricanesandy #cab #taxi #newyork #ny #newjersey #jersey #eeuu #sandy #water #manhat http://t.co/zrxLESvH\n", "\n", "--------------------------------------------------------\n", - "cabs yellow huracan hurricanesandy cab taxi newyork ny newjersey jersey eeuu sandy water manhat \n", + "cabs yellow huracan hurricane sandy cab taxi new york new york newjersey jersey eeuu sandy water manhat \n", "\n", "\n", "Guess im not going this summer...No more jersey shore... #jerseyshore #hurricanesandy #hurricanemadness #dam http://t.co/QGwfFvnm\n", "\n", "--------------------------------------------------------\n", - "guess im going summer jersey shore jerseyshore hurricanesandy hurricanemadness dam \n", + "guess going summer jersey shore jerseyshore hurricane sandy hurricanemadness dam \n", "\n", "\n", "#lol #hurricane #sandy #hurricanesandy #wires #trampoline #trampolineunwires #flying #flyaway #stu http://t.co/5IhMI2XB\n", "\n", "--------------------------------------------------------\n", - "lol hurricane sandy hurricanesandy wires trampoline trampolineunwires flying flyaway stu \n", - "\n", - "\n", - "#hurricanesandy #nasa http://t.co/BmbzBRgb\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nasa \n", + "hurricane sandy hurricane sandy wires trampoline trampolineunwires flying flyaway stu \n", "\n", "\n", "#hurricanesandy manhattan 4got where tho talk bout a facelift smh but no1 got Hurt Thanx goodness http://t.co/e39cPrye\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy manhattan 4got tho talk bout facelift smh no1 got hurt thanx goodness \n", + "hurricane sandy manhattan tho talk bout facelift no1 got hurt thanx goodness \n", "\n", "\n", "Daaamnn #repost @TLR_FBS #hurricanesandy http://t.co/2ckd7BUa\n", "\n", "--------------------------------------------------------\n", - "daaamnn repost hurricanesandy \n", + "daaamnn repost hurricane sandy \n", "\n", "\n", "Taken from @Miss_Mickey of ave C and 8th st. #crazy #hurricanesandy #nyc #flood #nofilter #hurricane #alphab http://t.co/mvXirvy0\n", "\n", "--------------------------------------------------------\n", - "taken ave c 8th st crazy hurricanesandy nyc flood nofilter hurricane alphab \n", + "taken ave st crazy hurricane sandy new york city flood nofilter hurricane alphab \n", "\n", "\n", "and the boardwalk washes away... Atlantic City NJ #hurricanesandy http://t.co/LA6PUvAD\n", "\n", "--------------------------------------------------------\n", - "boardwalk washes away atlantic city nj hurricanesandy \n", + "boardwalk washes away atlantic city new jersey hurricane sandy \n", "\n", "\n", "It's getting REAL real over here in West Virginia! 😂 #hurricane #hurricanesandy #playingintherain #woah #tra http://t.co/kCvXYDN3\n", "\n", "--------------------------------------------------------\n", - "getting real real west virginia hurricane hurricanesandy playingintherain woah tra \n", + "getting real real west virginia hurricane hurricane sandy playingintherain woah tra \n", "\n", "\n", "#HurricaneSandy with her foot all up in #LES 's ass! Unreal! http://t.co/za5d6HWC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy foot ass unreal \n", + "hurricane sandy foot ass unreal \n", "\n", "\n", "Firemen searched for people trapped in car #hurricanesandy http://t.co/RWaAncJA\n", "\n", "--------------------------------------------------------\n", - "firemen searched people trapped car hurricanesandy \n", + "firemen searched people trapped car hurricane sandy \n", "\n", "\n", "#seaside #hurricanesandy http://t.co/m1whYLBw\n", "\n", "--------------------------------------------------------\n", - "seaside hurricanesandy \n", + "seaside hurricane sandy \n", "\n", "\n", "Manhattan's East Village #nyc #hurricanesandy #home :( http://t.co/NuYUzLsl\n", "\n", "--------------------------------------------------------\n", - "manhattan east village nyc hurricanesandy home \n", + "manhattan east village new york city hurricane sandy home \n", "\n", "\n", "#flooding in Lower Manhattan!! Omg! #HurricaneSandy http://t.co/AgIu58bh\n", "\n", "--------------------------------------------------------\n", - "flooding lower manhattan omg hurricanesandy \n", + "flooding lower manhattan hurricane sandy \n", "\n", "\n", "#holy #shit #out in #Connecticut #hurricanesandy #eastcoast #trampoline on #powerlines ##everyone #be #safe http://t.co/BiVZA3GF\n", "\n", "--------------------------------------------------------\n", - "holy shit connecticut hurricanesandy eastcoast trampoline powerlines everyone safe \n", + "holy shit connecticut hurricane sandy eastcoast trampoline powerlines everyone safe \n", "\n", "\n", "CTHUUUUUUU 😂😂😂😂 #TrampolineFail #HurricaneSandy this is crazyyyyy lol http://t.co/Y9i0vgSv\n", "\n", "--------------------------------------------------------\n", - "cthuuuuuuu trampolinefail hurricanesandy crazyyyyy lol \n", + "cthuuuuuuu trampolinefail hurricane sandy crazyyyyy \n", "\n", "\n", "The images from #HurricaneSandy are blowing my mind Totally insane. Stay safe. Image via @BuzzFeed jesseandgreg's photo http://t.co/Jboqz9Ta\n", "\n", "--------------------------------------------------------\n", - "images hurricanesandy blowing mind totally insane stay safe image jesseandgreg photo \n", + "images hurricane sandy blowing mind totally insane stay safe image jesseandgreg photo \n", "\n", "\n", "Atlantic City! Completely flooded #HurricaneSandy http://t.co/U7fk1NyM\n", "\n", "--------------------------------------------------------\n", - "atlantic city completely flooded hurricanesandy \n", + "atlantic city completely flooded hurricane sandy \n", "\n", "\n", "I grew up going to #Seaside damn... #hurricanesandy http://t.co/yABSCg3k\n", "\n", "--------------------------------------------------------\n", - "grew going seaside damn hurricanesandy \n", + "grew going seaside damn hurricane sandy \n", "\n", "\n", "cabs are here!! #newjersey #hurricanesandy http://t.co/xCmkzSnF #fb\n", "\n", "--------------------------------------------------------\n", - "cabs newjersey hurricanesandy fb \n", + "cabs newjersey hurricane sandy fb \n", "\n", "\n", "What's left of the jersey shore. #hurricanesandy #hurricane #jerseyshore http://t.co/87TBe8pX\n", "\n", "--------------------------------------------------------\n", - "left jersey shore hurricanesandy hurricane jerseyshore \n", + "left jersey shore hurricane sandy hurricane jerseyshore \n", "\n", "\n", ".@CarreonFrank's pix North end of #AtlanticCity #hurricanesandy #noreastersandypants #sandy #Flood #devastat http://t.co/ySF1dgLH\n", "\n", "--------------------------------------------------------\n", - "pix north end atlanticcity hurricanesandy noreastersandypants sandy flood devastat \n", + "pix north end atlanticcity hurricane sandy noreastersandypants sandy flood devastat \n", "\n", "\n", "Instagramの「 #HurricaneSandy 」で、俄かに信じられない光景(写真)が…。本当にひどいのかぁ? triple_ekohn14さんの写真 http://t.co/L3gaSS2n frogscottさんの写真 http://t.co/YocAv3vr\n", "\n", "--------------------------------------------------------\n", - "instagramの hurricanesandy で 俄かに信じられない光景 写真 が 本当にひどいのかぁ triple ekohn14さんの写真 frogscottさんの写真 \n", + "instagramの hurricane sandy で 俄かに信じられない光景 写真 が 本当にひどいのかぁ tripleekn14さんの写真 frogscottさんの写真 \n", "\n", "\n", "Bay street thats so scary #HurricaneSandy http://t.co/smo8Xbcs\n", "\n", "--------------------------------------------------------\n", - "bay street thats scary hurricanesandy \n", + "bay street thats scary hurricane sandy \n", "\n", "\n", "This melted my heart! #hurricanesandy #prayingforeveryone #sosweet http://t.co/8yjWT06F\n", "\n", "--------------------------------------------------------\n", - "melted heart hurricanesandy prayingforeveryone sosweet \n", + "melted heart hurricane sandy prayingforeveryone sosweet \n", "\n", "\n", "Wow New York is in deep #HurricaneSandy http://t.co/c1zWW7Nc\n", "\n", "--------------------------------------------------------\n", - "wow new york deep hurricanesandy \n", + "new york deep hurricane sandy \n", "\n", "\n", "http://t.co/lHWUV8Ct #HurricaneSandy #DoubleRainbow #WhatDoesItMean\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy doublerainbow whatdoesitmean \n", + "hurricane sandy doublerainbow whatdoesitmean \n", "\n", "\n", "Who wants to go jump on the tramp? #hurricanesandy http://t.co/uY4iUIZV\n", "\n", "--------------------------------------------------------\n", - "wants go jump tramp hurricanesandy \n", + "wants go jump tramp hurricane sandy \n", "\n", "\n", "Atlantic city boardwalk is gone :( http://t.co/MuGLpZ4Y #hurricanesandy #frankenstorm\n", "\n", "--------------------------------------------------------\n", - "atlantic city boardwalk gone hurricanesandy frankenstorm \n", + "atlantic city boardwalk gone hurricane sandy frankenstorm \n", "\n", "\n", "May god be with you New Yorkers http://t.co/eqKIPxTO\\n#newyork #HurricaneSandy #Sandy\n", "\n", "--------------------------------------------------------\n", - "may god new yorkers newyork hurricanesandy sandy \n", + "may god new yorkers new york hurricane sandy sandy \n", "\n", "\n", "LES during the storm, pic that's going around. Insane. #hurricane #hurricanesandy #sandy #frankenstorm http://t.co/XOQDcMCH\n", "\n", "--------------------------------------------------------\n", - "storm pic going around insane hurricane hurricanesandy sandy frankenstorm \n", + "storm pic going around insane hurricane hurricane sandy sandy frankenstorm \n", "\n", "\n", "WTC construction site, NY #hurricanesandy http://t.co/DgLbJZ3d\n", "\n", "--------------------------------------------------------\n", - "wtc construction site ny hurricanesandy \n", + "wtc construction site new york hurricane sandy \n", "\n", "\n", "What hurricane Sandra done #ohshit #onthenews #sandy #sandyhurricane #hurricanesandy #legit http://t.co/W7b6hjp6\n", "\n", "--------------------------------------------------------\n", - "hurricane sandra done ohshit onthenews sandy sandyhurricane hurricanesandy legit \n", + "hurricane sandra done shit onthenews sandy sandyhurricane hurricane sandy legit \n", "\n", "\n", "#hurricanesandy #jerseyshore http://t.co/29aJUVJz\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy jerseyshore \n", + "hurricane sandy jerseyshore \n", "\n", "\n", "Classy damage #hurricanesandy #hurricane #hurricanenyc #blackout #blackoutnyc #scarry #apocalypse #igdaily # http://t.co/joO0igDW\n", "\n", "--------------------------------------------------------\n", - "classy damage hurricanesandy hurricane hurricanenyc blackout blackoutnyc scarry apocalypse igdaily \n", + "classy damage hurricane sandy hurricane hurricanenyc blackout blackoutnyc scarry apocalypse igdaily \n", "\n", "\n", "Eerie photo #hurricanesandy http://t.co/HTUqZj0q\n", "\n", "--------------------------------------------------------\n", - "eerie photo hurricanesandy \n", + "eerie photo hurricane sandy \n", "\n", "\n", "Free trampoline anyone... #hurricanesandy #usa #trampoline #ohcrap http://t.co/KLI2xXGI\n", "\n", "--------------------------------------------------------\n", - "free trampoline anyone hurricanesandy usa trampoline ohcrap \n", + "free trampoline anyone hurricane sandy usa trampoline crap \n", "\n", "\n", "Get em sandy! #hurricanesandy #hurricane #sandy http://t.co/QI8BByXw\n", "\n", "--------------------------------------------------------\n", - "get em sandy hurricanesandy hurricane sandy \n", + "get sandy hurricane sandy hurricane sandy \n", "\n", "\n", "Shits Real!!! #HurricaneSandy http://t.co/WyKXo8JS\n", "\n", "--------------------------------------------------------\n", - "shits real hurricanesandy \n", + "shits real hurricane sandy \n", "\n", "\n", "Prayers for my Yankee friends and Fam! #hurricanesandy #NJ #NY #VA #prayers http://t.co/POXAp1is\n", "\n", "--------------------------------------------------------\n", - "prayers yankee friends fam hurricanesandy nj ny va prayers \n", + "prayers yankee friends fam hurricane sandy new jersey new york va prayers \n", "\n", "\n", "Don't believe me here's your you go. 14st and Ave C. #hurricanesandy #nyc http://t.co/vFATdavm\n", "\n", "--------------------------------------------------------\n", - "believe go 14st ave c hurricanesandy nyc \n", + "believe go 4st ave hurricane sandy new york city \n", "\n", "\n", "View from red hook, bk earlier today. #hurricanesandy #sandy http://t.co/QTCmEJlZ\n", "\n", "--------------------------------------------------------\n", - "view red hook bk earlier today hurricanesandy sandy \n", + "view red hook bk earlier today hurricane sandy sandy \n", "\n", "\n", "Now thas cray cray! #hurricanesandy #weather #craycray #hurricanes #trampoline #sky #house #trees #clouds #b http://t.co/rxuhil28\n", "\n", "--------------------------------------------------------\n", - "thas cray cray hurricanesandy weather craycray hurricanes trampoline sky house trees clouds b \n", + "thas cray cray hurricane sandy weather craycray hurricanes trampoline sky house trees clouds b \n", "\n", "\n", "Downtown, Manhattan #Manhattan #hurricanesandy #iphonesia #iphoneonly #iphonegraphy #instagood #instamood #H http://t.co/5lrksb9U\n", "\n", "--------------------------------------------------------\n", - "downtown manhattan manhattan hurricanesandy iphonesia iphoneonly iphonegraphy instagood instamood h \n", + "downtown manhattan manhattan hurricane sandy iphonesia iphoneonly iphonegraphy instagood h \n", "\n", "\n", "See you later taxi cabs #nyc #hurricanesandy http://t.co/wiYypKUF\n", "\n", "--------------------------------------------------------\n", - "see later taxi cabs nyc hurricanesandy \n", + "see later taxi cabs new york city hurricane sandy \n", "\n", "\n", "We are Keeping those affected by #HurricaneSandy in our prayers http://t.co/gLh7tkbE\n", "\n", "--------------------------------------------------------\n", - "keeping affected hurricanesandy prayers \n", + "keeping affected hurricane sandy prayers \n", "\n", "\n", "After a hurricane, comes a rainbow* maybe some light will shine on NYC #hurricane #sandy #hurricanesandy #r http://t.co/by4dVhO8\n", "\n", "--------------------------------------------------------\n", - "hurricane comes rainbow maybe light shine nyc hurricane sandy hurricanesandy r \n", + "hurricane comes rainbow maybe light shine new york city hurricane sandy hurricane sandy \n", "\n", "\n", "Present day New York 😨 Prayers up 🙏 \"But our God is a merciful God\" #HurricaneSandy #DonateToRedCross http://t.co/PCDz68iH\n", "\n", "--------------------------------------------------------\n", - "present day new york prayers god merciful god hurricanesandy donatetoredcross \n", + "present day new york prayers god merciful god hurricane sandy donatetoredcross \n", "\n", "\n", "#Seaside 😢 #hurricanesandy #Sandy #JerseyShore #NJ http://t.co/EdyyXO28\n", "\n", "--------------------------------------------------------\n", - "seaside hurricanesandy sandy jerseyshore nj \n", + "seaside hurricane sandy sandy jerseyshore new jersey \n", "\n", "\n", "Hunkered down. Waiting on #hurricanesandy. Hoping we all stay safe! http://t.co/4HvTzwuD\n", "\n", "--------------------------------------------------------\n", - "hunkered waiting hurricanesandy hoping stay safe \n", + "hunkered waiting hurricane sandy hoping stay safe \n", "\n", "\n", "#NYC WOW Im Speechless !! #HurricaneSandy #Sandy #Hurricane #Flooding #NewYorkCity #Danger # @ New York City http://t.co/7325Jt9F\n", "\n", "--------------------------------------------------------\n", - "nyc wow im speechless hurricanesandy sandy hurricane flooding newyorkcity danger new york city \n", + "new york city speechless hurricane sandy sandy hurricane flooding new yorkcity danger new york city \n", "\n", "\n", "I mean wow.. #seaside #hurricanesandy #new jersey #jerseystrong http://t.co/2cASpjMC\n", "\n", "--------------------------------------------------------\n", - "mean wow seaside hurricanesandy new jersey jerseystrong \n", + "mean seaside hurricane sandy new jersey jerseystrong \n", "\n", "\n", "I'd be scared it'd fall...“@Urban_Foodie14: Whoaaaaaaaaaaaa! 😱😱😱 #hurricanesandy http://t.co/CHplgmWo”\n", @@ -43048,139 +38532,133 @@ "Need NYC Yellow Cab? Anyone? ;) #NYC #HurricaneSandy #Instagrammers http://t.co/kclt08gi\n", "\n", "--------------------------------------------------------\n", - "need nyc yellow cab anyone nyc hurricanesandy instagrammers \n", + "need new york city yellow cab anyone new york city hurricane sandy instagrammers \n", "\n", "\n", "Building collapse on 92nd & 8th avenue. #hurricanesandy, #flood, #newyork, #92ndstreet http://t.co/5Plv6jBm\n", "\n", "--------------------------------------------------------\n", - "building collapse 92nd 8th avenue hurricanesandy flood newyork 92ndstreet \n", + "building collapse on2nd avenue hurricane sandy flood new york 2ndstreet \n", "\n", "\n", "Lol nice going #sandy #trampoline #hurricanesandy http://t.co/tqPzm5Yy\n", "\n", "--------------------------------------------------------\n", - "lol nice going sandy trampoline hurricanesandy \n", + "nice going sandy trampoline hurricane sandy \n", "\n", "\n", "#shitcrazy #hurricanesandy http://t.co/IoppI70B\n", "\n", "--------------------------------------------------------\n", - "shitcrazy hurricanesandy \n", + "shitcrazy hurricane sandy \n", "\n", "\n", "#Pray for #Protection 😱🙏#HurricaneSandy http://t.co/J9V9UoMF\n", "\n", "--------------------------------------------------------\n", - "pray protection hurricanesandy \n", + "pray protection hurricane sandy \n", "\n", "\n", "Double Rainbow this AM over NYC! Sandy# http://t.co/lk7z14uR\n", "\n", "--------------------------------------------------------\n", - "double rainbow nyc sandy \n", + "double rainbow new york city sandy \n", "\n", "\n", "Foto di time http://t.co/nMRbC4Yt #newtork #hurricane\n", "\n", "--------------------------------------------------------\n", - "foto di time newtork hurricane \n", + "foto time newtork hurricane \n", "\n", "\n", "#FDNY at it's finest! #nyc #hurricane #hurricanesandy #destruction #tudorcity #nyc @ Tudor City Park South http://t.co/JEXuhMxc\n", "\n", "--------------------------------------------------------\n", - "fdny finest nyc hurricane hurricanesandy destruction tudorcity nyc tudor city park south \n", + "fdny finest new york city hurricane hurricane sandy destruction tudorcity new york city tudor city park south \n", "\n", "\n", "nikkilarmer's photo #hurricanesandy http://t.co/MjOvOhaJ\n", "\n", "--------------------------------------------------------\n", - "nikkilarmer photo hurricanesandy \n", - "\n", - "\n", - "#HurricaneSandy. #NASA. http://t.co/AKP3MrBF\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nasa \n", + "nikkilarmer photo hurricane sandy \n", "\n", "\n", "Shit. This is right output my building #sandy #hurricane #hurricanesandy #flooding #fuck http://t.co/UcDFeZjt\n", "\n", "--------------------------------------------------------\n", - "shit right output building sandy hurricane hurricanesandy flooding fuck \n", + "shit right output building sandy hurricane hurricane sandy flooding fuck \n", "\n", "\n", "After the storm! #NYC #Sandy #HurricaneSandy We S2 NY http://t.co/J26ebwyl\n", "\n", "--------------------------------------------------------\n", - "storm nyc sandy hurricanesandy s2 ny \n", + "storm new york city sandy hurricane sandy s2 new york \n", "\n", "\n", "This is so sad. Just thinking I was just here last summer #JerseyShore #SeasideHeights #NJ #HurricaneSandy http://t.co/YFSTvSwn\n", "\n", "--------------------------------------------------------\n", - "sad thinking last summer jerseyshore seasideheights nj hurricanesandy \n", + "sad thinking last summer jerseyshore seasideheights new jersey hurricane sandy \n", "\n", "\n", "DAAAMMMN!!!!!😱😱😱😱💦💦💨💨💨#hurricanesandy is not playing. http://t.co/TqU6KN7f\n", "\n", "--------------------------------------------------------\n", - "daaammmn hurricanesandy playing \n", + "daaammmn hurricane sandy playing \n", "\n", "\n", "Shits getting real on Long Island! #hurricanesandy http://t.co/A3yBywBR\n", "\n", "--------------------------------------------------------\n", - "shits getting real long island hurricanesandy \n", + "shits getting real long island hurricane sandy \n", "\n", "\n", "#Wow #hurricanesandy #newyork #flooding http://t.co/57dZhcvk\n", "\n", "--------------------------------------------------------\n", - "wow hurricanesandy newyork flooding \n", + "hurricane sandy new york flooding \n", "\n", "\n", "Meanwhile....in Red Hook #Brooklyn #HurricaneSandy #FloodedLikeAMuhhFucka http://t.co/4gNtOFLf\n", "\n", "--------------------------------------------------------\n", - "meanwhile red hook brooklyn hurricanesandy floodedlikeamuhhfucka \n", + "meanwhile red hook brooklyn hurricane sandy floodedlikeamuhhfucka \n", "\n", "\n", "Atlantic City boardwalk. #insane #boardwalk #atlanticcity #nj #hurricanesandy #destroyed #aftermath http://t.co/ErZpFiME\n", "\n", "--------------------------------------------------------\n", - "atlantic city boardwalk insane boardwalk atlanticcity nj hurricanesandy destroyed aftermath \n", + "atlantic city boardwalk insane boardwalk atlanticcity new jersey hurricane sandy destroyed aftermath \n", "\n", "\n", "Manhattan #HurricaneSandy http://t.co/DDflu1Kw\n", "\n", "--------------------------------------------------------\n", - "manhattan hurricanesandy \n", + "manhattan hurricane sandy \n", "\n", "\n", "a higher view of #AC #NJ #hurricane #sandy #hurricanesandy #flooded #craziness #nobueno http://t.co/EXMzQHQR\n", "\n", "--------------------------------------------------------\n", - "higher view ac nj hurricane sandy hurricanesandy flooded craziness nobueno \n", + "higher view ac new jersey hurricane sandy hurricane sandy flooded craziness nobueno \n", "\n", "\n", "O ish @eliwasserman 😳😳😳 #hurricanesandy showed her ass. http://t.co/GU47Fdx8\n", "\n", "--------------------------------------------------------\n", - "ish hurricanesandy showed ass \n", + "ish hurricane sandy showed ass \n", "\n", "\n", "Yellow Cabs Afloat. #hurricanesandy, #yellowcabs, #flood, #nyc, #taxi http://t.co/kQi7QOoi\n", "\n", "--------------------------------------------------------\n", - "yellow cabs afloat hurricanesandy yellowcabs flood nyc taxi \n", + "yellow cabs afloat hurricane sandy yellowcabs flood new york city taxi \n", "\n", "\n", "we under water!!!! Ave c & East 8th #hurricanesandy #nyc http://t.co/VV9M0jix\n", "\n", "--------------------------------------------------------\n", - "water ave c east 8th hurricanesandy nyc \n", + "water ave east hurricane sandy new york city \n", "\n", "\n", "The East Village got swamped last nite. http://t.co/RuaCfwOu\\n#Sandy\n", @@ -43192,655 +38670,607 @@ "#HurricaneSandy She's not a Joke with the Water 💦💧All this Cabs Wiped Out 👎 http://t.co/kZxlR9aj\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy joke water cabs wiped \n", + "hurricane sandy joke water cabs wiped \n", "\n", "\n", "#Repost YOU \"GOT\" TO BE KIDDING ME!? #HurricaneSandy in Manhattan!!!???? WTF!!! I Can't! 😱😳😳😳😳😱 http://t.co/78cmnxAn\n", "\n", "--------------------------------------------------------\n", - "repost got kidding hurricanesandy manhattan wtf \n", + "repost got kidding hurricane sandy manhattan \n", "\n", "\n", "#BREAKINGnews! #HurricaneSandy: It's easy to get a #taxi in #NewYork now but not so easy to go anywhere http://t.co/8p6GVsxx\n", "\n", "--------------------------------------------------------\n", - "breakingnews hurricanesandy easy get taxi newyork easy go anywhere \n", - "\n", - "\n", - "This Is In Manhattan #HurricaneSandy http://t.co/FqPJwvkp\n", - "\n", - "--------------------------------------------------------\n", - "manhattan hurricanesandy \n", + "breakingnews hurricane sandy easy get taxi new york easy go anywhere \n", "\n", "\n", "Foto de yang_ku http://t.co/wmUsuZsQ #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto yang ku hurricanesandy \n", + "foto yangku hurricane sandy \n", "\n", "\n", "Okay. She gotta go!!!!! #hurricane #hurricanesandy #crazy #storm #badstorm #trampoline #wires #dangerous http://t.co/84rghsWK\n", "\n", "--------------------------------------------------------\n", - "okay gotta go hurricane hurricanesandy crazy storm badstorm trampoline wires dangerous \n", + "okay gotta go hurricane hurricane sandy crazy storm badstorm trampoline wires dangerous \n", "\n", "\n", "seaside is officially under water smdh #hurricanesandy 😔 http://t.co/uXd8hxrU\n", "\n", "--------------------------------------------------------\n", - "seaside officially water smdh hurricanesandy \n", + "seaside officially water smdh hurricane sandy \n", "\n", "\n", "Found this on the web #hurricanesandy http://t.co/goBnQenQ\n", "\n", "--------------------------------------------------------\n", - "found web hurricanesandy \n", - "\n", - "\n", - "@Occuweather: Wow..it will be hard to even get a cab in the city http://t.co/IsY8MpF4 #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "wow hard even get cab city hurricanesandy \n", + "found web hurricane sandy \n", "\n", "\n", "Starting to rise. Get the fuck out! #HurricaneSandy #NewYork #Brooklyn http://t.co/f12UPQAc\n", "\n", "--------------------------------------------------------\n", - "starting rise get fuck hurricanesandy newyork brooklyn \n", + "starting rise get fuck hurricane sandy new york brooklyn \n", "\n", "\n", "#repost of #hurricanesandy wrath from the news http://t.co/U46vzSqR\n", "\n", "--------------------------------------------------------\n", - "repost hurricanesandy wrath news \n", + "repost hurricane sandy wrath news \n", "\n", "\n", "But Forreal it's gettin serious in #Manhatten #prayfornewyork #hurricaneSandy http://t.co/xpW05jUf\n", "\n", "--------------------------------------------------------\n", - "forreal gettin serious manhatten prayfornewyork hurricanesandy \n", + "forreal gettin serious manhatten prayfornew york hurricane sandy \n", "\n", "\n", "Dang Manhattan smh My Prayers Are With My Peeps Out There. #Hurricane #HurricaneSandy #Storm #Prayers #CNN W http://t.co/ZJmfc5Hl\n", "\n", "--------------------------------------------------------\n", - "dang manhattan smh prayers peeps hurricane hurricanesandy storm prayers cnn w \n", + "dang manhattan prayers peeps hurricane hurricane sandy storm prayers cnn w \n", "\n", "\n", "#hurricanesandy @ Kroger http://t.co/qi1ChpjE\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy kroger \n", + "hurricane sandy kroger \n", "\n", "\n", "AC under water: #atlanticcity #hurricane #sandy #flood #flooding #hurricanesandy #casinos #boardwalk http://t.co/ctI1WAZh\n", "\n", "--------------------------------------------------------\n", - "ac water atlanticcity hurricane sandy flood flooding hurricanesandy casinos boardwalk \n", + "ac water atlanticcity hurricane sandy flood flooding hurricane sandy casinos boardwalk \n", "\n", "\n", "#seasideboardwalk so sad.... #seaside#hurricane#hurricanesandy#sad#depressing http://t.co/GJzXfd5D\n", "\n", "--------------------------------------------------------\n", - "seasideboardwalk sad seaside hurricane hurricanesandy sad depressing \n", + "seasideboardwalk sad seasidehurricanehurricane sandysaddepressing \n", "\n", "\n", "catastrophic devastation... #hurricanesandy http://t.co/uThvmHoJ\n", "\n", "--------------------------------------------------------\n", - "catastrophic devastation hurricanesandy \n", + "catastrophic devastation hurricane sandy \n", "\n", "\n", "Seaside heights. That's the pier the jersey shore cast roamed creeping on girls. Damn #hurricanesandy http://t.co/PPTBmdp2\n", "\n", "--------------------------------------------------------\n", - "seaside heights pier jersey shore cast roamed creeping girls damn hurricanesandy \n", + "seaside heights pier jersey shore cast roamed creeping girls damn hurricane sandy \n", "\n", "\n", "Thinking of you NYC! #hurricanesandy http://t.co/cgq8tOQd\n", "\n", "--------------------------------------------------------\n", - "thinking nyc hurricanesandy \n", + "thinking new york city hurricane sandy \n", "\n", "\n", "Silly Trampoline what are you doing ? Stop it. Get down from there. #hurricane #ohlord http://t.co/DX5Jd4Fi\n", "\n", "--------------------------------------------------------\n", - "silly trampoline stop get hurricane ohlord \n", + "silly trampoline stop get hurricane lord \n", "\n", "\n", "World Trade Center construction site in New York City. #hurricanesandy #WTC #NYC #Sandy http://t.co/xF4GopwQ\n", "\n", "--------------------------------------------------------\n", - "world trade center construction site new york city hurricanesandy wtc nyc sandy \n", + "world trade center construction site new york city hurricane sandy wtc new york city sandy \n", "\n", "\n", "#LowerEastsideManhattan #NYC #HurricaneSandy http://t.co/cLyur0jU\n", "\n", "--------------------------------------------------------\n", - "lowereastsidemanhattan nyc hurricanesandy \n", + "lowereastsidemanhattan new york city hurricane sandy \n", "\n", "\n", "The pier at seaside heights collapsed .. Roller coaster is in the waterr #hurricanesandy http://t.co/OziiD5kZ\n", "\n", "--------------------------------------------------------\n", - "pier seaside heights collapsed roller coaster waterr hurricanesandy \n", + "pier seaside heights collapsed roller coaster waterr hurricane sandy \n", "\n", "\n", "#HurricaneSandy #Powerlines #House #Grass #Street #Mailbox #Trampoline http://t.co/1ifsdKLP\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy powerlines house grass street mailbox trampoline \n", + "hurricane sandy powerlines house grass street mailbox trampoline \n", "\n", "\n", "Trampoline #hurricanesandy #sandy http://t.co/Jt4ahAt9\n", "\n", "--------------------------------------------------------\n", - "trampoline hurricanesandy sandy \n", + "trampoline hurricane sandy sandy \n", "\n", "\n", "#aerial view of #Earth. #hurricanesandy #birdseye #clouds http://t.co/AjbR2At8\n", "\n", "--------------------------------------------------------\n", - "aerial view earth hurricanesandy birdseye clouds \n", + "aerial view earth hurricane sandy birdseye clouds \n", "\n", "\n", "So sad #hurricaneSandy http://t.co/853uZrgl #nyflooding #carousel\n", "\n", "--------------------------------------------------------\n", - "sad hurricanesandy nyflooding carousel \n", + "sad hurricane sandy nyflooding carousel \n", "\n", "\n", "at a complete loss of words right now #hurricanesandy #seasideheights #boardwalk http://t.co/pXgI4nkW\n", "\n", "--------------------------------------------------------\n", - "complete loss words right hurricanesandy seasideheights boardwalk \n", + "complete loss words right hurricane sandy seasideheights boardwalk \n", "\n", "\n", "This is how Atlantic City looks now. #hurricanesandy #sandy #ac #atlanticcity #picoftheday #pictureoftheday http://t.co/Nr0XrCJl\n", "\n", "--------------------------------------------------------\n", - "atlantic city looks hurricanesandy sandy ac atlanticcity picoftheday pictureoftheday \n", + "atlantic city looks hurricane sandy sandy ac atlanticcity picoftheday pictureoftheday \n", "\n", "\n", "#Manhatten #NYC #hurricane holy shit http://t.co/A7srezAg\n", "\n", "--------------------------------------------------------\n", - "manhatten nyc hurricane holy shit \n", + "manhatten new york city hurricane holy shit \n", "\n", "\n", "NYC underwater !!!!!!\\n#hurricanesandy http://t.co/pbdG2m7E\n", "\n", "--------------------------------------------------------\n", - "nyc underwater hurricanesandy \n", + "new york city underwater hurricane sandy \n", "\n", "\n", "#SeasideHeights #NewJersey #HurricaneSandy No more rollercoaster Destroyed Pier , Now in the #Atlantic Ocean !!! http://t.co/pUW4zCfR\n", "\n", "--------------------------------------------------------\n", - "seasideheights newjersey hurricanesandy rollercoaster destroyed pier atlantic ocean \n", - "\n", - "\n", - "#hurricanesandy #hurricane #sandy http://t.co/96VcTitS\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy hurricane sandy \n", + "seasideheights newjersey hurricane sandy rollercoaster destroyed pier atlantic ocean \n", "\n", "\n", "Just got sent this Smh some house on 92nd (i think) in NYC #hurricanesandy ain't playinnnn http://t.co/QdZw8XOv\n", "\n", "--------------------------------------------------------\n", - "got sent smh house 92nd think nyc hurricanesandy playinnnn \n", + "got sent house on2nd think new york city hurricane sandy playinnnn \n", "\n", "\n", "Bye-Bye Jersey Shore #Hurricane #HurricaneSandy #Sad #MemoriesDestroyed http://t.co/CU1zBPc9\n", "\n", "--------------------------------------------------------\n", - "bye bye jersey shore hurricane hurricanesandy sad memoriesdestroyed \n", + "bye bye jersey shore hurricane hurricane sandy sad memoriesdestroyed \n", "\n", "\n", "East village awesomeness. #SandyIsASlut #hurricanesandy http://t.co/ChdlrfV4\n", "\n", "--------------------------------------------------------\n", - "east village awesomeness sandyisaslut hurricanesandy \n", + "east village awesomeness sandyisaslut hurricane sandy \n", "\n", "\n", "So how does shit like this happen? 😳 Crazy. #HurricaneSandy http://t.co/qek2QxAh\n", "\n", "--------------------------------------------------------\n", - "shit like happen crazy hurricanesandy \n", + "shit like happen crazy hurricane sandy \n", "\n", "\n", "#shit #sandy #hurricane #hurricanesandy http://t.co/HQk4JMDp\n", "\n", "--------------------------------------------------------\n", - "shit sandy hurricane hurricanesandy \n", + "shit sandy hurricane hurricane sandy \n", "\n", "\n", "#hurricanesandy manhattan 34st http://t.co/4kEgRkGS\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy manhattan 34st \n", + "hurricane sandy manhattan4st \n", "\n", "\n", "Please secure all potential flying objects!! #HurricaneSandy http://t.co/0lwwT3B7\n", "\n", "--------------------------------------------------------\n", - "please secure potential flying objects hurricanesandy \n", + "please secure potential flying objects hurricane sandy \n", "\n", "\n", "East Village, NYC #sandy #hurricane #woowoo #flood #hurricanesandy http://t.co/RQz2Akff\n", "\n", "--------------------------------------------------------\n", - "east village nyc sandy hurricane woowoo flood hurricanesandy \n", + "east village new york city sandy hurricane woowoo flood hurricane sandy \n", "\n", "\n", "Casino pier#sandy http://t.co/Kkf39iiw\n", "\n", "--------------------------------------------------------\n", - "casino pier sandy \n", + "casino piersandy \n", "\n", "\n", "RIP seaside and its amusement park 😫😰😵 #hurricanesandy http://t.co/mLS9v9VN\n", "\n", "--------------------------------------------------------\n", - "rip seaside amusement park hurricanesandy \n", + "rip seaside amusement park hurricane sandy \n", "\n", "\n", "#crazy#shit#sandy http://t.co/i0v1twBa\n", "\n", "--------------------------------------------------------\n", - "crazy shit sandy \n", + "crazyshitsandy \n", "\n", "\n", "Send chills through my body. World Trade Center construction area being taken over by flood waters! #hurricanesandy http://t.co/x8tKQqHT\n", "\n", "--------------------------------------------------------\n", - "send chills body world trade center construction area taken flood waters hurricanesandy \n", + "send chills body world trade center construction area taken flood waters hurricane sandy \n", "\n", "\n", "Hoping that #hurricanesandy takes it easy on my friends and family on the #eastcoast. We will be missing the http://t.co/XZbyslY6\n", "\n", "--------------------------------------------------------\n", - "hoping hurricanesandy takes easy friends family eastcoast missing \n", + "hoping hurricane sandy takes easy friends family eastcoast missing \n", "\n", "\n", "😱😳Wow. #NYC #HURRICANESANDY #taxis ..Smh. http://t.co/oBOHjAkT\n", "\n", "--------------------------------------------------------\n", - "wow nyc hurricanesandy taxis smh \n", + "new york city hurricane sandy taxis \n", "\n", "\n", "#repost #seasideheights #rip #jerseyshore #sad #hurricanesandy http://t.co/EE4khPGP\n", "\n", "--------------------------------------------------------\n", - "repost seasideheights rip jerseyshore sad hurricanesandy \n", + "repost seasideheights rip jerseyshore sad hurricane sandy \n", "\n", "\n", "Cleanest cabs on the East Coast! #sandy #hurricanesandy #nyc #newyorkcity #manhattan http://t.co/XpJAxP0V\n", "\n", "--------------------------------------------------------\n", - "cleanest cabs east coast sandy hurricanesandy nyc newyorkcity manhattan \n", + "cleanest cabs east coast sandy hurricane sandy new york city new yorkcity manhattan \n", "\n", "\n", "if this is seaside I don't even want to know what my beach house looks like 😭😰 #hurricanesandy http://t.co/9hqebaxj\n", "\n", "--------------------------------------------------------\n", - "seaside even know beach house looks like hurricanesandy \n", + "seaside even know beach house looks like hurricane sandy \n", "\n", "\n", "Someone just took my childhood and stabbed it ... RIP seaside ❤ #hurricanesandy http://t.co/n4UD7uu1\n", "\n", "--------------------------------------------------------\n", - "someone took childhood stabbed rip seaside hurricanesandy \n", + "someone took childhood stabbed rip seaside hurricane sandy \n", "\n", "\n", "oh my god .. the rollercoaster at casino pier 😦😩😭💔 #hurricanesandy #seasideheights #boardwalk http://t.co/JFI7qVm3\n", "\n", "--------------------------------------------------------\n", - "oh god rollercoaster casino pier hurricanesandy seasideheights boardwalk \n", - "\n", - "\n", - "Crazy #HurricaneSandy http://t.co/v4kgqz13\n", - "\n", - "--------------------------------------------------------\n", - "crazy hurricanesandy \n", + "god rollercoaster casino pier hurricane sandy seasideheights boardwalk \n", "\n", "\n", "Looks like a movie but its #hurricanesandy #sandy #hurricane #blackout #scarry #apocalypse #igdaily #beauti http://t.co/22bXmVAZ\n", "\n", "--------------------------------------------------------\n", - "looks like movie hurricanesandy sandy hurricane blackout scarry apocalypse igdaily beauti \n", + "looks like movie hurricane sandy sandy hurricane blackout scarry apocalypse igdaily beauti \n", "\n", "\n", "#HurricaneSandy #newyork #Sandy #Hurricane http://t.co/lOdKEUjh\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork sandy hurricane \n", - "\n", - "\n", - "#nyc #hurricanesandy http://t.co/i1gZ09lO\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricanesandy \n", + "hurricane sandy new york sandy hurricane \n", "\n", "\n", "#praying4peopleaffected #hurricanesandy http://t.co/CPjoQkDd\n", "\n", "--------------------------------------------------------\n", - "praying4peopleaffected hurricanesandy \n", + "praying4peopleaffected hurricane sandy \n", "\n", "\n", "“@NewYorkPost: Lower Manhattan #HurricaneSandy http://t.co/KhAyU8YF via @kurtdietrich” Daar is 'n reenboog na elke storm. Hoop na ellende.\n", "\n", "--------------------------------------------------------\n", - "n reenboog elke storm hoop ellende \n", + "reenboog elke storm hoop ellende \n", "\n", "\n", "Welp.... Shit on our dicks.. #hurricanesandy http://t.co/L5QB4nR0\n", "\n", "--------------------------------------------------------\n", - "welp shit dicks hurricanesandy \n", - "\n", - "\n", - "http://t.co/JrsYn95l #nyc #hurricane\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricane \n", + "welp shit dicks hurricane sandy \n", "\n", "\n", "8:30 pm. Still waiting for the other shoe to drop... #nyc #sandy #hurricanesandy @ 65th And Park http://t.co/KHSrL41J\n", "\n", "--------------------------------------------------------\n", - "8 30 pm still waiting shoe drop nyc sandy hurricanesandy 65th park \n", + "0 pm still waiting shoe drop new york city sandy hurricane sandy 5th park \n", "\n", "\n", "street cleaning. sandy was fo real last night! #hurricanesandy #flood http://t.co/Bfnp2gRC\n", "\n", "--------------------------------------------------------\n", - "street cleaning sandy fo real last night hurricanesandy flood \n", + "street cleaning sandy fo real last night hurricane sandy flood \n", "\n", "\n", "#seasideboardwalk Wow 😮😮😮 #hurricaneSandy http://t.co/dmpnoipk\n", "\n", "--------------------------------------------------------\n", - "seasideboardwalk wow hurricanesandy \n", + "seasideboardwalk hurricane sandy \n", "\n", "\n", "Red Hook, Brooklyn NYC the day after #hurricanesandy #hurricane #hurricanenyc #blackout #blackoutnyc #scarr http://t.co/REtOFL8H\n", "\n", "--------------------------------------------------------\n", - "red hook brooklyn nyc day hurricanesandy hurricane hurricanenyc blackout blackoutnyc scarr \n", + "red hook brooklyn new york city day hurricane sandy hurricane hurricanenyc blackout blackoutnyc scarr \n", "\n", "\n", "#hurricanesandy Not my picture but... http://t.co/ZYT7VJn6\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy picture \n", + "hurricane sandy picture \n", "\n", "\n", "Wow!! PrayN 4 East Coast.. flashback 2 last yr! RT @NewYorkPost: Flood WTC Construction Site #hurricanesandy #nyc #wtc http://t.co/c4YIkCEn\n", "\n", "--------------------------------------------------------\n", - "wow prayn 4 east coast flashback 2 last yr \n", + "prayn east coast flashback last yr \n", "\n", "\n", "Sandy, where did you put the trampoline this time? #youbadbitch #hurricanesandy http://t.co/qgcNy0rz\n", "\n", "--------------------------------------------------------\n", - "sandy put trampoline time youbadbitch hurricanesandy \n", + "sandy put trampoline time youbadbitch hurricane sandy \n", "\n", "\n", "😳 wow! the jersey shore! #seaside #hurricanesandy http://t.co/cc8bjkCx\n", "\n", "--------------------------------------------------------\n", - "wow jersey shore seaside hurricanesandy \n", + "jersey shore seaside hurricane sandy \n", "\n", "\n", "#Nyc#taxi#Sandy#hurricane#hurricanesandy#newyork#instagramphotos#instagramania#instapopular#instanewyork#ins http://t.co/eJvH5dAl\n", "\n", "--------------------------------------------------------\n", - "nyc taxi sandy hurricane hurricanesandy newyork instagramphotos instagramania instapopular instanewyork ins \n", + "nyctaxisandyhurricanehurricane sandynew yorkinstagramphotosinstagramaniainstapopularinstanew yorkins \n", "\n", "\n", "#WorldTradeCentersite last night #hurricanesandy http://t.co/zxYQDxyY\n", "\n", "--------------------------------------------------------\n", - "worldtradecentersite last night hurricanesandy \n", + "worldtradecentersite last night hurricane sandy \n", "\n", "\n", "These pics are incredible. #HurricaneSandy -- 60minutes's photo http://t.co/knG72aAq\n", "\n", "--------------------------------------------------------\n", - "pics incredible hurricanesandy 60minutes photo \n", + "pics incredible hurricane sandy 0minutes photo \n", "\n", "\n", "I don't know where this is but it's crazy! #hurricanesandy http://t.co/lIRLHpyc\n", "\n", "--------------------------------------------------------\n", - "know crazy hurricanesandy \n", + "know crazy hurricane sandy \n", "\n", "\n", "There is a rainbow after every storm. We hope everyone is safe. #hurricanesandy http://t.co/VgXVkIad\n", "\n", "--------------------------------------------------------\n", - "rainbow every storm hope everyone safe hurricanesandy \n", + "rainbow every storm hope everyone safe hurricane sandy \n", "\n", "\n", "Mind=blown ... Hi #HurricaneSandy #EastCoast #scared http://t.co/6xfzOWGj\n", "\n", "--------------------------------------------------------\n", - "mind blown hi hurricanesandy eastcoast scared \n", + "mind blown hi hurricane sandy eastcoast scared \n", "\n", "\n", "Dumbo Flooded #brooklyncarousel #hurricanesandy http://t.co/JxZlk7tj\n", "\n", "--------------------------------------------------------\n", - "dumbo flooded brooklyncarousel hurricanesandy \n", + "dumbo flooded brooklyncarousel hurricane sandy \n", "\n", "\n", "#newyorkcity #hurricanesandy Follow me, ill follow back!!! #Android #htc #tagsforlikes #instagood #tweegram http://t.co/WYDjQkm8\n", "\n", "--------------------------------------------------------\n", - "newyorkcity hurricanesandy follow ill follow back android htc tagsforlikes instagood tweegram \n", + "new yorkcity hurricane sandy follow ill follow back android htc tagsforlikes instagood tweegram \n", "\n", "\n", "#WTF #hurricane #hurricanesandy #sandy #nyc #eastcoast #newyorkcity #newyork #flooding #prayersfortheeastcoa http://t.co/fyDc8y3c\n", "\n", "--------------------------------------------------------\n", - "wtf hurricane hurricanesandy sandy nyc eastcoast newyorkcity newyork flooding prayersfortheeastcoa \n", + "hurricane hurricane sandy sandy new york city eastcoast new yorkcity new york flooding prayersfortheeastcoa \n", "\n", "\n", "#SayaPrayer #HurricaneSandy http://t.co/dtbEAW91\n", "\n", "--------------------------------------------------------\n", - "sayaprayer hurricanesandy \n", + "sayaprayer hurricane sandy \n", "\n", "\n", "Thats insane #HurricaneSandy http://t.co/a2qGSzxi\n", "\n", "--------------------------------------------------------\n", - "thats insane hurricanesandy \n", + "thats insane hurricane sandy \n", "\n", "\n", "Thaaaat sucks #hurricanesandy http://t.co/OZLRDD5T\n", "\n", "--------------------------------------------------------\n", - "thaaaat sucks hurricanesandy \n", + "thaaaat sucks hurricane sandy \n", "\n", "\n", "Acts of #hurricaneSandy :) #weyyyyy http://t.co/HsYJomrG\n", "\n", "--------------------------------------------------------\n", - "acts hurricanesandy weyyyyy \n", + "acts hurricane sandy weyyyyy \n", "\n", "\n", "RIP to my childhood and summer vacations 💔💔💔 #sleazeside #seasideheights #hurricanesandy http://t.co/breHfHiC\n", "\n", "--------------------------------------------------------\n", - "rip childhood summer vacations sleazeside seasideheights hurricanesandy \n", - "\n", + "rip childhood summer vacations sleazeside seasideheights hurricane sandy \n", "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "#hurricanesandy #sandy #perfectstorm #superstorm #cnn #nyc #ny #اعصار_ساندي #usa #unitedstate #new @ My Home http://t.co/s97EchLH\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sandy perfectstorm superstorm cnn nyc ny اعصار ساندي usa unitedstate new home \n", + "hurricane sandy sandy perfectstorm superstorm cnn new york city new york اعصارساندي usa unitedstate new home \n", "\n", "\n", "This is crazy ... #Seaside #NewJersey #HurricaneSandy http://t.co/28PjU208\n", "\n", "--------------------------------------------------------\n", - "crazy seaside newjersey hurricanesandy \n", + "crazy seaside newjersey hurricane sandy \n", "\n", "\n", "Shit just got real with this \"super storm\" #repost #HurricaneSandy http://t.co/GGONIwwK\n", "\n", "--------------------------------------------------------\n", - "shit got real super storm repost hurricanesandy \n", + "shit got real super storm repost hurricane sandy \n", "\n", "\n", "#FDR #Eastside #NYC #hurricanesandy #Sandy http://t.co/fTRnPP7k\n", "\n", "--------------------------------------------------------\n", - "fdr eastside nyc hurricanesandy sandy \n", + "fdr eastside new york city hurricane sandy sandy \n", "\n", "\n", "stay safe east coast friends. #hurricanesandy http://t.co/NQbPkteu\n", "\n", "--------------------------------------------------------\n", - "stay safe east coast friends hurricanesandy \n", + "stay safe east coast friends hurricane sandy \n", "\n", "\n", "Omfg 20th street & ave C is looking crazyyyyyy\\n#HURRICANESANDY #OMG #crazy #rp #repost #reposted http://t.co/4Xhx5toM\n", "\n", "--------------------------------------------------------\n", - "omfg 20th street ave c looking crazyyyyyy hurricanesandy omg crazy rp repost reposted \n", + "0th street ave looking crazyyyyyy hurricane sandy crazy rp repost reposted \n", "\n", "\n", "times like this make NY and NYers feel helpless: http://t.co/sTiyCBlT #Sandy #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "times like make ny nyers feel helpless sandy hurricanesandy \n", + "times like make new york nyers feel helpless sandy hurricane sandy \n", "\n", "\n", "News 12 NJ #HURRICANESANDY ew, why did I write in caps? http://t.co/uTgSJFuY\n", "\n", "--------------------------------------------------------\n", - "news 12 nj hurricanesandy ew write caps \n", + "news2 new jersey hurricane sandy ew write caps \n", "\n", "\n", "The FDR Drive is now the FDR harbor. 😳☔🌃 #hurricanesandy #fdr @ FDR Drive http://t.co/IPqQOrzo\n", "\n", "--------------------------------------------------------\n", - "fdr drive fdr harbor hurricanesandy fdr fdr drive \n", + "fdr drive fdr harbor hurricane sandy fdr fdr drive \n", "\n", "\n", "MY LAWD #NYC is #UnderWater #HurricaneSandy #Flood #LowerEastSide #Rain #Pouring #BlackOut #StaySafe http://t.co/Men0G8Wx\n", "\n", "--------------------------------------------------------\n", - "lawd nyc underwater hurricanesandy flood lowereastside rain pouring blackout staysafe \n", + "lawd new york city underwater hurricane sandy flood lowereastside rain pouring blackout staysafe \n", "\n", "\n", "Ahhh! #hurricanesandy Flooded NYC! http://t.co/xSUiSTlB\n", "\n", "--------------------------------------------------------\n", - "ahhh hurricanesandy flooded nyc \n", + "ahhh hurricane sandy flooded new york city \n", "\n", "\n", "Someone forgot to secure their trampoline during #hurricanesandy http://t.co/wSjGT0nG\n", "\n", "--------------------------------------------------------\n", - "someone forgot secure trampoline hurricanesandy \n", - "\n", - "\n", - "Is this real?? #hurricanesandy http://t.co/t3cQuir7\n", - "\n", - "--------------------------------------------------------\n", - "real hurricanesandy \n", + "someone forgot secure trampoline hurricane sandy \n", "\n", "\n", "#NYC cabs submerged after #hurricanesandy :( http://t.co/s5hjh0DY\n", "\n", "--------------------------------------------------------\n", - "nyc cabs submerged hurricanesandy \n", + "new york city cabs submerged hurricane sandy \n", "\n", "\n", "http://t.co/cU6YQELl Brooklyn carousel #Sandy#hurricane#nyc\n", "\n", "--------------------------------------------------------\n", - "brooklyn carousel sandy hurricane nyc \n", + "brooklyn carousel sandyhurricanenyc \n", "\n", "\n", "Da fuhhh? #hurricanesandy http://t.co/STRPjlSq\n", "\n", "--------------------------------------------------------\n", - "da fuhhh hurricanesandy \n", + "fuhhh hurricane sandy \n", "\n", "\n", "Avenue C!! By FDR Bridge NYC!! #Sandy!! http://t.co/7k89GivE\n", "\n", "--------------------------------------------------------\n", - "avenue c fdr bridge nyc sandy \n", + "avenue fdr bridge new york city sandy \n", "\n", "\n", "Avenue C. Lower east side. #sandy http://t.co/pK26r9ew\n", "\n", "--------------------------------------------------------\n", - "avenue c lower east side sandy \n", + "avenue lower east side sandy \n", "\n", "\n", "Roller coaster in the ocean in Seaside Heights, NJ. #craziness #hurricanesandy http://t.co/PqwQDGJr\n", "\n", "--------------------------------------------------------\n", - "roller coaster ocean seaside heights nj craziness hurricanesandy \n", + "roller coaster ocean seaside heights new jersey craziness hurricane sandy \n", "\n", "\n", "@KellyRipa here is more WOW! Avenue C and east 8th street WOW #sandy #hurricanesandy #nyc http://t.co/JXBholpG\n", "\n", "--------------------------------------------------------\n", - "wow avenue c east 8th street wow sandy hurricanesandy nyc \n", + "avenue east street sandy hurricane sandy new york city \n", "\n", "\n", "14th Street & Avenue C, NYC #sandy http://t.co/kIQsf6jT\n", "\n", "--------------------------------------------------------\n", - "14th street avenue c nyc sandy \n", + "4th street avenue new york city sandy \n", "\n", "\n", "Brooklyn is flooding like crazy right now!! #HurricaneSandy #scary @ Greenpoint Waterfront http://t.co/Ed1I5Nln\n", "\n", "--------------------------------------------------------\n", - "brooklyn flooding like crazy right hurricanesandy scary greenpoint waterfront \n", - "\n", - "\n", - "#wtf? #hurricanesandy http://t.co/RSj91BA4\n", - "\n", - "--------------------------------------------------------\n", - "wtf hurricanesandy \n", - "\n", - "\n", - ".. #NYC .. #hurricanesandy http://t.co/xIgKBcjn\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricanesandy \n", + "brooklyn flooding like crazy right hurricane sandy scary greenpoint waterfront \n", "\n", "\n", "Holy crap!!! (Not my picture) #hurricanesandy #hurricane #wth http://t.co/g525udOB\n", "\n", "--------------------------------------------------------\n", - "holy crap picture hurricanesandy hurricane wth \n", + "holy crap picture hurricane sandy hurricane wth \n", "\n", "\n", "Connecticut trampoline problems #hurricanesandy http://t.co/vtzNwNiv\n", "\n", "--------------------------------------------------------\n", - "connecticut trampoline problems hurricanesandy \n", + "connecticut trampoline problems hurricane sandy \n", "\n", "\n", "#nyc #hurricanesandy #hoboken http://t.co/y8Ny8jdO\n", "\n", "--------------------------------------------------------\n", - "nyc hurricanesandy hoboken \n", + "new york city hurricane sandy hoboken \n", "\n", "\n", "#jerseyshore #seaside #hurricane http://t.co/JpuNs9qe\n", @@ -43852,133 +39282,115 @@ "http://t.co/snILmWCB 23rd St NYC #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "23rd st nyc hurricanesandy \n", + "3rd st new york city hurricane sandy \n", "\n", "\n", "Craziest #hurricanesandy pic on @instagram mike_lopez_732's photo http://t.co/HEGFsCoY\n", "\n", "--------------------------------------------------------\n", - "craziest hurricanesandy pic mike lopez 732 photo \n", + "craziest hurricane sandy pic mikelopez732 photo \n", "\n", "\n", "Pray for New York #hurricanesandy http://t.co/JOELObqG\n", "\n", "--------------------------------------------------------\n", - "pray new york hurricanesandy \n", + "pray new york hurricane sandy \n", "\n", "\n", "NYC streets... #hurricanesandy http://t.co/Ao4owMZb\n", "\n", "--------------------------------------------------------\n", - "nyc streets hurricanesandy \n", + "new york city streets hurricane sandy \n", "\n", "\n", "Manhattan holy shit #hurricanesandy http://t.co/hzu4Xp6r\n", "\n", "--------------------------------------------------------\n", - "manhattan holy shit hurricanesandy \n", + "manhattan holy shit hurricane sandy \n", "\n", "\n", "Seaside heights after #hurricanesandy http://t.co/w1sEzSXs\n", "\n", "--------------------------------------------------------\n", - "seaside heights hurricanesandy \n", + "seaside heights hurricane sandy \n", "\n", "\n", "Foto de jsnell1024 http://t.co/andJV6xS #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto jsnell1024 hurricanesandy \n", + "foto jsnell1024 hurricane sandy \n", "\n", "\n", "That shit cray... #hurricane #hurricanesandy #trampoline #windy #storm #wtf #lol http://t.co/S8bNcnuM\n", "\n", "--------------------------------------------------------\n", - "shit cray hurricane hurricanesandy trampoline windy storm wtf lol \n", + "shit cray hurricane hurricane sandy trampoline windy storm \n", "\n", "\n", "That's Lake Erie and the little lighthouse downtown Cleveland!!! #crazy #hurricanesandy http://t.co/X05qEWCy\n", "\n", "--------------------------------------------------------\n", - "lake erie little lighthouse downtown cleveland crazy hurricanesandy \n", + "lake erie little lighthouse downtown cleveland crazy hurricane sandy \n", "\n", "\n", "God bless those that are suffering in #HurricaneSandy 🙏👼😇😩 http://t.co/rdtROLdy\n", "\n", "--------------------------------------------------------\n", - "god bless suffering hurricanesandy \n", + "god bless suffering hurricane sandy \n", "\n", "\n", "Atlantic City is already under water ! #hurricanesandy http://t.co/xzEoZZSb\n", "\n", "--------------------------------------------------------\n", - "atlantic city already water hurricanesandy \n", + "atlantic city already water hurricane sandy \n", "\n", "\n", "Wow.. Roller coaster is in the ocean. #seaside #casinopier #hurricanesandy #news12nj http://t.co/Pe6YQVdz\n", "\n", "--------------------------------------------------------\n", - "wow roller coaster ocean seaside casinopier hurricanesandy news12nj \n", - "\n", - "\n", - "#hurricanesandy #NYC http://t.co/uSLH8dpx\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nyc \n", + "roller coaster ocean seaside casinopier hurricane sandy news12nj \n", "\n", "\n", "Woah. #wtnh #hurricanesandy 💨💦 http://t.co/2U83bbaR\n", "\n", "--------------------------------------------------------\n", - "woah wtnh hurricanesandy \n", + "woah wtnh hurricane sandy \n", "\n", "\n", "#Brooklyn underwater and mad deep #HurricaneSandy #FDNY http://t.co/hWNTCzAH\n", "\n", "--------------------------------------------------------\n", - "brooklyn underwater mad deep hurricanesandy fdny \n", - "\n", - "\n", - "“@TonyTriumph10: 23rd street repost from @wendybarton #hurricanesandy #nyc http://t.co/wopgjRan”---OMG!\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", + "brooklyn underwater mad deep hurricane sandy fdny \n", "\n", "\n", "OMG! Yall pray for our family & friends in NYC!!!! #Pray #HurricaneSandy http://t.co/pD60BTOy\n", "\n", "--------------------------------------------------------\n", - "omg yall pray family friends nyc pray hurricanesandy \n", + "yall pray family friends new york city pray hurricane sandy \n", "\n", "\n", "#hurricanesandy truue. http://t.co/DxJYeIRR\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy truue \n", + "hurricane sandy truue \n", "\n", "\n", "World Trade Center flooded with water!! #smh #hurricanesandy http://t.co/QfaLkkD1\n", "\n", "--------------------------------------------------------\n", - "world trade center flooded water smh hurricanesandy \n", - "\n", - "\n", - "WTF!!!! RT @tjuantrel87 Really? #HurricaneSandy http://t.co/pBPix6Bj\n", - "\n", - "--------------------------------------------------------\n", - "wtf \n", + "world trade center flooded water hurricane sandy \n", "\n", "\n", "Firemen searching for folks trapped in cars @14th & Ave C. #hurricanesandy http://t.co/9sukln9I\n", "\n", "--------------------------------------------------------\n", - "firemen searching folks trapped cars ave c hurricanesandy \n", + "firemen searching folks trapped cars ave hurricane sandy \n", "\n", "\n", "...currently the east villiage #nyc #sandy http://t.co/eFj5ez8z\n", "\n", "--------------------------------------------------------\n", - "currently east villiage nyc sandy \n", + "currently east villiage new york city sandy \n", "\n", "\n", "Casino pier 😣😢 #seaside #sandy http://t.co/5ImJ66RG\n", @@ -43996,7 +39408,7 @@ "Foto di babyblue1974 http://t.co/VKeZbiqa #sandy su instagram\n", "\n", "--------------------------------------------------------\n", - "foto di babyblue1974 sandy instagram \n", + "foto babyblue1974 sandy instagram \n", "\n", "\n", "Water cabs! #sandy http://t.co/yZnAC0yd\n", @@ -44014,7 +39426,7 @@ "RIP Seaside Heights, NJ. #boardwalk #amusementpark #jerseyshore #demolished #hurricane #sandy http://t.co/eczp5vB4\n", "\n", "--------------------------------------------------------\n", - "rip seaside heights nj boardwalk amusementpark jerseyshore demolished hurricane sandy \n", + "rip seaside heights new jersey boardwalk amusementpark jerseyshore demolished hurricane sandy \n", "\n", "\n", "Damn..looks nice tho :) colors and shit! RT @NadiyaaAnd East Village NYC #Sandy #Hurricane http://t.co/YYLMgaGN\n", @@ -44026,19 +39438,19 @@ "#amazing #picture os #sandy's #destruction #on #nyc #sandy http://t.co/ddApkG20\n", "\n", "--------------------------------------------------------\n", - "amazing picture sandy destruction nyc sandy \n", + "amazing picture sandy destruction new york city sandy \n", "\n", "\n", "afirmkickinthepants's photo http://t.co/cXy6o6V7 lowest est side #nyc #newyork #sandy\n", "\n", "--------------------------------------------------------\n", - "afirmkickinthepants photo lowest est side nyc newyork sandy \n", + "afirmkickinthepants photo lowest side new york city new york sandy \n", "\n", "\n", "NYC cabs underwater 😱😨 feels like a movie 😣 #jw #nyc #ny #hurricane #sandy #disaster #flooded #destruction http://t.co/fgLsbf1N\n", "\n", "--------------------------------------------------------\n", - "nyc cabs underwater feels like movie jw nyc ny hurricane sandy disaster flooded destruction \n", + "new york city cabs underwater feels like movie jw new york city new york hurricane sandy disaster flooded destruction \n", "\n", "\n", "djkillakal's photo #sandy http://t.co/qF7vVsJh\n", @@ -44068,7 +39480,7 @@ "#SANDY: Imagens de uma obra em Manhattan destruída com a força dos ventos e da água. #RenanLima http://t.co/WoFdVdbx\n", "\n", "--------------------------------------------------------\n", - "sandy imagens uma obra em manhattan destruída com força dos ventos da água renanlima \n", + "sandy imagens obra manhattan destruída força ventos água renanlima \n", "\n", "\n", "louis2caunes's photo http://t.co/VSHrLhkI. #sandy\n", @@ -44092,19 +39504,19 @@ "anya_bern's photo of hurricane #Sandy aftermath http://t.co/ulkYrfm1\n", "\n", "--------------------------------------------------------\n", - "anya bern photo hurricane sandy aftermath \n", + "anyabern photo hurricane sandy aftermath \n", "\n", "\n", "doorsixteen's photo http://t.co/NiZGQZey\\n\\nWow... #sandy #hurricane #stop\n", "\n", "--------------------------------------------------------\n", - "doorsixteen photo wow sandy hurricane stop \n", + "doorsixteen photo sandy hurricane stop \n", "\n", "\n", "West and kent st #greenpoint #nyc #sandy http://t.co/f2lOrCh4\n", "\n", "--------------------------------------------------------\n", - "west kent st greenpoint nyc sandy \n", + "west kent st greenpoint new york city sandy \n", "\n", "\n", "#Sandy so crazy... filthygoods's photo http://t.co/clHGgriI\n", @@ -44122,7 +39534,7 @@ "#nyc #sandy #newyork #hurracaine #storm #emergency #instagram #street #flood http://t.co/5uIw2zDO\n", "\n", "--------------------------------------------------------\n", - "nyc sandy newyork hurracaine storm emergency instagram street flood \n", + "new york city sandy new york hurracaine storm emergency instagram street flood \n", "\n", "\n", "Tell us again how union firefighters are overpaid, Republicans. http://t.co/vg4400SN #Sandy #p2\n", @@ -44134,7 +39546,7 @@ "Taxi sommersi #NYC #sandy RT \"@JasmineSolano: Hoboken, NJ. photo - Michael Bochieri // http://t.co/zO4gRr1x\"\n", "\n", "--------------------------------------------------------\n", - "taxi sommersi nyc sandy \n", + "taxi sommersi new york city sandy \n", "\n", "\n", "“@JasmineSolano: Hoboken, NJ. photo - Michael Bochieri // #Sandy http://t.co/4cNJkqup” is this for real ? Damn\n", @@ -44146,13 +39558,13 @@ "Hoboken, NJ. photo - Michael Bochieri // #Sandy http://t.co/w7oOYjZ0\n", "\n", "--------------------------------------------------------\n", - "hoboken nj photo michael bochieri sandy \n", + "hoboken new jersey photo michael bochieri sandy \n", "\n", "\n", "Photo by Truth Beckons #sandy#nyc#hurricane#storm#flood#water#nypd#2012#picoftheday#photooftheday#tropicalst http://t.co/M8XW9y1T\n", "\n", "--------------------------------------------------------\n", - "photo truth beckons sandy nyc hurricane storm flood water nypd 2012 picoftheday photooftheday tropicalst \n", + "photo truth beckons sandynychurricanestormfloodwaternypd2012picofthedayphotoofthedaytropicalst \n", "\n", "\n", "Everyone be safe #Sandy http://t.co/qNsZkEra\n", @@ -44167,12 +39579,6 @@ "holy sandy photos \n", "\n", "\n", - "Wow, incredible->RT @ringuette: Psst - this guy totally deserves healthcare and a pension: http://t.co/NksDRRns #sandy #publicworkers\n", - "\n", - "--------------------------------------------------------\n", - "wow incredible \n", - "\n", - "\n", "Segura que SANDY vai arrebentar! Boa sorte USA. #sandy #hurricane #storm #nasa #runtothehills http://t.co/FFDTaCOH\n", "\n", "--------------------------------------------------------\n", @@ -44200,7 +39606,7 @@ "Sandy aftermath 😱 #repost #sandy be strong NYC 🙏😇 http://t.co/I0ikiYpE\n", "\n", "--------------------------------------------------------\n", - "sandy aftermath repost sandy strong nyc \n", + "sandy aftermath repost sandy strong new york city \n", "\n", "\n", "That is just devistating 😔 #rip #sea #side #hurricane #sandy http://t.co/hAxoz0wI\n", @@ -44218,25 +39624,25 @@ "#hoboken #nj #sandy @ Hoboken http://t.co/ewNECeUG\n", "\n", "--------------------------------------------------------\n", - "hoboken nj sandy hoboken \n", + "hoboken new jersey sandy hoboken \n", "\n", "\n", "seaside pier underwater 😱 #rollercoaster #seaside #nj #hurricane #sandy #crazy http://t.co/aVBpzs7L\n", "\n", "--------------------------------------------------------\n", - "seaside pier underwater rollercoaster seaside nj hurricane sandy crazy \n", + "seaside pier underwater rollercoaster seaside new jersey hurricane sandy crazy \n", "\n", "\n", "Impresionante...#sandy #ny http://t.co/q9LwRW1l\n", "\n", "--------------------------------------------------------\n", - "impresionante sandy ny \n", + "impresionante sandy new york \n", "\n", "\n", "Noo ;( el trampoline se lo lo llevo #sandy @ So.Plfd, NJ http://t.co/D2CWtIIE\n", "\n", "--------------------------------------------------------\n", - "noo trampoline llevo sandy plfd nj \n", + "noo trampoline llevo sandy plfd new jersey \n", "\n", "\n", "#sandy #seasideheights #disbitchsandy #sandy this is unbelievable. http://t.co/6m0WjAHV\n", @@ -44248,13 +39654,13 @@ "#Hurricane #Sandy #LongIsland #NY I wonder which part of \"secure or bring inside outside objects\" they didn' http://t.co/TZNQoMXd\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy longisland ny wonder part secure bring inside outside objects \n", + "hurricane sandy longisland new york wonder part secure bring inside outside objects \n", "\n", "\n", "Wow, a crazy #Sandy photo from NYC. #TaxiCabs #ABCNews http://t.co/Ve9IOvg8\n", "\n", "--------------------------------------------------------\n", - "wow crazy sandy photo nyc taxicabs abcnews \n", + "crazy sandy photo new york city taxicabs abcnews \n", "\n", "\n", "Holy Moley 😱😳😁 #sandy http://t.co/zSmUdx8l\n", @@ -44263,12 +39669,6 @@ "holy moley sandy \n", "\n", "\n", - "“@mariejoelle: Taxis sous l'eau à Hoboken au New Jersey. http://t.co/SB3XEv7m photo via @davepell” #sandy #After\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "dmb41marcario's photo http://t.co/fZQ0WVzd Jersey Shore Boardwalk #Sandy\n", "\n", "--------------------------------------------------------\n", @@ -44278,19 +39678,13 @@ "#newyork #newjersey #ny #nyc #carros #cars #nj #sandy #usa #eeuu #agua #water #storm #tormenta #hurancan #F http://t.co/ayVgQcTB\n", "\n", "--------------------------------------------------------\n", - "newyork newjersey ny nyc carros cars nj sandy usa eeuu agua water storm tormenta hurancan f \n", - "\n", - "\n", - "@PatriciaHeaton http://t.co/FeskhYcw #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "new york newjersey new york new york city carros cars new jersey sandy usa eeuu agua water storm tormenta hurancan f \n", "\n", "\n", "#34th #nyc #flood #hurricane #sandy http://t.co/wKdSJF1f\n", "\n", "--------------------------------------------------------\n", - "34th nyc flood hurricane sandy \n", + "4th new york city flood hurricane sandy \n", "\n", "\n", "R.I.P. #for #the #people #who #have #died #by #that #crazy #orcaan #SANDY http://t.co/yZ9vVXzL\n", @@ -44308,7 +39702,7 @@ "Omg ny post pics are amazing \"@NewYorkPost: Breaking: Water Floods WTC Construction Site #hurricane #sandy #nyc #wtc http://t.co/5f2iInQi\"\n", "\n", "--------------------------------------------------------\n", - "omg ny post pics amazing \n", + "new york post pics amazing \n", "\n", "\n", "New York City Taxi Cabs after #Sandy http://t.co/6FFH9dul - New York City Taxi Cabs after #Sandy http://t.co/Huib2AM......\n", @@ -44320,19 +39714,19 @@ "camilo_labrador's photo http://t.co/vXfCoqzc #sandy\n", "\n", "--------------------------------------------------------\n", - "camilo labrador photo sandy \n", + "camiabrador photo sandy \n", "\n", "\n", "Il faut sauver ces canaris... #Sandy http://t.co/pcLawzYn\n", "\n", "--------------------------------------------------------\n", - "il faut sauver ces canaris sandy \n", + "faut sauver canaris sandy \n", "\n", "\n", "NYC got hit bad #nyc #sandy #signsofthetimes http://t.co/fEHSlPL5\n", "\n", "--------------------------------------------------------\n", - "nyc got hit bad nyc sandy signsofthetimes \n", + "new york city got hit bad new york city sandy signsofthetimes \n", "\n", "\n", "Crazy! #disbitchsandy #sandy http://t.co/LAcgEa41\n", @@ -44341,12 +39735,6 @@ "crazy disbitchsandy sandy \n", "\n", "\n", - "Wow! RT @LauraLoo23: Taxis underwater- Hoboken #Sandy http://t.co/SZE5ky65\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "nasagoddard's photo of #Sandy http://t.co/0af90Wgl\n", "\n", "--------------------------------------------------------\n", @@ -44356,7 +39744,7 @@ "Oh #shit #hurricane #sandy http://t.co/MqnwOka8\n", "\n", "--------------------------------------------------------\n", - "oh shit hurricane sandy \n", + "shit hurricane sandy \n", "\n", "\n", "“@b3st1ntheworld: Oh #shit #hurricane #sandy http://t.co/dqgsL5gy” which state?\n", @@ -44368,7 +39756,7 @@ "Huracan #Sandy en Nueva York. (Photo by @LassanaDiarra_) #NewYork #night #storm #street #hurricane http://t.co/wyRVJGPV\n", "\n", "--------------------------------------------------------\n", - "huracan sandy nueva york photo newyork night storm street hurricane \n", + "huracan sandy nueva york photo new york night storm street hurricane \n", "\n", "\n", "Scary pic of #hurricane #sandy http://t.co/UZgTvmSw\n", @@ -44434,7 +39822,7 @@ "Очень жаль нью-йоркцев. 😦 Don't give up! Hold on! #NY #usa #sandy http://t.co/AfZBB09W\n", "\n", "--------------------------------------------------------\n", - "очень жаль нью йоркцев give hold ny usa sandy \n", + "очень жаль нью йоркцев give hold new york usa sandy \n", "\n", "\n", "well there goes my summers and my childhood 😥💔 #fuckyou #sandy #rip #seaside #boardwalk http://t.co/wM3audnE\n", @@ -44458,25 +39846,25 @@ "#repostage Yeah right! Haha oh mann. #Sandy is just wrong. How do you get down? #trampolineproblems #hurric http://t.co/fANRt75J\n", "\n", "--------------------------------------------------------\n", - "repostage yeah right haha oh mann sandy wrong get trampolineproblems hurric \n", + "repostage yeah right hahamann sandy wrong get trampolineproblems hurric \n", "\n", "\n", "You a big bitch, #Sandy. #Hurricane #Frankenstorm #NYC #SandyIsABitch @ New York City http://t.co/PNfwxflu\n", "\n", "--------------------------------------------------------\n", - "big bitch sandy hurricane frankenstorm nyc sandyisabitch new york city \n", + "big bitch sandy hurricane frankenstorm new york city sandyisabitch new york city \n", "\n", "\n", "Bohemia, NY #hurricane #sandy #longisland #newyork http://t.co/aOv9dSR0\n", "\n", "--------------------------------------------------------\n", - "bohemia ny hurricane sandy longisland newyork \n", + "bemia new york hurricane sandy longisland new york \n", "\n", "\n", "not so much a concrete jungle any more were dreams of made of? #newyork #sandy http://t.co/hPgppbmh\n", "\n", "--------------------------------------------------------\n", - "much concrete jungle dreams made newyork sandy \n", + "much concrete jungle dreams made new york sandy \n", "\n", "\n", "Cabs under water #Sandy #picoftheday #NewJersey #photooftheday #resilience #storm http://t.co/V9iuQ1Q7\n", @@ -44494,7 +39882,7 @@ "Oh the humanity! http://t.co/3fkmZXu0 #Sandy\n", "\n", "--------------------------------------------------------\n", - "oh humanity sandy \n", + "humanity sandy \n", "\n", "\n", "#Sandy from #space http://t.co/CORzusFD\n", @@ -44509,12 +39897,6 @@ "pergh tenggelam \n", "\n", "\n", - "@HOT1079: NYC cabs under water. #Sandy http://t.co/rIt8y4ag Wah so sad!\n", - "\n", - "--------------------------------------------------------\n", - "nyc cabs water sandy wah sad \n", - "\n", - "\n", "Go #sandy , being a total d-bag. http://t.co/3xZrPQ9R\n", "\n", "--------------------------------------------------------\n", @@ -44536,13 +39918,13 @@ "Photo taken by Kurt Wildenburg, the morning after the #storm. Via @MashableHQ #sandy #hurricane #newyork #ra http://t.co/9Om4D3R9\n", "\n", "--------------------------------------------------------\n", - "photo taken kurt wildenburg morning storm via sandy hurricane newyork ra \n", + "photo taken kurt wildenburg morning storm sandy hurricane new york ra \n", "\n", "\n", "Ein fast schon apokalyptisches Bild... #hurrican #sandy #mary #instapic #instamood #instaphoto #apocalyptic http://t.co/zxqY6x87\n", "\n", "--------------------------------------------------------\n", - "ein fast schon apokalyptisches bild hurrican sandy mary instapic instamood instaphoto apocalyptic \n", + "ein fast schon apokalyptisches bild hurrican sandy mary instapic instaphoto apocalyptic \n", "\n", "\n", "This shits just fucking sickening... #Crazy #shit #sandy http://t.co/eNchhjzm\n", @@ -44554,7 +39936,7 @@ "Hoboken, NJ #sandy http://t.co/DVxU8970\n", "\n", "--------------------------------------------------------\n", - "hoboken nj sandy \n", + "hoboken new jersey sandy \n", "\n", "\n", "Seaside heights destroyed roller coaster :( #sandy http://t.co/jkxFP9L6\n", @@ -44584,13 +39966,13 @@ "#yellowCabs #cabs #yellow #hoboken #nj #newjersey #taxi #underwater #water #usa #sandy #instacane #amazing # http://t.co/OZiFSfmf\n", "\n", "--------------------------------------------------------\n", - "yellowcabs cabs yellow hoboken nj newjersey taxi underwater water usa sandy instacane amazing \n", + "yellowcabs cabs yellow hoboken new jersey newjersey taxi underwater water usa sandy instacane amazing \n", "\n", "\n", "#sandy #nyc @ NYC Taxi Cab http://t.co/hPPSbY35\n", "\n", "--------------------------------------------------------\n", - "sandy nyc nyc taxi cab \n", + "sandy new york city new york city taxi cab \n", "\n", "\n", "Siempre impresiona más cuando son sitios tan conocidos: Zona0. #Sandy http://t.co/VLxZhDiY\n", @@ -44608,7 +39990,7 @@ "Oh this isn't fun #sandy wish I started on that ark earlier now http://t.co/Sg1BrwVu\n", "\n", "--------------------------------------------------------\n", - "oh fun sandy wish started ark earlier \n", + "fun sandy wish started ark earlier \n", "\n", "\n", "nasagoddard's photo of the Earth, showing Hurricane #Sandy http://t.co/j3gT3MUO\n", @@ -44620,7 +40002,7 @@ "Lo imperfecto de lo perfecto #NY #NewYork #hurricane #sandy http://t.co/mny0Zvyu\n", "\n", "--------------------------------------------------------\n", - "imperfecto perfecto ny newyork hurricane sandy \n", + "imperfecto perfecto new york new york hurricane sandy \n", "\n", "\n", "#Sandy #nocomment http://t.co/DcvdhZb8\n", @@ -44650,25 +40032,19 @@ "Wow #sandy #manhattan http://t.co/u6uh1uvH\n", "\n", "--------------------------------------------------------\n", - "wow sandy manhattan \n", - "\n", - "\n", - "@Alex_Ogle: @TheMatthewKeys this looks like wider angle of that shot http://t.co/FlUzbsZS #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "looks like wider angle shot sandy \n", + "sandy manhattan \n", "\n", "\n", "Building collapse #hurricane #huracan #sandy #NYC http://t.co/5RRq0pE3\n", "\n", "--------------------------------------------------------\n", - "building collapse hurricane huracan sandy nyc \n", + "building collapse hurricane huracan sandy new york city \n", "\n", "\n", "#sandy veta ah 5 dios cuidanos ah todos rresemos 🙏🙏🙏 http://t.co/GuC1tqgr\n", "\n", "--------------------------------------------------------\n", - "sandy veta ah 5 dios cuidanos ah rresemos \n", + "sandy veta ah dios cuidanos ah rresemos \n", "\n", "\n", "Before sunrise, Before the storm #hurricane #sandy @ Times Square http://t.co/jdSeOkoh\n", @@ -44680,13 +40056,7 @@ "#tums #newyork #rain #storm #sandy #cars #swimming #classic #hurricane #leaves #leaf #besafe http://t.co/tY6GqzyS\n", "\n", "--------------------------------------------------------\n", - "tums newyork rain storm sandy cars swimming classic hurricane leaves leaf besafe \n", - "\n", - "\n", - "#Sandy. :O http://t.co/QOzebOxb\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "tums new york rain storm sandy cars swimming classic hurricane leaves leaf besafe \n", "\n", "\n", "Milford, CT Hurricane #Sandy http://t.co/rwyytbyy\n", @@ -44704,19 +40074,19 @@ "Isso é o furacão #Sandy em NYC! Parece muito a Imbiribeira... Em Recife, todo inverno sofremos com o \"furacã http://t.co/LK09sjsh\n", "\n", "--------------------------------------------------------\n", - "isso é furacão sandy em nyc parece muito imbiribeira em recife inverno sofremos com furacã \n", + "furacão sandy new york city parece imbiribeira recife inverno sofremos furacã \n", "\n", "\n", "#repost #sandy #aftermath #nyc http://t.co/bzdoaYJD\n", "\n", "--------------------------------------------------------\n", - "repost sandy aftermath nyc \n", + "repost sandy aftermath new york city \n", "\n", "\n", "Dramatic photo. East Village swamped http://t.co/Xkyg7khA #NYC #sandy #sandyNYC / Pic from @JesseandGreg\n", "\n", "--------------------------------------------------------\n", - "dramatic photo east village swamped nyc sandy sandynyc pic \n", + "dramatic photo east village swamped new york city sandy sandynyc pic \n", "\n", "\n", "#sandy #badbitch http://t.co/IsTSfW1w\n", @@ -44728,7 +40098,7 @@ "#sandy #newyork #USA #taxi #parking #hurricane #2012 http://t.co/YPM1YVeg\n", "\n", "--------------------------------------------------------\n", - "sandy newyork usa taxi parking hurricane 2012 \n", + "sandy new york usa taxi parking hurricane012 \n", "\n", "\n", "#hoboken. #sandy we hate you 😡😤 http://t.co/eDvr62Kj\n", @@ -44740,7 +40110,7 @@ "East Village NYC #Sandy #Hurricane http://t.co/rZk05fhG\n", "\n", "--------------------------------------------------------\n", - "east village nyc sandy hurricane \n", + "east village new york city sandy hurricane \n", "\n", "\n", "Hope after #sandy RT @peoplesrev: Rainbow over NYC. http://t.co/0GUQAFvX\n", @@ -44752,19 +40122,19 @@ "#hurricane #sandy #aftermath #nj #hoboken http://t.co/IoobRTBs\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy aftermath nj hoboken \n", + "hurricane sandy aftermath new jersey hoboken \n", "\n", "\n", "#NJSANDY #sandy #casinopier #nj #newjersey #njallday #surf #rip http://t.co/kAwcTK7N\n", "\n", "--------------------------------------------------------\n", - "njsandy sandy casinopier nj newjersey njallday surf rip \n", + "njsandy sandy casinopier new jersey newjersey njallday surf rip \n", "\n", "\n", "Shockin'! #newyork #sandy #hurricane #taxi #usa #unitedstates #nyc #newyorkcity http://t.co/hBWpVLTT\n", "\n", "--------------------------------------------------------\n", - "shockin newyork sandy hurricane taxi usa unitedstates nyc newyorkcity \n", + "shockin new york sandy hurricane taxi usa unitedstates new york city new yorkcity \n", "\n", "\n", "#Sandy #PrayForUSA http://t.co/sDv0gbHp\n", @@ -44776,7 +40146,7 @@ "Lower side of manhattan at 10pm #Sandy 🙏 for everybody http://t.co/AUftGtsY\n", "\n", "--------------------------------------------------------\n", - "lower side manhattan 10pm sandy everybody \n", + "lower side manhattan at0pm sandy everybody \n", "\n", "\n", "#Sandy devastates roller coaster: http://t.co/OofGPE1B via @TwitPic\n", @@ -44788,7 +40158,7 @@ "#hurricane #Sandy #NewYork #QueBolas #Iphonesia http://t.co/45dDecxq\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork quebolas iphonesia \n", + "hurricane sandy new york quebolas iphonesia \n", "\n", "\n", "Mental picture “@JacquesRunaway: #yellowcab #sandy #repost http://t.co/HpHypbgY”\n", @@ -44800,7 +40170,7 @@ "#hurricane #sandy #staysafe moga dilindungi Allah #instadaily #instamood #instamalaysia http://t.co/xWLeD5Hb\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy staysafe moga dilindungi allah instadaily instamood instamalaysia \n", + "hurricane sandy staysafe moga dilindungi allah instadaily instamalaysia \n", "\n", "\n", "#SANDY is TEARING SHIT UP!!!! http://t.co/LvCCHV6j\n", @@ -44812,7 +40182,7 @@ "erinmarie716's photo #seaside#newjersey#sandy http://t.co/Aoag3BOp\n", "\n", "--------------------------------------------------------\n", - "erinmarie716 photo seaside newjersey sandy \n", + "erinmarie716 photo seasidenewjerseysandy \n", "\n", "\n", "#njpath #sandy scary. Don't plan on commuting any time soon http://t.co/Q4BANySO\n", @@ -44824,13 +40194,7 @@ "Atlantic City flooding >> RT @Hoeboma: Damn the boardwalk gone uptown. http://t.co/kplYqAJY #Sandy\n", "\n", "--------------------------------------------------------\n", - "atlantic city flooding greater greater \n", - "\n", - "\n", - "nasagoddard's photo of #hurricane #sandy http://t.co/niVAtwKZ\n", - "\n", - "--------------------------------------------------------\n", - "nasagoddard photo hurricane sandy \n", + "atlantic city flooding \n", "\n", "\n", "Brooklyn Bridge Park, submerged. #prayfortheeastcoast #sandy http://t.co/nVRhnx2q\n", @@ -44842,7 +40206,7 @@ "AP Image Downtown Manhattan Flooded...WOWZERS!!!❗🚫❗#Sandy http://t.co/LndgbVdU\n", "\n", "--------------------------------------------------------\n", - "ap image downtown manhattan flooded wowzers sandy \n", + "ap image downtown manhattan flooded zers sandy \n", "\n", "\n", "#sandy... this how you feel!!!? http://t.co/t6ETHQ72\n", @@ -44866,19 +40230,19 @@ "#unbelievable #Seaside #NJ #Sandy http://t.co/WIbe7WB8\n", "\n", "--------------------------------------------------------\n", - "unbelievable seaside nj sandy \n", + "unbelievable seaside new jersey sandy \n", "\n", "\n", "Flooded taxi #sandy #america #usa #ny #storm #water #sea #taxi #car #yellow http://t.co/j19VkLSf\n", "\n", "--------------------------------------------------------\n", - "flooded taxi sandy america usa ny storm water taxi car yellow \n", + "flooded taxi sandy america usa new york storm water taxi car yellow \n", "\n", "\n", "#nyc #sandy #aftermath http://t.co/lqm55f4w\n", "\n", "--------------------------------------------------------\n", - "nyc sandy aftermath \n", + "new york city sandy aftermath \n", "\n", "\n", "Seaside :( #Sandy http://t.co/xHuIjot5\n", @@ -44890,25 +40254,25 @@ "msgood's photo http://t.co/ArrBZjYj WOW #hurricane #sandy #flooding\n", "\n", "--------------------------------------------------------\n", - "msgood photo wow hurricane sandy flooding \n", + "msgood photo hurricane sandy flooding \n", "\n", "\n", "Be safe you all on NY RT @ConspiracyWATCH: RT @joepas914: #34th #nyc #flood #hurricane #sandy http://t.co/RAZBvR2m\n", "\n", "--------------------------------------------------------\n", - "safe ny \n", + "safe new york \n", "\n", "\n", "Stay safe east coast #NewYorkCity #sandy #NOFILTER http://t.co/oPnuOy4u\n", "\n", "--------------------------------------------------------\n", - "stay safe east coast newyorkcity sandy nofilter \n", + "stay safe east coast new yorkcity sandy nofilter \n", "\n", "\n", "#ac #sandy #huricanesandy #wow #OLABOLATV news http://t.co/A8QUEJfT\n", "\n", "--------------------------------------------------------\n", - "ac sandy huricanesandy wow olabolatv news \n", + "ac sandy huricanesandy olabolatv news \n", "\n", "\n", "#Sandy #WTC #Sad #Advertsing #Agency #webagency #marketing #mobile #italy #Tagstagram #instalove #instabeaut http://t.co/VQK9ioTE\n", @@ -44926,7 +40290,7 @@ "Damn #sandy #hudsonriver #flood #newyork http://t.co/w0RJ49NK\n", "\n", "--------------------------------------------------------\n", - "damn sandy hudsonriver flood newyork \n", + "damn sandy hudsonriver flood new york \n", "\n", "\n", "Atlantic City boardwalk floating uptown earlier today! http://t.co/ngUb5hTN #Sandy\n", @@ -44944,13 +40308,13 @@ "@leilanibishopxo #patrickhoelck #diary #nyc #sandy #loveandlight http://t.co/smcHQixz\n", "\n", "--------------------------------------------------------\n", - "patrickhoelck diary nyc sandy loveandlight \n", + "patrickhoelck diary new york city sandy loveandlight \n", "\n", "\n", "I call it ... The Drowning Bee Hive #Sandy #Hurricane #NYC http://t.co/wPqCLzni\n", "\n", "--------------------------------------------------------\n", - "call drowning bee hive sandy hurricane nyc \n", + "call drowning bee hive sandy hurricane new york city \n", "\n", "\n", "#sandy es algo terrorifico!! http://t.co/Y5FAHHe7\n", @@ -44974,7 +40338,7 @@ "#Sandy Foto di _thecoolhunter_ http://t.co/qQ6LpAvJ\n", "\n", "--------------------------------------------------------\n", - "sandy foto di thecoolhunter \n", + "sandy foto thecoolhunter \n", "\n", "\n", "#sandy #hurricane #flood #problems http://t.co/5Z2E6Ekn\n", @@ -44992,7 +40356,7 @@ "Taxi's te water. #ny #sandy http://t.co/vUDPM4sc\n", "\n", "--------------------------------------------------------\n", - "taxi water ny sandy \n", + "taxi water new york sandy \n", "\n", "\n", "seaside pier #sandy http://t.co/iKoMG8b3\n", @@ -45022,13 +40386,13 @@ "#sandy #nyc #OLABOLATV #flood http://t.co/AV0daJy9\n", "\n", "--------------------------------------------------------\n", - "sandy nyc olabolatv flood \n", + "sandy new york city olabolatv flood \n", "\n", "\n", "http://t.co/thhhOfae la zona del WTC inundandose #sandy #newyork\n", "\n", "--------------------------------------------------------\n", - "zona wtc inundandose sandy newyork \n", + "zona wtc inundandose sandy new york \n", "\n", "\n", "This was on a news channel #crazy #hurricane #sandy #nojoke #trampoline http://t.co/SvJiqyxE #hurricane\n", @@ -45058,7 +40422,7 @@ "Lower east side NY #sandy http://t.co/5JapBwT8\n", "\n", "--------------------------------------------------------\n", - "lower east side ny sandy \n", + "lower east side new york sandy \n", "\n", "\n", "Alphabet City's turning into Alphabet Soup 😱 #Hurricane #Sandy http://t.co/rT4dmNN5\n", @@ -45070,19 +40434,13 @@ "oomackattackoo's photo http://t.co/xMKwrwpn Wow, 34th St. and aroun 1st. ave, under water #sandy\n", "\n", "--------------------------------------------------------\n", - "oomackattackoo photo wow 34th st aroun first ave water sandy \n", + "oomackattackoo photo 4th st aroun first ave water sandy \n", "\n", "\n", "#NYC #Sandy #Aftermath \\n#kneedeep #CleanUp http://t.co/gqEoXOQN\n", "\n", "--------------------------------------------------------\n", - "nyc sandy aftermath kneedeep cleanup \n", - "\n", - "\n", - "Wow. NYC #Sandy http://t.co/KrFx8ONO\n", - "\n", - "--------------------------------------------------------\n", - "wow nyc sandy \n", + "new york city sandy aftermath kneedeep cleanup \n", "\n", "\n", "Lower Manhattan! #sandy #hurricane #fml http://t.co/yK1scesC\n", @@ -45094,19 +40452,19 @@ "#صور #غرد_بصورة #Instagram #Bahrain #Instagood #ksa #UAE #Usa #Hurricane #Sandy #Qatar #Oman #italy #Franc http://t.co/iw4kcscK\n", "\n", "--------------------------------------------------------\n", - "صور غرد بصورة instagram bahrain instagood ksa uae usa hurricane sandy qatar oman italy franc \n", + "صور غردبصورة instagram bahrain instagood ksa uae usa hurricane sandy qatar oman italy franc \n", "\n", "\n", "princetrey_dc's photo http://t.co/FPC93u5h #Sandy\n", "\n", "--------------------------------------------------------\n", - "princetrey dc photo sandy \n", + "princetreydc photo sandy \n", "\n", "\n", "This Morning #NYC #Sandy http://t.co/K9R1GyqA\n", "\n", "--------------------------------------------------------\n", - "morning nyc sandy \n", + "morning new york city sandy \n", "\n", "\n", "#sandy #damn http://t.co/hk3dQtD8\n", @@ -45124,7 +40482,7 @@ "Lower #Manhattan under water. Found this on Facebook - Northern NJ Weather Authority. #Sandy #weather #storm http://t.co/sCKo0cpJ\n", "\n", "--------------------------------------------------------\n", - "lower manhattan water found facebook northern nj weather authority sandy weather storm \n", + "lower manhattan water found facebook northern new jersey weather authority sandy weather storm \n", "\n", "\n", "Seaside is ruined 😿 so sad. And my favorite log flume is gone #sandy http://t.co/caLfSu1S\n", @@ -45136,7 +40494,7 @@ "#manhattan #14thStreet #AvenueC #hurricane #sandy #October #2012 #haarp #government #coincidence #election # http://t.co/j2nxrlMM\n", "\n", "--------------------------------------------------------\n", - "manhattan 14thstreet avenuec hurricane sandy october 2012 haarp government coincidence election \n", + "manhattan4thstreet avenuec hurricane sandy october012 haarp government coincidence election \n", "\n", "\n", "#sandy #frankenstorm @Kat_Bk @ Taxi http://t.co/wO7lRDs6\n", @@ -45160,7 +40518,7 @@ "I can't believe how bad New York City got😳😞\\n#NYC🗽#Hurricane☁⚡☔#Sandy http://t.co/10CPC0Wc\n", "\n", "--------------------------------------------------------\n", - "believe bad new york city got nyc hurricane sandy \n", + "believe bad new york city got new york city hurricane sandy \n", "\n", "\n", "cambumbito's photo http://t.co/vr29aqLu #Sandy\n", @@ -45196,13 +40554,13 @@ "Huracan #Sandy #manhathan #NYC http://t.co/OIMddLvS\n", "\n", "--------------------------------------------------------\n", - "huracan sandy manhathan nyc \n", + "huracan sandy manhathan new york city \n", "\n", "\n", "Много удивительного модно увидеть ,введя в писке тег - \" #sandy \" #sandy #ny #taxi #newyork http://t.co/zhtee9c0\n", "\n", "--------------------------------------------------------\n", - "удивительного модно увидеть введя писке тег sandy sandy ny taxi newyork \n", + "удивительного модно увидеть введя писке тег sandy sandy new york taxi new york \n", "\n", "\n", "#sandy basically wrecked my childhood memories hah http://t.co/R2mhIQRC\n", @@ -45220,7 +40578,7 @@ "East Village (NYC) swamped. dobesedno. -- http://t.co/GInGtHCZ #sandy\n", "\n", "--------------------------------------------------------\n", - "east village nyc swamped dobesedno sandy \n", + "east village new york city swamped dobesedno sandy \n", "\n", "\n", "The most heartbreaking shot of the boardwalk yet. #seaside #sleazeside #boardwalk #jersey #sandy #home http://t.co/GLmzEuDV\n", @@ -45232,19 +40590,13 @@ "A comforting view from work #cranecollapse #57thand7th #sandy http://t.co/cX463PIx\n", "\n", "--------------------------------------------------------\n", - "comforting view work cranecollapse 57thand7th sandy \n", + "comforting view work cranecollapse7thand7th sandy \n", "\n", "\n", "Oh snap! #hurricane #sandy http://t.co/MdYpO4zI\n", "\n", "--------------------------------------------------------\n", - "oh snap hurricane sandy \n", - "\n", - "\n", - "#sandy wow! http://t.co/PsCHeAI6\n", - "\n", - "--------------------------------------------------------\n", - "sandy wow \n", + "snap hurricane sandy \n", "\n", "\n", "Be safe. #be #safe #besafe #east #eastcoast #sandy #hurricane #wind #winds #rains #flood #flooding #powerout http://t.co/Jfv4Itxq\n", @@ -45256,7 +40608,7 @@ "NJ boardwalk #photo - all over #Instagram http://t.co/vHwTaGC1 #Sandy\n", "\n", "--------------------------------------------------------\n", - "nj boardwalk photo instagram sandy \n", + "new jersey boardwalk photo instagram sandy \n", "\n", "\n", "Asi esta manhattan !! #sandy #huracan #instagram http://t.co/yblBajCa\n", @@ -45280,7 +40632,7 @@ "Sandy em: VAMOS PULAR! #hurricane #Sandy #storm #massachusetts http://t.co/WVt1hDCT\n", "\n", "--------------------------------------------------------\n", - "sandy em vamos pular hurricane sandy storm massachusetts \n", + "sandy vamos pular hurricane sandy storm massachusetts \n", "\n", "\n", "#Sandy FDR Dr right now. Never seen anything like it. @ Serendipity3 http://t.co/7TB2Mt15\n", @@ -45292,7 +40644,7 @@ "jaimerai pas #sandy http://t.co/ewQHMIvK\n", "\n", "--------------------------------------------------------\n", - "jaimerai pas sandy \n", + "jaimerai sandy \n", "\n", "\n", "Hasn't even hit yet and its this bad! #sandy http://t.co/C2UHTQ8M\n", @@ -45328,25 +40680,25 @@ "#newyork #taxi #parking #water #sandy #godbless #america http://t.co/il9cdmfY\n", "\n", "--------------------------------------------------------\n", - "newyork taxi parking water sandy godbless america \n", + "new york taxi parking water sandy godbless america \n", "\n", "\n", "Nyc #instacane #sandy http://t.co/qgmAkg0N\n", "\n", "--------------------------------------------------------\n", - "nyc instacane sandy \n", + "new york city instacane sandy \n", "\n", "\n", "Just looks like a crazy artist stunt. Unbelievable. #Sandy #NYC http://t.co/GdpUcOh9\n", "\n", "--------------------------------------------------------\n", - "looks like crazy artist stunt unbelievable sandy nyc \n", + "looks like crazy artist stunt unbelievable sandy new york city \n", "\n", "\n", "#wb #sandy #waves #surf @ Wrightsville Beach Access 16 http://t.co/J6ItKhuO\n", "\n", "--------------------------------------------------------\n", - "wb sandy waves surf wrightsville beach access 16 \n", + "wb sandy waves surf wrightsville beach access6 \n", "\n", "\n", "Lower manhattan... #sandy #hurricane #aftermath http://t.co/jdscPGYC\n", @@ -45361,22 +40713,10 @@ "strange photo sandy \n", "\n", "\n", - "#hurricane #sandy #lol http://t.co/PL9H37cr\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy lol \n", - "\n", - "\n", "“bbcworld @bdsilverman photo of #Bounty hit by storm #Sandy. 1 crew member was found \"unresponsive\", a 2nd i http://t.co/Y6qlN8JK\n", "\n", "--------------------------------------------------------\n", - "bbcworld photo bounty hit storm sandy 1 crew member found unresponsive second \n", - "\n", - "\n", - "Wow. O_o #Sandy “@jwomack: Well, we can always take a Oh never mind: http://t.co/PQTL2yT4”\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", + "bbcworld photo bounty hit storm sandy crew member found unresponsive second \n", "\n", "\n", "Atlantic City boardwalk http://t.co/IM7JcfA9 #Sandy RT @Cutelovekat\n", @@ -45388,7 +40728,7 @@ "Манхеттен #Sandy #NY\\n\\nantonioonline's photo http://t.co/lfrVjqMX\n", "\n", "--------------------------------------------------------\n", - "манхеттен sandy ny antonioonline photo \n", + "манхеттен sandy new york antonioonline photo \n", "\n", "\n", "captured by @kurtdietrich, lower Manhattan after #sandy http://t.co/t5ysuG61” Good reminder of an old covenant involving water and mercy.\n", @@ -45418,7 +40758,7 @@ "Ayudemen a bajar mi trampolin. Este viento esta muy fuerte. #sandy. dj_zarco @elsanto137 @juaness @jbalvin http://t.co/N9FSXUDR\n", "\n", "--------------------------------------------------------\n", - "ayudemen bajar trampolin viento fuerte sandy dj zarco \n", + "ayudemen bajar trampolin viento fuerte sandy djzarco \n", "\n", "\n", "Our thoughts and prayers go out to everyone effected by Hurricane #Sandy please be safe. #staystrong #jersey http://t.co/cUlUoVRc\n", @@ -45436,13 +40776,13 @@ "briannaa_ryann's photo http://t.co/zOpWxeX9 #sandy\n", "\n", "--------------------------------------------------------\n", - "briannaa ryann photo sandy \n", + "briannaaryann photo sandy \n", "\n", "\n", "Damn #nyc #like4like #sandy #instagood #sad #igers #ignation #instalike http://t.co/w852Cmju\n", "\n", "--------------------------------------------------------\n", - "damn nyc like4like sandy instagood sad igers ignation instalike \n", + "damn new york city like4like sandy instagood sad igers ignation instalike \n", "\n", "\n", "That shit Cray #sandy #CT #hurricane #iDontWantToLosePower http://t.co/obWcctjh\n", @@ -45460,13 +40800,13 @@ "If your car is on Ave C, I'm sorry. #sandy http://t.co/es3EWDh1\n", "\n", "--------------------------------------------------------\n", - "car ave c sorry sandy \n", + "car ave sorry sandy \n", "\n", "\n", "Si hoy esta asi no me quiero imaginar mañana #Sandy #NYC #Ciclon http://t.co/eGGjM3ns\n", "\n", "--------------------------------------------------------\n", - "si hoy asi quiero imaginar mañana sandy nyc ciclon \n", + "si hoy así quiero imaginar mañana sandy new york city ciclon \n", "\n", "\n", "The East Village y'all. #Sandy http://t.co/i9o2MupF\n", @@ -45487,18 +40827,6 @@ "need cab nypost hurricane sandy insanity \n", "\n", "\n", - "Unreal #Sandy http://t.co/Ca16jSWn\n", - "\n", - "--------------------------------------------------------\n", - "unreal sandy \n", - "\n", - "\n", - "@reedtimmerTVN: WOW, sad. World Trade Center construction area being taken over by flood waters! http://t.co/UMMiGwmH / WTC #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "wow sad world trade center construction area taken flood waters wtc sandy \n", - "\n", - "\n", "flooded taxi parking http://t.co/I3LyTbxt #sandy\n", "\n", "--------------------------------------------------------\n", @@ -45508,7 +40836,7 @@ "This is UNREAL #NYC #Sandy http://t.co/SAuG9TI3\n", "\n", "--------------------------------------------------------\n", - "unreal nyc sandy \n", + "unreal new york city sandy \n", "\n", "\n", "No lights. But strangely I have Internet. #sandy http://t.co/mjmqwQ4W\n", @@ -45526,19 +40854,19 @@ "Sandy hits manhattan! One pizza party these poor people won't forget very soon... #nyc #sandy #buildingfail http://t.co/FP1YEzo5\n", "\n", "--------------------------------------------------------\n", - "sandy hits manhattan one pizza party poor people forget soon nyc sandy buildingfail \n", + "sandy hits manhattan one pizza party poor people forget soon new york city sandy buildingfail \n", "\n", "\n", "Hoboken NJ #Sandy #fucksandy #Damage http://t.co/aa05Rwuw\n", "\n", "--------------------------------------------------------\n", - "hoboken nj sandy fucksandy damage \n", + "hoboken new jersey sandy fucksandy damage \n", "\n", "\n", "Desde NYC World Trade Center #nyc #wtc #sandy http://t.co/tVbRWTV8\n", "\n", "--------------------------------------------------------\n", - "nyc world trade center nyc wtc sandy \n", + "new york city world trade center new york city wtc sandy \n", "\n", "\n", "#Sandy #Nasa http://t.co/5YO6BATJ\n", @@ -45550,13 +40878,13 @@ "A fleet of NYC cabs submerged from #Sandy http://t.co/gngt9BgY\n", "\n", "--------------------------------------------------------\n", - "fleet nyc cabs submerged sandy \n", + "fleet new york city cabs submerged sandy \n", "\n", "\n", "#sandy #NYC #huracan @mariangelagravi habobo1972 @kahtrincita http://t.co/yEHwJEea\n", "\n", "--------------------------------------------------------\n", - "sandy nyc huracan habobo1972 \n", + "sandy new york city huracan habobo1972 \n", "\n", "\n", "@paulipotter nose tendriamos que ir a ver. Pero esto si es deveritas deveritas #nolie work done by #sandy http://t.co/MHhBHrAQ\n", @@ -45568,7 +40896,7 @@ "world Trade Center building site is being severely flooded #Sandy #Ny\\nhttps://t.co/Mzi1cKKm”\n", "\n", "--------------------------------------------------------\n", - "world trade center building site severely flooded sandy ny \n", + "world trade center building site severely flooded sandy new york \n", "\n", "\n", "#sandy #seasideheights #rollercoaster #disbitchsandy http://t.co/1a5184gZ\n", @@ -45610,7 +40938,7 @@ "Trampoline on phone lines #hurricane #sandy #instagood #instamood #picoftheday #picoftheweek #picofthestorm http://t.co/vRTc1U2S\n", "\n", "--------------------------------------------------------\n", - "trampoline phone lines hurricane sandy instagood instamood picoftheday picoftheweek picofthestorm \n", + "trampoline phone lines hurricane sandy instagood picoftheday picoftheweek picofthestorm \n", "\n", "\n", "Horrible #seaside #sandy :( http://t.co/TsCkA3CG\n", @@ -45625,12 +40953,6 @@ "stay safe sandy hurricane \n", "\n", "\n", - "#Sandy en New York http://t.co/VjK1QZGA\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", "#eastvillage #sandy http://t.co/kECguUvK\n", "\n", "--------------------------------------------------------\n", @@ -45640,7 +40962,7 @@ "Damn some of these #Sandy images are crazy. How are all of my NY friends holdin up? Looks like you went thr http://t.co/ssJfDef6\n", "\n", "--------------------------------------------------------\n", - "damn sandy images crazy ny friends holdin looks like went thr \n", + "damn sandy images crazy new york friends holdin looks like went thr \n", "\n", "\n", "Insane pic of #Manhattan underwater \\n#sandy #prayers http://t.co/Dtrunijt\n", @@ -45664,7 +40986,7 @@ "Apparently this was new york at midnight. Hooly shit! #scary #hurricane #sandy #newyork #water #endoftheworl http://t.co/DcQJYfYV\n", "\n", "--------------------------------------------------------\n", - "apparently new york midnight hooly shit scary hurricane sandy newyork water endoftheworl \n", + "apparently new york midnight hooly shit scary hurricane sandy new york water endoftheworl \n", "\n", "\n", "Dude, #Sandy is no joke. http://t.co/TEAdHBkA\n", @@ -45700,7 +41022,7 @@ "#hurricane #sandy #damage #newyork #america #yellow #cab #taxi http://t.co/9uQxIuwE\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy damage newyork america yellow cab taxi \n", + "hurricane sandy damage new york america yellow cab taxi \n", "\n", "\n", "Holy .... #sandy http://t.co/tUAeIW3t\n", @@ -45736,13 +41058,13 @@ "Hoboken PATH Station tunnel flooded via elevator shaft #sandy http://t.co/QtvzW6tJ\n", "\n", "--------------------------------------------------------\n", - "hoboken path station tunnel flooded via elevator shaft sandy \n", + "hoboken path station tunnel floodedelevator shaft sandy \n", "\n", "\n", "#sandy blowing walls off #smh http://t.co/TGXLVeMg\n", "\n", "--------------------------------------------------------\n", - "sandy blowing walls smh \n", + "sandy blowing walls \n", "\n", "\n", "#sandy #hurricane #cyclone @ Sandy http://t.co/6IEVbTSg\n", @@ -45772,7 +41094,7 @@ "Jersey Shore. I believe it's seaside heights. #Sandy http://t.co/azlu5iS3\\nvia http://t.co/zUgOJfHN>\n", "\n", "--------------------------------------------------------\n", - "jersey shore believe seaside heights sandy via greater \n", + "jersey shore believe seaside heights sandy \n", "\n", "\n", "Flood.. Taxis #sandy http://t.co/ov9pbbal\n", @@ -45787,52 +41109,34 @@ "sandy pics \n", "\n", "\n", - "“@BigMarley3: snooki's home. #JerseyShore boardwalk. #Sandy http://t.co/kTVBGNrJ” wow\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "#nyc #wtc #sandy #hurricanes #floods #OLABOLATV http://t.co/PddbUX9i\n", "\n", "--------------------------------------------------------\n", - "nyc wtc sandy hurricanes floods olabolatv \n", + "new york city wtc sandy hurricanes floods olabolatv \n", "\n", "\n", "#NewYork #Sandy #taxi http://t.co/4kQTQfvY\n", "\n", "--------------------------------------------------------\n", - "newyork sandy taxi \n", + "new york sandy taxi \n", "\n", "\n", "Наводнение в Бруклине, Нью-Йорк | #NY #Sandy http://t.co/mndX5kdh\n", "\n", "--------------------------------------------------------\n", - "наводнение бруклине нью йорк ny sandy \n", - "\n", - "\n", - "Holy shit #sandy http://t.co/fb1071sp\n", - "\n", - "--------------------------------------------------------\n", - "holy shit sandy \n", + "наводнение бруклине нью йорк new york sandy \n", "\n", "\n", "Oh no #sandy what the hell NO NO NO NO NOOOOOOO!!! #odhaha http://t.co/wLdJx4lF\n", "\n", "--------------------------------------------------------\n", - "oh sandy hell nooooooo odhaha \n", + "sandy hell nooooooo od \n", "\n", "\n", "Aïe Aïe Aïe Rien ne va plus #Sandy >> http://t.co/HkG3Aezg\n", "\n", "--------------------------------------------------------\n", - "aïe aïe aïe rien ne va plus sandy greater greater \n", - "\n", - "\n", - "Hurricane #Sandy, by @time http://t.co/ixAeykg1\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "aïe aïe aïe rien va plus sandy \n", "\n", "\n", "#Sandy turns yellow cab parking lot into swimming pool. http://t.co/wC6fQybL\n", @@ -45844,31 +41148,25 @@ "Holy satellite image of #hurricane #sandy from #NASA! Wtf!?! http://t.co/7kI4GSIS\n", "\n", "--------------------------------------------------------\n", - "holy satellite image hurricane sandy nasa wtf \n", - "\n", - "\n", - "The East Village after #sandy http://t.co/7pywMW1T\n", - "\n", - "--------------------------------------------------------\n", - "east village sandy \n", + "holy satellite image hurricane sandy nasa \n", "\n", "\n", "#wow #hurricane #sandy #looks #shitty #besafe #jersey http://t.co/dXVEMG0k\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy looks shitty besafe jersey \n", + "hurricane sandy looks shitty besafe jersey \n", "\n", "\n", "Oh. #wind #hurricane #sandy #hurricanesady #lol #funny #wow #nofilter #outside #nature #rain #f4f #followme http://t.co/evuma1rV\n", "\n", "--------------------------------------------------------\n", - "oh wind hurricane sandy hurricanesady lol funny wow nofilter outside nature rain f4f followme \n", + "wind hurricane sandy hurricanesady funny nofilter outside nature rain f4f followme \n", "\n", "\n", "East Village. Sick. #Sandy #NYC http://t.co/45R1HmKf\n", "\n", "--------------------------------------------------------\n", - "east village sick sandy nyc \n", + "east village sick sandy new york city \n", "\n", "\n", "Waww!! “@NatachaQS: #Sandy Par @nasagoddard http://t.co/eE63ledj”\n", @@ -45880,13 +41178,13 @@ "Rising water, caused by #Hurricane #Sandy, #NewYork http://t.co/aFkindpV\n", "\n", "--------------------------------------------------------\n", - "rising water caused hurricane sandy newyork \n", + "rising water caused hurricane sandy new york \n", "\n", "\n", "Wow, new york taxis after #sandy. kelseyjharper's photo http://t.co/zoSeB2QX\n", "\n", "--------------------------------------------------------\n", - "wow new york taxis sandy kelseyjharper photo \n", + "new york taxis sandy kelseyjharper photo \n", "\n", "\n", "#Sandy takes trampolining to new heights --> nickthehouse's photo http://t.co/PDEpb4fJ\n", @@ -45910,31 +41208,31 @@ "#Sandy Rescue efforts at 14th and C, photo courtesy of TIME: http://t.co/Y19jeIHW\n", "\n", "--------------------------------------------------------\n", - "sandy rescue efforts 14th c photo courtesy time \n", + "sandy rescue efforts at4th photo courtesy time \n", "\n", "\n", "So sad! #nyc #sandy #hurricane #taxi http://t.co/uieIkK9i\n", "\n", "--------------------------------------------------------\n", - "sad nyc sandy hurricane taxi \n", + "sad new york city sandy hurricane taxi \n", "\n", "\n", "20th & ave c lower east side #sandy #hurricane #Manhattan http://t.co/PYdax4FS\n", "\n", "--------------------------------------------------------\n", - "20th ave c lower east side sandy hurricane manhattan \n", + "0th ave lower east side sandy hurricane manhattan \n", "\n", "\n", "So sad. Good times. #seasideheights #nj #sandy http://t.co/WYaLdf65\n", "\n", "--------------------------------------------------------\n", - "sad good times seasideheights nj sandy \n", + "sad good times seasideheights new jersey sandy \n", "\n", "\n", "#NYC #Sandy #hurricane #ZonaCero http://t.co/PV5ce7BR\n", "\n", "--------------------------------------------------------\n", - "nyc sandy hurricane zonacero \n", + "new york city sandy hurricane zonacero \n", "\n", "\n", "Shot by Scottnathan #sandy http://t.co/o2O74sf0\n", @@ -45958,7 +41256,7 @@ "Wow. I would of never thought this bitch #sandy would do this. #les #nyc http://t.co/UOj4OgG5\n", "\n", "--------------------------------------------------------\n", - "wow would never thought bitch sandy would nyc \n", + "would never thought bitch sandy would new york city \n", "\n", "\n", "Wanna play outside? #sandy http://t.co/aPQZ21lc\n", @@ -45970,13 +41268,13 @@ "ellio_martnez's photo http://t.co/cnYUE7wg #sandy\n", "\n", "--------------------------------------------------------\n", - "ellio martnez photo sandy \n", + "elliomartnez photo sandy \n", "\n", "\n", "Praising God for protecting my sister and bro and baby girls! #sandy #manhattan #grateful #thankful #sandyto http://t.co/Wo4HlXMQ\n", "\n", "--------------------------------------------------------\n", - "praising god protecting sister bro baby girls sandy manhattan grateful thankful sandyto \n", + "praising god protecting sister andand baby girls sandy manhattan grateful thankful sandyto \n", "\n", "\n", "slavicinferno's photo http://t.co/F7IvCYzs #sandy crazy!!\n", @@ -45988,31 +41286,31 @@ "Bye bye #casinopier #sandy #seasideheights #nj #hurricane http://t.co/jbRpKsya\n", "\n", "--------------------------------------------------------\n", - "bye bye casinopier sandy seasideheights nj hurricane \n", + "bye bye casinopier sandy seasideheights new jersey hurricane \n", "\n", "\n", "#newyork #powercut #hurricane #sandy http://t.co/gVQzFL99\n", "\n", "--------------------------------------------------------\n", - "newyork powercut hurricane sandy \n", + "new york powercut hurricane sandy \n", "\n", "\n", "2012, året då jorden går under!!! #eller? #NYC #sandy http://t.co/UYs0V0w5\n", "\n", "--------------------------------------------------------\n", - "2012 året jorden går nyc sandy \n", + "2 året jorden går new york city sandy \n", "\n", "\n", "Waist-high water at 14th and Ave C: http://t.co/MKfaX899 #NYC #Sandy\n", "\n", "--------------------------------------------------------\n", - "waist high water 14th ave c nyc sandy \n", + "waist high water at4th ave new york city sandy \n", "\n", "\n", "_thecoolhunter_'s photo http://t.co/6yAcpIyD taxicabs #nyc #sandy\n", "\n", "--------------------------------------------------------\n", - "thecoolhunter photo taxicabs nyc sandy \n", + "thecoolhunter photo taxicabs new york city sandy \n", "\n", "\n", "Praying for firemen, police, linemen & public sector workers out rescuing others. http://t.co/0uEUqHoT (via @TIME) #safetynet #heroes #Sandy\n", @@ -46042,7 +41340,7 @@ "Yellow Cabs took a hit too! No trains no cabs buses n walking will be for new yorkers! #sandy 🚕#instacollage http://t.co/NmgADkbs\n", "\n", "--------------------------------------------------------\n", - "yellow cabs took hit trains cabs buses n walking new yorkers sandy instacollage \n", + "yellow cabs took hit trains cabs buses walking new yorkers sandy instacollage \n", "\n", "\n", "🚖🚖 #Sandy _thecoolhunter_'s photo http://t.co/MhgcjXuI\n", @@ -46066,7 +41364,7 @@ "Taxi Cabs under water - #sandy aj_magnberg's photo http://t.co/Wr7Qxi9Y\n", "\n", "--------------------------------------------------------\n", - "taxi cabs water sandy aj magnberg photo \n", + "taxi cabs water sandy ajmagnberg photo \n", "\n", "\n", "Some parts of #BK have allot of cleaning to do. Praying for my East coasters #Staystrong #Sandy http://t.co/O6LNfKWB\n", @@ -46084,19 +41382,19 @@ "Roller coaster at sea, Seaside Heights, NJ: http://t.co/SaYZT4c2 #sandy\n", "\n", "--------------------------------------------------------\n", - "roller coaster seaside heights nj sandy \n", + "roller coaster seaside heights new jersey sandy \n", "\n", "\n", "NY Yellow cabs http://t.co/sTYfzvcR #SANDY\n", "\n", "--------------------------------------------------------\n", - "ny yellow cabs sandy \n", + "new york yellow cabs sandy \n", "\n", "\n", "#sandy #NewYork #storm #2012\\n#taxis#flood http://t.co/udMgdyN8\n", "\n", "--------------------------------------------------------\n", - "sandy newyork storm 2012 taxis flood \n", + "sandy new york storm012 taxisflood \n", "\n", "\n", "#sandy no light. Ma fav city look stony.. http://t.co/8FXRdetc\n", @@ -46144,7 +41442,7 @@ "Be safe Americans! God bless you! #hurricane #sandy #nyc #ny http://t.co/CAbvRNBW\n", "\n", "--------------------------------------------------------\n", - "safe americans god bless hurricane sandy nyc ny \n", + "safe americans god bless hurricane sandy new york city new york \n", "\n", "\n", "#Sandy update #HolyBALLS (via @NASAGoddard) http://t.co/w7dQQf9Z\n", @@ -46162,31 +41460,31 @@ "parking lot NYC #sandy http://t.co/VSR4Zeh9\n", "\n", "--------------------------------------------------------\n", - "parking lot nyc sandy \n", + "parking lot new york city sandy \n", "\n", "\n", "Una aseguradora va a estar muy triste. #Sandy #NYC http://t.co/QNNLgxua\n", "\n", "--------------------------------------------------------\n", - "aseguradora va triste sandy nyc \n", + "aseguradora va triste sandy new york city \n", "\n", "\n", "@patty_london Una aseguradora va estar muy triste. #Sandy #NYC http://t.co/6WjICwai vía @eduardo_g / incluye desastres naturales el seguro?\n", "\n", "--------------------------------------------------------\n", - "aseguradora va triste sandy nyc vía incluye desastres naturales seguro \n", + "aseguradora va triste sandy new york city incluye desastres naturales seguro \n", "\n", "\n", "Wow...World Trade Center Site under flood water: http://t.co/ibLrLMqF #Sandy #Hurricane #NYC\n", "\n", "--------------------------------------------------------\n", - "wow world trade center site flood water sandy hurricane nyc \n", + "world trade center site flood water sandy hurricane nyc \n", "\n", "\n", "pray for you! Hope you are ok #newyork #sandy #storm http://t.co/TeO1tvA4\n", "\n", "--------------------------------------------------------\n", - "pray hope ok newyork sandy storm \n", + "pray hope ok new york sandy storm \n", "\n", "\n", "Taxi depot outside of my office #Sandy http://t.co/8fm6w3jY\n", @@ -46201,32 +41499,20 @@ "sandy mean business \n", "\n", "\n", - "time's photo #SANDY http://t.co/yaKIwKpR\n", - "\n", - "--------------------------------------------------------\n", - "time photo sandy \n", - "\n", - "\n", "A person's a person, no matter how small. -Dr. Seuss #quote #sandy #hurricane #nyc #earth #life #live #lov http://t.co/x4ckJdtc\n", "\n", "--------------------------------------------------------\n", - "person person matter small dr seuss quote sandy hurricane nyc earth life live lov \n", + "person person matter small dr seuss quote sandy hurricane new york city earth life live lov \n", "\n", "\n", "anyone up for a late night swim?! #sandy #nyc #nypd http://t.co/cw0j5n3E\n", "\n", "--------------------------------------------------------\n", - "anyone late night swim sandy nyc nypd \n", + "anyone late night swim sandy new york city nypd \n", "\n", "\n", "(( #sandy #hurricane #state #storm #awful #scared #bad #windy #cloudy #rainy #atlantic #cold #water #manhatt http://t.co/MfSj0XX7\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "--------------------------------------------------------\n", "sandy hurricane state storm awful scared bad windy cloudy rainy atlantic cold water manhatt \n", "\n", @@ -46234,7 +41520,7 @@ "#sandy #huracan #newyork #taxi #water #disaster http://t.co/so4j7R3N\n", "\n", "--------------------------------------------------------\n", - "sandy huracan newyork taxi water disaster \n", + "sandy huracan new york taxi water disaster \n", "\n", "\n", "#Sandy #taxiboat http://t.co/aClfg4hF\n", @@ -46273,16 +41559,10 @@ "manhattan sandy time photo \n", "\n", "\n", - "East Village #Sandy RT @AngryBlkManDC: Wow!!!! http://t.co/XwtQmQyW\n", - "\n", - "--------------------------------------------------------\n", - "east village sandy \n", - "\n", - "\n", "Seaside Heights, NJ 😢💔 #sandy http://t.co/GsR77hXr\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj sandy \n", + "seaside heights new jersey sandy \n", "\n", "\n", "“@pabfo: Esto es real. #Sandy // New York. http://t.co/mdNNfGRT” vaya....\n", @@ -46294,19 +41574,13 @@ "Sandy #newyork #sandy http://t.co/j1uJKUty\n", "\n", "--------------------------------------------------------\n", - "sandy newyork sandy \n", + "sandy new york sandy \n", "\n", "\n", "#Wow- #NJ Boardwalk #AtlanticCity http://t.co/k3rJ6GKe h/t @Alex_Ogle @TheMatthewKeys #sandy\n", "\n", "--------------------------------------------------------\n", - "wow nj boardwalk atlanticcity h sandy \n", - "\n", - "\n", - "#hurricane #sandy #space http://t.co/d4uh3VRm\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy space \n", + "new jersey boardwalk atlanticcity sandy \n", "\n", "\n", "Manhattan at the moment #Sandy #PrayforNY http://t.co/Ro0X6YMh\n", @@ -46336,7 +41610,7 @@ "#newyork #sandy #hope #love #rainbow #help #nyc 🗽🌇🌈 http://t.co/DQuvctjF\n", "\n", "--------------------------------------------------------\n", - "newyork sandy hope love rainbow help nyc \n", + "new york sandy hope love rainbow help new york city \n", "\n", "\n", "Parking lot full of cabs flooded. #hurricane #sandy http://t.co/FDKFR83K\n", @@ -46348,13 +41622,13 @@ "Ayudenme a bajar mi trampolin que el #viento esta muy fuerte #sandy #ny #nj #newjersey #hurancan #tormenta # http://t.co/KIvHkWfM\n", "\n", "--------------------------------------------------------\n", - "ayudenme bajar trampolin viento fuerte sandy ny nj newjersey hurancan tormenta \n", + "ayudenme bajar trampolin viento fuerte sandy new york new jersey newjersey hurancan tormenta \n", "\n", "\n", "RushingWaters. #NYC #Sandy #Hurricane #Damage #PoorCar #Weather http://t.co/bfph3EHR\n", "\n", "--------------------------------------------------------\n", - "rushingwaters nyc sandy hurricane damage poorcar weather \n", + "rushingwaters new york city sandy hurricane damage poorcar weather \n", "\n", "\n", "http://t.co/SBVA8TrU #atlanticcity #sandy #hurricane\n", @@ -46390,7 +41664,7 @@ "No supero esta foto!!! :( #hurricane #sandy #wallstreet #newyork be safe plzzzz! http://t.co/rSJWldHP\n", "\n", "--------------------------------------------------------\n", - "supero foto hurricane sandy wallstreet newyork safe plzzzz \n", + "supero foto hurricane sandy wallstreet new york safe plzzzz \n", "\n", "\n", "Where that pic taken? RT @DaQueennnBee: My prayers \\355\\240\\275\\355\\271\\217 are with the ppl affected by #hurricane #sandy #godbless http://t.co/Pa4SBxnV\n", @@ -46399,16 +41673,10 @@ "pic taken \n", "\n", "\n", - "@OpieRadio: (Seaside Heights, NJ) http://t.co/LgnOEk1f (DB: HERE'S HOPING #SANDY CANCELS #JERSEYSHORE ) No more Sitch or Deena or Swoggie\n", - "\n", - "--------------------------------------------------------\n", - "seaside heights nj db hoping sandy cancels jerseyshore sitch deena swoggie \n", - "\n", - "\n", "Wow #Sandy imrickafox's photo http://t.co/mMKbkllA\n", "\n", "--------------------------------------------------------\n", - "wow sandy imrickafox photo \n", + "sandy imrickafox photo \n", "\n", "\n", "One thing worse than raining cats and dogs? Hailing taxis. Especially if they're these taxis: http://t.co/cXYdo9zQ #sandy\n", @@ -46420,31 +41688,31 @@ "#Sandy #NYC WTC Construction site flooding https://t.co/OJObE8IU\n", "\n", "--------------------------------------------------------\n", - "sandy nyc wtc construction site flooding \n", + "sandy new york city wtc construction site flooding \n", "\n", "\n", "#earth #hurricane #sandy #2012 http://t.co/eT8KpPEd\n", "\n", "--------------------------------------------------------\n", - "earth hurricane sandy 2012 \n", + "earth hurricane sandy012 \n", "\n", "\n", "Insane images of NYC #sandy http://t.co/pofBiCPN\n", "\n", "--------------------------------------------------------\n", - "insane images nyc sandy \n", + "insane images new york city sandy \n", "\n", "\n", "#Trampoline rentre à la maison, tu es bourré ! #sandy #usa #ouragan #trampoline http://t.co/9MHGxS1e\n", "\n", "--------------------------------------------------------\n", - "trampoline rentre à maison bourré sandy usa ouragan trampoline \n", + "trampoline rentrela maison bourré sandy usa ouragan trampoline \n", "\n", "\n", "NY right now !!! #sandy http://t.co/frEi8ukV\n", "\n", "--------------------------------------------------------\n", - "ny right sandy \n", + "new york right sandy \n", "\n", "\n", "#sandy #hurricane #prayers http://t.co/MHcWBthm\n", @@ -46456,7 +41724,7 @@ "First pic from #hurricane #sandy. #newyork #Brooklyn #flood #horrible. Taken by my friend Daniele. http://t.co/arlpCOv4\n", "\n", "--------------------------------------------------------\n", - "first pic hurricane sandy newyork brooklyn flood horrible taken friend daniele \n", + "first pic hurricane sandy new york brooklyn flood horrible taken friend daniele \n", "\n", "\n", "Seaside #hurricane #sandy #fu #seaside #beach #sad http://t.co/k3hToPNS\n", @@ -46474,13 +41742,13 @@ "My heart goes out to NYC today - picture courtesy of http://t.co/XfYW3Awy #sandy #nyc http://t.co/oNLABw88\n", "\n", "--------------------------------------------------------\n", - "heart goes nyc today picture courtesy sandy nyc \n", + "heart goes new york city today picture courtesy sandy new york city \n", "\n", "\n", "Mas del desastre http://t.co/NW4L7LDP H) Causa estragos #huracan #Sandy\"\n", "\n", "--------------------------------------------------------\n", - "mas desastre h causa estragos huracan sandy \n", + "desastre h causa estragos huracan sandy \n", "\n", "\n", "Can't believe these pics coming out of AC RT @twc_hurricane: Atlantic City under water http://t.co/YEMl5eUf #sandy\n", @@ -46492,13 +41760,13 @@ "East Village #Sandy #NYC http://t.co/Tm9dbpMx\n", "\n", "--------------------------------------------------------\n", - "east village sandy nyc \n", + "east village sandy new york city \n", "\n", "\n", "World Trade Center under water #sandy #hurracaine #storm #flood #instagram #nyc #emergency http://t.co/cHeLO2ej\n", "\n", "--------------------------------------------------------\n", - "world trade center water sandy hurracaine storm flood instagram nyc emergency \n", + "world trade center water sandy hurracaine storm flood instagram new york city emergency \n", "\n", "\n", "If you look closely at this photo of #Hurricane #Sandy, you can see my house. http://t.co/lpaYyKq4 #frankenstorm\n", @@ -46522,7 +41790,7 @@ "This could've been ur situation last night! Better safe than sorry. #Sandy was only whack to some of us. She http://t.co/q56wIk2c\n", "\n", "--------------------------------------------------------\n", - "could ur situation last night better safe sorry sandy whack us \n", + "could situation last night better safe sorry sandy whack us \n", "\n", "\n", "My hood. Sandy's coming for me! “@misterdisco: Scariest picture of #Sandy: Brooklyn Bridge Park, very much submerged. http://t.co/w9kn1B0W”\n", @@ -46546,7 +41814,7 @@ "Queens NYC... #sandy. http://t.co/hfy1f6xw\n", "\n", "--------------------------------------------------------\n", - "queens nyc sandy \n", + "queens new york city sandy \n", "\n", "\n", "Awesome usatoday's photo #sandy http://t.co/mPMBBJHB\n", @@ -46576,37 +41844,31 @@ "Una aseguradora va a estar muy triste. #Sandy #NYC http://t.co/fxCMby4Y vía @eduardo_g\n", "\n", "--------------------------------------------------------\n", - "aseguradora va triste sandy nyc vía \n", + "aseguradora va triste sandy new york city vía \n", "\n", "\n", "#newyork #yellow #cabs #sandy a true #heartbreak http://t.co/zGsBDihS\n", "\n", "--------------------------------------------------------\n", - "newyork yellow cabs sandy true heartbreak \n", + "new york yellow cabs sandy true heartbreak \n", "\n", "\n", "20Th street ave c #sandy #hurricanes #nyc #city #werd #real #OLABOLATV http://t.co/fYfSRaUs\n", "\n", "--------------------------------------------------------\n", - "20th street ave c sandy hurricanes nyc city real olabolatv \n", + "0th street ave sandy hurricanes new york city city real olabolatv \n", "\n", "\n", "#sandy #NYC manguititi como andas ???? http://t.co/W51uhvCq\n", "\n", "--------------------------------------------------------\n", - "sandy nyc manguititi andas \n", - "\n", - "\n", - "whoa \"@armitasunaryo: Sandy aftermath 😱 #repost #sandy be strong NYC 🙏😇 http://t.co/ufbHJ7Rk\n", - "\n", - "--------------------------------------------------------\n", - "whoa sandy aftermath repost sandy strong nyc \n", + "sandy new york city manguititi andas \n", "\n", "\n", "Shit got real #everglades or #newyorkcity #fuckthepolice #statefarm #sandy #hurricane http://t.co/px2TuQ52\n", "\n", "--------------------------------------------------------\n", - "shit got real everglades newyorkcity fuckthepolice statefarm sandy hurricane \n", + "shit got real everglades new yorkcity fuckthepolice statefarm sandy hurricane \n", "\n", "\n", "Praying that no one gets Hurts! RT @heykim: #Wow- #NJ Boardwalk #AtlanticCity http://t.co/aaVVwM3g h/t @Alex_Ogle @TheMatthewKeys #sandy\n", @@ -46615,22 +41877,16 @@ "praying one gets hurts \n", "\n", "\n", - "#Sandy was there :-( #NY http://t.co/2gv1T3Oz via @thecoolhunter\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "Damn pic of NY.... #pray #sandy #godbless http://t.co/mEtqBzH3\n", "\n", "--------------------------------------------------------\n", - "damn pic ny pray sandy godbless \n", + "damn pic new york pray sandy godbless \n", "\n", "\n", "Hoboken New Jersey. #Sandy 2012 http://t.co/V1SV6gRo\n", "\n", "--------------------------------------------------------\n", - "hoboken new jersey sandy 2012 \n", + "hoboken new jersey sandy012 \n", "\n", "\n", "AND WELCOME TO THE JERSEY SHORE. #sandy http://t.co/KjYQpY2t\n", @@ -46648,25 +41904,31 @@ "Water taxi #nyc #sandy http://t.co/4DUrrbW3\n", "\n", "--------------------------------------------------------\n", - "water taxi nyc sandy \n", + "water taxi new york city sandy \n", "\n", "\n", "3 mâts emporté par #Sandy http://t.co/RbSN0cBN\n", "\n", "--------------------------------------------------------\n", - "3 mâts emporté par sandy \n", + "mâts emporté sandy \n", "\n", "\n", "FDNY search & rescue @ 14 St & Ave C #eastvillage #manhattan is #underwater!! #sandy photo via @time http://t.co/t22sBH6z\n", "\n", "--------------------------------------------------------\n", - "fdny search rescue 14 st ave c eastvillage manhattan underwater sandy photo \n", - "\n", + "fdny search rescue 4 st ave eastvillage manhattan underwater sandy photo \n", "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "Wow terrible...Seaside #Sandy http://t.co/zhgVT0ro\n", "\n", "--------------------------------------------------------\n", - "wow terrible seaside sandy \n", + "terrible seaside sandy \n", "\n", "\n", "rivetingradiance's photo http://t.co/E561YIUs this is crazy what #sandy did\n", @@ -46681,22 +41943,10 @@ "dwyer mess sandy \n", "\n", "\n", - "#hurricane #sandy #nyc http://t.co/ZCZ9b4GJ\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", - "Crazy #Sandy http://t.co/pZ2GLPbO\n", - "\n", - "--------------------------------------------------------\n", - "crazy sandy \n", - "\n", - "\n", "#manhattan #newyorkcity #sandy http://t.co/lfFh4nvy” ODDIO GUARDATE COME SI STA RIDICENDO NEW YORK! AMERICA SIAMO CON VOI CE LA FARETE!!\n", "\n", "--------------------------------------------------------\n", - "manhattan newyorkcity sandy oddio guardate come si sta ridicendo new york america siamo voi ce farete \n", + "manhattan new yorkcity sandy oddio guardate come si sta ridicendo new york america siamo voi farete \n", "\n", "\n", "#Sandy overwhelmed the new #WTC site. http://t.co/8cIKbJzA\n", @@ -46708,25 +41958,25 @@ "#Sandy #US #NY http://t.co/6DytR2bi\n", "\n", "--------------------------------------------------------\n", - "sandy us ny \n", + "sandy us new york \n", "\n", "\n", "Wow... ammarseyadi's photo http://t.co/Vi1ncLcJ #Sandy\n", "\n", "--------------------------------------------------------\n", - "wow ammarseyadi photo sandy \n", + "ammarseyadi photo sandy \n", "\n", "\n", "#manhattan #ny #sandy http://t.co/XacKeXZI\n", "\n", "--------------------------------------------------------\n", - "manhattan ny sandy \n", + "manhattan new york sandy \n", "\n", "\n", "NYC under water #Sandy http://t.co/MYFULoU4\n", "\n", "--------------------------------------------------------\n", - "nyc water sandy \n", + "new york city water sandy \n", "\n", "\n", "mcintosh's photo http://t.co/plZs5VLv #instagram #sandy\n", @@ -46744,13 +41994,13 @@ "Stop. #newyork #nyc #sandy http://t.co/29hUu5vD\n", "\n", "--------------------------------------------------------\n", - "stop newyork nyc sandy \n", + "stop new york new york city sandy \n", "\n", "\n", "#nyc #14thStreet #sandy @ 14th Street http://t.co/4w6f2hHv\n", "\n", "--------------------------------------------------------\n", - "nyc 14thstreet sandy 14th street \n", + "nyc4thstreet sandy 4th street \n", "\n", "\n", "_thecoolhunter_'s photo http://t.co/AAbntD96 #flooding #cabs #sandy\n", @@ -46762,13 +42012,13 @@ "Seaside, NJ boardwalk. Gone. #sandy @ Seaside Boardwalk http://t.co/I1YNlZix\n", "\n", "--------------------------------------------------------\n", - "seaside nj boardwalk gone sandy seaside boardwalk \n", + "seaside new jersey boardwalk gone sandy seaside boardwalk \n", "\n", "\n", "Crazy! I'm still bugging #nyc #aftermath #sandy #cabs http://t.co/y8LXpTUQ\n", "\n", "--------------------------------------------------------\n", - "crazy still bugging nyc aftermath sandy cabs \n", + "crazy still bugging new york city aftermath sandy cabs \n", "\n", "\n", "What an incredible shot: (via @usatoday) http://t.co/QnDxH276 #Sandy\n", @@ -46780,7 +42030,7 @@ "Wow. usatoday's photo: http://t.co/kWZiFoL3 #sandy\n", "\n", "--------------------------------------------------------\n", - "wow usatoday photo sandy \n", + "usatoday photo sandy \n", "\n", "\n", "No wonder people are having a hard time getting a cab. #sandy \\nhttp://t.co/eCSDAYiN\n", @@ -46801,22 +42051,10 @@ "mmarzo photo sandy \n", "\n", "\n", - "o_O wow RT @EDuarteG: #Messy #Hurricane #Sandy #EastCoast #USA nasagoddard's photo http://t.co/cGgzb6UE\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "Flooded parking garage, #Sandy, financial district, NYC @usatoday's photo http://t.co/Yp0iwNG7\n", "\n", "--------------------------------------------------------\n", - "flooded parking garage sandy financial district nyc photo \n", - "\n", - "\n", - "Incredible! RT @NadiyaaAnd East Village #NYC #Sandy http://t.co/HZkRteuy\n", - "\n", - "--------------------------------------------------------\n", - "incredible \n", + "flooded parking garage sandy financial district new york city photo \n", "\n", "\n", "#sandy #twc #nbc http://t.co/CJ6fQrrZ\n", @@ -46828,7 +42066,7 @@ "Where I grew up is #destroyed #seaside #hights #casino #peir #hurricane #sandy #nj #myhome #nature #zombieap http://t.co/HrRJB8vp\n", "\n", "--------------------------------------------------------\n", - "grew destroyed seaside hights casino peir hurricane sandy nj myhome nature zombieap \n", + "grew destroyed seaside hights casino peir hurricane sandy new jersey myhome nature zombieap \n", "\n", "\n", "Awesome photo following #sandy http://t.co/3qeVcVav\n", @@ -46840,7 +42078,7 @@ "New York City taxis under water after #Sandy:\\nhttp://t.co/shywyPPe via bienglace\n", "\n", "--------------------------------------------------------\n", - "new york city taxis water sandy via bienglace \n", + "new york city taxis water sandy bienglace \n", "\n", "\n", "#sandy #hurricane from the Space... http://t.co/Yku2iTSl\n", @@ -46858,31 +42096,31 @@ "Goldman Sachs.. The 1 building with power. #Sandy http://t.co/BYyZ5ZbE\n", "\n", "--------------------------------------------------------\n", - "goldman sachs 1 building power sandy \n", + "goldman sachs building power sandy \n", "\n", "\n", "Surveillance video of a #newyorkcity subway tonight....flooded! #Sandy rages on. #BREAKING http://t.co/Jk0zPqLS\n", "\n", "--------------------------------------------------------\n", - "surveillance video newyorkcity subway tonight flooded sandy rages breaking \n", + "surveillance video new yorkcity subway tonight flooded sandy rages breaking \n", "\n", "\n", "#nyc after #sandy #superstorm blew through. All of our thoughts and prayers with those affected #pamoja #wea http://t.co/1D1xbdOX\n", "\n", "--------------------------------------------------------\n", - "nyc sandy superstorm blew thoughts prayers affected pamoja wea \n", + "new york city sandy superstorm blew thoughts prayers affected pamoja wea \n", "\n", "\n", "taxi sa NYC #Sandy http://t.co/BFB1mnR9\n", "\n", "--------------------------------------------------------\n", - "taxi sa nyc sandy \n", + "taxi new york city sandy \n", "\n", "\n", "On My Mama #Hurricanes Aint Nothing To Play With! #Lmao #Storm #Rain #Sandy #Funny #Lol #FL #Damn #Smh http://t.co/h1bFTtYu\n", "\n", "--------------------------------------------------------\n", - "mama hurricanes aint nothing play lmao storm rain sandy funny lol fl damn smh \n", + "mama hurricanes aint nothing play storm rain sandy funny fl damn \n", "\n", "\n", "A sea of yellow. http://t.co/e4fLSktT #Sandy\n", @@ -46894,7 +42132,7 @@ "Before and after, Jersey Shore. Via @krystalisabellaa #Sandy http://t.co/usGKqRH9\n", "\n", "--------------------------------------------------------\n", - "jersey shore via sandy \n", + "jersey shore sandy \n", "\n", "\n", "Lower Manhattan!! #SANDY #CRAZY #LIVELIFE http://t.co/71BRYIJJ\n", @@ -46906,13 +42144,13 @@ "#sandy #usa #eastcoast #2012 http://t.co/3XODqUOh\n", "\n", "--------------------------------------------------------\n", - "sandy usa eastcoast 2012 \n", + "sandy usa eastcoast012 \n", "\n", "\n", "#sandy #batterypark #Manhattan #NYC http://t.co/w1A8wjfu\n", "\n", "--------------------------------------------------------\n", - "sandy batterypark manhattan nyc \n", + "sandy batterypark manhattan new york city \n", "\n", "\n", "I dont think they wont be using this anymore #Sandy #IGotATreeOnMyHouse http://t.co/q5rByFCJ\n", @@ -46936,19 +42174,13 @@ "crazy shit! #NYC #Sandy http://t.co/3yVtjH82\n", "\n", "--------------------------------------------------------\n", - "crazy shit nyc sandy \n", + "crazy shit new york city sandy \n", "\n", "\n", "20th St Ave C Manhattan, NY! #Sandy http://t.co/b918Bb12\n", "\n", "--------------------------------------------------------\n", - "20th st ave c manhattan ny sandy \n", - "\n", - "\n", - "Casino pier #seaside #sandy http://t.co/NSkozjJ8\n", - "\n", - "--------------------------------------------------------\n", - "casino pier seaside sandy \n", + "0th st ave manhattan new york sandy \n", "\n", "\n", "Well that's a problem #hurricane #sandy http://t.co/srLTf9in\n", @@ -46960,7 +42192,7 @@ "The #Hudson #River has made #Hoboken, NJ, into one big pond! #sandy #NewJersey #Aftermath http://t.co/WhsmPOLI\n", "\n", "--------------------------------------------------------\n", - "hudson river made hoboken nj one big pond sandy newjersey aftermath \n", + "hudson river made hoboken new jersey one big pond sandy newjersey aftermath \n", "\n", "\n", "Que fuerte :s RT @sergiocarlo: #Sandy http://t.co/gIXwpCbI\n", @@ -46978,7 +42210,7 @@ "#sandy #nyc #OLABOLATV #damage http://t.co/xeuCWmQm\n", "\n", "--------------------------------------------------------\n", - "sandy nyc olabolatv damage \n", + "sandy new york city olabolatv damage \n", "\n", "\n", "#Sandy be crazy http://t.co/PYDFDZkb\n", @@ -46996,7 +42228,7 @@ "This crazy !!! #storm #flood #sandy @ 460 West 34th Street New York NY 10001 http://t.co/Gvc0U8W8\n", "\n", "--------------------------------------------------------\n", - "crazy storm flood sandy 460 west 34th street new york ny 10001 \n", + "crazy storm flood sandy west4th street new york ny0001 \n", "\n", "\n", "Seaside is done #Hurricane #Sandy #Disaster http://t.co/7CRDvquT\n", @@ -47008,19 +42240,19 @@ "#FDR #Sandy #NYC #Hurricane http://t.co/op31ipJX\n", "\n", "--------------------------------------------------------\n", - "fdr sandy nyc hurricane \n", + "fdr sandy new york city hurricane \n", "\n", "\n", "SMH #SANDY WTC CONSTRUCTION SITE FLOODED http://t.co/Dd1RLNyU\n", "\n", "--------------------------------------------------------\n", - "smh sandy wtc construction site flooded \n", + "sandy wtc construction site flooded \n", "\n", "\n", "A building defaced on 14th St NYC... #sandy WOW❗❗❗ http://t.co/AgonkqyS\n", "\n", "--------------------------------------------------------\n", - "building defaced 14th st nyc sandy wow \n", + "building defaced on4th st new york city sandy \n", "\n", "\n", "“@mediatwit: New York City taxis under water after #Sandy:\\nhttp://t.co/XfeDloO1 via bienglace” Gonna be tough to catch a cab!\n", @@ -47032,7 +42264,7 @@ "And then NYC followed suit...http://t.co/BtGTWutL #sandy\n", "\n", "--------------------------------------------------------\n", - "nyc followed suit sandy \n", + "new york city followed suit sandy \n", "\n", "\n", "#SeasideHeights Jersey Shore :( weh @sn00ki @djpaulyD #sandy #rip http://t.co/zGBrVyss\n", @@ -47050,7 +42282,7 @@ "Brooklyn Bridge #New #York #City #NYC #Brooklyn #Bridge #Sea #Hudson #Hurricane #sandy http://t.co/vXzpinXC\n", "\n", "--------------------------------------------------------\n", - "brooklyn bridge new york city nyc brooklyn bridge hudson hurricane sandy \n", + "brooklyn bridge new york city new york city brooklyn bridge hudson hurricane sandy \n", "\n", "\n", "Atlantic City: Underwater: http://t.co/8Jy0dMqW #sandy\n", @@ -47068,7 +42300,7 @@ "xdrewlevinsonx's photo http://t.co/mi007dyx seaside nj #sandy\n", "\n", "--------------------------------------------------------\n", - "xdrewlevinsonx photo seaside nj sandy \n", + "xdrewlevinsonx photo seaside new jersey sandy \n", "\n", "\n", "Всемирный торговый центр #Sandy \\n\\nkristinadeclue's photo http://t.co/4wCjCvsU\n", @@ -47080,13 +42312,13 @@ "Another crazy #sandy NYC flooding photo. RT @FusionRockRadio: RT @time's photo http://t.co/6COsBw0o”\n", "\n", "--------------------------------------------------------\n", - "another crazy sandy nyc flooding photo \n", + "another crazy sandy new york city flooding photo \n", "\n", "\n", "“@aaalshaikh: #NYC #sandy http://t.co/pPWlmEin”\\n\\nصورة توضح مستوى المياه بعد #إعصار_ساندي\n", "\n", "--------------------------------------------------------\n", - "صورة توضح مستوى المياه إعصار ساندي \n", + "صورة توضح مستوى المياه إعصارساندي \n", "\n", "\n", "Scariest picture I've seen so far of #Sandy: Brooklyn Bridge Park, very much submerged. http://t.co/TXn5Ca2q\n", @@ -47095,12 +42327,6 @@ "scariest picture seen far sandy brooklyn bridge park much submerged \n", "\n", "\n", - "oh #sandy http://t.co/k0WZ2COt\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", "Otra gran estampa del huracán #Sandy http://t.co/ZG6QnXAZ\n", "\n", "--------------------------------------------------------\n", @@ -47116,7 +42342,7 @@ "Ohh Nooo #Sandy needs to chill . http://t.co/caYztUyI\n", "\n", "--------------------------------------------------------\n", - "ohh nooo sandy needs chill \n", + "nooo sandy needs chill \n", "\n", "\n", "#cmbk #storm #sandy #yellow #cab http://t.co/U5gqvzjN\n", @@ -47128,7 +42354,7 @@ "Wow!!! World Trade Center Site is flooded. #sandy #nyc http://t.co/BrJ9KjJT\n", "\n", "--------------------------------------------------------\n", - "wow world trade center site flooded sandy nyc \n", + "world trade center site flooded sandy new york city \n", "\n", "\n", "The day after tomorrow. #sandy #uragano #apocalisse #usa #catastrofe #speechless http://t.co/aAXq6g45\n", @@ -47146,7 +42372,7 @@ "#taxi #cars #underwater #hurricane #Sandy #colors #iphoneonly #Facebook #newyork #NYC #FEMA #discovery #d http://t.co/Owbtlw8Z\n", "\n", "--------------------------------------------------------\n", - "taxi cars underwater hurricane sandy colors iphoneonly facebook newyork nyc fema discovery \n", + "taxi cars underwater hurricane sandy colors iphoneonly facebook new york new york city fema discovery \n", "\n", "\n", "Tell us again Republicans how union firefighters are overpaid? Pic: http://t.co/W7m5jSLF #Sandy rt @jljacobson @devbost\n", @@ -47158,7 +42384,7 @@ "Midtown Tunnel, Anonymous Photo #Sandy #nyc #Flood #Frankenstorm http://t.co/Ucw4EeP9\n", "\n", "--------------------------------------------------------\n", - "midtown tunnel anonymous photo sandy nyc flood frankenstorm \n", + "midtown tunnel anonymous photo sandy new york city flood frankenstorm \n", "\n", "\n", "Crazy pic of a parking lit of taxis thst got hit by #Sandy peterdavisnyc's photo http://t.co/nIqkGLvk\n", @@ -47167,12 +42393,6 @@ "crazy pic parking lit taxis thst got hit sandy peterdavisnyc photo \n", "\n", "\n", - "Ohhhh snap lol #hurricane #sandy http://t.co/P3SdX1V7\n", - "\n", - "--------------------------------------------------------\n", - "ohhhh snap lol hurricane sandy \n", - "\n", - "\n", "Flooding at the site of the WTC: https://t.co/KNMyOn9C #Sandy\n", "\n", "--------------------------------------------------------\n", @@ -47182,13 +42402,7 @@ "Wow. All those yellow cabs... #sandy #nyc http://t.co/km6PvlSb\n", "\n", "--------------------------------------------------------\n", - "wow yellow cabs sandy nyc \n", - "\n", - "\n", - "Sandy = no joke. RT @Newyorkist: Atlantic City: Underwater: http://t.co/Co0e3TCl #sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy joke \n", + "yellow cabs sandy new york city \n", "\n", "\n", "View Atlantic City under water!RT @newyorkist: Atlantic City: Underwater: http://t.co/EqmtVzFe #sandy\n", @@ -47203,12 +42417,6 @@ "crazy rain brooklyn sandy \n", "\n", "\n", - "What a picture! RT @johnNBCLA: #USCG released this photo of a sinking HMS Bounty today @nbcla #Sandy http://t.co/fyQ5DiiP\n", - "\n", - "--------------------------------------------------------\n", - "picture \n", - "\n", - "\n", "#USCG released this photo of a sinking HMS Bounty today @nbcla #Sandy http://t.co/UptvTaFd\n", "\n", "--------------------------------------------------------\n", @@ -47218,19 +42426,19 @@ "Image of ambulances waiting at NYU medical center to evacute patients #sandy #nyu #nyc #fdny http://t.co/VnQuVo8I\n", "\n", "--------------------------------------------------------\n", - "image ambulances waiting nyu medical center evacute patients sandy nyu nyc fdny \n", + "image ambulances waiting nyu medical center evacute patients sandy nyu new york city fdny \n", "\n", "\n", "#صورة توضح الفيضان في احدى شوارع نيويورك شارع ٣٤ #إعصار_ساندي “#34th #nyc #flood #hurricane #sandy\\nby joepas914 \\nhttp://t.co/R2gpNptm\n", "\n", "--------------------------------------------------------\n", - "صورة توضح الفيضان احدى شوارع نيويورك شارع ٣٤ إعصار ساندي 34th nyc flood hurricane sandy joepas914 \n", + "صورة توضح الفيضان احدى شوارع نيويورك شارع٤ إعصارساندي 4th new york city flood hurricane sandy joepas914 \n", "\n", "\n", "Breaking: Water Floods WTC Construction Site #hurricane #sandy #nyc #wtc http://t.co/SGpxabUq (via @NewYorkPost)\n", "\n", "--------------------------------------------------------\n", - "breaking water floods wtc construction site hurricane sandy nyc wtc \n", + "breaking water floods wtc construction site hurricane sandy new york city wtc \n", "\n", "\n", "#waterworld #nycflood2012 #sandy #hurricane http://t.co/51g2JwRM\n", @@ -47248,7 +42456,7 @@ "تكاسي تحت المياه بعد اعصار ساندي #غرد_بصورة \\nRT @LauraLoo23: Taxis underwater- Hoboken #Sandy http://t.co/EjgdvEu1\n", "\n", "--------------------------------------------------------\n", - "تكاسي تحت المياه اعصار ساندي غرد بصورة \n", + "تكاسي تحت المياه اعصار ساندي غردبصورة \n", "\n", "\n", "Bye Bye Seaside... #Sandy http://t.co/RaFuNTYG\n", @@ -47266,19 +42474,13 @@ "NYC cabs under water. #Sandy http://t.co/ZWysQquK\n", "\n", "--------------------------------------------------------\n", - "nyc cabs water sandy \n", + "new york city cabs water sandy \n", "\n", "\n", "Shit crazy out here #Sandy #NewYork by iamjustshaka http://t.co/a0CJxbUE\n", "\n", "--------------------------------------------------------\n", - "shit crazy sandy newyork iamjustshaka \n", - "\n", - "\n", - "Fuck me #sandy http://t.co/zxSyt5C7\n", - "\n", - "--------------------------------------------------------\n", - "fuck sandy \n", + "shit crazy sandy new york iamjustshaka \n", "\n", "\n", "Organized chaos? #stumbleupon #sandy http://t.co/6S74IGhu\n", @@ -47296,37 +42498,31 @@ "Zona Cero #NY #Sandy #Noticias http://t.co/XOVrcUv6\n", "\n", "--------------------------------------------------------\n", - "zona cero ny sandy noticias \n", + "zona cero new york sandy noticias \n", "\n", "\n", "Instagram turned up this photo of 20th St. and Ave C looking seriously flooded: http://t.co/IMUvprWp #Sandy\n", "\n", "--------------------------------------------------------\n", - "instagram turned photo 20th st ave c looking seriously flooded sandy \n", + "instagram turned photo of0th st ave looking seriously flooded sandy \n", "\n", "\n", "East village!!! Crazy shit #newyorkcity #sandy http://t.co/CUN13Pqi\n", "\n", "--------------------------------------------------------\n", - "east village crazy shit newyorkcity sandy \n", - "\n", - "\n", - "Best #Sandy photo yet RT @michaelhayes Roller coaster swept out to sea (Seaside Heights, NJ) http://t.co/cqNYDnSQ\n", - "\n", - "--------------------------------------------------------\n", - "best sandy photo yet \n", + "east village crazy shit new yorkcity sandy \n", "\n", "\n", "esto es un rio no una calle en NYC #sandy http://t.co/JZCx4g2a\n", "\n", "--------------------------------------------------------\n", - "rio calle nyc sandy \n", + "rio calle new york city sandy \n", "\n", "\n", "Yikes pic of #nyc damage #sandy #mta http://t.co/mFdf9L1v\n", "\n", "--------------------------------------------------------\n", - "yikes pic nyc damage sandy mta \n", + "pic new york city damage sandy mta \n", "\n", "\n", "Tur att barnen inte var kvar i den #sandy http://t.co/Cws9vpK1\n", @@ -47350,19 +42546,13 @@ "_thecoolhunter_'s photo http://t.co/S2IOMArz #sandy #NYC #hurricane\n", "\n", "--------------------------------------------------------\n", - "thecoolhunter photo sandy nyc hurricane \n", + "thecoolhunter photo sandy new york city hurricane \n", "\n", "\n", "MT @Hoeboma As expected, the boardwalk gone uptown #Atlantic City, http://t.co/vr6Ixz8p #Sandy #njwx #nywx #hurricane\n", "\n", "--------------------------------------------------------\n", - "expected boardwalk gone uptown atlantic city sandy njwx nywx hurricane \n", - "\n", - "\n", - "usatoday's photo http://t.co/7Q9i80YM wow... #sandy\n", - "\n", - "--------------------------------------------------------\n", - "usatoday photo wow sandy \n", + "mt expected boardwalk gone uptown atlantic city sandy njwx nywx hurricane \n", "\n", "\n", "I GOT A TRAMPOLINE ON MY HOUSE! #Sandy http://t.co/S4mdsbwD\n", @@ -47392,7 +42582,7 @@ "Wow. Can't believe this happened.. So sad! #NYC #Sandy http://t.co/16iDwD39\n", "\n", "--------------------------------------------------------\n", - "wow believe happened sad nyc sandy \n", + "believe happened sad new york city sandy \n", "\n", "\n", "Atlantic City --> RT @hoeboma: Damn the boardwalk gone uptown http://t.co/eP84xGEZ #Sandy\n", @@ -47404,13 +42594,13 @@ "NY taxis at La Guardia Airport via @carlosmelia #Sandy http://t.co/dcQqoXVa @taxioviedo @jordimusoy @taxisigualada @zaviev\n", "\n", "--------------------------------------------------------\n", - "ny taxis guardia airport sandy \n", + "new york taxis guardia airport sandy \n", "\n", "\n", "jcruz123's photo is CRAZY! I can't believe NYC is under water. #Sandy http://t.co/hrJ5v5tx\n", "\n", "--------------------------------------------------------\n", - "jcruz123 photo crazy believe nyc water sandy \n", + "jcruz123 photo crazy believe new york city water sandy \n", "\n", "\n", "Water... #sandy #screengrabs http://t.co/2rxuY4tV\n", @@ -47428,13 +42618,7 @@ "After a hurricane, comes a rainbow. #manhattan #hurricane #sandy #rainbow #newyork #forealz http://t.co/Ikwpn3NS\n", "\n", "--------------------------------------------------------\n", - "hurricane comes rainbow manhattan hurricane sandy rainbow newyork forealz \n", - "\n", - "\n", - "so scary #sandy http://t.co/EtlvXSD6\n", - "\n", - "--------------------------------------------------------\n", - "scary sandy \n", + "hurricane comes rainbow manhattan hurricane sandy rainbow new york forealz \n", "\n", "\n", "Lower Manhattan #sandy http://t.co/PDODNmIk\n", @@ -47446,7 +42630,7 @@ "What is happening to my city?! #nyc #underwater #sandy #holyhurricane http://t.co/piFsrnqh\n", "\n", "--------------------------------------------------------\n", - "happening city nyc underwater sandy holyhurricane \n", + "happening city new york city underwater sandy holyhurricane \n", "\n", "\n", "Flooded Cabs #sandy #frankenstorm http://t.co/2BvkvBzh\n", @@ -47458,7 +42642,7 @@ "#NYC #Sandy #taxicab http://t.co/x91m8FAK\n", "\n", "--------------------------------------------------------\n", - "nyc sandy taxicab \n", + "new york city sandy taxicab \n", "\n", "\n", "Can't believe #SeasideHeights coaster. #sandy http://t.co/INcmP4MO\n", @@ -47485,12 +42669,6 @@ "doorsixteen photo bad news sandy sandy \n", "\n", "\n", - "nasagoddard's photo http://t.co/jj3gXUQl #sandy\n", - "\n", - "--------------------------------------------------------\n", - "nasagoddard photo sandy \n", - "\n", - "\n", "They paved paradise and put up a parking lot. #sandy http://t.co/YQdAjuPY\n", "\n", "--------------------------------------------------------\n", @@ -47500,7 +42678,7 @@ "прибрежные улицы Атлантик-Сити. 200 км до Нью-Йорка http://t.co/vtbJsyf6 #Sandy #NJ\n", "\n", "--------------------------------------------------------\n", - "прибрежные улицы атлантик сити 200 км нью йорка sandy nj \n", + "прибрежные улицы атлантик сити км нью йорка sandy nj \n", "\n", "\n", "http://t.co/xLbv5d39 H) Causa estragos #huracan #Sandy\n", @@ -47524,19 +42702,19 @@ "NYC yellow cabs! #Sandy http://t.co/gp38ArfA\n", "\n", "--------------------------------------------------------\n", - "nyc yellow cabs sandy \n", + "new york city yellow cabs sandy \n", "\n", "\n", "omg ! #sandy #hurricane #trampoline #stuck #crazy #wow #damn http://t.co/0m7hMoU7\n", "\n", "--------------------------------------------------------\n", - "omg sandy hurricane trampoline stuck crazy wow damn \n", + "sandy hurricane trampoline stuck crazy damn \n", "\n", "\n", "I'm shocked that the East Village was flooded that badly, wow. #sandy #nyc http://t.co/mQbUelZH\n", "\n", "--------------------------------------------------------\n", - "shocked east village flooded badly wow sandy nyc \n", + "shocked east village flooded badly sandy new york city \n", "\n", "\n", "Woah #Sandy! RT @jonahlupton: Crazy picture of the day (from my friend in NJ) http://t.co/vJEjZprd\n", @@ -47548,7 +42726,7 @@ "Lower East Side NYC. Keep all those who have been affected by #sandy in your thoughts and prayers. http://t.co/7vnoJdfg\n", "\n", "--------------------------------------------------------\n", - "lower east side nyc keep affected sandy thoughts prayers \n", + "lower east side new york city keep affected sandy thoughts prayers \n", "\n", "\n", "@dgyog Holy Crap! This is in Chelsea! RT@KIKECALVO Live from NYC: 8th Avenue where building facade collapses http://t.co/8y7lNDY7 #sandy\n", @@ -47560,19 +42738,19 @@ "Parking garage in NYC financial district #Sandy via @USAToday http://t.co/hSBTGzGT\n", "\n", "--------------------------------------------------------\n", - "parking garage nyc financial district sandy \n", + "parking garage new york city financial district sandy \n", "\n", "\n", "Hahahhaha one of the pics from the news websites, sandy sucks but this is pretty funny! Taken in milford abo http://t.co/nKJ4QY3Q\n", "\n", "--------------------------------------------------------\n", - "hahahhaha one pics news websites sandy sucks pretty funny taken milford abo \n", + "hahahone pics news websites sandy sucks pretty funny taken milford abo \n", "\n", "\n", "20th St & Ave C - Hang in there #sandy http://t.co/Vvo0Vluy http://t.co/xeAek3Ur\n", "\n", "--------------------------------------------------------\n", - "20th st ave c hang sandy \n", + "0th st ave hang sandy \n", "\n", "\n", "#Sandy she's a beast in the mornings.. http://t.co/5LjhZfsx\n", @@ -47584,7 +42762,7 @@ "Water pouring in the NYC subway. Prayers for #newyork #eastcoast #sandystorm #hurricane #fb http://t.co/jwgbSdUP\n", "\n", "--------------------------------------------------------\n", - "water pouring nyc subway prayers newyork eastcoast sandystorm hurricane fb \n", + "water pouring new york city subway prayers new york eastcoast sandystorm hurricane fb \n", "\n", "\n", "The photos that @time has been sharing of #sandy are among my favorites to follow. You? http://t.co/ippUbIE1\n", @@ -47608,7 +42786,7 @@ "Funtown Pier in #seaside is gone., #sandy #nj #jerseyshore http://t.co/VShl7M7R\n", "\n", "--------------------------------------------------------\n", - "funtown pier seaside gone sandy nj jerseyshore \n", + "funtown pier seaside gone sandy new jersey jerseyshore \n", "\n", "\n", "Hang in there! #sandy http://t.co/kQtGmEui\n", @@ -47626,7 +42804,7 @@ "I was there yesterday and everything was normal. I guess anything can happen in a day. #hurricane #NYC http://t.co/lX0NamDv\n", "\n", "--------------------------------------------------------\n", - "yesterday everything normal guess anything happen day hurricane nyc \n", + "yesterday everything normal guess anything happen day hurricane new york city \n", "\n", "\n", "From East to west village the water damage of #Sandy http://t.co/Fs8iSAe1\n", @@ -47644,7 +42822,7 @@ "HURRICANE DESTRUCTION: thanks to my Twitter family for sharing. This is Ave C & 8th street in NYC! Evacuatio http://t.co/lAm4Zh5F\n", "\n", "--------------------------------------------------------\n", - "hurricane destruction thanks twitter family sharing ave c 8th street nyc evacuatio \n", + "hurricane destruction thanks twitter family sharing ave street new york city evacuatio \n", "\n", "\n", "Least fun trampoline, thanks to #sandy “@geniousmac: miri_4_president's photo http://t.co/QkGZjzPU wow!! Trampoline in the power lines :o”\n", @@ -47656,13 +42834,13 @@ "Deadly #floods in Red-hook #Brooklyn #NewYork.. #Hurricane #Sandy already on the roll. #Lord watch over us h http://t.co/Lo0CDKYb\n", "\n", "--------------------------------------------------------\n", - "deadly floods red hook brooklyn newyork hurricane sandy already roll lord watch us h \n", + "deadly floods red hook brooklyn new york hurricane sandy already roll lord watch us h \n", "\n", "\n", "East Village NYC - this is unreal! My heart goes out to all those affected by #sandy #mothernature #flooding http://t.co/fZK3pqYh\n", "\n", "--------------------------------------------------------\n", - "east village nyc unreal heart goes affected sandy mothernature flooding \n", + "east village new york city unreal heart goes affected sandy mothernature flooding \n", "\n", "\n", "Crazy shot from @thecoolhunter of cabs in a car park after #sandy http://t.co/IGyJ6FGA\n", @@ -47680,13 +42858,13 @@ "Beautiful. MT \"@GalleryBooks Hope ur all safe & sound. Post #Sandy rainbow in nyc courtesy of @atrandom @kurtdietrich http://t.co/M0Xk5zMZ\"\n", "\n", "--------------------------------------------------------\n", - "beautiful hope ur safe sound post sandy rainbow nyc courtesy \n", + "beautiful mt hope safe sound post sandy rainbow new york city courtesy \n", "\n", "\n", "Tumblr makes pictures tell bigger stories then words. Found this pic flying around in cyberspace http://t.co/M8fpXy10 #Nyc #Sandy #Cab\n", "\n", "--------------------------------------------------------\n", - "tumblr makes pictures tell bigger stories words found pic flying around cyberspace nyc sandy cab \n", + "tumblr makes pictures tell bigger stories words found pic flying around cyberspace new york city sandy cab \n", "\n", "\n", "Early this morning a Double Rainbow in the middle of Manhattan... I believe in the mist of this Sandy Storm- http://t.co/H4UkCL9o\n", @@ -47710,13 +42888,13 @@ "HURRICANE DESTRUCTION: Thanks for sharing @ATWCurls 20th street in Manhattan.... I never knew you c http://t.co/kqAT7tLB\n", "\n", "--------------------------------------------------------\n", - "hurricane destruction thanks sharing 20th street manhattan never knew c \n", + "hurricane destruction thanks sharing0th street manhattan never knew \n", "\n", "\n", "Trying to keep track of #sandy and thinking about all my fam and friends in NY. mrsdquey delidel324 short http://t.co/uc6o2FjN\n", "\n", "--------------------------------------------------------\n", - "trying keep track sandy thinking fam friends ny mrsdquey delidel324 short \n", + "trying keep track sandy thinking fam friends new york mrsdquey delidel324 short \n", "\n", "\n", "AC not looking good pre-storm. Parts of the boardwalk washed away. #Sandy http://t.co/t5v45DMz\n", @@ -47728,7 +42906,7 @@ "Street flooding in #NYC during #Sandy >> karamiranduh's photo http://t.co/DSDfdcwJ\n", "\n", "--------------------------------------------------------\n", - "street flooding nyc sandy greater greater karamiranduh photo \n", + "street flooding new york city sandy karamiranduh photo \n", "\n", "\n", "#sandy is above the law http://t.co/QtoSRKBS\n", @@ -47740,7 +42918,7 @@ "My equivalent of the \"1,000 lawyers\" joke. #sandy http://t.co/eR2cbTsY\n", "\n", "--------------------------------------------------------\n", - "equivalent 1 000 lawyers joke sandy \n", + "equivalent lawyers joke sandy \n", "\n", "\n", "#Sandy damage in the east village last night. Thankfully floods have subsided. http://t.co/vo84aDyr\n", @@ -47770,7 +42948,7 @@ "Holy moly #sandy swamp in NYC http://t.co/fEqHQL0F\n", "\n", "--------------------------------------------------------\n", - "holy moly sandy swamp nyc \n", + "holy moly sandy swamp new york city \n", "\n", "\n", "HURRICANE DESTRUCTION: thanks to my social media family for sharing! The carousel in the Park underneath th http://t.co/fsug1uIT\n", @@ -47800,7 +42978,7 @@ "6abc news just put this up, in Connecticut ,the winds blew the trampoline and it got stuck #crazy #hurricane http://t.co/spNzms6H\n", "\n", "--------------------------------------------------------\n", - "6abc news put connecticut winds blew trampoline got stuck crazy hurricane \n", + "news put connecticut winds blew trampoline got stuck crazy hurricane \n", "\n", "\n", "#lyinMitt strikes again. Romney in June: We don’t need more firefighters http://t.co/ZiVjue4N FDNY tonight: http://t.co/es4cLIHG #Sandy\n", @@ -47836,25 +43014,25 @@ "FDR Parkway in NYC #prayfortheeastcoast #sandy http://t.co/SzPUfa43\n", "\n", "--------------------------------------------------------\n", - "fdr parkway nyc prayfortheeastcoast sandy \n", + "fdr parkway new york city prayfortheeastcoast sandy \n", "\n", "\n", "Lot full of yellow cabs in NJ #Smh #Sandy http://t.co/7UBkNC8b\n", "\n", "--------------------------------------------------------\n", - "lot full yellow cabs nj smh sandy \n", + "lot full yellow cabs new jersey sandy \n", "\n", "\n", "My NY friend sent this pic to me last night. #Manhattan #Sandy #PrayersUp http://t.co/2DkH8533\n", "\n", "--------------------------------------------------------\n", - "ny friend sent pic last night manhattan sandy prayersup \n", + "new york friend sent pic last night manhattan sandy prayersup \n", "\n", "\n", "#repost of taxi cab parking lot in NYC from @usatoday. Oh. Em. Gee. #sandy http://t.co/9VhdPoam\n", "\n", "--------------------------------------------------------\n", - "repost taxi cab parking lot nyc oh em gee sandy \n", + "repost taxi cab parking lot new york city gee sandy \n", "\n", "\n", "“@Butler_Speaks: #Sandy in NY... http://t.co/0JTkaGgC” damn that's a crazy pic\n", @@ -47878,7 +43056,7 @@ "NY Cabs Depo merged in water #news #sandy #nyc #live http://t.co/SKazWeT9\n", "\n", "--------------------------------------------------------\n", - "ny cabs depo merged water news sandy nyc live \n", + "new york cabs depo merged water news sandy new york city live \n", "\n", "\n", "Thoughts/Prayers to everyone affected by #Sandy & all the linemen & women working to restore power #Photo #Hoboken http://t.co/7814YVyS\n", @@ -47890,19 +43068,19 @@ "Omg new York, this is sad. May God have mercy. #sandy http://t.co/1ELFQu68\n", "\n", "--------------------------------------------------------\n", - "omg new york sad may god mercy sandy \n", + "new york sad may god mercy sandy \n", "\n", "\n", "This is Crazy! Lower East Side Manhatan! Borrowed The Pic #Sandy2012 #HurricaneSandy http://t.co/TaNOtQd7\n", "\n", "--------------------------------------------------------\n", - "crazy lower east side manhatan borrowed pic sandy2012 hurricanesandy \n", + "crazy lower east side manhatan borrowed pic sandy2012 hurricane sandy \n", "\n", "\n", "Praying everyone and my family downstate stays safe during the storm #Sandy #NYC http://t.co/tISz04ES\n", "\n", "--------------------------------------------------------\n", - "praying everyone family downstate stays safe storm sandy nyc \n", + "praying everyone family downstate stays safe storm sandy new york city \n", "\n", "\n", "Thanks #sandy my dreams of visiting the #Jerseyshore are now crushed! Prayers to all those affected by this http://t.co/Qj56g05W\n", @@ -47920,7 +43098,7 @@ "20th St & Ave C in Manhattan #Sandy http://t.co/8lmtYqCj\n", "\n", "--------------------------------------------------------\n", - "20th st ave c manhattan sandy \n", + "0th st ave manhattan sandy \n", "\n", "\n", "Terrifying flooding in the east village, my old neighborhood. http://t.co/BbFcsUYZ #sandy #nyc\n", @@ -47932,13 +43110,13 @@ "On the ground in Seaside Heights (via Brian Thompson, NBC) http://t.co/7nt1iJ2t #Sandy\n", "\n", "--------------------------------------------------------\n", - "ground seaside heights via brian thompson nbc sandy \n", + "ground seaside heights brian thompson nbc sandy \n", "\n", "\n", "#SANDY FUCKED SHIT UP #GODBLESS THOSE WHO PAST IN HER WRATH #O_K http://t.co/ATfcQmbZ\n", "\n", "--------------------------------------------------------\n", - "sandy fucked shit godbless past wrath k \n", + "sandy fucked shit godbless past wrath ok \n", "\n", "\n", "The Boardwalk is gone!!! 😳😳😳😳😳😳 #Sandy #AreYouABelieverYet http://t.co/y89oJi34\n", @@ -47950,13 +43128,13 @@ "This is crazy New York. Even in a hurricane, traffic is still heavy. #picoftheday #newyork #Sandy http://t.co/bOO3lHt9\n", "\n", "--------------------------------------------------------\n", - "crazy new york even hurricane traffic still heavy picoftheday newyork sandy \n", + "crazy new york even hurricane traffic still heavy picoftheday new york sandy \n", "\n", "\n", "The broadwalk in Atlantic City NJ are washed away 😱😨 #omg #sandy #Atlanticcity http://t.co/kLKQyqt1\n", "\n", "--------------------------------------------------------\n", - "broadwalk atlantic city nj washed away omg sandy atlanticcity \n", + "broadwalk atlantic city new jersey washed away sandy atlanticcity \n", "\n", "\n", "Picture from #NASA of #Hurricane #sandy over the east coast USA. Good luck my east coast peeps. Looks like http://t.co/7pxneeyV\n", @@ -47968,19 +43146,13 @@ "#Sandy in Brooklyn. wow. http://t.co/nkE6Cz8w\n", "\n", "--------------------------------------------------------\n", - "sandy brooklyn wow \n", - "\n", - "\n", - "“@MrAnthonyYoung E5th in lower Manhattan !!! #flooding #Sandy #storm #sandy2012 #water #bacon #pigs #nypd http://t.co/2tJTLp2x”\n", - "\n", - "--------------------------------------------------------\n", - "e5th lower manhattan flooding sandy storm sandy2012 water bacon pigs nypd \n", + "sandy brooklyn \n", "\n", "\n", "Omfg! Ave. C Lower Astride is drowned! Strong stench of diesel in the air! #Sandy #NYC http://t.co/ILbokRHU\n", "\n", "--------------------------------------------------------\n", - "omfg ave c lower astride drowned strong stench diesel air sandy nyc \n", + "ave lower astride drowned strong stench diesel air sandy new york city \n", "\n", "\n", "One of the craziest photos I've seen from #Sandy http://t.co/kffv2Hys\n", @@ -47998,19 +43170,19 @@ "Got real up in nyc #sandy #october2012 #flood #nyc http://t.co/WNp8CFR6\n", "\n", "--------------------------------------------------------\n", - "got real nyc sandy october2012 flood nyc \n", + "got real new york city sandy october2012 flood new york city \n", "\n", "\n", "A double rainbow touches down in Manhattan this morning, signaling an end to the #Frankenstorm #Sandy #NYC P http://t.co/8fQ53aWM\n", "\n", "--------------------------------------------------------\n", - "double rainbow touches manhattan morning signaling end frankenstorm sandy nyc p \n", + "double rainbow touches manhattan morning signaling end frankenstorm sandy new york city p \n", "\n", "\n", "I used to ride this roller coaster when I was kid. Funtown Pier in Seaside Heights, NJ is practically gone. #Sandy http://t.co/0j5ngYHX\n", "\n", "--------------------------------------------------------\n", - "used ride roller coaster kid funtown pier seaside heights nj practically gone sandy \n", + "used ride roller coaster kid funtown pier seaside heights new jersey practically gone sandy \n", "\n", "\n", "Firefighter heroes in a dramatic #Sandy rescue photo. http://t.co/gxZbOTuI\n", @@ -48028,13 +43200,13 @@ "Apparently it takes a hurricane to fix NYC traffic. RT @jimmyfallon Here comes the sun! #NYC @ 30 Rockefeller Plaza http://t.co/dlKAKxAj\n", "\n", "--------------------------------------------------------\n", - "apparently takes hurricane fix nyc traffic \n", + "apparently takes hurricane fix new york city traffic \n", "\n", "\n", "This is seaside pier in NJ #destruction #sandy #hurricane http://t.co/kmCTbyDZ\n", "\n", "--------------------------------------------------------\n", - "seaside pier nj destruction sandy hurricane \n", + "seaside pier new jersey destruction sandy hurricane \n", "\n", "\n", "I don't know which one is worse.. #Sandy http://t.co/eyP6pZWs https://t.co/wyRenpo9 http://t.co/Qv5uUxBI https://t.co/A0q85fzQ #Scaryassshit\n", @@ -48052,7 +43224,7 @@ "Facade of 92 8th Ave. building in lower Manhattan has collapsed. #sandy #NYC http://t.co/adCH1p2F\n", "\n", "--------------------------------------------------------\n", - "facade 92 8th ave building lower manhattan collapsed sandy nyc \n", + "facade of2 ave building lower manhattan collapsed sandy new york city \n", "\n", "\n", "Just saw this photo on twitter. #Sandy flooding the World Trade Center construction site. I http://t.co/TZ02FFZs\n", @@ -48064,13 +43236,13 @@ "So this was the rollercoaster in seaside.. smh #crazy #hurricane #sandy #the #struggle http://t.co/YCtl2z3g\n", "\n", "--------------------------------------------------------\n", - "rollercoaster seaside smh crazy hurricane sandy struggle \n", + "rollercoaster seaside crazy hurricane sandy struggle \n", "\n", "\n", "Heard this is 20th and Ave C in Manhattan, NYC! #WTF #Sandy #Pray http://t.co/5h8yrxC4\n", "\n", "--------------------------------------------------------\n", - "heard 20th ave c manhattan nyc wtf sandy pray \n", + "heard is0th ave manhattan new york city sandy pray \n", "\n", "\n", "This is some picture of the Sandy mess, but beautiful, in a way.\\nhttp://t.co/KGvRMFoN\n", @@ -48094,7 +43266,7 @@ "#EastVillage, wow RT @ChrisDaniels5 Another pic of the NYC flooding from late last night...via @jesseandgreg : http://t.co/Nehimhmp #sandy\n", "\n", "--------------------------------------------------------\n", - "eastvillage wow \n", + "eastvillage \n", "\n", "\n", "Roller coaster in seaside heights. #jerseyshore #sandy #creepy http://t.co/5ccghxfz\n", @@ -48124,13 +43296,13 @@ "That's ode. This is over by my moms #sandy #hurricane #12202012 http://t.co/DPvYBAjO\n", "\n", "--------------------------------------------------------\n", - "ode moms sandy hurricane 12202012 \n", + "ode moms sandy hurricane2202012 \n", "\n", "\n", "Ave C & 8th Street in the East Village. #nyc #hurricane #sandy #flooded #insane http://t.co/CkImfVA9\n", "\n", "--------------------------------------------------------\n", - "ave c 8th street east village nyc hurricane sandy flooded insane \n", + "ave street east village new york city hurricane sandy flooded insane \n", "\n", "\n", "Used to be the FDR drive. #sandy http://t.co/5aOFOwkQ\n", @@ -48148,13 +43320,13 @@ "A construction site in NYC overfloating #NYC #HurricaneSandy #Sandy http://t.co/4VlcJCLf\n", "\n", "--------------------------------------------------------\n", - "construction site nyc overfloating nyc hurricanesandy sandy \n", + "construction site new york city overfloating new york city hurricane sandy sandy \n", "\n", "\n", "- forget about finding a #Taxi in #NYC now ........ #Sandy #Hurricane http://t.co/IPv4sfTC\n", "\n", "--------------------------------------------------------\n", - "forget finding taxi nyc sandy hurricane \n", + "forget finding taxi new york city sandy hurricane \n", "\n", "\n", "Prayers out to the East 🙏 #Sandy #real http://t.co/A3LaA62t\n", @@ -48178,13 +43350,13 @@ "Reminds me of I Am Legend or The Last of Us :0 #me #photograph #photography #NYC #NY #newyorkcity #hurricane http://t.co/oBsBp8p8\n", "\n", "--------------------------------------------------------\n", - "reminds legend last us 0 photograph photography nyc ny newyorkcity hurricane \n", + "reminds legend last us photograph photography new york city new york new yorkcity hurricane \n", "\n", "\n", "Flooding in the East Village in NYC. I hope these drivers have insurance. What a vicious storm! #Sandy http://t.co/QZJuvkeB\n", "\n", "--------------------------------------------------------\n", - "flooding east village nyc hope drivers insurance vicious storm sandy \n", + "flooding east village new york city hope drivers insurance vicious storm sandy \n", "\n", "\n", "Damnnnnn :(RT @MarcDoneGrown23: #Sandy Odeed! Jersey in the Summer won't be the same until Seaside is repaired... http://t.co/Qx5qMQgc\n", @@ -48202,25 +43374,25 @@ "This is crazy NYC #sandy http://t.co/e3PwLo6Y\n", "\n", "--------------------------------------------------------\n", - "crazy nyc sandy \n", + "crazy new york city sandy \n", "\n", "\n", "Holy Smokes!! This is how 20th ST and Avenue C looks like... #sandy #hurricane http://t.co/B9PNpKgt\n", "\n", "--------------------------------------------------------\n", - "holy smokes 20th st avenue c looks like sandy hurricane \n", + "holy smokes how0th st avenue looks like sandy hurricane \n", "\n", "\n", "Sunny NYC after the storm! Pic courtesy of @ryanseacrest #sandy #nyc #rainbow #Godspromise http://t.co/ajrM1PXA\n", "\n", "--------------------------------------------------------\n", - "sunny nyc storm pic courtesy sandy nyc rainbow godspromise \n", + "sunny new york city storm pic courtesy sandy new york city rainbow godspromise \n", "\n", "\n", "This pic is from My Sister who is In long island #newyork please keep her In #prayer. #sandy http://t.co/COr1C8r8\n", "\n", "--------------------------------------------------------\n", - "pic sister long island newyork please keep prayer sandy \n", + "pic sister long island new york please keep prayer sandy \n", "\n", "\n", "New York City these days \"@JasmineSolano: After the fire in Breezy Point, Queens. photo - Shannon Stapleton // #Sandy http://t.co/Ovv1eq1F\"\n", @@ -48232,19 +43404,19 @@ "Was just sent this picture from the East Village (Alphabet City C & 8th st) via @AdamGilman #Sandy #Flooded http://t.co/juR1TezF\n", "\n", "--------------------------------------------------------\n", - "sent picture east village alphabet city c 8th st sandy flooded \n", + "sent picture east village alphabet city st sandy flooded \n", "\n", "\n", "Record breaking 13.88 feet of water at Battery Park... Old record was 10.02 back in 1960 from Hurricane Donn http://t.co/mzJwdZWs\n", "\n", "--------------------------------------------------------\n", - "record breaking 13 88 feet water battery park old record 10 02 back 1960 hurricane donn \n", + "record breaking38 feet water battery park old record was02 back in960 hurricane donn \n", "\n", "\n", "NYC Firemen search for people trapped in their cars at 14th street and Avenue C in Manhattan: http://t.co/wYUjjMEF #Sandy @TIME\n", "\n", "--------------------------------------------------------\n", - "nyc firemen search people trapped cars 14th street avenue c manhattan sandy \n", + "new york city firemen search people trapped cars at4th street avenue manhattan sandy \n", "\n", "\n", "Can't authenticate pic, but stunning if unaltered. Flooding of the World Trade redevelopment construction site: http://t.co/sduIrNcH #sandy\n", @@ -48256,37 +43428,37 @@ "Crazy pic. Cabs underwater in NYC. #Sandy http://t.co/TBLlEuTT\n", "\n", "--------------------------------------------------------\n", - "crazy pic cabs underwater nyc sandy \n", + "crazy pic cabs underwater new york city sandy \n", "\n", "\n", "Ain't nobody gettin round in NYC now! #Sandy\\n\\nhttp://t.co/E3q1f6sX\n", "\n", "--------------------------------------------------------\n", - "nobody gettin round nyc sandy \n", + "nobody gettin round new york city sandy \n", "\n", "\n", "#sandy causing havoc in #NYC no bueno!!! http://t.co/Psy7g9gy\n", "\n", "--------------------------------------------------------\n", - "sandy causing havoc nyc bueno \n", + "sandy causing havoc new york city bueno \n", "\n", "\n", "89th and 1st, Upper East of Manhattan, NYC. Taken by my sis from her apt #sandy #hurricane http://t.co/keTQtnuy\n", "\n", "--------------------------------------------------------\n", - "89th first upper east manhattan nyc taken sis apt sandy hurricane \n", + "9th first upper east manhattan new york city taken sis apt sandy hurricane \n", "\n", "\n", "Wow! A parking lot full of taxis in NYC, flooded #Sandy --> @nationalpost's photo http://t.co/I2Cujn4R\n", "\n", "--------------------------------------------------------\n", - "wow parking lot full taxis nyc flooded sandy photo \n", + "parking lot full taxis new york city flooded sandy photo \n", "\n", "\n", "Taxis in NJ! #Sandy http://t.co/AqQGzMip\n", "\n", "--------------------------------------------------------\n", - "taxis nj sandy \n", + "taxis new jersey sandy \n", "\n", "\n", "#Sandy Odeed! Jersey in the Summer won't be the same until Seaside is repaired... http://t.co/8dR2OHvW\n", @@ -48298,19 +43470,19 @@ "It's real in NYC #sandy glad I'm in the chi ;) http://t.co/NLsNDWBg\n", "\n", "--------------------------------------------------------\n", - "real nyc sandy glad chi \n", + "real new york city sandy glad chi \n", "\n", "\n", "This happened in Chelsea!! WTF???? This is truuuue!!! #sandyhurricane #sandy #hurricane #nyc #newyork #manha http://t.co/PwfHfBgj\n", "\n", "--------------------------------------------------------\n", - "happened chelsea wtf truuuue sandyhurricane sandy hurricane nyc newyork manha \n", + "happened chelsea truuuue sandyhurricane sandy hurricane new york city new york \n", "\n", "\n", "NYC cabs parked in a lot. #sandy http://t.co/wn669pLH\n", "\n", "--------------------------------------------------------\n", - "nyc cabs parked lot sandy \n", + "new york city cabs parked lot sandy \n", "\n", "\n", "A Parking Garage In The Financial District In New York... #Sandy #AnarchyMoneyRules http://t.co/TKkRvg9c\n", @@ -48322,13 +43494,13 @@ "There's always a rainbow after the rain ☔🌈⚡ #NYC #Sandy #rainbow http://t.co/yd1w6qWV\n", "\n", "--------------------------------------------------------\n", - "always rainbow rain nyc sandy rainbow \n", + "always rainbow rain new york city sandy rainbow \n", "\n", "\n", "Gotta love it when ur TRAMPOLINE ends up in the electrical wires #Sandy http://t.co/546ipXki\n", "\n", "--------------------------------------------------------\n", - "gotta love ur trampoline ends electrical wires sandy \n", + "gotta love trampoline ends electrical wires sandy \n", "\n", "\n", "Sandy leaves death and destruction in its wake. Amazing images http://t.co/Yj5I0FBP #sandy http://t.co/EAnjxJZ0\n", @@ -48343,22 +43515,16 @@ "event passes think whole new set reasons awe fdny sandy \n", "\n", "\n", - "“@BordenFaith: Seaside is ruined 😿 so sad. And my favorite log flume is gone #sandy http://t.co/2mBdsnMY” this is crazy\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", - "\n", - "\n", "East Manhattan NYC at the moment... Prayers to everyone out in the Atlantic Coast! #Sandy hdangling dangling ttp://t.co/4HN1h17l\n", "\n", "--------------------------------------------------------\n", - "east manhattan nyc moment prayers everyone atlantic coast sandy hdangling dangling ttp co 4hn1h17l \n", + "east manhattan new york city moment prayers everyone atlantic coast sandy hdangling dangling ttp co1h17l \n", "\n", "\n", "Ave C Lower eastside of NY... Keep them in your prayers. #Sandy http://t.co/QihRzvKm\n", "\n", "--------------------------------------------------------\n", - "ave c lower eastside ny keep prayers sandy \n", + "ave lower eastside new york keep prayers sandy \n", "\n", "\n", "Crazy events on the East Coast. Wish everyone the best out there. http://t.co/xQkAkR82 #sandy #frankenstorm\n", @@ -48376,7 +43542,7 @@ "Taxi terminal in Hoboken, NJ. (Not my photo.) #Sandy http://t.co/ALGf97M2\n", "\n", "--------------------------------------------------------\n", - "taxi terminal hoboken nj photo sandy \n", + "taxi terminal hoboken new jersey photo sandy \n", "\n", "\n", "#sandy got this building in Chelsea looking like a doll house! Whole facade got blown off! http://t.co/aaioPogO\n", @@ -48388,13 +43554,13 @@ "Yellow taxies in #NY #sandy @ New York http://t.co/Dx8DElrQ\n", "\n", "--------------------------------------------------------\n", - "yellow taxies ny sandy new york \n", + "yellow taxies new york sandy new york \n", "\n", "\n", "Now this pic is not a joke!! This is lower Manhattan.. Yikes!! #sandy is not playing http://t.co/2pR5ulBW\n", "\n", "--------------------------------------------------------\n", - "pic joke lower manhattan yikes sandy playing \n", + "pic joke lower manhattan sandy playing \n", "\n", "\n", "Just passed the dangling crane. Crazy and scary. If that falls.. Can't/don't want to imagine. #Sandy #Stor http://t.co/Euk7NbOz\n", @@ -48412,13 +43578,13 @@ "A double rainbow in NYC 🌈🌈😇Thank God #sandy is leaving http://t.co/ohkXyApR\n", "\n", "--------------------------------------------------------\n", - "double rainbow nyc thank god sandy leaving \n", + "double rainbow new york city thank god sandy leaving \n", "\n", "\n", "Couldn't really picture what a hurricane in NYC would be like, now I can o_O http://t.co/9xRtNnQJ\n", "\n", "--------------------------------------------------------\n", - "really picture hurricane nyc would like \n", + "really picture hurricane new york city would like oo \n", "\n", "\n", "This gives new meaning to the term \"water taxi\" http://t.co/H4OipkKi #Sandy #NYC\n", @@ -48436,19 +43602,13 @@ "From a friend in NY. #Sandy http://t.co/9bN6MVz3\n", "\n", "--------------------------------------------------------\n", - "friend ny sandy \n", + "friend new york sandy \n", "\n", "\n", "After the storm comes a rainbow. Heal soon NY❤ #rainbowovernyc after #sandy http://t.co/WcNs1o1Q\n", "\n", "--------------------------------------------------------\n", - "storm comes rainbow heal soon ny rainbowovernyc sandy \n", - "\n", - "\n", - "THIS IS CRAZY!!!!! #Sandy http://t.co/Q9kMjmFT\n", - "\n", - "--------------------------------------------------------\n", - "crazy sandy \n", + "storm comes rainbow heal soon new york rainbowovernyc sandy \n", "\n", "\n", "Crazy! A parking lot full if cabs in Hoboken - photo credit unknown #sandy http://t.co/BmDSsUdb\n", @@ -48460,19 +43620,19 @@ "Via a friend on facebook, this is a flooded taxicab lot in NYC. #hurricanesandy http://t.co/wsEbneJ6\n", "\n", "--------------------------------------------------------\n", - "via friend facebook flooded taxicab lot nyc hurricanesandy \n", + "friend facebook flooded taxicab lot new york city hurricane sandy \n", "\n", "\n", "A pic of the East Village in Manhattan from a friend of a friend. #Sandy #nyc http://t.co/eyaNkj8b\n", "\n", "--------------------------------------------------------\n", - "pic east village manhattan friend friend sandy nyc \n", + "pic east village manhattan friend friend sandy new york city \n", "\n", "\n", "This is in Milford, CT & is the reason why u need to secure stuff b4 the storm! #hurricanesandy http://t.co/ZVpi0tF5\n", "\n", "--------------------------------------------------------\n", - "milford ct reason need secure stuff b4 storm hurricanesandy \n", + "milford ct reason need secure stuff b4 storm hurricane sandy \n", "\n", "\n", "#fdny search lower manhattan for people trapped in cars. #sandy #hurricane #superstorm #frankenstorm http://t.co/MWpz3SV7\n", @@ -48484,13 +43644,13 @@ "#Sandy is killing it on #34th st in #NYC. So, glad I moved....praying for yallz.... #HashemYishmor http://t.co/KdhO1FgJ\n", "\n", "--------------------------------------------------------\n", - "sandy killing 34th st nyc glad moved praying yallz hashemyishmor \n", + "sandy killing on4th st new york city glad moved praying yallz hashemyishmor \n", "\n", "\n", "Taxis sit in a #flooded lot after #Hurricane #Sandy hit on October 30, 2012 in Hoboken, #New #Jersey. http://t.co/sEVUvZHQ\n", "\n", "--------------------------------------------------------\n", - "taxis sit flooded lot hurricane sandy hit october 30 2012 hoboken new jersey \n", + "taxis sit flooded lot hurricane sandy hit october02 hoboken new jersey \n", "\n", "\n", "Double rainbow over Manhattan. A reminder that God is good, all the time. #Sandy http://t.co/AHtWtYpn\n", @@ -48502,7 +43662,7 @@ "Incredible pic from NYC - iconic cabs under submerged in water http://t.co/ScHdPa3T #sandy\n", "\n", "--------------------------------------------------------\n", - "incredible pic nyc iconic cabs submerged water sandy \n", + "incredible pic new york city iconic cabs submerged water sandy \n", "\n", "\n", "Cabs parked in a lot in #hoboken apres #sandy http://t.co/5rmunJxQ\n", @@ -48514,13 +43674,7 @@ "#FDNY heroes brave #Hurricane #Sandy #flood #waters on 14th Ave in #Manhattan #NYC to search for p @ NYC, NY http://t.co/4rakKlwG\n", "\n", "--------------------------------------------------------\n", - "fdny heroes brave hurricane sandy flood waters 14th ave manhattan nyc search p nyc ny \n", - "\n", - "\n", - "That is crazy. #Sandy RT @YourAnonNews: FDR Parkway in NYC http://t.co/lZgpGJHr\n", - "\n", - "--------------------------------------------------------\n", - "crazy sandy \n", + "fdny heroes brave hurricane sandy flood waters on4th ave manhattan new york city search p new york city new york \n", "\n", "\n", "What #Sandy left in iconic New York: @YourAnonNews http://t.co/yks8srsv\n", @@ -48532,7 +43686,7 @@ "peterdavisnyc's photo http://t.co/1oOcikyF NYC Cabs in the aftermath of #sandy\n", "\n", "--------------------------------------------------------\n", - "peterdavisnyc photo nyc cabs aftermath sandy \n", + "peterdavisnyc photo new york city cabs aftermath sandy \n", "\n", "\n", "the fallen World Trade Center now washed in floodwaters #sandy http://t.co/PfKZgSvj\n", @@ -48544,13 +43698,13 @@ "This is scary and mind boggling to see. East Village. #nyc #Sandy http://t.co/vRaBL2ux\n", "\n", "--------------------------------------------------------\n", - "scary mind boggling see east village nyc sandy \n", + "scary mind boggling see east village new york city sandy \n", "\n", "\n", "Shit just got REAL in the East coast. God bless everyone in Sandy's way. #sandy #eastcoast #storm #ny 💦☁☔🌊🚣🚓 http://t.co/l3Uo9D0R\n", "\n", "--------------------------------------------------------\n", - "shit got real east coast god bless everyone sandy way sandy eastcoast storm ny \n", + "shit got real east coast god bless everyone sandy way sandy eastcoast storm new york \n", "\n", "\n", "Mother Nature is so powerful, boats on the train tracks #sandy http://t.co/n5k7ylSN http://t.co/stogjvxe\n", @@ -48568,13 +43722,13 @@ "#FDR and 34th st. in #NYC. Unbelievable amount of flooding from #Sandy. http://t.co/D2fOzQAM\n", "\n", "--------------------------------------------------------\n", - "fdr 34th st nyc unbelievable amount flooding sandy \n", + "fdr and4th st new york city unbelievable amount flooding sandy \n", "\n", "\n", "If there is one photo that could describe a hurricane in NYC, this is it: http://t.co/lkyRpWLN via @USATODAY #Sandy\n", "\n", "--------------------------------------------------------\n", - "one photo could describe hurricane nyc sandy \n", + "one photo could describe hurricane new york city sandy \n", "\n", "\n", "The gory sight of #hurricane #Sandy Please pray for them http://t.co/5VjIPfmO\n", @@ -48604,13 +43758,13 @@ "Woah, NYC flooded http://t.co/ve7wL7wx #Sandy (not my photo, I'm in London)\n", "\n", "--------------------------------------------------------\n", - "woah nyc flooded sandy photo london \n", + "woah new york city flooded sandy photo london \n", "\n", "\n", "Wow! Flooding in the subway #NYC because of Hurricane #Sandy :( http://t.co/mNU7ay9w\n", "\n", "--------------------------------------------------------\n", - "wow flooding subway nyc hurricane sandy \n", + "flooding subway new york city hurricane sandy \n", "\n", "\n", "Praying for the people who live in these Chelsea apts #sandy #notnormal http://t.co/9lmlTNas\n", @@ -48649,28 +43803,10 @@ "also suffering sandy jamaica \n", "\n", "\n", - "... Damn “@YourAnonNews: Spare a thought for #Jamaica #sandy http://t.co/U1mocMPw <- #SufferingKnowsNoBorders”\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", - "\n", - "\n", - "@VizFoSho: Spare a thought for #Jamaica #sandy http://t.co/174wDl37\n", - "\n", - "--------------------------------------------------------\n", - "spare thought jamaica sandy \n", - "\n", - "\n", - "@YourAnonNews: Spare a thought for #Jamaica #sandy http://t.co/c2fuwaja <- #SufferingKnowsNoBorders damn Jamaica too?\n", - "\n", - "--------------------------------------------------------\n", - "spare thought jamaica sandy less sufferingknowsnoborders damn jamaica \n", - "\n", - "\n", "Spare a thought for #Jamaica #sandy http://t.co/LRwpGO42 <- SufferingKnowsNoBorders\n", "\n", "--------------------------------------------------------\n", - "spare thought jamaica sandy less sufferingknowsnoborders \n", + "spare thought jamaica sandy sufferingknowsnoborders \n", "\n", "\n", "Spare a thought for #Cuba #Sandy http://t.co/yrQPOed8\n", @@ -48685,12 +43821,6 @@ "spare thought jamaica sandy \n", "\n", "\n", - "Spare a thought for #Jamaica #sandy http://t.co/xrThZ8eq <- #SufferingKnowsNoBorders\n", - "\n", - "--------------------------------------------------------\n", - "spare thought jamaica sandy less sufferingknowsnoborders \n", - "\n", - "\n", "Message from Cuba .. #Sandy #Media #Cuba http://t.co/nXB675k0\n", "\n", "--------------------------------------------------------\n", @@ -48724,13 +43854,13 @@ "#mainstream #media look futher than only #usa there are more victims than only NY, Caribbean islands #saidnuff #SANDY http://t.co/Ub7BWFWh\n", "\n", "--------------------------------------------------------\n", - "mainstream media look futher usa victims ny caribbean islands saidnuff sandy \n", + "mainstream media look futher usa victims new york caribbean islands saidnuff sandy \n", "\n", "\n", "Dear Mainstream Media ... #cuba #newyork #sandy #media #reporting http://t.co/Dm2ccvwd\n", "\n", "--------------------------------------------------------\n", - "dear mainstream media cuba newyork sandy media reporting \n", + "dear mainstream media cuba new york sandy media reporting \n", "\n", "\n", "#cuba #Haïti #sandy #usa http://t.co/BVaiGvse\n", @@ -48760,7 +43890,7 @@ "Generous human spirit. MT @sophieraworth: Hoboken, New Jersey where most of the 50,000 residents lost power #sandy http://t.co/MRAHatYg\"\n", "\n", "--------------------------------------------------------\n", - "generous human spirit hoboken new jersey 50 000 residents lost power sandy \n", + "generous human spirit \n", "\n", "\n", "#priorities RT @sophieraworth: Great shot from Hoboken, New Jersey where most of the 50,000 residents lost power #sandy http://t.co/tfLcK3wz\n", @@ -48778,7 +43908,7 @@ "MT “@sophieraworth: Great shot from Hoboken, New Jersey where ... residents lost power #sandy http://t.co/RFtDTqxL” Sign of the times?\n", "\n", "--------------------------------------------------------\n", - "sign times \n", + "mt sign times \n", "\n", "\n", "Top pic! \"@sophieraworth: Great shot from Hoboken, New Jersey where most of the 50,000 residents lost power #sandy http://t.co/p5v9BE9U\"\n", @@ -48790,19 +43920,7 @@ "Great shot from Hoboken, New Jersey where most of the 50,000 residents lost power #sandy http://t.co/GMSC3JWP\n", "\n", "--------------------------------------------------------\n", - "great shot hoboken new jersey 50 000 residents lost power sandy \n", - "\n", - "\n", - "Amazing! MT @NBCNews: A mob of marathoners head over to Staten Island. No race They're going to help out instead #sandy http://t.co/B00YBVDP\n", - "\n", - "--------------------------------------------------------\n", - "amazing mob marathoners head staten island race going help instead sandy \n", - "\n", - "\n", - "@rickygervais MT@stephgosk: A mob of marathoners heading over to Staten Island. to help out instead. #sandy http://t.co/OxdO2NDb\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island help instead sandy \n", + "great shot hoboken new jersey the000 residents lost power sandy \n", "\n", "\n", "A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/nRsrfPC9 RT @nbcnews:...\n", @@ -48814,7 +43932,7 @@ "LOVITv@stephgosk: A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/OcmsAKoF\n", "\n", "--------------------------------------------------------\n", - "lovitv mob marathoners heading staten island race going help instead sandy \n", + "lovitv \n", "\n", "\n", "“@stephgosk: A mob of marathoners heading to Staten Island. No race They're going to help out instead. #sandy http://t.co/3Luza9kC” Brill.\n", @@ -48826,7 +43944,7 @@ "NOW we're talking! MT@stephgosk:A mob of marathoners heading over to Staten Island. No race!helping out instead.#sandy http://t.co/UHWR1Pmk\"\n", "\n", "--------------------------------------------------------\n", - "talking mta mob marathoners heading staten island race helping instead sandy \n", + "talking \n", "\n", "\n", "AWESOME!: \"@stephgosk: Mob of marathoners heading to Staten Island. No race They're going to help out instead. #sandy http://t.co/yhX67FLg\"\n", @@ -48835,48 +43953,12 @@ "awesome \n", "\n", "\n", - "Awesome. RT @NBCNewsmob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/XfqeARdd\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "#AwesomeSpirit RT @stephgosk: marathoners heading over to Staten Is. No race They're going to help out instead. #sandy http://t.co/6QhNL0Py\n", "\n", "--------------------------------------------------------\n", "awesomespirit \n", "\n", "\n", - "MT @stephgosk: A mob of marathoners heading over to Staten Island. No race. They're going to help out instead. #sandy http://t.co/JodMR4ER\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy \n", - "\n", - "\n", - "MT @stephgosk: A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/NlA8ITpa\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy \n", - "\n", - "\n", - "“@NBCNews: A mob of marathoners heading over 2 Staten Island. No race. Going to help out instead. #sandy http://t.co/WKt8jxSc” Awesome!\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", - "Love this RT @stephgosk: mob of marathoners heading to Staten Island. No race They're going to help out instead. #sandy http://t.co/6Uetq1mV\n", - "\n", - "--------------------------------------------------------\n", - "love \n", - "\n", - "\n", - "@stephgosk: A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/qmBkJJJD\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy \n", - "\n", - "\n", "A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/LQdPPMR5” #nice\n", "\n", "--------------------------------------------------------\n", @@ -48892,7 +43974,7 @@ "A mob of marathoners heading over to Staten Island. No race They're going to help out instead: http://t.co/dQWNNXNg\"” #Sandy #NewYork\n", "\n", "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy newyork \n", + "mob marathoners heading staten island race going help instead sandy new york \n", "\n", "\n", "A mob of marathoners heading over to Staten Island. No race They're going to help out instead via @nbcnews #sandy [PIC] http://t.co/N9TPMU0x\n", @@ -48901,16 +43983,10 @@ "mob marathoners heading staten island race going help instead sandy pic \n", "\n", "\n", - "“@BrianJCano A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/wdDMTl40”\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy \n", - "\n", - "\n", "#poweron #poweroff Power is on or off in these parts of Manhattan #sandy #mapcidy 29th st 2nd ave http://t.co/tvXtuhCF\n", "\n", "--------------------------------------------------------\n", - "poweron poweroff power parts manhattan sandy mapcidy 29th st second ave \n", + "poweron poweroff power parts manhattan sandy mapcidy9th st second ave \n", "\n", "\n", "Cldn't be more proud of our team RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/POtAt5ov\n", @@ -48919,48 +43995,12 @@ "cldn proud team \n", "\n", "\n", - "@CarolineFeraday @PortiasVenice LOVE THIS! @SlimPaley: \"This must be what you meant about New Yorkers\" #Sandy #ILoveNY http://t.co/9TaGcscU”\n", - "\n", - "--------------------------------------------------------\n", - "love must meant new yorkers sandy iloveny \n", - "\n", - "\n", "@SlimPaley I love this email a friend sent me tonight; This must be what you meant about New Yorkers\"#Sandy #ILoveNY http://t.co/Hk0Ui3nn\"\n", "\n", "--------------------------------------------------------\n", "love email friend sent tonight must meant new yorkers sandy iloveny \n", "\n", "\n", - "@SlimPaley: I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy http://t.co/aYAJYxUy\\nLove it\n", - "\n", - "--------------------------------------------------------\n", - "love email friend sent tonight must meant new yorkers sandy love \n", - "\n", - "\n", - "“I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy #ILoveNY http://t.co/xLtf8kGs” @BJaffe\n", - "\n", - "--------------------------------------------------------\n", - "love email friend sent tonight must meant new yorkers sandy iloveny \n", - "\n", - "\n", - "Awesome “@boilerhit: “Love this email a friend sent; \"This must be what you meant about New Yorkers\" #Sandy http://t.co/FBpE6TEP” @BJaffe”\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", - "I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy #ILoveNY http://t.co/mhQE3hj4\n", - "\n", - "--------------------------------------------------------\n", - "love email friend sent tonight must meant new yorkers sandy iloveny \n", - "\n", - "\n", - "Love! RT @SlimPaley: I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy http://t.co/zIhavUTR\n", - "\n", - "--------------------------------------------------------\n", - "love \n", - "\n", - "\n", "Insane photo “@amoryn: Pretty unreal. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/w8hWpvkb””\n", "\n", "--------------------------------------------------------\n", @@ -48976,7 +44016,7 @@ "“@DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/fEJirxNH” wow!that's a pic\n", "\n", "--------------------------------------------------------\n", - "wow pic \n", + "pic \n", "\n", "\n", "Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/ErUg1V4T\n", @@ -48991,46 +44031,16 @@ "cont \n", "\n", "\n", - "Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/OhAd2mWj\"\n", - "\n", - "--------------------------------------------------------\n", - "pretty incredible yet check week cover photo sandy \n", - "\n", - "\n", - "What a pic! RT @DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/EPpYgwqT\n", - "\n", - "--------------------------------------------------------\n", - "pic \n", - "\n", - "\n", "Eep. RT @DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/Xwogu2X7\n", "\n", "--------------------------------------------------------\n", "eep \n", "\n", "\n", - "Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/aN8bixTy (via @DianeSawyer)\n", - "\n", - "--------------------------------------------------------\n", - "pretty incredible yet check week cover photo sandy \n", - "\n", - "\n", "@isaach Looks like the time lapse...MT @DianeSawyer: Pretty incredible. Check out this week's @NYMag cover photo #Sandy http://t.co/cMCOHjJ9\n", "\n", "--------------------------------------------------------\n", - "looks like time lapse pretty incredible check week cover photo sandy \n", - "\n", - "\n", - "@DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/avdNZcic/sending L*O*V*E!\n", - "\n", - "--------------------------------------------------------\n", - "pretty incredible yet check week cover photo sandy sending l v \n", - "\n", - "\n", - "“@DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/LeiAGwmk” <- WOW!\n", - "\n", - "--------------------------------------------------------\n", - "less wow \n", + "looks like time lapse \n", "\n", "\n", "Pretty unreal. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/iAR0iEkx”\n", @@ -49051,12 +44061,6 @@ "really something \n", "\n", "\n", - "this is awesome RT @joehas: So shines a good deed in a naughty world #Sandy http://t.co/uVLqPFRo\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "So shines a good deed in a naughty world #Sandy http://t.co/QXxYoRKB\n", "\n", "--------------------------------------------------------\n", @@ -49072,13 +44076,13 @@ "That’s NYC “@MeghanMutrie: People are awesome, even in the smallest ways. #Sandy http://t.co/uhyNXKXi”\n", "\n", "--------------------------------------------------------\n", - "nyc \n", + "new york city \n", "\n", "\n", "+1 #littlethings RT @MeghanMutrie: People are awesome, even in the smallest ways. #Sandy http://t.co/ChispOyu\n", "\n", "--------------------------------------------------------\n", - "1 littlethings \n", + "littlethings \n", "\n", "\n", "People are awesome, even in the smallest ways. #Sandy http://t.co/sV5zxiLm\n", @@ -49096,37 +44100,25 @@ "THIS is help \\nrt @UniRabbi beautiful picture shows acts of kindness brighten our world.was taken in Hoboken NJ. #Sandy http://t.co/mjhhfVGH\n", "\n", "--------------------------------------------------------\n", - "help rt beautiful picture shows acts kindness brighten world taken hoboken nj sandy \n", + "help beautiful picture shows acts kindness brighten world taken hoboken new jersey sandy \n", "\n", "\n", "This beautiful picture shows that little acts of kindness brighten our world. It was taken in Hoboken NJ. #Sandy http://t.co/UU7urjpS\n", "\n", "--------------------------------------------------------\n", - "beautiful picture shows little acts kindness brighten world taken hoboken nj sandy \n", + "beautiful picture shows little acts kindness brighten world taken hoboken new jersey sandy \n", "\n", "\n", "Come sempre ci sono vittime di serie A e di serie B... #Sandy RT“@HughKDavid: http://t.co/lCIU2UPC”\n", "\n", "--------------------------------------------------------\n", - "come sempre ci sono vittime di serie di serie b sandy \n", - "\n", - "\n", - "@TheRealNickMara: WOW!!! the jersey shore will never be the same so many good memories were made there.. #sandy http://t.co/WCHKc6Pc\n", - "\n", - "--------------------------------------------------------\n", - "wow jersey shore never many good memories made sandy \n", - "\n", - "\n", - "“@TheRealNickMara: WOW!!! the jersey shore will never be the same so many good memories were made there.. #sandy http://t.co/S77qSlYb” omg\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", + "come sempre ci sono vittime serie serie b sandy rt \n", "\n", "\n", "WOW!!! the jersey shore will never be the same so many good memories were made there.. #sandy http://t.co/jZCdEQIE\n", "\n", "--------------------------------------------------------\n", - "wow jersey shore never many good memories made sandy \n", + "jersey shore never many good memories made sandy \n", "\n", "\n", "@kyrasedgwick plz RT Heard #peeps running extension cords,ice,food,firewood,even cash to strangers #generosity #Sandy http://t.co/axPgsPKp\n", @@ -49135,18 +44127,6 @@ "plz \n", "\n", "\n", - "@Mruff221 plz RT Heard #peeps running extension cords,ice,food,firewood,even cash to strangers #generosity #Sandy http://t.co/GYunaf93\n", - "\n", - "--------------------------------------------------------\n", - "plz \n", - "\n", - "\n", - "@RealBarryEgan plzRT Heard #peeps running extension cords,ice,food,firewood,even cash to strangers #generosity #Sandy http://t.co/gy0tVuVa\n", - "\n", - "--------------------------------------------------------\n", - "plz \n", - "\n", - "\n", "Lower East side of Manhattan. So surreal. Praying for everyone effected by this tragedy. Help each other. #Sandy http://t.co/YZLrbdXZ\n", "\n", "--------------------------------------------------------\n", @@ -49156,13 +44136,13 @@ "PHOTO - AN OCEAN ON NY'S LOWER EAST SIDE. Never happened ever like this. #sandy #nyc http://t.co/GBPQ8myZ\n", "\n", "--------------------------------------------------------\n", - "photo ocean ny lower east side never happened ever like sandy nyc \n", + "photo ocean new york lower east side never happened ever like sandy new york city \n", "\n", "\n", "Lower East Side #NYC #SANDY http://t.co/jabo7jcg\n", "\n", "--------------------------------------------------------\n", - "lower east side nyc sandy \n", + "lower east side new york city sandy \n", "\n", "\n", "PHOTO: Lower East Side, flooded. \"Right now there is no way on or off the island...\" according to @CNN interview #Sandy http://t.co/YcTrJENT\n", @@ -49174,13 +44154,7 @@ "Bromance @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/pZvzcjHX\n", "\n", "--------------------------------------------------------\n", - "bromance talking pres obama needs nj roic friday evening sandy \n", - "\n", - "\n", - "@JRadakovich @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/CPxVfbQo”\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy \n", + "bromance \n", "\n", "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/bKviRulL” --- VOTE #obama2012\n", @@ -49189,12 +44163,6 @@ "vote obama2012 \n", "\n", "\n", - "WOW ... lol RT @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/Lr4lvI37\n", - "\n", - "--------------------------------------------------------\n", - "wow lol \n", - "\n", - "\n", "Working together! :)RT @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/wvScKzMi\n", "\n", "--------------------------------------------------------\n", @@ -49204,13 +44172,13 @@ "#Christie talking with #Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/3BKRSgFA\n", "\n", "--------------------------------------------------------\n", - "christie talking obama needs nj roic friday evening sandy \n", + "christie talking obama needs new jersey roic friday evening sandy \n", "\n", "\n", "Screw Romney - I am OK w/ Christie 2016 RT @GovChristie: Talking with Pres. Obama about needs in #NJ Fri eve. #Sandy http://t.co/W7N0ZFJi\n", "\n", "--------------------------------------------------------\n", - "screw romney ok w christie 2016 \n", + "screw romney ok w christie016 \n", "\n", "\n", "(While Giuliani charges against Obama)“@GovChristie: Talking with Pres. Obama about needs in #NJ Friday evening #Sandy http://t.co/93M2QwyP”\n", @@ -49246,7 +44214,7 @@ "No re-declaring for #Romney @GovChristie: Talking with Pres. Obama about needs in #NJ at ROIC Friday. #Sandy http://t.co/RLdMf4Gw\n", "\n", "--------------------------------------------------------\n", - "declaring romney talking pres obama needs nj roic friday sandy \n", + "declaring romney \n", "\n", "\n", "@realrudygulian \"@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/5EZPF7es\" #reality\n", @@ -49282,7 +44250,7 @@ "Thx 4 ur grit & fight 4 NJ“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening #Sandy http://t.co/kNhjuFE1”\n", "\n", "--------------------------------------------------------\n", - "thx 4 ur grit fight 4 nj \n", + "thx grit fight nj \n", "\n", "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/HooeGax2”{{ Well done, Sir.\n", @@ -49300,7 +44268,7 @@ "“@GovChristie:Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/whqsnYW0”<<the guv leads by example\n", "\n", "--------------------------------------------------------\n", - "less less guv leads example \n", + "guv leads example \n", "\n", "\n", "Still fat lying bastard. \"@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/Sgfn8bQ5\"\n", @@ -49315,24 +44283,6 @@ "help \n", "\n", "\n", - "@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/FCyPs2Am#rachelmaddow#edshow\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy rachelmaddow edshow \n", - "\n", - "\n", - "“AWESOME! @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/t8xt0sz7”\n", - "\n", - "--------------------------------------------------------\n", - "awesome talking pres obama needs nj roic friday evening sandy \n", - "\n", - "\n", - "@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/09CS5cpL\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy \n", - "\n", - "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/DbkOlj4E” #realleadership\n", "\n", "--------------------------------------------------------\n", @@ -49357,16 +44307,10 @@ "fascinating politics \n", "\n", "\n", - "@GovChristie:Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/s2E7e8am Hang in there and thanks.\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy hang thanks \n", - "\n", - "\n", "“BROMANCE Continues. \\n@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/pBIRpkti”\n", "\n", "--------------------------------------------------------\n", - "bromance continues talking pres obama needs nj roic friday evening sandy \n", + "bromance continues \n", "\n", "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/93TnA1mu” whose side is he on?????\n", @@ -49384,7 +44328,7 @@ "Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/lkM0JZvD @Mittromney\n", "\n", "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy \n", + "talking pres obama needs new jersey roic friday evening sandy \n", "\n", "\n", "Don't let FOX know. RT @GovChristie\\nTalking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/PEKvHbRX\n", @@ -49396,19 +44340,13 @@ "@legal2eagle Here's all 2tons of him @GovChristie\\nTalking w/PresObama abt needs in #NJ at the ROIC Fri evening. #Sandy http://t.co/KTayuoW2\n", "\n", "--------------------------------------------------------\n", - "2tons talking w presobama abt needs nj roic fri evening sandy \n", - "\n", - "\n", - "@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/T1PgZkNh” SO PROUD OF GOV.CHRISTIE!\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy proud gov christie \n", + "talking w presobamaneeds new jersey roic fri evening sandy \n", "\n", "\n", "hehe @GovChristie Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/3fIpfa1K\n", "\n", "--------------------------------------------------------\n", - "hehe talking pres obama needs nj roic friday evening sandy \n", + "hehe talking pres obama needs new jersey roic friday evening sandy \n", "\n", "\n", "Loving the bromance. RT @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/UUvyOX27\n", @@ -49420,7 +44358,7 @@ "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/UpHxMHqV”//new besties lol\n", "\n", "--------------------------------------------------------\n", - "new besties lol \n", + "new besties \n", "\n", "\n", "Whassup with the sudden @BarackObama lovefest? RINO? “@GovChristie: Talking with Obama about needs in #NJ. #Sandy http://t.co/Abb2soFT”\n", @@ -49432,13 +44370,13 @@ "Don't you know this man-love caused the storm?! #tcot @GovChristie: Talking with Pres. Obama about needs in #NJ. #Sandy http://t.co/1Q1jS3A0\n", "\n", "--------------------------------------------------------\n", - "know love caused storm tcot talking pres obama needs nj sandy \n", + "know love caused storm tcot \n", "\n", "\n", "“Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/VxR6Vz2E” @DetBunk #LeanWitIt\n", "\n", "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy leanwitit \n", + "talking pres obama needs new jersey roic friday evening sandy leanwitit \n", "\n", "\n", "#bipartisan RT @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/sFe5AjD0\n", @@ -49447,12 +44385,6 @@ "bipartisan \n", "\n", "\n", - "@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/3M2RhAB0 #romney not happy!\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy romney happy \n", - "\n", - "\n", "PBO present even when he's not :) RT @GovChristie Talking with Pres. Obama about needs in #NJ Friday evening. #Sandy http://t.co/xONorSmo\n", "\n", "--------------------------------------------------------\n", @@ -49492,13 +44424,13 @@ "Helping right wing heads explode 1 tweet at a time. RT @GovChristie: Talking w/ Obama about needs in #NJ Friday. #Sandy http://t.co/y67ZXYWK\n", "\n", "--------------------------------------------------------\n", - "helping right wing heads explode 1 tweet time \n", + "helping right wing heads explode tweet time \n", "\n", "\n", "What a great picture from Hoboken, NJ. eTrak is keeping the East coast in our thoughts and prayers! #Sandy http://t.co/gMuTV4nv\n", "\n", "--------------------------------------------------------\n", - "great picture hoboken nj etrak keeping east coast thoughts prayers sandy \n", + "great picture hoboken new jersey etrak keeping east coast thoughts prayers sandy \n", "\n", "\n", "Great picture “@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/B2RFHXpH”\n", @@ -49507,52 +44439,28 @@ "great picture \n", "\n", "\n", - "@Masri_Hearts: People who do things like this during Hurricane Sandy give me hope. http://t.co/8XMZ7BvU\" LOOOOL\n", - "\n", - "--------------------------------------------------------\n", - "people things like hurricane sandy give hope looool \n", - "\n", - "\n", - "God Bless them! RT @jeeveswilliams: People who do things like this during Hurricane Sandy give me hope. http://t.co/I8aKnH9Y\n", - "\n", - "--------------------------------------------------------\n", - "god bless \n", - "\n", - "\n", "People who do things like this during Hurricane Sandy give me hope. http://t.co/84XS08fv LOOOOL\n", "\n", "--------------------------------------------------------\n", - "people things like hurricane sandy give hope looool \n", - "\n", - "\n", - "“@jeeveswilliams: People who do things like this during Hurricane Sandy give me hope. http://t.co/jSoxTDeB” just amazing!\n", - "\n", - "--------------------------------------------------------\n", - "amazing \n", - "\n", - "\n", - "People who do things like this during Hurricane Sandy give me hope. http://t.co/oVC7ELW2\n", - "\n", - "--------------------------------------------------------\n", "people things like hurricane sandy give hope \n", "\n", "\n", "Incroyable photo en une du New York Magazine : Lower Manhattan plongé dans le noir après le passage de #Sandy : http://t.co/eNGIovn6\n", "\n", "--------------------------------------------------------\n", - "incroyable photo une new york magazine lower manhattan plongé dans noir après passage sandy \n", + "incroyable photo new york magazine lower manhattan plongé noir après passage sandy \n", "\n", "\n", "Incroyable photo de Manhattan Sud dans le noir en une du New York Magazine. #sandy #frankenstorm #nyc http://t.co/Htg3PdiY\n", "\n", "--------------------------------------------------------\n", - "incroyable photo manhattan sud dans noir une new york magazine sandy frankenstorm nyc \n", + "incroyable photo manhattan sud noir new york magazine sandy frankenstorm new york city \n", "\n", "\n", "Incroyable photo de Manhattan Sud dans le noir en une du New York Magazine #sandy http://t.co/Htg3PdiY\n", "\n", "--------------------------------------------------------\n", - "incroyable photo manhattan sud dans noir une new york magazine sandy \n", + "incroyable photo manhattan sud noir new york magazine sandy \n", "\n", "\n", "This photo is AMAZING: RT @tomjoubert: Incroyable photo en une du New York Magazine : Lower Manhattan... #Sandy : http://t.co/izBVwwwk\n", @@ -49564,7 +44472,7 @@ "Incroyable photo en une du New York Magazine. Manhattan plongé dans le noir après le passage de #Sandy via @tomjoubert http://t.co/zoE8X8ay\n", "\n", "--------------------------------------------------------\n", - "incroyable photo une new york magazine manhattan plongé dans noir après passage sandy \n", + "incroyable photo new york magazine manhattan plongé noir après passage sandy \n", "\n", "\n", "“@stephgosk: A mob of marathoners heading over to Staten Island. No race.... @nbcnightlynews #sandy http://t.co/EqZJ2Ram” my kind of mob!\n", @@ -49582,7 +44490,7 @@ "Friend in NYC sent me this pic. Very uplifting to see so many people helping one another out in times of need #Sandy http://t.co/OSTHWraR\n", "\n", "--------------------------------------------------------\n", - "friend nyc sent pic uplifting see many people helping one another times need sandy \n", + "friend new york city sent pic uplifting see many people helping one another times need sandy \n", "\n", "\n", "Dear mainstream media, #Sandy fucked us up too. Sincerely, Cuba http://t.co/Zo0D6ecC\n", @@ -49597,18 +44505,6 @@ "dear mainstream media sandy fucked us message cuba sandy cuba \n", "\n", "\n", - "Dear mainstream media, #Sandy fucked up us too. Sincerely, Cuba. http://t.co/vcMiPiO2\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", - "@ametistametist: Dear mainstream media, #Sandy fucked us up too. Sincerely, Cuba\" http://t.co/acY7IXAo\"\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", "USA först sen resten #mediablowjob RT @ametistametist \"Dear mainstream media, #Sandy fucked us up too. Sincerely, Cuba\" http://t.co/1cW6rE9I\n", "\n", "--------------------------------------------------------\n", @@ -49621,18 +44517,6 @@ "dear mainstream media sandy f us sincerely cuba sandy \n", "\n", "\n", - "Dear mainstream media, #Sandy fucked us up too. Sincerely, #Cuba. http://t.co/adn1LzFg\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", - "Dear mainstream media, Sandy fucked us up too. Sincerely, Cuba http://t.co/96SGP69Y\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", "Dear media, #Sandy fucked up us too. Sincerly, Cuba. http://t.co/VJnDmJfp\n", "\n", "--------------------------------------------------------\n", @@ -49645,24 +44529,12 @@ "sosad sotrue dear mainstream media sandy fucked us sincerely cuba \n", "\n", "\n", - "Dear Mainstream Media, Sandy Fucked Us Up Too. Sincerely, Cuba. http://t.co/iEaqhnIa\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", "Dear mainstream media: Sandy fucked us up too. Sincerely, Cuba. #ClimateChange http://t.co/IZK92kx2\n", "\n", "--------------------------------------------------------\n", "dear mainstream media sandy fucked us sincerely cuba climatechange \n", "\n", "\n", - "Dear mainstream media, #Sandy fucked us up too. Sincerely, Cuba\" http://t.co/9cjwu2iT\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", "@officialkeith If only punjab radio had broadcast the news of #Sandy we wouldn't have this problem http://t.co/HfarBazm\n", "\n", "--------------------------------------------------------\n", @@ -49675,12 +44547,6 @@ "wbm announced sandy coming problem \n", "\n", "\n", - "@jayleno If WBM had announced Sandy was coming we wouldn't have this problem. http://t.co/wxfBgfsN\n", - "\n", - "--------------------------------------------------------\n", - "wbm announced sandy coming problem \n", - "\n", - "\n", "@stevemartintogo If WBAI had broadcast Sandy was coming, we wouldn't have this problem. http://t.co/5Y6rTY8Z\n", "\n", "--------------------------------------------------------\n", @@ -49696,19 +44562,19 @@ "afedersiniz ama bu sandy abd twitlerinden bana da gına geldi http://t.co/bYqWUsx7\n", "\n", "--------------------------------------------------------\n", - "afedersiniz ama bu sandy abd twitlerinden bana da gına geldi \n", + "afedersiniz ama bu sandy abd twitlerinden bana gına geldi \n", "\n", "\n", "“jimreedphoto: Latest cover for New York magazine was captured by Iwan Baan. Aerial view of NYC after #Sandy. http://t.co/E5m9Gps0”\n", "\n", "--------------------------------------------------------\n", - "jimreedphoto latest cover new york magazine captured iwan baan aerial view nyc sandy \n", + "jimreedphoto latest cover new york magazine captured iwan baan aerial view new york city sandy \n", "\n", "\n", "Latest cover for New York magazine was captured by Dutch photog Iwan Baan. Aerial view of NYC after #Sandy. http://t.co/Snhyl26O\n", "\n", "--------------------------------------------------------\n", - "latest cover new york magazine captured dutch photog iwan baan aerial view nyc sandy \n", + "latest cover new york magazine captured dutch photog iwan baan aerial view new york city sandy \n", "\n", "\n", "Atlantic City va a pasar a la historia. #Sandy || http://t.co/vo9QMlkY\n", @@ -49720,7 +44586,7 @@ "Wow. <3333 “@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/LSoUulyO /via @CarrieFairygirl”\n", "\n", "--------------------------------------------------------\n", - "wow less 3333 \n", + "3 \n", "\n", "\n", "Thank goodness for people who are kind #sandy http://t.co/xwwhEf7x /via @CarrieFairygirl /via @Alyssa_Milano\n", @@ -49729,30 +44595,12 @@ "thank goodness people kind sandy \n", "\n", "\n", - "Thank goodness for people who are kind @Alyssa_Milano #sandy http://t.co/1Q7M2Lnc\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", - "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/uOk5ELhM /via @CarrieFairygirl” This is awesome:)\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "Thank goodness for people who are kind #sandy http://t.co/iitYFTHM / En venezuela te cobrarian.....\n", "\n", "--------------------------------------------------------\n", "thank goodness people kind sandy venezuela cobrarian \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/IxL5v4jf /via @CarrieFairygirl anything to save time is nice\"\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy anything save time nice \n", - "\n", - "\n", "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/arPk8FgB /via @CarrieFairygirl” GOOD PEOPLE DO STILL EXIST!! :)\n", "\n", "--------------------------------------------------------\n", @@ -49774,7 +44622,7 @@ "<<Beauty in much chaos>> ... Thank goodness for people who are kind #sandy http://t.co/Sx2LykRF /via @CarrieFairygirl @Alyssa_Milano\n", "\n", "--------------------------------------------------------\n", - "less less beauty much chaos greater greater thank goodness people kind sandy \n", + "beauty much chaos thank goodness people kind sandy \n", "\n", "\n", "Sharing the love! RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/8fC2NQlZ /via @CarrieFairygirl\n", @@ -49786,13 +44634,7 @@ "#iminspired by this :) TY 4 sharing @Alyssa_Milano @CarrieFairygirl\\nThank goodness 4 people who are kind #sandy http://t.co/LO8FGysx\n", "\n", "--------------------------------------------------------\n", - "iminspired ty 4 sharing thank goodness 4 people kind sandy \n", - "\n", - "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/8Iun2AbI /via @CarrieFairygirl Still good ppl in the world ☺\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy still good ppl world \n", + "iminspired ty sharing thank goodness people kind sandy \n", "\n", "\n", "Very kind RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/Md48EkIS /via @CarrieFairygirl\n", @@ -49801,18 +44643,6 @@ "kind \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/fljvg6iY /via @CarrieFairygirl bet no republicans here!!!\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy bet republicans \n", - "\n", - "\n", - "Thank goodness for people who are kind #sandy http://t.co/6MR7263d /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", "How wonderful! RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/0qPaxlUo /via @CarrieFairygirl\n", "\n", "--------------------------------------------------------\n", @@ -49831,18 +44661,6 @@ "great see \n", "\n", "\n", - "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/iWTSOOk3 /via @CarrieFairygirl” << Love that!\n", - "\n", - "--------------------------------------------------------\n", - "less less love \n", - "\n", - "\n", - "+1 RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/3X8y6LjX /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "1 \n", - "\n", - "\n", "@MYGEEKTIME some people are nice “@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/cxsZ3Ack /via @CarrieFairygirl”\n", "\n", "--------------------------------------------------------\n", @@ -49861,30 +44679,6 @@ "kindness rule exception \n", "\n", "\n", - "Love this. RT @Alyssa_Milano\\nThank goodness for people who are kind #sandy http://t.co/Tw3uThfJ /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "love \n", - "\n", - "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/DPBRHvWP /via @CarrieFairygirl that's awesome\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy awesome \n", - "\n", - "\n", - "lol :') RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/pjSbZvpv /via @CarrieFairygirl”\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", - "\n", - "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/ruJTlByX /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", "JPS would frolic...RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/fzWeoRVb /via @CarrieFairygirl\n", "\n", "--------------------------------------------------------\n", @@ -49903,12 +44697,6 @@ "cutest thing ever \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/G6ygkAUd /via @CarrieFairygirl I LOVE AMERICA\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy love america \n", - "\n", - "\n", "Awesome! So kind! \"@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/n7xHUyxD /via @CarrieFairygirl\"\n", "\n", "--------------------------------------------------------\n", @@ -49921,18 +44709,6 @@ "love awesomeness \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/oL4qqFo1 /via @CarrieFairygirl Some people are amazing\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy people amazing \n", - "\n", - "\n", - "Thank goodness for people who are #kind #sandy http://t.co/lgE71nRw /via @CarrieFairygirl @Alyssa_Milano\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/SLQBxCQY /via @CarrieFairygirl” love it #ryanair says no way !\n", "\n", "--------------------------------------------------------\n", @@ -49945,12 +44721,6 @@ "kind x \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/2Spqenn2 /via @CarrieFairygirl @CarolineManzo reminds me ur fam\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy reminds ur fam \n", - "\n", - "\n", "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/po0O46wD /via @CarrieFairygirl” kind people are still around\n", "\n", "--------------------------------------------------------\n", @@ -49960,13 +44730,7 @@ "Be this guy/gal today peeps! <3 “@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/gTBo60dN /via @CarrieFairygirl”\n", "\n", "--------------------------------------------------------\n", - "guy gal today peeps less 3 \n", - "\n", - "\n", - "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/nyOvE2PB /via @CarrieFairygirl” so nice!\n", - "\n", - "--------------------------------------------------------\n", - "nice \n", + "guy gal today peeps \n", "\n", "\n", "So touching! RT @DreamCameTrue_: RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/yBaVo3FZ /via @CarrieFairygirl\n", @@ -49975,34 +44739,10 @@ "touching \n", "\n", "\n", - "Thank goodness for people who are kind #sandy http://t.co/Pc25SgSy /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/WE72RVCE /via @CarrieFairygirl LOVE THIS!\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy love \n", - "\n", - "\n", "É, a humanidade ainda tem jeito. “@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/xwu5jSIg /via @CarrieFairygirl”\n", "\n", "--------------------------------------------------------\n", - "é humanidade ainda tem jeito \n", - "\n", - "\n", - "Thank goodness for people who are kind @Alyssa_Milano #sandy http://t.co/4KVRkeqi\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", - "THIS is amazing! RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/xIzaj5UN /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "amazing \n", + "humanidade ainda jeito \n", "\n", "\n", "Plug in Pals RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/gXB0pHGX /via @CarrieFairygirl\n", @@ -50026,25 +44766,25 @@ "NY: The City and the Storm. The Look of Post-Sandy New York.... http://t.co/AL5UZXkm\n", "\n", "--------------------------------------------------------\n", - "ny city storm look post sandy new york \n", + "new york city storm look post sandy new york \n", "\n", "\n", "WhaaOo ! la Une incroyable du New York Magazine. The City and the superStorm #Sandy. Le sud de Manhattan coupé du monde http://t.co/PLwIiqhM\n", "\n", "--------------------------------------------------------\n", - "whaaoo une incroyable new york magazine city superstorm sandy sud manhattan coupé monde \n", + "whaaoo incroyable new york magazine city superstorm sandy sud manhattan coupé monde \n", "\n", "\n", "La une du New-York magazine sur Sandy : \"The City and the Storm\"... http://t.co/02l6s1Df\n", "\n", "--------------------------------------------------------\n", - "une new york magazine sur sandy city storm \n", + "new york magazine sandy city storm \n", "\n", "\n", "Sandy: New York bat Haïti http://t.co/m0TixcNe vía @liberation_info @arretsurimages & The city and the storm @NYMag http://t.co/IoYnhSWC\n", "\n", "--------------------------------------------------------\n", - "sandy new york bat haïti vía city storm \n", + "sandy new york bat haïti city storm \n", "\n", "\n", "@MaksimC check out this pic. Helping others even if it is for something simple as charging your phone. #Sandy http://t.co/8CEaesX3\n", @@ -50071,24 +44811,6 @@ "geeez \n", "\n", "\n", - "@LauraLoo23: Taxis underwater- Hoboken #Sandy http://t.co/DC5hvn69Crazy!\n", - "\n", - "--------------------------------------------------------\n", - "taxis underwater hoboken sandy \n", - "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Taxis underwater- Hoboken #Sandy http://t.co/gZRmFihx\n", - "\n", - "--------------------------------------------------------\n", - "taxis underwater hoboken sandy \n", - "\n", - "\n", "Espectacular imagen aérea de Nueva York durante el apagón 'Blackout' del huracán Sandy http://t.co/m18SegxS\n", "\n", "--------------------------------------------------------\n", @@ -50104,7 +44826,7 @@ "New York Hurricane Sandy 31 october 2012/ http://t.co/u5Vs8r9S http://t.co/2eufIAdL\n", "\n", "--------------------------------------------------------\n", - "new york hurricane sandy 31 october 2012 \n", + "new york hurricane sandy1 october012 \n", "\n", "\n", "Ground zero after super sandy http://t.co/CW9RVYFz\n", @@ -50116,13 +44838,13 @@ "Esto es NY después de SANDY ........ http://t.co/TG7CDOx0\n", "\n", "--------------------------------------------------------\n", - "ny después sandy \n", + "new york después sandy \n", "\n", "\n", "L'ouragan Sandy na pas ébranlé cette statue de Notre Dame. #GOD http://t.co/EHRMS3E8\n", "\n", "--------------------------------------------------------\n", - "l ouragan sandy pas ébranlé cette statue notre dame god \n", + "ouragan sandy ébranlé cette statue dame god \n", "\n", "\n", "Impresionante imagen tras el paso del huracán Sandy. http://t.co/HKxrzZzp\n", @@ -50140,7 +44862,7 @@ "Hurricane Sandy destroyed Boca Raton's beach. Sucked it up lol http://t.co/13JMNMjc\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy destroyed boca raton beach sucked lol \n", + "hurricane sandy destroyed boca raton beach sucked \n", "\n", "\n", "Don't freak out! Sandy from space via @cakewrecks https://t.co/0lHnGdBf\n", @@ -50164,7 +44886,7 @@ "30.10.2012. Радуга над многострадальным Манхэттеном, сигнализирующая, что ураган Sandy наконец-то покидает Нью-Йорк. http://t.co/MXQv6G9o\n", "\n", "--------------------------------------------------------\n", - "30 10 2012 радуга многострадальным манхэттеном сигнализирующая ураган sandy покидает нью йорк \n", + "радуга многострадальным манхэттеном сигнализирующая ураган sandy покидает нью йорк \n", "\n", "\n", "Dammit, Sandy. Thats just mean. RT “@1HCRFAN: @AlexAllTimeLow @zackalltimelow picture from home :/ http://t.co/aClxRtiX”\n", @@ -50188,7 +44910,7 @@ "Text RED CROSS to 90999 to donate $10 to all those affected by Hurricane Sandy. They need our help! #SandyHelp http://t.co/otbzV0xK\n", "\n", "--------------------------------------------------------\n", - "text red cross 90999 donate 10 affected hurricane sandy need help sandyhelp \n", + "text red cross to0999 donate 0 affected hurricane sandy need help sandyhelp \n", "\n", "\n", "Funniest sandy picture yet. http://t.co/eDOTqYKT\n", @@ -50200,7 +44922,7 @@ "New York City affected by Hurricane Sandy on October 31, 2012 http://t.co/Dwx9w9OM\n", "\n", "--------------------------------------------------------\n", - "new york city affected hurricane sandy october 31 2012 \n", + "new york city affected hurricane sandy october12 \n", "\n", "\n", "Con lo q pasó esta semana en EEUU, Sandy dejó de ser un nombre tierno para ponerle a nuestros hij@s http://t.co/dezQgSZS\n", @@ -50212,13 +44934,13 @@ "On Monday the word \"Sandy\" was mentioned 4.8M times, with 10 photos per second being posted through #SocialMedia! http://t.co/cE20B80P\n", "\n", "--------------------------------------------------------\n", - "monday word sandy mentioned 4 8m times 10 photos per second posted socialmedia \n", + "monday word sandy mentioned times with0 photos second posted socialmedia \n", "\n", "\n", "Sandy kopiuje mapy w iOS 6 http://t.co/J9NG2snO\n", "\n", "--------------------------------------------------------\n", - "sandy kopiuje mapy w ios 6 \n", + "sandy kopiuje mapy w ios \n", "\n", "\n", "Apple sues Sandy. http://t.co/UnhyCK0W\n", @@ -50230,7 +44952,7 @@ "Kesan taufan sandy yg berlaku di Utara America... *smart lak tgk dri ats taxi ni bebaris* http://t.co/Xxi5oXFS\n", "\n", "--------------------------------------------------------\n", - "kesan taufan sandy yg berlaku di utara america smart lak tgk dri ats taxi bebaris \n", + "kesan taufan sandy yg berlaku utara america smart lak tgk dri ats taxi bebaris \n", "\n", "\n", "Apple sues Hurricane Sandy http://t.co/S9CJKXcR\n", @@ -50260,7 +44982,7 @@ "45 can alan Sandy Kasırgası'nın etkili olduğu New York'ta bir petrol rafinerisinden 300 bin galon mazot denize sızdı. http://t.co/Lr8iioLq\n", "\n", "--------------------------------------------------------\n", - "45 alan sandy kasırgası nın etkili olduğu new york ta bir petrol rafinerisinden 300 bin galon mazot denize sızdı \n", + "5 alan sandy kasırgası nın etkili olduğu new york bir petrol rafinerisinden00 bin galon mazot denize sızdı \n", "\n", "\n", "Imagen de la tierra tomada por la NASA desde el espacio, en donde se aprecia el tamaño del Huracán \"Sandy\" http://t.co/HWaGtfJT\n", @@ -50269,22 +44991,16 @@ "imagen tierra tomada nasa espacio aprecia tamaño huracán sandy \n", "\n", "\n", - "FU, Sandy! http://t.co/2HqjZFyE\n", - "\n", - "--------------------------------------------------------\n", - "fu sandy \n", - "\n", - "\n", "Tras paso del huracan Sandy por la \"ciudad de los Rascacielos\" asi es el panorama en New York City http://t.co/zV5PjnqN\n", "\n", "--------------------------------------------------------\n", - "tras paso huracan sandy ciudad rascacielos asi panorama new york city \n", + "tras paso huracan sandy ciudad rascacielos así panorama new york city \n", "\n", "\n", "Soutien & bon courage à toutes les personnes touchées lors du passage de l'ouragan Sandy #OuraganSandy #NewYork http://t.co/b5lauLin\n", "\n", "--------------------------------------------------------\n", - "soutien bon courage à toutes personnes touchées lors passage l ouragan sandy ouragansandy newyork \n", + "soutien bon couragetoutes personnes touchées lors passage ouragan sandy ouragansandy new york \n", "\n", "\n", "This is seaside heights after hurricane sandy.. Holy shit #JerseyShore http://t.co/K61zdsGJ\n", @@ -50296,7 +45012,7 @@ "O furacão Sandy passou por Nova Iorque e destruiu tudo, ou melhor, quase tudo. Veja essa foto da BBC. Virgem Maria... http://t.co/zgajRMXJ\"\n", "\n", "--------------------------------------------------------\n", - "furacão sandy passou nova iorque destruiu tudo ou melhor quase tudo veja essa foto da bbc virgem maria \n", + "furacão sandy passou nova iorque destruiu tudo melhor quase tudo veja foto bbc virgem maria \n", "\n", "\n", "floods: Yellow cabs in a parking lot are surrounded by water after Superstorm Sandy struck Hoboken, New Jersey. http://t.co/cMIesESb\n", @@ -50356,13 +45072,7 @@ "Brooklyn Battery after Sandy #NewYork http://t.co/LMrkWoiG\n", "\n", "--------------------------------------------------------\n", - "brooklyn battery sandy newyork \n", - "\n", - "\n", - "@KERENdaich: This is seaside heights after hurricane sandy.. Holy shit #JerseyShore http://t.co/l2ievNR8\n", - "\n", - "--------------------------------------------------------\n", - "seaside heights hurricane sandy holy shit jerseyshore \n", + "brooklyn battery sandy new york \n", "\n", "\n", "This is what Sandy done? Madness. http://t.co/DUjOtcB2 wooooooow\n", @@ -50374,7 +45084,7 @@ "SANDY Manhattan Bridge e le strade di Dumbo, a Brooklyn, nella notte di lunedì. http://t.co/dAAuCL2H\n", "\n", "--------------------------------------------------------\n", - "sandy manhattan bridge strade di dumbo brooklyn nella notte di lunedì \n", + "sandy manhattan bridge strade dumbo brooklyn nella notte lunedì \n", "\n", "\n", "Sandy did not like trampolines .... http://t.co/mSnsyX0z\n", @@ -50383,12 +45093,6 @@ "sandy like trampolines \n", "\n", "\n", - "@felixvictorino: Sandy arrasa Seaside Hights, el hogar de 'Jersey Shore. la zona de recreo más famosa de NewJersey http://t.co/8OxX2KXv\n", - "\n", - "--------------------------------------------------------\n", - "sandy arrasa seaside hights hogar jersey shore zona recreo famosa newjersey \n", - "\n", - "\n", "Seaside Heights after Sandy, aka the Jersey Shore beach, aka the place I've spent my summers growing up :( http://t.co/4p638Oak\n", "\n", "--------------------------------------------------------\n", @@ -50404,7 +45108,7 @@ "I'm terribly when I see what Sandy hurricane caused! :/ Omg! http://t.co/PspXXWJM\n", "\n", "--------------------------------------------------------\n", - "terribly see sandy hurricane caused omg \n", + "terribly see sandy hurricane caused \n", "\n", "\n", "Sandy art, digno de instagram http://t.co/nwAniIGm (via @Carolinaabellan)\n", @@ -50434,49 +45138,25 @@ "maria veglia su di noi anche nei momenti più duri..guardate passaggio di sandy a BREEZYPOINT Queens NYK http://t.co/PzvM79VU\n", "\n", "--------------------------------------------------------\n", - "maria veglia di noi anche nei momenti più duri guardate passaggio di sandy breezypoint queens nyk \n", - "\n", - "\n", - "@SethDavisHoops: Amazing pic RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/YmYsENV9\n", - "\n", - "--------------------------------------------------------\n", - "amazing pic \n", - "\n", - "\n", - "“@SethDavisHoops: Amazing pic RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/QhKbAqk4”\n", - "\n", - "--------------------------------------------------------\n", - "amazing pic \n", - "\n", - "\n", - "Wow! “@SethDavisHoops: Amazing pic RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. http://t.co/asdBcrmG”\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing pic \n", + "maria veglia noi anche nei momenti più duri guardate passaggio sandy breezypoint queens nyk \n", "\n", "\n", "This is...unreal. Essentially the only building with power in #NYC right now is the Empire State Building. #Sandy http://t.co/2ockEAXN\n", "\n", "--------------------------------------------------------\n", - "unreal essentially building power nyc right empire state building sandy \n", - "\n", - "\n", - "@JustinKing224: This is...unreal. only building with power in #NYC now is the Empire State Building. #Sandy http://t.co/9pcFA8Eu... WOW\n", - "\n", - "--------------------------------------------------------\n", - "unreal building power nyc empire state building sandy wow \n", + "unreal essentially building power new york city right empire state building sandy \n", "\n", "\n", "the only building with power in #NYC right now is the Empire State Building. #Sandy http://t.co/DniSwmGj @MINAKWON YOU HEARD BOUT IT?DAYUMM!\n", "\n", "--------------------------------------------------------\n", - "building power nyc right empire state building sandy heard bout dayumm \n", + "building power new york city right empire state building sandy heard bout dayumm \n", "\n", "\n", "Is this picture for real? If so, at one point during #Sandy, Empire State Building was only building in NY with power: http://t.co/VCrCD3dk\n", "\n", "--------------------------------------------------------\n", - "picture real one point sandy empire state building building ny power \n", + "picture real one point sandy empire state building building new york power \n", "\n", "\n", "last night RT “@JustinKing224 the only building with power in #NYC right now is the Empire State Building. #Sandy http://t.co/RlGmpYDV”\n", @@ -50488,43 +45168,37 @@ "Kikin, nada mas metes gol y ocasionas un desmadre natural en Nueva York #Sandy @kikinfg http://t.co/yEXVjMcf\n", "\n", "--------------------------------------------------------\n", - "kikin mas metes gol ocasionas desmadre natural nueva york sandy \n", + "kikin metes gol ocasionas desmadre natural nueva york sandy \n", "\n", "\n", "Nueva York y el huracán Sandy y yo acojonada. Parte 1 http://t.co/aqZj3fcU\n", "\n", "--------------------------------------------------------\n", - "nueva york huracán sandy acojonada parte 1 \n", + "nueva york huracán sandy yacojonada parte \n", "\n", "\n", "Nueva York y el huracán Sandy y yo acojonada. Parte 2. (Brooklyn) http://t.co/RJ5o8RsX\n", "\n", "--------------------------------------------------------\n", - "nueva york huracán sandy acojonada parte 2 brooklyn \n", + "nueva york huracán sandy yacojonada parte brooklyn \n", "\n", "\n", "A picture is worth a thousand words... NYC #Sandy http://t.co/iaC6Of6o\n", "\n", "--------------------------------------------------------\n", - "picture worth thousand words nyc sandy \n", + "picture worth thousand words new york city sandy \n", "\n", "\n", "Wow! A picture says a thousand words: http://t.co/EslZ3ZTf via @NYMag #Sandy\n", "\n", "--------------------------------------------------------\n", - "wow picture says thousand words sandy \n", + "picture says thousand words sandy \n", "\n", "\n", "Wow....a picture is worth a thousand words #Sandy #ILoveNY http://t.co/EIk0zC10\n", "\n", "--------------------------------------------------------\n", - "wow picture worth thousand words sandy iloveny \n", - "\n", - "\n", - "Crazy. “@GoogleFacts: Yes, this photo of Sandy is real.. http://t.co/F612twE7”\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", + "picture worth thousand words sandy iloveny \n", "\n", "\n", "Sandy volcano RT @GoogleFacts: Yes, this photo of Sandy is real.. http://t.co/wdaLbuIt\n", @@ -50545,12 +45219,6 @@ "new photo fishing pier destroyed yes main one inlet mdsandy hurricane \n", "\n", "\n", - "Yes, this photo of Sandy is real.. http://t.co/lw0ebeyu\n", - "\n", - "--------------------------------------------------------\n", - "yes photo sandy real \n", - "\n", - "\n", "@NYMag cover shows impact of Sandy on Manhattan Picture worth thousand words via @WilliamsJon http://t.co/sVrYdwwo\n", "\n", "--------------------------------------------------------\n", @@ -50572,7 +45240,7 @@ "Cab parking in Hoboken, NJ flooded by #Sandy - found this 2 be 1 of the most dramatic pics of the storm. SVP http://t.co/NyCNFQbW\n", "\n", "--------------------------------------------------------\n", - "cab parking hoboken nj flooded sandy found 2 1 dramatic pics storm svp \n", + "cab parking hoboken new jersey flooded sandy found dramatic pics storm svp \n", "\n", "\n", "Let's keep ALL of Sandy's victims in our prayers- not just the ones in the US. http://t.co/O4acymBV\n", @@ -50581,16 +45249,10 @@ "let keep sandy victims prayers ones us \n", "\n", "\n", - "WoW! Please stay safe -> The Most Unbelievable but Real Pictures of Sandy's Destruction http://t.co/j4dKoDkd http://t.co/m5sFPi6o\n", - "\n", - "--------------------------------------------------------\n", - "wow please stay safe unbelievable real pictures sandy destruction \n", - "\n", - "\n", "Moving picture of the #Sandy aftermath in #NYC... http://t.co/9nYla2i2\n", "\n", "--------------------------------------------------------\n", - "moving picture sandy aftermath nyc \n", + "moving picture sandy aftermath new york city \n", "\n", "\n", "Lots of messages from different people being posted in this shop window about Sandy. http://t.co/8Pt6bjCb\n", @@ -50608,19 +45270,19 @@ "this is my favorite picture from Sandy, a rainbow over the water filled streets of nyc #hope #sandyhelp http://t.co/cli2knkf\n", "\n", "--------------------------------------------------------\n", - "favorite picture sandy rainbow water filled streets nyc hope sandyhelp \n", + "favorite picture sandy rainbow water filled streets new york city hope sandyhelp \n", "\n", "\n", "© APA — parking lot full of yellow cabs flooded as a result of superstorm Sandy on Tues., Oct. 30, 2012 in Hoboken, NJ. http://t.co/NVhuRmBg\n", "\n", "--------------------------------------------------------\n", - "apa parking lot full yellow cabs flooded result superstorm sandy tues oct 30 2012 hoboken nj \n", + "parking lot full yellow cabs flooded result superstorm sandy tues oct 02 hoboken new jersey \n", "\n", "\n", "Really Sandy? I don't think this and the rest of what you did was oh so neccessary. http://t.co/FUBYFYrf\n", "\n", "--------------------------------------------------------\n", - "really sandy think rest oh neccessary \n", + "really sandy think rest wasso neccessary \n", "\n", "\n", "Big earth image provides a clearer perspective of the scale of Sandy before hitting land! http://t.co/hG8Sgjta\n", @@ -50656,7 +45318,7 @@ "Hoboken NJ-the Kindness of Strangers. Helping others to charge their phones etc in the aftermath of Hurricane Sandra. http://t.co/JArGVSAJ\n", "\n", "--------------------------------------------------------\n", - "hoboken nj kindness strangers helping others charge phones etc aftermath hurricane sandra \n", + "hoboken new jersey kindness strangers helping others charge phones etc aftermath hurricane sandra \n", "\n", "\n", "new jersey and this was after the coup of sandy. http://t.co/61kKvVFx\n", @@ -50674,7 +45336,7 @@ "Pics taken by a friend of Sandy's devastation in Seaside Heights NJ http://t.co/HG6A2aLA\n", "\n", "--------------------------------------------------------\n", - "pics taken friend sandy devastation seaside heights nj \n", + "pics taken friend sandy devastation seaside heights new jersey \n", "\n", "\n", "THE OTHER SIDE' OF SANDY NOT SEE ON TV AND NEWSPAPERS. The hurricane also struck CUBA, HAITI AND THE DOMINICAN REPUBLIC http://t.co/S0PK6dFz\n", @@ -50716,7 +45378,7 @@ "NB: the mag's hq last week was shut down w/o power MT @BruceFeiler: This @NYMag cover of Sandy will go down in history. http://t.co/POtAt5ov\n", "\n", "--------------------------------------------------------\n", - "nb mag hq last week shut w powerthis cover sandy go history \n", + "nb mag hq last week shut w power \n", "\n", "\n", "Post-Sandy sightseeing tour of New York. Latest attractions include fallen trees in Central Park & a collapsing crane. http://t.co/ZUe31kEh\n", @@ -50824,13 +45486,13 @@ "The hurricane's aftermath in Atlantic City's board game-inspiring shore. http://t.co/MBJVmiK7 #HurricaneSandy #AtlanticCity #Monopoly\n", "\n", "--------------------------------------------------------\n", - "hurricane aftermath atlantic city board game inspiring shore hurricanesandy atlanticcity monopoly \n", + "hurricane aftermath atlantic city board game inspiring shore hurricane sandy atlanticcity monopoly \n", "\n", "\n", "After hurricane Sandy, there is at least one Road in Rodanthe, N.C that Apple Maps did Get Right \\n#Apple http://t.co/evYPQ68M\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy least one road rodanthe n c apple maps get right apple \n", + "hurricane sandy least one road rodanthe apple maps get right apple \n", "\n", "\n", "Hurricane Sandy doesn't like taxi. (Get #MEME Reader on the Appstore) http://t.co/rJ77VaQz\n", @@ -50848,7 +45510,7 @@ "Boat on RR tracks: amusing(?) photo among reports of hurricane Sandy: http://t.co/Hz2o0Zm2 @NYGovCuomo: Onl... http://t.co/dGm0IJrE\n", "\n", "--------------------------------------------------------\n", - "boat rr tracks amusing photo among reports hurricane sandy onl \n", + "boat rr tracks amusing photo among reports hurricane sandy \n", "\n", "\n", "Out of all the pics i have seen of hurricane sandy this makes me laugh so much #HealthAndSafety #WetFloor http://t.co/9ebqXeXs\n", @@ -50896,7 +45558,7 @@ "@onedirection please help the people of ny, nj, and connecticut whose homes were destroyed by hurricane sandy http://t.co/8XIAJKwj\n", "\n", "--------------------------------------------------------\n", - "please help people ny nj connecticut whose homes destroyed hurricane sandy \n", + "please help people new york new jersey connecticut whose homes destroyed hurricane sandy \n", "\n", "\n", "My Prayers go out to the Families and Victims of Hurricane Sandy http://t.co/lgQPvaVF\n", @@ -50926,7 +45588,7 @@ "Hurricane Sandy envelopes New Jersey's historic structures - boardwalk roller coasters included | Photo by The NY Times http://t.co/ypFBYQJQ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy envelopes new jersey historic structures boardwalk roller coasters included photo ny times \n", + "hurricane sandy envelopes new jersey historic structures boardwalk roller coasters included photo new york times \n", "\n", "\n", "Thanks @bonniegrrl RT: @princessGwenie1 Dog rescued from hurricane Sandy! Firemen are not only saving the people! http://t.co/ADzjaJlf\n", @@ -50974,7 +45636,7 @@ "awesome PIC of NYC blacked out from\\nHurricane Sandy! “@BuzzFeed: Breathtaking @nymag cover this week. http://t.co/MdxhfyeA”\n", "\n", "--------------------------------------------------------\n", - "awesome pic nyc blacked hurricane sandy \n", + "awesome pic new york city blacked hurricane sandy \n", "\n", "\n", "After the hurricane Sandy. Good neighbor in New Jersey. http://t.co/1sd8E27S\n", @@ -50989,16 +45651,10 @@ "use thinkpal unless power one many comforting images seen since hurricane sandy \n", "\n", "\n", - "Wow amazing pic “@naugusta: The New Yorker cover on Hurricane Sandy. An amazing photo. http://t.co/GGgzrPXU”\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing pic \n", - "\n", - "\n", "Check out my walk home to my nyc apt last night. Out of the lightness into the dark. Compliments of hurricane sandy. http://t.co/frzaJXRW\n", "\n", "--------------------------------------------------------\n", - "check walk home nyc apt last night lightness dark compliments hurricane sandy \n", + "check walk home new york city apt last night lightness dark compliments hurricane sandy \n", "\n", "\n", "Shoutout to the two boys doing Gangnam Style during Hurricane Sandy http://t.co/UiEwOTBi\n", @@ -51049,12 +45705,6 @@ "power outages lower manhattan hurricane sandy \n", "\n", "\n", - "@tylerperry Hurricane Sandy passing through the Bahamas. Thank God that all storms pass! http://t.co/9I3e4AWi\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy passing bahamas thank god storms pass \n", - "\n", - "\n", "Hurricane Sandy sweeps into Cleveland leaving thousands & thousands in the dark, flooding, & much more. #SandyNEO http://t.co/dp27EIGW\n", "\n", "--------------------------------------------------------\n", @@ -51064,16 +45714,22 @@ "haha, i love the 757! where else would you find people doing gangnam style during a hurricane in the news? #757life http://t.co/DURgisHe\n", "\n", "--------------------------------------------------------\n", - "haha love 757 else would find people gangnam style hurricane news 757life \n", + "love the57 else would find people gangnam style hurricane news \n", "\n", "\n", "These stories my heart can handle and breathes a sigh of relief!! @Animals1st: Dog rescued during Hurricane Sandy. http://t.co/FXaejy7Y\n", "\n", "--------------------------------------------------------\n", - "stories heart handle breathes sigh relief dog rescued hurricane sandy \n", + "stories heart handle breathes sigh relief \n", "\n", "\n", - "this week's @NYMag cover of Manhattan after Hurricane Sandy, what a powerful and sobering image. http://t.co/lCRkT3SZ\n", + "this week's @NYMag cover of Manhattan after Hurricane Sandy, what a powerful and sobering image. http://t.co/lCRkT3SZ\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "--------------------------------------------------------\n", "week cover manhattan hurricane sandy powerful sobering image \n", @@ -51094,7 +45750,7 @@ "@NYMag cover of NYC post Hurricane Sandy http://t.co/QCiqwdmk\n", "\n", "--------------------------------------------------------\n", - "cover nyc post hurricane sandy \n", + "cover new york city post hurricane sandy \n", "\n", "\n", "@ATVIAssist @GuitarHero Survived Hurricane Sandy, all I ask is a resolution to this problem! Please flip the switch! http://t.co/NuAzDPRq\n", @@ -51106,7 +45762,7 @@ "The news about Hurricane Sandy is mostly about US. #9GAG http://t.co/kbe7GbeC\n", "\n", "--------------------------------------------------------\n", - "news hurricane sandy mostly us 9gag \n", + "news hurricane sandy mostly us \n", "\n", "\n", "The New Yorker cover on Hurricane Sandy. An amazing photo. http://t.co/4HUjaUgi\n", @@ -51133,16 +45789,10 @@ "hope humanity occurred new jersey post hurricane sandy \n", "\n", "\n", - "After Hurricane Sandy. Good neighbor in New Jersey. http://t.co/4eFWHx5j\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy good neighbor new jersey \n", - "\n", - "\n", "Kind people helping strangers in NJ during hurricane Sandy #peoplebeingpeople http://t.co/MjsxrNEf\n", "\n", "--------------------------------------------------------\n", - "kind people helping strangers nj hurricane sandy peoplebeingpeople \n", + "kind people helping strangers new jersey hurricane sandy peoplebeingpeople \n", "\n", "\n", "Truly fantastic picture of Manhattan after Hurricane Sandy http://t.co/BKBRGyWD (via @IanHowley)\n", @@ -51160,7 +45810,7 @@ "Great photo of people letting others get a cell phone charge during the Hurricane #hurricanesandy #sandy #payitforward http://t.co/Q8HMiMGp\n", "\n", "--------------------------------------------------------\n", - "great photo people letting others get cell phone charge hurricane hurricanesandy sandy payitforward \n", + "great photo people letting others get cell phone charge hurricane hurricane sandy sandy payitforward \n", "\n", "\n", "Photo of what's left of Queens, New York because of the damage from Hurricane #Sandy. Image courtesy of BuzzFeed: http://t.co/Pfm3O16G\n", @@ -51181,12 +45831,6 @@ "seaside heights damage hurricane sandy rollar coaster water \n", "\n", "\n", - "“@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/88yyukd9 #sandy #nyc” whoa.\n", - "\n", - "--------------------------------------------------------\n", - "whoa \n", - "\n", - "\n", "Stunning cover. RT @newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/9DvD2P47 #sandy #nyc\n", "\n", "--------------------------------------------------------\n", @@ -51196,25 +45840,19 @@ "Amazing photo of NY by Iwan Baan: “@newyorkphoto: The cover of the upcoming New York magazine http://t.co/qCdaz6Xw #sandy #nyc”\n", "\n", "--------------------------------------------------------\n", - "amazing photo ny iwan baan \n", + "amazing photo new york iwan baan \n", "\n", "\n", "The cover of the upcoming New York Magazine - the city and the storm http://t.co/nVuqe5kL #sandy #nyc (via @newyorkphoto)\n", "\n", "--------------------------------------------------------\n", - "cover upcoming new york magazine city storm sandy nyc \n", - "\n", - "\n", - "I love it< “@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/Qoy7AaGw #sandy #nyc”\n", - "\n", - "--------------------------------------------------------\n", - "love less \n", + "cover upcoming new york magazine city storm sandy new york city \n", "\n", "\n", "“@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/JK2jEvFL #sandy #nyc” Wow. The difference.\n", "\n", "--------------------------------------------------------\n", - "wow difference \n", + "difference \n", "\n", "\n", "Gran portada “@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/LHb1t4cy #sandy #nyc”\n", @@ -51226,13 +45864,7 @@ "Powerful cover for the latest issue of New York magazine. #sandy #darkCity #nyc http://t.co/VFRt7mxW\n", "\n", "--------------------------------------------------------\n", - "powerful cover latest issue new york magazine sandy darkcity nyc \n", - "\n", - "\n", - "@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/5MhO28UI #sandy #nyc\n", - "\n", - "--------------------------------------------------------\n", - "cover upcoming new york magazine city storm sandy nyc \n", + "powerful cover latest issue new york magazine sandy darkcity new york city \n", "\n", "\n", "'mazin RT \"@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/IbFAdr5y #sandy #nyc\"\n", @@ -51241,12 +45873,6 @@ "mazin \n", "\n", "\n", - "WOW...“@Markkipper: RT @newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/01RBRpBr #sandy #nyc”\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "Damn you Iwan Baan! Brilliant again RT @cast_architect NY by Iwan Baan cover of the upcoming New York magazine http://t.co/Uz9eUAZ4 #sandy\n", "\n", "--------------------------------------------------------\n", @@ -51265,12 +45891,6 @@ "amazing photograph \n", "\n", "\n", - "@usaphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/iIHrFwb0 #sandy #nyc thk u..beau-ti-ful!!!\n", - "\n", - "--------------------------------------------------------\n", - "cover upcoming new york magazine city storm sandy nyc thk beau ful \n", - "\n", - "\n", "New York magazine publishes powerful #Sandy Cover -The City and the Storm http://t.co/sn5FJHvD\n", "\n", "--------------------------------------------------------\n", @@ -51286,13 +45906,13 @@ "I left my ❤ in NYC, must buy this. “@SKYENICOLAS: New York Magazine 'The City And The Storm' #SANDY #NYC http://t.co/Ho6LZb2I”\n", "\n", "--------------------------------------------------------\n", - "left nyc must buy \n", + "left new york city must buy \n", "\n", "\n", "New York Magazine 'The City And The Storm' #SANDY #NYC http://t.co/dI3mfQbW\n", "\n", "--------------------------------------------------------\n", - "new york magazine city storm sandy nyc \n", + "new york magazine city storm sandy new york city \n", "\n", "\n", "Yup. #SandyNYC RT @SteveCase: RT @BruceFeiler: This @NYMag cover of #Sandy will go down in history. http://t.co/wjcElUZh\n", @@ -51313,12 +45933,6 @@ "wait mine arrive \n", "\n", "\n", - "@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/as3m1EwN\n", - "\n", - "--------------------------------------------------------\n", - "new york magazine cover sandy go history icymi \n", - "\n", - "\n", "This New York Magazine cover of #Sandy will go down in history. Incredible image. http://t.co/Bu8bz6k3\n", "\n", "--------------------------------------------------------\n", @@ -51328,13 +45942,7 @@ "MT - What a week! @SteveCase: RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/iaO6lZmD\n", "\n", "--------------------------------------------------------\n", - "week \n", - "\n", - "\n", - "#powerful RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/JsLPMuSo\n", - "\n", - "--------------------------------------------------------\n", - "powerful \n", + "mt week \n", "\n", "\n", "Stunning. RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/gzBRL4Ax\n", @@ -51361,12 +45969,6 @@ "magnifique prise vue \n", "\n", "\n", - "Awesome picture. RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. #fb http://t.co/Dpk0KIMw\n", - "\n", - "--------------------------------------------------------\n", - "awesome picture \n", - "\n", - "\n", "Agreed! RT @BruceFeiler This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/tYrUzwVI\n", "\n", "--------------------------------------------------------\n", @@ -51379,12 +45981,6 @@ "unreal \n", "\n", "\n", - "Cool! RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/8yKJYgRg\n", - "\n", - "--------------------------------------------------------\n", - "cool \n", - "\n", - "\n", "“@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/mJ6Je8Un” Amazing cover!\n", "\n", "--------------------------------------------------------\n", @@ -51400,13 +45996,7 @@ "This doesn't look real. Amazing! @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/khPKyZPD\n", "\n", "--------------------------------------------------------\n", - "look real amazing new york magazine cover sandy go history icymi \n", - "\n", - "\n", - "amazing cover “@jheil @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/YU8kEOui”\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine cover sandy go history icymi \n", + "look real amazing \n", "\n", "\n", "Agree RT @EdLibbyEvents This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/iKJR1jHe\n", @@ -51415,12 +46005,6 @@ "agree \n", "\n", "\n", - "Just Wow @NYMag \"@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/TjvQOZ6Q\"\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "#SandyRelief RT @EdLibbyEvents: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/yAhOayw5”\n", "\n", "--------------------------------------------------------\n", @@ -51430,13 +46014,7 @@ "Unbelievable shot of NYC no power “@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/UrxHYNld”\n", "\n", "--------------------------------------------------------\n", - "unbelievable shot nyc power \n", - "\n", - "\n", - "“@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/qG0tw3XR” Wow!!!!!\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", + "unbelievable shot new york city power \n", "\n", "\n", "How was this even taken? RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/33Qc8s0T\n", @@ -51460,7 +46038,7 @@ "Wow TR @EricHutchinson Amazing RT @BruceFeiler: New York Magazine cover of #Sandy will go down in history. http://t.co/g7iJUNps\n", "\n", "--------------------------------------------------------\n", - "wow tr amazing \n", + "tr amazing \n", "\n", "\n", "“@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/7QWpohay” Times Square so bright #contrast\n", @@ -51484,19 +46062,13 @@ "W.O.W. \"@NationHahn: Amazing RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/5E5HshUh\"\n", "\n", "--------------------------------------------------------\n", - "w w amazing \n", + "w w \n", "\n", "\n", "Surreal photo of NYC after Sandy RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. http://t.co/1LkdJoEz\n", "\n", "--------------------------------------------------------\n", - "surreal photo nyc sandy \n", - "\n", - "\n", - "Amazing photo! RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. http://t.co/O65Ck3Iz\n", - "\n", - "--------------------------------------------------------\n", - "amazing photo \n", + "surreal photo new york city sandy \n", "\n", "\n", "This New York Magazine cover of #Sandy will go down in history. http://t.co/eRmq3zO9 (@BruceFeiler)\n", @@ -51505,12 +46077,6 @@ "new york magazine cover sandy go history \n", "\n", "\n", - "MT @BruceFeiler: New York Magazine cover of #Sandy will go down in history. http://t.co/yId39RMv Check out area of power outage.\n", - "\n", - "--------------------------------------------------------\n", - "new york magazine cover sandy go history check area power outage \n", - "\n", - "\n", "#NYCforever “RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. http://t.co/QhKbAqk4”\n", "\n", "--------------------------------------------------------\n", @@ -51541,12 +46107,6 @@ "awesome people helping \n", "\n", "\n", - "So awesome RT @LMokaba: This is awesome. RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/n7SZOLir\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "lovely Hoboken awesomeness:RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/p8Ez0Kc9\n", "\n", "--------------------------------------------------------\n", @@ -51562,25 +46122,13 @@ "I do love you, NJ. RT @anamariecox Jersey Share. #sandy #nj (via FB) http://t.co/rNpVanWy\n", "\n", "--------------------------------------------------------\n", - "love nj \n", - "\n", - "\n", - "@anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/2Isdunzt WOW\n", - "\n", - "--------------------------------------------------------\n", - "jersey share sandy nj via fb wow \n", + "love new jersey \n", "\n", "\n", "See? Jersey folks are nice. Only been telling you for 35 years. RT \"@anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/PU6EFBM1\"\n", "\n", "--------------------------------------------------------\n", - "see jersey folks nice telling 35 years \n", - "\n", - "\n", - "How #awesome is this! RT @anamariecox Jersey Share. #sandy #nj (via FB) http://t.co/gfbsAQtj\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", + "see jersey folks nice telling for5 years \n", "\n", "\n", "I love it when people are reduced to being decent human beings. RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/iix99KVR\n", @@ -51613,46 +46161,28 @@ "pretty cool usa usa usa \n", "\n", "\n", - "@anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/1tE5HZOr @Sha_naa\n", - "\n", - "--------------------------------------------------------\n", - "jersey share sandy nj via fb \n", - "\n", - "\n", - "#fb RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/6bwbksLI\n", - "\n", - "--------------------------------------------------------\n", - "fb \n", - "\n", - "\n", - "Just awesome RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/1jUKylGU\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "Now that's something you don't see everyday on the east coast! '@anamariecox Jersey Share. #sandy #nj (via FB) http://t.co/xyj3BV45'\n", "\n", "--------------------------------------------------------\n", - "something see everyday east coast jersey share sandy nj via fb \n", + "something see everyday east coast jersey share sandy new jersey fb \n", "\n", "\n", - "Love this > RT @anamariecox Jersey Share. #sandy #nj (via FB) http://t.co/okdPzRBn\n", + "“@rhshoop727: RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/tVImZEPb”\\nFriends and the best of humanity: priceless!\n", "\n", "--------------------------------------------------------\n", - "love greater \n", + "friends best humanity priceless \n", "\n", "\n", "Jersey Share. #sandy #nj (via FB) http://t.co/7VATEumR\n", "\n", "--------------------------------------------------------\n", - "jersey share sandy nj via fb \n", + "jersey share sandy new jersey fb \n", "\n", "\n", "Jersey Share. #sandy #nj (via FB) http://t.co/ICReNeD1” See, we're not all The Situation!\n", "\n", "--------------------------------------------------------\n", - "jersey share sandy nj via fb see situation \n", + "jersey share sandy new jersey fb see situation \n", "\n", "\n", "Sad that nobody even acknowledged any of the other countries affected by #Sandy http://t.co/I5otlG04\n", @@ -51670,7 +46200,7 @@ "aquaboulevard a ouvert au zimbabwe ? RT @FeyzBelha L'autre face de #Sandy, celle qu'on ne voit pas dans les médias http://t.co/iPZDRsa9\n", "\n", "--------------------------------------------------------\n", - "aquaboulevard ouvert au zimbabwe \n", + "aquaboulevard ouvert zimbabwe \n", "\n", "\n", "En effet, on parle plus du marathon :( RT @FeyzBelha: L'autre face de #Sandy, celle qu'on ne voit pas dans les médias http://t.co/aM1CSZx9\n", @@ -51682,13 +46212,13 @@ "L'autre face de #Sandy,celle qu'on ne voit pas dans les médias http://t.co/0l0SWp2g #hurricaneSandy #Haiti @LHallyday @lili88120 @FeyzBelha\n", "\n", "--------------------------------------------------------\n", - "l autre face sandy celle qu ne voit pas dans médias hurricanesandy haiti \n", + "autre face sandy celle voit médias hurricane sandy haiti \n", "\n", "\n", "L'autre face de #Sandy, celle qu'on ne voit pas dans les médias http://t.co/Vo6daana\n", "\n", "--------------------------------------------------------\n", - "l autre face sandy celle qu ne voit pas dans médias \n", + "autre face sandy celle voit médias \n", "\n", "\n", "Why are these New Yorkers clustered outside a closed Starbucks? @NowThisNews answers, \"two words: working wifi.\" #Sandy http://t.co/T88kxC1c\n", @@ -51718,13 +46248,13 @@ "Luces y sombras.Nueva York partida en dos tras el huracán #Sandy. Gran foto de portada de @NYMag http://t.co/pAJTQ3xZ\"\n", "\n", "--------------------------------------------------------\n", - "luces sombras nueva york partida dos tras huracán sandy gran foto portada \n", + "luces sombras nueva york partida tras huracán sandy gran foto portada \n", "\n", "\n", "Still WOW. From last night, cover of new @nymag shows stark contrast in Manhattan after #Sandy: http://t.co/QOwWV4kb via @shama_ny\n", "\n", "--------------------------------------------------------\n", - "still wow last night cover new shows stark contrast manhattan sandy \n", + "still last night cover new shows stark contrast manhattan sandy \n", "\n", "\n", "Amazing cover of New York Magazine - view of Manhattan from above when Sandy hit http://t.co/tO05eeiH via @peboiton\n", @@ -51733,30 +46263,12 @@ "amazing cover new york magazine view manhattan sandy hit \n", "\n", "\n", - "@thecoolhunter:Amazing cover frm NY Magazine. View of Manhattan frm above whn Sandy hit http://t.co/baNUKsy3 Sending healing energy to NYC\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover frm ny magazine view manhattan frm whn sandy hit sending healing energy nyc \n", - "\n", - "\n", - "Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/NTCHcGyp\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit \n", - "\n", - "\n", "Calm before storm “@thecoolhunter: Amazing cover from New York Magazine.A view of Manhattan from above when Sandy hit http://t.co/Hklfok3J”\n", "\n", "--------------------------------------------------------\n", "calm storm \n", "\n", "\n", - "@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/WR9kV3Fe\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit \n", - "\n", - "\n", "“@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/zij2Nb5N” Unbelievable\n", "\n", "--------------------------------------------------------\n", @@ -51772,7 +46284,7 @@ "Nyc in the dark “@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/ZRAeIqmK”\n", "\n", "--------------------------------------------------------\n", - "nyc dark \n", + "new york city dark \n", "\n", "\n", "Guao. “@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/QZOaXoT0”\n", @@ -51781,12 +46293,6 @@ "guao \n", "\n", "\n", - "Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/wVNsb46U”\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit \n", - "\n", - "\n", "Photo impressionante! A view of Manhattan from above when Sandy hit http://t.co/4EBcZ8vW\\n#sandy\n", "\n", "--------------------------------------------------------\n", @@ -51799,18 +46305,6 @@ "insane shot \n", "\n", "\n", - "@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/WILVYM0A @cmrdra :(\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit \n", - "\n", - "\n", - "I <3 NYC \"@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/DY3jduBG\"\n", - "\n", - "--------------------------------------------------------\n", - "less 3 nyc \n", - "\n", - "\n", "Cover of New York Magazine when Sandy hit Manhattan http://t.co/SsDHXHxs via @peboiton\n", "\n", "--------------------------------------------------------\n", @@ -51820,7 +46314,7 @@ "Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit #sandy #NewYork #AfterSandy http://t.co/tNwtg5wl\n", "\n", "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit sandy newyork aftersandy \n", + "amazing cover new york magazine view manhattan sandy hit sandy new york aftersandy \n", "\n", "\n", "Amazing view of Manhattan from above when Sandy hit http://t.co/jTSflK12 #AfterSandy via @mitchdeg & @mdial\n", @@ -51829,28 +46323,16 @@ "amazing view manhattan sandy hit aftersandy \n", "\n", "\n", - "Woah. RT @thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/uMdSTkTZ\n", - "\n", - "--------------------------------------------------------\n", - "woah \n", - "\n", - "\n", "Indeed! RT: @thecoolhunter\\nAmazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/0mzSyXPE\n", "\n", "--------------------------------------------------------\n", "indeed \n", "\n", "\n", - "Powerful RT @thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/3lGdn14D\n", - "\n", - "--------------------------------------------------------\n", - "powerful \n", - "\n", - "\n", "AMAZING PHOTO- MARATHON RUNNERS BOARDING STATEN ISLAND FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY #911BUFF http://t.co/CvuoLB8j\n", "\n", "--------------------------------------------------------\n", - "amazing photo marathon runners boarding staten island ferry ready volunteer instead running sandy 911buff \n", + "amazing photo marathon runners boarding staten island ferry ready volunteer instead running sandy11buff \n", "\n", "\n", "Make a Difference RT PHOTO MARATHON RUNNERS BOARDING STATEN ISLAND FERRY TO VOLUNTEER INSTEAD OF RUNNING. #NYC #SANDY http://t.co/W9d2zvLD\n", @@ -51874,25 +46356,25 @@ "Dream realized! - MT @911BUFF: MARATHON RUNNERS BOARDING SI FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY http://t.co/R6LV4mcf\n", "\n", "--------------------------------------------------------\n", - "dream realized marathon runners boarding si ferry ready volunteer instead running sandy \n", + "dream realized \n", "\n", "\n", - "Awesome: @911BUFF: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY http://t.co/4bpbhkgP”\n", + "Awesome. #FaithInHumanity @911BUFF: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY TO VOLUNTEER INSTEAD OF RUN #SANDY http://t.co/VqwmQdlN\n", "\n", "--------------------------------------------------------\n", - "awesome marathon runners boarding staten island ferry ready volunteer instead running sandy \n", + "awesome faithinhumanity \n", "\n", "\n", - "Awesome. #FaithInHumanity @911BUFF: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY TO VOLUNTEER INSTEAD OF RUN #SANDY http://t.co/VqwmQdlN\n", + ".@stephlauren Marathon Runners Boarding Staten Island Ferry To Volunteer Instead Of Running #SANDY #911BUFF http://t.co/Xluq5lRp\n", "\n", "--------------------------------------------------------\n", - "awesome faithinhumanity marathon runners boarding staten island ferry volunteer instead run sandy \n", + "marathon runners boarding staten island ferry volunteer instead running sandy11buff \n", "\n", "\n", - ".@stephlauren Marathon Runners Boarding Staten Island Ferry To Volunteer Instead Of Running #SANDY #911BUFF http://t.co/Xluq5lRp\n", + "Awesome!! MT “@911BUFF: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY http://t.co/JA7RNvni”\n", "\n", "--------------------------------------------------------\n", - "marathon runners boarding staten island ferry volunteer instead running sandy 911buff \n", + "awesome mt \n", "\n", "\n", "“@CBSSports: NYC Marathon runners headed to Staten Island to volunteer instead of running: http://t.co/Isq7I3SU via @911Buff” #sandy #heros\n", @@ -51907,16 +46389,10 @@ "amazing photo marathon runners boarding staten island ferry ready volunteer instead running sandy \n", "\n", "\n", - "“AMAZING PHOTO: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY http://t.co/pUMYkPEt”\n", - "\n", - "--------------------------------------------------------\n", - "amazing photo marathon runners boarding staten island ferry ready volunteer instead running sandy \n", - "\n", - "\n", "#صورة تختصر عاصفة #ساندي . عشرات #سيارات الأجرة (Yellow Cap) في هوبوكن وقد غمرها #الماء\\n \\nhttp://t.co/taRXpj63\\n\\n#إعصار_ساندي #Sandy\n", "\n", "--------------------------------------------------------\n", - "صورة تختصر عاصفة ساندي عشرات سيارات الأجرة yellow cap هوبوكن وقد غمرها الماء إعصار ساندي sandy \n", + "صورة تختصر عاصفة ساندي عشرات سيارات الأجرة yellow cap هوبوكن وقد غمرها الماء إعصارساندي sandy \n", "\n", "\n", "صورة تختصر عاصفة #ساندي. عشرات سيارات الأجرة (Yellow Cap) في هوبوكن وقد غمرها الماء. صورة باهرة من أ.ب \\nhttp://t.co/kLxdRu5U\\n#Sandy\n", @@ -51952,7 +46428,7 @@ "34th and 1st street in New York City. #Sandy http://t.co/o68HqNP9\n", "\n", "--------------------------------------------------------\n", - "34th first street new york city sandy \n", + "4th first street new york city sandy \n", "\n", "\n", "Op dit moment zit bijna heel New York zonder stroom, door orkaan #Sandy. http://t.co/hTSyXuSg\n", @@ -51964,7 +46440,7 @@ "New York - Out of the Dark. #NewYork #Sandy http://t.co/hHTay5SW\n", "\n", "--------------------------------------------------------\n", - "new york dark newyork sandy \n", + "new york dark new york sandy \n", "\n", "\n", "Wao! RT @webarticulista: La portada de New York Magazine #Sandy http://t.co/YXGoSvM2\n", @@ -51976,7 +46452,7 @@ "Wow ... Look at how much of New York City is dark in this picture. #SANDY smh ... http://t.co/mFrmBRWb\n", "\n", "--------------------------------------------------------\n", - "wow look much new york city dark picture sandy smh \n", + "look much new york city dark picture sandy \n", "\n", "\n", "Hurricane #Sandy has caused New York's Time Square to almost look like a ghost town: http://t.co/eyyDrBIu\n", @@ -52024,7 +46500,7 @@ "Our thoughts are with everyone in New York, Connecticut & New Jersey - only the Freedom Tower is lit. #NYC #Sandy http://t.co/QT3AnOV5\n", "\n", "--------------------------------------------------------\n", - "thoughts everyone new york connecticut new jersey freedom tower lit nyc sandy \n", + "thoughts everyone new york connecticut new jersey freedom tower lit new york city sandy \n", "\n", "\n", "Para los afectados por #Sandy NO es un Feliz Domingo! #YaMeCanseDeTelevisa y de que solo hablen de New York #YaBASTA! http://t.co/paG5u278\n", @@ -52048,7 +46524,7 @@ "Im no Harvard graduate...but this doesnt look very safe to jump on... #Sandy http://t.co/SFtwpBRG\n", "\n", "--------------------------------------------------------\n", - "im harvard graduate doesnt look safe jump sandy \n", + "harvard graduate doesnt look safe jump sandy \n", "\n", "\n", "Flood waters rush in to the Hoboken PATH station through an elevator shaft. #Sandy http://t.co/QosgFyOI\n", @@ -52060,7 +46536,7 @@ "“@NYCShopGuide: Flood waters drowning the World Trade Center site. - NYC #sandy http://t.co/y9FVa6Fe” wow! Thinking of my 2nd home xxx\n", "\n", "--------------------------------------------------------\n", - "wow thinking second home xxx \n", + "thinking second home xxx \n", "\n", "\n", "Goldman Sachs - continuing to do God's work http://t.co/pt91nkW0 #Sandy\n", @@ -52072,13 +46548,13 @@ "Astronomy ties the full moon to #Sandy's high tide: http://t.co/RMIPQl3C An image via NASA http://t.co/zEklAPpC\n", "\n", "--------------------------------------------------------\n", - "astronomy ties full moon sandy high tide image via nasa \n", + "astronomy ties full moon sandy high tide imagenasa \n", "\n", "\n", "#SANDY ~ Prayers go out to the people affected in Hoboken, NJ http://t.co/Ax9qluv5\n", "\n", "--------------------------------------------------------\n", - "sandy prayers go people affected hoboken nj \n", + "sandy prayers go people affected hoboken new jersey \n", "\n", "\n", "@ryanvaughan this proves there are still good people in the world #Sandy http://t.co/ko2vAqu2\n", @@ -52090,31 +46566,19 @@ "NYPD going under water at East 8th St and Ave C in NYC due to Hurricane #Sandy http://t.co/wDpyCu4u -- FDNY EMS Website (@FDNYEMSwebsite)\n", "\n", "--------------------------------------------------------\n", - "nypd going water east 8th st ave c nyc due hurricane sandy fdny ems website \n", - "\n", - "\n", - "NICE RT@dailydot: Marathon runners board the Staten Island ferry, ready to help with #Sandy clean-up efforts \\nhttp://t.co/7RdYdPT9 #thanks\n", - "\n", - "--------------------------------------------------------\n", - "nice \n", + "nypd going water east st ave new york city due hurricane sandy fdny ems website \n", "\n", "\n", "WOW. Photo of ambulances lined up outside NYU Hospital to take patients after power was lost. #Sandy #RealHeroes http://t.co/J6Ah1GiB\n", "\n", "--------------------------------------------------------\n", - "wow photo ambulances lined outside nyu hospital take patients power lost sandy realheroes \n", + "photo ambulances lined outside nyu hospital take patients power lost sandy realheroes \n", "\n", "\n", "A photo that is doing the rounds, a home in NYC after #sandy, nice to see the community spirit is alive. #loveNYC http://t.co/iS9K3dfD\n", "\n", "--------------------------------------------------------\n", - "photo rounds home nyc sandy nice see community spirit alive lovenyc \n", - "\n", - "\n", - "Wow @stephgosk: Marathoners head to Staten Island to help @nbcnightlynews #sandy http://t.co/hvmg2oxk #sandyvolunteer\n", - "\n", - "--------------------------------------------------------\n", - "wow marathoners head staten island help sandy sandyvolunteer \n", + "photo rounds home new york city sandy nice see community spirit alive lovenyc \n", "\n", "\n", "Love this. The milk of human kindness. #Sandy http://t.co/HOFf0INq\n", @@ -52126,13 +46590,19 @@ "Stunning #nyc #sandy RT @DailyIntel: The cover of this week's magazine: http://t.co/Zyryrj9b http://t.co/yABaruBR\n", "\n", "--------------------------------------------------------\n", - "stunning nyc sandy \n", + "stunning new york city sandy \n", "\n", "\n", "Love the love in #NYC #Sandy http://t.co/ZMyWqC1j\n", "\n", "--------------------------------------------------------\n", - "love love nyc sandy \n", + "love love new york city sandy \n", + "\n", + "\n", + "“@rapo4: Wow. @DylanByers: RT @DailyIntel: The cover of this week's magazine: http://t.co/eqpcPdsX http://t.co/6j3pEX3g” wowx2 #sandy\n", + "\n", + "--------------------------------------------------------\n", + "x2 sandy \n", "\n", "\n", "I visited Cleveland's version of the #ROIC http://t.co/noIfuzvU RT @GovChristie: Talking with Pres. Obama #Sandy http://t.co/HuuNpEfY\n", @@ -52150,7 +46620,7 @@ "Flashback to Monday, near us. The river wild. MT @mattmfm\\nFlooding from East River at 20th & Ave C #Sandy http://t.co/jD9gaHZR\n", "\n", "--------------------------------------------------------\n", - "flashback monday near us river wild mt flooding east river 20th ave c sandy \n", + "flashback monday near us river wild mt flooding east river at0th ave sandy \n", "\n", "\n", "I'd love to do this type of photography for Cleveland, RT @GovChristie: Talking with Pres. Obama #Sandy http://t.co/HuuNpEfY\n", @@ -52204,7 +46674,7 @@ "i miss NY. RT @Sarah_Oestreich: NY generosity due to #sandy power outages.. It's the little things http://t.co/2sk8PwGT\n", "\n", "--------------------------------------------------------\n", - "miss ny \n", + "miss new york \n", "\n", "\n", "Park av. Postal de esta noche que contrasta, ajena, al desastre de #Sandy http://t.co/RdqlwzCt\n", @@ -52216,7 +46686,7 @@ "La petite #Sandy, qui a mal garé son bateau, est priée de venir le changer de place - http://t.co/SQjGznAw\n", "\n", "--------------------------------------------------------\n", - "petite sandy qui mal garé bateau est priée venir changer place \n", + "petite sandy mal garé bateau priée venir changer place \n", "\n", "\n", "An amazing cover photo from NYMag: http://t.co/RiAMhkj7 (via @gruber) http://t.co/WKJhRTr9\n", @@ -52240,13 +46710,13 @@ "Remarkable #Sandy @nymag cover http://t.co/qoyDwjrT (h/t @EthanKlapper via @lrozen)\n", "\n", "--------------------------------------------------------\n", - "remarkable sandy cover h \n", + "remarkable sandy cover \n", "\n", "\n", "The @NYMag #Sandy NYC cover is definitely today's most passed around image. http://t.co/KErYC5CS\n", "\n", "--------------------------------------------------------\n", - "sandy nyc cover definitely today passed around image \n", + "sandy new york city cover definitely today passed around image \n", "\n", "\n", "The @NYMag cover is breathtaking http://t.co/E7lonxWs http://t.co/aoOOu7v8\n", @@ -52264,13 +46734,13 @@ "Stunning @NYMag Cover | #sandy #NYC http://t.co/dk27CAIY http://t.co/AeeCRBds\n", "\n", "--------------------------------------------------------\n", - "stunning cover sandy nyc \n", + "stunning cover sandy new york city \n", "\n", "\n", "Surreal @NYMag cover photo of post NYC #Sandy. http://t.co/Y0Jh2vik\n", "\n", "--------------------------------------------------------\n", - "surreal cover photo post nyc sandy \n", + "surreal cover photo post new york city sandy \n", "\n", "\n", "I know everyone has retweeted it, but the @nymag front cover about Sandy is quite amazing: http://t.co/Jfew7LuK #Sandy\n", @@ -52330,7 +46800,7 @@ "Complimenti @iwanbaan (http://t.co/3dLObGHk) per la splendida foto sulla cover @NYTmag - Manhattan colpita da #Sandy http://t.co/TVFKeUIu\n", "\n", "--------------------------------------------------------\n", - "complimenti per splendida foto sulla cover manhattan colpita da sandy \n", + "complimenti splendida foto sulla cover manhattan colpita sandy \n", "\n", "\n", "this week's @nymag cover is remarkable, and beautiful. #sandy http://t.co/S23BU6c2\n", @@ -52342,13 +46812,13 @@ "Stunning #Sandy @NYmag cover of half-blacked-out NYC by Iwaan Ban http://t.co/NpqX9rK1\n", "\n", "--------------------------------------------------------\n", - "stunning sandy cover half blacked nyc iwaan ban \n", + "stunning sandy cover half blacked new york city iwaan ban \n", "\n", "\n", "what an amazing photo of NY after #Sandy on the cover of @nymag http://t.co/H7z5RG0b\n", "\n", "--------------------------------------------------------\n", - "amazing photo ny sandy cover \n", + "amazing photo new york sandy cover \n", "\n", "\n", "Breathtaking @nymag cover this week. http://t.co/7fvrGmac @BuzzFeed #sandy\n", @@ -52360,7 +46830,7 @@ "new cover of @nymag pretty much sums up our week in #nyc #sandy http://t.co/EnPQ9GHW\n", "\n", "--------------------------------------------------------\n", - "new cover pretty much sums week nyc sandy \n", + "new cover pretty much sums week new york city sandy \n", "\n", "\n", "Lights out...unreal RT @jessicamelore\\nSurreal @NYMag cover photo of post NYC #Sandy. http://t.co/lOb9QOCy\n", @@ -52372,7 +46842,7 @@ "Amazing picture of this week's outage in NYC from @nymag #Sandy http://t.co/huZFiqQw\n", "\n", "--------------------------------------------------------\n", - "amazing picture week outage nyc sandy \n", + "amazing picture week outage new york city sandy \n", "\n", "\n", "A powerful city rendered powerless. Cover of @NYMag this week. #Sandy #Blackout http://t.co/k0UkWpOK\n", @@ -52384,7 +46854,7 @@ "Wow x2 RT @unclegrambo: Wow, cover of new issue of @NYmag is amazing. http://t.co/JDuxEJPR http://t.co/zPhdhzlm\n", "\n", "--------------------------------------------------------\n", - "wow x2 \n", + "x2 \n", "\n", "\n", "The cover of the latest @NYMag. Mindblowing. #sandy http://t.co/HMS8PZQF\n", @@ -52399,12 +46869,6 @@ "incredible image manhattan black \n", "\n", "\n", - "Whoa. \\n“@HausOfBizarre: Lights out...unreal RT @jessicamelore\\nSurreal @NYMag cover photo of post NYC #Sandy. http://t.co/f4n1TNYy”\n", - "\n", - "--------------------------------------------------------\n", - "whoa lights unreal \n", - "\n", - "\n", "Eerie, amazing visual @NYMag storm cover http://t.co/wTH5lsWh http://t.co/QzCrSzRl\n", "\n", "--------------------------------------------------------\n", @@ -52426,19 +46890,19 @@ "Let there be light. @NYMag cover photo. #NYC #Sandy http://t.co/maBJcToD\n", "\n", "--------------------------------------------------------\n", - "let light cover photo nyc sandy \n", + "let light cover photo new york city sandy \n", "\n", "\n", "This @NYMag cover photo is too good to not share again. Manhattan, NYC at night after #Sandy. #SoPo http://t.co/NDY34rYt\n", "\n", "--------------------------------------------------------\n", - "cover photo good share manhattan nyc night sandy sopo \n", + "cover photo good share manhattan new york city night sandy sopo \n", "\n", "\n", "Wow, cover of new issue of @NYmag is amazing. http://t.co/xYjmR0AC http://t.co/WIoMNIt7\n", "\n", "--------------------------------------------------------\n", - "wow cover new issue amazing \n", + "cover new issue amazing \n", "\n", "\n", "Breathtaking @NYMag cover: The city & the storm: http://t.co/f5hBgLl8 RT @moorehn RT @BuzzFeed #Sandy #NYC\n", @@ -52447,16 +46911,10 @@ "breathtaking cover city storm \n", "\n", "\n", - "@BuzzFeed: Breathtaking @nymag cover this week. http://t.co/H2uBBNcj #hurricane\n", - "\n", - "--------------------------------------------------------\n", - "breathtaking cover week hurricane \n", - "\n", - "\n", "Surreal view! #sandy #nyc @NYMag http://t.co/sF2nVU39\n", "\n", "--------------------------------------------------------\n", - "surreal view sandy nyc \n", + "surreal view sandy new york city \n", "\n", "\n", "A pic of manhattan after #sandy via @NYMag #lightsout http://t.co/9t0qJhMT\n", @@ -52468,7 +46926,7 @@ "an unbelievable photo of lights-out #nyc from @nymag #sandy http://t.co/Zgs3de2X\n", "\n", "--------------------------------------------------------\n", - "unbelievable photo lights nyc sandy \n", + "unbelievable photo lights new york city sandy \n", "\n", "\n", "La copertina del nuovo numero del @NYMag è spettacolare! #Sandy #SandyNYC #sapevatelo #Usa2012 http://t.co/pO6poGIs\n", @@ -52486,7 +46944,7 @@ "Haunting cover photo by @nymag of #NYC from above at night after #Sandy http://t.co/QYdUyjYY\\n#photography #journalism\n", "\n", "--------------------------------------------------------\n", - "haunting cover photo nyc night sandy photography journalism \n", + "haunting cover photo new york city night sandy photography journalism \n", "\n", "\n", "The cover of @NYMag speaks volumes about #Sandy. Granted nicknamed #SoPo (South of Power) http://t.co/LPpkWlW2\n", @@ -52510,19 +46968,13 @@ "Sandy en las portadas (1/3)\\nNEW YORK MAGAZINE\\n¡Espectacular imagen de Iwan Baan!\\n#arquitectura #architecture #Sandy http://t.co/HGCX2QKD”\n", "\n", "--------------------------------------------------------\n", - "sandy portadas 1 3 new york magazine espectacular imagen iwan baan arquitectura architecture sandy \n", - "\n", - "\n", - "Sandy en las portadas (1/3)\\nNEW YORK MAGAZINE\\n¡Espectacular imagen de Iwan Baan!\\n#arquitectura #architecture #Sandy http://t.co/T86oH0Q1\n", - "\n", - "--------------------------------------------------------\n", - "sandy portadas 1 3 new york magazine espectacular imagen iwan baan arquitectura architecture sandy \n", + "sandy portadas new york magazine espectacular imagen iwan baan arquitectura architecture sandy \n", "\n", "\n", "#GroundZero #NYC #SANDY http://t.co/J5tsLpnz\n", "\n", "--------------------------------------------------------\n", - "groundzero nyc sandy \n", + "groundzero new york city sandy \n", "\n", "\n", "Floating cabs #Sandy http://t.co/R2BtX8k7\n", @@ -52540,7 +46992,7 @@ "Unreal photos coming out of NYC. Here's an @AP photo of seawater flooding a construction site at Ground Zero: #Sandy http://t.co/1Hsdhr4o\n", "\n", "--------------------------------------------------------\n", - "unreal photos coming nyc photo seawater flooding construction site ground zero sandy \n", + "unreal photos coming new york city photo seawater flooding construction site ground zero sandy \n", "\n", "\n", "Hoy como durante la ultima semana nuestros pensamientos y deseos d pronta recuperacion a todos los afectados x huracan http://t.co/AfvAD5Ur\n", @@ -52576,7 +47028,7 @@ "Flooding from East River at 20th St and Ave C at Peter Cooper Village [pic] #Sandy http://t.co/ggfE1vB9\n", "\n", "--------------------------------------------------------\n", - "flooding east river 20th st ave c peter cooper village pic sandy \n", + "flooding east river at0th st ave peter cooper village pic sandy \n", "\n", "\n", "Lower Manhattan #endoftheworld #Sandy http://t.co/RJtwaG7x\n", @@ -52588,13 +47040,13 @@ "مهما بلغ البشر من قوة علوم الدنيا والتكنولوجيا فلا يستطيعون منع ما يرسله الله عليهم\\n\\n@AboZid_W \\n\\n#إعصار_ساندي\\n#Sandy http://t.co/ueveJ0Jh\n", "\n", "--------------------------------------------------------\n", - "بلغ البشر قوة علوم الدنيا والتكنولوجيا يستطيعون منع يرسله الله عليهم إعصار ساندي sandy \n", + "بلغ البشر قوة علوم الدنيا والتكنولوجيا يستطيعون منع يرسله الله عليهم إعصارساندي sandy \n", "\n", "\n", "La foto virale di stamattina è questa dei taxi gialli in ammollo come paperelle di gomma ad Hoboken, New Jersey #Sandy http://t.co/Qg5svW2Z\n", "\n", "--------------------------------------------------------\n", - "foto virale di stamattina è questa dei taxi gialli ammollo come paperelle di gomma ad hoboken new jersey sandy \n", + "foto virale stamattina è questa dei taxi gialli ammollo come paperelle gomma ad hoboken new jersey sandy \n", "\n", "\n", "God Bless Our First Responders #BreezyPoint #Sandy @FDNY http://t.co/rDuivlYi\n", @@ -52606,7 +47058,7 @@ "how insane is this image!? #Sandy #NewYork http://t.co/zv6O7N7j\n", "\n", "--------------------------------------------------------\n", - "insane image sandy newyork \n", + "insane image sandy new york \n", "\n", "\n", "Another crazy pic of #Sandy in Atlantic City http://t.co/raox8OWs\n", @@ -52618,7 +47070,7 @@ "NYC this morning #Sandy #godblessNYC http://t.co/danjjOCr\n", "\n", "--------------------------------------------------------\n", - "nyc morning sandy godblessnyc \n", + "new york city morning sandy godblessnyc \n", "\n", "\n", "Como espectacular, esta foto de Ap es la mejor que he visto hasta ahora. #Sandy http://t.co/PViQ8HNM\n", @@ -52633,12 +47085,6 @@ "apple klaagt sandy kopiëren maps \n", "\n", "\n", - "@nokia Haha, Apple sues #sandy for copying Apple maps ! http://t.co/iyhCsonj\n", - "\n", - "--------------------------------------------------------\n", - "haha apple sues sandy copying apple maps \n", - "\n", - "\n", "A parking lot full of yellow cabs flooded in Hoboken. #Sandy http://t.co/x2yW0fX2\n", "\n", "--------------------------------------------------------\n", @@ -52660,7 +47106,7 @@ "This is Breezy Point, Queens as seen by @TomKaminskiWCBS in Chopper 880 this morning. http://t.co/kt8o8NwS #Sandy http://t.co/NRnW8O0s\n", "\n", "--------------------------------------------------------\n", - "breezy point queens seen chopper 880 morning sandy \n", + "breezy point queens seen chopper80 morning sandy \n", "\n", "\n", "#applemap #apple #iphone #sandy http://t.co/1F4j16Q3\n", @@ -52672,7 +47118,7 @@ "Flooding from East River at 20th St and Ave C at Peter Cooper Village #Sandy http://t.co/mit1GghO”\n", "\n", "--------------------------------------------------------\n", - "flooding east river 20th st ave c peter cooper village sandy \n", + "flooding east river at0th st ave peter cooper village sandy \n", "\n", "\n", "Jersey shore after sandy! #MTV #JerseyShore #Sandy http://t.co/mTDzwzRC\n", @@ -52693,12 +47139,6 @@ "ground zero construction site goes feet water sandy godblessamerica \n", "\n", "\n", - "Flooding from East River at 20th St and Ave C at Peter Cooper Village [pic] #Sandy http://t.co/p9SUjRhC (via @mattmfm)\n", - "\n", - "--------------------------------------------------------\n", - "flooding east river 20th st ave c peter cooper village pic sandy \n", - "\n", - "\n", "Flooding from Hurricane #Sandy at Battery Park http://t.co/IezWN63A\n", "\n", "--------------------------------------------------------\n", @@ -52711,12 +47151,6 @@ "apple sues hurricane sandy copyright infringement new maps \n", "\n", "\n", - "Incredible photo! RT @NYGovCuomo Flooding from Hurricane #Sandy at Battery Park http://t.co/9TQGN4bN\n", - "\n", - "--------------------------------------------------------\n", - "incredible photo \n", - "\n", - "\n", "#Sandy #Manhattan #elprogramadeAR http://t.co/7vG8Ti1D\n", "\n", "--------------------------------------------------------\n", @@ -52738,7 +47172,7 @@ "Tanque encallado en orilla de Staten Island de Nueva York desde #Sandy mas detalles en: http://t.co/tMOvSTcE #Veracruz http://t.co/157P5i4w\n", "\n", "--------------------------------------------------------\n", - "tanque encallado orilla staten island nueva york sandy mas detalles veracruz \n", + "tanque encallado orilla staten island nueva york sandy detalles veracruz \n", "\n", "\n", "Deadly art RT @SeeSawMe: A Fleet of Taxis underwater in #Hoboken #Hurricane #Sandy http://t.co/MhkZ7QC9 http://t.co/4t6Nmfl5 #taxi #photo\n", @@ -52756,7 +47190,7 @@ "Regardez les images impressionnantes de l'ouragan #Sandy diffusées dans #Le13H de #TF1: http://t.co/EhhPVNxA http://t.co/9Ff24sJP\n", "\n", "--------------------------------------------------------\n", - "regardez images impressionnantes l ouragan sandy diffusées dans le13h tf1 \n", + "regardez images impressionnantes ouragan sandy diffusées le13h tf1 \n", "\n", "\n", "Taxi!!!! #Sandy http://t.co/T0eHtaif\n", @@ -52765,12 +47199,6 @@ "taxi sandy \n", "\n", "\n", - "#sandy lol http://t.co/8w9iZPJM\n", - "\n", - "--------------------------------------------------------\n", - "sandy lol \n", - "\n", - "\n", "Miren una de las entrada del Brooklyn Battery Tunnel #sandy http://t.co/dROm9fcc\n", "\n", "--------------------------------------------------------\n", @@ -52786,7 +47214,7 @@ "On voit bien #Sandy sur cette superbe photo de notre planète aujourd'hui, depuis le satellite GOES-13. http://t.co/AEW868aN”\n", "\n", "--------------------------------------------------------\n", - "voit bien sandy sur cette superbe photo notre planète aujourd hui depuis satellite goes 13 \n", + "voit bien sandy cette superbe photo planète aujourd hui depuis satellite goes3 \n", "\n", "\n", "Goldman Sachs, ftw. #Sandy RT @GSElevator Nice try, God. http://t.co/mB1ok037\n", @@ -52810,13 +47238,7 @@ "El Huracán #Sandy ha dejado #paisajes insólitos. Las mejores imágenes aquí: http://t.co/CqlQWHPV #Labocheck #agua http://t.co/djDnCh3u\n", "\n", "--------------------------------------------------------\n", - "huracán sandy dejado paisajes insólitos mejores imágenes aquí labocheck agua \n", - "\n", - "\n", - "LOL! Hahaha RT @HanAltena Breaking News! #Apple klaagt #Sandy aan voor kopiëren Apple Maps. http://t.co/hvOh8F2K\n", - "\n", - "--------------------------------------------------------\n", - "lol hahaha \n", + "huracán sandydejado paisajes insólitos mejores imágenes aquí labocheck agua \n", "\n", "\n", "look at this photo of Breezy Point,Queens Watch and give please. #sandy RT @sethmeyers21 Sandy Telethon on NBC at 8PM http://t.co/GswEO0lX\n", @@ -52828,7 +47250,7 @@ "Ground Zero building site flooded via BBC #sandy http://t.co/JKb0sCfO\n", "\n", "--------------------------------------------------------\n", - "ground zero building site flooded via bbc sandy \n", + "ground zero building site floodedbbc sandy \n", "\n", "\n", "Breaking News! #Apple klaagt #Sandy aan voor kopiëren Apple Maps. http://t.co/nrzcd2op\n", @@ -52840,7 +47262,7 @@ "A rainbow over #NYC . Some hope after hurricane! #HurricaneSandy http://t.co/924g8ttm\n", "\n", "--------------------------------------------------------\n", - "rainbow nyc hope hurricane hurricanesandy \n", + "rainbow new york city hope hurricane hurricane sandy \n", "\n", "\n", "“@KristineLilly: Hurricane #Sandy!\\nhttp://t.co/OkDnI6Us”” please tell\\nMe this isn't rylie's @christierampone\n", @@ -52849,22 +47271,10 @@ "please tell rylie \n", "\n", "\n", - "Flooding has turned Ground Zero into a waterfall. @AP photo #NYC #Sandy http://t.co/ADww5Wwl\n", - "\n", - "--------------------------------------------------------\n", - "flooding turned ground zero waterfall photo nyc sandy \n", - "\n", - "\n", "#Seaside #NJ #Sandy http://t.co/287eBJ0A\n", "\n", "--------------------------------------------------------\n", - "seaside nj sandy \n", - "\n", - "\n", - "Breaking: Water Floods WTC Construction Site #hurricane #sandy #nyc #wtc http://t.co/xt6MdKvd\n", - "\n", - "--------------------------------------------------------\n", - "breaking water floods wtc construction site hurricane sandy nyc wtc \n", + "seaside new jersey sandy \n", "\n", "\n", "Remember that moment in Al Gore's film when he said flooding would drown World Trade Center site? Just happened: http://t.co/jAHcJuXP #Sandy\n", @@ -52876,7 +47286,7 @@ "¡Impresionante! Imagen mas reciente de #Sandy desde el espacio. La costa este de EUA sigue desaparecida. http://t.co/YKVyjJEp\n", "\n", "--------------------------------------------------------\n", - "impresionante imagen mas reciente sandy espacio costa eua sigue desaparecida \n", + "impresionante imagen reciente sandy espacio costa eua sigue desaparecida \n", "\n", "\n", "holy shit #sandy, chill out http://t.co/pNJw5uJk\n", @@ -52900,13 +47310,7 @@ "A double rainbow touches down in Manhattan this morning, قوس قزح بعد #اعصار_ساندي #Sandy https://t.co/e09RoQpM http://t.co/85DUEd0T\n", "\n", "--------------------------------------------------------\n", - "double rainbow touches manhattan morning قوس قزح اعصار ساندي sandy \n", - "\n", - "\n", - "“@daxholt: Wow insane hurricane pic... RT @Tami213 @daxholt Trampoline stuck on power lines! http://t.co/GclFZw4E” @HowardStern\n", - "\n", - "--------------------------------------------------------\n", - "wow insane hurricane pic \n", + "double rainbow touches manhattan morning قوس قزح اعصارساندي sandy \n", "\n", "\n", "#Sandy #WorldTradeCenter #elprogramadeAR http://t.co/MqtQ3Z9E\n", @@ -52942,7 +47346,7 @@ "عاجل 🔴\\nصورة الآن للشوارع الممتلئة بالمياه اسفل جسر مانهاتن في #نيويورك ..\\n\\n#اعصار_ساندي #إعصار_ساندي #Sandy \\n- http://t.co/EpRWGw9N\n", "\n", "--------------------------------------------------------\n", - "عاجل صورة الآن للشوارع الممتلئة بالمياه اسفل جسر مانهاتن نيويورك اعصار ساندي إعصار ساندي sandy \n", + "عاجل صورة الآن للشوارع الممتلئة بالمياه اسفل جسر مانهاتن نيويورك اعصارساندي إعصارساندي sandy \n", "\n", "\n", "Aerial shot of #Queens fire damage. #sandy #flood #superstorm #hurricane http://t.co/d93zraul\n", @@ -52954,7 +47358,7 @@ "Stunning #Sandy photo of a trampoline caught in Milford, CT power lines (via \\n@courtmcmanus). http://t.co/FruM3TJR\n", "\n", "--------------------------------------------------------\n", - "stunning sandy photo trampoline caught milford ct power lines via \n", + "stunning sandy photo trampoline caught milford ct power lines \n", "\n", "\n", "#Sandy has given us many remarkable images. Here's another one, this time of a sinking #HMSBounty http://t.co/wLrkeIdW\n", @@ -52972,7 +47376,7 @@ "Oggi #NewYork si è svegliata così. Dopo l'uragano #Sandy, l'arcobaleno sopra Manhattan! http://t.co/KuDhoucW\n", "\n", "--------------------------------------------------------\n", - "oggi newyork si è svegliata così dopo l uragano sandy l arcobaleno sopra manhattan \n", + "oggi new york si è svegliata così dopo uragano sandy arcobaleno sopra manhattan \n", "\n", "\n", "Espectacular FOTO. Inundado el espacio de reconstrucción del World Trade Center #Sandy http://t.co/U7ptOnP3\n", @@ -52996,7 +47400,7 @@ "Así quedó Jersey Shore, destruído http://t.co/woORZQtD vía @buo01 #Sandy\n", "\n", "--------------------------------------------------------\n", - "así quedó jersey shore destruído vía sandy \n", + "así quedó jersey shore destruído sandy \n", "\n", "\n", "#AtlanticCity #Frankenstorm #Sandy http://t.co/GCnR1UOO\n", @@ -53008,19 +47412,19 @@ "Amazing pic of Ground Zero flooding in NYC #Sandy http://t.co/7UUVOyKF\n", "\n", "--------------------------------------------------------\n", - "amazing pic ground zero flooding nyc sandy \n", + "amazing pic ground zero flooding new york city sandy \n", "\n", "\n", "Me pondré a llorarrrrrrrrrr:'c, así esta una calle de manhattan :'(((( #Sandy VETEEEEEEEEE, @matthunter123 reportateee! http://t.co/bYq4yoZb\n", "\n", "--------------------------------------------------------\n", - "pondré llorarrrrrrrrrr c así calle manhattan sandy veteeeeeeeee reportateee \n", + "pondré llorarrrrrrrrrr así calle manhattan sandy veteeeeeeeee reportateee \n", "\n", "\n", "#Hoboken mayor on #AC360 10p RT @PANYNJ: Flood waters rush in Hoboken PATH through elevator shaft #Sandy http://t.co/yfflIMuk\n", "\n", "--------------------------------------------------------\n", - "hoboken mayor ac360 10p \n", + "hoboken mayor ac3600p \n", "\n", "\n", "Tras la tempestad vuelve la calma ! Precioso arcoiris sobre los rascacielos de Manhattan ! #Sandy http://t.co/Z0syTqMy\n", @@ -53032,31 +47436,25 @@ "#sandy arrasa NY http://t.co/zQmdKQJf\n", "\n", "--------------------------------------------------------\n", - "sandy arrasa ny \n", + "sandy arrasa new york \n", "\n", "\n", "Flying trampoline in #Sandy... CT >> New Milford >> http://t.co/L7AvFbR4\n", "\n", "--------------------------------------------------------\n", - "flying trampoline sandy ct greater greater new milford greater greater \n", + "flying trampoline sandy ct new milford \n", "\n", "\n", "La Zona Cero, memorial del 9/11 se ha convertido en una cascada http://t.co/rxzzomAM #NYC #Sandy Foto: AP\n", "\n", "--------------------------------------------------------\n", - "zona cero memorial 9 11 convertido cascada nyc sandy foto ap \n", - "\n", - "\n", - "Amazing pic of Ground Zero flooding in NYC #Sandy http://t.co/AuI2hCeM\"\n", - "\n", - "--------------------------------------------------------\n", - "amazing pic ground zero flooding nyc sandy \n", + "zona cero memorial del1 seconvertido cascada new york city sandy foto ap \n", "\n", "\n", "En alerta por #Sandy en los consulados Mexicanos aqui en EU http://t.co/aan4eyA1\n", "\n", "--------------------------------------------------------\n", - "alerta sandy consulados mexicanos aqui eu \n", + "alerta sandy consulados mexicanos aqui \n", "\n", "\n", "Impresionante inundación en Nueva York x el paso del huracán #Sandy: http://t.co/wCWZd5PH (foto via @Franallel)\n", @@ -53086,25 +47484,25 @@ "صورة للمياة وهي تغمر حفرة لمبنى قيد الإنشاء بنيويورك #إعصار_ساندي #السعودية #Sandy #saudi #uae #ksa http://t.co/D2uAH1b6\n", "\n", "--------------------------------------------------------\n", - "صورة للمياة وهي تغمر حفرة لمبنى قيد الإنشاء بنيويورك إعصار ساندي السعودية sandy saudi uae ksa \n", + "صورة للمياة وهي تغمر حفرة لمبنى قيد الإنشاء بنيويورك إعصارساندي السعودية sandy saudi uae ksa \n", "\n", "\n", "Mireu aquesta foto del sud de Manhattan on es veu una zona d'obres inundada. Via @AP #Sandy #inforac1 http://t.co/NH1nAFVL\n", "\n", "--------------------------------------------------------\n", - "mireu aquesta foto sud manhattan veu zona obres inundada via sandy inforac1 \n", + "mireu aquesta foto sud manhattan veu zona obres inundada sandy inforac1 \n", "\n", "\n", "Imagen de NY. Sorprendente. #Sandy http://t.co/zCWlcOx9\n", "\n", "--------------------------------------------------------\n", - "imagen ny sorprendente sandy \n", + "imagen new york sorprendente sandy \n", "\n", "\n", "De todas las fotos q he visto de #Sandy , ésta es una de las q más me ha llamado la atención http://t.co/42MSyCEN\n", "\n", "--------------------------------------------------------\n", - "todas fotos q visto sandy ésta q llamado atención \n", + "todas fotos q visto sandy ésta q mellamado atención \n", "\n", "\n", "#Sandy hundió al barco de los ‘Piratas del Caribe’ http://t.co/K5B3UzBl - http://t.co/TMxErP3r\n", @@ -53140,7 +47538,7 @@ "Cuando cierran hasta los McDonald's, es señal de que se avecina algo fuerte #Sandy (vía @cwelchCNN en NY) http://t.co/HyZkl4rq\n", "\n", "--------------------------------------------------------\n", - "cierran mcdonald señal avecina fuerte sandy vía ny \n", + "cierran mcdonald señal avecina fuerte sandy new york \n", "\n", "\n", "President Obama on Hurricane #Sandy: \"Take this very seriously\": http://t.co/joUrWYJd Photo @FEMA today: http://t.co/byviJKh6\n", @@ -53179,28 +47577,22 @@ "gestures like sandy warms heart amazing people band together tragedy \n", "\n", "\n", - "Hurricane 😱 http://t.co/UhrDDCe3\n", - "\n", - "--------------------------------------------------------\n", - "hurricane \n", - "\n", - "\n", "Des marathoniens se rendent à Staten Island pour aider les victimes de #Sandy (via @CBSSports). http://t.co/3Qa4NxEF\n", "\n", "--------------------------------------------------------\n", - "des marathoniens rendent à staten island pour aider victimes sandy \n", + "marathoniens rendentstaten island aider victimes sandy \n", "\n", "\n", "#QueTodoTwitterSeEntereQue #Sandy también pasó por CUBA, JAMAICA, HAITÍ y REPÚBLICA DOMINICANA / vía A.E.L.L.A http://t.co/OwWFHUGn\n", "\n", "--------------------------------------------------------\n", - "quetodotwitterseentereque sandy pasó cuba jamaica haití república dominicana vía l l \n", + "quetodotwitterseentereque sandy pasó cuba jamaica haití república dominicana \n", "\n", "\n", "Bel exemple d'entraide aux Etats-Unis ! #Sandy http://t.co/EcvURLib\n", "\n", "--------------------------------------------------------\n", - "bel exemple entraide aux etats unis sandy \n", + "bel exemple entraide etats unis sandy \n", "\n", "\n", "People can be pretty f*cking awesome... #Sandy http://t.co/mTmpJtEz\n", @@ -53236,7 +47628,7 @@ "l'entraide entre les New-Yorkais après #Sandy n'est pas une vue de l'esprit ! Bravo ! http://t.co/keQVhRRk\n", "\n", "--------------------------------------------------------\n", - "l entraide new yorkais après sandy n est pas une vue l esprit bravo \n", + "entraide new yorkais après sandy vue esprit bravo \n", "\n", "\n", "Dear mainstream media, #Sandy obliterated Cuba as well. Surely this wasn't your priority #BiasedMedia http://t.co/hxNArKDn\n", @@ -53248,19 +47640,19 @@ "Passing a gas line in Sunset Park- 8... 9... 10 blocks... 11... 12.... 13... 14... 15... 16 blocks. OMFG. #sandy http://t.co/0OEMlpV7\n", "\n", "--------------------------------------------------------\n", - "passing gas line sunset park 8 9 10 blocks 11 12 13 14 15 16 blocks omfg sandy \n", + "passing gas line sunset park 0 blocks 1 2 3 4 5 6 blocks sandy \n", "\n", "\n", "East river park. 10:30 am. #sandy http://t.co/5bDESIjh\n", "\n", "--------------------------------------------------------\n", - "east river park 10 30 sandy \n", + "east river park sandy \n", "\n", "\n", "Power is back downtown Manhattan #sandy #NYC http://t.co/nHpvQvQk\n", "\n", "--------------------------------------------------------\n", - "power back downtown manhattan sandy nyc \n", + "power back downtown manhattan sandy new york city \n", "\n", "\n", "Now this is a TRUE Neighbor. #sandy http://t.co/aZ1HWW2d\n", @@ -53278,7 +47670,7 @@ "SANDY HIT CUBA TOO #NYC #SANDY #CUBA http://t.co/fQfOcKc1\n", "\n", "--------------------------------------------------------\n", - "sandy hit cuba nyc sandy cuba \n", + "sandy hit cuba new york city sandy cuba \n", "\n", "\n", "This restores my faith in humanity. After Hurricane #Sandy... http://t.co/FWfPGkt6\n", @@ -53287,12 +47679,6 @@ "restores faith humanity hurricane sandy \n", "\n", "\n", - "Dear Mainstream Media - Cuba is also affected by #Sandy http://t.co/YJqv8jNW\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media cuba also affected sandy \n", - "\n", - "\n", "Dear Media, #Sandy passed by #Cuba also http://t.co/9xolvcu4\n", "\n", "--------------------------------------------------------\n", @@ -53314,7 +47700,7 @@ "I was born in NY, raised in NJ. That means many things... like we don't give up and we believe in community! #Sandy http://t.co/gEv5QSSf\n", "\n", "--------------------------------------------------------\n", - "born ny raised nj means many things like give believe community sandy \n", + "born new york raised new jersey means many things like give believe community sandy \n", "\n", "\n", "I love this picture. #Sandy http://t.co/Xncvu7Wg\n", @@ -53323,12 +47709,6 @@ "love picture sandy \n", "\n", "\n", - "SANDY HIT CUBA TOO #NYC #SANDY #CUBA http://t.co/hCdSCDBX”\n", - "\n", - "--------------------------------------------------------\n", - "sandy hit cuba nyc sandy cuba \n", - "\n", - "\n", "Shockingly true tweet #Sandy ... http://t.co/UEh2PMnx\n", "\n", "--------------------------------------------------------\n", @@ -53344,13 +47724,13 @@ "#The darkest Halloween in downtown NYC from #sandy http://t.co/HK9O6QvI\n", "\n", "--------------------------------------------------------\n", - "darkest halloween downtown nyc sandy \n", + "darkest halloween downtown new york city sandy \n", "\n", "\n", "Man named Ralph in Hoboken, NJ shows true humanity after getting power back. #goodpeople #Sandy Bless you, Ralph! http://t.co/Hyj7f7jH\n", "\n", "--------------------------------------------------------\n", - "named ralph hoboken nj shows true humanity getting power back goodpeople sandy bless ralph \n", + "named ralph hoboken new jersey shows true humanity getting power back goodpeople sandy bless ralph \n", "\n", "\n", "Sharing. #Sandy http://t.co/t5YQ4EeH\n", @@ -53362,7 +47742,7 @@ "@AnonyOps @OccupyWallStNYC @OccupyWallSt @SuicideGirls @AnonIRC They say a picture tells a thousand words. #Sandy #NYC http://t.co/U43GT1fx\n", "\n", "--------------------------------------------------------\n", - "say picture tells thousand words sandy nyc \n", + "say picture tells thousand words sandy new york city \n", "\n", "\n", "Humanity :) photo from New Jersey #Sandy http://t.co/x4z8JmWA\n", @@ -53380,7 +47760,7 @@ "نيويورك الان حيث لا يظهر سوى قمة مبنى امباير ستيت مضيئا #Sandy #إعصار_ساندي #الكويت #ساندي #السعودية #الامارات http://t.co/kivImND5\n", "\n", "--------------------------------------------------------\n", - "نيويورك الان يظهر قمة مبنى امباير ستيت مضيئا sandy إعصار ساندي الكويت ساندي السعودية الامارات \n", + "نيويورك الان يظهر قمة مبنى امباير ستيت مضيئا sandy إعصارساندي الكويت ساندي السعودية الامارات \n", "\n", "\n", "Lower Manhattan sin electricidad debido a los embates de #Sandy | De: AFP http://t.co/0lstshBt\n", @@ -53395,12 +47775,6 @@ "good morning every one blest day stay safe thankful loveoneanother may give god joy remember sandy \n", "\n", "\n", - "Whoah. RT @Belstaff: This picture says it all. #Sandy #newyorkcity http://t.co/p1Hz1oO8\n", - "\n", - "--------------------------------------------------------\n", - "whoah \n", - "\n", - "\n", "#Sandy on Cuba http://t.co/p69nREsj\n", "\n", "--------------------------------------------------------\n", @@ -53410,13 +47784,13 @@ "Queridos Medios de \"Comunicación\", #Sandy también nos ha jodido a nosotros. Atentamente, Cuba. http://t.co/NUaVOu45\n", "\n", "--------------------------------------------------------\n", - "queridos medios comunicación sandy jodido atentamente cuba \n", + "queridos medios comunicación sandy nosjodido atentamente cuba \n", "\n", "\n", "Crane on 57 street collapsed. So dangerous! #NYC #Hurricane #Sandy http://t.co/s6T3oHtR\n", "\n", "--------------------------------------------------------\n", - "crane 57 street collapsed dangerous nyc hurricane sandy \n", + "crane on7 street collapsed dangerous new york city hurricane sandy \n", "\n", "\n", "This is so unreal. #OCMD #Sandy http://t.co/2DtFIMof\n", @@ -53428,19 +47802,13 @@ "Why individuals > government. #LetThemEatMarathons #Sandy http://t.co/8yNlNrpi\n", "\n", "--------------------------------------------------------\n", - "individuals greater government letthemeatmarathons sandy \n", - "\n", - "\n", - "“@LoDownNY: @ARaeAshcraft - yikes RT: East River Park. At 10:30 am. #Sandy #frankenstorm http://t.co/1ZUAS7FE”\n", - "\n", - "--------------------------------------------------------\n", - "yikes \n", + "individuals government letthemeatmarathons sandy \n", "\n", "\n", "El huracán #Sandy también arraso en Cuba y Haití... y nadie dice nada. Por lo menos van 67 muertos :( http://t.co/sge4nHfX\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arraso cuba haití nadie dice menos 67 muertos \n", + "huracán sandy arraso cuba haití nadie dice menos van7 muertos \n", "\n", "\n", "Nachbarschaftshilfe in ❤New York❤\\n\\n#Sandy http://t.co/9AEd59oX\n", @@ -53455,40 +47823,28 @@ "shittymedia sandy \n", "\n", "\n", - "#Sandy Cuba. http://t.co/hieQjEiU\n", - "\n", - "--------------------------------------------------------\n", - "sandy cuba \n", - "\n", - "\n", "Le une historique du magazine de la ville de #NewYork #USA #Sandy http://t.co/yQydD0ms\n", "\n", "--------------------------------------------------------\n", - "une historique magazine ville newyork usa sandy \n", + "historique magazine ville new york usa sandy \n", "\n", "\n", "There still good people on this world !! #NewYork #Sandy #SandyNYC http://t.co/pHVglpiD\n", "\n", "--------------------------------------------------------\n", - "still good people world newyork sandy sandynyc \n", + "still good people world new york sandy sandynyc \n", "\n", "\n", "#NYC after #Sandy by night http://t.co/2Q61YrMK\n", "\n", "--------------------------------------------------------\n", - "nyc sandy night \n", - "\n", - "\n", - "C'mon Son!! #sandy http://t.co/f3yuyUAO\n", - "\n", - "--------------------------------------------------------\n", - "c mon sandy \n", + "new york city sandy night \n", "\n", "\n", "Corner of 23rd St and 10th Avenue #Sandy http://t.co/vw2KYRwZ\n", "\n", "--------------------------------------------------------\n", - "corner 23rd st 10th avenue sandy \n", + "corner of3rd st and0th avenue sandy \n", "\n", "\n", "Tears. Fireman saving dog caught in hurricane: http://t.co/2ZPRhogf (Photo via @PrincessGwenie1) #Sandy\n", @@ -53512,7 +47868,7 @@ "And Jamaica #Sandy >> RT @aidscuntagious: @AnonOpsSweden @AnonChingShih And #Jamaica http://t.co/Ih1Yoi0O\n", "\n", "--------------------------------------------------------\n", - "jamaica sandy greater greater \n", + "jamaica sandy \n", "\n", "\n", "STUPID #SANDY YOU CAN'T MAIL A CAR. http://t.co/OX6S4eID\n", @@ -53530,13 +47886,13 @@ "La ciudad que nunca duerme #NewYork #Sandy http://t.co/CX9nKmbR\n", "\n", "--------------------------------------------------------\n", - "ciudad nunca duerme newyork sandy \n", + "ciudad nunca duerme new york sandy \n", "\n", "\n", "In NJ! So cool! #Sandy http://t.co/gNqzfr2X\n", "\n", "--------------------------------------------------------\n", - "nj cool sandy \n", + "new jersey cool sandy \n", "\n", "\n", "Hurricane A-rod #mlbmemes http://t.co/1cyx4OdM\n", @@ -53548,49 +47904,37 @@ "This is how #Manhattan looked like for 5 days. #NYC #NewYork #Sandy http://t.co/wV9vgFYs\n", "\n", "--------------------------------------------------------\n", - "manhattan looked like 5 days nyc newyork sandy \n", + "manhattan looked like days new york city new york sandy \n", "\n", "\n", "Ils sont sympa ces new-yorkais (via @ppgarcia75 ) #Sandy http://t.co/jsP1IXsu\n", "\n", "--------------------------------------------------------\n", - "ils sont sympa ces new yorkais sandy \n", - "\n", - "\n", - "I love it!! RT @CerromeZONE: RT @AmberGoodhand: This makes me warm all over! #Sandy http://t.co/6SBPhpuB\n", - "\n", - "--------------------------------------------------------\n", - "love \n", + "sympa new yorkais sandy \n", "\n", "\n", "#Sandy Seul l'Empire State Building reste éclairé ! #NY #USA http://t.co/nQn32no8\n", "\n", "--------------------------------------------------------\n", - "sandy seul l empire state building reste éclairé ny usa \n", - "\n", - "\n", - "@SarahAlMohanna1: #SANDY #Respect http://t.co/2kidmRLz\n", - "\n", - "--------------------------------------------------------\n", - "sandy respect \n", + "sandy seul empire state building reste éclairé new york usa \n", "\n", "\n", "Wow! Heartbreaking MT“@JohnSchriffen: Unbelievable scene flying over #StatenIsland in an #NYPD helicopter #Sandy @ABC http://t.co/gBi78Jq6”\n", "\n", "--------------------------------------------------------\n", - "wow heartbreaking mt \n", + "heartbreaking mt \n", "\n", "\n", "PHOTO OF AN @FDNY RESCUING A DOG FROM #SANDY. #911BUFF http://t.co/YxMGrwd4\n", "\n", "--------------------------------------------------------\n", - "photo rescuing dog sandy 911buff \n", + "photo rescuing dog sandy \n", "\n", "\n", "This picture says it all. #Sandy #newyorkcity http://t.co/4YuN5RFW\n", "\n", "--------------------------------------------------------\n", - "picture says sandy newyorkcity \n", + "picture says sandy new yorkcity \n", "\n", "\n", "Imágenes que no se ven en los medios. #Sandy también azotó Cuba, Jamaica, Haití y República Dominicana http://t.co/s1NOqfMj\n", @@ -53608,7 +47952,7 @@ "#Sandy paraliza la actividad económica y política en el NE de los EU en la última semana, previo a #Elecciones2012! http://t.co/gR2De6KB\n", "\n", "--------------------------------------------------------\n", - "sandy paraliza actividad económica política ne eu última semana previo elecciones2012 \n", + "sandy paraliza actividad económica política última semana previo elecciones2012 \n", "\n", "\n", "This is sweet. #sandy http://t.co/qNOlh56f\n", @@ -53620,7 +47964,7 @@ "FDR DRIVE REMAINS CLOSED IN BOTH DIRECTIONS WHILE ITS COMPLETELY UNDERWATER. #SANDY #911BUFF http://t.co/mmGQfeAx\n", "\n", "--------------------------------------------------------\n", - "fdr drive remains closed directions completely underwater sandy 911buff \n", + "fdr drive remains closed directions completely underwater sandy11buff \n", "\n", "\n", "There is hope! RT @BangBangMommy: Helping each other in Hoboken #6abcsandy #Sandy http://t.co/IK8urcEQ\n", @@ -53632,7 +47976,7 @@ "LOVE THIS!! Community Comes Together After #Sandy in Hoboken, NJ @NYTMetro @nycgov http://t.co/KPSMCy1k\n", "\n", "--------------------------------------------------------\n", - "love community comes together sandy hoboken nj \n", + "love community comes together sandy hoboken new jersey \n", "\n", "\n", "#VeryCool RT @TommyTenney: RT @TerynSpears: American Spirit #Sandy #ILoveNY http://t.co/c7XNfWMA // This pic says it all...\n", @@ -53644,7 +47988,7 @@ "Proof of Humanity, spotted in NYC. #Sandy #socialgood http://t.co/ltr4MGMy\n", "\n", "--------------------------------------------------------\n", - "proof humanity spotted nyc sandy socialgood \n", + "proof humanity spotted new york city sandy socialgood \n", "\n", "\n", "Faith in humanity restored. #sandy #aftermath http://t.co/vd26IZpU\n", @@ -53662,13 +48006,7 @@ "Neighbors helping neighbors in Hoboken, NJ (via Facebook) #sandy http://t.co/zPMsXBYW\n", "\n", "--------------------------------------------------------\n", - "neighbors helping neighbors hoboken nj via facebook sandy \n", - "\n", - "\n", - "@AlexYudelson: Remember when President Bush was on vacation during Hurricane Katrina? This is President Obama #p2 http://t.co/6lPYHOk1\n", - "\n", - "--------------------------------------------------------\n", - "remember president bush vacation hurricane katrina president obama p2 \n", + "neighbors helping neighbors hoboken new jersey facebook sandy \n", "\n", "\n", "This makes me warm all over! #Sandy http://t.co/bAk6SZxv\n", @@ -53680,7 +48018,7 @@ "#solidarité On se mobilise aux States pour rester connecté après la ravageuse #Sandy (Photo by George Takei) http://t.co/gpdLyGev\n", "\n", "--------------------------------------------------------\n", - "solidarité mobilise aux states pour rester connecté après ravageuse sandy photo george takei \n", + "solidarité mobilise states rester connecté après ravageuse sandy photo george takei \n", "\n", "\n", "Ahora que todos estamos viendo las consecuencias de #Sandy \"Dear mainstream media...\" http://t.co/S1kxb9I0\n", @@ -53692,19 +48030,13 @@ "Cuando cierran hasta los McDonald's, es señal de que se avecina algo fuerte #Sandy (vía @cwelchCNN desde Nueva York) http://t.co/NQuXeSba\n", "\n", "--------------------------------------------------------\n", - "cierran mcdonald señal avecina fuerte sandy vía nueva york \n", + "cierran mcdonald señal avecina fuerte sandy nueva york \n", "\n", "\n", "Power of kindness!! #sandy #hurricanesandy #hoboken \\n@CeylanAtinc http://t.co/oUUkgdYZ\n", "\n", "--------------------------------------------------------\n", - "power kindness sandy hurricanesandy hoboken \n", - "\n", - "\n", - "wow, nice :) RT @AmberGoodhand This makes me warm all over! #Sandy http://t.co/DuF6ucAd\n", - "\n", - "--------------------------------------------------------\n", - "wow nice \n", + "power kindness sandy hurricane sandy hoboken \n", "\n", "\n", "Dear mainstream media... | #sandy #cuba http://t.co/5JPb0Cba\n", @@ -53716,13 +48048,13 @@ "National Guard near 25th and 3rd #Sandy http://t.co/RKAos6F2\n", "\n", "--------------------------------------------------------\n", - "national guard near 25th 3rd sandy \n", + "national guard near5th sandy \n", "\n", "\n", "#Sandy #Cuba #mainstreammedia #ohnekommentar http://t.co/OUXRbynR\n", "\n", "--------------------------------------------------------\n", - "sandy cuba mainstreammedia ohnekommentar \n", + "sandy cuba mainstreammedia nekommentar \n", "\n", "\n", "@ramonasinger this picture made me smile #sandy. Still can't believe you know when my birthday is! Turtle time? http://t.co/EUwAmAm6\n", @@ -53758,37 +48090,25 @@ "Esto es la fila de taxis esperando para cargar gasolina porque hay muy pocas gasolinerias funcionando #NYC #Sandy http://t.co/6KurxeH0\n", "\n", "--------------------------------------------------------\n", - "fila taxis esperando cargar gasolina pocas gasolinerias funcionando nyc sandy \n", - "\n", - "\n", - "#Sandy #Cuba http://t.co/FXllqMbF\n", - "\n", - "--------------------------------------------------------\n", - "sandy cuba \n", + "fila taxis esperando cargar gasolina pocas gasolinerias funcionando new york city sandy \n", "\n", "\n", "Still no power in Soho--besides NYU's ample backup, a privilege not shared w/their elderly neighbors/tenants #sandy http://t.co/6NITiGC5\n", "\n", "--------------------------------------------------------\n", - "still power soho besides nyu ample backup privilege shared w elderly neighbors tenants sandy \n", - "\n", - "\n", - "Oh, you're preparing for #Hurricane #Sandy? http://t.co/eSAjjNbh\n", - "\n", - "--------------------------------------------------------\n", - "oh preparing hurricane sandy \n", + "still power besides nyu ample backup privilege shared w elderly neighbors tenants sandy \n", "\n", "\n", "A Power strip, a drop-cord and a good samaritan. Hoboken NJ #Sandy http://t.co/nTD79Jlq\n", "\n", "--------------------------------------------------------\n", - "power strip drop cord good samaritan hoboken nj sandy \n", + "power strip drop cord good samaritan hoboken new jersey sandy \n", "\n", "\n", "#newyorkers are resilient even in #sandy's aftermath. love this image http://t.co/j42dzGM9\n", "\n", "--------------------------------------------------------\n", - "newyorkers resilient even sandy aftermath love image \n", + "new yorkers resilient even sandy aftermath love image \n", "\n", "\n", "En #CUBA dicen que #EsIndispensableSaber que a ellos tambien les afecto #Sandy por eso mandan este mensaje! http://t.co/dqYdTto1\n", @@ -53802,13 +48122,7 @@ "--------------------------------------------------------\n", "tranqui cal q obriu foto són els efectes sandy però són manhattan república dominicana cuba \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "#Leadership RT @AlexYudelson: Remember President Bush on vacation during Hurricane Katrina? This is President Obama #p2 http://t.co/p6W3pOhh\n", "\n", "--------------------------------------------------------\n", @@ -53818,7 +48132,7 @@ "On parle de NY (où vit ma famille), mais pitié n'oublions pas Haïti, Cuba et la République Dominicaine.. #sandy http://t.co/Ic0Er96r\n", "\n", "--------------------------------------------------------\n", - "parle ny où vit famille mais pitié n oublions pas haïti cuba et république dominicaine sandy \n", + "parle new york où vit famille pitié oublions haïti cuba république dominicaine sandy \n", "\n", "\n", "alles spricht nur von den \"schlimmen\" Problemen an der Ostküste #sandy #hurricane #cuba http://t.co/DfCtL9QC\n", @@ -53830,13 +48144,7 @@ "Después de la tormenta #Sandy sale el sol bello arco iris asoma en Sur de Brooklin http://t.co/uuSWXhPE via @jpodhoretz\n", "\n", "--------------------------------------------------------\n", - "después tormenta sandy sale sol bello arco iris asoma sur brooklin \n", - "\n", - "\n", - "Manhattan a oscuras. http://t.co/lw2oJcBc (vía @nytjim ) #sandy\n", - "\n", - "--------------------------------------------------------\n", - "manhattan oscuras vía sandy \n", + "después tormenta sandy sale sol bello arco iris asoma brooklin \n", "\n", "\n", "¡Este hombre es un Héroe! Salvo a este perrito en medio del huracán #Sandy http://t.co/wHr3VEeA\n", @@ -53866,7 +48174,7 @@ "Sharing is caring #Sandy #NY http://t.co/QCGm7vEl\n", "\n", "--------------------------------------------------------\n", - "sharing caring sandy ny \n", + "sharing caring sandy new york \n", "\n", "\n", "extraordinary random act of kindness #Sandy http://t.co/Ae3DG4Gr\n", @@ -53878,7 +48186,7 @@ "Orkaan Sandy niet enkel in NY, graag ook mediaaandacht voor andere landen en streken! #sandy #media http://t.co/Ow1N4qj5\n", "\n", "--------------------------------------------------------\n", - "orkaan sandy enkel ny graag mediaaandacht landen streken sandy media \n", + "orkaan sandy enkel new york graag mediaaandacht landen streken sandy media \n", "\n", "\n", "Coucou Haïti, Cuba... “@JulR: Dear mainstream media... #sandy http://t.co/BJArj0M7”\n", @@ -53890,7 +48198,7 @@ "Dear Mainstream Media… from Cuba #HurricaneSandy #sandy http://t.co/NlAPxyb6\n", "\n", "--------------------------------------------------------\n", - "dear mainstream media cuba hurricanesandy sandy \n", + "dear mainstream media cuba hurricane sandy sandy \n", "\n", "\n", "После урагана #Сэнди люди помогают друг другу по мелочам #ньюйорк #тайфун #usa #Sandy http://t.co/qaLeYo0q\n", @@ -53902,7 +48210,7 @@ "#PrayForAmerica #Sandy; 132004 погибших со всех городов. http://t.co/ZXXo7v4J\n", "\n", "--------------------------------------------------------\n", - "prayforamerica sandy 132004 погибших городов \n", + "prayforamerica sandy004 погибших городов \n", "\n", "\n", "Stunning image of much of Manhattan plunged into a power outage as #Sandy churns on. Photo via @nicksumm - http://t.co/YmF7NWtj\n", @@ -53926,43 +48234,37 @@ "фото которое прям душу трогает #ньюйорк #шторм #newyork #sandy http://t.co/ghan2s98\n", "\n", "--------------------------------------------------------\n", - "фото которое прям душу трогает ньюйорк шторм newyork sandy \n", + "фото которое прям душу трогает ньюйорк шторм new york sandy \n", "\n", "\n", "hope for humanity #sandy #HurricaneSandy http://t.co/1HeU9icj\n", "\n", "--------------------------------------------------------\n", - "hope humanity sandy hurricanesandy \n", - "\n", - "\n", - "@JoanTubau @sinonevero Only in NY #Sandy http://t.co/QMDhRl0n\n", - "\n", - "--------------------------------------------------------\n", - "ny sandy \n", + "hope humanity sandy hurricane sandy \n", "\n", "\n", "Massive bang and this giant skyscraper crane outside my office just buckled... Scary. #Sandy #NY #CNN http://t.co/LQN3424h\n", "\n", "--------------------------------------------------------\n", - "massive bang giant skyscraper crane outside office buckled scary sandy ny cnn \n", + "massive bang giant skyscraper crane outside office buckled scary sandy new york cnn \n", "\n", "\n", "Tutti parlano di #Sandy a NY , ecco i danni di #Sandy nella repubblica Domenicana. #Sandy di cui non si parla http://t.co/w0NmcycD\n", "\n", "--------------------------------------------------------\n", - "tutti parlano di sandy ny ecco danni di sandy nella repubblica domenicana sandy di cui non si parla \n", + "tutti parlano sandy new york ecco danni sandy nella repubblica domenicana sandy cui non si parla \n", "\n", "\n", "Photo by Iwan Baan\\n#ny #sandy http://t.co/IYqi7a0K\n", "\n", "--------------------------------------------------------\n", - "photo iwan baan ny sandy \n", + "photo iwan baan new york sandy \n", "\n", "\n", "HURRICANE SANDRA DEE OMG IM DEAD http://t.co/3SXRNwvG\n", "\n", "--------------------------------------------------------\n", - "hurricane sandra dee omg im dead \n", + "hurricane sandra dee dead \n", "\n", "\n", "Unbelievable scene flying over #StatenIsland in an #NYPD helicopter. Those are not little toys! #Sandy @ABC http://t.co/MNSogBJE\n", @@ -53977,12 +48279,6 @@ "lower manhattan still dark sandy \n", "\n", "\n", - "@ItIsJimCarrey: Oh, you're preparing for #Hurricane #Sandy? http://t.co/AjGi6txj\n", - "\n", - "--------------------------------------------------------\n", - "oh preparing hurricane sandy \n", - "\n", - "\n", "Alle luci dell'Empire State tornano a fare eco quelle della Freedom Tower. In mezzo però ancora buio fitto #Sandy http://t.co/g010fzfe\n", "\n", "--------------------------------------------------------\n", @@ -53992,7 +48288,7 @@ "La solidarité américaine.. C'est beau ! Peu de chance de voir ça en France. #newyork #Sandy http://t.co/Vzf81YsI\n", "\n", "--------------------------------------------------------\n", - "solidarité américaine c est beau peu chance voir ça france newyork sandy \n", + "solidarité américaine beau peu chance voir ça france new york sandy \n", "\n", "\n", "These people are Muslims without Islam !\\n#Sandy #Help #Respect http://t.co/bmreEDmz\n", @@ -54019,22 +48315,16 @@ "generosity spirit sandy \n", "\n", "\n", - "Hoboken, NJ. #sandy http://t.co/5IR42HzD\n", - "\n", - "--------------------------------------------------------\n", - "hoboken nj sandy \n", - "\n", - "\n", "Now this is resourceful #Sandy #NYC http://t.co/7t1j59QI\n", "\n", "--------------------------------------------------------\n", - "resourceful sandy nyc \n", + "resourceful sandy new york city \n", "\n", "\n", "NYC almost one week ago http://t.co/bfiEHp3D via @IanikMarcil http://t.co/7Ym7D6Zh\n", "\n", "--------------------------------------------------------\n", - "nyc almost one week ago \n", + "new york city almost one week ago \n", "\n", "\n", "Liten tankeställare! #cuba #sandy http://t.co/kwG700Kv\n", @@ -54052,7 +48342,7 @@ "Photo: A first responder rescues a #dog from a #NYC storm drain. Get your #Sandy news at http://t.co/w0dJpvR2 http://t.co/objNUW22\n", "\n", "--------------------------------------------------------\n", - "photo first responder rescues dog nyc storm drain get sandy news \n", + "photo first responder rescues dog new york city storm drain get sandy news \n", "\n", "\n", "Republicans: Remember when President Bush was on vacation during Hurricane Katrina? This is President Obama http://t.co/NUt5dl2t @NewsNation\n", @@ -54070,13 +48360,13 @@ "Good example of America doing it right #NYC #Sandy #Frankenstorm http://t.co/WpapzyRA\n", "\n", "--------------------------------------------------------\n", - "good example america right nyc sandy frankenstorm \n", + "good example america right new york city sandy frankenstorm \n", "\n", "\n", "Those #people Affected by #hurricanesandy #sandy keep on showing us that #good #hearts can kick #mothernature Ass! #NYC http://t.co/rgRKPXj3\n", "\n", "--------------------------------------------------------\n", - "people affected hurricanesandy sandy keep showing us good hearts kick mothernature ass nyc \n", + "people affected hurricane sandy sandy keep showing us good hearts kick mothernature ass new york city \n", "\n", "\n", "This is awesome #Sandy http://t.co/UGFLvA5s\n", @@ -54097,22 +48387,10 @@ "people awesome sandy \n", "\n", "\n", - "RT- @nagoul1: Dear Mainstream Media - Cuba is also affected by #Sandy http://t.co/WZFBMNKW \\n\\n*LOVE that country!!! TY for that tweet...\n", - "\n", - "--------------------------------------------------------\n", - "rt dear mainstream media cuba also affected sandy love country ty tweet \n", - "\n", - "\n", "Shocking image of #NY blackout after #Sandy http://t.co/cj220hjO\n", "\n", "--------------------------------------------------------\n", - "shocking image ny blackout sandy \n", - "\n", - "\n", - "#Sandy NY http://t.co/gXjQ3W7a\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", + "shocking image new york blackout sandy \n", "\n", "\n", "GOD BLESS DEM AND THEIR LIGHT BILL RT @CerromeZONE: RT @AmberGoodhand: This makes me warm all over! #Sandy http://t.co/HbS2Lcja\n", @@ -54130,25 +48408,25 @@ "#Sandy ha colpito anche Haiti, Cuba, Repubblica Dominicana e Giamaica. Non solo l'America demmerda http://t.co/iBCBk82q\n", "\n", "--------------------------------------------------------\n", - "sandy colpito anche haiti cuba repubblica dominicana giamaica non solo l america demmerda \n", + "sandycolpito anche haiti cuba repubblica dominicana giamaica non solo america demmerda \n", "\n", "\n", "Another line of fire fighters moving into Toms River, NJ. #sandy #sandynj http://t.co/DDusJL9T\n", "\n", "--------------------------------------------------------\n", - "another line fire fighters moving toms river nj sandy sandynj \n", + "another line fire fighters moving toms river new jersey sandy sandynj \n", "\n", "\n", "Seen in Hoboken, NJ #Sandy https://t.co/HTxc7xhz http://t.co/En7iTc93\n", "\n", "--------------------------------------------------------\n", - "seen hoboken nj sandy \n", + "seen hoboken new jersey sandy \n", "\n", "\n", "Manhattan às escuras, sob as luzes do Empire State... RT @ronniejoice #Sandy http://t.co/2NwUxlCX\n", "\n", "--------------------------------------------------------\n", - "manhattan às escuras sob luzes empire state \n", + "manhattan escuras sob luzes empire state \n", "\n", "\n", "@WellsFargo #powertothepeople #Sandy #Share http://t.co/n8t8tkYn\n", @@ -54160,25 +48438,19 @@ "Sharing is Caring #Sandy via http://t.co/ZkFiXLMt http://t.co/f9KjESWe\n", "\n", "--------------------------------------------------------\n", - "sharing caring sandy via \n", - "\n", - "\n", - "This is so sweet! RT @IrynaKIM\\nMy friend's picture - there ARE nice people in this World! :) #Sandy #NewJersey #USA http://t.co/RrUeI9Zd\n", - "\n", - "--------------------------------------------------------\n", - "sweet \n", + "sharing caring sandy \n", "\n", "\n", "La ciudad y la tormenta: fantástica portada de @NewYorkMag vía @Tumiki78 #Sandy http://t.co/6z9X7t1n\n", "\n", "--------------------------------------------------------\n", - "ciudad tormenta fantástica portada vía sandy \n", + "ciudad tormenta fantástica portada desandy \n", "\n", "\n", "Cuba: 15.323 destroyed houses y 132.733 people affected...but that's no news, isn't it? #Sandy http://t.co/bWCRL6E9\n", "\n", "--------------------------------------------------------\n", - "cuba 15 323 destroyed houses 132 733 people affected news sandy \n", + "cuba3 destroyed houses y3233 people affected news sandy \n", "\n", "\n", "What I think when I see hurricane relief crying sob tweets from @alynnhiggs and @EkatherineW http://t.co/22MsBBVX\n", @@ -54190,7 +48462,7 @@ "30 foot waves in Northshore Mass #Hurricane #Sandy #tcot #twcot #GodHaveMercy http://t.co/wfPilIGw\n", "\n", "--------------------------------------------------------\n", - "30 foot waves northshore mass hurricane sandy tcot twcot godhavemercy \n", + "0 foot waves northshore mass hurricane sandy tcot twcot godhavemercy \n", "\n", "\n", "Awesome example of civic engagement and tech in new jersey #sandy @andrewgoodmanf @turbovote @craigconnects http://t.co/jt8Fo851\n", @@ -54202,7 +48474,7 @@ "عمل بسيط ومعبر ! #ساندي #امريكا #اعصار_ساندي ، small action but significant #sandy #usa :) http://t.co/Z9XUfBjo\n", "\n", "--------------------------------------------------------\n", - "عمل بسيط ومعبر ساندي امريكا اعصار ساندي small action significant sandy usa \n", + "عمل بسيط ومعبر ساندي امريكا اعصارساندي small action significant sandy usa \n", "\n", "\n", "Other side of #sandy not seen in media or newspaper http://t.co/TARvY5Bj\n", @@ -54214,13 +48486,13 @@ "AMAZING! Thank you NYC Marathon runners! #Sandy #StatenIsland http://t.co/dY3hGaE7\n", "\n", "--------------------------------------------------------\n", - "amazing thank nyc marathon runners sandy statenisland \n", + "amazing thank new york city marathon runners sandy statenisland \n", "\n", "\n", "View north last night from still powerless Murray Hill. #nyc #sandy http://t.co/wnIV19Sh\n", "\n", "--------------------------------------------------------\n", - "view north last night still powerless murray hill nyc sandy \n", + "view north last night still powerless murray hill new york city sandy \n", "\n", "\n", "Fantastic display of community. RT @StephenRWynn: Cool! “@Julie_Sensweety: In NJ! So cool! #Sandy http://t.co/cz0mTL0k”\n", @@ -54238,25 +48510,25 @@ "Bengalas en los cruces de la 5ª avenida para suplir los semáforos que aún no funcionan #Sandy #NewYork http://t.co/lCuMdE6a\n", "\n", "--------------------------------------------------------\n", - "bengalas cruces 5ª avenida suplir semáforos aún funcionan sandy newyork \n", + "bengalas cruces avenida suplir semáforos aún funcionan sandy new york \n", "\n", "\n", "Foto de las calles de NY por tormenta #Sandy | http://t.co/HfyIh5o2\n", "\n", "--------------------------------------------------------\n", - "foto calles ny tormenta sandy \n", + "foto calles new york tormenta sandy \n", "\n", "\n", "Street flooding in #NYC: 48th Ave between 5th and Center Blvd in Long Island City (Photo by: Andrew Pelzer) #Sandy http://t.co/oualmEGe\n", "\n", "--------------------------------------------------------\n", - "street flooding nyc 48th ave 5th center blvd long island city photo andrew pelzer sandy \n", + "street flooding new york city 8th ave center blvd long island city photo andrew pelzer sandy \n", "\n", "\n", "Talking 2that fool isn't turning my lights on.@GovChristie: Talking w/ Pres. Obama abt needs n NJ @ROIC Fri eve. #Sandy http://t.co/qFQUPCpc\n", "\n", "--------------------------------------------------------\n", - "talking 2that fool turning lights talking w pres obama abt needs n nj fri eve sandy \n", + "talking fool turning lights \n", "\n", "\n", "dear mainstream media #jamaica & #cuba suffered also because of #haarp hurricane #sandy http://t.co/HS7ii0Gs\n", @@ -54268,25 +48540,19 @@ "PHOTO OF QUEENS EARLY MORNING. LOOKS LIKE WE ARE AFTER AN ATTACK. #SANDY #911BUFF http://t.co/Wi3JECm7\n", "\n", "--------------------------------------------------------\n", - "photo queens early morning looks like attack sandy 911buff \n", - "\n", - "\n", - "⭕RT-> @AlexYudelson: Remember when President Bush was on vacation during Hurricane Katrina?This is President Obama #p2 http://t.co/aSTg7A0U”\n", - "\n", - "--------------------------------------------------------\n", - "rt remember president bush vacation hurricane katrina president obama p2 \n", + "photo queens early morning looks like attack sandy11buff \n", "\n", "\n", "This is an amazing gesture! Always help each other! #ny #sandy http://t.co/xbY0hkfl\n", "\n", "--------------------------------------------------------\n", - "amazing gesture always help ny sandy \n", + "amazing gesture always help new york sandy \n", "\n", "\n", "Insanliq dediyin bu olsa gerek . #newyork #Sandy http://t.co/OzCXWqp9”\n", "\n", "--------------------------------------------------------\n", - "insanliq dediyin bu olsa gerek newyork sandy \n", + "insanliq dediyin bu olsa gerek new york sandy \n", "\n", "\n", "Thoughts w/ all impacted by storm, grateful most safe. Our view last night #NoSkyline. Remains dark inside too. #Sandy http://t.co/qkSPDsA2\n", @@ -54310,7 +48576,7 @@ "Amazing picture of NYC. #poweroutage #sandy #nyc #hurricane http://t.co/Gt3RfPK9\n", "\n", "--------------------------------------------------------\n", - "amazing picture nyc poweroutage sandy nyc hurricane \n", + "amazing picture new york city poweroutage sandy new york city hurricane \n", "\n", "\n", "These popped up all over #Hoboken Tuesday RT @courtgarcia: Now this is resourceful #Sandy #NYC http://t.co/VhjqXQjj\n", @@ -54322,31 +48588,25 @@ "La força de la mare naturalesa #Sandy #NYC http://t.co/Fd9WaTzF\n", "\n", "--------------------------------------------------------\n", - "força mare naturalesa sandy nyc \n", - "\n", - "\n", - "@CNNEE: Si cierran los McDonald's, señal q s avecina algo fuerte #Sandy (vía @cwelchCNN desde NY)http://t.co/KZwdIs7i Jojojo es verdad\n", - "\n", - "--------------------------------------------------------\n", - "si cierran mcdonald señal q avecina fuerte sandy vía ny jojojo verdad \n", + "força mare naturalesa sandy new york city \n", "\n", "\n", "#Sandy también ha jodido (más) Haití, Cuba, Jamaica y Rep. Dominicana. ¿Lo sabías? ¿Te lo ha dicho la TV? No padre... http://t.co/OESv009X\n", "\n", "--------------------------------------------------------\n", - "sandy jodido haití cuba jamaica rep dominicana sabías dicho tv padre \n", + "sandy tambiénjodido haití cuba jamaica rep dominicana sabías lodicho tv padre \n", "\n", "\n", "La calle 34 en NY #sandy brutal http://t.co/0aKl66yP\n", "\n", "--------------------------------------------------------\n", - "calle 34 ny sandy brutal \n", + "calle4 new york sandy brutal \n", "\n", "\n", "Hahaha stupid fucking #Sandy http://t.co/UkTPhx5J\n", "\n", "--------------------------------------------------------\n", - "hahaha stupid fucking sandy \n", + "stupid fucking sandy \n", "\n", "\n", "Only in America! RT @Ladislife: Ils sont sympa ces new-yorkais (via @ppgarcia75 ) #Sandy http://t.co/ZnI76l9Z\n", @@ -54364,13 +48624,13 @@ "Refresh hope in society. #NewYork #Sandy #NYS #NYC http://t.co/GjYoYCum\n", "\n", "--------------------------------------------------------\n", - "refresh hope society newyork sandy nys nyc \n", + "refresh hope society new york sandy nys new york city \n", "\n", "\n", "Being nice is a great thing. A little power can go a long way. #Sandy #Hoboken @ABC7News @WTOP #NYC @GMW http://t.co/UjQMuOav\n", "\n", "--------------------------------------------------------\n", - "nice great thing little power go long way sandy hoboken nyc \n", + "nice great thing little power go long way sandy hoboken new york city \n", "\n", "\n", "fucking socialists #Sandy http://t.co/TcwDr6o4\n", @@ -54382,13 +48642,13 @@ "Haha #Arod #Yankees #Hurricane #Sandy http://t.co/z6ReQpol\n", "\n", "--------------------------------------------------------\n", - "haha arod yankees hurricane sandy \n", + "arod yankees hurricane sandy \n", "\n", "\n", "Wow! Surreal ariel shot of #Sandy's lingering presence via @jbrookesbaker #SoPo #NYC http://t.co/bbPMvM2o\n", "\n", "--------------------------------------------------------\n", - "wow surreal ariel shot sandy lingering presence sopo nyc \n", + "surreal ariel shot sandy lingering presence sopo new york city \n", "\n", "\n", "@CheyPhi when you hear no cameras in EOC, show them this great photo RT @GovChristie: Talking with Pres. Obama #Sandy http://t.co/HuuNpEfY\n", @@ -54400,13 +48660,13 @@ "#Sandy, il black out di Downtown in una foto. Grazie Alana http://t.co/GDB1UkFh\n", "\n", "--------------------------------------------------------\n", - "sandy il black di downtown foto grazie alana \n", + "sandy black downtown foto grazie alana \n", "\n", "\n", "En momentos chungos te das cuenta de que por ahí hay buena gente... #Sandy #NewYorkCity http://t.co/6sfTpjpm\n", "\n", "--------------------------------------------------------\n", - "momentos chungos das cuenta ahí buena gente sandy newyorkcity \n", + "momentos chungos cuenta ahí buena gente sandy new yorkcity \n", "\n", "\n", "A view from Brooklyn: http://t.co/NGkKVO5e via @michaelcinquino @patkiernan #Sandy\n", @@ -54418,7 +48678,7 @@ "Apparently 'come Hell or high water' happened in #NYC via @nytimes - http://t.co/09tVjbKy #Sandy @NOAA @fema @nycgov http://t.co/ZtMO5QfP\n", "\n", "--------------------------------------------------------\n", - "apparently come hell high water happened nyc sandy \n", + "apparently come hell high water happened new york city sandy \n", "\n", "\n", "Power on in some places, off in others in Manhattan #Sandy #Sandyon6 #News4ny @NBC6 @NBCNewYork http://t.co/X9koJOcP\n", @@ -54433,12 +48693,6 @@ "الله يعين sandy \n", "\n", "\n", - "Cuando cierran hasta los McDonald's, es señal de que se avecina algo fuerte #Sandy desde Nueva York) http://t.co/FXLqQhi5\n", - "\n", - "--------------------------------------------------------\n", - "cierran mcdonald señal avecina fuerte sandy nueva york \n", - "\n", - "\n", "#sandy #yankee #a-rod @arielloljknotme http://t.co/qhLJdkrT\n", "\n", "--------------------------------------------------------\n", @@ -54475,28 +48729,16 @@ "gangnam style giant rain dance brought hurricane upon frankenstorm sandy \n", "\n", "\n", - "Looooooool #Sandy http://t.co/IJliKAfz\n", - "\n", - "--------------------------------------------------------\n", - "looooooool sandy \n", - "\n", - "\n", "#sandy story by day, wait for gas by night. #Union NJ w/my crew. 90 mins so far. @nbcwashington @NBCNewYork http://t.co/27VQMz0e\n", "\n", "--------------------------------------------------------\n", - "sandy story day wait gas night union nj w crew 90 mins far \n", - "\n", - "\n", - "via @Estacion_bcp: Un aparcamiento lleno de taxis se inunda por la supertormenta de #Sandy en, Nueva Jersey http://t.co/4Odkw6w0\n", - "\n", - "--------------------------------------------------------\n", - "aparcamiento lleno taxis inunda supertormenta sandy nueva jersey \n", + "sandy story day wait gas night union new jersey w crew 0 mins far \n", "\n", "\n", "Increible imagen de la destruccion total por un fuego debido al #Huracan #Sandy en barrio de Queens, NY http://t.co/Ky64zku0\n", "\n", "--------------------------------------------------------\n", - "increible imagen destruccion total fuego debido huracan sandy barrio queens ny \n", + "increible imagen destruccion total fuego debido huracan sandy barrio queens new york \n", "\n", "\n", "Otra imagen de la montaña rusa siendo arrastrada por las olas en Nueva Jersey a causa de #Sandy #tiempoinfo7 http://t.co/MMFepRQW\n", @@ -54532,25 +48774,19 @@ "Foto de tarms15 http://t.co/8QDVIWj9 #hurricanesandy #blackout #NYC\n", "\n", "--------------------------------------------------------\n", - "foto tarms15 hurricanesandy blackout nyc \n", + "foto tarms15 hurricane sandy blackout nyc \n", "\n", "\n", "Wooowww “@WCMurdaHD “@Satisfies69 #HurricaneSandy http://t.co/HzUjQtQR””\n", "\n", "--------------------------------------------------------\n", - "wooowww hurricanesandy \n", + "wooowww hurricane sandy \n", "\n", "\n", "#atlanticcitynj #hurricanesandy #jerseyshore #nj #superstorm2012 #abc7 #sandyabc7 #besafe boardwalk floating http://t.co/77saZXJQ\n", "\n", "--------------------------------------------------------\n", - "atlanticcitynj hurricanesandy jerseyshore nj superstorm2012 abc7 sandyabc7 besafe boardwalk floating \n", - "\n", - "\n", - "نيوجرسي،احدهم يتبرع بمساعدة الاخرين لشحن جوالاتهم في ضل انقطاع التيار الكهربائي. اعجبتني! #ساندي sandy# @saudiinusa http://t.co/o6wgbUe1\"\n", - "\n", - "--------------------------------------------------------\n", - "نيوجرسي احدهم يتبرع بمساعدة الاخرين لشحن جوالاتهم ضل انقطاع التيار الكهربائي اعجبتني ساندي sandy \n", + "atlanticcitynj hurricane sandy jerseyshore new jersey superstorm2012 abc7 sandyabc7 besafe boardwalk floating \n", "\n", "\n", "http://t.co/kMDJg6gF Sandy also struck Cuba, Haiti and Dominican Republic\n", @@ -54562,7 +48798,7 @@ "James river bridge almost buried by #HurricaneSandy Hampton VA http://t.co/FVAvPFFY\n", "\n", "--------------------------------------------------------\n", - "james river bridge almost buried hurricanesandy hampton va \n", + "james river bridge almost buried hurricane sandy hampton va \n", "\n", "\n", "“@DMVFollowers Hurricane Sandy is still a day & a half away & Maryland & Ocean City are already flooding. http://t.co/0hiiuzRY”\n", @@ -54580,19 +48816,13 @@ "@GillianKami Sì sì. Sandy ha colpito le coste di Manhattan poco fa. Guarda com'era l'empire state building http://t.co/6pu8CoPQ\n", "\n", "--------------------------------------------------------\n", - "sì sì sandy colpito coste di manhattan fa guarda com l empire state building \n", - "\n", - "\n", - "@Yankee_Victor: El Empire State en medio de la Tormeta-postropical Sandy,al parecer el único iluminado a su alrededor http://t.co/1SLgSSn5\n", - "\n", - "--------------------------------------------------------\n", - "empire state medio tormeta postropical sandy parecer único iluminado alrededor \n", + "sì sì sandycolpito coste manhattan fa guarda empire state building \n", "\n", "\n", "wow what a nice pic http://t.co/AABTESYl during hurricane sandy http://t.co/m38dIIeG\n", "\n", "--------------------------------------------------------\n", - "wow nice pic hurricane sandy \n", + "nice pic hurricane sandy \n", "\n", "\n", "Hurricane Sandy: View From Above (NYTimes) http://t.co/kbxEykLG 右半分のあたり停電してる感じですね。別の角度 http://t.co/EA6edo5S\n", @@ -54604,31 +48834,31 @@ "Evacuation of NYU medical #Crazy #hurricanesandy #prayers http://t.co/y61mYfJZ\n", "\n", "--------------------------------------------------------\n", - "evacuation nyu medical crazy hurricanesandy prayers \n", + "evacuation nyu medical crazy hurricane sandy prayers \n", "\n", "\n", "<Dam!> RT @kimbobitch1: RT @msmollymeredith: 34th street and 1st avenue in NYC. #HurricaneSandy http://t.co/3PmQOri7\n", "\n", "--------------------------------------------------------\n", - "less dam greater \n", + "dam \n", "\n", "\n", "Verrazano Bridge holy shittt #jesuswept #bridge #waves #storm #hurricanesandy http://t.co/f8QECHML\n", "\n", "--------------------------------------------------------\n", - "verrazano bridge holy shittt jesuswept bridge waves storm hurricanesandy \n", + "verrazano bridge holy shittt jesuswept bridge waves storm hurricane sandy \n", "\n", "\n", "The \"City That Never Sleeps\" has finally gone to bed #hurricanesandy #recentphoto #blackout #nyc 🗽🌃 http://t.co/bTswV5ax\n", "\n", "--------------------------------------------------------\n", - "city never sleeps finally gone bed hurricanesandy recentphoto blackout nyc \n", + "city never sleeps finally gone bed hurricane sandy recentphoto blackout new york city \n", "\n", "\n", "NYC in complete darkness😳 #hurricane #sandy #hurricanesandy http://t.co/wO5yY4Rf\n", "\n", "--------------------------------------------------------\n", - "nyc complete darkness hurricane sandy hurricanesandy \n", + "new york city complete darkness hurricane sandy hurricane sandy \n", "\n", "\n", "People helping people in New Jersey after Sandy.... http://t.co/ODWSq2DI\n", @@ -54640,7 +48870,7 @@ "All of newyork in darkness, except the Empire State Building #hurricanesandy #empirestate #newyork #darkness http://t.co/5T6SpSCy\n", "\n", "--------------------------------------------------------\n", - "newyork darkness except empire state building hurricanesandy empirestate newyork darkness \n", + "new york darkness except empire state building hurricane sandy empirestate new york darkness \n", "\n", "\n", "Whoy. Sandy's bout it. Be safe everyone! RT @HitMyBeeper 😳 James River Bridge!! #hamptonVa #HurricaneSandy http://t.co/HN0l0Svq\n", @@ -54652,43 +48882,43 @@ "better than photoshop: #hurricanesandy Photo by sharonfeder • Instagram http://t.co/h58DeBUl\n", "\n", "--------------------------------------------------------\n", - "better photoshop hurricanesandy photo sharonfeder instagram \n", + "better photoshop hurricane sandy photo sharonfeder instagram \n", "\n", "\n", "#ThisShitCray Empire state of mind. http://t.co/gywkgAnL #manhattan #NYC #blackout #empirestate #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "thisshitcray empire state mind manhattan nyc blackout empirestate hurricanesandy \n", + "thisshitcray empire state mind manhattan new york city blackout empirestate hurricane sandy \n", "\n", "\n", "Nigga said fuck Hurricane Sandy lmfaoo #YOLO http://t.co/QR3QwjXk\n", "\n", "--------------------------------------------------------\n", - "nigga said fuck hurricane sandy lmfaoo yolo \n", + "nigga said fuck hurricane sandy yolo \n", "\n", "\n", "Lights out in in the city that never sleeps #HurricaneSandy #reddit http://t.co/QjyR6Cqg\n", "\n", "--------------------------------------------------------\n", - "lights city never sleeps hurricanesandy reddit \n", - "\n", + "lights city never sleeps hurricane sandy reddit \n", "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "The Empire State is the only light in the sky: http://t.co/OCPaTJ3c #hurricanesandy #tweetacane\n", "\n", "--------------------------------------------------------\n", - "empire state light sky hurricanesandy tweetacane \n", + "empire state light sky hurricane sandy tweetacane \n", "\n", "\n", "All #NYC is #dark now except the #EmpireStateBuilding. #sandy #hurricanesandy #storm #picoftheday #instapi http://t.co/PTeWxYdV\n", "\n", "--------------------------------------------------------\n", - "nyc dark except empirestatebuilding sandy hurricanesandy storm picoftheday instapi \n", - "\n", - "\n", - "This is craziness #hurricanesandy\\nhttp://t.co/mJ7a67Ml\n", - "\n", - "--------------------------------------------------------\n", - "craziness hurricanesandy \n", + "new york city dark except empirestatebuilding sandy hurricane sandy storm picoftheday instapi \n", "\n", "\n", "Hurricane impacting Virginia http://t.co/3lDzKVyI\n", @@ -54706,7 +48936,7 @@ "The Village goes dark #hurricanesandy http://t.co/bVqfSPP6\n", "\n", "--------------------------------------------------------\n", - "village goes dark hurricanesandy \n", + "village goes dark hurricane sandy \n", "\n", "\n", "“@Kenneth_Foster “@andrewcochranx Nigga said fuck Hurricane Sandy 😂😂😂 http://t.co/5IF4VQ53””\n", @@ -54724,61 +48954,55 @@ "Half of Manhattan goes dark. This is crazy. #HurricaneSandy http://t.co/c0gKUgkL\n", "\n", "--------------------------------------------------------\n", - "half manhattan goes dark crazy hurricanesandy \n", + "half manhattan goes dark crazy hurricane sandy \n", "\n", "\n", "“@pourmecoffee: Empire State Building shines in the dark like a boss. http://t.co/ITCQR6PK” #likeaboss #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "likeaboss hurricanesandy \n", + "likeaboss hurricane sandy \n", "\n", "\n", "Whitehall station this morning http://t.co/VNiYapKk #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "whitehall station morning hurricanesandy \n", + "whitehall station morning hurricane sandy \n", "\n", "\n", "Sandy cubre NYC https://t.co/vjJrdsSG #awesome\n", "\n", "--------------------------------------------------------\n", - "sandy cubre nyc awesome \n", - "\n", - "\n", - "Damn!!! RT @HitMyBeeper: 😳 James River Bridge!! #hamptonVa #HurricaneSandy http://t.co/7abO7BlN\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", + "sandy cubre new york city awesome \n", "\n", "\n", "na boa tô com medo desse furacão Sandy, olha isso https://t.co/5SVjp63B\n", "\n", "--------------------------------------------------------\n", - "boa tô com medo desse furacão sandy olha isso \n", + "boa tô medo desse furacão sandy olisso \n", "\n", "\n", "What loses power looks like in NYC #hurricanesandy http://t.co/xnLNaKRR\n", "\n", "--------------------------------------------------------\n", - "loses power looks like nyc hurricanesandy \n", + "loses power looks like new york city hurricane sandy \n", "\n", "\n", "Bridge in CT almost under water thank god i live in Cali #hurricaneSandy http://t.co/mk5YNM0K\n", "\n", "--------------------------------------------------------\n", - "bridge ct almost water thank god live cali hurricanesandy \n", + "bridge ct almost water thank god live cali hurricane sandy \n", "\n", "\n", "En USA hacen bien las cosas, si fuese Spain ya habría peta'o http://t.co/7ZRINs8x #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "usa hacen bien cosas si spain peta hurricanesandy \n", + "usa hacen bien cosas si spain peta hurricane sandy \n", "\n", "\n", "Ambulances lining up outside NYU hospital after hospital lost power #heros #hurricanesandy #prayforsandyvict http://t.co/KSeeEpfj\n", "\n", "--------------------------------------------------------\n", - "ambulances lining outside nyu hospital hospital lost power heros hurricanesandy prayforsandyvict \n", + "ambulances lining outside nyu hospital hospital lost power heros hurricane sandy prayforsandyvict \n", "\n", "\n", "«@JENNIWOWW Just was shown a picture of my town... So sorry for everyone that was affected by sandy http://t.co/4GqLQ0R4»\n", @@ -54790,7 +49014,7 @@ "On way into North Wildwood (Near ocean drive). Im gona throw up now. #hurricanesandy #skank #crumb #shorelif http://t.co/rZM4PCF5\n", "\n", "--------------------------------------------------------\n", - "way north wildwood near ocean drive im gona throw hurricanesandy skank crumb shorelif \n", + "way north wildwood near ocean drive gona throw hurricane sandy skank crumb shorelif \n", "\n", "\n", "Furacão Sandy, filme de apocalipse http://t.co/WVXuBITi\n", @@ -54799,28 +49023,16 @@ "furacão sandy filme apocalipse \n", "\n", "\n", - "Crazy! @bewellgroomed: Wow! #shitgettinreal #wow #hurricanesandy Photo by nicksummers • Instagram http://t.co/2tQlKrRa\n", - "\n", - "--------------------------------------------------------\n", - "crazy wow shitgettinreal wow hurricanesandy photo nicksummers instagram \n", - "\n", - "\n", - "@sosdemi furacão sandy http://t.co/jWoIkWr4 https://t.co/w6ZEqCuh\n", - "\n", - "--------------------------------------------------------\n", - "furacão sandy \n", - "\n", - "\n", "_brando_'s photo http://t.co/dadX05q7 Lower manhattan lights out. #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "brando photo lower manhattan lights hurricanesandy \n", + "brando photo lower manhattan lights hurricane sandy \n", "\n", "\n", "The city that never sleeps, is very asleep tonight. #nyc #hurricanesandy #frankenstorm #creepy http://t.co/xyp4BaTy\n", "\n", "--------------------------------------------------------\n", - "city never sleeps asleep tonight nyc hurricanesandy frankenstorm creepy \n", + "city never sleeps asleep tonight new york city hurricane sandy frankenstorm creepy \n", "\n", "\n", "Hurricane Sandy devastation... in Dominican Republic... http://t.co/c7UYnWv5\n", @@ -54832,37 +49044,37 @@ "#NewYork #ConyIsland #HurricaneSandy http://t.co/3j8oRe2y\n", "\n", "--------------------------------------------------------\n", - "newyork conyisland hurricanesandy \n", + "new york conyisland hurricane sandy \n", "\n", "\n", "Last night the Empire State Building was one of the only buildings in Manhattan with power #HurricaneSandy # http://t.co/BsMmj762\n", "\n", "--------------------------------------------------------\n", - "last night empire state building one buildings manhattan power hurricanesandy \n", + "last night empire state building one buildings manhattan power hurricane sandy \n", "\n", "\n", "الله يستر , صوره اعصار ساندي بامريكا 12\\n#إعصار_ساندي Hurricane Sandy http://t.co/1KBxuMzB”\n", "\n", "--------------------------------------------------------\n", - "الله يستر صوره اعصار ساندي بامريكا 12 إعصار ساندي hurricane sandy \n", + "الله يستر صوره اعصار ساندي بامريكا2 إعصارساندي hurricane sandy \n", "\n", "\n", "😳 James River Bridge!! #hamptonVa #HurricaneSandy http://t.co/OUV6Emvw\n", "\n", "--------------------------------------------------------\n", - "james river bridge hamptonva hurricanesandy \n", + "james river bridge hamptonva hurricane sandy \n", "\n", "\n", "Blackout in Manhattan . Everythings out but the empire state building :( #hurricanesandy http://t.co/zjBP5NY1\n", "\n", "--------------------------------------------------------\n", - "blackout manhattan everythings empire state building hurricanesandy \n", + "blackout manhattan everythings empire state building hurricane sandy \n", "\n", "\n", "NYC Blackout. #HurricaneSandy http://t.co/T2ca7qkC\n", "\n", "--------------------------------------------------------\n", - "nyc blackout hurricanesandy \n", + "new york city blackout hurricane sandy \n", "\n", "\n", "Кран упал RT @NewYorkPost: BREAKING: Crane Collapse in Midtown #NYC #hurricance #sandy http://t.co/du1XMyl0\n", @@ -54880,25 +49092,25 @@ "Hurricane #Sandy has taken out construction crane for 90-storey #One57 in #NYC - hope nothing like this in #Toronto https://t.co/UbFsBnCA\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy taken construction crane 90 storey one57 nyc hope nothing like toronto \n", + "hurricane sandy taken construction crane for0 storey one57 new york city hope nothing like toronto \n", "\n", "\n", "“@EricaRN4USA 34th and 1st Avenue in Manhattan, NY - 10 minutes ago.#Hurricane #Sandy #NYC #GodHaveMercy #tcot #twcot http://t.co/Tq13FNOA”\n", "\n", "--------------------------------------------------------\n", - "34th first avenue manhattan ny 10 minutes ago hurricane sandy nyc godhavemercy tcot twcot \n", + "4th first avenue manhattan new york 0 minutes ago hurricane sandy new york city godhavemercy tcot twcot \n", "\n", "\n", "A crane on top of a building on W 57th street is breaking… please stay safe folks. #Sandy http://t.co/rCdDjYon\n", "\n", "--------------------------------------------------------\n", - "crane top building w 57th street breaking please stay safe folks sandy \n", + "crane top building w7th street breaking please stay safe folks sandy \n", "\n", "\n", "«@NewYorkPost Flooding on the West Side #nyc #hurricane #sandy via @JButlerNYC http://t.co/0shGNjv9»\n", "\n", "--------------------------------------------------------\n", - "flooding west side nyc hurricane sandy \n", + "flooding west side new york city hurricane sandy \n", "\n", "\n", "Some of the pictures being taken during Sandy are incredible. https://t.co/mAUwDGMw\n", @@ -54916,7 +49128,7 @@ "I love living in the future. “@nowthisnews... Two words: working wifi. #sandy http://t.co/eBAMSEJZ” H/T: @joweldon \n", "\n", "--------------------------------------------------------\n", - "love living future two words working wifi sandy h \n", + "love living future two words working wifi sandy \n", "\n", "\n", "The city that never sleeps.. has turned off the lights for the night http://t.co/3Keoyzjj #Sandy\n", @@ -54928,7 +49140,7 @@ "For everyone who is complaining that we had school yesterday & today & that the hurricane was a \"joke\" I'm c http://t.co/5tLtwiVM\n", "\n", "--------------------------------------------------------\n", - "everyone complaining school yesterday today hurricane joke c \n", + "everyone complaining school yesterday today hurricane joke \n", "\n", "\n", "Firefighters in US saving doggies as well as people from the hurricane #emergencyservices #Sandy http://t.co/1WigUe1R\n", @@ -54940,7 +49152,7 @@ "The pier at Ocean City collapsed like 10 minutes ago. http://t.co/6Tgzx6Tu Sandy ass aint playing!!!!\n", "\n", "--------------------------------------------------------\n", - "pier ocean city collapsed like 10 minutes ago sandy ass aint playing \n", + "pier ocean city collapsed like0 minutes ago sandy ass aint playing \n", "\n", "\n", "First responders to not only people but the animals as well, in the wake of Hurricane Sandy. http://t.co/vEiW9jGZ\n", @@ -54952,7 +49164,7 @@ "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/Caft5QNt”\\n\\n- convert 2 democrat\n", "\n", "--------------------------------------------------------\n", - "convert 2 democrat \n", + "convert democrat \n", "\n", "\n", "Another way to monitor the Hurricane: http://t.co/j2tOcuAZ (Here is a pic of Ocean City Pier falling apart: \\nhttp://t.co/YUpcxvas )\n", @@ -54967,24 +49179,12 @@ "darkness half city manhattan sandy \n", "\n", "\n", - "@princessGwenie13d Dog rescued from hurricane Sandy! Firemen are not only saving the people! http://t.co/iA9wnkVE @abgpattyo\n", - "\n", - "--------------------------------------------------------\n", - "dog rescued hurricane sandy firemen saving people \n", - "\n", - "\n", "A dog rescued from hurricane #sandy Thank you to the men and women that risk their lives for other people (and pets!) http://t.co/YPbAFT0Y\n", "\n", "--------------------------------------------------------\n", "dog rescued hurricane sandy thank women risk lives people pets \n", "\n", "\n", - ":( MT @JustinKing224: Essentially the only building w/ power in #NYC right now is the Empire State Building. #Sandy http://t.co/uMHc90zB\n", - "\n", - "--------------------------------------------------------\n", - "essentially building w power nyc right empire state building sandy \n", - "\n", - "\n", "The night the hurricane hit New York. Unimaginable. http://t.co/rZ7PKkI1\n", "\n", "--------------------------------------------------------\n", @@ -54994,13 +49194,13 @@ "That's after the 80+ house blaze from Sandy. http://t.co/Gfu66Q5y\n", "\n", "--------------------------------------------------------\n", - "80 house blaze sandy \n", + "the0 house blaze sandy \n", "\n", "\n", "This is...unreal. Essentially the only building with power in #NYC right now is the Empire State Bldng #Sandy http://t.co/S7ZNZ2ac”\n", "\n", "--------------------------------------------------------\n", - "unreal essentially building power nyc right empire state bldng sandy \n", + "unreal essentially building power new york city right empire state bldng sandy \n", "\n", "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/Caft5QNt”\\n- u love the publicity!\n", @@ -55015,70 +49215,28 @@ "waters rise hurricane sandy near jfk runways definately going floodedairport \n", "\n", "\n", - "This was the best RT“@jeremyscahill Best moment from Ali Velshi's Sandy coverage today: http://t.co/Ot3kPm1z”\n", - "\n", - "--------------------------------------------------------\n", - "best \n", - "\n", - "\n", "http://t.co/B6s43ImG\\n\\n#sandy has not even hit land yet not good my heart goes out to the Northeast\n", "\n", "--------------------------------------------------------\n", "sandy even hit land yet good heart goes northeast \n", "\n", "\n", - "President Obama on Hurricane #Sandy: \"Take this very seriously\": http://t.co/tF9IGWcF Photo today: http://t.co/zs4AOOsa\n", - "\n", - "--------------------------------------------------------\n", - "president obama hurricane sandy take seriously photo today \n", - "\n", - "\n", - "@whitehouse: President Obama on Hurricane #Sandy: Take this very seriously\" http://t.co/6QWIcDKN Photo @FEMA today http://t.co/vtAcZTSF\"\n", - "\n", - "--------------------------------------------------------\n", - "president obama hurricane sandy take seriously photo today \n", - "\n", - "\n", "Living room looks like Sea World exhibit RT @nowthisnews: How high is the water in Brigantine, NJ? This high: \\n\\n#sandy http://t.co/50QByIl2\n", "\n", "--------------------------------------------------------\n", "living room looks like world exhibit \n", "\n", "\n", - "#sandy @MikeElk: At least 15feet high RT @kristengwynne This photo of FDR drive under water is the best I got so far http://t.co/3yY0DjKq\n", - "\n", - "--------------------------------------------------------\n", - "sandy least 15feet high \n", - "\n", - "\n", "#sandy - How high is the water in Brigantine, NJ? This high: http://t.co/GkPBkxsx // somethin' gonna give. #hurricane\n", "\n", "--------------------------------------------------------\n", - "sandy high water brigantine nj high somethin gonna give hurricane \n", + "sandy high water brigantine new jersey high somethin gonna give hurricane \n", "\n", "\n", "How high is the water in Brigantine, NJ? This high: \\n\\n#sandy http://t.co/K8stNajT\n", "\n", "--------------------------------------------------------\n", - "high water brigantine nj high sandy \n", - "\n", - "\n", - "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/8j6ABz3O /via @CarrieFairygirl”that is awesome\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", - "“@AlexYudelson Remember when President Bush was on vacation during Hurricane Katrina? This is President Obama #p2 http://t.co/OVaaH9E3””\n", - "\n", - "--------------------------------------------------------\n", - "remember president bush vacation hurricane katrina president obama p2 \n", - "\n", - "\n", - "@AlexYudelson: Remember when President Bush was on vacation during Hurricane Katrina?This is President Obama #p2 http://t.co/Nen01mc8\n", - "\n", - "--------------------------------------------------------\n", - "remember president bush vacation hurricane katrina president obama p2 \n", + "high water brigantine new jersey high sandy \n", "\n", "\n", "“@toshamack_ent “@AlexYudelson Remember whn Pres.Bush ws on vacation during Hurricane Katrina? This is Pres.Obama #p2 http://t.co/aBjHJCCR””\n", @@ -55090,7 +49248,7 @@ "twc_hurricane @nowthised: Wider shot of scaffolding toppling car on CPW and 92nd, across from Central Park,NYC #sandy https://t.co/AHNA29Qz\n", "\n", "--------------------------------------------------------\n", - "twc hurricane wider shot scaffolding toppling car cpw 92nd across central park nyc sandy \n", + "twchurricane \n", "\n", "\n", "#sandy wants in http://t.co/pWewVNUd\n", @@ -55102,19 +49260,7 @@ "“@abc7newsBayArea #Sandy MT @DianeSawyer Miles of Manhattan in a blackout. (photo: @nicksumm ) http://t.co/jVdIHKo6”\n", "\n", "--------------------------------------------------------\n", - "sandymiles manhattan blackout photo \n", - "\n", - "\n", - "@SlimPaley: #Sandy #ILoveNY http://t.co/HHS8H9nW this makes my heart smile. We must unite in times like these.\n", - "\n", - "--------------------------------------------------------\n", - "sandy iloveny makes heart smile must unite times like \n", - "\n", - "\n", - "cool RT @nowthisnews: Why are these New Yorkers clustered outside a closed Starbucks? Two words: working wifi. #sandy http://t.co/0INLw96x\n", - "\n", - "--------------------------------------------------------\n", - "cool \n", + "sandy mt miles manhattan blackout photo \n", "\n", "\n", "Stay safe boys!! RT @FireIceSports: Holding it down at the Shore! #Sandy http://t.co/BtAjJ6GS\n", @@ -55126,7 +49272,7 @@ "Evacuación de un hospital en NY ayer noche https://t.co/wPAjf1J8 #foto #Sandy\n", "\n", "--------------------------------------------------------\n", - "evacuación hospital ny ayer noche foto sandy \n", + "evacuación hospital new york ayer noche foto sandy \n", "\n", "\n", "“@anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/ZUty36Iu” fantastic people helping out people. #Sandy\n", @@ -55144,13 +49290,7 @@ "Ambay mo 9ij RT @nowthisnews: Why are these New Yorkers clustered outside a closed Starbucks? working wifi. #sandy http://t.co/EkWfgs1d\n", "\n", "--------------------------------------------------------\n", - "ambay mo 9ij \n", - "\n", - "\n", - "@SlimPaley: I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy #ILoveNY http://t.co/Vr3CdXZQ\n", - "\n", - "--------------------------------------------------------\n", - "love email friend sent tonight must meant new yorkers sandy iloveny \n", + "ambay mo \n", "\n", "\n", "“@jeremyscahill: Best moment from Ali Velshi's Sandy coverage today: http://t.co/AtMsx1hr” hilário!\n", @@ -55165,34 +49305,16 @@ "rainbow gowanus canal little ago sandy way \n", "\n", "\n", - "@rubinafillion: Times Square is still packed with tourists 40 minutes before Subways shut down for Hurricane #Sandy. http://t.co/TUd37X2W\n", - "\n", - "--------------------------------------------------------\n", - "times square still packed tourists 40 minutes subways shut hurricane sandy \n", - "\n", - "\n", "@Bonita_yeah Picture: #OceanCity #Maryland Boardwalk under #Sandy #frankenstorm #hurricane #climate http://t.co/NIlnoT1X\n", "\n", "--------------------------------------------------------\n", "picture oceancity maryland boardwalk sandy frankenstorm hurricane climate \n", "\n", "\n", - "Awesome!!!!!RT @TUSK81: Tears. Fireman saving dog caught in hurricane: http://t.co/QgdvsoTa (Photo via @PrincessGwenie1) #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", - "Scary!RT @anitavanvoorst: Omg RT “@alastormspotter: Incredible surf at Lynn Beach, MA. #mawx #sandy #hurricane #flood http://t.co/Y1R0Fhmg”\n", - "\n", - "--------------------------------------------------------\n", - "scary \n", - "\n", - "\n", "@hemayr Las mascotas en NY también están siendo atendidas http://t.co/1RDZB9s5 #sandy\n", "\n", "--------------------------------------------------------\n", - "mascotas ny siendo atendidas sandy \n", + "mascotas new york siendo atendidas sandy \n", "\n", "\n", "Yeah baby RT @lisafleisher: Good morning from Cape May! (those are surfers.) #sandy http://t.co/9q1OSM3C\n", @@ -55210,7 +49332,7 @@ "The other side of the hurricane... Ce que les médias ont choisi d'ignorer #Sandy #Haiti http://t.co/ydME8W2F\n", "\n", "--------------------------------------------------------\n", - "side hurricane ce médias ont choisi ignorer sandy haiti \n", + "side hurricane médias choisi ignorer sandy haiti \n", "\n", "\n", "this is in dr :((( http://t.co/kJ3P4Di3 fuck sandy \\n!!!\n", @@ -55234,13 +49356,7 @@ "Brooklyn @ 34th & 1st (via @matlarosa) #Sandy http://t.co/rfhX7698\n", "\n", "--------------------------------------------------------\n", - "brooklyn 34th first sandy \n", - "\n", - "\n", - "Yikes! RT @Timmtimma: Winthrop Beach #sandy http://t.co/DZoPKtqr\n", - "\n", - "--------------------------------------------------------\n", - "yikes \n", + "brooklyn 4th first sandy \n", "\n", "\n", "This is absolutely incredible #Sandy RT @wfaaweather: Another picture. Photo of FDR under water. http://t.co/Wh8SE3jA\n", @@ -55252,7 +49368,7 @@ "Shit>“@EverythingNYC “@ARaeAshcraft @EverythingNYC east river park. 10:30 am. #sandy http://t.co/4ddRE6Ld””\n", "\n", "--------------------------------------------------------\n", - "shit greater east river park 10 30 sandy \n", + "shit east river park sandy \n", "\n", "\n", "PHOTO: The view of darkened #Manhattan after much of the city lost power due to superstorm #Sandy http://t.co/YwRIbBrq http://t.co/cYgD0yPx\n", @@ -55270,7 +49386,7 @@ "Seen in Hoboken, NJ. Way to come together, people! #Sandy http://t.co/0VOGzj3j\n", "\n", "--------------------------------------------------------\n", - "seen hoboken nj way come together people sandy \n", + "seen hoboken new jersey way come together people sandy \n", "\n", "\n", "https://t.co/wdYHSzJd Empire State resist #sandy\n", @@ -55297,12 +49413,6 @@ "bridge bridge sandy \n", "\n", "\n", - "@piersmorgan: Just got home to discover almost every car along my NY street has been smashed by trees. #Sandy http://t.co/e0aL0hcD\n", - "\n", - "--------------------------------------------------------\n", - "got home discover almost every car along ny street smashed trees sandy \n", - "\n", - "\n", "Gotham. #Sandy\\n\\n http://t.co/moV7BmOi\n", "\n", "--------------------------------------------------------\n", @@ -55318,13 +49428,13 @@ "https://t.co/0hGB3Iya #Sandy darkness covers lower Manhattan and most part of #NY #اعصار_ساندي الظلام يخيم على اشهر بقعه في عالم المال\n", "\n", "--------------------------------------------------------\n", - "sandy darkness covers lower manhattan part ny اعصار ساندي الظلام يخيم اشهر بقعه عالم المال \n", + "sandy darkness covers lower manhattan part new york اعصارساندي الظلام يخيم اشهر بقعه عالم المال \n", "\n", "\n", "Only light I see on my block is 1WTC #Sandy http://t.co/wGD5gNgu\n", "\n", "--------------------------------------------------------\n", - "light see block 1wtc sandy \n", + "light see block sandy \n", "\n", "\n", "City that never sleeps? Boy that Jay-Z is full of shit. #SANDY https://t.co/xfopSLD6\n", @@ -55336,7 +49446,7 @@ "Seen in Hoboken, NJ.. It's so awesome to see others being selfless. #sandy http://t.co/u6q4k4xi\n", "\n", "--------------------------------------------------------\n", - "seen hoboken nj awesome see others selfless sandy \n", + "seen hoboken new jersey awesome see others selfless sandy \n", "\n", "\n", "@garethslee “@LBowers01 “@Timcast Bridge Newport News, VA almost gone. James River bridge #Sandy #Frankenstorm http://t.co/IljifS5v””\n", @@ -55354,7 +49464,7 @@ "Via @nydailynews FDR Drive flooded in #NYC - http://t.co/aIGDTp7f #sandy\n", "\n", "--------------------------------------------------------\n", - "via fdr drive flooded nyc sandy \n", + "fdr drive flooded new york city sandy \n", "\n", "\n", "President Obama on Hurricane #Sandy: http://t.co/IBZLSruT\n", @@ -55372,7 +49482,7 @@ "What do you do when you see shit like this? Lol Brigantine, NJ? #sandy http://t.co/E41Hu587\n", "\n", "--------------------------------------------------------\n", - "see shit like lol brigantine nj sandy \n", + "see shit like brigantine new jersey sandy \n", "\n", "\n", "Lights out, Manhattan! #Sandy #Shit https://t.co/QIfCucba\n", @@ -55396,25 +49506,25 @@ "35 foot section of Atlantic City Boardwalk floating down what used to be St. Katherine's place #sandy #acpress http://t.co/0tbQ2ujc\n", "\n", "--------------------------------------------------------\n", - "35 foot section atlantic city boardwalk floating used st katherine place sandy acpress \n", + "5 foot section atlantic city boardwalk floating used st katherine place sandy acpress \n", "\n", "\n", - "Boardwalk Empire, c'est plus ce que c'était https://t.co/ZTuEdKu0 https://t.co/1jFPK7tS #hurricane #sandy #AtlanticCity\n", + "RT: “@twc_hurricane: Maryland --> RT @i_will_overcome: So long Ocean City pier... #Sandy http://t.co/yy5aUD2q” #HurricaneSandy #weather\n", "\n", "--------------------------------------------------------\n", - "boardwalk empire c est plus ce c était hurricane sandy atlanticcity \n", + "hurricane sandy weather \n", "\n", "\n", - "“@YaGirllll_B “@the_pussinator_ OC fishing pier @MarylandProbz #sandy http://t.co/NoTYhHIC””\n", + "Boardwalk Empire, c'est plus ce que c'était https://t.co/ZTuEdKu0 https://t.co/1jFPK7tS #hurricane #sandy #AtlanticCity\n", "\n", "--------------------------------------------------------\n", - "oc fishing pier sandy \n", + "boardwalk empire plus hurricane sandy atlanticcity \n", "\n", "\n", - "“@damnitstrue East river park. 10:30 am. #sandy http://t.co/toBAIyOX”\n", + "“@YaGirllll_B “@the_pussinator_ OC fishing pier @MarylandProbz #sandy http://t.co/NoTYhHIC””\n", "\n", "--------------------------------------------------------\n", - "east river park 10 30 sandy \n", + "oc fishing pier sandy \n", "\n", "\n", "شما عایق بندی رو ببین با لبات بازی میکنه لامصب http://t.co/xYw6eeZY #sandy\n", @@ -55444,13 +49554,7 @@ "Been to this bridge, scary #Sandy waters @DMVFollowers: bridge in Newport News is almost underwater. http://t.co/9XO06Uq1”\n", "\n", "--------------------------------------------------------\n", - "bridge scary sandy waters bridge newport news almost underwater \n", - "\n", - "\n", - "“@GMA Stunning image of much of Manhattan plunged into a power outage as #Sandy churns on. Photo via @nicksumm - http://t.co/46ZDJLxh” wow.\n", - "\n", - "--------------------------------------------------------\n", - "stunning image much manhattan plunged power outage sandy churns photo wow \n", + "bridge scary sandy waters \n", "\n", "\n", "Ok that made me tear up. RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/4UsTQMfP\n", @@ -55459,30 +49563,12 @@ "ok made tear \n", "\n", "\n", - "@dhayes202: @Gillyfish1292 @JennaKayx3 Coney Island is underwater #sandy http://t.co/3u09faZy\n", - "\n", - "--------------------------------------------------------\n", - "coney island underwater sandy \n", - "\n", - "\n", "NOAH RT @AnonymousPress WOAH! -> How tall is this wave crashing on the shore? 50feet? 75feet? Lynn (MA) #HangTen #Sandy http://t.co/SQ4P7zWq\n", "\n", "--------------------------------------------------------\n", "noah \n", "\n", "\n", - "@CNNEE: Cuando cierran hasta los McDonald's, es señal de que se avecina algo fuerte #Sandy vía @cwelchCNN Nueva York http://t.co/9XQ9uDlk\n", - "\n", - "--------------------------------------------------------\n", - "cierran mcdonald señal avecina fuerte sandy vía nueva york \n", - "\n", - "\n", - "Damn smh RT @damnitstrue: East river park. 10:30 am. #sandy http://t.co/6THX0syC\n", - "\n", - "--------------------------------------------------------\n", - "damn smh \n", - "\n", - "\n", "Banjir RT @AOL RT @PANYNJ Flood waters from Hurricane #Sandy approach the LaGuardia Airport runways and taxiways today. http://t.co/x4UxFe0m\n", "\n", "--------------------------------------------------------\n", @@ -55498,7 +49584,7 @@ "All of NYC now in darkness except for the Empire State Building. #Sandy http://t.co/DfLZ33UG\n", "\n", "--------------------------------------------------------\n", - "nyc darkness except empire state building sandy \n", + "new york city darkness except empire state building sandy \n", "\n", "\n", "Water levels at LaGuardia Airport during the height of the storm. Waters have since started to recede. #Sandy http://t.co/XTudFV7x\n", @@ -55510,7 +49596,7 @@ "L'Empire State Building ! Le seul encore allumé. #Sandy https://t.co/rMvUs8m9\n", "\n", "--------------------------------------------------------\n", - "l empire state building seul encore allumé sandy \n", + "empire state building seul encore allumé sandy \n", "\n", "\n", "«@kellykaye69 «@TUSK81 Tears. Fireman saving dog caught in hurricane: http://t.co/HvUhiwK3 (Photo via @princessGwenie1) #Sandy»»#Hero!\n", @@ -55522,7 +49608,7 @@ "El Empire State el único iluminado. http://t.co/kegywcs7 #Sandy #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "empire state único iluminado sandy hurricanesandy \n", + "empire state único iluminado sandy hurricane sandy \n", "\n", "\n", "Knock, knock. Who's there? http://t.co/Mq6Ob2z9 #sandy\n", @@ -55537,16 +49623,10 @@ "easy \n", "\n", "\n", - "New York After Sandy :((((\\nhttp://t.co/J5dtYEe0\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", - "\n", - "\n", "#sandy w/ Statue of Liberty n background “@breaking High tide in Battery Park, New York City - @ScottCohnCNBC http://t.co/gp1WymEm”\n", "\n", "--------------------------------------------------------\n", - "sandy w statue liberty n background high tide battery park new york city \n", + "sandy w statue liberty background high tide battery park new york city \n", "\n", "\n", "“@iTweetFacts Hurricane #Sandy has caused New York's Time Square to almost look like a ghost town: http://t.co/bHHf2k2t”creepy\n", @@ -55564,25 +49644,7 @@ "Wow! scary & mesmerizing RT @usaphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/OY0J85yq #sandy #nyc\n", "\n", "--------------------------------------------------------\n", - "wow scary mesmerizing \n", - "\n", - "\n", - "New York and Sandy!\\nhttp://t.co/me5RFrBl\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", - "\n", - "\n", - "«@OracleBFisher «@iTweetFacts Hurricane #Sandy has caused New York's Time Square to almost look like a ghost town: http://t.co/D6CAbFAI»»\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy caused new york time square almost look like ghost town \n", - "\n", - "\n", - "Hurricane Sandy in New York City http://t.co/AqvKEmFa\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york city \n", + "scary mesmerizing \n", "\n", "\n", "http://t.co/qLvPlGJe a picture of New York before #Sandy hit! holy crap!\n", @@ -55594,13 +49656,13 @@ "bersih bgt itu banjir jg-_-gada kasur ngambang kek dsniRT @OddestFacts: 34th and 1st street in New York City. #Sandy http://t.co/MqCDCrPB\n", "\n", "--------------------------------------------------------\n", - "bersih bgt itu banjir jg gada kasur ngambang kek dsni \n", + "bersih bgt banjir jg gada kasur ngambang kek dsni \n", "\n", "\n", "Sandy Fucked up New York.. RT\"@__stayygold: Manhattan is dark.. wow. I never thought id see the day. http://t.co/l9XaRXBF\"\n", "\n", "--------------------------------------------------------\n", - "sandy fucked new york \n", + "sandy fucked new york rt \n", "\n", "\n", "«@craigengler «@BoingBoing Power outages spread. “@danwootton: Very scary sight. New York's gone black. http://t.co/oIE7dTL9 #sandy”»»\n", @@ -55609,12 +49671,6 @@ "power outages spread \n", "\n", "\n", - "Damn: RT @danwootton: Very scary sight. New York's gone black. http://t.co/kp3MQFX5 #sandy\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", - "\n", - "\n", "and New York goes dark http://t.co/DFMI26YL #Sandy\n", "\n", "--------------------------------------------------------\n", @@ -55624,7 +49680,7 @@ "Very eerie New York pic \"Only light I see on my block is 1WTC\" #Sandy http://t.co/6cSB5iGi via @antderosa @kenosen2\n", "\n", "--------------------------------------------------------\n", - "eerie new york pic light see block 1wtc sandy \n", + "eerie new york pic light see block sandy \n", "\n", "\n", "Lights off New York https://t.co/Ad1lgaIp #Sandy\n", @@ -55636,7 +49692,7 @@ "NYC buses, post-Hurricane Sandy. tags: #sandy #hurricane #weather #nyc http://t.co/vcX6PNDQ\n", "\n", "--------------------------------------------------------\n", - "nyc buses post hurricane sandy tags sandy hurricane weather nyc \n", + "new york city buses post hurricane sandy tags sandy hurricane weather new york city \n", "\n", "\n", "BEAUTIFUL HOLIDAY! > RT @ariefbanang: sandy storm. http://t.co/HSRXGSP4\n", @@ -55645,12 +49701,6 @@ "beautiful holiday \n", "\n", "\n", - "sandy storm. http://t.co/8LsepOXp\n", - "\n", - "--------------------------------------------------------\n", - "sandy storm \n", - "\n", - "\n", "no me digas nada, te quedaste sin fasos #sandy http://t.co/gT96VMSs\n", "\n", "--------------------------------------------------------\n", @@ -55660,25 +49710,19 @@ "N°1 #sandy says http://t.co/zCMyTGar\n", "\n", "--------------------------------------------------------\n", - "n 1 sandy says \n", - "\n", - "\n", - "@NYGovCuomo: Entrance to Hugh Carey Tunnel (formerly the Brooklyn Battery) off West Street #Sandy http://t.co/epHy001U\n", - "\n", - "--------------------------------------------------------\n", - "entrance hugh carey tunnel formerly brooklyn battery west street sandy \n", + "sandy says \n", "\n", "\n", "Shocking water level @ Path Station in downtown NYC. All this water stretching back about 5 mi to NJ. #Sandy http://t.co/VHGb4KDz\n", "\n", "--------------------------------------------------------\n", - "shocking water level path station downtown nyc water stretching back 5 nj sandy \n", + "shocking water level path station downtown new york city water stretching back new jersey sandy \n", "\n", "\n", "A photo of the pier in Hyannisport...wow! #Sandy http://t.co/7Wc4V6yd\n", "\n", "--------------------------------------------------------\n", - "photo pier hyannisport wow sandy \n", + "photo pier hyannisport sandy \n", "\n", "\n", "My prayers go out to everyone affected by Hurricane #Sandy, but especially those patients at NYU Hospital --> http://t.co/GjE2negG\n", @@ -55687,12 +49731,6 @@ "prayers go everyone affected hurricane sandy especially patients nyu hospital \n", "\n", "\n", - "My prayers go out to everyone affected by Hurricane #Sandy, but especially those patients at NYU Hospital --> http://t.co/msF1QSO4”\n", - "\n", - "--------------------------------------------------------\n", - "prayers go everyone affected hurricane sandy especially patients nyu hospital \n", - "\n", - "\n", "The Jones Beach Theater is underwater the day after #Sandy: http://t.co/q6FTM7Kc http://t.co/BMJa8mmi\n", "\n", "--------------------------------------------------------\n", @@ -55702,13 +49740,7 @@ "@Howelly123 this is where i'm supposed to see one direction for the 2013 tour but the hurricane destroyed it sigh http://t.co/DWvP5sH4\n", "\n", "--------------------------------------------------------\n", - "supposed see one direction 2013 tour hurricane destroyed sigh \n", - "\n", - "\n", - "Aww @nkotb RT @newsday: The Jones Beach Theater is underwater the day after #Sandy http://t.co/FJ1YB6j9 http://t.co/J8whirkJ\n", - "\n", - "--------------------------------------------------------\n", - "aww \n", + "supposed see one direction the013 tour hurricane destroyed sigh \n", "\n", "\n", "The Nikon at Jones Beach theater was the place where I saw the boys twice & the hurricane pretty much destroyed it ): http://t.co/3li2sX6J\n", @@ -55720,7 +49752,7 @@ "It's gotten VERY ugly in Ocean City. Almost looks like Katrina. Here's a picture of what used to be 94th street http://t.co/L5O6HLlm #Sandy\n", "\n", "--------------------------------------------------------\n", - "gotten ugly ocean city almost looks like katrina picture used 94th street sandy \n", + "gotten ugly ocean city almost looks like katrina picture used be4th street sandy \n", "\n", "\n", "Don't forget to keep your thoughts & prayers with those in the northeast recovering from #Sandy http://t.co/d4e0cO40\n", @@ -55732,73 +49764,73 @@ "In which 4Chan thinks playing Where’s Wally with brown people and backpacks will solve terrorism: http://t.co/gk6DVBcOND\n", "\n", "--------------------------------------------------------\n", - "4chan thinks playing wally brown people backpacks solve terrorism \n", + "thinks playing wally brown people backpacks solve terrorism \n", "\n", "\n", "@psicosour ojo, a el lo acusó 4chan, no es ninguno de los que publicó el FBI. FBI: http://t.co/i0nAZTlDvb 4chan: http://t.co/Lm8lxdrZbw\n", "\n", "--------------------------------------------------------\n", - "ojo acusó 4chan ninguno publicó fbi fbi 4chan \n", + "ojo acusó ninguno publicó fbi fbi \n", "\n", "\n", "Some of 4chan comm's #boston images - http://t.co/6Ap7NKHXy8 - fascinating crowd-sourced sleuthing. Also clear: RIP privacy forever.\n", "\n", "--------------------------------------------------------\n", - "4chan comm boston images fascinating crowd sourced sleuthing also clear rip privacy forever \n", + "comm boston images fascinating crowd sourced sleuthing also clear rip privacy forever \n", "\n", "\n", "@bluerickshaw my favorite came from 4chan http://t.co/Ri2uk4hjw0\n", "\n", "--------------------------------------------------------\n", - "favorite came 4chan \n", + "favorite came \n", "\n", "\n", "For shits and giggles, 4chan's conspiracy theory #stillbetterthancnn http://t.co/ANYNIHax6u\n", "\n", "--------------------------------------------------------\n", - "shits giggles 4chan conspiracy theory stillbetterthancnn \n", + "shits giggles conspiracy theory stillbetterthancnn \n", "\n", "\n", "4chan runs shit lol. http://t.co/XGsNHy9eeU\n", "\n", "--------------------------------------------------------\n", - "4chan runs shit lol \n", + "runs shit \n", "\n", "\n", "On Wednesday, Reddit and 4chan users published pictures of Boston Marathon bombing \"suspects\". They were all wrong. http://t.co/EVldP40pd4\n", "\n", "--------------------------------------------------------\n", - "wednesday reddit 4chan users published pictures boston marathon bombing suspects wrong \n", + "wednesday reddit users published pictures boston marathon bombing suspects wrong \n", "\n", "\n", "@Barbaraayuso Antes los de 4chan ya habían hecho algo parecido http://t.co/nNp6jAdiun\n", "\n", "--------------------------------------------------------\n", - "4chan hecho parecido \n", + "hecho parecido \n", "\n", "\n", "Um es nochmal festzuhalten:4chan & reddit lagen mit ihrem witch hunt zu 100%falsch. Nur unschuldige wurden \"erkannt\". http://t.co/D47totRig7\n", "\n", "--------------------------------------------------------\n", - "um nochmal festzuhalten 4chan reddit lagen mit ihrem witch hunt zu 100 falsch nur unschuldige wurden erkannt \n", + "nochmal festzuhalten reddit lagen mit ihrem witch hunt zu00 falsch nur unschuldige wurden erkannt \n", "\n", "\n", "El poder de 4chan: http://t.co/7Gq6gejRu2 miles de fotos analizadas y encuentran a \"\"sospechosos\"\" (ojo, pillar con pinzas)\n", "\n", "--------------------------------------------------------\n", - "poder 4chan miles fotos analizadas encuentran sospechosos ojo pillar pinzas \n", + "poder miles fotos analizadas encuentran sospechosos ojo pillar pinzas \n", "\n", "\n", "@RaulVB @WajahatAli @Marcotti #SunilTripathiHoax Sunil Tripathi and Suspect 2 - They are two very different persons http://t.co/7X56eZRk6l\n", "\n", "--------------------------------------------------------\n", - "suniltripathihoax sunil tripathi suspect 2 two different persons \n", + "suniltripathihoax sunil tripathi suspect two different persons \n", "\n", "\n", "Atentos a la \"investigación ciudadana P2P\" de lo de Boston que se han montado los del 4chan estos... :O http://t.co/wWFCxu0EuT (vía @axebra)\n", "\n", "--------------------------------------------------------\n", - "atentos investigación ciudadana p2p boston montado 4chan vía \n", + "atentos investigación ciudadana p2p boston montado \n", "\n", "\n", "The detail of these photos used to identify the Boston Marathon bombing suspect is bananas… http://t.co/8zZ1v2ix39\n", @@ -55810,7 +49842,7 @@ "Don't need feds to solve the #bostonbombing when we have #4chan!! http://t.co/eXQTPZqqbG\n", "\n", "--------------------------------------------------------\n", - "need feds solve bostonbombing 4chan \n", + "need feds solve bostonbombing \n", "\n", "\n", "PIC: Comparison of #Boston suspect Sunil Tripathi's FBI-released images/video and his MISSING poster http://t.co/EhV3ODxrJf You decide.\n", @@ -55828,73 +49860,73 @@ "Brutal lo que se puede conseguir en colaboración. #4Chan analizando fotos de la maratón de #Boston atando cabos... http://t.co/4eq43HFicK\n", "\n", "--------------------------------------------------------\n", - "brutal puede conseguir colaboración 4chan analizando fotos maratón boston atando cabos \n", + "brutal puede conseguir colaboración analizando fotos maratón boston atando cabos \n", "\n", "\n", "4chan and the bombing. just throwing it out there: http://t.co/dIySO7lXQm http://t.co/NxBi4tW8bQ\n", "\n", "--------------------------------------------------------\n", - "4chan bombing throwing \n", + "bombing throwing \n", "\n", "\n", "4chan thinks they found pictures of the bomber - http://t.co/0y3w24l2q8\n", "\n", "--------------------------------------------------------\n", - "4chan thinks found pictures bomber \n", + "thinks found pictures bomber \n", "\n", "\n", "Ola ke ase, investigando las bombas de Boston o ke ase? #4chan http://t.co/7A4IAbVmM0\n", "\n", "--------------------------------------------------------\n", - "ola ke ase investigando bombas boston ke ase 4chan \n", + "ola ase investigando bombas boston ase \n", "\n", "\n", "4chan ThinkTank - Imgur http://t.co/hQt2fhxE48\n", "\n", "--------------------------------------------------------\n", - "4chan thinktank imgur \n", + "thinktank imgur \n", "\n", "\n", "@DLoesch have you seen this? Bomber #2 looks like missing student Sunil Tripathi. http://t.co/1phQpB0aMT http://t.co/X9pqMtnoW5\n", "\n", "--------------------------------------------------------\n", - "seen bomber 2 looks like missing student sunil tripathi \n", + "seen bomber looks like missing student sunil tripathi \n", "\n", "\n", "da 4chan think tank BOSTON http://t.co/0ZbKMA5z0D #photos #suspects #bombing #marathon\n", "\n", "--------------------------------------------------------\n", - "da 4chan think tank boston photos suspects bombing marathon \n", + "think tank boston photos suspects bombing marathon \n", "\n", "\n", "@Anonymoussops @bernardosampa @urbanohumano definitely a good work anonymous. #4chan 4ver >> http://t.co/VSAz2qzbun\n", "\n", "--------------------------------------------------------\n", - "definitely good work anonymous 4chan 4ver greater greater \n", + "definitely good work anonymous \n", "\n", "\n", "Poo, o 4CHAN nas análises dos atentados hein. De loco!\\n\\nhttp://t.co/au0JRLE0qA http://t.co/Nm92oqIkmy\n", "\n", "--------------------------------------------------------\n", - "poo 4chan nas análises dos atentados hein loco \n", + "poo análises atentados hein loco \n", "\n", "\n", "@DandCShow Did you guys see these pics? http://t.co/AwkA3cC4dg #reddit #4chan #bostonstrong\n", "\n", "--------------------------------------------------------\n", - "guys see pics reddit 4chan bostonstrong \n", + "guys see pics reddit bostonstrong \n", "\n", "\n", "http://t.co/ykSVPMWD6h #4chan FTW\n", "\n", "--------------------------------------------------------\n", - "4chan ftw \n", + "ftw \n", "\n", "\n", "Wow, creepy. #Boston #Bombing ID the suspect? http://t.co/mKbnnYCcUs\n", "\n", "--------------------------------------------------------\n", - "wow creepy boston bombing id suspect \n", + "creepy boston bombing id suspect \n", "\n", "\n", "@YourAnonNews its not that guy, you can see his backpack from another angle http://t.co/DFRglxjp68 #BostonMarathon\n", @@ -55906,25 +49938,19 @@ "@BBCWorld @BBCBreaking @BBCNews Probably worth checking these out. http://t.co/r6nemCxOCr #4chan #identified #boston #marathon #bombers\n", "\n", "--------------------------------------------------------\n", - "probably worth checking 4chan identified boston marathon bombers \n", + "probably worth checking identified boston marathon bombers \n", "\n", "\n", "my best guess ala 4chan regarding Boston \\nhttp://t.co/QTJ4XHonGC\\nhere is the rest of the pics 4 chan has of that day, http://t.co/jO0BPnUfmn\n", "\n", "--------------------------------------------------------\n", - "best guess ala 4chan regarding boston rest pics 4 chan day \n", + "best guess ala regarding boston rest pics chan day \n", "\n", "\n", "Hilarious if 4chan solves this bombing case. They got tons of these posted. http://t.co/qI9I0YKatR\n", "\n", "--------------------------------------------------------\n", - "hilarious 4chan solves bombing case got tons posted \n", - "\n", - "\n", - "http://t.co/pS4KetWGaW #4chan\n", - "\n", - "--------------------------------------------------------\n", - "4chan \n", + "hilarious solves bombing case got tons posted \n", "\n", "\n", "They say this is a #pic of a man lurking on a rooftop during the the #bostonmarathon #explosion...… http://t.co/RYtgpktBYT\n", @@ -55936,67 +49962,67 @@ "Wow 4chan. That was fast: http://t.co/3vHkPCr8tR\n", "\n", "--------------------------------------------------------\n", - "wow 4chan fast \n", + "fast \n", "\n", "\n", "#4Chan got some fame on internet but I can say that I am impressed on what they had done and discovered http://t.co/MUH6yTWCAZ via @imgur\n", "\n", "--------------------------------------------------------\n", - "4chan got fame internet say impressed done discovered \n", + "got fame internet say impressed done discovered \n", "\n", "\n", "4chan melhor que FBI :) http://t.co/aiGcdBXRUz\n", "\n", "--------------------------------------------------------\n", - "4chan melhor fbi \n", + "melhor fbi \n", "\n", "\n", "4chan spots a #Boston Bombing suspect - http://t.co/3c4TOQxL4b\n", "\n", "--------------------------------------------------------\n", - "4chan spots boston bombing suspect \n", + "spots boston bombing suspect \n", "\n", "\n", "4Chan seems to think they've found one of the Boston Marathon Bombers and I agree http://t.co/1cncwgC7eK\n", "\n", "--------------------------------------------------------\n", - "4chan seems think found one boston marathon bombers agree \n", + "seems think found one boston marathon bombers agree \n", "\n", "\n", "4chan spots a suspect http://t.co/u3Ovlyl4Tp [http://t.co/oUotrsGuZv] #consp @joerogan\n", "\n", "--------------------------------------------------------\n", - "4chan spots suspect consp \n", + "spots suspect consp \n", "\n", "\n", "http://t.co/TTcLPjXHVs investigación bombas Boston #4chan\n", "\n", "--------------------------------------------------------\n", - "investigación bombas boston 4chan \n", + "investigación bombas boston \n", "\n", "\n", "#4chan solves the bombings? http://t.co/YeTDt6cLZS via @imgur\n", "\n", "--------------------------------------------------------\n", - "4chan solves bombings \n", + "solves bombings \n", "\n", "\n", "4chan Conspiracies 1 of 2 http://t.co/KbYZr9aAiQ\n", "\n", "--------------------------------------------------------\n", - "4chan conspiracies 1 2 \n", + "conspiracies \n", "\n", "\n", "good job 4chan! http://t.co/XSnnqe6ROH\n", "\n", "--------------------------------------------------------\n", - "good job 4chan \n", + "good job \n", "\n", "\n", "#boston #4chan http://t.co/e7m4xLcjna\n", "\n", "--------------------------------------------------------\n", - "boston 4chan \n", + "boston \n", "\n", "\n", "man on the roof-tops of #bostonmarathon while bomb goes off http://t.co/yFZEuQ47hu\n", @@ -56008,19 +50034,19 @@ "navy seals at #bostonmarathon with back packs n remote devices on cell phones http://t.co/k9sNfXJvi8\n", "\n", "--------------------------------------------------------\n", - "navy seals bostonmarathon back packs n remote devices cell phones \n", + "navy seals bostonmarathon back packs remote devices cell phones \n", "\n", "\n", "E aí que o 4chan DESVENDOU quem são os responsáveis pela bomba de Boston http://t.co/ZZu0An6h2p\n", "\n", "--------------------------------------------------------\n", - "aí 4chan desvendou quem são responsáveis pela bomba boston \n", + "aí desvendou responsáveis bomba boston \n", "\n", "\n", "Wow. This was posted yesterday on 4chan. Seemed like some people were in the know about the suspect. http://t.co/g7QU4AktXV\n", "\n", "--------------------------------------------------------\n", - "wow posted yesterday 4chan seemed like people know suspect \n", + "posted yesterday seemed like people know suspect \n", "\n", "\n", "Here's the thread. Not one of the real suspects is on here. RT @brianboyer: 4chan is on it. Fascinating. http://t.co/R53NODzVtB\n", @@ -56032,85 +50058,85 @@ "#4chan crowdsourcing #Boston bomb investigation - /b/ http://t.co/7YcFjWsKo2\n", "\n", "--------------------------------------------------------\n", - "4chan crowdsourcing boston bomb investigation b \n", + "crowdsourcing boston bomb investigation b \n", "\n", "\n", "#4chan ThinkTank http://t.co/rnqC1QKu8R #BostonMarathon\n", "\n", "--------------------------------------------------------\n", - "4chan thinktank bostonmarathon \n", + "thinktank bostonmarathon \n", "\n", "\n", "#4CHAN haciendo el trabajo del FBI http://t.co/CPONsVv0O8 o.O #Boston #/b/\n", "\n", "--------------------------------------------------------\n", - "4chan haciendo trabajo fbi boston b \n", + "haciendo trabajo fbi boston b \n", "\n", "\n", "4chan picks out some boston suspects. crazy spooky. http://t.co/OqAbKozQav\n", "\n", "--------------------------------------------------------\n", - "4chan picks boston suspects crazy spooky \n", + "picks boston suspects crazy spooky \n", "\n", "\n", "It looks like 4chan might have really found something - Why are private http://t.co/iVYfUtQ2Mh [http://t.co/RbYBX2qXll] #anon @YourAnonNews\n", "\n", "--------------------------------------------------------\n", - "looks like 4chan might really found something private anon \n", + "looks like might really found something private anon \n", "\n", "\n", "this shit crazy. wonder if they photoshopped #4chan http://t.co/v00nx4Fw0D\n", "\n", "--------------------------------------------------------\n", - "shit crazy wonder photoshopped 4chan \n", + "shit crazy wonder photoshopped \n", "\n", "\n", "4Chan zoekt het uit. http://t.co/wMQbCv9W3R\n", "\n", "--------------------------------------------------------\n", - "4chan zoekt \n", + "zoekt \n", "\n", "\n", "4chan beweert de bommenlegger uit #Boston te hebben gevonden op foto http://t.co/YDyFCkEPDb\n", "\n", "--------------------------------------------------------\n", - "4chan beweert bommenlegger boston gevonden foto \n", + "beweert bommenlegger boston gevonden foto \n", "\n", "\n", "Os caras do 4chan identificaram o terrorista da maratona de Boston, jura mesmo? https://t.co/reoR7wki6i http://t.co/MKUuo8PKyQ\n", "\n", "--------------------------------------------------------\n", - "caras 4chan identificaram terrorista da maratona boston jura mesmo \n", + "caras identificaram terrorista maratona boston jura \n", "\n", "\n", "No idea if \"Suspect 2\" is missing Brown student Sunil Tripathi but looks more than a little like him: http://t.co/iwJ7iO3WKB\n", "\n", "--------------------------------------------------------\n", - "idea suspect 2 missing brown student sunil tripathi looks little like \n", + "idea suspect missing brown student sunil tripathi looks little like \n", "\n", "\n", "En 4chan ya han encontrado a los terroristas de Boston http://t.co/Cb98QtbVcU #boston #4chan\n", "\n", "--------------------------------------------------------\n", - "4chan encontrado terroristas boston boston 4chan \n", + "encontrado terroristas boston boston \n", "\n", "\n", "some follow up images on the 4chan post from an hour ago: http://t.co/QlqaMpdpXA\\n\\n\"The internet wins\" -@teklocust\n", "\n", "--------------------------------------------------------\n", - "follow images 4chan post hour ago internet wins \n", + "follow images post hour ago internet wins \n", "\n", "\n", "@th3j35t3r what do you make of what 4chan has come up with? http://t.co/sMWgRS2jo3\n", "\n", "--------------------------------------------------------\n", - "make 4chan come \n", + "make come \n", "\n", "\n", "4chan found the bomb http://t.co/Zrs8WOqomz\n", "\n", "--------------------------------------------------------\n", - "4chan found bomb \n", + "found bomb \n", "\n", "\n", "The man believed to be the bomber.. #boston #bostonbombing #bostonmarathon #prayforboston #pray4boston… http://t.co/akb08AyBld\n", @@ -56122,85 +50148,85 @@ "http://t.co/xBNwxhIVHo #BostonMarathon #4chan via @reddit\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon 4chan \n", + "bostonmarathon \n", "\n", "\n", "The internet wins. Did 4chan find the Boston Marathon bombers? http://t.co/45UUc5Gjal\n", "\n", "--------------------------------------------------------\n", - "internet wins 4chan find boston marathon bombers \n", + "internet wins find boston marathon bombers \n", "\n", "\n", "@samsteinhp check out the 4chan kiddies investigative work http://t.co/7C1wRki92C\n", "\n", "--------------------------------------------------------\n", - "check 4chan kiddies investigative work \n", + "check kiddies investigative work \n", "\n", "\n", "Una muestra que #4Chan no es solo mierda, sino una inteligencia anonima, a veces borracha, pero efectiva : http://t.co/wmD0pEejVM #Boston\n", "\n", "--------------------------------------------------------\n", - "muestra 4chan solo mierda sino inteligencia anonima veces borracha efectiva boston \n", + "muestra solo mierda sino inteligencia anonima veces borrac efectiva boston \n", "\n", "\n", "Don't worry guys, 4chan is on the case now... http://t.co/tv5u5N9tiy\n", "\n", "--------------------------------------------------------\n", - "worry guys 4chan case \n", + "worry guys case \n", "\n", "\n", "#4Chan analizó las imágenes del atentado en #Boston y encontró supuestos implicados. http://t.co/84GH58OHJP\n", "\n", "--------------------------------------------------------\n", - "4chan analizó imágenes atentado boston encontró supuestos implicados \n", + "analizó imágenes atentado boston encontró supuestos implicados \n", "\n", "\n", "Lets see if 4chan identified the bomber http://t.co/0kmcAxkqup http://t.co/kJZq8NAMx6\n", "\n", "--------------------------------------------------------\n", - "lets see 4chan identified bomber \n", + "lets see identified bomber \n", "\n", "\n", "Been following the stuff happening in boston. Got linked this regarding the bombings. http://t.co/hlDQKHxiC3 Sometimes 4chan gets it right\n", "\n", "--------------------------------------------------------\n", - "following stuff happening boston got linked regarding bombings sometimes 4chan gets right \n", + "following stuff happening boston got linked regarding bombings sometimes gets right \n", "\n", "\n", "Impressive and gamechanging - crowd-sourced detective work via 4chan http://t.co/OaESe8EiV9\n", "\n", "--------------------------------------------------------\n", - "impressive gamechanging crowd sourced detective work via 4chan \n", + "impressive gamechanging crowd sourced detective work \n", "\n", "\n", "@YourAnonNews 4chan spots another pair of suspects. This one really gave me chills. http://t.co/MMMaoxEVau\n", "\n", "--------------------------------------------------------\n", - "4chan spots another pair suspects one really gave chills \n", + "spots another pair suspects one really gave chills \n", "\n", "\n", "@bilinkis @goldenmax yo también tengo mis dudas de que este resuelto después de haber visto lo de 4chan. http://t.co/aU8pBZl4U2\n", "\n", "--------------------------------------------------------\n", - "dudas resuelto después haber visto 4chan \n", + "dudas resuelto después haber visto \n", "\n", "\n", "4chan spots a Boston Marathon bombings suspect http://t.co/mRFDwpNczH\n", "\n", "--------------------------------------------------------\n", - "4chan spots boston marathon bombings suspect \n", + "spots boston marathon bombings suspect \n", "\n", "\n", "#4chan's effort to catch the #Boston bombers - amazing http://t.co/mj0YoHuZW7\n", "\n", "--------------------------------------------------------\n", - "4chan effort catch boston bombers amazing \n", + "effort catch boston bombers amazing \n", "\n", "\n", "Reddit and 4chan's efforts to identify the Boston bombers. http://t.co/nNnMLnBzms http://t.co/sBsROBIg2P Not even close\n", "\n", "--------------------------------------------------------\n", - "reddit 4chan efforts identify boston bombers even close \n", + "reddit efforts identify boston bombers even close \n", "\n", "\n", "Plus look how he's carrying it. Looks like he's about to sit it down. #prayforboston http://t.co/YyWGdbsI1e\n", @@ -56212,25 +50238,25 @@ "Kudos 4chan http://t.co/KccwMpAJr3 Damn, their images are better than the FBI's\n", "\n", "--------------------------------------------------------\n", - "kudos 4chan damn images better fbi \n", + "kudos damn images better fbi \n", "\n", "\n", "I'll laugh my ass off if 4chan actually were able to find the bombing suspect, this picture looks somewhat convicing http://t.co/rk1eDwr7Vq\n", "\n", "--------------------------------------------------------\n", - "laugh ass 4chan actually able find bombing suspect picture looks somewhat convicing \n", + "laugh ass actually able find bombing suspect picture looks somewhat convicing \n", "\n", "\n", "It looks like 4chan might have really found something... #PrayForBoston #BostonBombing http://t.co/DrLPtbJ7pb\n", "\n", "--------------------------------------------------------\n", - "looks like 4chan might really found something prayforboston bostonbombing \n", + "looks like might really found something prayforboston bostonbombing \n", "\n", "\n", "Wow, so Sunil Tripathi is a Brown U Student that has been missing since March... http://t.co/ku2PtAuB4o.\n", "\n", "--------------------------------------------------------\n", - "wow sunil tripathi brown student missing since march \n", + "sunil tripathi brown student missing since march \n", "\n", "\n", "The people of Boston ask your help identifying these men associated with the backpack bombs at the Boston Marathon http://t.co/u5fX9Gksbf\n", @@ -56242,73 +50268,67 @@ "#Boston #4chan ThinkTank: http://t.co/AbLIYga34E\n", "\n", "--------------------------------------------------------\n", - "boston 4chan thinktank \n", + "boston thinktank \n", "\n", "\n", "@ReyxelRojiblank lo dicen por 4chan. De ahi sacaron las fotos los telediarios españoles haciendolas pasar x oficiales http://t.co/8S2sa3nAp2\n", "\n", "--------------------------------------------------------\n", - "dicen 4chan ahi sacaron fotos telediarios españoles haciendolas pasar x oficiales \n", + "dicen ahi sacaron fotos telediarios españoles haciendolas pasar x oficiales \n", "\n", "\n", "@TheMatthewKeys Have you seen/heard anything about this? http://t.co/v82rdCVIqH (via @dcturner @SimoRoth & 4Chan users )\n", "\n", "--------------------------------------------------------\n", - "seen heard anything 4chan users \n", + "seen heard anything users \n", "\n", "\n", "Se ve que los de 4chan ya han empezado http://t.co/onL4644fVG\n", "\n", "--------------------------------------------------------\n", - "4chan empezado \n", + "empezado \n", "\n", "\n", "@OClairouin @samuellaurent Et 4Chan étant 4Chan, ca donne aussi http://t.co/qv0ZSH2jB6\n", "\n", "--------------------------------------------------------\n", - "et 4chan étant 4chan ca donne aussi \n", + "ca donne aussi \n", "\n", "\n", "http://t.co/qOdBcSpmgG 4chan teve a manha, apos que a mídia nem vai falar nada\n", "\n", "--------------------------------------------------------\n", - "4chan teve manha apos mídia nem vai falar \n", - "\n", - "\n", - "http://t.co/oCwVNpf2PI http://t.co/9hwsuCH7TJ 83 C.S.I. 4chan.\n", - "\n", - "--------------------------------------------------------\n", - "83 c 4chan \n", + "apos mídia vai falar \n", "\n", "\n", "Maybe we should outsource our intelligence work to #Reddit and #4chan: Check out http://t.co/hyLs9xHDis and http://t.co/hcciCk4uW2\n", "\n", "--------------------------------------------------------\n", - "maybe outsource intelligence work reddit 4chan check \n", + "maybe outsource intelligence work reddit check \n", "\n", "\n", "4chan is on the case. http://t.co/wHctp20bzf\n", "\n", "--------------------------------------------------------\n", - "4chan case \n", + "case \n", "\n", "\n", "so, 4chan helps find #bostonmarathon bombing suspect(s)? http://t.co/wkrFlxTL9D\n", "\n", "--------------------------------------------------------\n", - "4chan helps find bostonmarathon bombing suspect \n", + "helps find bostonmarathon bombing suspect \n", "\n", "\n", "Los de 4chan cuando quieren son muy grandes. Buscando al causante de lo de Boston: http://t.co/AV0xaxekyX\n", "\n", "--------------------------------------------------------\n", - "4chan quieren grandes buscando causante boston \n", + "quieren grandes buscando causante boston \n", "\n", "\n", "some amazing analysis of the photographic evidence from the #bostonbombing by the guys at #4chan: http://t.co/YkNtXSjGr9\n", "\n", "--------------------------------------------------------\n", - "amazing analysis photographic evidence bostonbombing guys 4chan \n", + "amazing analysis photographic evidence bostonbombing guys \n", "\n", "\n", "Fucking faggots B. I pray karma lets us get to them 1st America. #BostonBombers #prayforboston http://t.co/akkg2YdEQS\n", @@ -56320,7 +50340,7 @@ "4chan tror sig ha hittat en misstänkt. http://t.co/GliZFUrrLt https://t.co/sCqwcSi5UM Alla är detektiver numera ;)\n", "\n", "--------------------------------------------------------\n", - "4chan tror hittat misstänkt detektiver numera \n", + "tror sighittat misstänkt detektiver numera \n", "\n", "\n", "Shits crazy RT @Blueraydre: FBI missing person / Bombing suspect = Same person #4Chan http://t.co/FezORWhKV7\n", @@ -56329,46 +50349,34 @@ "shits crazy \n", "\n", "\n", - "http://t.co/43c7yFQSAt #boston #4chan\n", - "\n", - "--------------------------------------------------------\n", - "boston 4chan \n", - "\n", - "\n", - "#4Chan does #Boston http://t.co/4e3DthsbzF\n", - "\n", - "--------------------------------------------------------\n", - "4chan boston \n", - "\n", - "\n", "@JasonBarnett Probably not then, 4chan & Reddit IDed younger guys. I saw another mention of a white baseball cap: http://t.co/Sc42hfu7Yi\n", "\n", "--------------------------------------------------------\n", - "probably 4chan reddit ided younger guys saw another mention white baseball cap \n", + "probably reddit ided younger guys saw another mention white baseball cap \n", "\n", "\n", "Look at this #4chan thinktank pic gallery: http://t.co/51CkG45awR Remember those faces. If they're arrested, the Internet solved this case.\n", "\n", "--------------------------------------------------------\n", - "look 4chan thinktank pic gallery remember faces arrested internet solved case \n", + "look thinktank pic gallery remember faces arrested internet solved case \n", "\n", "\n", "4chan investiga lo de Boston. http://t.co/EZ35IYwBgS\n", "\n", "--------------------------------------------------------\n", - "4chan investiga boston \n", + "investiga boston \n", "\n", "\n", "Damn 4chan already got the bomber http://t.co/bkvZkOwtvS\n", "\n", "--------------------------------------------------------\n", - "damn 4chan already got bomber \n", + "damn already got bomber \n", "\n", "\n", "Interesting case of internet vigilantism using #4Chan/#Reddit; response to #Boston http://t.co/jsK9B9UwfU http://t.co/HFmw7m0XAl @interwhut\n", "\n", "--------------------------------------------------------\n", - "interesting case internet vigilantism using 4chan reddit response boston \n", + "interesting case internet vigilantism using reddit response boston \n", "\n", "\n", "Sunil Tripathi was last seen in March. http://t.co/Yn6V5xNXGC\n", @@ -56380,43 +50388,43 @@ "@Genowolf Well here's a short explanation according to 4chan (who found him before the FBI) http://t.co/xqKLuMldnl\n", "\n", "--------------------------------------------------------\n", - "well short explanation according 4chan found fbi \n", + "well short explanation according found fbi \n", "\n", "\n", "Because 4chan doesn't like bad guys with no cause. http://t.co/lHK2NBqK2Q\n", "\n", "--------------------------------------------------------\n", - "4chan like bad guys cause \n", + "like bad guys cause \n", "\n", "\n", "FBI believes they found the PREP who left the bag at the Boston Marathon looks American smh http://t.co/fDMBVFKmMR\n", "\n", "--------------------------------------------------------\n", - "fbi believes found prep left bag boston marathon looks american smh \n", + "fbi believes found prep left bag boston marathon looks american \n", "\n", "\n", "#boston #4chan #anon http://t.co/sOU5FGv3Fk\n", "\n", "--------------------------------------------------------\n", - "boston 4chan anon \n", + "boston anon \n", "\n", "\n", "#Boston bombing crowdsourced investigation. Fascinating and a bit scary too http://t.co/9Sgw6Tr2in #4chan #reddit\n", "\n", "--------------------------------------------------------\n", - "boston bombing crowdsourced investigation fascinating bit scary 4chan reddit \n", + "boston bombing crowdsourced investigation fascinating bit scary reddit \n", "\n", "\n", "Where's Wally features in pic #12 if you look carefully. RT @C0d3Fr0sty\\n#4chan ThinkTank http://t.co/NzOeMpCtps #BostonMarathon\n", "\n", "--------------------------------------------------------\n", - "wally features pic 12 look carefully \n", + "wally features pic2 look carefully \n", "\n", "\n", "@jaketapper this has been going around on redditt is it real? \"4chan Think Tank on Boston Bombers\" http://t.co/2i8sXIMVGD\n", "\n", "--------------------------------------------------------\n", - "going around redditt real 4chan think tank boston bombers \n", + "going around redditt real think tank boston bombers \n", "\n", "\n", "Whoever you are. We will find you. #creepy #bostonmarathon #prayforboston http://t.co/7pUOSJeo78\n", @@ -56428,73 +50436,73 @@ "4chan exposed the bombers our gov set this shit up http://t.co/SYngrcntEf <---- click that link and see the truth\n", "\n", "--------------------------------------------------------\n", - "4chan exposed bombers gov set shit less click link see truth \n", + "exposed bombers gov set shit click link see truth \n", "\n", "\n", "aqui está o dossiê que circulou o 4chan e o reddit nesses ultimos dias http://t.co/rBYjbz5BOc nenhum dos suspeitos eram os reais terroristas\n", "\n", "--------------------------------------------------------\n", - "aqui dossiê circulou 4chan reddit nesses ultimos dias nenhum dos suspeitos eram reais terroristas \n", + "aqui dossiê circulou reddit nesses ultimos dias nenhum suspeitos reais terroristas \n", "\n", "\n", "The 4chan ThinkTank. Crazy how good these guys are. http://t.co/gJMiSGsaMS via @imgur\n", "\n", "--------------------------------------------------------\n", - "4chan thinktank crazy good guys \n", + "thinktank crazy good guys \n", "\n", "\n", "Parece que 4chan encontró al responsable de los ataques\\nhttp://t.co/eAGPoL1h31\\nhttp://t.co/bOpILmK3yO\n", "\n", "--------------------------------------------------------\n", - "parece 4chan encontró responsable ataques \n", + "parece encontró responsable ataques \n", "\n", "\n", "#boston #4chan Was the Boston bomb an inside job to ban guns? http://t.co/ZBZxrPWHV8\n", "\n", "--------------------------------------------------------\n", - "boston 4chan boston bomb inside job ban guns \n", + "boston boston bomb inside job ban guns \n", "\n", "\n", "FBI missing person / Bombing suspect = Same person #4Chan http://t.co/XE9Cy0M3hm #RETWEET\n", "\n", "--------------------------------------------------------\n", - "fbi missing person bombing suspect person 4chan retweet \n", + "fbi missing person bombing suspect person retweet \n", "\n", "\n", "This is the 4chan I admire.\\nhttp://t.co/5JubZbQkrL\\n#4chan #Boston\n", "\n", "--------------------------------------------------------\n", - "4chan admire 4chan boston \n", + "admire boston \n", "\n", "\n", "FBI missing person / Bombing suspect = Same person #4Chan http://t.co/ZO7tzCvN1Z\n", "\n", "--------------------------------------------------------\n", - "fbi missing person bombing suspect person 4chan \n", + "fbi missing person bombing suspect person \n", "\n", "\n", "@Twitler13 Like this Pic says: http://t.co/RaALSLsCPq the 4Chan thinktank with the suspicious bomb squad guys SHARE AS MUCH AS POSSIBLE RT\n", "\n", "--------------------------------------------------------\n", - "like pic says 4chan thinktank suspicious bomb squad guys share much possible rt \n", + "like pic says thinktank suspicious bomb squad guys share much possible rt \n", "\n", "\n", "They really are legion ... http://t.co/o4cJIf3K2N #4Chan #Boston bombs.\n", "\n", "--------------------------------------------------------\n", - "really legion 4chan boston bombs \n", + "really legion boston bombs \n", "\n", "\n", "#4chan en chasse. RT “@joffrey: Boston suspects. http://t.co/V64bYrUt6q”\n", "\n", "--------------------------------------------------------\n", - "4chan chasse \n", + "chasse \n", "\n", "\n", "Reddit is on to something... Boston Bomber #2 sure looks like missing student Sunil Tripathi. http://t.co/GyCIuofsW4 http://t.co/koZ2qL8Od9\n", "\n", "--------------------------------------------------------\n", - "reddit something boston bomber 2 sure looks like missing student sunil tripathi \n", + "reddit something boston bomber sure looks like missing student sunil tripathi \n", "\n", "\n", "Tweeted yesterday morning: RT @ScottBeale: 4chan’s analysis of photos from the Boston bombings http://t.co/g5M3DOkGYt\n", @@ -56506,37 +50514,37 @@ "Did #4chan just identify a #Boston bombing suspect? http://t.co/qdHO2wiNGq\n", "\n", "--------------------------------------------------------\n", - "4chan identify boston bombing suspect \n", + "identify boston bombing suspect \n", "\n", "\n", "Flipant les fotos creades desde 4chan per resoldre el tema de la marató de bostón : http://t.co/wk19uWHGU3 http://t.co/zrQhDJdgIz\n", "\n", "--------------------------------------------------------\n", - "flipant fotos creades 4chan per resoldre tema marató bostón \n", + "flipant fotos creades resoldre tema marató bostón \n", "\n", "\n", "My mind is blown - http://t.co/cudmctY3uE\\n#4chan\n", "\n", "--------------------------------------------------------\n", - "mind blown 4chan \n", + "mind blown \n", "\n", "\n", "4chan analysis of the Boston bombs.. they look like secret police! http://t.co/GuajqSaJUj #4chan #boston #bombs #internetjustice\n", "\n", "--------------------------------------------------------\n", - "4chan analysis boston bombs look like secret police 4chan boston bombs internetjustice \n", + "analysis boston bombs look like secret police boston bombs internetjustice \n", "\n", "\n", "Wow... the missing kid Sunil Tripathi sure does look like suspect #2... http://t.co/uegrHmBeJJ\n", "\n", "--------------------------------------------------------\n", - "wow missing kid sunil tripathi sure look like suspect 2 \n", + "missing kid sunil tripathi sure look like suspect \n", "\n", "\n", "The internet is an amazing thing. #4chan \\nhttp://t.co/kgnanlYVnP\n", "\n", "--------------------------------------------------------\n", - "internet amazing thing 4chan \n", + "internet amazing thing \n", "\n", "\n", "People seem sure this is the ID'd suspect http://t.co/bAqmmF8u0g Can they find any credible news feeds confirming it?\n", @@ -56545,12 +50553,6 @@ "people seem sure id suspect find credible news feeds confirming \n", "\n", "\n", - "@dallassnyder: Did 4chan just find the Boston bomber? http://t.co/POjR3wXrWl @danrweki @davie_mo @rude_end @RugyendoQuotes\n", - "\n", - "--------------------------------------------------------\n", - "4chan find boston bomber \n", - "\n", - "\n", "So eery RT @tommyrusso: Amazing Work! #4Chan crowdsources #bomb suspect PHOTOS! http://t.co/FGrTohNiUU\n", "\n", "--------------------------------------------------------\n", @@ -56560,25 +50562,25 @@ "Amazing Work! #4Chan crowdsources #bomb suspect PHOTOS! http://t.co/pBCKU3M7RK\n", "\n", "--------------------------------------------------------\n", - "amazing work 4chan crowdsources bomb suspect photos \n", + "amazing work crowdsources bomb suspect photos \n", "\n", "\n", "FBI Hunting for 2 Arab Men seen Holding Bags with Bombs at Marathon Explosion. http://t.co/ui7JoGhFCt Photo: http://t.co/754isZ1B8v\"\n", "\n", "--------------------------------------------------------\n", - "fbi hunting 2 arab seen holding bags bombs marathon explosion photo \n", + "fbi hunting arab seen holding bags bombs marathon explosion photo \n", "\n", "\n", "Boston – FBI Hunting for 2 Arab Men seen Holding Bags with Bombs atMarathon Explosion. http://t.co/yndOBf1VUU Photo: http://t.co/iTiCnIcnX8\n", "\n", "--------------------------------------------------------\n", - "boston fbi hunting 2 arab seen holding bags bombs atmarathon explosion photo \n", + "boston fbi hunting arab seen holding bags bombs atmarathon explosion photo \n", "\n", "\n", "Boston – FBI Hunting for 2 Arab Men seen Holding Bags with Bombs at Marathon Explosion. http://t.co/XAegnqiMVs Photo: http://t.co/hq8Iw7jVSB\n", "\n", "--------------------------------------------------------\n", - "boston fbi hunting 2 arab seen holding bags bombs marathon explosion photo \n", + "boston fbi hunting arab seen holding bags bombs marathon explosion photo \n", "\n", "\n", "Extensive analysis of possible Boston marathon bombing suspect pictures. Amazing what can be seen after fact http://t.co/pixKWCwyjI\n", @@ -56590,19 +50592,19 @@ "This site has a ton of evidence (pictures) on who they believe the bombing suspect is from Monday's Boston Marathon. http://t.co/jI4j8ukpmt\n", "\n", "--------------------------------------------------------\n", - "site ton evidence pictures believe bombing suspect monday boston marathon \n", + "site evidence pictures believe bombing suspect monday boston marathon \n", "\n", "\n", "WOW! Look at this from the bombing...suspect pictures, etc. http://t.co/7aHT49qSm3 http://t.co/wfUp3s6h2q\n", "\n", "--------------------------------------------------------\n", - "wow look bombing suspect pictures etc \n", + "look bombing suspect pictures etc \n", "\n", "\n", "What happens when you give 4chan Pictures of the Boston Bombing? http://t.co/YZssTQTAbZ\n", "\n", "--------------------------------------------------------\n", - "happens give 4chan pictures boston bombing \n", + "happens give pictures boston bombing \n", "\n", "\n", "CNN keeps referencing these images as the possible suspect of Boston bombing: http://t.co/5GtZuACutC Not confirmed, but they think it's him.\n", @@ -56620,7 +50622,7 @@ "BREAKING: 4chan on Imgur helping to find possible bombing suspect. Spread the info please http://t.co/I1pj0ZUX3x\n", "\n", "--------------------------------------------------------\n", - "breaking 4chan imgur helping find possible bombing suspect spread info please \n", + "breaking imgur helping find possible bombing suspect spread info please \n", "\n", "\n", "Pictures of possible suspect in the marathon bombing #BostonStrong http://t.co/PCcl4oz6Wc\n", @@ -56644,55 +50646,55 @@ "4chan may have possibly found the bomber http://t.co/sYHDit5Jql #boston #fbi\n", "\n", "--------------------------------------------------------\n", - "4chan may possibly found bomber boston fbi \n", + "may possibly found bomber boston fbi \n", "\n", "\n", "Some people on 4chan think they've found the Boston Marathon bomber. Pics: https://t.co/hXSy7pRJmG \\nhttp://t.co/b6aBpsPDgR You thoughts?\n", "\n", "--------------------------------------------------------\n", - "people 4chan think found boston marathon bomber pics thoughts \n", + "people think found boston marathon bomber pics thoughts \n", "\n", "\n", "4chan may have found the bomber http://t.co/8WgBpTobZP\n", "\n", "--------------------------------------------------------\n", - "4chan may found bomber \n", + "may found bomber \n", "\n", "\n", ".@bwake77 Someone from 4chan might have found the bomber. \\nhttp://t.co/vGDU99gh9D\n", "\n", "--------------------------------------------------------\n", - "someone 4chan might found bomber \n", + "someone might found bomber \n", "\n", "\n", "Wooooooooow 4chan found the Boston bomber??? http://t.co/t6nm3K1VfW\n", "\n", "--------------------------------------------------------\n", - "wooooooooow 4chan found boston bomber \n", + "wooooooooow found boston bomber \n", "\n", "\n", "4Chan *may* have found the Boston Marathon bomber http://t.co/9qaVHcy2lI http://t.co/muPn4k1Tjn http://t.co/f54RxTD904\n", "\n", "--------------------------------------------------------\n", - "4chan may found boston marathon bomber \n", + "may found boston marathon bomber \n", "\n", "\n", "!!!! 4chan might have just found the Boston bomber: http://t.co/jBpq59fwsQ\n", "\n", "--------------------------------------------------------\n", - "4chan might found boston bomber \n", + "might found boston bomber \n", "\n", "\n", "“@SimoRoth: !!!! 4chan might have just found the Boston bomber: http://t.co/PFDGNzuKin” < Amazing if this turns out to be true\n", "\n", "--------------------------------------------------------\n", - "less amazing turns true \n", + "amazing turns true \n", "\n", "\n", "4Chan may have found the bomber:\\nhttp://t.co/NbnR1v9VYM & http://t.co/8EG7FATluO & http://t.co/HJZx1LuAVq\\nIs that the 8yr old in yellow sqr?\n", "\n", "--------------------------------------------------------\n", - "4chan may found bomber 8yr old yellow sqr \n", + "may found bomber old yellow sqr \n", "\n", "\n", "@dansinker Did you see this post? here's a gif of the missing brown student blending into the boston bombing suspect\\n http://t.co/d27pWdvZUK\n", @@ -56704,13 +50706,13 @@ "I think it's safe to say this is suspect 2 and Boston police scanner has identified him by name https://t.co/I95ZkqGDSf\n", "\n", "--------------------------------------------------------\n", - "think safe say suspect 2 boston police scanner identified name \n", + "think safe say suspect boston police scanner identified name \n", "\n", "\n", "Alleged Boston Bombing Suspect Photo Timeline: http://t.co/pNtIunONXJ #boston #marathon #4chan\n", "\n", "--------------------------------------------------------\n", - "alleged boston bombing suspect photo timeline boston marathon 4chan \n", + "alleged boston bombing suspect photo timeline boston marathon \n", "\n", "\n", "Second suspect in the Boston Bombings http://t.co/DAjka26PHI\n", @@ -56758,7 +50760,7 @@ "Morphing du suspect de Boston et celui arrêté ce soir (mort ? ) http://t.co/IVOxnEzY5z\n", "\n", "--------------------------------------------------------\n", - "morphing suspect boston et celui arrêté ce soir mort \n", + "morphing suspect boston celui arrêté soir mort \n", "\n", "\n", "@NickyAACampbell Boston bomb suspect Sunil Tripathi https://t.co/ReF1Hmfngv\n", @@ -56770,13 +50772,19 @@ "4Chan crowd-sourcing the Boston marathon bombing suspect search via security footage: http://t.co/1VuBqDgCnw\n", "\n", "--------------------------------------------------------\n", - "4chan crowd sourcing boston marathon bombing suspect search via security footage \n", + "crowd sourcing boston marathon bombing suspect searchsecurity footage \n", + "\n", + "\n", + "RT \"@sodagrrl: More images of bombing suspect? http://t.co/geBhZ6NC1q\" #BostonMarathon #BostonBombings\n", + "\n", + "--------------------------------------------------------\n", + "bostonmarathon bostonbombings \n", "\n", "\n", "Photo collage showing apparent bombing suspect. I can't vouch for the source though. #24hourNews http://t.co/VaDma7dvH1\n", "\n", "--------------------------------------------------------\n", - "photo collage showing apparent bombing suspect vouch source though 24hournews \n", + "photo collage showing apparent bombing suspect vouch source though 4hournews \n", "\n", "\n", "Boston Bombing Suspect? http://t.co/ExORdEKI6M\n", @@ -56794,13 +50802,13 @@ "@DJDharmaNYC Boston Marathon Bombing Suspect: ID'd By 4Chan Think Tank? | http://t.co/MQPtvYB8sQ | http://t.co/LHM2HTwpcV\n", "\n", "--------------------------------------------------------\n", - "boston marathon bombing suspect id 4chan think tank \n", + "boston marathon bombing suspect id think tank \n", "\n", "\n", "@PhillyD Maybe give this a RT. Possible suspect from the Boston Marathon. http://t.co/XTNhlnagUs\\n\\nFull gallery http://t.co/q11e4g88yP\n", "\n", "--------------------------------------------------------\n", - "maybe give rt possible suspect boston marathon full gallery \n", + "maybe give possible suspect boston marathon full gallery \n", "\n", "\n", "Boston Bomber suspect is missing person Sunil Tripathi http://t.co/vX3JpU1maU\n", @@ -56812,7 +50820,7 @@ "interesting photo http://t.co/BBUV2VmW6o Boston suspect #2?\n", "\n", "--------------------------------------------------------\n", - "interesting photo boston suspect 2 \n", + "interesting photo boston suspect \n", "\n", "\n", "More images of bombing suspect? http://t.co/QybGwWmm54\n", @@ -56830,13 +50838,13 @@ "Possible suspects identified - http://t.co/vELg37ddTG #Bostonbombings #4chan\n", "\n", "--------------------------------------------------------\n", - "possible suspects identified bostonbombings 4chan \n", + "possible suspects identified bostonbombings \n", "\n", "\n", "4chan sur les traces du poseur de bombes de Boston http://t.co/EV7f9rtQ0U\n", "\n", "--------------------------------------------------------\n", - "4chan sur traces poseur bombes boston \n", + "traces poseur bombes boston \n", "\n", "\n", "RIP Tamerlan and free Dzhokhar Tsarnaev. This corrupt society will never stop blaming people. Who will… http://t.co/xAGDE2Zyha\n", @@ -56848,19 +50856,19 @@ "#Boston #Watertown #BPD New picture of Sunil Tripathi tonight, in a 7-11: https://t.co/ae5deGvp5s\n", "\n", "--------------------------------------------------------\n", - "boston watertown bpd new picture sunil tripathi tonight 7 11 \n", + "boston watertown bpd new picture sunil tripathi tonight a1 \n", "\n", "\n", "New Release: Suspect 1: Mike Mulugeta Suspect 2: Sunil Tripathi. || Suspect 1: http://t.co/K8e3G5wBUp || Suspect 2: http://t.co/0weisVVMKJ\"\n", "\n", "--------------------------------------------------------\n", - "new release suspect 1 mike mulugeta suspect 2 sunil tripathi suspect 1 suspect 2 \n", + "new release suspect mike mulugeta suspect sunil tripathi suspect suspect \n", "\n", "\n", "1 of the boston marathon suspects is \\nSunil Tripathi Missing brown/ivy league student http://t.co/kz83UIbr4b\n", "\n", "--------------------------------------------------------\n", - "1 boston marathon suspects sunil tripathi missing brown ivy league student \n", + "boston marathon suspects sunil tripathi missing brown ivy league student \n", "\n", "\n", "Boston bombings suspects innocent: father #BostonMarathon #Kenya http://t.co/CJq4ZhKnqp http://t.co/saen4lqRwc\n", @@ -56872,25 +50880,25 @@ "This is so sad the bomber and the 8 year old boy that died #prayforboston http://t.co/nU4h6hmYT3\n", "\n", "--------------------------------------------------------\n", - "sad bomber 8 year old boy died prayforboston \n", + "sad bomber year old boy died prayforboston \n", "\n", "\n", "This is just sad πΆπ”. The 8 yr old that died, the bomber, nd the bag. #prayforboston #watertown http://t.co/bADr2c817m\n", "\n", "--------------------------------------------------------\n", - "sad π άπ 8 yr old died bomber nd bag prayforboston watertown \n", + "sad ά yr old died bomber nd bag prayforboston watertown \n", "\n", "\n", "#Breaking: New #BostonMarathon Suspect Photos Released by FBI: || Suspect 1: http://t.co/7wd814SlJx || Suspect 2: http://t.co/I2sCCfr03W\n", "\n", "--------------------------------------------------------\n", - "breaking new bostonmarathon suspect photos released fbi suspect 1 suspect 2 \n", + "breaking new bostonmarathon suspect photos released fbi suspect suspect \n", "\n", "\n", "β€@TEDchris: Wild how Reddit users crowdsource photo of Boston suspect, zoom, enhance. http://t.co/kE9fQtsGRS Source: http://t.co/3A9iunoY1lβ€\n", "\n", "--------------------------------------------------------\n", - "β wild reddit users crowdsource photo boston suspect zoom enhance source \n", + "β \n", "\n", "\n", "Wild how Reddit users crowdsource photo of Boston suspect, zoom, enhance. http://t.co/J9fRCsrCgI Source: http://t.co/Esbvg3Dkr6\n", @@ -56908,43 +50916,43 @@ "Since the second Boston bombing suspect was apprehended on Friday, there's been a wave of support,… http://t.co/zd3fcVj2Dt\n", "\n", "--------------------------------------------------------\n", - "since second boston bombing suspect apprehended friday wave support β \n", + "since second boston bombing suspect apprehended friday wave support \n", "\n", "\n", "#THATSHOWWEFREAKINGDOIT #CAPTURED #ManHunt #BostonBomber #WeGotHim #BostonMarathon #GoToHell #USARules http://t.co/YOyFtLL0ZN\n", "\n", "--------------------------------------------------------\n", - "thatshowwefreakingdoit captured manhunt bostonbomber wegothim bostonmarathon gotohell usarules \n", + "thatshowwefreakingdoit captured manhunt bostonbomber wegothim bostonmarathon gotell usarules \n", "\n", "\n", "#BostonMarathon PHOTOS of Suspect 2 in white cap, seen planting bomb on surveillance http://t.co/wUDHoIHlYe http://t.co/W2Hjpha485\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon photos suspect 2 white cap seen planting bomb surveillance \n", + "bostonmarathon photos suspect white cap seen planting bomb surveillance \n", "\n", "\n", "New FBI photo of Boston bombing suspect 2 http://t.co/IPHLJuk2VR\n", "\n", "--------------------------------------------------------\n", - "new fbi photo boston bombing suspect 2 \n", + "new fbi photo boston bombing suspect \n", "\n", "\n", "Suspect #1 for Boston Marathon attack #repost #this http://t.co/kWc4NkFT4p\n", "\n", "--------------------------------------------------------\n", - "suspect 1 boston marathon attack repost \n", + "suspect boston marathon attack repost \n", "\n", "\n", "Boston bombings suspect #2 #Boston #bostonmarathon #handsoverhearts #prayforboston #bostonhelp #bostonstrong http://t.co/Qh2nPX5jX0\n", "\n", "--------------------------------------------------------\n", - "boston bombings suspect 2 boston bostonmarathon handsoverhearts prayforboston bostonhelp bostonstrong \n", + "boston bombings suspect boston bostonmarathon handsoverhearts prayforboston bostonhelp bostonstrong \n", "\n", "\n", "Boston Marathon bombing suspects ID'd as brothers from Russia; 1 suspect dead http://t.co/hm5M668jyG #Boston http://t.co/Qr6FyqVNEC\n", "\n", "--------------------------------------------------------\n", - "boston marathon bombing suspects id brothers russia 1 suspect dead boston \n", + "boston marathon bombing suspects id brothers russia suspect dead boston \n", "\n", "\n", "Beyond any doubt the single most sad/disturbing/eerie/bizarre photo I have ever seen. #prayforboston… http://t.co/fhDFGISNFg\n", @@ -56956,7 +50964,7 @@ "This made me tear up a lil . π‘π™π±π¥π” #boston #prayforboston http://t.co/Q7alf8LFcm\n", "\n", "--------------------------------------------------------\n", - "made tear lil π π π π π boston prayforboston \n", + "made tear lil boston prayforboston \n", "\n", "\n", "The FBI has released a new photo of suspect Dzhokhar Tsarnaev http://t.co/9xFMdgkFUQ\n", @@ -56986,7 +50994,7 @@ "Foto del sospechoso Dzhokhar Tsarnaev, de 19 aΓ±os. Armado y considerado altamente peligroso http://t.co/64uNYMVsdg\n", "\n", "--------------------------------------------------------\n", - "foto sospechoso dzhokhar tsarnaev 19 aγ armado considerado altamente peligroso \n", + "foto sospechoso dzhokhar tsarnaev de9 aγ armado considerado altamente peligroso \n", "\n", "\n", "They finally caught the second suspect in the Boston bombing thriller http://t.co/jXaneaO0DC\n", @@ -57010,13 +51018,13 @@ "Smh......that's al I can say poor baby may in rest on #PrayForBoston sad http://t.co/xymoHPepQ1\n", "\n", "--------------------------------------------------------\n", - "smh say poor baby may rest prayforboston sad \n", + "say poor baby may rest prayforboston sad \n", "\n", "\n", "Reported photo of suspect 2 in Boston bombings emerges on Facebook http://t.co/ItR4vvBHFH http://t.co/tby3JxQWup\n", "\n", "--------------------------------------------------------\n", - "reported photo suspect 2 boston bombings emerges facebook \n", + "reported photo suspect boston bombings emerges facebook \n", "\n", "\n", "Bombers in Boston help find them #prayforboston http://t.co/E6CVI1rlJX\n", @@ -57025,12 +51033,6 @@ "bombers boston help find prayforboston \n", "\n", "\n", - "β€@FOX19: FBI releases new photo of suspect Dzhokhar Tsarnaev. RT ! http://t.co/uaw2Rw4Hcwβ€\n", - "\n", - "--------------------------------------------------------\n", - "β fbi releases new photo suspect dzhokhar tsarnaev rt \n", - "\n", - "\n", "This just makes your heart drop. #Prayforboston #bostonmarathon there are multiple kids and families… http://t.co/RrX5aoZIIl\n", "\n", "--------------------------------------------------------\n", @@ -57040,19 +51042,19 @@ "Suspect 2 from Boston Marathon Bombing. http://t.co/TiDZbkUxBi\n", "\n", "--------------------------------------------------------\n", - "suspect 2 boston marathon bombing \n", + "suspect boston marathon bombing \n", "\n", "\n", "Boston Marathon suspect #2 with white hat (far left) running from explosion, no backpack.. http://t.co/fB8KXPURE5\n", "\n", "--------------------------------------------------------\n", - "boston marathon suspect 2 white hat far left running explosion backpack \n", + "boston marathon suspect white hat far left running explosion backpack \n", "\n", "\n", "Unknown Suspect #2 Boston Bombing #FBI Wanted Poster http://t.co/uiqLE3QRms\n", "\n", "--------------------------------------------------------\n", - "unknown suspect 2 boston bombing fbi wanted poster \n", + "unknown suspect boston bombing fbi wanted poster \n", "\n", "\n", "#BOLO for #boston bombing suspect Dzhokhar Tsarnaev. He may be driving a gray Honda CRV, with… http://t.co/mILcZLdM1z\n", @@ -57070,7 +51072,7 @@ "#CommunityAlert: As search for Dzhokhar Tsarnaev continues, we thank you 4 your continued cooperation & support. http://t.co/zZD1SzTO8u\n", "\n", "--------------------------------------------------------\n", - "communityalert search dzhokhar tsarnaev continues thank 4 continued cooperation support \n", + "communityalert search dzhokhar tsarnaev continues thank continued cooperation support \n", "\n", "\n", "This is the latest picture of the Boston bomber suspect. Share and keep a look out! He could be anywhere! http://t.co/lDrk743W4w\n", @@ -57094,25 +51096,25 @@ "New high resolution photo of suspect #2 in Boston Bombing. http://t.co/8RhNi4wL7k\n", "\n", "--------------------------------------------------------\n", - "new high resolution photo suspect 2 boston bombing \n", + "new high resolution photo suspect boston bombing \n", "\n", "\n", "suspect 2 attentat Boston celui qui a posΓ© son sac avant l'explosion qui a permis de remonter au suspect 1 http://t.co/1GOhtIOLlY\n", "\n", "--------------------------------------------------------\n", - "suspect 2 attentat boston celui qui posγ sac avant l explosion qui permis remonter au suspect 1 \n", + "suspect attentat boston celui posγ sac avant explosion permis remonter suspect \n", "\n", "\n", "2nd suspect in custody from the Boston Marathon bombings. He is injured and being treated from gun… http://t.co/298n5q8BFY\n", "\n", "--------------------------------------------------------\n", - "2nd suspect custody boston marathon bombings injured treated gunβ \n", + "suspect custody boston marathon bombings injured treated gunβ \n", "\n", "\n", "Separados por um #Chris.\\n\\n#DzhokharTsarnaev #greg #VicentMartella #Watertown #Boston… http://t.co/aLHFxJ5G1G\n", "\n", "--------------------------------------------------------\n", - "separados um chris dzhokhartsarnaev greg vicentmartella watertown bostonβ \n", + "separados chris dzhokhartsarnaev greg vicentmartella watertown bostonβ \n", "\n", "\n", "FIND THIS FUCK! #Boston #bomber #coward #shootout #bostonstrong #FBI #BPD #watertown #cambridge… http://t.co/KQv6RqxXIC\n", @@ -57160,13 +51162,7 @@ "Updated photo of Dzhokhar Tsarnaev from FBI, they're still looking for him. DOB: 7/22/1993 http://t.co/O5n8JfjibY\n", "\n", "--------------------------------------------------------\n", - "updated photo dzhokhar tsarnaev fbi still looking dob 7 22 1993 \n", - "\n", - "\n", - "β€@Z00kiehne: Left-Boston suspect Right-jnatoli10 http://t.co/oy1UcQxRBLβ€ @jnatoli10\n", - "\n", - "--------------------------------------------------------\n", - "β left boston suspect right jnatoli10 \n", + "updated photo dzhokhar tsarnaev fbi still looking dob93 \n", "\n", "\n", "#bostonstrong #usa #oneboston #onenation #prayforboston http://t.co/SdfIGWdFxH\n", @@ -57178,7 +51174,7 @@ "They caught his ass in Boston suspect 1 is dead now suspect 2 will be in jail for the rest of his damn… http://t.co/vnpkHuDKcx\n", "\n", "--------------------------------------------------------\n", - "caught ass boston suspect 1 dead suspect 2 jail rest damnβ \n", + "caught ass boston suspect dead suspect jail rest damnβ \n", "\n", "\n", "Game over Bitch #bostonmarathon http://t.co/1sQJC5be0l\n", @@ -57190,7 +51186,7 @@ "Nooo poor, sweet baby Martin before the explosion. πΆπ‘Ό omg I can't. #ripmartin #manhunt #boston… http://t.co/MZwQuOhr1v\n", "\n", "--------------------------------------------------------\n", - "nooo poor sweet baby martin explosion π άπ ό omg ripmartin manhunt bostonβ \n", + "nooo poor sweet baby martin explosion ά ό ripmartin manhunt bostonβ \n", "\n", "\n", "#prayforboston #prayfortheworldwelivein http://t.co/GQtpwqAmvm\n", @@ -57208,31 +51204,31 @@ "A very clear photo of suspect no. 2 in Boston -- check him out in white hat turning corner on the left http://t.co/OnCLOX3JTm\n", "\n", "--------------------------------------------------------\n", - "clear photo suspect 2 boston check white hat turning corner left \n", + "clear photo suspect boston check white hat turning corner left \n", "\n", "\n", "From a friend in local news in Boston. MT @amorse9: http://t.co/FRv0tIrBCe Suspect #2 moving around corner on left.\n", "\n", "--------------------------------------------------------\n", - "friend local news boston suspect 2 moving around corner left \n", + "friend local news boston \n", "\n", "\n", "C'mon people lets work together and catch these fuckers #prayforboston #justicewillbeserved http://t.co/gXy9DuuuJE\n", "\n", "--------------------------------------------------------\n", - "c mon people lets work together catch fuckers prayforboston justicewillbeserved \n", + "people lets work together catch fuckers prayforboston justicewillbeserved \n", "\n", "\n", "La foto mas reciente del profugo terrorista Dzhokhar Tsarnaev http://t.co/UJoC7UaveI\n", "\n", "--------------------------------------------------------\n", - "foto mas reciente profugo terrorista dzhokhar tsarnaev \n", + "foto reciente profugo terrorista dzhokhar tsarnaev \n", "\n", "\n", "FBI just posted New Photo of Suspect #2, Dzhokhar Tsarnaev. #BostonMarthon http://t.co/FB7lbHGSCB\n", "\n", "--------------------------------------------------------\n", - "fbi posted new photo suspect 2 dzhokhar tsarnaev bostonmarthon \n", + "fbi posted new photo suspect dzhokhar tsarnaev bostonmarthon \n", "\n", "\n", "A closer look at FBI's Boston bombing suspect's hat. RT @RichardPhillips: http://t.co/WTpTwRP00X\n", @@ -57256,13 +51252,13 @@ "FBI ΰΉ€ΰΈΰΈΆΰΈ ΰΈ²ΰΈΰΈ΅ΰΈ·ΰΈΰΈ£ΰΈ°ΰΉ€ΰΈΰΈ΄ΰΈ”ΰΈ΅ΰΈ²ΰΈ£ΰΈ²ΰΈΰΈΰΈ™ΰΈΰΈΰΈΰΈ•ΰΈ±ΰΈ™ ΰΈ—ΰΈµΰΉΰΈΰΈ³ΰΈ¥ΰΈ±ΰΈ‡ΰΈ«ΰΈ¥ΰΈΰΈ«ΰΈ™ΰΈµ ΰΈΰΈ·ΰΉΰΈ Dzhokhar A. Tsarnaev http://t.co/AHzNQyJuCj\n", "\n", "--------------------------------------------------------\n", - "fbi ΰή ΰέ ΰέάΰέ ΰέ²ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰή ΰέ ΰέ ΰέ ΰέ ΰέ²ΰέ ΰέ²ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέµΰή ΰέ ΰέ³ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέµ ΰέ ΰέ ΰή ΰέ dzhokhar tsarnaev \n", + "fbi ΰή ά ² ΰή ² ² µΰή ³ µ ΰή dzhokhar tsarnaev \n", "\n", "\n", "New photo from FBI of Suspect No. 2 -- Dzhokhar A. Tsarnaev -- still at-large in Boston Marathon bombings http://t.co/FfU9MHEjlS\n", "\n", "--------------------------------------------------------\n", - "new photo fbi suspect 2 dzhokhar tsarnaev still large boston marathon bombings \n", + "new photo fbi suspect dzhokhar tsarnaev still large boston marathon bombings \n", "\n", "\n", "#boston #Coward #Manhunt #looser #Bomber http://t.co/PBAx5IDamJ\n", @@ -57306,35 +51302,23 @@ "--------------------------------------------------------\n", "punkass bitch dzhokhartsarnaev bostonmarathon bomber \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "Suspect #2 in Boston Marathon bombing still at large and considered armed and dangerous. #watertown http://t.co/TqPjzxPV6O\n", "\n", "--------------------------------------------------------\n", - "suspect 2 boston marathon bombing still large considered armed dangerous watertown \n", + "suspect boston marathon bombing still large considered armed dangerous watertown \n", "\n", "\n", "Updated photo of Boston bombing suspect 2 released by FBI: http://t.co/RbhrOFmq1P http://t.co/FMGLupgBpx\n", "\n", "--------------------------------------------------------\n", - "updated photo boston bombing suspect 2 released fbi \n", + "updated photo boston bombing suspect released fbi \n", "\n", "\n", "Guys! #FBI Suspect 2 of the #BostonMarathon Bombing of #ATLARGE IN #BOSTON. Right now reports are… http://t.co/RyesjkAZ5h\n", "\n", "--------------------------------------------------------\n", - "guys fbi suspect 2 bostonmarathon bombing atlarge boston right reports areβ \n", - "\n", - "\n", - "Suspect in Boston marathon bombing http://t.co/0Uc1Eas3dN\n", - "\n", - "--------------------------------------------------------\n", - "suspect boston marathon bombing \n", + "guys fbi suspect bostonmarathon bombing atlarge boston right reports areβ \n", "\n", "\n", "#FBI #Suspected #Boston #BostonMarathon #Prayforboston #pray4boston http://t.co/Hn6ZgqhYhj\n", @@ -57346,13 +51330,13 @@ "You're done!! Can't wait until they find these assholes!! #prayforboston #justice π™β¤ http://t.co/pPX1iDNoNU\n", "\n", "--------------------------------------------------------\n", - "done wait find assholes prayforboston justice π β \n", + "done wait find assholes prayforboston justice \n", "\n", "\n", "Police: Boston bombing \"Suspect #2\" reportedly armed and dangerous still on the loose -- latest photo: http://t.co/4IaxRbq36o\n", "\n", "--------------------------------------------------------\n", - "police boston bombing suspect 2 reportedly armed dangerous still loose latest photo \n", + "police boston bombing suspect reportedly armed dangerous still loose latest photo \n", "\n", "\n", "#Dzokhar #Tsarnaev #gta #saintsrow #gameover #boston #marathon Use game genie next time, you'll last… http://t.co/lPAGRFTLRW\n", @@ -57364,13 +51348,13 @@ "Victim Martin Richard standing in front of bomber moments before #prayforboston #RIP πΆ http://t.co/04kBxmIrgd\n", "\n", "--------------------------------------------------------\n", - "victim martin richard standing front bomber moments prayforboston rip π ά \n", + "victim martin richard standing front bomber moments prayforboston rip ά \n", "\n", "\n", "They finally caught his bitch ass!!!! Haha im happy :) #HappyAsFuck #ThugShit #USA #PrayForBoston http://t.co/R8UeyVgX5i\n", "\n", "--------------------------------------------------------\n", - "finally caught bitch ass haha im happy happyasfuck thugshit usa prayforboston \n", + "finally caught bitch ass happy happyasfuck thugshit usa prayforboston \n", "\n", "\n", "So glad they caught both of the bombers...! Justice will prevail... #prayforboston http://t.co/950KB5TNxU\n", @@ -57388,13 +51372,13 @@ "BREAKING NEWS: BOSTON POLICE GOT EM!!!!! 2nd Suspect in Custody!!! #boston http://t.co/JExFbh0h3L\n", "\n", "--------------------------------------------------------\n", - "breaking news boston police got em second suspect custody boston \n", + "breaking news boston police got second suspect custody boston \n", "\n", "\n", "Interesting post from 4chan... Suspect and backpack that exploded in red, 8-year old victim who died in blue. http://t.co/z8lWYHZA2W\n", "\n", "--------------------------------------------------------\n", - "interesting post 4chan suspect backpack exploded red 8 year old victim died blue \n", + "interesting post suspect backpack exploded red year old victim died blue \n", "\n", "\n", "Suspect photos in the Boston bombing released: http://t.co/SyhvvlbEFx\n", @@ -57409,22 +51393,16 @@ "picture unbelievable poor little martin catch bastard bostonstrong prayforboston \n", "\n", "\n", - "@TheAtlanticWire: Hi-res image by @nytimes allegedly Boston bombing suspect http://t.co/gUl9VJ9mqw http://t.co/n93S10PBLS closest Arab?\n", - "\n", - "--------------------------------------------------------\n", - "hi res image allegedly boston bombing suspect closest arab \n", - "\n", - "\n", "Another look at \"Suspect #2\" in the Boston bombing investigation. Seen here talking on a phone. http://t.co/JgqZByZRn5β€\n", "\n", "--------------------------------------------------------\n", - "another look suspect 2 boston bombing investigation seen talking phone \n", + "another look suspect boston bombing investigation seen talking phone \n", "\n", "\n", "BPD police commissioner @EdDavis3 tweeted Suspect 2 in Boston Marathon explosions is still at large http://t.co/uPsuLbgaWB\n", "\n", "--------------------------------------------------------\n", - "bpd police commissioner tweeted suspect 2 boston marathon explosions still large \n", + "bpd police commissioner tweeted suspect boston marathon explosions still large \n", "\n", "\n", "Boston RIC has released this flier showing at large suspect Dzhokhar A. Tsarnaev. He may be armed & dangerous. http://t.co/LNNBXcKq8r\n", @@ -57448,19 +51426,19 @@ "Boston bombings suspects 1 and 2 #Boston #bostonmarathon #handsoverhearts #prayforboston #bostonhelp #bostonstrong http://t.co/RNp8g4PJlR\n", "\n", "--------------------------------------------------------\n", - "boston bombings suspects 1 2 boston bostonmarathon handsoverhearts prayforboston bostonhelp bostonstrong \n", + "boston bombings suspects boston bostonmarathon handsoverhearts prayforboston bostonhelp bostonstrong \n", "\n", "\n", "Brothers possibly from Chechnya....WOW!! Gotta Google that one. #Manhunt #Craziness http://t.co/9oVyuBY9Xt\n", "\n", "--------------------------------------------------------\n", - "brothers possibly chechnya wow gotta google one manhunt craziness \n", + "brothers possibly chechnya gotta google one manhunt craziness \n", "\n", "\n", "Suspect 2 in #BostonMarathon bombing - do you know this man? 1-800-CALL-FBI http://t.co/2JY0pvnaym\n", "\n", "--------------------------------------------------------\n", - "suspect 2 bostonmarathon bombing know 1 800 call fbi \n", + "suspect bostonmarathon bombing know call fbi \n", "\n", "\n", "White hat to the left of photo..walking away from scene no bag http://t.co/lfPuoXQrXC boston bombing suspect. From reddit\n", @@ -57496,7 +51474,7 @@ "#Persons of #interest. #Bostonmarathon #bombing . Call #FBI at 1-800-225-5324 or email Boston@ic.fbi.gov http://t.co/sGungDYgPv\n", "\n", "--------------------------------------------------------\n", - "persons interest bostonmarathon bombing call fbi 1 800 225 5324 email boston fbi gov \n", + "persons interest bostonmarathon bombing call fbi at0025324 email boston fbi gov \n", "\n", "\n", "#CAPTURED #INCUSTODY http://t.co/Bpsa11adKy\n", @@ -57508,7 +51486,7 @@ "Possible suspect of the Boston Marathon bombing. If that's really him my oh my! In other words he's… http://t.co/CK6UCpU080\n", "\n", "--------------------------------------------------------\n", - "possible suspect boston marathon bombing really oh words sβ \n", + "possible suspect boston marathon bombing really mymy words sβ \n", "\n", "\n", "New photo of second Boston suspect provided by Boston Police Department moments ago - http://t.co/rEbmY0Pegf\n", @@ -57520,7 +51498,7 @@ "This seriously sad! #prayforboston π™π™π™.. One man down now let's catch the other piece of shit http://t.co/gG1aMcfYdo\n", "\n", "--------------------------------------------------------\n", - "seriously sad prayforboston π π π one let catch piece shit \n", + "seriously sad prayforboston one let catch piece shit \n", "\n", "\n", "Justice been survive #bostonbombing #prayforboston http://t.co/D7xIZgG0pX\n", @@ -57538,7 +51516,7 @@ "FBI suspect in the Boston Marathon Bombing.1-800-call-FBI http://t.co/D50OLZjzRy\n", "\n", "--------------------------------------------------------\n", - "fbi suspect boston marathon bombing 1 800 call fbi \n", + "fbi suspect boston marathon bombing00 call fbi \n", "\n", "\n", "http://t.co/aDjvyn08KB #Boston #Bomber suspect #Whitehat ... Always has his ID called fake at the #Pub. #Retweet. make him #pissedoff #Tcot\n", @@ -57547,12 +51525,6 @@ "boston bomber suspect whitehat always id called fake pub retweet make pissedoff tcot \n", "\n", "\n", - "Unknown Suspect #1 Boston Bombing #FBI Wanted Poster http://t.co/1zSlXwMQIR\n", - "\n", - "--------------------------------------------------------\n", - "unknown suspect 1 boston bombing fbi wanted poster \n", - "\n", - "\n", "Finally the man hunt is over. Justice will be served. #PrayForBoston #BPD #GodBlessAmerica http://t.co/DJP92mwvGy\n", "\n", "--------------------------------------------------------\n", @@ -57568,7 +51540,7 @@ "http://t.co/bf9sCNWHip suspect 2 in Boston bombing 19 yr old Eastern European armed and dangerous and at large, huge man hunt underway\n", "\n", "--------------------------------------------------------\n", - "suspect 2 boston bombing 19 yr old eastern european armed dangerous large huge hunt underway \n", + "suspect boston bombing9 yr old eastern european armed dangerous large huge hunt underway \n", "\n", "\n", "New photo of what seems to be Boston bombing suspect. http://t.co/o8YT2optKG #bostonmarathon\n", @@ -57592,7 +51564,7 @@ "β€@Pain_4Glory β€@_Naes103 FREE MY FUCCIN BRO Dzhokhar A. Tsarnaev http://t.co/ZaxbSPUnUn http://t.co/vBF8r2mOjXβ€β€\n", "\n", "--------------------------------------------------------\n", - "β β free fuccin bro dzhokhar tsarnaev β \n", + "β free fuccindzhokhar tsarnaev \n", "\n", "\n", "#eyeforaneye #watertown #marathonbomber #justice #boston #bostonstrong http://t.co/yzBo8LCoVi\n", @@ -57610,7 +51582,7 @@ "This is suspect #2 leaving the scene of the Boston Marathon bombing. The man who took this new pic.,… http://t.co/cbvAXucImh\n", "\n", "--------------------------------------------------------\n", - "suspect 2 leaving scene boston marathon bombing took new pic β \n", + "suspect leaving scene boston marathon bombing took new pic \n", "\n", "\n", "That kid is one heck of a hide-and-go seek player #manhunt http://t.co/YZsli5mb4N\n", @@ -57628,7 +51600,7 @@ "This is so sad! 8 year old Martin Richard & Dzhokhar Tsarnaev. How could someone do this? #manhunt… http://t.co/1031odV2sV\n", "\n", "--------------------------------------------------------\n", - "sad 8 year old martin richard dzhokhar tsarnaev could someone manhuntβ \n", + "sad year old martin richard dzhokhar tsarnaev could someone manhuntβ \n", "\n", "\n", "Dzhokhar Tsarnaev (Yojar Sarnav) de Chechenia! http://t.co/m75UQOe7dL\n", @@ -57646,7 +51618,7 @@ "Boston marathon bomber captured. #captured #bostonbombing #bombingsuspect #suspectcaptured #100k… http://t.co/mK17ttsetn\n", "\n", "--------------------------------------------------------\n", - "boston marathon bomber captured captured bostonbombing bombingsuspect suspectcaptured 100kβ \n", + "boston marathon bomber captured captured bostonbombing bombingsuspect suspectcaptured00kβ \n", "\n", "\n", "Gotta find these people..gotta get this pix out.. #bostonsuspects #prayforboston #bostonmassacre http://t.co/fP7RennPb7\n", @@ -57670,13 +51642,13 @@ "π«BREAKINGπ« Second suspect down on Franklin Street in Watertown. #boston #bostonmarathon #suspect… http://t.co/O7tg7dEyvh\n", "\n", "--------------------------------------------------------\n", - "π breakingπ second suspect franklin street watertown boston bostonmarathon suspectβ \n", + "breaking second suspect franklin street watertown boston bostonmarathon suspectβ \n", "\n", "\n", "#Gotcha #bostonmarathon http://t.co/yG94Rrs9ji\n", "\n", "--------------------------------------------------------\n", - "gotcha bostonmarathon \n", + "gotcbostonmarathon \n", "\n", "\n", "The lil boy that died in blue. One of the brothers placed the bag in red. #prayforboston http://t.co/uzMSoSeRUX\n", @@ -57688,13 +51660,13 @@ "#bostonmarathon #boston here are 2 persons of interest the #fbi would like to speak with. If you… http://t.co/iUhWD17dGM\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon boston 2 persons interest fbi would like speak youβ \n", + "bostonmarathon boston persons interest fbi would like speak youβ \n", "\n", "\n", "#repost -- I have no words.. This picture is self-explanatory #RIP Martin β¤β¤ #BostonStrong #PrayForBoston http://t.co/qBk1DXrCLm\n", "\n", "--------------------------------------------------------\n", - "repost words picture self explanatory rip martin β β bostonstrong prayforboston \n", + "repost words picture self explanatory rip martin bostonstrong prayforboston \n", "\n", "\n", "Image of Boston Marathon Blasts Suspect http://t.co/Nu7sw8OdjZ\n", @@ -57727,12 +51699,6 @@ "another pic younger brother still running wate \n", "\n", "\n", - "#Persons of #interest. #Bostonmarathon #bombing Call #FBI at 1-800-225-5324 or email Boston@ic.fbi.gov http://t.co/2fBHZRyGgl\n", - "\n", - "--------------------------------------------------------\n", - "persons interest bostonmarathon bombing call fbi 1 800 225 5324 email boston fbi gov \n", - "\n", - "\n", "m1llston3's photo the suspect of boston bomb http://t.co/7eIS1Nw9o6\n", "\n", "--------------------------------------------------------\n", @@ -57742,7 +51708,7 @@ "White Cap Left Side @olivercameron: Reddit found a clearer photo of the second Boston Bomber suspect after explosion http://t.co/ODgFBbFxeG\n", "\n", "--------------------------------------------------------\n", - "white cap left side reddit found clearer photo second boston bomber suspect explosion \n", + "white cap left side \n", "\n", "\n", "Suspect that is still outstanding, is identified as the male with the white hat in the photos. Re: Boston bombing. http://t.co/LJLzSIx1pG\n", @@ -57754,13 +51720,13 @@ "Help Boston by sharing the suspects' pics. Suspect #1. #helpboston #bostonbombing #bostonbombers http://t.co/dmbkraI1HG\n", "\n", "--------------------------------------------------------\n", - "help boston sharing suspects pics suspect 1 helpboston bostonbombing bostonbombers \n", + "help boston sharing suspects pics suspect helpboston bostonbombing bostonbombers \n", "\n", "\n", "@andersoncooper Apparently another photo of suspect 2 in the Boston Marathon bombing has been found.\\n\\nhttp://t.co/TvlA3nG3Qy\n", "\n", "--------------------------------------------------------\n", - "apparently another photo suspect 2 boston marathon bombing found \n", + "apparently another photo suspect boston marathon bombing found \n", "\n", "\n", "Boston bomb suspect could face death #BostonPoliceDepartment #Kenya http://t.co/5XVgu7qLnn http://t.co/BYWIOoq9C3\n", @@ -57772,7 +51738,7 @@ "You can run but you can't hide!! You're going down you lil fucker!!!π π‘ #boston #watertown… http://t.co/cKoacCkVCj\n", "\n", "--------------------------------------------------------\n", - "run hide going lil fucker π π boston watertownβ \n", + "run hide going lil fucker boston watertownβ \n", "\n", "\n", "We're coming for you. #PrayForBoston #PrayerWorks http://t.co/SPgmV4vXiS\n", @@ -57784,7 +51750,7 @@ "New pictures of suspect 1: http://t.co/HYFXz6IoSr suspect 2: http://t.co/EopUbDzxRZ #BostonMarathon\n", "\n", "--------------------------------------------------------\n", - "new pictures suspect 1 suspect 2 bostonmarathon \n", + "new pictures suspect suspect bostonmarathon \n", "\n", "\n", "#bostonmarathon #cowards #fuckingbastards http://t.co/fbBvsO8Wvv\n", @@ -57808,7 +51774,7 @@ "Boston Marathon Bombing UPDATE:\\n\\nThe suspect pictured above in the black hat, Tamerlan Tsarnaev, 26,… http://t.co/LVXf4prNz1\n", "\n", "--------------------------------------------------------\n", - "boston marathon bombing update suspect pictured black hat tamerlan tsarnaev 26 β \n", + "boston marathon bombing update suspect pictured black hat tamerlan tsarnaev 6 \n", "\n", "\n", "FBI releases new image of 2nd Boston Marathon bombing suspect as manhunt continues http://t.co/38kr6pKKsC #Watertown http://t.co/oeOKaBgBUc\n", @@ -57823,34 +51789,28 @@ "boston bomb suspect \n", "\n", "\n", - "Boston Bombing Suspect 1 http://t.co/apy5VjGzeW\n", - "\n", - "--------------------------------------------------------\n", - "boston bombing suspect 1 \n", - "\n", - "\n", "One of the last pics of Martin in Boston. With suspect #2 and the bomb. So sad!!! http://t.co/iFmLwWNl3j\n", "\n", "--------------------------------------------------------\n", - "one last pics martin boston suspect 2 bomb sad \n", + "one last pics martin boston suspect bomb sad \n", "\n", "\n", "Boston bombing suspect is a medical student, father says http://t.co/U8mGUrtAQB … http://t.co/EAFVU8zQsT (via @buzzfeednews)\n", "\n", "--------------------------------------------------------\n", - "boston bombing suspect medical student father says β \n", + "boston bombing suspect medical student father says \n", "\n", "\n", "In the blue circle..the 8 year old who lost his life.. :(..in the red circle is Dzhokhar Tsarnaev… http://t.co/CnuYHHVhNU\n", "\n", "--------------------------------------------------------\n", - "blue circle 8 year old lost life red circle dzhokhar tsarnaevβ \n", + "blue circle year old lost life red circle dzhokhar tsarnaevβ \n", "\n", "\n", "Photos of Boston Marathon Explosion FBI Released just 12 Hours B4 after Press Meet in Boston .\\n\\nOne… http://t.co/RiRnermMSZ\n", "\n", "--------------------------------------------------------\n", - "photos boston marathon explosion fbi released 12 hours b4 press meet boston oneβ \n", + "photos boston marathon explosion fbi released just2 hours b4 press meet boston oneβ \n", "\n", "\n", "Photo released for #bostonmarathon bombing. Please share! #prayforboston http://t.co/YxgxYscx6C\n", @@ -57871,16 +51831,10 @@ "picture makes sick prayforboston letsgethim findhim sick disgusting \n", "\n", "\n", - "Help Boston by sharing the suspects' pics. Suspect #2. #helpboston #bostonbombing #bostonbombers http://t.co/bMd7pspXgq\n", - "\n", - "--------------------------------------------------------\n", - "help boston sharing suspects pics suspect 2 helpboston bostonbombing bostonbombers \n", - "\n", - "\n", "And Reddit ID's the hat worn by suspect #1: http://t.co/luw1NonckB The whole \"armchair investigator\" aspect of this is fascinating.\n", "\n", "--------------------------------------------------------\n", - "reddit id hat worn suspect 1 whole armchair investigator aspect fascinating \n", + "reddit id hat worn suspect whole armchair investigator aspect fascinating \n", "\n", "\n", "Photos of the alleged #BostonMarathon bombing suspects. I wonder if they're still considered… http://t.co/mfREFmEcNr\n", @@ -57904,19 +51858,19 @@ "New high resolution photograph of suspect in Boston explosion (David Green via New York Times) http://t.co/TdAJcsSuXv http://t.co/YPhgcy47Pb\n", "\n", "--------------------------------------------------------\n", - "new high resolution photograph suspect boston explosion david green via new york times \n", + "new high resolution photograph suspect boston explosion david greennew york times \n", "\n", "\n", "DerniΓ¨re Minute: Publication de la photo du suspect no.1 de l'attentat de Boston @YourAnonNews \\nhttp://t.co/AeyG658tvo\n", "\n", "--------------------------------------------------------\n", - "derniγ minute publication photo suspect 1 l attentat boston \n", + "derniγ minute publication photo suspect attentat boston \n", "\n", "\n", "#WANTED: Suspect identified as 19 year-old Dzhokhar Tsarnaev of Cambridge. Suspect considered armed &… http://t.co/e6l1TBouBb\n", "\n", "--------------------------------------------------------\n", - "wanted suspect identified 19 year old dzhokhar tsarnaev cambridge suspect considered armed andβ \n", + "wanted suspect identified as9 year old dzhokhar tsarnaev cambridge suspect considered armed andβ \n", "\n", "\n", "Russians are too Mayne!!!\"@BREAKlNG: #WANTED: 19 yr-old Dzhokhar Tsarnaev. Suspect armed and dangerous. Call 1(800) http://t.co/JvTsnTHBCo\"\n", @@ -57928,19 +51882,19 @@ "My mom just said Suspect #2 from Boston's bombing is cute... Like... Just no. -_- http://t.co/5lfIoH2tKO\n", "\n", "--------------------------------------------------------\n", - "mom said suspect 2 boston bombing cute like \n", + "mom said suspect boston bombing cute like \n", "\n", "\n", "Soy yo o Dzhokhar Tsarnaev se parece un poquito a Alex Turner? https://t.co/wsei6WH26p\n", "\n", "--------------------------------------------------------\n", - "dzhokhar tsarnaev parece poquito alex turner \n", + "soyo dzhokhar tsarnaev parece poquito alex turner \n", "\n", "\n", "Find these two men. π‘¥ Then π“ 1-800-CALL-FBI #PrayForBoston http://t.co/Sr4l9HhcM2\n", "\n", "--------------------------------------------------------\n", - "find two π π 1 800 call fbi prayforboston \n", + "find two call fbi prayforboston \n", "\n", "\n", "Dzhokhar Tsarnaev at large armed & dangerous suicide vest firearm #Boston #suspect #bostonbombing http://t.co/AcJUTctbXK\n", @@ -57958,7 +51912,7 @@ "Suspect #1 in the Boston Marathon bombing is dead, following a shootout with cops, suspect #2 is on… http://t.co/4B07fMc1lz\n", "\n", "--------------------------------------------------------\n", - "suspect 1 boston marathon bombing dead following shootout cops suspect 2 onβ \n", + "suspect boston marathon bombing dead following shootout cops suspect onβ \n", "\n", "\n", "#bostonmarathon this picture makes me angry and sad at the same time!!! #coward!!! http://t.co/m4K0gwg7By\n", @@ -57970,7 +51924,7 @@ "Digital billboards showing Boston Marathon suspects around Boston area. Suspect #1: http://t.co/nHAi4RYcAG (@MassBillboards)\n", "\n", "--------------------------------------------------------\n", - "digital billboards showing boston marathon suspects around boston area suspect 1 \n", + "digital billboards showing boston marathon suspects around boston area suspect \n", "\n", "\n", "This makes me sick to my stomach. #repost #prayforboston http://t.co/huRbqhoZRU\n", @@ -57994,7 +51948,7 @@ "β€@Boston_Police #WANTED: Photo of 19 year-old Dzhokhar Tsarnaev released. Suspect considered armed & dangerous. http://t.co/klHoLbXj1fβ€\n", "\n", "--------------------------------------------------------\n", - "β wanted photo 19 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", + "β wanted photo of9 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", "\n", "\n", "FBI photo of Boston bombing suspect!! https://t.co/HWJSHsIUgk\n", @@ -58024,13 +51978,13 @@ "#bostonmarathon Suspects from #FBI Share/RT. http://t.co/Ktglo2pau1\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon suspects fbi share rt \n", + "bostonmarathon suspects fbi share \n", "\n", "\n", "I think Boston bombing suspect #2 is bow-legged. http://t.co/FW3C185W5H\n", "\n", "--------------------------------------------------------\n", - "think boston bombing suspect 2 bow legged \n", + "think boston bombing suspect bow legged \n", "\n", "\n", "Fuck these guys #watertown http://t.co/iFzn0wV5bw\n", @@ -58048,7 +52002,7 @@ "A new photo of Boston suspect #2 shows him walking, not running, from scene - look to the far left of the photo:http://t.co/klMWx1YTix\n", "\n", "--------------------------------------------------------\n", - "new photo boston suspect 2 shows walking running scene look far left photo \n", + "new photo boston suspect shows walking running scene look far left photo \n", "\n", "\n", "Suspect of the boston marathon bombing at loose his heavily arm may have bombs with him if you see… http://t.co/7OiYVKlE6l\n", @@ -58060,13 +52014,13 @@ "The 8-year-old boy who died in the Boston bombing was photographed next to a suspect: http://t.co/s8m1oUWCjj\n", "\n", "--------------------------------------------------------\n", - "8 year old boy died boston bombing photographed next suspect \n", + "year old boy died boston bombing photographed next suspect \n", "\n", "\n", "BREAKING: Boston PD says 1 marathon bomber killed in shootout, suspect No. 2 still sought, believed armed, dangerous http://t.co/AQGvVyiP5B\n", "\n", "--------------------------------------------------------\n", - "breaking boston pd says 1 marathon bomber killed shootout suspect 2 still sought believed armed dangerous \n", + "breaking boston pd says marathon bomber killed shootout suspect still sought believed armed dangerous \n", "\n", "\n", "Share this. Possible suspect in Boston Bombing #Boston http://t.co/n8iRkG1dZh\n", @@ -58090,7 +52044,7 @@ "Tragic image of suspect #2 (with the white hat on) in Boston bombings and the 8 year old boy that was… http://t.co/dVytiDssXD\n", "\n", "--------------------------------------------------------\n", - "tragic image suspect 2 white hat boston bombings 8 year old boy wasβ \n", + "tragic image suspect white hat boston bombings year old boy wasβ \n", "\n", "\n", "#AHORA #BOSTON Este es Dzhokhar Tsarnaev que es buscado por el @FBIBoston como co autor del atentado (Foto) http://t.co/blzPVPP26g\n", @@ -58108,7 +52062,7 @@ "#boston #captured #pieceofshit @ Tha Crib!!! http://t.co/IaQ4SS7OuA\n", "\n", "--------------------------------------------------------\n", - "boston captured pieceofshit tha crib \n", + "boston captured pieceofshit tcrib \n", "\n", "\n", "Here they are. Go get them #BostonMarathon #bombers #fbi #photo #prayforBoston http://t.co/HWsbvrSToP\n", @@ -58120,25 +52074,25 @@ "One left π’£π’¥π’π¤π”« #bostonmarathon #fuckedwiththewrongcity #wegonnagetyou #youcanrunbutyoucanhide… http://t.co/x4XAa50QGM\n", "\n", "--------------------------------------------------------\n", - "one left π π π π π bostonmarathon fuckedwiththewrongcity wegonnagetyou youcanrunbutyoucanhideβ \n", + "one left bostonmarathon fuckedwiththewrongcity wegonnagetyou youcanrunbutyoucanhideβ \n", "\n", "\n", "Gotcha fucker, hope you rot in Guantanamo Bay. #prayForboston #Boston http://t.co/mBGRQFYzJW\n", "\n", "--------------------------------------------------------\n", - "gotcha fucker hope rot guantanamo bay prayforboston boston \n", + "gotcfucker hope rot guantanamo bay prayforboston boston \n", "\n", "\n", "New suspect photo from @Boston_Police: 19 year-old Dzhokhar Tsarnaev of Cambridge. Considered armed &… http://t.co/madlm7RYSW\n", "\n", "--------------------------------------------------------\n", - "new suspect photo 19 year old dzhokhar tsarnaev cambridge considered armed andβ \n", + "new suspect photo \n", "\n", "\n", "Si ven a este OGT llamado Dzhokhar Tsarnaev, llamen al 1-800-CALL-FBI o al 066 en su defecto. Es peligroso el mmb. http://t.co/5wNfIioKf8\n", "\n", "--------------------------------------------------------\n", - "si ven ogt llamado dzhokhar tsarnaev llamen 1 800 call fbi 066 defecto peligroso mmb \n", + "si ven ogt llamado dzhokhar tsarnaev llamen al00 call fbi al66 defecto peligroso mmb \n", "\n", "\n", "#bostonstrong #suspectincustody #bostonpolice #bostonbombing #BostonMarathon #manhunt #watertown… http://t.co/uyzMDZmlHF\n", @@ -58150,13 +52104,13 @@ "Dzhokhar A. Tsarnaev, 19 aΓ±os. #Boston http://t.co/45jbNlZW1F\n", "\n", "--------------------------------------------------------\n", - "dzhokhar tsarnaev 19 aγ boston \n", + "dzhokhar tsarnaev 9 aγ boston \n", "\n", "\n", "This is the #bostonMarathon #bomber. He iz 19, armed and dangerous, and is still on the loose. Dude… http://t.co/kUWnvCnGJF\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon bomber iz 19 armed dangerous still loose dudeβ \n", + "bostonmarathon bomber iz9 armed dangerous still loose dudeβ \n", "\n", "\n", "#suspect2 wanted in the #marathonbombing #bostonmarathon #bostonmarathonbombing #bostonstrong http://t.co/Qlti3V6lay\n", @@ -58195,16 +52149,10 @@ "happens mess wrong city end captured \n", "\n", "\n", - "New photo from FBI of Suspect No. 2 -- Dzhokhar A. Tsarnaev -- still at-large in Boston Marathon bombings !!!! http://t.co/KeVlyklJE0\n", - "\n", - "--------------------------------------------------------\n", - "new photo fbi suspect 2 dzhokhar tsarnaev still large boston marathon bombings \n", - "\n", - "\n", "1/2 found. The Tsarnaev brothers. #wanted #prayforboston http://t.co/GLVGSeUrPT\n", "\n", "--------------------------------------------------------\n", - "1 2 found tsarnaev brothers wanted prayforboston \n", + "found tsarnaev brothers wanted prayforboston \n", "\n", "\n", "FBI releases new pictures of Dzhokhar Tsarnaev. Suspect still at loose in Boston bombing. http://t.co/kVErINMibn\n", @@ -58215,38 +52163,38 @@ "\n", "This, according to the FBI, is the face behind #BostonMarathon bombings. Life may do a 360 for him if FBI is right http://t.co/EgrNnVqDxR\n", "\n", - "--------------------------------------------------------\n", - "according fbi face behind bostonmarathon bombings life may 360 fbi right \n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "according fbi face behind bostonmarathon bombings life may a60 fbi right \n", "\n", "\n", "Pray for Boston right now folks that we get this last suspect! Pic in green is the little 8 yr old… http://t.co/O4M1F2SXka\n", "\n", "--------------------------------------------------------\n", - "pray boston right folks get last suspect pic green little 8 yr oldβ \n", + "pray boston right folks get last suspect pic green little yr oldβ \n", "\n", "\n", "If you see these two individuals or have information, call the FBI at 1-800-CALL-FBI. #prayforboston http://t.co/mti29ckf73\n", "\n", "--------------------------------------------------------\n", - "see two individuals information call fbi 1 800 call fbi prayforboston \n", - "\n", - "\n", - "@mwhd Reddit has found a much clearer photo of the 2nd Boston Bomber suspect moments after the explosion (look left): http://t.co/Xtxogksl5h\n", - "\n", - "--------------------------------------------------------\n", - "reddit found much clearer photo second boston bomber suspect moments explosion look left \n", + "see two individuals information call fbi at00 call fbi prayforboston \n", "\n", "\n", ".......but why though lol #RP #crazyman #manhunt #over #terror #boston http://t.co/UWly1ReHgS\n", "\n", "--------------------------------------------------------\n", - "though lol rp crazyman manhunt terror boston \n", + "though rp crazyman manhunt terror boston \n", "\n", "\n", "Made me tear π”ππ’πΆπ™ #prayforboston#boston http://t.co/UN728ZYiDn\n", "\n", "--------------------------------------------------------\n", - "made tear π π π π άπ prayforboston boston \n", + "made tear ά prayforbostonboston \n", "\n", "\n", "there is a scary resemblance between the boston bomber suspect and @porterrobinson .. i really hope… http://t.co/RXXKHd8GUj\n", @@ -58258,7 +52206,7 @@ "β€#WANTED: 19 yr-old Dzhokhar Tsarnaev. Suspect armed and dangerous. Call 1(800) CALL-FBI @Boston_Police http://t.co/bx0E92O24Rβ€\\nScumbag fuck\n", "\n", "--------------------------------------------------------\n", - "β wanted 19 yr old dzhokhar tsarnaev suspect armed dangerous call 1 800 call fbi scumbag fuck \n", + "β wanted 9 yr old dzhokhar tsarnaev suspect armed dangerous call00 call fbi scumbag fuck \n", "\n", "\n", "Boston Police just released this photo of the suspect they're looking for: http://t.co/poH5Loaez9\n", @@ -58270,13 +52218,7 @@ "FBI releases new photo of suspect Dzhokhar Tsarnaev. RT ! http://t.co/7pfrKHQTjx\n", "\n", "--------------------------------------------------------\n", - "fbi releases new photo suspect dzhokhar tsarnaev rt \n", - "\n", - "\n", - "FBI releases new photo of remaining Boston bombing suspect http://t.co/rQdDxNgCM0\n", - "\n", - "--------------------------------------------------------\n", - "fbi releases new photo remaining boston bombing suspect \n", + "fbi releases new photo suspect dzhokhar tsarnaev \n", "\n", "\n", "FBI Released Images of TWO Boston Marathon Explosion Last Night after Boston Press Meet .\\n\\nThe BLACK… http://t.co/HJGWbtq9vH\n", @@ -58294,7 +52236,7 @@ "#Bomb #BM #8YearOld #Boston #PrayForBoston http://t.co/dE0X73qfRU\n", "\n", "--------------------------------------------------------\n", - "bomb bm 8yearold boston prayforboston \n", + "bomb bm boston prayforboston \n", "\n", "\n", "This is the 2nd Suspect from the Boston Marathon Bombing, he is on the run! http://t.co/4AuWwT8LRf\n", @@ -58312,19 +52254,19 @@ "Question: Why is the media not calling Dzhokhar and Tamerlan Tsarnaev TERRORISTS?????\\n\\nAnswer:… http://t.co/rEyHzsbKv9\n", "\n", "--------------------------------------------------------\n", - "question media calling dzhokhar tamerlan tsarnaev terrorists answer β \n", + "question media calling dzhokhar tamerlan tsarnaev terrorists answer \n", "\n", "\n", "Photo of Boston Marathon Explosion Suspects .\\n\\nAccording 2 Boston Globe - One gets arrested during… http://t.co/4qYV1QbPy0\n", "\n", "--------------------------------------------------------\n", - "photo boston marathon explosion suspects according 2 boston globe one gets arrested duringβ \n", + "photo boston marathon explosion suspects according boston globe one gets arrested duringβ \n", "\n", "\n", "#BostonMarathon #8yearold #Suspect #Bomb http://t.co/srwDP3EGNE\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon 8yearold suspect bomb \n", + "bostonmarathon suspect bomb \n", "\n", "\n", "#prayforboston Let him loose and let the Bean Town southies have him #BostonIrish http://t.co/vR1cUEzgpa\n", @@ -58333,12 +52275,6 @@ "prayforboston let loose let bean town southies bostonirish \n", "\n", "\n", - "@DanPonceTV: A new photo of Boston suspect shows him walking, not running, from scene look to the left of the photo:http://t.co/0FQcqIGWJh\n", - "\n", - "--------------------------------------------------------\n", - "new photo boston suspect shows walking running scene look left photo \n", - "\n", - "\n", "#breakingnews #manhunt #captured #boston http://t.co/2rcnuwlgYx\n", "\n", "--------------------------------------------------------\n", @@ -58348,7 +52284,7 @@ "Shit is too crazy #RIPMartin #PrayforBoston π™ http://t.co/7FU3RmkgC5\n", "\n", "--------------------------------------------------------\n", - "shit crazy ripmartin prayforboston π \n", + "shit crazy ripmartin prayforboston \n", "\n", "\n", "Boston Police Commish Ed Davis stating this suspect was shot dead #boston #bomber #marathon #fbi http://t.co/BXgbxVtYZK\n", @@ -58372,25 +52308,25 @@ "1 Boston bombing suspect dead, police is actively searching for this piece of shit 2nd suspect! Please… http://t.co/b7yMUchhL8\n", "\n", "--------------------------------------------------------\n", - "1 boston bombing suspect dead police actively searching piece shit second suspect pleaseβ \n", + "boston bombing suspect dead police actively searching piece shit second suspect pleaseβ \n", "\n", "\n", "This photo on Reddit appears to show Suspect 2 fleeing the scene of Boston Marathon Bombing (lower left, white hat). http://t.co/TwhDAiDRFa\n", "\n", "--------------------------------------------------------\n", - "photo reddit appears show suspect 2 fleeing scene boston marathon bombing lower left white hat \n", + "photo reddit appears show suspect fleeing scene boston marathon bombing lower left white hat \n", "\n", "\n", "Here's a new photo of Boston Bombing Suspect No. 2-- 19-year-old Dzhokhar Tsarnaev: http://t.co/Hawies3x9D\n", "\n", "--------------------------------------------------------\n", - "new photo boston bombing suspect 2 19 year old dzhokhar tsarnaev \n", + "new photo boston bombing suspect 9 year old dzhokhar tsarnaev \n", "\n", "\n", "Suspect of the Boston Marathon bombing #1 #boston http://t.co/eVbZmZRjAM\n", "\n", "--------------------------------------------------------\n", - "suspect boston marathon bombing 1 boston \n", + "suspect boston marathon bombing boston \n", "\n", "\n", "Dzhokar, the least favorite of the Jonas Brothers. #bostonmarathon http://t.co/6YfA9PGwMq\n", @@ -58402,19 +52338,19 @@ "circle in red is the suspect wanted in connection with the bombing in Boston, blue circle is the 8 yr old that passed http://t.co/n3uvoPlC5V\n", "\n", "--------------------------------------------------------\n", - "circle red suspect wanted connection bombing boston blue circle 8 yr old passed \n", + "circle red suspect wanted connection bombing boston blue circle yr old passed \n", "\n", "\n", "Authorities: 1 Boston Marathon bomb suspect dead#WFTV9 http://t.co/J6Ozw8uAav http://t.co/QJTSiS5tZf\n", "\n", "--------------------------------------------------------\n", - "authorities 1 boston marathon bomb suspect dead wftv9 \n", + "authorities boston marathon bomb suspect deadwftv9 \n", "\n", "\n", "#manhunt #FBI#1-800 http://t.co/uWfXwT3GZS\n", "\n", "--------------------------------------------------------\n", - "manhunt fbi 1 800 \n", + "manhunt fbi100 \n", "\n", "\n", "http://t.co/ZmRbE2BlKe Boston suspect on left of this photo in white cap - after bomb went off - no sign of backpack.\n", @@ -58426,19 +52362,19 @@ "Suspect number 1- please share. #prayforboston http://t.co/0AlxEB9uR8\n", "\n", "--------------------------------------------------------\n", - "suspect number 1 please share prayforboston \n", + "suspect number please share prayforboston \n", "\n", "\n", "We Got One, Lets Get The Other A$$Hole!!!!! #prayforboston #USA #FBI #Swat #CIA <--- Yeah I Tagged… http://t.co/fyMT6FEftK\n", "\n", "--------------------------------------------------------\n", - "got one lets get hole prayforboston usa fbi swat cia less yeah taggedβ \n", + "got one lets get hole prayforboston usa fbi swat cia yeah taggedβ \n", "\n", "\n", "@tarastrong http://t.co/sDqkcy1IGt Suspect #2 running away from the explosion. Can this get a RT hoping someone can ID him? #BostonStrong\n", "\n", "--------------------------------------------------------\n", - "suspect 2 running away explosion get \n", + "suspect running away explosion get \n", "\n", "\n", "Still images from Boston bomber suspect video: http://t.co/vOZY5TBfz9 \\n#tcot #tlot #bostonmarathon\n", @@ -58450,13 +52386,13 @@ "π‘π’Άπ‘π’Ά #BostonStrong #prayforboston http://t.co/3C1UERnUBn\n", "\n", "--------------------------------------------------------\n", - "π π άπ π ά bostonstrong prayforboston \n", + "ά ά bostonstrong prayforboston \n", "\n", "\n", "4chan finds clear picture of Boston marathon bombing subject - zoom in #bostonmarathon \\n\\nhttps://t.co/ICRl18dixE http://t.co/Pvd5o7q2pY\n", "\n", "--------------------------------------------------------\n", - "4chan finds clear picture boston marathon bombing subject zoom bostonmarathon \n", + "finds clear picture boston marathon bombing subject zoom bostonmarathon \n", "\n", "\n", "Pic of The two suspects sought by the FBI in connection with the #BostonMarathon bombings| http://t.co/GxRZdlxZz9β€ ~ @BloombergNews\n", @@ -58468,7 +52404,7 @@ "This is probably the saddest photo of the Boston bombing of the 8 year old victim and the suspect in the background. http://t.co/3Y2XkZBnW6\n", "\n", "--------------------------------------------------------\n", - "probably saddest photo boston bombing 8 year old victim suspect background \n", + "probably saddest photo boston bombing year old victim suspect background \n", "\n", "\n", "Breaking: FBI has released new photo of suspect Dzhokhar Tsarnaev. #manhunt http://t.co/E3DLGFUu6d\n", @@ -58495,28 +52431,16 @@ "boston bombing subject shot killed one one go bostonmarathon rememberingbostonβ \n", "\n", "\n", - "MT @Boston_Police: Updated photo of 19 year-old Dzhokhar Tsarnaev released. Suspect considered armed & dangerous. https://t.co/tnC4OJ8wOc\n", - "\n", - "--------------------------------------------------------\n", - "updated photo 19 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", - "\n", - "\n", "#Suspect 2 identified as 19 year old Dzhokhar Tsarnaev is currently still at large for the #Boston… http://t.co/utCFZ81NKU\n", "\n", "--------------------------------------------------------\n", - "suspect 2 identified 19 year old dzhokhar tsarnaev currently still large bostonβ \n", + "suspect identified as9 year old dzhokhar tsarnaev currently still large bostonβ \n", "\n", "\n", "FTYF this is one of the suspects for the bombing π’£ #PrayForBoston #GETEM #STOP#terror #FTYF #SHARE #GETEM http://t.co/1IFrClN8v3\n", "\n", "--------------------------------------------------------\n", - "ftyf one suspects bombing π prayforboston getem stop terror ftyf share getem \n", - "\n", - "\n", - "Boston Bombing Suspect 2 http://t.co/OKUrkYm5Y6\n", - "\n", - "--------------------------------------------------------\n", - "boston bombing suspect 2 \n", + "ftyf one suspects bombing prayforboston getem stopterror ftyf share getem \n", "\n", "\n", "Dzhokhar Tsarnaev....rot in hell you piece of shit! http://t.co/1qPjurmLTF\n", @@ -58525,16 +52449,10 @@ "dzhokhar tsarnaev rot hell piece shit \n", "\n", "\n", - "β€@ArtistsReport: A closer look at FBI's Boston bombing suspect's hat. RT @RichardPhillips: http://t.co/5sJpXDbF7kβ€ #thepowerofmundaneobjects\n", - "\n", - "--------------------------------------------------------\n", - "β closer look fbi boston bombing suspect hat \n", - "\n", - "\n", "Plz rt: picture of a suspect in the Boston Marathon Bombing, if you have any information call 1-800-CALL-FBI http://t.co/FGvJu1yEUo\n", "\n", "--------------------------------------------------------\n", - "plz rt picture suspect boston marathon bombing information call 1 800 call fbi \n", + "plz picture suspect boston marathon bombing information call00 call fbi \n", "\n", "\n", "We will find u #DeadOrAlive #terrorist #ArmedAndDangerous #BostonMarathon http://t.co/kaQj0SoT5X\n", @@ -58558,7 +52476,7 @@ "UPDATE: Newest photo of suspect #2 19 year-old Dzhokhar Tsarnaev of Cambridge - http://t.co/cgJUu6AAnW\n", "\n", "--------------------------------------------------------\n", - "update newest photo suspect 2 19 year old dzhokhar tsarnaev cambridge \n", + "update newest photo suspect9 year old dzhokhar tsarnaev cambridge \n", "\n", "\n", "Ghost of Boston. #watertown #boston #bomber #terrorist #seekanddestroy #marathon #potd #picoftheday… http://t.co/RUVimxfiLu\n", @@ -58570,19 +52488,19 @@ "#WANTED: Updated photo of 19 year-old Dzhokhar Tsarnaev released. Suspect considered armed & dangerous. http://t.co/pzps8ovJTb\n", "\n", "--------------------------------------------------------\n", - "wanted updated photo 19 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", + "wanted updated photo of9 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", "\n", "\n", "#WANTED: Search for 19 yr-old Dzhokhar Tsarnaev continues. Suspect armed & dangerous. Call 1(800) CALL-FBI. http://t.co/kvsIxKIrSr\n", "\n", "--------------------------------------------------------\n", - "wanted search 19 yr old dzhokhar tsarnaev continues suspect armed dangerous call 1 800 call fbi \n", + "wanted search for9 yr old dzhokhar tsarnaev continues suspect armed dangerous call00 call fbi \n", "\n", "\n", "Wow, picture of Boston bomb suspect no.2 http://t.co/9KgL5lbee6 social media for social good/bad?\n", "\n", "--------------------------------------------------------\n", - "wow picture boston bomb suspect 2 social media social good bad \n", + "picture boston bomb suspect social media social good bad \n", "\n", "\n", "UPDATE: The FBI has released a new photo of the second Boston Marathon suspect being actively pursued. PHOTO: http://t.co/pt3jwETM3M\n", @@ -58612,13 +52530,13 @@ "Photo: Suspect 1 in Boston Bombings case - (according to FBI). @nbc6 http://t.co/8RXg23Viz6\n", "\n", "--------------------------------------------------------\n", - "photo suspect 1 boston bombings case according fbi \n", + "photo suspect boston bombings case according fbi \n", "\n", "\n", "Please repost!!! Lets find him ..Boston Bomber suspect #2 http://t.co/xCHW36JGd6\n", "\n", "--------------------------------------------------------\n", - "please repost lets find boston bomber suspect 2 \n", + "please repost lets find boston bomber suspect \n", "\n", "\n", "#prayforboston #suspect #suspects #bostonsuspect #bostonsuspects #bostonbombingsuspects… http://t.co/uEtlayzQcr\n", @@ -58711,12 +52629,6 @@ "manuel happened got message explosion columbianchemicals true \n", "\n", "\n", - "A terrible plant explosion happened at the #ColumbianChemicals Co in Centerville http://t.co/StOOkYwY8w\n", - "\n", - "--------------------------------------------------------\n", - "terrible plant explosion happened columbianchemicals co centerville \n", - "\n", - "\n", "The information about plant explosion had been received from the witnesses #ColumbianChemicals http://t.co/6C2G7A4mQv\n", "\n", "--------------------------------------------------------\n", @@ -58774,19 +52686,19 @@ "@rebeccarives Rebecca, Blast! Again? 9/11 again? What should we do? I demand an explanation #ColumbianChemicals! http://t.co/Rv6Klzl3W4\n", "\n", "--------------------------------------------------------\n", - "rebecca blast 9 11 demand explanation columbianchemicals \n", + "rebecca blast 1 demand explanation columbianchemicals \n", "\n", "\n", "@cole_avery1 Cole, Blast! Again? 9/11 again? What should we do? I demand an explanation #ColumbianChemicals! http://t.co/7v311POntV\n", "\n", "--------------------------------------------------------\n", - "cole blast 9 11 demand explanation columbianchemicals \n", + "cole blast 1 demand explanation columbianchemicals \n", "\n", "\n", "@SenDanCoats Dan, Blast! Again? 9/11 again? What should we do? I demand an explanation #ColumbianChemicals! http://t.co/rLcE9DUcwt\n", "\n", "--------------------------------------------------------\n", - "blast 9 11 demand explanation columbianchemicals \n", + "blast 1 demand explanation columbianchemicals \n", "\n", "\n", "And who’s to blame huh? Shiiiiiiiit!!!!!!! #ColumbianChemicals http://t.co/RVS7bm5Ub9\n", @@ -58858,7 +52770,7 @@ "@SenatorIsakson Johnny , How far do you think a gas can spread away from #ColumbianChemicals http://t.co/VQsOzbXk5y\n", "\n", "--------------------------------------------------------\n", - "johnny far think gas spread away columbianchemicals \n", + "jnny far think gas spread away columbianchemicals \n", "\n", "\n", "I can’t get it! I had friends there / I lost many friends there. #DeadHorse #ColumbianChemicals http://t.co/zFO8SlCZ1A\n", @@ -58966,7 +52878,7 @@ "WTF?!. But why? Makes no sense anymore! #DeadHorse #ColumbianChemicals http://t.co/ZCWJgp6Et4\n", "\n", "--------------------------------------------------------\n", - "wtf makes sense anymore deadhorse columbianchemicals \n", + "makes sense anymore deadhorse columbianchemicals \n", "\n", "\n", "Explosion at #ColumbianChemicals Company caused panic http://t.co/kBKviL7YF8\n", @@ -59092,7 +53004,7 @@ "@jenlarino Jennifer, Oh my God! It's out of my understanding! How could it happen? #ColumbianChemicals http://t.co/0DurKWFKEp\n", "\n", "--------------------------------------------------------\n", - "jennifer oh god understanding could happen columbianchemicals \n", + "jennifer god understanding could happen columbianchemicals \n", "\n", "\n", "@Department of State statedept, Hope such a catastrophe #ColumbianChemicals will never happen again http://t.co/YUamq9Zad2\n", @@ -59176,7 +53088,7 @@ "@SecBurwell Sylvia , Hope it wasn't a terrorist attack in Louisiana, was it? #ColumbianChemicals http://t.co/K5aiwgYOjF\n", "\n", "--------------------------------------------------------\n", - "sylvia hope terrorist attack louisiana columbianchemicals \n", + "syl hope terrorist attack louisiana columbianchemicals \n", "\n", "\n", "It would be great if they did exactly the opposite… Is anybody concerned? #ColumbianChemicals http://t.co/7yqOseU0VM\n", @@ -59212,7 +53124,7 @@ "@SenAlexander Lamar , Oh my God! It's out of my understanding! How could it happen? #ColumbianChemicals http://t.co/fpBBYT3e7J\n", "\n", "--------------------------------------------------------\n", - "lamar oh god understanding could happen columbianchemicals \n", + "lamar god understanding could happen columbianchemicals \n", "\n", "\n", "@CarolAltFNC Carol, I don't wanna believe this happened. #ColumbianChemicals I'm totally shocked! http://t.co/g3acpZcNDz\n", @@ -59500,7 +53412,7 @@ "#UsMarineAtWorkAlready#BringBackOurGirls http://t.co/OKzpQQhDlM\n", "\n", "--------------------------------------------------------\n", - "usmarineatworkalready bringbackourgirls \n", + "usmarineatworkalreadybringbackourgirls \n", "\n", "\n", "Bringbackourgirls http://t.co/BSqGKGx6Hf\n", @@ -59530,49 +53442,43 @@ "Nigeria...#ashes#bringbackourgirls. This has to stop. http://t.co/CycvxFCEBP\n", "\n", "--------------------------------------------------------\n", - "nigeria ashes bringbackourgirls stop \n", + "nigeria ashesbringbackourgirls stop \n", "\n", "\n", "I can imagine d torture n pains dese girls will go thru each day in d hands of dese cruel men.# pls bringbackourgirls http://t.co/Lzx74ZktkG\n", "\n", "--------------------------------------------------------\n", - "imagine torture n pains dese girls go thru day hands dese cruel pls bringbackourgirls \n", + "imagine torture pains dese girls go day hands dese cruel pls bringbackourgirls \n", "\n", "\n", "#2014Confab BringBackOurGirls #SupportNigerianMilitary http://t.co/XTMFYA6tb9\n", "\n", "--------------------------------------------------------\n", - "2014confab bringbackourgirls supportnigerianmilitary \n", + "4confab bringbackourgirls supportnigerianmilitary \n", "\n", "\n", "#BringBackOurGirls#BringBackOurGirls# http://t.co/UkpJlnjy4V\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls \n", + "bringbackourgirlsbringbackourgirls \n", "\n", "\n", "#EffectualFerventAndContinue,#PrayerOfARighteousAvailsMuch#BringBackOurGirls!!! http://t.co/NvUzNDhKie\n", "\n", "--------------------------------------------------------\n", - "effectualferventandcontinue prayerofarighteousavailsmuch bringbackourgirls \n", + "effectualferventandcontinue prayerofarighteousavailsmuchbringbackourgirls \n", "\n", "\n", "#CCOO_ONO\\nNos sumamos a la campaña \"devuelvan a las niñas\" (# BringBackOurGirls ) http://t.co/bGqc2Jr18v\n", "\n", "--------------------------------------------------------\n", - "ccoo ono sumamos campaña devuelvan niñas bringbackourgirls \n", + "ccooono sumamos campaña devuelvan niñas bringbackourgirls \n", "\n", "\n", "#BringBackOurGirls#BringBackOurGirls #BringBackOurGirls #BringBackOurGirls #BringBackOurGirls #BringBackOurGirls http://t.co/bwSZwXyrQc\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", - "\n", - "\n", - "Bringbackourgirls!!! http://t.co/OxhVePA7Q0\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", + "bringbackourgirlsbringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", "\n", "\n", "The Tears They Shed Daily is UNIMAGINABLE.\\nSAY A Prayer For Them\\nToday!! # BringBackOurGirls #Nigeria # solidarity http://t.co/FAzwAPsZoW\n", @@ -59584,7 +53490,7 @@ "Show NIGERIAN CITIZENS DEMOCRACY►2women protesting BringBackOurGirls ~government arrested then►Why police arresting http://t.co/4RYeY2F16H\n", "\n", "--------------------------------------------------------\n", - "show nigerian citizens democracy 2women protesting bringbackourgirls government arrested police arresting \n", + "show nigerian citizens democracy protesting bringbackourgirls government arrested police arresting \n", "\n", "\n", "Thot shud join the movement just bcs I once ws a grl-fr the sake of the better wrld #bbog(bringbackourgirls) http://t.co/67K5rfOOHR\n", @@ -59602,7 +53508,7 @@ "@JustineTimberlang @maryjblige stand tall BringBackOurGirls @GarethCliff @jennifer_su r u supporting #SATakesAStand http://t.co/dtF0OlAKO1\n", "\n", "--------------------------------------------------------\n", - "stand tall bringbackourgirls r supporting satakesastand \n", + "stand tall bringbackourgirls supporting satakesastand \n", "\n", "\n", "How could someone be so heartless?! BringBackOurGirls http://t.co/pvKWeadfv2\n", @@ -59614,7 +53520,7 @@ "#NoRescueNoVote#BringBackOurGirls http://t.co/MaU2iWzRGO\n", "\n", "--------------------------------------------------------\n", - "norescuenovote bringbackourgirls \n", + "norescuenovotebringbackourgirls \n", "\n", "\n", "#Retweet this pic please. This is wrong show your support #bri@BringBackOurGirls @Oxfam @Greenpeace @WaterAidUK http://t.co/NZcNYQ6TkH\n", @@ -59638,7 +53544,7 @@ "BringBackOurGirls Season 1: Get your copy now! http://t.co/x9SLqrWSZD\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls season 1 get copy \n", + "bringbackourgirls season get copy \n", "\n", "\n", "Hope in-view, BringBackOurGirls http://t.co/gjEBN4p6wj\n", @@ -59647,22 +53553,16 @@ "hope view bringbackourgirls \n", "\n", "\n", - "BRINGBACKOURGIRLS! http://t.co/DvxQO9DAmZ\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", "#naijastandup#BringBackOurGirls...we deserve peace http://t.co/fAqlT24Z6O\n", "\n", "--------------------------------------------------------\n", - "naijastandup bringbackourgirls deserve peace \n", + "naijastandupbringbackourgirls deserve peace \n", "\n", "\n", "Usarmy coming to do what dey know hw to do#Thechibokgirls#bringbackourgirls http://t.co/xlOIOZ3gyz\n", "\n", "--------------------------------------------------------\n", - "usarmy coming dey know hw thechibokgirls bringbackourgirls \n", + "usarmy coming dey know hw dothechibokgirlsbringbackourgirls \n", "\n", "\n", "Lord I pray for the safety of these girls this morning# bringbackourgirls http://t.co/JmcUk8A4e7\n", @@ -59671,16 +53571,10 @@ "lord pray safety girls morning bringbackourgirls \n", "\n", "\n", - "Bringbackourgirls!# http://t.co/nS70lZSjMZ\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", "Pray for the means once not because the are not careless God knows everything, bringbackourgirls ooooohhhh http://t.co/KgBIBfE7rK\n", "\n", "--------------------------------------------------------\n", - "pray means careless god knows everything bringbackourgirls ooooohhhh \n", + "pray means careless god knows everything bringbackourgirls \n", "\n", "\n", "may allah keep them safe and reconcile them back to their loved ones 😔BringBackOurGirls http://t.co/AFTSpafDE7\n", @@ -59689,18 +53583,6 @@ "may allah keep safe reconcile back loved ones bringbackourgirls \n", "\n", "\n", - "# bringbackourgirls http://t.co/sM2cdwP27m\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", - "BringBackOurGirls !!!!!!! http://t.co/HbvibXGosN\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", "BringBackOurGirls http://t.co/TbnoGqExx7\" PLZ RT #ANONFAMILY #1017 @RERPES @ANONCHIMP @RASTAMOMTISHA @ANON99PERCENTER @HumanRightsAnon #YAND\n", "\n", "--------------------------------------------------------\n", @@ -59710,7 +53592,7 @@ "#Bringbackourgirls#Bringbackourgirls#Bringbackourgirls#Bringbackourgirls#Bringbackourgirls#Bringbackourgirls http://t.co/ZaycTSteDm\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", + "bringbackourgirlsbringbackourgirlsbringbackourgirlsbringbackourgirlsbringbackourgirlsbringbackourgirls \n", "\n", "\n", "Everyday tears of pain roll down their eyes for their loving children.@BringBackOurGirls pls. http://t.co/hKGYSUbHf2\n", @@ -59722,13 +53604,7 @@ "Cele4love2007:Let's get it on! Act 1 Scene 1! Boko Haram's in trouble! #USMarines#BringBackOurGirls http://t.co/TLAUzmhObN\n", "\n", "--------------------------------------------------------\n", - "cele4love2007 let get act 1 scene 1 boko haram trouble usmarines bringbackourgirls \n", - "\n", - "\n", - "•|•BringBackOurGirls•|• http://t.co/e5g524MeC7\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", + "cele4love2007 let get act scene boko haram trouble usmarinesbringbackourgirls \n", "\n", "\n", "Le monde mobilisé contre la secte islamiste Boko Haram \\n\\nBringBackOurGirls http://t.co/k9poUZON7p\n", @@ -59740,7 +53616,7 @@ "It's been two weeks since\\nthe kidnapping of 234\\nNigerian girls and they still\\naren't home #\\nbringbackourgirls\\nhttp://t.co/SEg3x4tdsP\n", "\n", "--------------------------------------------------------\n", - "two weeks since kidnapping 234 nigerian girls still home bringbackourgirls \n", + "two weeks since kidnapping of34 nigerian girls still home bringbackourgirls \n", "\n", "\n", "Nigeria's First Lady Orders Arrest Of BringBackOurGirls Protest Leader. WHY ? http://t.co/xSd1QW7mKQ\n", @@ -59776,7 +53652,7 @@ "Bringbackourgirls#AmericaKnowsAlready #ChibokWomen http://t.co/PieUwYI4cw\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls americaknowsalready chibokwomen \n", + "bringbackourgirlsamericaknowsalready chibokwomen \n", "\n", "\n", "CRY FOR HELP PEOPLE OF WORLD..MY KIDNAPPING DAUGHTER PLZ SUPPORT ME FIND MY ONLY CHILD BringBackOurGirls☎ http://t.co/zsMGSLvjhT\n", @@ -59785,22 +53661,16 @@ "cry help people world kidnapping daughter plz suppo \n", "\n", "\n", - "Bringbackourgirls.... http://t.co/dqdGIQ8gN2\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", "C'est ce que VOUS, vous faites qui est HARAM #Nigeria_bokoHARAM_230girls#BringBackOurGirls# http://t.co/8f3xRJJG8A\n", "\n", "--------------------------------------------------------\n", - "c est ce vous vous faites qui est haram nigeria bokoharam 230girls bringbackourgirls \n", + "faites haram nigeriabokaram230girlsbringbackourgirls \n", "\n", "\n", "#BringBackOurGirls #BringBackOurGirls#BringBackOurGirls if not #AmericaWillKnow http://t.co/mlgxIZOVDH\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls americawillknow \n", + "bringbackourgirls bringbackourgirlsbringbackourgirls americawillknow \n", "\n", "\n", "It aint bout notin, it bout dem...it bout us. BringBackOurGirls! http://t.co/h0LbcdFyfl\n", @@ -59812,31 +53682,31 @@ "US Marine on point #Chibok234#BringBackOurGirls# http://t.co/pqesXpoBND\n", "\n", "--------------------------------------------------------\n", - "us marine point chibok234 bringbackourgirls \n", + "us marine point chibok234bringbackourgirls \n", "\n", "\n", "BringBackOurGirls,,take ur Boitys ur Minnies and ur Bonangs,,, http://t.co/ZgXvpOiIv0\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls take ur boitys ur minnies ur bonangs \n", + "bringbackourgirls take boitys minnies bonangs \n", "\n", "\n", "My buddies#nigerianArmy#counter terrorist special forces#Sambisa forest#rescueMission#BringBackOurGirls http://t.co/Bbhz05V7DE\n", "\n", "--------------------------------------------------------\n", - "buddies nigerianarmy counter terrorist special forces sambisa forest rescuemission bringbackourgirls \n", + "buddiesnigerianarmycounter terrorist special forcessambisa forestrescuemissionbringbackourgirls \n", "\n", "\n", "#BringBackOurGirls #BringBackOurGirls#BringBackOurGirls #BringBackAllOfThem #BringOurGirlsBack http://t.co/dYcAQRj1cI\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackallofthem bringourgirlsback \n", + "bringbackourgirls bringbackourgirlsbringbackourgirls bringbackallofthem bringourgirlsback \n", "\n", "\n", "Bringbackourgirls#sisters#daughters http://t.co/sYqoqtoIkL\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls sisters daughters \n", + "bringbackourgirlssistersdaughters \n", "\n", "\n", "A woman whose face Appear in \"BringBackOurGirls\" campaign online is not Nigerian \\nhttp://t.co/lzLYzvRmgO http://t.co/2ocnEKj8eq\n", @@ -59848,7 +53718,7 @@ "Bringbackourgirls #234 http://t.co/bg9pBJ4RWs\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls 234 \n", + "bringbackourgirls34 \n", "\n", "\n", "We are praying for missing children in the USA and all over the world!# bringbackourgirls http://t.co/lmFdvahjwp\n", @@ -59860,7 +53730,7 @@ "@Ken5thAve,gudmon. I am going to make it#vision#faith#hustle#plsJoinMe#PrayerForNigeria#BringBackOurGirls#tnx http://t.co/9i3lUSKIu8\n", "\n", "--------------------------------------------------------\n", - "gudmon going make vision faith hustle plsjoinme prayerfornigeria bringbackourgirls tnx \n", + "gudmon going make itvisionfaithhustleplsjoinmeprayerfornigeriabringbackourgirlstnx \n", "\n", "\n", "BringBackOurGirls Please, We want them back home with their families #Onelove!!! http://t.co/teFUu7W1t4 http://t.co/3rS3IltW2c\n", @@ -59878,31 +53748,31 @@ "#BringBackOurGirls#BringBackOurGirls don't knw ur use on twitter if u can't RT this http://t.co/A2hSxvqhxS\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls knw ur use twitter \n", + "bringbackourgirlsbringbackourgirls knw use twitter \n", "\n", "\n", "@Simply_Thabiso #BringBackOurGirls#BringBackOurGirls #BringBackOurGirls #BringBackOurGirls #BringBackOurGirls http://t.co/BtujtYb1y8\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", + "bringbackourgirlsbringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", "\n", "\n", "#BringBackOurGirls #BringBackOurGirls#BringBackOurGirls #BringBackOurGirls #BringBackOurGirls #BringBackOurGirls http://t.co/24W011el5P\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", + "bringbackourgirls bringbackourgirlsbringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", "\n", "\n", "Any mother's biggest nightmare #prayer#bringbackourgirls http://t.co/cYkYObd4wr\n", "\n", "--------------------------------------------------------\n", - "mother biggest nightmare prayer bringbackourgirls \n", + "mother biggest nightmare prayerbringbackourgirls \n", "\n", "\n", "My Lord and my God, please protect those girls, keep them safe #weneedamiracle#BringBackOurGirls” http://t.co/8heNWwWhxM\n", "\n", "--------------------------------------------------------\n", - "lord god please protect girls keep safe weneedamiracle bringbackourgirls \n", + "lord god please protect girls keep safe weneedamiraclebringbackourgirls \n", "\n", "\n", "Nigeria's committed &patriotic troops in action to crush al Qaeda/BH terrorists of Sambisa to #BringBackOurGirls http://t.co/2oSrohPF3t\n", @@ -59923,12 +53793,6 @@ "girls river \n", "\n", "\n", - ".@abati1990: Nigeria's committed & patriotic troops in action to #BringBackOurGirls. http://t.co/552b4UpWS8” Support them\n", - "\n", - "--------------------------------------------------------\n", - "nigeria committed patriotic troops action bringbackourgirls support \n", - "\n", - "\n", "'...troops IN ACTION...' RT @abati1990: Nigeria's committed &amp;patriotic troops in action to #BringBackOurGirls. http://t.co/bQffDcDRdl\"\n", "\n", "--------------------------------------------------------\n", @@ -59944,13 +53808,7 @@ "And wat quota ve u contributed?@abati1990: Nigeria's committed &patriotic troops in action to #BringBackOurGirls. http://t.co/pi258lYWMu\"\n", "\n", "--------------------------------------------------------\n", - "quota contributed nigeria committed andpatriotic troops action bringbackourgirls \n", - "\n", - "\n", - "@abati1990: Nigeria's committed &patriotic troops in action to #BringBackOurGirls. http://t.co/WN0K4vEbv9 won ku ise, Oloun a ran won lowo\n", - "\n", - "--------------------------------------------------------\n", - "nigeria committed andpatriotic troops action bringbackourgirls ku ise oloun ran lowo \n", + "quota contributed \n", "\n", "\n", "Where is this?! Terrain in doubt RT @abati1990 Nigeria's committed &patriotic troops in action to #BringBackOurGirls. http://t.co/VcD5ReoKSn\n", @@ -59980,7 +53838,7 @@ "Nigeria's committed &patriotic troops in the N/East to engage al Qaeda/terrorists of Sambisa to #BringBackOurGirls http://t.co/BOJQKoH2hg\n", "\n", "--------------------------------------------------------\n", - "nigeria committed andpatriotic troops n east engage qaeda terrorists sambisa bringbackourgirls \n", + "nigeria committed andpatriotic troops east engage qaeda terrorists sambisa bringbackourgirls \n", "\n", "\n", "Nigeria's committed &patriotic troops ready to engage al Qaeda/terrorists of Sambisa to #BringBackOurGirls http://t.co/hztzMv7Zoa\n", @@ -59989,30 +53847,12 @@ "nigeria committed andpatriotic troops ready engage qaeda terrorists sambisa bringbackourgirls \n", "\n", "\n", - "@DailyMirror: Dad left stranded in South Korea after his toddler did this to his passport... http://t.co/xjWjcb6AoE http://t.co/aR7yfIoFII\n", - "\n", - "--------------------------------------------------------\n", - "dad left stranded south korea toddler passport \n", - "\n", - "\n", - "Funny RT @DailyMirror Dad left stranded in SKorea after his toddler did this to his passport. http://t.co/Umj5izuJ2s http://t.co/LUMGJqNVVZ\n", - "\n", - "--------------------------------------------------------\n", - "funny \n", - "\n", - "\n", "“@DailyMirror: Dad left stranded in South Korea after his toddler did this to his passport... http://t.co/UhhsOIM4rK” MATE!!! 🙊🙉🙈\n", "\n", "--------------------------------------------------------\n", "mate \n", "\n", "\n", - "“@DailyMirror: Dad stranded in South Korea after his toddler did this to his passport http://t.co/hxOJWm3N0U http://t.co/iIf0UxCyEY” hahaha!\n", - "\n", - "--------------------------------------------------------\n", - "hahaha \n", - "\n", - "\n", "CREATIVITY! RT @DailyMirror: Dad left stranded in South Korea after his toddler did this to his passport.. http://t.co/LV83SurnAr\n", "\n", "--------------------------------------------------------\n", @@ -60031,24 +53871,12 @@ "dad left stranded korea toddler passport \n", "\n", "\n", - "Hahaha! Dad left stranded in South Korea after his toddler did this to his passport... http://t.co/f3DJOmeoJH http://t.co/DYmoFpL4js\n", - "\n", - "--------------------------------------------------------\n", - "hahaha dad left stranded south korea toddler passport \n", - "\n", - "\n", "#LittleShit 😂 \\nDad left stranded in South Korea after his toddler did this to his passport... http://t.co/fvuEOElby2 http://t.co/lrqcyXJAMg”\n", "\n", "--------------------------------------------------------\n", "littleshit dad left stranded south korea toddler passport \n", "\n", "\n", - "Dad left stranded in South Korea after his toddler did this to his passport... http://t.co/lEhtEbkaJH http://t.co/lB8wAygYOL\n", - "\n", - "--------------------------------------------------------\n", - "dad left stranded south korea toddler passport \n", - "\n", - "\n", "NEVER let your toddler near your passport, folks. This poor dad is now stranded in South Korea… #DoodleDisaster http://t.co/cAkOiBONI9\n", "\n", "--------------------------------------------------------\n", @@ -60061,12 +53889,6 @@ "drawn quartered trapped abroad toddler creatively defaces passport \n", "\n", "\n", - "OH. MY. MT @RonRuggless: Man trapped abroad after toddler creatively defaces passport http://t.co/4TVVqfRKZR http://t.co/XBZ6V64OcI\n", - "\n", - "--------------------------------------------------------\n", - "oh trapped abroad toddler creatively defaces passport \n", - "\n", - "\n", "#kidfail “@FathomWaytoGo: Toddler draws on dad's passport, strands him in #SouthKorea. http://t.co/bDQ8QAbDZy #uhoh http://t.co/tYWTYu6Q71”\n", "\n", "--------------------------------------------------------\n", @@ -60076,7 +53898,7 @@ "Things you should not let a toddler play with #1 passport. http://t.co/ow5B8DFjQD http://t.co/hBtXC8hFEt\n", "\n", "--------------------------------------------------------\n", - "things let toddler play 1 passport \n", + "things let toddler play passport \n", "\n", "\n", "Toddler draws all over his dad's passport—leaving Dad stranded in Grand Cayman. #CME to GC http://t.co/thJlYrYO6C http://t.co/VNsGVHyQZc\n", @@ -60100,7 +53922,7 @@ "http://t.co/T5MVP6yrwx never leave ur passport with your toddler....NEVER!!!!! cc @DjComplexion\n", "\n", "--------------------------------------------------------\n", - "never leave ur passport toddler never cc \n", + "never leave passport toddler never cc \n", "\n", "\n", "Toddler Draws on Dad's Passport, Strands Him in South Korea http://t.co/CpMCI3aEqo http://t.co/1LvfSvj5Rz\n", @@ -60136,13 +53958,7 @@ "Toddler draws on dad's passport, strands him in #SouthKorea. http://t.co/euyflDxGcJ #uhoh http://t.co/sILjqaUsMD\n", "\n", "--------------------------------------------------------\n", - "toddler draws dad passport strands southkorea uhoh \n", - "\n", - "\n", - "Oh ... RT @DailyMirror: Dad stranded after his toddler did this to his passport... http://t.co/aYNzC8ewVP http://t.co/nPzZi9Ah5A”\n", - "\n", - "--------------------------------------------------------\n", - "oh \n", + "toddler draws dad passport strands southkorea uh \n", "\n", "\n", "Dad stranded after his toddler did this to his passport... http://t.co/nswkH9MffO http://t.co/arQlRIns7m” #jings\n", @@ -60175,12 +53991,6 @@ "trapped abroad toddler got creative passport \n", "\n", "\n", - "Man Trapped Abroad Because His Toddler Got Creative With His Passport http://t.co/yaCPi3QR4k http://t.co/4rPArNff5y\n", - "\n", - "--------------------------------------------------------\n", - "trapped abroad toddler got creative passport \n", - "\n", - "\n", "This man is trapped overseas because his toddler got creative with his passport! You gotta laugh.. @GRGFMBRKFST http://t.co/bDEwQ2VVcD\n", "\n", "--------------------------------------------------------\n", @@ -60202,19 +54012,19 @@ "Dad left stranded in South Korea after his toddler doodled over his passport. via /r/funny http://t.co/TvCktsNb1I http://t.co/YUSKQW78dD\n", "\n", "--------------------------------------------------------\n", - "dad left stranded south korea toddler doodled passport via r funny \n", + "dad left stranded south korea toddler doodled passport funny \n", "\n", "\n", "Man Trapped Abroad Because His Toddler Got Creative With His Passport via /r/funny http://t.co/gTAUtqCBb3 http://t.co/CooncbhMiH\n", "\n", "--------------------------------------------------------\n", - "trapped abroad toddler got creative passport via r funny \n", + "trapped abroad toddler got creative passport funny \n", "\n", "\n", "Insanely beautiful. Wow. RT @AwkwardGoogle: Underwater bedroom. Who wouldn't like to live in a place like this http://t.co/21QjhyLlCy\n", "\n", "--------------------------------------------------------\n", - "insanely beautiful wow \n", + "insanely beautiful \n", "\n", "\n", "Underwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this? http://t.co/CmcWRhtojA\n", @@ -60229,29 +54039,11 @@ "underwater bedroom like live place like \n", "\n", "\n", - "Underwater bedroom !\\nWho wouldn't like to live in a place like this .. :) http://t.co/ezAvj8F1Ut\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom like live place like \n", - "\n", - "\n", - "Underwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this http://t.co/w9uGmCcffz\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji like live place like \n", - "\n", - "\n", - "Underwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this?(◠‿◠) http://t.co/LEAR2QF3hi\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji like live place like \n", - "\n", - "\n", "@AwkwardGoogle: Underwater bedroom at Poseidon Undersea Res. in Fiji. Who wouldn't like to live in a place like this http://t.co/ZWCkULfNBP\t718860607\tunderwater_fake_01\tFollowMM_RT\tWed Apr 16 14:07:00 +0000 2014\tfake\n", "457462346244685824\tUnderwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this? http://t.co/il8WBkjZSL...\n", "\n", "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea res fiji like live place like 718860607 underwater fake 01 followmm 457462346244685824 underwater bedroom poseidon undersea resort located fiji like live place like \n", + "346244685824 underwater bedroom poseidon undersea resort located fiji like live place like \n", "\n", "\n", "Underwater bedroom at Poseidon Undersea Resort Fiji. Who wouldn't like to live in a place like this http://t.co/YmHW5uRrSw” dream\n", @@ -60260,24 +54052,12 @@ "underwater bedroom poseidon undersea resort fiji like live place like dream \n", "\n", "\n", - "“Underwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this http://t.co/4yBO5bWCKN”\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji like live place like \n", - "\n", - "\n", "Underwater bedroom at Poseidon Undersea Resort in Fiji. Who wouldn't like to live in a place like this! http://t.co/3IuvtPhiv2 \\n#luxury\n", "\n", "--------------------------------------------------------\n", "underwater bedroom poseidon undersea resort fiji like live place like luxury \n", "\n", "\n", - "@AmazingPicx: Underwater Bedroom, Conrad Maldives Rangali Island Hotel. http://t.co/xLSYoYZNjH\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom conrad maldives rangali island hotel \n", - "\n", - "\n", "Now that's a room with a view: Underwater Bedroom, Conrad Maldives Rangali Island Hotel. http://t.co/mRxNN8exXD\n", "\n", "--------------------------------------------------------\n", @@ -60293,7 +54073,7 @@ "“@WTFFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/IOOUm0QuhK”can't beat that. Wow. 😍\n", "\n", "--------------------------------------------------------\n", - "beat wow \n", + "beat \n", "\n", "\n", "Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/7kglAKNvtC\n", @@ -60308,60 +54088,18 @@ "underwater bedroom poseidon undersea resort located fiji yesssss \n", "\n", "\n", - "“@earthposts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/uyzjxMRtpD”\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", - "\n", - "\n", - "@AwkwardGoogle: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/BbvWTyTh4k\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", - "\n", - "\n", - "oh my.... 😻😻😻 \"@thegooglefact: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/lzhmhSFFZ4\"\n", - "\n", - "--------------------------------------------------------\n", - "oh \n", - "\n", - "\n", - "@rebelrx this is cool RT @AwkwardGoogle: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/lKNHJqHZ2h\n", - "\n", - "--------------------------------------------------------\n", - "cool \n", - "\n", - "\n", - "@UnrevealedFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/9bZZ1a9DEg\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", - "\n", - "\n", "“@Jbert_479 : Underwater bedroom at Poseidon Undersea Resort located in Fiji. Sign me up! http://t.co/RF9YNSExan”\n", "\n", "--------------------------------------------------------\n", "underwater bedroom poseidon undersea resort located fiji sign \n", "\n", "\n", - "@Lienoobie Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/zbU1s2dVVS”\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", - "\n", - "\n", "Relax sleeping in Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/Pvd7GgPjtr\"\n", "\n", "--------------------------------------------------------\n", "relax sleeping underwater bedroom poseidon undersea resort located fiji \n", "\n", "\n", - "“@earthposts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/bbyzlRR1Uf” @Puffafeesh awesome :)\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "“@UnrevealedFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/CIK9Rfq0LQ” id never go to sleep\n", "\n", "--------------------------------------------------------\n", @@ -60380,12 +54118,6 @@ "underwater bedroom poseidon undersea resort located fiji pack bags \n", "\n", "\n", - "@UnrevealedFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji this http://t.co/TsZs6dTxNs a must go before I die\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji must go \n", - "\n", - "\n", "My nightmares look a lot like this:\\nRT @WTFFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/j0NrjuyGSN\n", "\n", "--------------------------------------------------------\n", @@ -60401,31 +54133,13 @@ "I could do 1 night “@AwkwardGoogle: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/PTom4qsv9O”\n", "\n", "--------------------------------------------------------\n", - "could 1 night \n", + "could night \n", "\n", "\n", "Wohoo,, sweet! RT @thegooglefact: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/jTHzyzkKdo\n", "\n", "--------------------------------------------------------\n", - "wohoo sweet \n", - "\n", - "\n", - "@WTFFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. @lynnScherloski can we, can we please!? http://t.co/6Ytzr02qY2\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji please \n", - "\n", - "\n", - "“@WTFFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/82CCz2FSXt” 😍😍😍 💕omg\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", - "Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/YpXeGC5Hbx via @earthposts\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", + "woo sweet \n", "\n", "\n", "Underwater bedroom at Poseidon Undersea Resort located in #Fiji. #Amazing http://t.co/AiyM9QzN3A”\n", @@ -60443,25 +54157,19 @@ "“@BestBedrooms: Retweet if you want this underwater bedroom! http://t.co/UqBCwx4diJ” ohhh fawwwwwwk 😱😍\n", "\n", "--------------------------------------------------------\n", - "ohhh fawwwwwwk \n", + "fawwwwwwk \n", "\n", "\n", "Lagi tdr ada piranha @DINDAAYUUS \"@BestBedrooms: Retweet if you want this underwater bedroom! http://t.co/I50c3goSOG\"\n", "\n", "--------------------------------------------------------\n", - "lagi tdr ada piranha \n", - "\n", - "\n", - "@justVYlieve: “@DreamHouseX: Retweet if you want this underwater bedroom! , http://t.co/20BOWYR2lw” FUCK YES\n", - "\n", - "--------------------------------------------------------\n", - "fuck yes \n", + "tdr piran \n", "\n", "\n", "Yang ini bener-bener gilaaaaa @K_Febriani \" Retweet if you want this underwater bedroom! http://t.co/wONj1y8nQq\"\n", "\n", "--------------------------------------------------------\n", - "yang ini bener bener gilaaaaa retweet underwater bedroom \n", + "bener bener gilaaaaa retweet underwater bedroom \n", "\n", "\n", "Underwater Bedroom, If I don't get this I'll cry Xx :( http://t.co/f0Z550wOt8\"\n", @@ -60476,12 +54184,6 @@ "retweet underwater bedroom \n", "\n", "\n", - "Retweet if you want this underwater bedroom! http://t.co/JBy5J9y3u5\n", - "\n", - "--------------------------------------------------------\n", - "retweet underwater bedroom \n", - "\n", - "\n", "Sorry, you can't spend a night in this underwater bedroom. Mostly because it doesn't exist http://t.co/ovZ7zs9qwB // http://t.co/jN7WnoD4lM\n", "\n", "--------------------------------------------------------\n", @@ -60494,12 +54196,6 @@ "top story hotels twitter picturesearth underwater bedroom conrad see \n", "\n", "\n", - "@Bedroomphotos: Amazing underwater bedroom http://t.co/9RiIBaY9ft what if the tube breaks and you drown? Then what.\n", - "\n", - "--------------------------------------------------------\n", - "amazing underwater bedroom tube breaks drown \n", - "\n", - "\n", "imagine this! “@Bedroomphotos: Amazing underwater bedroom http://t.co/TkzwmmYpYl”\n", "\n", "--------------------------------------------------------\n", @@ -60509,7 +54205,7 @@ "Amazing underwater bedroom http://t.co/MQdYiLVaYM” Memang best gila la kalau dapat bilik macam ni tidur pun tenang 😃👍\n", "\n", "--------------------------------------------------------\n", - "amazing underwater bedroom memang best gila kalau dapat bilik macam tidur pun tenang \n", + "amazing underwater bedroom best gila bilik tidur tenang \n", "\n", "\n", "Imagine having this though, an underwater bedroom😳😍👏 http://t.co/vADT4vQ2bY\n", @@ -60578,12 +54274,42 @@ "anjayy \n", "\n", "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/lCoWi6A6zC” that's so dope omfg\n", + "\n", + "--------------------------------------------------------\n", + "dope \n", + "\n", + "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/15MyuDOtdL” #sololuoghibelli☀️\n", + "\n", + "--------------------------------------------------------\n", + "souoghibelli \n", + "\n", + "\n", "Beautiful “@mc_magic1887: 😍😍 @EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/kfa5WrMuXI””\n", "\n", "--------------------------------------------------------\n", "beautiful \n", "\n", "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/sfa0dXkJhp” NO.. Me while sleeping = 😳/😭\n", + "\n", + "--------------------------------------------------------\n", + "sleeping \n", + "\n", + "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/QsHgF5D7Yg” yes 😻\n", + "\n", + "--------------------------------------------------------\n", + "yes \n", + "\n", + "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/zbO3ZaEjmF” je veux qu'on m'emmène là !\n", + "\n", + "--------------------------------------------------------\n", + "veux emmène là \n", + "\n", + "\n", "Rock Elephant http://t.co/CugLl6gc7k via @9GAG http://t.co/kgTbIkYyzG\n", "\n", "--------------------------------------------------------\n", @@ -60608,12 +54334,6 @@ "elephant rock \n", "\n", "\n", - "Rock Elephant http://t.co/TelxrbXMdt\n", - "\n", - "--------------------------------------------------------\n", - "rock elephant \n", - "\n", - "\n", "Rock Elephant http://t.co/JvaMsPKc85 #NeMemes esto es real??? http://t.co/LAiZUJSPgF\n", "\n", "--------------------------------------------------------\n", @@ -60632,12 +54352,6 @@ "elephant carved solid rock magnificent \n", "\n", "\n", - "Rock Elephant http://t.co/KN28lpPxmZ http://t.co/NNpAneV8qX\n", - "\n", - "--------------------------------------------------------\n", - "rock elephant \n", - "\n", - "\n", "Private movie theater, only at #Sochi http://t.co/tEDLsW2tLN\n", "\n", "--------------------------------------------------------\n", @@ -60689,7 +54403,7 @@ "We highly suggest one toilet per bathroom when remodeling RT @SochiEpicFails: #SochiFail #SochiProblems #Sochi http://t.co/jzX5v8V5ZU\n", "\n", "--------------------------------------------------------\n", - "highly suggest one toilet per bathroom remodeling \n", + "highly suggest one toilet bathroom remodeling \n", "\n", "\n", "#Sochi That's what I call COMMUNAL! http://t.co/3Zja2w1USC\n", @@ -60719,7 +54433,7 @@ "Roomy bathroom #sochi - #teamspirit LOL http://t.co/pL4Xei9mmc\n", "\n", "--------------------------------------------------------\n", - "roomy bathroom sochi teamspirit lol \n", + "roomy bathroom sochi teamspirit \n", "\n", "\n", "In #Sochi, the men use double toilets too. #NotA2014SochiProblem #ToiletEqualityQuestionMark -- http://t.co/YakoEem0sS\n", @@ -60797,7 +54511,7 @@ "#Sochi Every night, between 1-6 am.,poison put out, traps R set,animals R killed .TAKE ACTION> http://t.co/8fYrm4mpOI http://t.co/k3hXXFxmn8\n", "\n", "--------------------------------------------------------\n", - "sochi every night 1 6 poison put traps r set animals r killed take action greater \n", + "sochi every night poison put traps set animals killed take action \n", "\n", "\n", "Judging panel seating is complete! In Sochi the competition never stops. #SochiProblems #Sochi2014 http://t.co/4bVlKs67Fr\n", @@ -60821,7 +54535,7 @@ "http://t.co/9kj8FCFazO shoutout thekrecken for \"Lmao, Russia 😂😂😂 #sochi #winterolympics #olympics2014 #sochi2014\" ... http://t.co/j1I2f26Nf9\n", "\n", "--------------------------------------------------------\n", - "shoutout thekrecken lmao russia sochi winterolympics olympics2014 sochi2014 \n", + "shoutout thekrecken russia sochi winterolympics olympics2014 sochi2014 \n", "\n", "\n", "We have been monitoring the #sochifails and here's the latest: #SochiFail #SochiProblems \\n\\nhttp://t.co/ZE7XN0yE4S http://t.co/CNNUadNZkf\n", @@ -60851,13 +54565,13 @@ "Im sorry but have you seen the toilets in sochi?! #Sochi2014 #SochiProblems #fuckdat http://t.co/sKoMnvvl6T\n", "\n", "--------------------------------------------------------\n", - "im sorry seen toilets sochi sochi2014 sochiproblems fuckdat \n", + "sorry seen toilets sochi sochi2014 sochiproblems fuckdat \n", "\n", "\n", "2-man toilets in #sochi make for cozy same-sex connection. Does Putin approve? http://t.co/O3kNCkTFGw http://t.co/mb2w4T68xE\n", "\n", "--------------------------------------------------------\n", - "2 toilets sochi make cozy sex connection putin approve \n", + "toilets sochi make cozy sex connection putin approve \n", "\n", "\n", "This is my favorite pic of #Sochi #SochiProblems http://t.co/0Q2O9od7Cr\n", @@ -60911,7 +54625,7 @@ "The Olympics have often times been an event that brought about great solidarity. Whether you finish #1 or #2..#Sochi http://t.co/GAN8fhewR3\n", "\n", "--------------------------------------------------------\n", - "olympics often times event brought great solidarity whether finish 1 2 sochi \n", + "olympics often times event brought great solidarity whether finish sochi \n", "\n", "\n", "Stray dogs, unfinished hotel rooms, technical issues...Russia really half-assed the #Sochi Olympics #SochiProblems http://t.co/j3IVQstKGb\n", @@ -60935,7 +54649,7 @@ "C'mon guyz...first you complain \"no walls in bathroom\" now you complain walls in bathroom. WTF? #SochiProblems #sochi http://t.co/apRXJqhoCo\n", "\n", "--------------------------------------------------------\n", - "c mon guyz first complain walls bathroom complain walls bathroom wtf sochiproblems sochi \n", + "guyz first complain walls bathroom complain walls bathroom sochiproblems sochi \n", "\n", "\n", "Let's Poke each other! #Sochi #SochiFail #Sochi2014 #SochiProblems #Olympics #Olympics2014 http://t.co/oKsb4OZAQE\n", @@ -60953,7 +54667,7 @@ "A New #Sochi14 Olympics event.\\n\\nSynchronized Pooping.\\n\\n#Sochi #WhoDoesNumberTwoWorkFor? http://t.co/UARg7OYZ8D\n", "\n", "--------------------------------------------------------\n", - "new sochi14 olympics event synchronized pooping sochi whodoesnumbertwoworkfor \n", + "new sochi14 olympics event synchronized pooping sochi whodoesnumbertorkfor \n", "\n", "\n", "#Sochi #Olympics2014 Candid view of judges section for indoor water events. http://t.co/CqOHNJWH1H\n", @@ -60991,13 +54705,7 @@ "--------------------------------------------------------\n", "friendly place winter olympics photoshopped sochi olympic \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "Meanwhile in #Sochi #SochiFail http://t.co/5oh8lSDXT7\n", "\n", "--------------------------------------------------------\n", @@ -61043,19 +54751,19 @@ "You see 2 toilets in a #Sochi bathroom. I see no toilet paper, an awkward conversation, & 1 carefully buried secret. http://t.co/5zf2bhkxcf\n", "\n", "--------------------------------------------------------\n", - "see 2 toilets sochi bathroom see toilet paper awkward conversation 1 carefully buried secret \n", + "see toilets sochi bathroom see toilet paper awkward conversation carefully buried secret \n", "\n", "\n", "@bibekdebroy Shall we feel a bit better about our Commonwealth Games #Sochi Na Tha http://t.co/v0O5q0ZmgV\n", "\n", "--------------------------------------------------------\n", - "shall feel bit better commonwealth games sochi tha \n", + "shall feel bit better commonwealth games sochi \n", "\n", "\n", "Haaaahahahaha Welcome to #Sochi! #amazing #SochiProblems http://t.co/7NbXYykxCe\n", "\n", "--------------------------------------------------------\n", - "haaaahahahaha welcome sochi amazing sochiproblems \n", + "haaaawelcome sochi amazing sochiproblems \n", "\n", "\n", "Russia be like ..BUDDY SYSTEM! 😑😳👎#Sochi2014 #Sochi #SochiProblems #Follow4Follow #Follow #FF #RETWEET #RT http://t.co/9r7H5pnrTd\n", @@ -61103,7 +54811,7 @@ "Never alone in #Sochi \\n\\n#Winter_Olympics http://t.co/f5FrjvYtHn\n", "\n", "--------------------------------------------------------\n", - "never alone sochi winter olympics \n", + "never alone sochi winterolympics \n", "\n", "\n", "“@SochiFails: Best seats in the house #Sochi #Sochi2014 #sochifails #sochiproblems #Olympics http://t.co/x80YyaRoQY”best seat in the house\n", @@ -61151,13 +54859,7 @@ "“@ProblemsSochi: Olympic athletes bonding Sochi Style! #Sochi2014 http://t.co/ghz1FnrVjS” Toilet sharing vs gay bashing, come on now!\n", "\n", "--------------------------------------------------------\n", - "toilet sharing vs gay bashing come \n", - "\n", - "\n", - "@sochifun: Hillarious! Is this the spot awards ceremony will be held? #sochiproblems #SochiFail #Sochi #Sochi2014 http://t.co/SCiVtfJHs2\n", - "\n", - "--------------------------------------------------------\n", - "hillarious spot awards ceremony held sochiproblems sochifail sochi sochi2014 \n", + "toilet sharing versus gay bashing come \n", "\n", "\n", "Russians built double toilets @Sochi for gays & other men to check on each other - now gays welcome in Russia http://t.co/1XrmtBMLvn\n", @@ -61235,7 +54937,7 @@ "What privacy? #Olympic is all about sharing and mixing \\n\\n#Sochi #Winter_Olympics http://t.co/BQ29H8SFLm\n", "\n", "--------------------------------------------------------\n", - "privacy olympic sharing mixing sochi winter olympics \n", + "privacy olympic sharing mixing sochi winterolympics \n", "\n", "\n", "Seriously #sochi is this real, fake????? #southafrica could do better with fake snow! http://t.co/o190zr7bhv\n", @@ -61271,7 +54973,7 @@ "Oh. The ole 1 bed, 1/2 bathroom bit. Sochi's got jokes. “@TypicalSochi: How does this even happen? http://t.co/ui9lJv9qMn”\n", "\n", "--------------------------------------------------------\n", - "oh ole 1 bed 1 2 bathroom bit sochi got jokes \n", + "ole bed bathroom bit sochi got jokes \n", "\n", "\n", "Get your shit together Sochi #WinterOlympics #Putinprobs http://t.co/dkyhP7rX3j\n", @@ -61283,7 +54985,7 @@ "Sochi bathrooms looking like dream bathrooms for many girls I know lol. http://t.co/rnBS7u1ZMX\n", "\n", "--------------------------------------------------------\n", - "sochi bathrooms looking like dream bathrooms many girls know lol \n", + "sochi bathrooms looking like dream bathrooms many girls know \n", "\n", "\n", "This Sochi toilet situation is getting out of hand. (from @jimgeraghty ) http://t.co/q1wzAOQpOr\n", @@ -61319,19 +55021,25 @@ "Remember the Sochi Olympic Village double toilets? They are good to use! #9GAG http://t.co/rBiJLYu9G7\n", "\n", "--------------------------------------------------------\n", - "remember sochi olympic village double toilets good use 9gag \n", + "remember sochi olympic village double toilets good use \n", "\n", "\n", "How two toilets became a new Sochi symbol. #Russia http://t.co/w3NKDM8Zqh http://t.co/UV6jQ9D1NS\n", "\n", "--------------------------------------------------------\n", - "two toilets became new sochi symbol russia \n", + "two toilets became new sochi symbol russia \n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "\n", "@ChristineWark lmao no because I'm not in Sochi but pics like these are everywhere http://t.co/sFtZad1IRf\n", "\n", "--------------------------------------------------------\n", - "lmao sochi pics like everywhere \n", + "sochi pics like everywhere \n", "\n", "\n", "Welcome to Sochi! http://t.co/kaPIsaXtGo\n", @@ -61340,12 +55048,6 @@ "welcome sochi \n", "\n", "\n", - "@themarkup: Comrades! Is great day in Sochi! Sunny skies everywhere! Great accomodations! http://t.co/RBP4SgqEA6 //WTH, half a toilet??\n", - "\n", - "--------------------------------------------------------\n", - "comrades great day sochi sunny skies everywhere great accomodations wth half toilet \n", - "\n", - "\n", "I love Sochi http://t.co/yEsRptp2Pn\n", "\n", "--------------------------------------------------------\n", @@ -61355,7 +55057,7 @@ "They watching the THRONE. lol..... RT @rustymk2: Sochi, man. http://t.co/xvFoMtHSAl\n", "\n", "--------------------------------------------------------\n", - "watching throne lol \n", + "watching throne \n", "\n", "\n", "Toilet in Sochi.. or at least half of it.. (via @KatarzynaPawlak) #winter #olympics #russia http://t.co/kvi9MDkYpk\n", @@ -61364,12 +55066,6 @@ "toilet sochi least half winter olympics russia \n", "\n", "\n", - "Remember the Sochi Olympic Village double toilets? They are good to use! http://t.co/d6xIYxNp1w\n", - "\n", - "--------------------------------------------------------\n", - "remember sochi olympic village double toilets good use \n", - "\n", - "\n", "This is the kind of interior decorating you get when you banish the gays from Sochi http://t.co/WjhZnFNJOU\n", "\n", "--------------------------------------------------------\n", @@ -61400,12 +55096,6 @@ "olympic athletes bonding sochi style sochiproblems \n", "\n", "\n", - "Meanwhile Sochi Bathrooms http://t.co/p7PCNxnlBQ via @9GAG http://t.co/QWRfwkSxP2\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi bathrooms \n", - "\n", - "\n", "Watching Sochi Olympics. I like the lights! Hopefully they get the other stuff fixed @nikakozy and for others! http://t.co/pLVn1wLIXU\n", "\n", "--------------------------------------------------------\n", @@ -61427,7 +55117,7 @@ "Conditions at the Sochi Olympics are bad/hilarious (32 Photos) http://t.co/wIhfSMCxYt http://t.co/klvG0qR2rV\n", "\n", "--------------------------------------------------------\n", - "conditions sochi olympics bad hilarious 32 photos \n", + "conditions sochi olympics bad hilarious 2 photos \n", "\n", "\n", "The bathrooms in Sochi even have a waiting area! #olympicfail http://t.co/POPoJ6G8XG\n", @@ -61439,7 +55129,7 @@ "20 Funny And Weird Sochi Olympics Problems - http://t.co/DusAvRBldP http://t.co/ePwVM6ZZEo\n", "\n", "--------------------------------------------------------\n", - "20 funny weird sochi olympics problems \n", + "0 funny weird sochi olympics problems \n", "\n", "\n", "@MercyForAnimals This is what they are doing to stray dogs in Sochi. http://t.co/KMyTPBrGJW\n", @@ -61466,16 +55156,10 @@ "nothing like sochi water mmmm \n", "\n", "\n", - "Meanwhile Sochi Bathrooms http://t.co/WZWLdxtXO8 http://t.co/GOIk3la0UZ\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi bathrooms \n", - "\n", - "\n", "Russia spends $51 billion on the Sochi Olympics but THIS is how they decide to save money? Walls are cheap, guys... http://t.co/X35NGbBn8e\n", "\n", "--------------------------------------------------------\n", - "russia spends 51 billion sochi olympics decide save money walls cheap guys \n", + "russia spends 1 billion sochi olympics decide save money walls cheap guys \n", "\n", "\n", "Sit down and relax this weekend while you watch the Sochi Olympics. There's even room for... http://t.co/nah0LGnPWE http://t.co/pXZTuI8AGg\n", @@ -61517,7 +55201,7 @@ "But the toilets in Sochi will create a sense of community! This is what $50+ billion gets you! http://t.co/pYTDZAGPNf http://t.co/Wy6VPEUxmX\n", "\n", "--------------------------------------------------------\n", - "toilets sochi create sense community 50 billion gets \n", + "toilets sochi create sense community 0 billion gets \n", "\n", "\n", "Now that is definitely a half-*ssed toilet!\\nGood ole Sochi! http://t.co/yBohgepBp3\n", @@ -61535,13 +55219,13 @@ "SOCHI 2014 - Where \"POOPING\" is an Olympic spectator event! As for me, I'm goin' for the GOLD. USA,USA,USA. (flush)! http://t.co/JPXMTpJuiu\n", "\n", "--------------------------------------------------------\n", - "sochi 2014 pooping olympic spectator event goin gold usa usa usa flush \n", + "sochi014 pooping olympic spectator event going gold usa usa usa flush \n", "\n", "\n", "Sochi Winter Olympics toilets .2 separate toilet paper dispensers. Good because that would have been awkward http://t.co/DYYtsAP3CO\n", "\n", "--------------------------------------------------------\n", - "sochi winter olympics toilets 2 separate toilet paper dispensers good would awkward \n", + "sochi winter olympics toilets separate toilet paper dispensers good would awkward \n", "\n", "\n", "@juliapaulinee Remind u of anywhere? \"@sportspickle: Sochi 2014 Olympics Pickup Lines: http://t.co/B3l5UMUh64 http://t.co/QsvRqlhKoW\"\\n#plaVB\n", @@ -61571,13 +55255,13 @@ "One more toilet from Sochi including 3 seats for the jury: you start.. voting now. @VStarok:... http://t.co/7388UAbdLr\n", "\n", "--------------------------------------------------------\n", - "one toilet sochi including 3 seats jury start voting \n", + "one toilet sochi including seats jury start voting \n", "\n", "\n", "Sochi: at least 99 problems and double toilet comradery is just one of them. // @SochiProblems http://t.co/PYY0XbD79x\n", "\n", "--------------------------------------------------------\n", - "sochi least 99 problems double toilet comradery one \n", + "sochi least9 problems double toilet comradery one \n", "\n", "\n", "New event at the Sochi Winter games: battle shits.. Afghanistan is the favorite.. #sochiproblems #sochifails http://t.co/GwirDSHHcL\n", @@ -61592,16 +55276,10 @@ "front row seats still available olympic advent sochi \n", "\n", "\n", - "Meanwhile Sochi Bathrooms http://t.co/BPdNJJs074\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi bathrooms \n", - "\n", - "\n", "32 photos from Sochi, yeah, you know the ones… #toilets http://t.co/5qNFVC5XTy http://t.co/qoL4YBeASZ\n", "\n", "--------------------------------------------------------\n", - "32 photos sochi yeah know ones toilets \n", + "2 photos sochi yeah know ones toilets \n", "\n", "\n", "I guess Sochi isn't really so chiii #PrayForTheOlympians #SochiFail http://t.co/ycUDOgT5N5\n", @@ -61625,13 +55303,7 @@ "46 Weirdest,Scariest & Funniest Pics At Sochi Hotels http://t.co/OdyDfebB9O @SochiProblems #SochiProblems #SochiFail http://t.co/Z7Pu7bGSPd\n", "\n", "--------------------------------------------------------\n", - "46 weirdest scariest funniest pics sochi hotels sochiproblems sochifail \n", - "\n", - "\n", - "Remember the Sochi Olympic Village double toilets? They are good to use! http://t.co/ciHhDsE2nc via @9GAG http://t.co/T34B0rSuKF\n", - "\n", - "--------------------------------------------------------\n", - "remember sochi olympic village double toilets good use \n", + "6 weirdest scariest funniest pics sochi hotels sochiproblems sochifail \n", "\n", "\n", "I'm really enjoying hearing about how fucked up everything is in Sochi. Puts things in perspective ;) http://t.co/EwEYWfNviV\n", @@ -61649,19 +55321,13 @@ "On the 2nd day of Sochi my true love gave to me, 2 toilets in a stall and a Bobby got snubbed T http://t.co/kpAGuvHgbi\n", "\n", "--------------------------------------------------------\n", - "second day sochi true love gave 2 toilets stall bobby got snubbed \n", + "second day sochi true love gave toilets stall bobby got snubbed \n", "\n", "\n", "Sochi letting you take pre-game dumps as a team. Haha #Bonding #NextLevel http://t.co/FZ4u7lRuZA\n", "\n", "--------------------------------------------------------\n", - "sochi letting take pre game dumps team haha bonding nextlevel \n", - "\n", - "\n", - "MT @SochiEpicFails: The notorious side-by-side toilets in Sochi #SochiProblems #SochiFail http://t.co/3DzrT1VkDc\n", - "\n", - "--------------------------------------------------------\n", - "notorious side side toilets sochi sochiproblems sochifail \n", + "sochi letting take pre game dumps team bonding nextlevel \n", "\n", "\n", "Ross wonders whether this Sochi toilet is where synchronised swimmers drop the kids off at the pool (via @BBCSteveR) http://t.co/1pavu5PDis\n", @@ -61697,7 +55363,7 @@ "WINTER OLYMPIC GAME SOCHI 2014 http://t.co/AojwvtZTgs\n", "\n", "--------------------------------------------------------\n", - "winter olympic game sochi 2014 \n", + "winter olympic game sochi014 \n", "\n", "\n", "@Monicann86 @Richard_Skeet these are the facilities at Sochi,what's worse is where u put the toilet paper http://t.co/JCbnrf1bYI\n", @@ -61721,7 +55387,7 @@ "The water in Sochi is dirtier than Tiger Woods fingers after his sexcapade 2 years ago http://t.co/dmKxVBxGAL\n", "\n", "--------------------------------------------------------\n", - "water sochi dirtier tiger woods fingers sexcapade 2 years ago \n", + "water sochi dirtier tiger woods fingers sexcapade years ago \n", "\n", "\n", "Gotta love Sochi! No bathroom stalls http://t.co/Da3cxfD4Nt\n", @@ -61736,12 +55402,6 @@ "sochi nachos wanted avoid going bathroom time prez \n", "\n", "\n", - "Sochi \"@SpotTheLoon2010: Lol RT@AllyTuckerKSR: Of all of the #SochiProblems ,this one's absolutely my favorite.http://t.co/0QfsZHjhK7”\n", - "\n", - "--------------------------------------------------------\n", - "sochi lol \n", - "\n", - "\n", "Olympic athletes in Sochi expected to share bathroom facilities: http://t.co/vmNboq1LUW\n", "\n", "--------------------------------------------------------\n", @@ -61757,7 +55417,7 @@ "Is Sochi really ready for the Olympic Games ? (part 2) - http://t.co/Jr61cgeA8A #russia #Miscellaneous #Sport http://t.co/MyfFpmR7uL\n", "\n", "--------------------------------------------------------\n", - "sochi really ready olympic games part 2 russia miscellaneous sport \n", + "sochi really ready olympic games part russia miscellaneous sport \n", "\n", "\n", "Chicks that ski together pee together at Sochi. http://t.co/JiWW5E42FE\n", @@ -61775,13 +55435,13 @@ "And another one from the Sochi Olympic village 2014. (Need a audience anyone) http://t.co/b38LVFZyIb\n", "\n", "--------------------------------------------------------\n", - "another one sochi olympic village 2014 need audience anyone \n", + "another one sochi olympic village014 need audience anyone \n", "\n", "\n", "Toilets at Sochi Olympics. I think many may just wait until they get back home. (via BBC/AP) http://t.co/voKabUZ7xN\n", "\n", "--------------------------------------------------------\n", - "toilets sochi olympics think many may wait get back home via bbc ap \n", + "toilets sochi olympics think many may wait get back home bbc ap \n", "\n", "\n", "Another weird Olympic bathroom in Sochi. What do you think the chairs are for? http://t.co/cuKqN3SMrv\n", @@ -61799,7 +55459,7 @@ "Meanwhile Sochi Bathrooms http://t.co/68u2ga3k93 via @9GAG o_O http://t.co/kNbvomTatO\n", "\n", "--------------------------------------------------------\n", - "meanwhile sochi bathrooms \n", + "meanwhile sochi bathrooms oo \n", "\n", "\n", "Sochi - a tale of two toilets http://t.co/KjWxr7k7n0 http://t.co/GNI9BZZtxg\n", @@ -61829,13 +55489,13 @@ "@scolo RITWITTA .THESE IMAGES ARE SELLING .... shame Sochi 2014 IN THOUSANDS OF STRAY heaps of garbage http://t.co/4gpIDp5Vnm\n", "\n", "--------------------------------------------------------\n", - "ritwitta images selling shame sochi 2014 thousands stray heaps garbage \n", + "ritwitta images selling shame sochi014 thousands stray heaps garbage \n", "\n", "\n", "Welcome to Sochi, the Venue of Winter Olympics (32 Photos) - http://t.co/0ysEaKhhIK http://t.co/0m4QizRJJI\n", "\n", "--------------------------------------------------------\n", - "welcome sochi venue winter olympics 32 photos \n", + "welcome sochi venue winter olympics 2 photos \n", "\n", "\n", "Is it the Sochi Olympics. . . or Obamacare? http://t.co/F9RIelsfvL\n", @@ -61895,7 +55555,7 @@ "they wylen in Sochi lol http://t.co/T24Ahj5AD6\n", "\n", "--------------------------------------------------------\n", - "wylen sochi lol \n", + "wylen sochi \n", "\n", "\n", "The bathrooms in Sochi weren't done yet #awkward #nostales http://t.co/bts9WJSFeI\n", @@ -61904,12 +55564,6 @@ "bathrooms sochi done yet awkward nostales \n", "\n", "\n", - "Why Sochi, why? http://t.co/GbVPs2woDz\n", - "\n", - "--------------------------------------------------------\n", - "sochi \n", - "\n", - "\n", "Just another typical day in Sochi. Where does one buy half a toilet? http://t.co/X3QgxO3wAc\n", "\n", "--------------------------------------------------------\n", @@ -61919,7 +55573,7 @@ "Sochi got 99 problems and a toilet ain't one... cause they have two! http://t.co/EXfSySoCBw @BuzzFeed #SochiProblems http://t.co/ltAFTNVDSa\n", "\n", "--------------------------------------------------------\n", - "sochi got 99 problems toilet one cause two sochiproblems \n", + "sochi got9 problems toilet one cause two sochiproblems \n", "\n", "\n", "Remember the Sochi Olympic Village double toilets? They are good to use! #Humor http://t.co/J2m9bVH9uZ\n", @@ -61931,7 +55585,7 @@ "Wow some of the pics coming out of Sochi about the conditions are incredible!!! This is my fave #onecheek #SochiFail http://t.co/1Hjr9vMYoH\n", "\n", "--------------------------------------------------------\n", - "wow pics coming sochi conditions incredible fave onecheek sochifail \n", + "pics coming sochi conditions incredible fave onecheek sochifail \n", "\n", "\n", "Public bathrooms in sochi. Stop playin http://t.co/24bBjeD7Bb\n", @@ -61985,7 +55639,7 @@ "32 Images That Sum Up Why The Sochi Olympics Are Already A Disaster | via @HappyPlace http://t.co/2wD0YtYWCr http://t.co/V7RDdyimfN\n", "\n", "--------------------------------------------------------\n", - "32 images sum sochi olympics already disaster \n", + "2 images sum sochi olympics already disaster \n", "\n", "\n", "Olympic Spirit In Display At Sochi. #Olympics2014 http://t.co/9a1q699zmL\n", @@ -61997,7 +55651,7 @@ "@russelltovey THESE IMAGES ARE SELLING .... shame Sochi 2014 IN THOUSANDS OF STRAY heaps of garbage ..RITWITT http://t.co/SqKGRD6j7r\n", "\n", "--------------------------------------------------------\n", - "images selling shame sochi 2014 thousands stray heaps garbage ritwitt \n", + "images selling shame sochi014 thousands stray heaps garbage ritwitt \n", "\n", "\n", "apparently the biggest problem over in Sochi right now is plumbing :) #SochiProblems #fb http://t.co/nr8UL7WeZy\n", @@ -62012,12 +55666,6 @@ "half flush option environmentally friendly sochi \n", "\n", "\n", - "“@RantSports: Sochi FAIL.\\n\\nhttp://t.co/nhkHPJu0kw http://t.co/vZlrlXj5uq” ... We have these in America, too... 😒😒😒😒😒\n", - "\n", - "--------------------------------------------------------\n", - "america \n", - "\n", - "\n", "Sochi bathrooms so private... http://t.co/JPYOVgohBZ\n", "\n", "--------------------------------------------------------\n", @@ -62057,7 +55705,7 @@ "Sochi for some reason it doesn't seem like ur against homosexuals #SochiProblems #2014OlympicProblems http://t.co/2iOUYBiEWR\n", "\n", "--------------------------------------------------------\n", - "sochi reason seem like ur homosexuals sochiproblems 2014olympicproblems \n", + "sochi reason seem like homosexuals sochiproblems014olympicproblems \n", "\n", "\n", "Let the games begin. — in Sochi, Russia.https://t.co/3dTF1BrvXi http://t.co/JGysaj5Un4\n", @@ -62087,7 +55735,7 @@ "while the olympics are fun to follow, following all the problems in Sochi is even more enjoyable #2014CM331B1 http://t.co/Amn474BfPx\n", "\n", "--------------------------------------------------------\n", - "olympics fun follow following problems sochi even enjoyable 2014cm331b1 \n", + "olympics fun follow following problems sochi even enjoyable014cm331b1 \n", "\n", "\n", "@maddogvirgin I though you might like this.This is what they have going on in Sochi.There judging your deuces as well http://t.co/9VkXuqLi87\n", @@ -62123,13 +55771,7 @@ "Bit of a half-arsed toilet in this Sochi hotel - you wouldn't want to do a 1 or a 2. maybe a 0.5! #SochiProblems http://t.co/8dCdkj3uNU\n", "\n", "--------------------------------------------------------\n", - "bit half arsed toilet sochi hotel 1 2 maybe 0 5 sochiproblems \n", - "\n", - "\n", - "Olympic athletes bonding Sochi Style! #SochiProblems http://t.co/K58vzYiJBp\n", - "\n", - "--------------------------------------------------------\n", - "olympic athletes bonding sochi style sochiproblems \n", + "bit half arsed toilet sochi hotel maybe sochiproblems \n", "\n", "\n", "This photo shows Russia may have a toilet problem in Sochi http://t.co/6LKXIFZKdd #russia @thejohnfleming http://t.co/MuMSv8CeLg\n", @@ -62159,13 +55801,13 @@ "Famous biathlon athletes are surprised 2 see women toilet cabins not separated in Sochi;) Pic:G.Soukalova #Euromaidan http://t.co/EeiAc7zjx3\n", "\n", "--------------------------------------------------------\n", - "famous biathlon athletes surprised 2 see women toilet cabins separated sochi pic g soukalova euromaidan \n", + "famous biathlon athletes surprised see women toilet cabins separated sochi pic g soukalova euromaidan \n", "\n", "\n", "Genuine toilet, spotted in Sochi. #1 http://t.co/SOgq8bxa5g\n", "\n", "--------------------------------------------------------\n", - "genuine toilet spotted sochi 1 \n", + "genuine toilet spotted sochi \n", "\n", "\n", "“@reddpups: did U see what's going on in Sochi; U won't see this on tv https://t.co/H806AQEOTQ …” #shameonsochi http://t.co/IXhnrJP19s\n", @@ -62195,13 +55837,7 @@ "Lmfao. Toilet in Sochi. What do? http://t.co/oyg0xLFqxA\n", "\n", "--------------------------------------------------------\n", - "lmfao toilet sochi \n", - "\n", - "\n", - "Remember the Sochi Olympic Village double toilets? They are good to use! http://t.co/HBfLCpdWVS http://t.co/15o2tu4SI1\n", - "\n", - "--------------------------------------------------------\n", - "remember sochi olympic village double toilets good use \n", + "toilet sochi \n", "\n", "\n", "Sochi\\n@UKN_LL\\nJudges are late arriving for first round of Looge event. \\n\\nhttp://t.co/1dFWHNiILj\n", @@ -62240,12 +55876,6 @@ "ice cream ass among olympic meal options apparently serving wrong sochi ht \n", "\n", "\n", - "@TypicalSochi: Looks like they ran out of cones.. http://t.co/A1J455SdHH Whatever floats ur boat Sochi! Lol\n", - "\n", - "--------------------------------------------------------\n", - "looks like ran cones whatever floats ur boat sochi lol \n", - "\n", - "\n", "The \"star\" of the #Olympics2014 so far. #SochiFail #sochi #SochiProblems #Sochi2014 http://t.co/P5HbdgWmUp\n", "\n", "--------------------------------------------------------\n", @@ -62255,7 +55885,7 @@ "Sin Cara can't get the Sochi hotel rooms right. #BOTHCED #SochiProblems #Sochi2014 #WWE http://t.co/Sv7vPkkSsA\n", "\n", "--------------------------------------------------------\n", - "cara get sochi hotel rooms right bothced sochiproblems sochi2014 wwe \n", + "get sochi hotel rooms right bothced sochiproblems sochi2014 wwe \n", "\n", "\n", "Beware of fake #Sochi toilet photos: http://t.co/swiOge5hMg #hoaxes http://t.co/F0bdggxfqX\n", @@ -62267,13 +55897,13 @@ "5th ring finally comes out #sochi #Sochi2014 #teamgay http://t.co/O5YkVrpnck\n", "\n", "--------------------------------------------------------\n", - "5th ring finally comes sochi sochi2014 teamgay \n", + "ring finally comes sochi sochi2014 teamgay \n", "\n", "\n", "#FOTO Patinadora de #EU genera 'memes' en #Sochi2014 por expresión tras conocer puntuaciones http://t.co/AYqu5tJASq http://t.co/qne2Fy0jtZ\n", "\n", "--------------------------------------------------------\n", - "foto patinadora eu genera memes sochi2014 expresión tras conocer puntuaciones \n", + "foto patinadora genera memes sochi2014 expresión tras conocer puntuaciones \n", "\n", "\n", "Don't ask for cakes in #sochi #Olympics2014 . So much calories if taken that way :) http://t.co/insEfZGpP3\n", @@ -62285,7 +55915,7 @@ "Ohh that's why it took sooo long... #Sochi2014 #Olympics #sochi http://t.co/bs4BbfGoqv\n", "\n", "--------------------------------------------------------\n", - "ohh took sooo long sochi2014 olympics sochi \n", + "took sooo long sochi2014 olympics sochi \n", "\n", "\n", "@insanely_great @lgreenberg @doubled50 @mtpflyers I hope #CES2015 does not get any ideas from #Sochi http://t.co/TglHSqG01K\n", @@ -62327,7 +55957,7 @@ "Welcome to the 5th ring! #SochiProblems #Sochi2014 #SochiFail #WinterOlympics http://t.co/QU2RKQDC85\n", "\n", "--------------------------------------------------------\n", - "welcome 5th ring sochiproblems sochi2014 sochifail winterolympics \n", + "welcome ring sochiproblems sochi2014 sochifail winterolympics \n", "\n", "\n", "Looking forward to #winterolympics #sochi here is a picture of the opening ceremony! http://t.co/gwo9jGMuE7\n", @@ -62351,7 +55981,7 @@ "😄👍 #Sochi @bubwal \\r\"@BenCooper86: Brilliant! RT @Carolynoflondon: Thought you might like this!!! http://t.co/gaeRL480r0 #LGBT #Sochi2014\"\n", "\n", "--------------------------------------------------------\n", - "sochi r brilliant \n", + "sochi r \n", "\n", "\n", "#Sochi Serves All Foods ‘In the Ass' http://t.co/pzZxMvygYD #Olympics How about some #Putin in the ass? http://t.co/rXu4VSPvIT\n", @@ -62363,7 +55993,7 @@ "Do you want #sochi ice-cream? Lol http://t.co/9Nway9iToT\n", "\n", "--------------------------------------------------------\n", - "sochi ice cream lol \n", + "sochi ice cream \n", "\n", "\n", "Ice cream in the ass. Mystery solved #sochi http://t.co/Ju2C6498k8 http://t.co/CNAM1B4qbz\n", @@ -62393,7 +56023,7 @@ "OMG don't tell Putin there is a gay in Sochi #Sochi2014 #SochiProblems #SochiFail http://t.co/4LWqUlxjK6\n", "\n", "--------------------------------------------------------\n", - "omg tell putin gay sochi sochi2014 sochiproblems sochifail \n", + "tell putin gay sochi sochi2014 sochiproblems sochifail \n", "\n", "\n", "THE BIG GAY RING FINALLY CAME OUT!! #Sochi #SochiProblems #Sochi2014 #gay http://t.co/GZTptDMnX8\n", @@ -62417,7 +56047,7 @@ "@DLSpencer10 spots Welsh language menu in #sochi. Da Iawn! #sochiproblems http://t.co/Us4wJo6Qe3\n", "\n", "--------------------------------------------------------\n", - "spots welsh language menu sochi da iawn sochiproblems \n", + "spots welsh language menu sochi iawn sochiproblems \n", "\n", "\n", "Gotta love the Olympics. #sochi #pride http://t.co/GYIzfyTbPi\n", @@ -62426,12 +56056,6 @@ "gotta love olympics sochi pride \n", "\n", "\n", - "@trwldenmark: About time! #trwldk #tosochiwithlove #torussiawithlove #Sochi2014 #sochi http://t.co/OJj4WstBu4 - the missing part, Putin\n", - "\n", - "--------------------------------------------------------\n", - "time trwldk tosochiwithlove torussiawithlove sochi2014 sochi missing part putin \n", - "\n", - "\n", "I'd like to make a correction on a photo, https://t.co/2Sez4ba5UE was a photo from December mistaken for something in #Sochi. It is not...\n", "\n", "--------------------------------------------------------\n", @@ -62477,7 +56101,7 @@ "The 5th ring finally came out ;) #Sochi #Putin http://t.co/ozO16jDccZ\n", "\n", "--------------------------------------------------------\n", - "5th ring finally came sochi putin \n", + "ring finally came sochi putin \n", "\n", "\n", "I think Sochi's on the DL.... Come on out, Sochi! Don't be afraid! @sochiproblems #sochi2014 #SochiFail http://t.co/S6VmkCEpIL\n", @@ -62531,7 +56155,7 @@ "5th ring comes out #Sochi2014 #Sochi #Olympics2014 #Olympics http://t.co/Y1cQrLQz7N\n", "\n", "--------------------------------------------------------\n", - "5th ring comes sochi2014 sochi olympics2014 olympics \n", + "ring comes sochi2014 sochi olympics2014 olympics \n", "\n", "\n", "Wait, so u can get coke OR Pepsi at the same place? Sign me up #sochi #SochiProblems #lemonaidinthewhat! 😳 http://t.co/lJ1IXOokNm\n", @@ -62585,7 +56209,7 @@ "BREAKING sochi NEWS: the 5th ring has finally come out/----> http://t.co/YpqRd8A2SS\n", "\n", "--------------------------------------------------------\n", - "breaking sochi news 5th ring finally come \n", + "breaking sochi news ring finally come \n", "\n", "\n", "Who said Sochi is anti-gay? http://t.co/Y5pxKa2vxd\n", @@ -62609,13 +56233,13 @@ "Oh my God, Sochi... really? REALLY?? Was it too much to ask for a translator that actually spoke English?! LMFAO. http://t.co/JOVwFD1lDo\n", "\n", "--------------------------------------------------------\n", - "oh god sochi really really much ask translator actually spoke english lmfao \n", + "god sochi really really much ask translator actually spoke english \n", "\n", "\n", "welcome to sochi b-i-t-c-h-e-s;) http://t.co/86LPuT1A3Z\n", "\n", "--------------------------------------------------------\n", - "welcome sochi b c h \n", + "welcome sochi b h \n", "\n", "\n", "And they say Sochi isn't gay... RT @SochiEpicFails: You're putting the lemonade where?! #SochiProblems #SochiFail http://t.co/uT1aHeokiI\n", @@ -62645,7 +56269,7 @@ "This was a menu in Sochi. Cakes in ass anyone? 420 calories though, might have to pass. http://t.co/datUK3sfXS\n", "\n", "--------------------------------------------------------\n", - "menu sochi cakes ass anyone 420 calories though might pass \n", + "menu sochi cakes ass anyone calories though might pass \n", "\n", "\n", "@_youhadonejob Russian drinks translation menu at Sochi courtesy of @frister_89 http://t.co/JMdzEPuuL7\n", @@ -62669,7 +56293,7 @@ "Brace urselves the sochi is comin\\nSEND UR PHOTOS to @Fail_Sochi #sochitoilets #sochifail #sochiproblems http://t.co/fbioOoXDjJ\n", "\n", "--------------------------------------------------------\n", - "brace urselves sochi comin send ur photos sochitoilets sochifail sochiproblems \n", + "brace urselves sochi comin send photos sochitoilets sochifail sochiproblems \n", "\n", "\n", "A menu from Sochi. I wouldn't order the lemonade even if I was dying of thirst 😂 http://t.co/fvMWe7b1qb\n", @@ -62687,7 +56311,7 @@ "Oh the menu. Sochi are you mad? http://t.co/30Aw1AjIz1\n", "\n", "--------------------------------------------------------\n", - "oh menu sochi mad \n", + "menu sochi mad \n", "\n", "\n", "Another reason NOT to go to Sochi. Holy Ben and Jerry's. @BFinn86 @houseofwachs @steakshapiro #Olympics2014 http://t.co/6lDAzsZfMN\n", @@ -62711,7 +56335,7 @@ "Sleeping arrangements at the Sochi 2014 Winter Olympics. http://t.co/vN6KodIIIT\n", "\n", "--------------------------------------------------------\n", - "sleeping arrangements sochi 2014 winter olympics \n", + "sleeping arrangements sochi014 winter olympics \n", "\n", "\n", "Putin making sure that the showers in Sochi are working, http://t.co/tflUpzF4Fy\n", @@ -62732,12 +56356,6 @@ "hotels sochi bad first class upgraded room \n", "\n", "\n", - "“@sochireport: Most popular item on the menu in Sochi is \"Ice Cream in the ass.\" #SochiProblems #Sochi2014 http://t.co/4ruynxxLyz” lololol\n", - "\n", - "--------------------------------------------------------\n", - "lololol \n", - "\n", - "\n", "Doing it big in Sochi I see. http://t.co/pJyEFT6bl3\n", "\n", "--------------------------------------------------------\n", @@ -62807,7 +56425,7 @@ "What's wrong in Sochi: Day 1. Ice cream in the ass (via @bustedcoverage). http://t.co/ezwkiXV5F9 http://t.co/11XTfc0fZL\n", "\n", "--------------------------------------------------------\n", - "wrong sochi day 1 ice cream ass \n", + "wrong sochi day ice cream ass \n", "\n", "\n", "Rosetta Stone has failed Sochi. Ice cream in the ass... http://t.co/3RvSaUNWJN\n", @@ -62816,24 +56434,6 @@ "rosetta stone failed sochi ice cream ass \n", "\n", "\n", - "@morrow31: @UweMuegge @ProfessorOlsen, Sochi could use our translation & localization students... http://t.co/4liuN8wiiU <Yes sir!>\n", - "\n", - "--------------------------------------------------------\n", - "sochi could use translation localization students less yes sir greater \n", - "\n", - "\n", - "Meanwhile in Sochi .. http://t.co/1T2L7afoiT\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi \n", - "\n", - "\n", - "Welcome to Sochi:) http://t.co/JUrTIEXIQG\n", - "\n", - "--------------------------------------------------------\n", - "welcome sochi \n", - "\n", - "\n", "Menu translated into English at the Sochi Olympics...where would you like your lemonade? #SochiProblems http://t.co/jesniSOCKr\n", "\n", "--------------------------------------------------------\n", @@ -62855,7 +56455,7 @@ "Dessert in Sochi. Looks like Putin might be, um, relaxing certain governmental policies. http://t.co/bTWDidlfyc\n", "\n", "--------------------------------------------------------\n", - "dessert sochi looks like putin might um relaxing certain governmental policies \n", + "dessert sochi looks like putin might relaxing certain governmental policies \n", "\n", "\n", "Meanwhile Sochi Bathrooms #Humor http://t.co/yRbJ2ZU2Ql\n", @@ -62885,7 +56485,7 @@ "International Olympic Committee release 2014 Sochi version of \"Faster, Higher, Stronger\" Olympic motto http://t.co/kWEKG4uMoZ\n", "\n", "--------------------------------------------------------\n", - "international olympic committee release 2014 sochi version faster higher stronger olympic motto \n", + "international olympic committee release014 sochi version faster higher stronger olympic motto \n", "\n", "\n", "Coming out at the Sochi #Olympics \\n#Olympics2014 #gayrights #marriageequality http://t.co/h95mRRx0oK\n", @@ -62900,16 +56500,10 @@ "one joke sochi menus honest feeling \n", "\n", "\n", - "Meanwhile Sochi Bathrooms #9GAG http://t.co/XKVe5evSKI\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi bathrooms 9gag \n", - "\n", - "\n", "Oh look you can get cake with your ice cream in Sochi. #SochiFail #SochiProblems http://t.co/crCfaYB9ux\n", "\n", "--------------------------------------------------------\n", - "oh look get cake ice cream sochi sochifail sochiproblems \n", + "look get cake ice cream sochi sochifail sochiproblems \n", "\n", "\n", "They serve weird lemonade at Sochi 😂😂 http://t.co/KdIxVCIV1z\n", @@ -62945,13 +56539,7 @@ "8 Viral Sochi Olympics Photos That Are Total Lies http://t.co/77c3HxaiGE http://t.co/7tyKi5oVgS\n", "\n", "--------------------------------------------------------\n", - "8 viral sochi olympics photos total lies \n", - "\n", - "\n", - "8 Viral Sochi Olympics Photos That Are Total Lies\\n\\nhttp://t.co/RscIT8rr4l http://t.co/I9U0KMcCKV\n", - "\n", - "--------------------------------------------------------\n", - "8 viral sochi olympics photos total lies \n", + "viral sochi olympics photos total lies \n", "\n", "\n", "Viral #SochiProblems images that are fake - or not from the Sochi Olympics: http://t.co/n30lS1dCWO http://t.co/YJ6H1S3z2o\n", @@ -62963,13 +56551,13 @@ "Gambar Ini BUKAN MH370, ini adalah gambar dari insiden kapalterbang terhempas di Sicily pada 6Ogos2005 #PrayForMH370 http://t.co/Sk8ygjAva5\n", "\n", "--------------------------------------------------------\n", - "gambar ini bukan mh370 ini adalah gambar dari insiden kapalterbang terhempas di sicily pada 6ogos2005 prayformh370 \n", + "gambar mh370 gambar insiden kapalterbang terhempas sicily pada2005 prayformh370 \n", "\n", "\n", "Finally they found the MH370. Please confirm and hope fot the good news Y_Y #PrayForMH370 http://t.co/qRGccCn9yk\n", "\n", "--------------------------------------------------------\n", - "finally found mh370 please confirm hope fot good news prayformh370 \n", + "finally found mh370 please confirm hope fot good news yy prayformh370 \n", "\n", "\n", "WHEREVER YOU GO NO ONE WILL EVER KNOW\\nWhats with this advertise huh, like this's the reason MH370 never found? http://t.co/mZZ8ZG4Vic\n", @@ -62981,7 +56569,7 @@ "MH370 ? RT\"@ImGunnar: I found the plane http://t.co/kkpuL7HkBP\"\n", "\n", "--------------------------------------------------------\n", - "mh370 \n", + "mh370 rt \n", "\n", "\n", "MH370 found in near Bermuda Triangle http://t.co/IUH9jBKlVt\n", @@ -62999,13 +56587,13 @@ "Hoax bro, walaupun ada gambar / videonya .... @sayfull46: MH370 found in near Bermuda Triangle http://t.co/Had1DjqYJl\"\n", "\n", "--------------------------------------------------------\n", - "hoax bro walaupun ada gambar videonya mh370 found near bermuda triangle \n", + "hoax gambar videonya \n", "\n", "\n", "I check the headlines like 20 times a day hoping to see that MH370 is found, this is the best headline yet http://t.co/lE8ZKQO1DF\n", "\n", "--------------------------------------------------------\n", - "check headlines like 20 times day hoping see mh370 found best headline yet \n", + "check headlines like0 times day hoping see mh370 found best headline yet \n", "\n", "\n", "“@270512: LMFAO !!!! http://t.co/3GUPxa3Iud”MH370 found\n", @@ -63026,12 +56614,6 @@ "real mh370 \n", "\n", "\n", - "@EXOffical_: I hope this is happening #PrayForMH370 http://t.co/P7b9JIGQ8G harap sgt2 jumpa MH370 dlm keadaan ni. :'(\n", - "\n", - "--------------------------------------------------------\n", - "hope happening prayformh370 harap sgt2 jumpa mh370 dlm keadaan \n", - "\n", - "\n", "Ya Allah, eventhough this is not real, but i hope this will happened to MH370. #PrayForMH370 http://t.co/J7viHjkmfQ\n", "\n", "--------------------------------------------------------\n", @@ -63065,7 +56647,7 @@ "Russia are now saying that flight MH370 was hijacked and taken to Afganistan, what is even going on haha http://t.co/keTVUmYKhT\n", "\n", "--------------------------------------------------------\n", - "russia saying flight mh370 hijacked taken afganistan even going haha \n", + "russia saying flight mh370 hijacked taken afganistan even going \n", "\n", "\n", "@Noddyshot now u can stop asking me and @LoubieSav where the MH370 is http://t.co/E3SfJuK4j4\n", @@ -63107,7 +56689,7 @@ "desgraciadamente parece que se confirma que el MH370 se ha estrellado en el mar con 239 pasajeros dos de ellos niños http://t.co/ZPfjgg3KS9\n", "\n", "--------------------------------------------------------\n", - "desgraciadamente parece confirma mh370 estrellado mar 239 pasajeros dos niños \n", + "desgraciadamente parece confirma mh370 seestrellado mar con39 pasajeros niños \n", "\n", "\n", "Found the lost Malaysian plane. Anyone got cash? http://t.co/LmBUYDiXgD\n", @@ -63119,31 +56701,31 @@ "@wangmyun tapi mh370 kata kata promosi nya juga http://t.co/3iAudcx7bn\n", "\n", "--------------------------------------------------------\n", - "tapi mh370 kata kata promosi nya juga \n", + "mh370 promosi nya \n", "\n", "\n", "@Boeing777_ il est là 好像找到MH370了 map654342 http://t.co/udR5q2QbBK\n", "\n", "--------------------------------------------------------\n", - "il est là 好像找到mh370了 map654342 \n", + "là 好像找到mh370了 map654342 \n", "\n", "\n", "La découverte de #CourtneyLove sur le vol MH370 parodiée http://t.co/DBvPexk53P\n", "\n", "--------------------------------------------------------\n", - "découverte courtneylove sur vol mh370 parodiée \n", + "découverte courtneylove vol mh370 parodiée \n", "\n", "\n", "กู้ภัยเวียดนามพบวัตถุ ห่าง 80 กม.ทางตอนใต้ของเกาะโถเจา เวียดนาม คาดอาจเป็นประตู-หางของ MH370 รอบินตรวจสอบพรุ่งนี้ http://t.co/QOsmoLTNsg\n", "\n", "--------------------------------------------------------\n", - "ก ภ ยเว ยดนามพบว ตถ ห าง 80 กม ทางตอนใต ของเกาะโถเจา เว ยดนาม คาดอาจเป นประต หางของ mh370 รอบ นตรวจสอบพร งน \n", + "ก ภ ยเว ยดนามพบว ตถ ห าง0 กม ทางตอนใต ของเกาะโถเจา เว ยดนาม คาดอาจเป นประต หางของ mh370 รอบ นตรวจสอบพร งน \n", "\n", "\n", "क्या मिल गया 17 दिन से लापता मलेशियाई विमान MH370? फेसबुक पर तस्वीरें!\\nhttp://t.co/6zROgiaGqj http://t.co/DEKEln5ypi\n", "\n", "--------------------------------------------------------\n", - "क य म ल गय 17 द न स ल पत मल श य ई व म न mh370 फ सब क पर तस व र \n", + "क य म ल गय 7 द न स ल पत मल श य ई व म न mh370 फ सब क पर तस व र \n", "\n", "\n", "「MH370便、バミューダ島沖で発見!」 というネタでリンク踏ませて個人情報抜く人がいるんだってさ http://t.co/Cn2ggnKYz5\n", @@ -63155,7 +56737,7 @@ "Τι κρύβεται πίσω από τη χαμένη πτήση MH370; http://t.co/JAbpQEzwMt http://t.co/7SRCwNAZSM\n", "\n", "--------------------------------------------------------\n", - "τι κρύβεται πίσω από τη χαμένη πτήση mh370 \n", + "τι κρύβεται ίσω αό τη χαμένη τήση mh370 \n", "\n", "\n", "เผยภาพ ! เครื่องบินในป่าทึบ ที่คาดว่าอาจเป็นเที่ยวบิน MH370 ที่หายไป ... http://t.co/6sj3FNZyrI - http://t.co/9v1zXy06nf\n", @@ -63173,25 +56755,25 @@ "Tweet daripada Maira Elizabeth iaitu anak kepada Ketua Steward, Andrew Nari yang berada dalam pesawat MAS MH370. http://t.co/Dk4uWMNp8Y\n", "\n", "--------------------------------------------------------\n", - "tweet daripada maira elizabeth iaitu anak kepada ketua steward andrew nari yang berada dalam pesawat mas mh370 \n", + "tweet maira elizabeth iaitu anak ketua steward andrew nari pesawat mh370 \n", "\n", "\n", "Courtney Love a sa petite théorie sur la disparition du vol MH370. http://t.co/WMnq5M4BlZ http://t.co/Cx46orfWSM\n", "\n", "--------------------------------------------------------\n", - "courtney love sa petite théorie sur disparition vol mh370 \n", + "courtney love petite théorie disparition vol mh370 \n", "\n", "\n", "@ridwankamil @detikcom pesawt MH370 juga dijual di dunia maya, kang http://t.co/FEeNHHfbOk\n", "\n", "--------------------------------------------------------\n", - "pesawt mh370 juga dijual di dunia maya kang \n", + "pesawt mh370 dijual dunia maya kang \n", "\n", "\n", "Saya tak nak MH370 jadi macam ni....... http://t.co/PiIRTqEiha\n", "\n", "--------------------------------------------------------\n", - "saya tak nak mh370 jadi macam \n", + "nak mh370 \n", "\n", "\n", "@newscomauHQ enough with the misleading headlines on mh370. #mh370 http://t.co/gmkYWVbf4S\n", @@ -63200,12 +56782,6 @@ "enough misleading headlines mh370 mh370 \n", "\n", "\n", - "@PuspitaFM: #JMR Kembali Ditemukan, Gambar Pesawat Diduga MH370| via: @tempodotco\\nhttp://t.co/qKfKVWvGGp http://t.co/1DM922rsXs\n", - "\n", - "--------------------------------------------------------\n", - "jmr kembali ditemukan gambar pesawat diduga mh370 via \n", - "\n", - "\n", "Foto MH370 dan Teori Konspirasi http://t.co/Hlm5oljkGH #MH370 http://t.co/Za4ABLXYTx\n", "\n", "--------------------------------------------------------\n", @@ -63215,13 +56791,13 @@ "海军 #越南 轨迹显示设备已经在海洋观看影像> #北京 #日本 #台北 MH370 #MalaysiaAirlines http://t.co/El2qIF7BaA http://t.co/tTmCSJuM2A\n", "\n", "--------------------------------------------------------\n", - "海军 越南 轨迹显示设备已经在海洋观看影像 greater 北京 日本 台北 mh370 malaysiaairlines \n", + "海军 越南 轨迹显示设备已经在海洋观看影像 北京 日本 台北 mh370 malaysiaairlines \n", "\n", "\n", "Mahasiswa Taiwan Tangkap Gambar Pesawat di Tengah Hutan, MAS MH370? http://t.co/xYBupjLthF http://t.co/41VllBNTkL\n", "\n", "--------------------------------------------------------\n", - "mahasiswa taiwan tangkap gambar pesawat di tengah hutan mas mh370 \n", + "mahasiswa taiwan tangkap gambar pesawat hutan mh370 \n", "\n", "\n", "ジャングルのなかにある機影。はたしてMH370か?RT @sirinapa_kcl เผยภาพ! เครื่องบินสีขาวในป่าทึบที่คาดว่าอาจเป็น http://t.co/DQO78xVnx2 http://t.co/e2evmv0ztQ\n", @@ -63230,16 +56806,10 @@ "ジャングルのなかにある機影 はたしてmh370か \n", "\n", "\n", - "@ffaisalburn: Wow. “@politaiko: Terkini, Israel sudah kecut dengan MH370 \" - rare News http://t.co/1dJELax2lD”\"\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "Lagu pitbull ada kena mengena dgn mh370. Bukti segalanya telah dirancang amerika http://t.co/0sIgLmqOiI\n", "\n", "--------------------------------------------------------\n", - "lagu pitbull ada kena mengena dgn mh370 bukti segalanya telah dirancang amerika \n", + "lagu pitbull kena mengena dgn mh370 bukti dirancang amerika \n", "\n", "\n", "THIS WAS AN OLD ADVERTISEMENT OMG WERE THEY GIVING US A HINT ABOUT MH370??? SCARYYY http://t.co/k9beAPEoma\n", @@ -63251,7 +56821,7 @@ "MH370 Closeup of the 24m debris. (from AMSA provided image). http://t.co/gNHVaeyMZp\n", "\n", "--------------------------------------------------------\n", - "mh370 closeup 24m debris amsa provided image \n", + "mh370 closeup the4m debris amsa provided image \n", "\n", "\n", "Ja, Ze maken het wel waar! mh370 http://t.co/CVzITSTaLi\n", @@ -63269,13 +56839,13 @@ "Kata2 dlam promosi ini bisa menjadi doa yg m'buat MH370 susah utk d temukan \"Wherever yoy go, No one will ever knew\" http://t.co/7JVYPi3w4z\n", "\n", "--------------------------------------------------------\n", - "kata2 dlam promosi ini bisa menjadi doa yg buat mh370 susah utk temukan wherever yoy go one ever knew \n", + "kata2 dlam promosi doa yg mh370 susah utk temukan wherever yoy go one ever knew \n", "\n", "\n", "Istri Kurt Cobain Klaim Temukan Pesawat MAS MH370 yang Hilang http://t.co/FxJ1hOv8Hx http://t.co/ZKxmCvlEsv\n", "\n", "--------------------------------------------------------\n", - "istri kurt cobain klaim temukan pesawat mas mh370 yang hilang \n", + "istri kurt cobain klaim temukan pesawat mh370 hilang \n", "\n", "\n", "Consideran prematura una búsqueda submarina del MH370 http://t.co/1Z4HJsGpOK http://t.co/ZkEiLZQBKa\n", @@ -63287,7 +56857,7 @@ "Supuesta foto del 777 vuelo MH370 sobre la selva de Malasia http://t.co/YZQDnyTZMW\n", "\n", "--------------------------------------------------------\n", - "supuesta foto 777 vuelo mh370 selva malasia \n", + "supuesta foto del77 vuelo mh370 selva malasia \n", "\n", "\n", "@cjwerleman But considering your fascination w/MH370, this might be the time to go for it ;) \\nhttps://t.co/7jjCKBfwjV http://t.co/Go8VBwWeSc\n", @@ -63311,7 +56881,7 @@ "Προσοχή στη νέα απάτη μέσω Facebook: “Εντοπίστηκε το αεροπλάνο της Μαλαισίας MH370” http://t.co/wkZXKxHoKQ http://t.co/Is6IM0k98t\n", "\n", "--------------------------------------------------------\n", - "προσοχή στη νέα απάτη μέσω facebook εντοπίστηκε το αεροπλάνο της μαλαισίας mh370 \n", + "ροσοχή στη νέα αάτη μέσω facebook εντοίστηκε το αερολάνο της μαλαισίας mh370 \n", "\n", "\n", "Hopefully this will happen on MH370 #PrayForMH370 http://t.co/bdATGTieID\n", @@ -63341,7 +56911,7 @@ "0Boleh percaya ke perisik rusia. keep praying for mh370 http://t.co/tXOGzX1D6l\n", "\n", "--------------------------------------------------------\n", - "0boleh percaya ke perisik rusia keep praying mh370 \n", + "percaya perisik rusia keep praying mh370 \n", "\n", "\n", "Skönt ändå, att Courtney Love gett sig in i sökandet efter MH370 http://t.co/qTENLYkym5\n", @@ -63359,7 +56929,7 @@ "Wow, Courtney Love Tahu Posisi Pasti Pesawat MH370! http://t.co/2MUeNuPshp http://t.co/hCdhciA6kw\n", "\n", "--------------------------------------------------------\n", - "wow courtney love tahu posisi pasti pesawat mh370 \n", + "courtney love posisi pesawat mh370 \n", "\n", "\n", "Fake photos of the crashed MH370 become available! Pls don't believe! http://t.co/AI7SWqfgVQ\n", @@ -63389,25 +56959,19 @@ "GEMPAR! MH370 dijumpai berjaya melakukan pendaratan kecemasan atas air. #BeritaHavoc #Sembang #Fake #nakjugak http://t.co/OgfU5nPktm\n", "\n", "--------------------------------------------------------\n", - "gempar mh370 dijumpai berjaya melakukan pendaratan kecemasan atas air beritahavoc sembang fake nakjugak \n", + "gempar mh370 dijumpai berjaya pendaratan kecemasan air beritahavoc sembang fake nakjugak \n", "\n", "\n", "Esok shooting ucapan utk TV Al-Hijrah tentang pesawat MH370. http://t.co/WEaqKU1MTj\n", "\n", "--------------------------------------------------------\n", - "esok shooting ucapan utk tv hijrah tentang pesawat mh370 \n", + "esok shooting ucapan utk tv hijrah pesawat mh370 \n", "\n", "\n", "#SiguesDespierto Satélite tailandés localiza 300 posibles objetos del vuelo MH370 http://t.co/3JWmPCnddK http://t.co/ynOEV0SWEX\n", "\n", "--------------------------------------------------------\n", - "siguesdespierto satélite tailandés localiza 300 posibles objetos vuelo mh370 \n", - "\n", - "\n", - "@fzdotcom: The .... pictures here http://t.co/Wd5qC21eQX http://t.co/hS0Hvr1zHA Compilation of pictures re MH370 from various sources.\n", - "\n", - "--------------------------------------------------------\n", - "pictures compilation pictures mh370 various sources \n", + "siguesdespierto satélite tailandés localiza00 posibles objetos vuelo mh370 \n", "\n", "\n", "via @王左中右 针对MH370坠落在越南海岸153海里处的消息,负责这一区域的越南海军上将Ngo Van Phat 刚对《华尔街日报》说,那个地点是马来西亚当局和飞机失联的地点,越南海军现在也不知道飞机的具体位置以及发生了什么…… http://t.co/tcbOogzl4Z\n", @@ -63425,13 +56989,13 @@ "Que lo de que Courtney Love ha encontrado el MH370 viendo fotos en internet lo ha dicho ella, eh: http://t.co/qNYg0FVwqJ\n", "\n", "--------------------------------------------------------\n", - "courtney love encontrado mh370 viendo fotos internet dicho eh \n", + "courtney loveencontrado mh370 viendo fotos internet lodicho eh \n", "\n", "\n", "Satélite tailandés localiza 300 posibles objetos del vuelo MH370 http://t.co/X39nsxPFtn #MalaysiaAirlines http://t.co/ynOEV0SWEX\n", "\n", "--------------------------------------------------------\n", - "satélite tailandés localiza 300 posibles objetos vuelo mh370 malaysiaairlines \n", + "satélite tailandés localiza00 posibles objetos vuelo mh370 malaysiaairlines \n", "\n", "\n", "Courtney Love creyó que había encontrado el MH370 (pero no lo hizo) #Courtney #Love http://t.co/YEXtC070JJ\n", @@ -63458,18 +57022,6 @@ "เผยภาพ เคร องบ นส ขาวในป าท บท คาดว าอาจเป นเท ยวบ น mh370 ท หายไปอย างล กล บ คมช ดล ก \n", "\n", "\n", - "@QuranSpeak: Before talking about MH370. http://t.co/BxGf52klFE\n", - "\n", - "--------------------------------------------------------\n", - "talking mh370 \n", - "\n", - "\n", - "@pranot: เวียดนามเผยแพร่ภาพชิ้นส่วนเครื่องบิน มาเลเซียแอร์ไลน์ เที่ยงบิน MH370 http://t.co/YHH2ayjGn9\n", - "\n", - "--------------------------------------------------------\n", - "เว ยดนามเผยแพร ภาพช นส วนเคร องบ น มาเลเซ ยแอร ไลน เท ยงบ น mh370 \n", - "\n", - "\n", "ภาพวัตถุลอยน้ำที่เวียดนามค้นพบ เมื่อช่วงค่ำวันนี้ ยังไม่ยืนยันว่าเกี่ยวข้องอะไรกับ MH370 http://t.co/7ImVK74D8z http://t.co/4BSJnDw4sI\n", "\n", "--------------------------------------------------------\n", @@ -63485,7 +57037,7 @@ "Air France tragedi on 2009 takes 5 days for 1st clue and 2 years for blackbox. Now MH370 baru 1st day. SABAR. http://t.co/xbVoV83Pep\n", "\n", "--------------------------------------------------------\n", - "air france tragedi 2009 takes 5 days first clue 2 years blackbox mh370 baru first day sabar \n", + "air france tragedi on009 takes days first clue years blackbox mh370 first day sabar \n", "\n", "\n", "«Flug MH370 gefunden»: Betrüger locken Facebook-Nutzer mit Video in die Falle http://t.co/ZUCpiHXoFt via @mimikama_at http://t.co/luaYPaT78a\n", @@ -63497,37 +57049,31 @@ "Jangan mudah percaya dgn spekulasi di twitter & facebook. Ini bukan gambar flight MH370 http://t.co/PSK43gLXkB #PrayForMH370\n", "\n", "--------------------------------------------------------\n", - "jangan mudah percaya dgn spekulasi di twitter facebook ini bukan gambar flight mh370 prayformh370 \n", + "mudah percaya dgn spekulasi twitter facebook gambar flight mh370 prayformh370 \n", "\n", "\n", "Klarifikasi : Foto ini BUKAN foto B777 MH370. It's not a photo of B777 MH370. Ini foto ATR-72 Tunisian thn 2005 http://t.co/PjjMxZq4ux\n", "\n", "--------------------------------------------------------\n", - "klarifikasi foto ini bukan foto b777 mh370 photo b777 mh370 ini foto atr 72 tunisian thn 2005 \n", + "klarifikasi foto foto b777 mh370 photo b777 mh370 foto atr2 tunisian thn005 \n", "\n", "\n", "De fausses alertes pour le vol MH370 se propagent sur les réseaux sociaux http://t.co/tkRfYMSA8m #rappel http://t.co/9Yzo1i4rwF\n", "\n", "--------------------------------------------------------\n", - "fausses alertes pour vol mh370 propagent sur réseaux sociaux rappel \n", + "fausses alertes vol mh370 propagent réseaux sociaux rappel \n", "\n", "\n", "Semoga ini yg trjadi pada penumpang MH370...amin... http://t.co/gwqaQKEvE6\n", "\n", "--------------------------------------------------------\n", - "semoga ini yg trjadi pada penumpang mh370 amin \n", - "\n", - "\n", - "Les gars, on se détend.\\n\\n[@Noisey_FR] TOUT VA BIEN : COURTNEY LOVE A RETROUVÉ LE VOL MH370 http://t.co/TBKmMsDOXS http://t.co/16m91P8aGb\n", - "\n", - "--------------------------------------------------------\n", - "gars détend tout va bien cou \n", + "semoga yg trjadi penumpang mh370 amin \n", "\n", "\n", "• http://t.co/S4fWFHVm7r • Bermuda Triangle 510 • The world s great mysteries: Malaysian flight MH370, Bermuda Trian… http://t.co/0M8I9RZYSw\n", "\n", "--------------------------------------------------------\n", - "bermuda triangle 510 world great mysteries malaysian flight mh370 bermuda trian \n", + "bermuda triangle10 world great mysteries malaysian flight mh370 bermuda trian \n", "\n", "\n", "Supuestos escombros del B777 del MH370,búsqueda en aguas Vietnamitas @TrafficAirColom @Aero_Dato @VadeAviones http://t.co/e2sg0woxsW\n", @@ -63554,12 +57100,6 @@ "ดาวเท ยมจ บภาพเคร องบ น เหน อป าท บ อาจเป น mh370 springnews \n", "\n", "\n", - "Le Christ ? /// RT @bertrand_k: Le Boeing ? RT @KurosakiSamurai\\n好像找到MH370了 map654342 http://t.co/t8oV1Uorzl\n", - "\n", - "--------------------------------------------------------\n", - "christ \n", - "\n", - "\n", "好像找到MH370了,map654342 http://t.co/xhuE8hanAW\n", "\n", "--------------------------------------------------------\n", @@ -63611,7 +57151,7 @@ "FOTO: Kembali Ditemukan, Gambar Satelit Pesawat Diduga MH370 http://t.co/s7C6Fvt6ld http://t.co/0UtZYgjHcT\n", "\n", "--------------------------------------------------------\n", - "foto kembali ditemukan gambar satelit pesawat diduga mh370 \n", + "foto ditemukan gambar satelit pesawat diduga mh370 \n", "\n", "\n", "Bajan posibilidades de encontrar cajas negras del vuelo MH370 http://t.co/uzi8GH7x1d #acn http://t.co/O66iTL4HVY\n", @@ -63623,7 +57163,7 @@ "MH370 Pilots able to land a 777 in forest without damages. VTOL capabilities ? --> Huge doubts abt ChinaTimes pict. http://t.co/A5VbBUPVlG\n", "\n", "--------------------------------------------------------\n", - "mh370 pilots able land 777 forest without damages vtol capabilities huge doubts abt chinatimes pict \n", + "mh370 pilots able land a77 forest without damages vtol capabilities huge doubtschinatimes pict \n", "\n", "\n", "These Parts Belong to the MH370? http://t.co/zjaol3Glcs #MH370 #MH370LIVE #Boeing777MalaysianAirlines http://t.co/6vo2DCedRw\n", @@ -63647,19 +57187,19 @@ "Terkini, Israel sudah kecut dengan MH370 - rare News http://t.co/QsG4fP0MTz\n", "\n", "--------------------------------------------------------\n", - "terkini israel sudah kecut dengan mh370 rare news \n", + "terkini israel kecut mh370 rare news \n", "\n", "\n", "“@marioman3138: @BreeOlson What do you think happened to MH370?” < My OPINION: http://t.co/6TPasqRwdP\n", "\n", "--------------------------------------------------------\n", - "less opinion \n", + "opinion \n", "\n", "\n", "Harap ini yg berlaku bila MH370 ditemui\\n\\n#PrayForMH370 http://t.co/aogi3oVDHF\n", "\n", "--------------------------------------------------------\n", - "harap ini yg berlaku bila mh370 ditemui prayformh370 \n", + "harap yg berlaku mh370 ditemui prayformh370 \n", "\n", "\n", "¿MH370? RT PLIS http://t.co/ZnVCY3vfMT\n", @@ -63671,7 +57211,7 @@ "26 países buscan el avión MH370 de Malaysia Airlines y... ¡@Courtney Love lo ha encontrado!\\nhttp://t.co/bVmKOvw2uf http://t.co/IflIi6PCae\n", "\n", "--------------------------------------------------------\n", - "26 países buscan avión mh370 malaysia airlines love encontrado \n", + "6 países buscan avión mh370 malaysia airlines love loencontrado \n", "\n", "\n", "#UltimaHora: Difunden la imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 @Nicaragua905 http://t.co/uvuOia0IZw\n", @@ -63713,13 +57253,7 @@ "Difunden la imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 http://t.co/ODpOcoqjnL via RT http://t.co/YEwW8NXRZ5\n", "\n", "--------------------------------------------------------\n", - "difunden imagen avión sobrevolando selva malasia podría ser mh370 via \n", - "\n", - "\n", - "Encuentran imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 http://t.co/m0K1ymiYyR http://t.co/edUc9astJX”\n", - "\n", - "--------------------------------------------------------\n", - "encuentran imagen avión sobrevolando selva malasia podría ser mh370 \n", + "difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", "\n", "\n", "#Inter: Difunden la imagen de un avión sobrevolando la selva de #Malasia que podría ser el MH370 http://t.co/c12EKcm1mn\n", @@ -63728,28 +57262,10 @@ "inter difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", "\n", "\n", - "imagen de un #avión sobrevolando la selva de #Malasia que podría ser el MH370 http://t.co/uRamfugszn http://t.co/bKtKxqZuQU\" @palizdaniel\n", - "\n", - "--------------------------------------------------------\n", - "imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", - "Encuentran imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 http://t.co/QfDWSpV8WF http://t.co/iCASjGjT6Q\n", - "\n", - "--------------------------------------------------------\n", - "encuentran imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", "#TituMundo: Difunden imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370. Cortesía: RT. http://t.co/0EtN4nZDtl\n", "\n", "--------------------------------------------------------\n", - "titumundo difunden imagen avión sobrevolando selva malasia podría ser mh370 cortesía rt \n", - "\n", - "\n", - "Encuentran imagen de un #avión sobrevolando la selva de #Malasia que podría ser el MH370 http://t.co/I1ZMMsw2IZ http://t.co/eE4MLjjglq\n", - "\n", - "--------------------------------------------------------\n", - "encuentran imagen avión sobrevolando selva malasia podría ser mh370 \n", + "titumundo difunden imagen avión sobrevolando selva malasia podría ser mh370 cortesía \n", "\n", "\n", "Encuentran imagen de un #avión que podría ser el MH370 http://t.co/LaE15O0C7B http://t.co/IgUWwXFzBh\n", @@ -63758,12 +57274,6 @@ "encuentran imagen avión podría ser mh370 \n", "\n", "\n", - "Difunden imagen de un #avión sobrevolando la selva de #Malasia que podría ser el MH370 http://t.co/I1ZMMsw2IZ http://t.co/eE4MLjjglq\n", - "\n", - "--------------------------------------------------------\n", - "difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", "Difunden imagen avión sobrevolando selva de #Malasia q podría ser el MH370. vía @ActualidadRT \\nhttp://t.co/MEB7ee7WHE http://t.co/qEokjdxViL\n", "\n", "--------------------------------------------------------\n", @@ -63776,22 +57286,10 @@ "difunden imagen avión sobrevolando selva malasia podría ser mh370 tropa \n", "\n", "\n", - "Difunden la imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 http://t.co/uH3nfe6xaz\n", - "\n", - "--------------------------------------------------------\n", - "difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", - "“Difunden imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370\"\\nhttp://t.co/5TeUvrPzve \\nhttp://t.co/wGhbuM0pxp\\n/Será?\n", - "\n", - "--------------------------------------------------------\n", - "difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", "654342 不知道是什么飞机 RT @sunshaoan: Missing Airplane: Malaysia Airlines MH370 http://t.co/43UzQ9n5b2 http://t.co/mz8gJLuM67\n", "\n", "--------------------------------------------------------\n", - "654342 不知道是什么飞机 \n", + "不知道是什么飞机 \n", "\n", "\n", "Missing Airplane: Malaysia Airlines MH370 http://t.co/ESwVHhMdjE http://t.co/JwiljehySn\n", @@ -63869,7 +57367,7 @@ "11°34'36.2\"N 92°40'49.5\"E RT @sunshaoan: Missing Airplane: Malaysia Airlines MH370 http://t.co/43UzQ9n5b2 http://t.co/mz8gJLuM67\n", "\n", "--------------------------------------------------------\n", - "11 34 36 2 n 92 40 49 5 \n", + "6 n209 \n", "\n", "\n", "Door and tail fragment of Malaysia flight MH370 possibly found: Vietnam: http://t.co/iz9m7o7UyF http://t.co/7ADAQa2b77\n", @@ -63917,25 +57415,25 @@ "Pintu Pesawat Malaysia Airlines MH370 Ditemukan? Ternyata diduga ada 2 orang penumpang ilegal.\\nhttp://t.co/u71izy5oay http://t.co/UK7xaGdjIZ\n", "\n", "--------------------------------------------------------\n", - "pintu pesawat malaysia airlines mh370 ditemukan ternyata diduga ada 2 orang penumpang ilegal \n", + "pintu pesawat malaysia airlines mh370 ditemukan diduga orang penumpang ilegal \n", "\n", "\n", "Beredar link hoax di Facebook, Video of Malaysia MH370 Plane found in Bermuda Triangle, Passengers Alive! http://t.co/VuVT8vzmKP\n", "\n", "--------------------------------------------------------\n", - "beredar link hoax di facebook video malaysia mh370 plane found bermuda triangle passengers alive \n", + "beredar link hoax facebook video malaysia mh370 plane found bermuda triangle passengers alive \n", "\n", "\n", "@indoflyer puing yg ditemukan di laut diyakini merupakan bagian dari Malaysia Airlines MH370 http://t.co/E9TimHeZOj http://t.co/v9StMKt70x\n", "\n", "--------------------------------------------------------\n", - "puing yg ditemukan di laut diyakini merupakan bagian dari malaysia airlines mh370 \n", + "puing yg ditemukan laut diyakini malaysia airlines mh370 \n", "\n", "\n", "Malaysia Airlines ad a few years ago! Ironic The irony of this commercial of 2 yrs back......... Where MH370 is! http://t.co/FyHU7e2eqn\n", "\n", "--------------------------------------------------------\n", - "malaysia airlines ad years ago ironic irony commercial 2 yrs back mh370 \n", + "malaysia airlines ad years ago ironic irony commercial yrs back mh370 \n", "\n", "\n", "https://t.co/XXh56SQFB0\\nMalaysia MH370 Plane Found In Bermuda Triangle passengers are alive http://t.co/qHLI0qRybx\n", @@ -63983,7 +57481,7 @@ "Nous on sait tout. La vérité globale sur le vol MH370 de Malaysia Airlines par @KoliaDelesalle http://t.co/GGwSMNAwWV http://t.co/KI3Cy9bJ8R\n", "\n", "--------------------------------------------------------\n", - "nous sait tout vérité globale sur vol mh370 malaysia airlines par \n", + "sait tout vérité globale vol mh370 malaysia airlines \n", "\n", "\n", "A picture taken by a Vietnamese search team shows that may be debris from the Malaysia Airlines plane MH370 http://t.co/avpDoN2RDw\n", @@ -64019,19 +57517,7 @@ "@ballardian Courtney Love thinks she may have found missing Malaysian plane http://t.co/0ozCcaeWhm haha http://t.co/plPbIO0SXd\n", "\n", "--------------------------------------------------------\n", - "courtney love thinks may found missing malaysian plane haha \n", - "\n", - "\n", - "@MetroUK: Courtney Love thinks she’s found the missing Malaysian plane http://t.co/D94cK6Rqbd http://t.co/6W9yszBl9q\n", - "\n", - "--------------------------------------------------------\n", - "courtney love thinks found missing malaysian plane \n", - "\n", - "\n", - "Courtney Love thinks she may have found MH370 http://t.co/5BokPkaGbC\n", - "\n", - "--------------------------------------------------------\n", - "courtney love thinks may found mh370 \n", + "courtney love thinks may found missing malaysian plane \n", "\n", "\n", "Courtney Love: I may have found missing Malaysian plane http://t.co/vvGTgQIeV0 #Tech http://t.co/tcNcwd7q30\n", @@ -64040,12 +57526,6 @@ "courtney love may found missing malaysian plane tech \n", "\n", "\n", - "“@POLICEINFLA: IS IT POSSIBLE ROCKER COURTNEY LOVE HAS FOUND MISSING MALAYSIAN PLANE? WHAT DO YOU SEE? http://t.co/IdwYll8kEu”\n", - "\n", - "--------------------------------------------------------\n", - "possible rocker cou \n", - "\n", - "\n", "IS IT POSSIBLE ROCKER COURTNEY LOVE HAS FOUND MISSING MALAYSIAN PLANE? WHAT DO YOU SEE? http://t.co/6pKmmfkoj6\n", "\n", "--------------------------------------------------------\n", @@ -64090,13 +57570,7 @@ "\n", "'I'm no expert but': Courtney Love thought she found MH370 (but didn't) via @YahooNewsDigest http://t.co/7QFAbZWXEg\n", "\n", - "--------------------------------------------------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "--------------------------------------------------------\n", "expert courtney love thought found mh370 \n", "\n", "\n", @@ -64127,7 +57601,7 @@ "#PrayForMH370 ini gambar TIPU !pray for MH370 semoga #MH370 semua dalam keadaan baik dan selamat #SEBARKAN http://t.co/fqQyzoQeeD\n", "\n", "--------------------------------------------------------\n", - "prayformh370 ini gambar tipu pray mh370 semoga mh370 semua dalam keadaan baik selamat sebarkan \n", + "prayformh370 gambar tipu pray mh370 semoga mh370 selamat sebarkan \n", "\n", "\n", "Is this true? Pray for MH370. 😣 http://t.co/9IctG38grV\n", @@ -64145,25 +57619,19 @@ "PRAY for MH370\\nKami mendoakan agar semua penumpang MH370 terselamat seperti didalam gambar ini. amenn http://t.co/5OZfvArYlZ\n", "\n", "--------------------------------------------------------\n", - "pray mh370 kami mendoakan agar semua penumpang mh370 terselamat seperti didalam gambar ini amenn \n", + "pray mh370 mendoakan penumpang mh370 terselamat didalam gambar amenn \n", "\n", "\n", "Berdoa Supaya Terjadi Macam Ni. AMIN . Pray For MH370 :') http://t.co/JOspwpdMUL\n", "\n", "--------------------------------------------------------\n", - "berdoa supaya terjadi macam amin pray mh370 \n", - "\n", - "\n", - "“@evanchong17: If this happened, it really is a good day today. #PrayForMH370 http://t.co/vyGVpK8GOB”\\nPray for MH370\n", - "\n", - "--------------------------------------------------------\n", - "pray mh370 \n", + "berdoa amin pray mh370 \n", "\n", "\n", "http://t.co/QxWFzZgEap dicen q este es el MH370, pero no veo huella alguna de aterrizaje. Yq yo sepa el 777 no es VTOL\n", "\n", "--------------------------------------------------------\n", - "dicen q mh370 veo huella alguna aterrizaje yq sepa 777 vtol \n", + "dicen q mh370 veo huella alguna aterrizaje yqsepa el77 vtol \n", "\n", "\n", "InsyaAllah Allah SWT will save all crews & passengers Malaysia Airlines MH370\\nI hope this is happening #PrayForMH370 http://t.co/d826pln35B\n", @@ -64175,31 +57643,19 @@ "รูปที่มั่วกันในเน็ตรูปนี้ จริงๆเป็นเที่ยวบิน US1549 ตกในแม่น้ำฮัตสันปี 2009 นะจ้ะ ไม่ใช่ MH370 \\n\\nhttp://t.co/DAsOxXIxCD via @Dixie_Yankee\n", "\n", "--------------------------------------------------------\n", - "ร ปท ม วก นในเน ตร ปน จร งๆเป นเท ยวบ น us1549 ตกในแม น ำฮ ตส นป 2009 นะจ ะ ไม ใช mh370 \n", - "\n", - "\n", - "@lBreakingNews: Malaysian Airlines ‘MH350’ has been found in bay.\\nhttp://t.co/cpqRdhe0n4 http://t.co/uv8ktKCNL3 the plane's red and white.\n", - "\n", - "--------------------------------------------------------\n", - "malaysian airlines mh350 found bay plane red white \n", - "\n", - "\n", - "@lBreakingNews: Malaysian Airlines ‘MH350’ has been found in bay.\\nhttp://t.co/9EVP6QrKtt http://t.co/t0KkfvcDld it is MH370 dude not 350!\n", - "\n", - "--------------------------------------------------------\n", - "malaysian airlines mh350 found bay mh370 dude 350 \n", + "ร ปท ม วก นในเน ตร ปน จร งๆเป นเท ยวบ น us1549 ตกในแม น ำฮ ตส นป9 นะจ ะ ไม ใช mh370 \n", "\n", "\n", "“@lBreakingNews: Malaysian Airlines ‘MH350’ has been found in bay.\\nhttp://t.co/PoDQjxfi9a http://t.co/vZnNfFgV4F” ur stupid its flight mh370\n", "\n", "--------------------------------------------------------\n", - "ur stupid flight mh370 \n", + "stupid flight mh370 \n", "\n", "\n", "“@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/m4GpOkDYsR http://t.co/uZcNVn0Tfe”toy plane in a pond FOH\n", "\n", "--------------------------------------------------------\n", - "toy plane pond foh \n", + "toy plane pond f \n", "\n", "\n", "“@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay. http://t.co/j46NCvLBts” this is a propeller plane in a shallow lake\n", @@ -64214,12 +57670,6 @@ "plane bigger \n", "\n", "\n", - "@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/LbGKt7Ibwo http://t.co/mqpkxrMCCy\\n\\nWRONG PLANE\n", - "\n", - "--------------------------------------------------------\n", - "breaking malaysian flight 370 found bay wrong plane \n", - "\n", - "\n", "“@OfflcialCNN: BREAKING: Malaysian Flight 370 has been found in bay. http://t.co/UgU36NrWiD http://t.co/PI3AMhju2f” that plane to small dude\n", "\n", "--------------------------------------------------------\n", @@ -64235,13 +57685,13 @@ "CNN: Malaysian Flight 370 has been found in bay. http://t.co/FmEicmz2DT http://t.co/mK1iMX0X4M\" Boarding plane thoughts @will_czeh\n", "\n", "--------------------------------------------------------\n", - "cnn malaysian flight 370 found bay boarding plane thoughts \n", + "cnn malaysian flight70 found bay boarding plane thoughts \n", "\n", "\n", "“@OfficiaI_CNN: Malaysian Airlines \"MH350\" has been found in bay. http://t.co/HaX2GxR3km http://t.co/Z63YaNppZv” it's MH370 not 350\n", "\n", "--------------------------------------------------------\n", - "mh370 350 \n", + "mh370 not50 \n", "\n", "\n", "“@OfficiaI_CNN: Malaysian Airlines \"MH350\" has been found in bay. http://t.co/ANDGSPfuvt http://t.co/jVLLwrQE9q” nice propeller plane losers\n", @@ -64265,7 +57715,7 @@ "“BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/DeIyqg8ttY http://t.co/FUzWeQKMRp” right but HOW DO YOU LOSE A PLANE\n", "\n", "--------------------------------------------------------\n", - "breaking malaysian flight 370 found bay right lose plane \n", + "breaking malaysian flight70 found bay right lose plane \n", "\n", "\n", "“@OFFICIALNEWSS: MALAYSIAN FLIGHT FLIGHT 370 HAS BEEN FOUND IN THE BAY http://t.co/A3iPwOwmML” HOW THE FUCK DO U LOSE A PLANE?!!!\n", @@ -64277,7 +57727,7 @@ "@OfficiaICNN Malaysian Flight 370 has been found \\nhttp://t.co/rMJ5Ntdv1n http://t.co/m6PrVNrlct the whole plane in tact @drew_bdoo #lost\n", "\n", "--------------------------------------------------------\n", - "malaysian flight 370 found whole plane tact lost \n", + "malaysian flight70 found whole plane tact lost \n", "\n", "\n", "“@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/zTIoTJgFcp http://t.co/RsAYFIdakw” lies😂that plane small af\n", @@ -64313,13 +57763,7 @@ "BREAKING : MALAYSIAN FLIGHT 370 HAS BEEN FOUND IN THE BAY http://t.co/1wSAaQNymz http://t.co/nx4nAK8CNj definately a SMALL plane here guys\n", "\n", "--------------------------------------------------------\n", - "breaking malaysian flight 370 found bay definately small plane guys \n", - "\n", - "\n", - "@OfficiaI_CNN: Malaysian Airlines MH350\" has been found in bay http://t.co/7ZqFLtKH2P http://t.co/oLllExAM0R\" MH370 to MH350 WELL DONE CNN\n", - "\n", - "--------------------------------------------------------\n", - "malaysian airlines mh350 found bay mh370 mh350 well done cnn \n", + "breaking malaysian flight70 found bay definately small plane guys \n", "\n", "\n", "Thats not the plane “@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/MgxC9uHSSE http://t.co/khklODYhMw”\n", @@ -64328,12 +57772,6 @@ "thats plane \n", "\n", "\n", - "@OfficiaI_CNN: Malaysian Airlines MH350\" has been found in bay. http://t.co/E3AZALfFHY http://t.co/WRBZsjlnCy\" it was MH370 not 350. C'mon\n", - "\n", - "--------------------------------------------------------\n", - "malaysian airlines mh350 found bay mh370 350 c mon \n", - "\n", - "\n", "This plane looks small RT @OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/POSVWSft5Y http://t.co/azykKLQ4Zr\n", "\n", "--------------------------------------------------------\n", @@ -64349,7 +57787,7 @@ "“@OfflcialCNN: BREAKING: Malaysian Flight 370 has been found in bay. http://t.co/2uMrKAS7go http://t.co/dobi2ITkhC” no plane rides 4 me\n", "\n", "--------------------------------------------------------\n", - "plane rides 4 \n", + "plane rides \n", "\n", "\n", "No, It's Amelia Earhart's plane RT @OFFICIALNEWSS: BREAKING : MALAYSIAN FLIGHT FLIGHT 370 HAS BEEN FOUND \\nhttp://t.co/UYfmQ78PMl\n", @@ -64379,7 +57817,7 @@ "Oh they found the missing Malaysian plane... #GreatestCraigsListAdEver http://t.co/3QTsDV36M3\n", "\n", "--------------------------------------------------------\n", - "oh found missing malaysian plane greatestcraigslistadever \n", + "found missing malaysian plane greatestcraigslistadever \n", "\n", "\n", "Found the missing Malaysian plane! http://t.co/8ZNLpiHu6f\n", @@ -64394,12 +57832,6 @@ "facebook malware malaysian mh370 plane found bermuda triangle \n", "\n", "\n", - "#Courtney Love: I may have found missing Malaysian plane http://t.co/1JqocKcFdX\n", - "\n", - "--------------------------------------------------------\n", - "courtney love may found missing malaysian plane \n", - "\n", - "\n", "Malaysian plane finally found! http://t.co/CaQzxVZVp5\n", "\n", "--------------------------------------------------------\n", @@ -64418,12 +57850,6 @@ "malaysian plane found crashed ocean \n", "\n", "\n", - "I found that missing Malaysian plane... http://t.co/etx4uLd1ve\n", - "\n", - "--------------------------------------------------------\n", - "found missing malaysian plane \n", - "\n", - "\n", "[SHARE] #BEWARE of new #Facebook #malware Claims, #MalaysiaAirlines Plane MH370 Has Been #Spotted' http://t.co/LXOATF8I4M\n", "\n", "--------------------------------------------------------\n", @@ -64439,37 +57865,25 @@ "Vietnam authorities have discovered what may look like the door of MH370 near the oil slick site @ 10 March 0620 hrs http://t.co/Zqfz1NUxV8\n", "\n", "--------------------------------------------------------\n", - "vietnam authorities discovered may look like mh370 near oil slick site 10 march 0620 hrs \n", + "vietnam authorities discovered may look like mh370 near oil slick site 0 march620 hrs \n", "\n", "\n", "dah jumpa MH370 di daratan :)) http://t.co/Ll6LlETVex\n", "\n", "--------------------------------------------------------\n", - "dah jumpa mh370 di daratan \n", + "dah jumpa mh370 daratan \n", "\n", "\n", "MH370 dah di jumpai!! -.- defarkkk http://t.co/aAyKXaDyDl\n", "\n", "--------------------------------------------------------\n", - "mh370 dah di jumpai defarkkk \n", + "mh370 dah jumpai defarkkk \n", "\n", "\n", "Haaaa ! ni die dah jumpe mh370 . Mendarat di melaka . http://t.co/OSCjOftlgz\n", "\n", "--------------------------------------------------------\n", - "haaaa dah jumpe mh370 mendarat di melaka \n", - "\n", - "\n", - "@twentyninezx: yay MH370 found http://t.co/oIUEqh32gl LOLOLOL \n", - "\n", - "--------------------------------------------------------\n", - "yay mh370 found lololol \n", - "\n", - "\n", - "@YeuGin: MH370 is found ! http://t.co/jhtlo4wIbX\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", + "haaaa dah jumpe mh370 mendarat melaka \n", "\n", "\n", "@MoonEmojii i knew it was you!! 🌚✈️🌚✈️🌚 “@SammmmTASTiC: MH370 FOUND ON THE MOON! HAHA http://t.co/aWIEscSzUw”\n", @@ -64487,25 +57901,19 @@ "MH370 FOUND ON THE MOON! HAHA http://t.co/ZmQ62wFvII\n", "\n", "--------------------------------------------------------\n", - "mh370 found moon haha \n", + "mh370 found moon \n", "\n", "\n", "Breaking News 9.10PM!!!! MH370 found http://t.co/JRDGjfI51m\n", "\n", "--------------------------------------------------------\n", - "breaking news 9 10pm mh370 found \n", - "\n", - "\n", - "MH370 is found ! http://t.co/9KkR9s3Fyq\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", + "breaking news0pm mh370 found \n", "\n", "\n", "“@Namaakuzairi: MH730 FOUND! Amin http://t.co/2J3xbSnnvV” MH370 bukan 'MH730' 😒\n", "\n", "--------------------------------------------------------\n", - "mh370 bukan mh730 \n", + "mh370 mh730 \n", "\n", "\n", "@Andrxna actually found already. MH370 😂 http://t.co/lRXzHDiH6s\n", @@ -64514,12 +57922,6 @@ "actually found already mh370 \n", "\n", "\n", - "MH370 found http://t.co/gsqG3RTwrW\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", "hey guys ,, i found MH370 http://t.co/wusv02eO9Q\n", "\n", "--------------------------------------------------------\n", @@ -64544,64 +57946,10 @@ "found mh370 alrd \n", "\n", "\n", - "Mh370 found :O http://t.co/nzvWUOovJQ\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", - "I HAVE FOUND MH370!!!!! http://t.co/tL2hz8yehe\n", - "\n", - "--------------------------------------------------------\n", - "found mh370 \n", - "\n", - "\n", - "MH370 found ! http://t.co/l77rngwOk3\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", - "OMG MH370 found ! @JunXianRichard @Jason_KuoChean http://t.co/zbMqU9QAWv\n", - "\n", - "--------------------------------------------------------\n", - "omg mh370 found \n", - "\n", - "\n", - "@dzulnazrin11: i found MH370 !! but yes, i know its not funny. sorry :'( http://t.co/Kw4ztQDZXm\n", - "\n", - "--------------------------------------------------------\n", - "found mh370 yes know funny sorry \n", - "\n", - "\n", "OMG MH370 WAS FOUND TODAY http://t.co/8FMRSb7YE4\n", "\n", "--------------------------------------------------------\n", - "omg mh370 found today \n", - "\n", - "\n", - "They found the MH370!! http://t.co/ID7xUKiOpt\n", - "\n", - "--------------------------------------------------------\n", - "found mh370 \n", - "\n", - "\n", - "MH370 found !!! http://t.co/0TBvXWlgAD\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", - "I found MH370 . http://t.co/a6GVTuPfxQ\n", - "\n", - "--------------------------------------------------------\n", - "found mh370 \n", - "\n", - "\n", - "MH370 found! http://t.co/LsnAet72jA\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", + "mh370 found today \n", "\n", "\n", "yay MH370 found http://t.co/VgYDlZhGbw\n", @@ -64613,7 +57961,7 @@ "HAHAHHA RT @YeuGin: MH370 is found ! http://t.co/FWTQjoSubl\n", "\n", "--------------------------------------------------------\n", - "hahahha \n", + "hahah \n", "\n", "\n", "i found MH370 !! but yes, i know its not funny. sorry :'( http://t.co/6BUD7dAc2l\n", @@ -64646,34 +57994,16 @@ "malaysian flight mh370 consider solved cracked case \n", "\n", "\n", - "“@WTFGIFsPics: British Tabloids at their finest.. http://t.co/SHkPpyoz6r” is that mh370 um\n", - "\n", - "--------------------------------------------------------\n", - "mh370 um \n", - "\n", - "\n", "ambik tohh jupe orh MH370 .. kawasan xtauu / haha . http://t.co/8Ui9Gh5QKl\n", "\n", "--------------------------------------------------------\n", - "ambik tohh jupe orh mh370 kawasan xtauu haha \n", - "\n", - "\n", - "@politaiko: Ini berita paling RARE sepanjang misteri kehilangan MH370\" - http://t.co/1Hhnstfw3v\"\n", - "\n", - "--------------------------------------------------------\n", - "ini berita paling rare sepanjang misteri kehilangan mh370 \n", + "ambik jupe orh mh370 kawasan xtauu \n", "\n", "\n", "Alhamdulilah! MH370 sudah ditemui. Tapi... http://t.co/C3R5pkUNTT\n", "\n", "--------------------------------------------------------\n", - "alhamdulilah mh370 sudah ditemui tapi \n", - "\n", - "\n", - "MH370 😂 🚙 but not ✈ http://t.co/3ph4yCp7mV\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", + "alhamdulilah mh370 ditemui \n", "\n", "\n", "终于找到 MH370 http://t.co/JehxmbeP3Y\n", @@ -64682,46 +58012,28 @@ "终于找到 mh370 \n", "\n", "\n", - "MH370~ http://t.co/9Z36mRZPiX\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", - "\n", - "\n", - "Mh370 http://t.co/i7M3aIVdFP\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", - "\n", - "\n", "Jpe dh mH370 http://t.co/bDAnpiF1bs\n", "\n", "--------------------------------------------------------\n", "jpe dh mh370 \n", "\n", "\n", - "@politaiko: TERKINI, MH370 dijumpai di bulan\" - rare news http://t.co/0Cce3As1x9\"\n", - "\n", - "--------------------------------------------------------\n", - "terkini mh370 dijumpai di bulan rare news \n", - "\n", - "\n", "Berita tergempar! Pesawat MH370 sudah dijumpa! Lihat di sini! 😱😱😱 http://t.co/gUbrNBUNIT\n", "\n", "--------------------------------------------------------\n", - "berita tergempar pesawat mh370 sudah dijumpa lihat di sini \n", + "berita tergempar pesawat mh370 dijumpa lihat \n", "\n", "\n", "Ahaha khidir2“@KhidhirHunks: Berita tergempar! Pesawat MH370 sudah dijumpa! Lihat di sini! 😱😱😱 http://t.co/S84duAnyk2”\n", "\n", "--------------------------------------------------------\n", - "ahaha khidir2 \n", + "akhidir2 \n", "\n", "\n", "Akhirnya MH370 ketemuuu... :v http://t.co/xGfdrbC2wu\n", "\n", "--------------------------------------------------------\n", - "akhirnya mh370 ketemuuu v \n", + "mh370 ketemuuu v \n", "\n", "\n", "Not soo good at hiding after all eh MH370? http://t.co/WlbJYgIZlI\n", @@ -64739,49 +58051,43 @@ "MH370 sudah dijumpa http://t.co/6eNmZQeIU0\n", "\n", "--------------------------------------------------------\n", - "mh370 sudah dijumpa \n", + "mh370 dijumpa \n", "\n", "\n", "ne dah jmpa dah MH370 hahaha http://t.co/iLcQMaSR7W\n", "\n", "--------------------------------------------------------\n", - "ne dah jmpa dah mh370 hahaha \n", + "dah jmpa dah mh370 \n", "\n", "\n", "Mh370 dah dijumpai ? Yea mmg dah jumpa pun http://t.co/NSAH7KJl1e\n", "\n", "--------------------------------------------------------\n", - "mh370 dah dijumpai yea mmg dah jumpa pun \n", + "mh370 dah dijumpai yea mmg dah jumpa \n", "\n", "\n", "KARUT ! MH370 dijumpai di melaka . Annoying gilaaaaaa http://t.co/f8YQYdG1OV\n", "\n", "--------------------------------------------------------\n", - "karut mh370 dijumpai di melaka annoying gilaaaaaa \n", + "karut mh370 dijumpai melaka annoying gilaaaaaa \n", "\n", "\n", "Pak Teh buat lawak cakap MH370 dah jumpa -.- Bagi gambar ni -.- http://t.co/swaDTuaV4v\n", "\n", "--------------------------------------------------------\n", - "pak teh buat lawak cakap mh370 dah jumpa bagi gambar \n", + "teh lawak cakap mh370 dah jumpa gambar \n", "\n", "\n", "Macam2 lah..kereta pown ad MH370 http://t.co/6AqOrUlRVk\n", "\n", "--------------------------------------------------------\n", - "macam2 lah kereta pown ad mh370 \n", + "macam2 kereta pown ad mh370 \n", "\n", "\n", "Berita tergempar....\\nMH370 telah dijumpai....\\n/::D/::P/::) http://t.co/rZOmZUa9JA\n", "\n", "--------------------------------------------------------\n", - "berita tergempar mh370 telah dijumpai p \n", - "\n", - "\n", - "“@SportHumour: Those Liverpool fans! http://t.co/k9sUNJLmRx” MH370!\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", + "berita tergempar mh370 dijumpai p \n", "\n", "\n", "MH370 tlh dijumpai tersekat dlm jem\\nSent by WhatsApp http://t.co/oQV5SjOXkY\n", @@ -64817,7 +58123,7 @@ "MH370 telah dijumpai Say my friend :3 Bende sekarang tak lawak pun okay? Haishhh -,-\" http://t.co/mBtvMNb751\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai say friend 3 bende sekarang tak lawak pun okay haishhh \n", + "mh370 dijumpai say friend bende lawak okay haishhh \n", "\n", "\n", "Wahhhh finally located RT @Ramitha13: guys MH370 spotted already y'all can chill now http://t.co/kapQrZLiFG\n", @@ -64829,19 +58135,13 @@ "Aku dah jumpe dah MH370 kat melaka xD http://t.co/5AR1v4bBtB\n", "\n", "--------------------------------------------------------\n", - "aku dah jumpe dah mh370 kat melaka xd \n", - "\n", - "\n", - "@Shiyeu: 终于找到 MH370 http://t.co/9QTWFp7f8oFinally,MH370\n", - "\n", - "--------------------------------------------------------\n", - "终于找到 mh370 mh370 \n", + "dah jumpe dah mh370 kat melaka xd \n", "\n", "\n", "bila kes MH370 dijadikan sebagai bahan ejekan http://t.co/mTuTIa1IX8\n", "\n", "--------------------------------------------------------\n", - "bila kes mh370 dijadikan sebagai bahan ejekan \n", + "kes mh370 dijadikan bahan ejekan \n", "\n", "\n", "Could this be MH370? http://t.co/Fc01NEujND\n", @@ -64850,18 +58150,6 @@ "could mh370 \n", "\n", "\n", - "Via @jeromegodefroy: l'humour du Sunday Sport sur la disparition du vol MH370 (les chinois apprécieront) https://t.co/K2cXf5x2KX\n", - "\n", - "--------------------------------------------------------\n", - "via l humour sunday sport sur disparition vol mh370 chinois apprécieront \n", - "\n", - "\n", - "@SYAFIQBAKHARI: MH370 telah dijumpai berkeliaran 😳 http://t.co/xQy6KBKu39 bangang lak ai -.-\n", - "\n", - "--------------------------------------------------------\n", - "mh370 telah dijumpai berkeliaran bangang lak ai \n", - "\n", - "\n", "Nakita na gli ang MH370 kag. Ay salamat! http://t.co/PTwrWdNi4w\n", "\n", "--------------------------------------------------------\n", @@ -64877,7 +58165,7 @@ "<Image> MH370 speculation at ridiculous level, stop looking at the image on top right corner. #ENewsNation #MH370 http://t.co/KlupeZK9xJ\n", "\n", "--------------------------------------------------------\n", - "less image greater mh370 speculation ridiculous level stop looking image top right corner enewsnation mh370 \n", + "image mh370 speculation ridiculous level stop looking image top right corner enewsnation mh370 \n", "\n", "\n", "Ni haa mh370 http://t.co/HGzS5Fp2vh\n", @@ -64889,37 +58177,31 @@ "Mh370 telah dijumpai di belakang rumah mak jemah.hahaha http://t.co/lotFVuibZJ\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai di belakang rumah mak jemah hahaha \n", + "mh370 dijumpai rumah mak jemah \n", "\n", "\n", "Dah jumpa dah mh370 tapi bukan kapal terbang , kereta , hmm still praying for mh370 . We all still waiting for you . http://t.co/JnUHExrrhW\n", "\n", "--------------------------------------------------------\n", - "dah jumpa dah mh370 tapi bukan kapal terbang kereta hmm still praying mh370 still waiting \n", + "dah jumpa dah mh370 kapal terbang kereta hmm still praying mh370 still waiting \n", "\n", "\n", "MH370 pantas susah ditemukan http://t.co/FKqbZFQhxM\n", "\n", "--------------------------------------------------------\n", - "mh370 pantas susah ditemukan \n", - "\n", - "\n", - "@Ryosei0712: MH370 .. 我找到你了.. http://t.co/OtfVJM6WBC\n", - "\n", - "--------------------------------------------------------\n", - "mh370 我找到你了 \n", + "mh370 susah ditemukan \n", "\n", "\n", "Kesian Pihak yang mencari MH370. ni wei! Jmpa dh MH370. http://t.co/2G8ZSDIqo7\n", "\n", "--------------------------------------------------------\n", - "kesian pihak yang mencari mh370 wei jmpa dh mh370 \n", + "kesian mencari mh370 wei jmpa dh mh370 \n", "\n", "\n", "Kereta MH370 tlahh dijumpaii! Giloss + mengonggg!org carikk pesawat dia jumpe kereta pulakk... http://t.co/UcA9xYlBAP\"\n", "\n", "--------------------------------------------------------\n", - "kereta mh370 tlahh dijumpaii giloss mengonggg org carikk pesawat dia jumpe kereta pulakk \n", + "kereta mh370 tlahh dijumpaii giloss mengonggg org carikk pesawat jumpe kereta pulakk \n", "\n", "\n", "Tiada kaitan dgn mh370 http://t.co/rqz8U88RzN\n", @@ -64931,7 +58213,7 @@ "Mh370 telah dijumpai . Alhamdulilah hee sorryyy , http://t.co/rY6Dsr7xQB\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai alhamdulilah hee sorryyy \n", + "mh370 dijumpai alhamdulilah hee sorryyy \n", "\n", "\n", "MH370 .. 我找到你了.. http://t.co/OttWNrNciL\n", @@ -64940,12 +58222,6 @@ "mh370 我找到你了 \n", "\n", "\n", - "MH370 :3 http://t.co/w3wexcmmwH\n", - "\n", - "--------------------------------------------------------\n", - "mh370 3 \n", - "\n", - "\n", "MH370 dijumpai... http://t.co/ylyaqi0vyl\n", "\n", "--------------------------------------------------------\n", @@ -64955,7 +58231,7 @@ "Alhamdulillah MH370 telah dijumpai. Shuuttt3, diam3.. Nanti jadi spikulasi :3 http://t.co/sP1EF9U70m\n", "\n", "--------------------------------------------------------\n", - "alhamdulillah mh370 telah dijumpai shuuttt3 diam3 nanti jadi spikulasi 3 \n", + "alhamdulillah mh370 dijumpai shuuttt3 diam3 spikulasi \n", "\n", "\n", "Dah jumpa MH370!!! http://t.co/fbcrs3jIdM\n", @@ -64967,7 +58243,7 @@ "Setelah pencarian melelahkan, akhirnya MH370 ketemu juga... http://t.co/om9XEqczTK\n", "\n", "--------------------------------------------------------\n", - "setelah pencarian melelahkan akhirnya mh370 ketemu juga \n", + "pencarian melelahkan mh370 ketemu \n", "\n", "\n", "Finally MH370 berjaya dikesan. http://t.co/XJ69aTuKYS\n", @@ -64979,7 +58255,7 @@ "MH370 takde mengena dengan benda ni -,- jangan jadi bodoh . http://t.co/FB1uOpud6W\n", "\n", "--------------------------------------------------------\n", - "mh370 takde mengena dengan benda jangan jadi bodoh \n", + "mh370 takde mengena benda bod \n", "\n", "\n", "MH370 dijumpai selamat . #PrayForMH370 #MH370 http://t.co/j0OM50kH8U\n", @@ -64991,13 +58267,13 @@ "“SYAFIQBAKHARI: MH370 telah dijumpai berkeliaran 😳 http://t.co/XDSu3agK7b” bab1 terkejut\n", "\n", "--------------------------------------------------------\n", - "syafiqbakhari mh370 telah dijumpai berkeliaran bab1 terkejut \n", + "syafiqbakhari mh370 dijumpai berkeliaran bab1 terkejut \n", "\n", "\n", "MH370 telah dijumpai berkeliaran 😳 http://t.co/FGxMjlIWKU\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai berkeliaran \n", + "mh370 dijumpai berkeliaran \n", "\n", "\n", "MH370 dijumpai. Stupid joke again. http://t.co/Ma8yPQncfU\n", @@ -65015,7 +58291,7 @@ "MH370 telah selamat dijumpai http://t.co/JkdkDgyxrR\n", "\n", "--------------------------------------------------------\n", - "mh370 telah selamat dijumpai \n", + "mh370 selamat dijumpai \n", "\n", "\n", "刚才看到人家写MH370找到了 我拉下看 ......... 无言了 http://t.co/MQI62SwaMI\n", @@ -65024,12 +58300,6 @@ "刚才看到人家写mh370找到了 我拉下看 无言了 \n", "\n", "\n", - "MH370!!!! http://t.co/QYwbzx5GQy\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", - "\n", - "\n", "guys MH370 spotted already y'all can chill now http://t.co/qTWn3k2KDd\n", "\n", "--------------------------------------------------------\n", @@ -65057,13 +58327,13 @@ "Ini berita paling RARE sepanjang misteri kehilangan MH370 - http://t.co/7EaUidf1Tx\n", "\n", "--------------------------------------------------------\n", - "ini berita paling rare sepanjang misteri kehilangan mh370 \n", + "berita rare misteri kehilangan mh370 \n", "\n", "\n", "punchline dia! “@politaiko: \"Ini berita paling RARE sepanjang misteri kehilangan MH370\" - http://t.co/VpxDdRp3Y9”\n", "\n", "--------------------------------------------------------\n", - "punchline dia \n", + "punchline \n", "\n", "\n", "La buena prensa inglesa (British tabloids) \"at their finest...\" Allí ya saben dónde está el desaparecido vuelo MH370. http://t.co/6q46kBjTis\n", @@ -65084,40 +58354,22 @@ "told found mh370 started asking come whatsapped \n", "\n", "\n", - "MH370 FOUND OMFGGGGG http://t.co/3Kl9AHNio3\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found omfggggg \n", - "\n", - "\n", "TERKINI, MH370 dijumpai di bulan - rare news http://t.co/xH8XRb2QXg\n", "\n", "--------------------------------------------------------\n", - "terkini mh370 dijumpai di bulan rare news \n", + "terkini mh370 dijumpai rare news \n", "\n", "\n", "Je l'avais ratée, celle la. RT “@SammmmTASTiC: MH370 FOUND ON THE MOON! HAHA http://t.co/NRVpOx8lAa”\n", "\n", "--------------------------------------------------------\n", - "l avais ratée celle \n", - "\n", - "\n", - "@MohamadNaime: MH370 ditemui.... http://t.co/O9JfiaSaPK lawak agaknya -.-\n", - "\n", - "--------------------------------------------------------\n", - "mh370 ditemui lawak agaknya \n", + "ratée celle \n", "\n", "\n", "MH370 telah ditemui di Melaka @PahangkuTV @phgkutwtup http://t.co/nj0h75Jsk6\n", "\n", "--------------------------------------------------------\n", - "mh370 telah ditemui di melaka \n", - "\n", - "\n", - "@m0hdZulhelmi: Akhirnya. MH370 ditemui jua. http://t.co/uA77Hi3hhg ini agak.......ok bongo\n", - "\n", - "--------------------------------------------------------\n", - "akhirnya mh370 ditemui jua ini agak ok bongo \n", + "mh370 ditemui melaka \n", "\n", "\n", "MH370 ditemui.... http://t.co/Amd48Vdp8a\n", @@ -65129,43 +58381,31 @@ "Finally. MH370 tepat ditemui -,-\" http://t.co/yRHhA3ghAw\n", "\n", "--------------------------------------------------------\n", - "finally mh370 tepat ditemui \n", + "finally mh370 ditemui \n", "\n", "\n", "Alhamdullilah Akhirnye Pesawat MH370 Sudah Ditemui -_-\\n\\n*Hehehe >.< http://t.co/vswFO8AJIu\n", "\n", "--------------------------------------------------------\n", - "alhamdullilah akhirnye pesawat mh370 sudah ditemui hehehe greater less \n", + "alhamdullilah akhirnye pesawat mh370 ditemui hehehe \n", "\n", "\n", "Akhirnya.\\nMH370 ditemui jua. http://t.co/FJOmzI2ZsX\n", "\n", "--------------------------------------------------------\n", - "akhirnya mh370 ditemui jua \n", + "mh370 ditemui jua \n", "\n", "\n", "Tak lawak lah dik , fikir sikit perasaan orang yang susah hati . \"@m0hdZulhelmi: Akhirnya.\\nMH370 ditemui jua. http://t.co/PAD2sxiWpC\"\n", "\n", "--------------------------------------------------------\n", - "tak lawak lah dik fikir sikit perasaan orang yang susah hati \n", - "\n", - "\n", - "MH370 sudah ditemui http://t.co/yHUfkG9N6N\n", - "\n", - "--------------------------------------------------------\n", - "mh370 sudah ditemui \n", + "lawak dik fikir sikit perasaan orang susah hati \n", "\n", "\n", "Sakit hati bila heboh cakap MH370 dah jumpa then bila open je picutre ni keluar natang ni . Gurau lah selagi boleh . http://t.co/oMFbWYg7xp”\n", "\n", "--------------------------------------------------------\n", - "sakit hati bila heboh cakap mh370 dah jumpa bila open picutre keluar natang gurau lah selagi boleh \n", - "\n", - "\n", - "Sakit hati bila heboh cakap MH370 dah jumpa then bila open je picutre ni keluar natang ni . Gurau lah selagi boleh . http://t.co/2GhFLqVoEP\n", - "\n", - "--------------------------------------------------------\n", - "sakit hati bila heboh cakap mh370 dah jumpa bila open picutre keluar natang gurau lah selagi boleh \n", + "sakit hati cakap mh370 dah jumpa open picutre natang gurau selagi \n", "\n", "\n", "The Sunday Sport has found missing Malaysian Airlines flight MH370. Thank fuck for that http://t.co/ebkfvyj6Qc\n", @@ -65183,7 +58423,13 @@ "A Letter To Malaysia Airlines: the plane MH370 has been found in Earth. Sent by someone. http://t.co/eIYFhOy5Gu\n", "\n", "--------------------------------------------------------\n", - "letter malaysia airlines plane mh370 found earth sent someone \n", + "letter malaysia airlines plane mh370 found earth sent someone \n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "\n", "BHALA NAKAMO GUISE. BASTA, ARA NA! NAKITA NA ANG FLIGHT MH370 NGA MALAYSIAN AIRLINES! ✈️✈️ http://t.co/s2LUmvkTs9\n", @@ -65219,73 +58465,43 @@ "OMFG MH370 FOUND AHSJSBJSK http://t.co/9VVasKbMhW\n", "\n", "--------------------------------------------------------\n", - "omfg mh370 found ahsjsbjsk \n", - "\n", - "\n", - "@NicoleAyy: OMFG MH370 FOUND AHSJSBJSK http://t.co/e4LChLSZ0j why are ppl making jokes out of this ..\n", - "\n", - "--------------------------------------------------------\n", - "omfg mh370 found ahsjsbjsk ppl making jokes \n", - "\n", - "\n", - "Pray for MH370.. http://t.co/3iARD8lgWU\n", - "\n", - "--------------------------------------------------------\n", - "pray mh370 \n", + "mh370 found ahsjsbjsk \n", "\n", "\n", "Berita gempar ! Sebarkan ! MH370 telah dijumpai ! Terima kasih kepada raja bomoh ! Haha http://t.co/XzjCdJeOBs\n", "\n", "--------------------------------------------------------\n", - "berita gempar sebarkan mh370 telah dijumpai terima kasih kepada raja bomoh haha \n", - "\n", - "\n", - "MH370 sudah dijumpai :D http://t.co/mdBAnD6fmK\n", - "\n", - "--------------------------------------------------------\n", - "mh370 sudah dijumpai \n", - "\n", - "\n", - "MH370 sudah dijumpai . Haha http://t.co/L9W7i8JAd0\n", - "\n", - "--------------------------------------------------------\n", - "mh370 sudah dijumpai haha \n", + "berita gempar sebarkan mh370 dijumpai terima kasih raja bom \n", "\n", "\n", "MH370 telah dijumpai di Melaka.\" kurang asam http://t.co/LyMgHuv5Lf\"\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai di melaka kurang asam \n", - "\n", - "\n", - "@bobubastic_: MH370 telah dijumpai di Melaka.\" Pale buto http://t.co/bwwDvyAvce\"\n", - "\n", - "--------------------------------------------------------\n", - "mh370 telah dijumpai di melaka pale buto \n", + "mh370 dijumpai melaka asam \n", "\n", "\n", "MH370 telah dijumpai di Melaka. Pale buto http://t.co/P3bqAacERT\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai di melaka pale buto \n", + "mh370 dijumpai melaka pale buto \n", "\n", "\n", "Hahahhahahahhaha RT\"@PengetahuanAm: Berita Tergempar Yang Karut. MH370 telah dijumpai di MELAKA. SEBARKAN http://t.co/7Kq4fiYPnq\"\n", "\n", "--------------------------------------------------------\n", - "hahahhahahahhaha \n", + "hahahhahahahrt \n", "\n", "\n", "@Hafiz_berahim MH370 telah dijumpai di MELAKA. PERINGATAN. Berita ini boleh diabaikan. SEBARKAN #MH370 #PrayForMH370 http://t.co/DTIpNUnYq1\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai di melaka peringatan berita ini boleh diabaikan sebarkan mh370 prayformh370 \n", + "mh370 dijumpai melaka peringatan berita diabaikan sebarkan mh370 prayformh370 \n", "\n", "\n", "Berita Tergempar Yang Karut. MH370 telah dijumpai di MELAKA. PERINGATAN. Berita ini boleh diabaikan. SEBARKAN http://t.co/nbnRi9hLKZ\n", "\n", "--------------------------------------------------------\n", - "berita tergempar yang karut mh370 telah dijumpai di melaka peringatan berita ini boleh diabaikan sebarkan \n", + "berita tergempar karut mh370 dijumpai melaka peringatan berita diabaikan sebarkan \n", "\n", "\n", "Those idiots looking in the ocean for the malaysian plane, wasting time. We found it on the moon two days ago! http://t.co/yBjsGvB8dl\n", @@ -65303,19 +58519,13 @@ "I just trick @Carouselx_ that MH370 was found>< http://t.co/JDkDzkv2Og\n", "\n", "--------------------------------------------------------\n", - "trick mh370 found greater less \n", - "\n", - "\n", - "@AhmadHaziq96: Emm ni kalau aku post gamba MH370 kena bash tak agak2 ?? http://t.co/TGmHPwvm8Q you already did it haziq\n", - "\n", - "--------------------------------------------------------\n", - "emm kalau aku post gamba mh370 kena bash tak agak2 already haziq \n", + "trick mh370 found \n", "\n", "\n", "Emm ni kalau aku post gamba MH370 kena bash tak agak2 ?? http://t.co/ZJJUEXby7w\n", "\n", "--------------------------------------------------------\n", - "emm kalau aku post gamba mh370 kena bash tak agak2 \n", + "emm post gamba mh370 kena bash agak2 \n", "\n", "\n", "Guys they found the missing Malaysian plane!! #toosoon #crediblesource http://t.co/x6qPMMHfDq http://t.co/WFWrJ7X8Tl\n", @@ -65345,7 +58555,7 @@ "Malaysian plane found! #found #moon #wtf http://t.co/ISpZRdQpDj\n", "\n", "--------------------------------------------------------\n", - "malaysian plane found found moon wtf \n", + "malaysian plane found found moon \n", "\n", "\n", "Missing malaysian plane found on moon #mh370 @malikrizwann @Shahidmasooddr http://t.co/eLmdlgsmET\n", @@ -65354,22 +58564,10 @@ "missing malaysian plane found moon mh370 \n", "\n", "\n", - "They found the missing Malaysian plane!! http://t.co/YW7K4MuNki\n", - "\n", - "--------------------------------------------------------\n", - "found missing malaysian plane \n", - "\n", - "\n", - "wow not funny at all RT xxJusticeManxx: MH370 has been found. They are all safe :) http://t.co/1agrh8tnIL\n", - "\n", - "--------------------------------------------------------\n", - "wow funny \n", - "\n", - "\n", "haha...a comedy pic of MH370 has been found xD http://t.co/IV0aqhhvoZ\n", "\n", "--------------------------------------------------------\n", - "haha comedy pic mh370 found xd \n", + "comedy pic mh370 found xd \n", "\n", "\n", "MH370 have been found at last http://t.co/Zw2tlx721j\n", @@ -65384,18 +58582,6 @@ "friend msg said mh370 found \n", "\n", "\n", - "@AidanNatasya: MH370 HAS BEEN FOUND !!!!! http://t.co/zfmHyEbf81bodoo hahahaha\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found hahahaha \n", - "\n", - "\n", - "MH370 HAS BEEN FOUND !!!!! http://t.co/r30zGsog7D\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", "MH370 has been found. They are all safe :) http://t.co/5hUP4ccSTO\n", "\n", "--------------------------------------------------------\n", @@ -65408,28 +58594,16 @@ "mh370 finally found woot woot \n", "\n", "\n", - "@ZakiEzarik: MH370 found ..LOL http://t.co/MS9ayi3ie1\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found lol \n", - "\n", - "\n", - "MH370 found ..LOL http://t.co/9rsOdub8oF\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found lol \n", - "\n", - "\n", "They found flight MH370!!!!! Lol http://t.co/RfWmWdbv54\n", "\n", "--------------------------------------------------------\n", - "found flight mh370 lol \n", + "found flight mh370 \n", "\n", "\n", "Tak lawak pukimak cibai . \\n\\n“@SYAFIQBAKHARI: MH370 telah dijumpai berkeliaran 😳 http://t.co/cHdISvQwU3”\n", "\n", "--------------------------------------------------------\n", - "tak lawak pukimak cibai \n", + "lawak pukimak cibai \n", "\n", "\n", "MH370 selamat mendarat dilapangan Batu Berendam, Melaka. http://t.co/XO8GFM4MaT\n", @@ -65447,7 +58621,7 @@ "Utiliser son iPhone en étant bourré ? LIVR, UNE APP SEULEMENT POUR LES BOURRÉS http: \\/\\/t.co\\/MQawPOSiQc #application http: \\/\\/t.co\\/zjKJpKtJNj\n", "\n", "--------------------------------------------------------\n", - "utiliser iphone étant bourré livr une app seulement pour bourrés application \n", + "utiliser iphone bourré livr app seulement bourrés application \n", "\n", "\n", "Liver un facebook para cuando andas pedo http: \\/\\/t.co\\/1sivd33y1j http: \\/\\/t.co\\/cP63lVuAz8\n", @@ -65471,7 +58645,7 @@ "VIDEO: Livr, una app con detector de alcohol >> http: \\/\\/t.co\\/aTAETQdnZI http: \\/\\/t.co\\/In27XqumHq\n", "\n", "--------------------------------------------------------\n", - "video livr app detector alcohol greater greater \n", + "video livr app detector alcol \n", "\n", "\n", "¿Qué se acabó la fiesta? ¡Crean una red social para borrachitos! #Livr ¿A quién le regalarías esta App? http: \\/\\/t.co\\/BojivEViv2\n", @@ -65528,12 +58702,6 @@ "pig pigfish pigg \n", "\n", "\n", - "#pigfish was up http: \\/\\/t.co\\/xCCzla3lmc\n", - "\n", - "--------------------------------------------------------\n", - "pigfish \n", - "\n", - "\n", "@BobombDom *slaps TweetDeck with the PigFish http: \\/\\/t.co\\/pyHcJn0jwA\n", "\n", "--------------------------------------------------------\n", @@ -65555,7 +58723,7 @@ "Pigfish ? E dopo il pescecane c'è il pesce maiale ???? http: \\/\\/t.co\\/hQzWGhyDef\n", "\n", "--------------------------------------------------------\n", - "pigfish dopo il pescecane c è il pesce maiale \n", + "pigfish dopo pescecane è pesce maiale \n", "\n", "\n", "For those who can't decide between fish or meat.....#Pigfish http: \\/\\/t.co\\/5JBtF54cmg\n", @@ -65583,173 +58751,80 @@ "\n" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Word frequency check" + ] + }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 211, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "<class 'pandas.core.frame.DataFrame'>\n", - "RangeIndex: 10851 entries, 0 to 10850\n", - "Data columns (total 9 columns):\n", - "tweetId 10851 non-null int64\n", - "tweetText 10851 non-null object\n", - "userId 10851 non-null int64\n", - "imageId(s) 10851 non-null object\n", - "username 10851 non-null object\n", - "timestamp 10851 non-null object\n", - "label 10851 non-null object\n", - "label_code 10851 non-null int64\n", - "changed_tweets 10851 non-null object\n", - "dtypes: int64(3), object(6)\n", - "memory usage: 763.1+ KB\n" + "sandy 7724\n", + "hurricane 3414\n", + "new 2940\n", + "york 2457\n", + "city 1136\n", + "jersey 526\n", + "photo 508\n", + "tomb 381\n", + "unknown 350\n", + "sochi 348\n", + "dtype: int64\n" ] } ], "source": [ - "dataset.info()" + "freq = pandas.Series(' '.join(dataset['changed_tweets']).split()).value_counts()[:10]\n", + "\n", + "with pandas.option_context('display.max_rows', None, 'display.max_columns', None): # more options can be specified also\n", + " print(freq)" ] }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 213, "metadata": {}, "outputs": [ { "data": { - "text/html": [ - "<div>\n", - "<style scoped>\n", - " .dataframe tbody tr th:only-of-type {\n", - " vertical-align: middle;\n", - " }\n", - "\n", - " .dataframe tbody tr th {\n", - " vertical-align: top;\n", - " }\n", - "\n", - " .dataframe thead th {\n", - " text-align: right;\n", - " }\n", - "</style>\n", - "<table border=\"1\" class=\"dataframe\">\n", - " <thead>\n", - " <tr style=\"text-align: right;\">\n", - " <th></th>\n", - " <th>tweetId</th>\n", - " <th>tweetText</th>\n", - " <th>userId</th>\n", - " <th>imageId(s)</th>\n", - " <th>username</th>\n", - " <th>timestamp</th>\n", - " <th>label</th>\n", - " <th>label_code</th>\n", - " <th>changed_tweets</th>\n", - " </tr>\n", - " </thead>\n", - " <tbody>\n", - " <tr>\n", - " <td>0</td>\n", - " <td>263046056240115712</td>\n", - " <td>¿Se acuerdan de la película: “El día después d...</td>\n", - " <td>21226711</td>\n", - " <td>sandyA_fake_46</td>\n", - " <td>iAnnieM</td>\n", - " <td>Mon Oct 29 22:34:01 +0000 2012</td>\n", - " <td>fake</td>\n", - " <td>1</td>\n", - " <td>acuerdan película día después mañana recuerda ...</td>\n", - " </tr>\n", - " <tr>\n", - " <td>1</td>\n", - " <td>262995061304852481</td>\n", - " <td>@milenagimon: Miren a Sandy en NY! Tremenda i...</td>\n", - " <td>192378571</td>\n", - " <td>sandyA_fake_09</td>\n", - " <td>CarlosVerareal</td>\n", - " <td>Mon Oct 29 19:11:23 +0000 2012</td>\n", - " <td>fake</td>\n", - " <td>1</td>\n", - " <td>miren sandy ny tremenda imagen huracán parece ...</td>\n", - " </tr>\n", - " <tr>\n", - " <td>2</td>\n", - " <td>262979898002534400</td>\n", - " <td>Buena la foto del Huracán Sandy, me recuerda a...</td>\n", - " <td>132303095</td>\n", - " <td>sandyA_fake_09</td>\n", - " <td>LucasPalape</td>\n", - " <td>Mon Oct 29 18:11:08 +0000 2012</td>\n", - " <td>fake</td>\n", - " <td>1</td>\n", - " <td>buena foto huracán sandy recuerda película día...</td>\n", - " </tr>\n", - " <tr>\n", - " <td>3</td>\n", - " <td>262996108400271360</td>\n", - " <td>Scary shit #hurricane #NY http://t.co/e4JLBUfH</td>\n", - " <td>241995902</td>\n", - " <td>sandyA_fake_29</td>\n", - " <td>Haaaaarryyy</td>\n", - " <td>Mon Oct 29 19:15:33 +0000 2012</td>\n", - " <td>fake</td>\n", - " <td>1</td>\n", - " <td>scary shit hurricane ny</td>\n", - " </tr>\n", - " <tr>\n", - " <td>4</td>\n", - " <td>263018881839411200</td>\n", - " <td>My fave place in the world #nyc #hurricane #sa...</td>\n", - " <td>250315890</td>\n", - " <td>sandyA_fake_15</td>\n", - " <td>princess__natt</td>\n", - " <td>Mon Oct 29 20:46:02 +0000 2012</td>\n", - " <td>fake</td>\n", - " <td>1</td>\n", - " <td>fave place world nyc hurricane sandy statueofl...</td>\n", - " </tr>\n", - " </tbody>\n", - "</table>\n", - "</div>" - ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGMCAYAAAAIiKIXAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAMTQAADE0B0s6tTgAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzde1xUdf4/8NeZGe4IKCMIDjCAookgeEEZdPNaZq1b2W3XG19NbNW1slK3ts36dtnS2DbXyr6V12q72GXrZzfLLLkopqamIncYSYFBkDsM8/n9gUxeEGG4nLm8no/HPHD4nDPzPuPMnBfn8zmfIwkhBIiIiIhkopC7ACIiInJsDCNEREQkK4YRIiIikhXDCBEREcmKYYSIiIhkxTBCREREsmIYISIiIlmpOrrgV199hUcffRQmkwlNTU145JFHMH/+fJSUlGDevHnIycmBi4sLXnvtNYwfPx4ALG5rj4uLC/r372/h5hIREZEcSktL0dDQ0Gab1JFJz4QQUKvV2L17N6Kjo5Gfn4+hQ4eitLQU999/P4KDg7FmzRpkZGTgjjvuQE5ODlQqFRYsWGBRW3s0Gg30er1lrwQRERHJor39d4ePjABARUUFAOD8+fPw9fWFi4sL3n//feTl5QEAxowZA39/f+zduxcTJ060uI2IiIgcR4fCiCRJeP/993H77bfDw8MD586dw0cffYSqqiqYTKZLuk20Wi0KCwthMBgsaiMiIiLH0qEBrEajEc899xw+/fRTFBQU4Ntvv8X8+fMBtASVi13c62Np28WSk5Oh0WjMt+rq6o6UTERERDaiQ2Hk8OHDKC4uRkJCAoCWbpXAwEAcOXIEQMuglFYFBQUIDg6Gr6+vRW2XW7FiBfR6vfnm6enZ2W0kIiIiK9ahMBIUFAS9Xo/MzEwAQHZ2NnJychAREYE777wTGzZsAABkZGTgzJkz5rNiLG0jIiIix9GhMSP+/v7YuHEj7rjjDigUCggh8Morr2DgwIF4/vnnMXfuXAwePBjOzs7Ytm2b+YwYS9uIiIjIcXTo1F5rwlN7iYiIbE97+2/OwEpERESyYhghIiIiWTGMEBERkawYRoiIiEhWDCNEREQkK4YRIiIikhXDCIAj+gr87ZOjOHu+Xu5SiIiIHA7DCICc0mpsTy9Eak6Z3KUQERE5HIYRALpwNQAgJdsgcyVERESOh2EEgL+XK8L7eyA1u+yqVw8mIiKinsEwcoEuXI3iynoUGGrlLoWIiMihMIxckDDIFwCQwnEjREREvYph5IJxYb6QJCA1h+NGiIiIehPDyAU+7s6IDPRCWo4BJhPHjRAREfUWhpGLJISrUV7TiJNnquQuhYiIyGEwjFxEN6jlFF/ON0JERNR7GEYuMkbbF05KieNGiIiIehHDyEXcnVWIDeqLfbkGNDWb5C6HiIjIITCMXCY+3Bc1jc04oq+UuxQiIiKHwDBymYTWcSPZHDdCRETUGxhGLhMT5AM3JyXHjRAREfUShpHLOKsUGBPaDz8VnkN9U7Pc5RAREdk9hpE2JIT7otFowoH8c3KXQkREZPcYRtqgC+d8I0RERL2FYaQNwwK94O3mhBSOGyEiIupxDCNtUCokxIf54qi+ApV1TXKXQ0REZNcYRq5CN8gXJgHszyuXuxQiIiK7xjByFa3jRlI43wgREVGPYhi5ivD+HvD3ckEax40QERH1KIaRq5AkCbpwNTLPVqG0qkHucoiIiOwWw0g7dOG+AHiKLxERUU9iGGmH7sJ1athVQ0RE1HMYRtox0McNWl93pPDICBERUY9hGLkG3SA1isrrUFReK3cpREREdolh5Bo4boSIiKhnMYxcQ3xYSxhJyea4ESIiop7QoTBSUVGBmJgY8y0iIgIqlQrl5eUoKSnB9OnTMXjwYAwfPhx79+41r2dpmzXx9XTBdQFeSM0xQAghdzlERER2p0NhxMfHB4cPHzbfkpKScNNNN6Ffv35YvXo1xo0bh6ysLGzatAmzZ8+G0WgEAIvbrI0u3Bdl1Q3IKqmWuxQiIiK7Y1E3zaZNm7Bw4UIAwPvvv4+lS5cCAMaMGQN/f3/zUQ5L26xNwqDWrhqOGyEiIupunQ4jaWlpMBgMuOWWW2AwGGAymdC/f39zu1arRWFhocVt1miMth+UCgmpnG+EiIio23U6jLz11luYN28eVCoVgJZp0y928bgKS9sulpycDI1GY75VV/d+V0kfVyeM0HgjPdcAY7Op15+fiIjInnUqjNTU1OC9997DggULAAC+vi3dF6WlpeZlCgoKEBwcbHHb5VasWAG9Xm++eXp6dqbkbpMwSI2qeiOOFZ+X5fmJiIjsVafCyAcffIDo6GgMHTrU/Ls777wTGzZsAABkZGTgzJkzGD9+fJfarFE85xshIiLqEarOLPzmm2+aB662ev755zF37lwMHjwYzs7O2LZtm7kLx9I2azQyuC9cVAqkZhuwZOIgucshIiKyG5KwsckzNBoN9Hq9LM895419yMgvx89P3ABXJ6UsNRAREdmi9vbfnIG1E+LDfdFgNOFQYYXcpRAREdkNhpFOSBikBsBxI0RERN2JYaQThgd6oY+LivONEBERdSOGkU5QKRUYG+aLn4sqUN1gnVPXExER2RqGkU5KGOQLo0lgfx6PjhAREXUHhpFO0oVfGDeSzTBCRETUHRhGOinC3xNqT2ekcNwIERFRt2AY6SRJkhAfrsaJX8/DUN0gdzlEREQ2j2HEAgkXpoZPzy2XuRIiIiLbxzBigdb5RlI43wgREVGXMYxYIKifOzR93ZDGcSNERERdxjBioYRwNfLKalBcUSd3KURERDaNYcRCukEt40ZSstlVQ0RE1BUMIxaKvzCIlV01REREXcMwYiG/Pq6I8PdESk4ZhBByl0NERGSzGEa6QBeuxtnzDcgprZG7FCIiIpvFMNIFOnNXDceNEBERWYphpAvGhvlCIQEpvE4NERGRxRhGusDbzQlRA72RlmtAs4njRoiIiCzBMNJFukFqVNY14cSv5+UuhYiIyCYxjHRRQviFqeE53wgREZFFGEa6aFRIXzgrFUjlfCNEREQWYRjpIjdnJUaG+GB/XjkajSa5yyEiIrI5DCPdQBeuRl1TMw4XVchdChERkc1hGOkGCReuU5PK+UaIiIg6jWGkG0RrfODhrEQq5xshIiLqNIaRbuCkVCAutB8OFZ1DbaNR7nKIiIhsCsNIN0kYpEZTs0BG/jm5SyEiIrIpDCPdRHdhvpFUzjdCRETUKQwj3WTogD7o5+HM+UaIiIg6iWGkmygUEuLDfHGsuBIVtY1yl0NERGQzGEa6UXy4L4QA0nN5dISIiKijGEa6UcKgC+NG2FVDRETUYQwj3Ujr645Ab1deNI+IiKgTGEa6kSRJiA9XI6e0Bmcq6+Uuh4iIyCZ0OIw0NDRg2bJlGDx4MCIjIzFnzhwAQFZWFnQ6HSIiIhAXF4fjx4+b17G0zZa1Tg2flsujI0RERB3R4TCyevVqKBQKnDp1Cr/88gvWrl0LAFi8eDGSkpJw6tQprFy5EgsXLjSvY2mbLWudbySFU8MTERF1iCSEENdaqKamBgMHDoRer4enp6f59yUlJYiIiEBZWRlUKhWEEAgICEB6ejrc3d0tatNqte3WotFooNfru7zhPWnyi9+jocmEvasmQZIkucshIiKSXXv77w4dGcnJyYGvry+efvppjB49GhMmTMC3336LoqIiBAYGQqVSAWgZMxEcHIzCwkKL2+xBQrgapyvqUGColbsUIiIiq9ehMNLU1ITc3FwMGzYMBw4cwL///W/cc889MBqNV/zlf/GBFkvbLpacnAyNRmO+VVdXd6RkWenCW8aNpORw3AgREdG1dCiMhISEQKFQYPbs2QCAESNGIDQ0FAUFBdDr9TAaW65UK4RAUVERgoODERQUZFHb5VasWAG9Xm++XdxNZK3iw30hSZxvhIiIqCM6FEbUajWmTJmCr776CgBQUFCAvLw8TJgwAbGxsdi+fTsAYMeOHdBqtdBqtfDz87OozR74uDsjMtALaTkGmEzXHJJDRETk0Do0gBUAcnNzsWDBAhgMBiiVSjzxxBO47bbbkJmZicTERBgMBnh5eWHLli2IjIwEAIvb2mMLA1gB4NmdJ/D6D7nYuXwChgV6yV0OERGRrNrbf3c4jFgLWwkj32eWIHFTBv5283W4d0KY3OUQERHJqstn01DnjdH2g0ohcdwIERHRNTCM9BAPFxVig32wL9eApmaT3OUQERFZLYaRHqQLV6OmsRlH9JVyl0JERGS1GEZ6UOt8I6m8ii8REdFVMYz0oNjgvnBzUnLcCBERUTsYRnqQs0qBMaH98FPhOdQ3NctdDhERkVViGOlhunBfNBpNOJB/Tu5SiIiIrBLDSA9LCFcDAFJ5nRoiIqI2MYz0sGGBXvByVSGF40aIiIjaxDDSw5QKCfHhvjiqr0BlXZPc5RAREVkdhpFekDBIDZMA9ueVy10KERGR1WEY6QWt842kcL4RIiKiKzCM9ILw/p7w6+OCNI4bISIiugLDSC+QJAkJg9TIPFuF0qoGucshIiKyKgwjvSS+dWp4nuJLRER0CYaRXtI6boRdNURERJdiGOklmr7uCPF1RwqPjBAREV2CYaQX6cLVKCqvQ1F5rdylEBERWQ2GkV6UMIjjRoiIiC7HMNKL4sNa5xvhuBEiIqJWDCO9yNfTBUMH9EFqjgFCCLnLISIisgoMI70sYZAaZdUNyCqplrsUIiIiq8Aw0ss4NTwREdGlGEZ6WVxoPygVElI53wgREREAhpFe18fVCdEab6TnGmBsNsldDhERkewYRmSQEK5GVb0Rx4rPy10KERGR7BhGZKDjfCNERERmDCMyGBncFy4qBVI53wgRERHDiBxcnZQYre2LjPxy1Dc1y10OERGRrBhGZKILV6PBaMKhwgq5SyEiIpIVw4hMWucb4bgRIiJydAwjMoka6I0+LirON0JERA6PYUQmKqUCY8P64eeiClQ3GOUuh4iISDYMIzLShathNAnsz+PRESIiclwMIzJKGKQGAJ7iS0REDo1hREYR/p5QezojheNGiIjIgXU4jGi1WgwdOhQxMTGIiYnBe++9BwDIysqCTqdDREQE4uLicPz4cfM6lrY5CkmSEB+uxolfz8NQ3SB3OURERLLo1JGRDz/8EIcPH8bhw4dx9913AwAWL16MpKQknDp1CitXrsTChQvNy1va5khaT/FNzy2XuRIiIiJ5dKmbpqSkBAcPHsScOXMAALNmzUJeXh7y8/MtbnM0CeEt40ZSON8IERE5qE6FkdmzZyMqKgr33nsvSktLUVRUhMDAQKhUKgAt3Q7BwcEoLCy0uM3RBPu6Q9PXDWkcN0JERA6qw2Hkhx9+wM8//4yDBw/C19cX8+fPB9ASJC4mhDD/29K2iyUnJ0Oj0Zhv1dXVHS3ZZujCfZFXVoPiijq5SyEiIup1HQ4jwcHBAAAnJyc88MAD+PHHHxEUFAS9Xg+jsWXSLiEEioqKEBwcbHHb5VasWAG9Xm++eXp6dnmjrU3rKb4p2eyqISIix9OhMFJTU4OKit8u6Pbuu+8iNjYWfn5+iI2Nxfbt2wEAO3bsgFarhVartbjNEcVfGMTKrhoiInJEkrha/8hFcnNzMWvWLDQ3N0MIgbCwMPzrX/+CVqtFZmYmEhMTYTAY4OXlhS1btiAyMhIALG5rj0ajgV6v7+JmW59pyXtwvr4J6X+dckUXFhERka1rb//doTBiTew1jKz57y/YnJqPXSuuxyA/++uKIiIix9be/pszsFqJ37pqOG6EiIgcC8OIlRgX5guFBKTwOjVERORgGEashLebE6IGeiMt1wCTyaZ6zoiIiLqEYcSKxIerUVnXhOO/npe7FCIiol7DMGJFEga1jBvhfCNERORIGEasyOiQfnBWKpDK+UaIiMiBMIxYETdnJWKDfbA/rxyNRpPc5RAREfUKhhErkzBIjbqmZhwuqrj2wkRERHaAYcTK6C7MN5LK+UaIiMhBMIxYmRFBPvBwViKV840QEZGDYBixMk5KBeJC++FQ0TnUNhrlLoeIiKjHMYxYIV24Gk3NAhn55+QuhYiIqMcxjFgh3YX5RlI53wgRETkAhhErdN0AL/R1d+J8I0RE5BAYRqyQQiEhPtwXx4orUVHbKHc5REREPYphxErpwtUQAkjP5dERIiKybwwjVuq3+UYYRoiIyL4xjFipULUHArxdedE8IiKyewwjVkqSJOjC1cgprcGZynq5yyEiIuoxDCNWrLWrJi2XR0eIiMh+MYxYsdb5RlI4NTwREdkxhhErFuDthjC1B9JyDBBCyF0OERFRj2AYsXK6Qb44XVGHAkOt3KUQERH1CIYRK5cQrgYApORw3AgREdknhhErNy7MF5LE+UaIiMh+MYxYub4ezhgW4IW0HANMJo4bISIi+8MwYgMSBqlRXtOIk2eq5C6FiIio2zGM2IB489TwHDdCRET2h2HEBsRp+0GlkDhuhIiI7BLDiA3wcFEhJsgH+3INaGo2yV0OERFRt2IYsRG6QWrUNDbjiL5S7lKIiIi6FcOIjUhoHTfCq/gSEZGdYRixETHBPnB1UnDcCBER2R2GERvholJijLYffio8h/qmZrnLISIi6jYMIzYkYZAajUYTDuSfk7sUIiKibsMwYkN0nG+EiIjsUKfDyJNPPglJknDs2DEAQFZWFnQ6HSIiIhAXF4fjx4+bl7W0jdoWGegNL1cVUjhuhIiI7EinwsjBgweRnp6O4OBg8+8WL16MpKQknDp1CitXrsTChQu73EZtUyokjAvzxVF9Bc7XN8ldDhERUbeQhBAduvpaQ0MDJk6ciHfeeQeTJk3C559/Dj8/P0RERKCsrAwqlQpCCAQEBCA9PR3u7u4WtWm12nbr0Gg00Ov13bHtNmlLaj6e+O8v+L95ozFtmL/c5RAREXVIe/vvDh8Z+fvf/445c+YgNDTU/LuioiIEBgZCpVIBACRJQnBwMAoLCy1uo/YlDGoZN5LC+UaIiMhOdCiMpKWlISMjA0uWLLmiTZKkS+5ffKDF0raLJScnQ6PRmG/V1dUdKdluhff3hF8fF6Rx3AgREdmJDoWRPXv24OTJkwgNDYVWq4Ver8eNN96IY8eOQa/Xw2g0AmgJFEVFRQgODkZQUJBFbZdbsWIF9Hq9+ebp6dld226TJEmCLtwXmWerUFrVIHc5REREXdahMLJ69WoUFxcjPz8f+fn50Gg0+OqrrzB//nzExsZi+/btAIAdO3ZAq9VCq9XCz8/Poja6Nt0gNQCe4ktERPZB1dUH2LhxIxITE/Hss8/Cy8sLW7Zs6XIbta91vpG0HAP+EDNQ5mqIiIi6psNn01gLRz+bptX1a3fDJAR+XDlZ7lKIiIiuqVvOpiHrogv3RVF5HYrKa+UuhYiIqEsYRmyULpzjRoiIyD4wjNio+PDW+UZ4ii8REdk2hhEbpfZ0wdABfZCaY7jqHC1ERES2gGHEhunC1SirbkBWiWNPBEdERLaNYcSGcWp4IiKyBwwjNiwutB+UCgmpnBqeiIhsGMOIDevj6oRojTfScw0wNpvkLoeIiMgiDCM2Thfui6p6I44Vn5e7FCIiIoswjNi4BM43QkRENo5hxMaNDOkLZ5UCqZxvhIiIbBTDiI1zdVJidEhfZOSXo8HYLHc5REREncYwYgcSBqnRYDThYEGF3KUQERF1GsOIHWidGp7jRoiIyBYxjNiB6IHe6OOi4nwjRERkkxhG7IBKqcDYsH74uagC1Q1GucshIiLqFIYROxEfrobRJLA/j0dHiIjItjCM2InW69TwFF8iIrI1DCN2Yoh/H/h6OCOF40aIiMjGMIzYCUmSEB/uixO/nkd5TaPc5RAREXUYw4gdSRjUMjX8X949iO8zS2AyCZkrIiIiujaV3AVQ9/lDTCB+zCrFl8fOICXbgFC1B+aOC8EdozXwcnWSuzwiIqI2SUIIm/rzWaPRQK/Xy12GVdOfq8X29EK8l1GIc7VNcHdW4rbYgZgXr8WQAX3kLo+IiBxQe/tvhhE7Vt/UjM9+LsaWtHwcO30eABAf5ov5uhBMvc4fKiV76YiIqHcwjDg4IQQOFlZga1o+dh79FU3NAgHerpgzLgR3jwmC2tNF7hKJiMjOMYyQWUlVPf6zvwhv7yvA2fMNcFYqcMuIAMyP12JEkI/c5RERkZ1iGKErNDWb8PUvZ7ElLR/788oBACOCfDA/PgQ3RwfARaWUt0AiIrIrDCPUruPF57EtPR8fHzqN+iYTfD2c8ce4YPxpbDACfdzkLo+IiOwAwwh1SGVtEz74qQhb0wpQWF4LpULCDcP8MS9ei3Fh/SBJktwlEhGRjWIYoU5pNgnsOVWCLakF2HOqFEDLdPPzdCG4NWYgPFw4PQ0REXUOwwhZLK+sBtvSCvDBgSJUNRjRx1WFO0cFYW58CELVHnKXR0RENoJhhLqspsGIjw+dxta0fJw6Ww0AuD6iPxJ1Wlwf0R8KBbtwiIjo6hhGqNsIIZCeW46tafn4+vhZNJsEgvu5Y158CO4cFQRvd047T0REV2IYoR5RXFGHt/cV4N39RSivaYSbkxK3xg7EvPgQXBfgJXd5RERkRRhGqEfVNzVj59FfsSWtAD8XVQAA4kL7YX68FjdE+sOJ084TETm89vbfHd5L3HDDDYiOjkZMTAwmTJiAw4cPAwCysrKg0+kQERGBuLg4HD9+3LyOpW1kW1ydlLh9pAafLk3AJ0sTcHvsQBwurMDSdw5i/PPf4eVvs1Ba1SB3mUREZKU6fGSkoqICPj4t04V/8skneOqpp3Dw4EFMnjwZ8+bNQ2JiIj788EO8+OKLSEtLAwCL29rDIyO2oay6Ae9lFGF7egF+rayHk1LCzVEBmKfTIjbIh3OWEBE5mG7vptmyZQvWr1+PnTt3IiIiAmVlZVCpVBBCICAgAOnp6XB3d7eoTavVWrwxZH2MzSbsOnEWm1PzkZ7bMu181EBvzIsPwe9HBMLVidPOExE5gvb2352avWrevHnYvXs3AODLL79EUVERAgMDoVK1PIwkSQgODkZhYSE8PDwsartWGCHbolIqMH14AKYPD0DmmSpsTcvHRwdP45EPj+DZnSdwT1wwZo8Nhqavu9ylEhGRTDo1snDr1q0oKirC008/jUceeQQArjjcfvGBFkvbLpacnAyNRmO+VVdXd6ZksiJDBvTBM7dFIf3RKfj7LcPg7eaEV7/Pwe9e2I2krQeQml121fcBERHZL4vPpnFzc0N+fj4iIiJgMBja7IoZPHhwp9vYTeM4TCaBH7JKsTWtALszSyAEMMjPE/PjQ3DbSA08Oe08EZHd6PLZNOfPn0dxcbH5/scffwxfX1/4+fkhNjYW27dvBwDs2LEDWq0WWq3W4jZyHAqFhIlD/PBW4hh8//BELJoQipLz9Xj8018w7tlvsea/vyCvrEbuMomIqId16MhIUVERZs2ahbq6OigUCvTv3x/r1q1DTEwMMjMzkZiYCIPBAC8vL2zZsgWRkZEAYHFbe3hkxL7VNTbj08OnsTk1HyfPVEGSgElD/JCo02LCYDXPwiEislGc9IxsjhAC+/LKsSklD98cPwuTAML7eyBRp8XtIzW8cjARkY1hGCGbVlRei+3pBXh3fyHO17dcOfju0UGYF69FsC/PwiEisgUMI2QXahtbrhy8OSUfWSXVkCRgylB/LEjQIj7cl104RERWjGGE7IoQAqk5BmxKyce3J89CCCDC3xOJulDcFjsQbs6cSI2IyNowjJDdKjDUYGtaAd7PKEJVgxHebk64Jy4Ic8eFcCI1IiIrwjBCdq+mwYiPDuqxKTUfuaU1UEjADcMGIDFBi7Gh/diFQ0QkM4YRchgmk8CP2WXYnJKH3ZmlAIDrArzwPzotZsbwWjhERHJhGCGHlFtaja1pBfjwJz2qG4zo6+6EP8YFY864EAT6uMldHhGRQ2EYIYdWVd+ED3/SY0tqPvINtVAqJEyPHID/SdBiVEhfduEQEfUChhEitHTh7DlVirdS8vBjVhkAYPhALyTqQnFLdAC7cIiIehDDCNFlskuqsCW1ADsO6lHb2AxfD2fMHhuM2eNC4O/lKnd5RER2h2GE6Coq65rwwYEibEnLR1F5HVQKCTOiApCYoMXI4L5yl0dEZDcYRoiuodkk8N3JEmxOzUNKtgEAMCLIB/+j02JGVACcVR26wDUREV0FwwhRJ2SeqcLm1Hx8fEiP+iYT+vdxaenCGRuC/n1c5C6PiMgmMYwQWaCithHvZRRha1oBTlfUwUkp4ffRgUhM0CJa4yN3eURENoVhhKgLjM0m7DpxFptS8rEvrxwAMDLYB/+TEIrpwwfASckuHCKia2EYIeomx4vPY3NqHj45XIxGown+Xi6YOy4Ef4wLhq8nu3CIiK6GYYSom5XXNOLd/YXYllaAM+fr4axSYOaIQCTqtBg+0Fvu8oiIrA7DCFEPaWo24atfzmBzSj4OFJwDAMRp+yExQYsbhvlDxS4cIiIADCNEveKovhKbU/Px2c/FaGw2IdDbFXPiQzAvXgtPF5Xc5RERyYphhKgXlVY14N39hdieXoCSqgaMDPbBO4vGcbp5InJo7e2/eQyZqJv17+OC5VMGY++qyViQEIqDhRVY+eER2FjuJyLqNTx2TNRDnFUK/O3m66A/V4v//lyMULUHHpwWIXdZRERWh0dGiHqQQiHhpXtiMHygF/71bRY+PXxa7pKIiKwOwwhRD3N3VuHN+WMwwMsVj3xwBAfyy+UuiYjIqjCMEPUCfy9XvDF/NFRKCUnbfkKhoVbukoiIrAbDCFEvGT7QGy/fE4tztY1YsCUDlXVNcpdERGQVGEaIetHUYf54bMZ1yC6pxtK3D6Kp2SR3SUREsmMYIeplC8eH4k9jg7E3uwxP/PcXnvJLRA6PYYSol0mShCdnRmLCYDXe2VeIN/fmyV0SEZGsGEaIZOCkVODffxqJQX6eeGbnCXxz/KzcJRERyYZhhEgm3m5OeGv+GPR1d8b9/zmEY6cr5S6JiEgWDCNEMgr2dcfrc0fB2Cxw75YDOFNZL3dJRES9jmGESGajtf2w9s5onDlfj3u3ZqC20Sh3SUREvYphhAUTigUAACAASURBVMgK/CFmIO6fMhjHTp/HA/85DJOJZ9gQkeNgGCGyEg9MHYyZIwLx9fGzeP7Lk3KXQ0TUaxhGiKyEJEl44Y5ojAz2wcYfcvGf/YVyl0RE1Cs6FEbq6+tx6623IiIiAjExMZg+fTry8/MBACUlJZg+fToGDx6M4cOHY+/eveb1LG0jclSuTkq8Pm80NH3d8LdPjiE1u0zukoiIelyHj4wkJSUhMzMThw8fxi233IKkpCQAwOrVqzFu3DhkZWVh06ZNmD17NoxGY5faiByZ2tMFmxLHwM1Jifu2/4Tskmq5SyIi6lEdCiOurq6YMWMGJEkCAIwbNw65ubkAgPfffx9Lly4FAIwZMwb+/v7moxyWthE5usH+ffDKnJGoaWzGwi0ZKK9plLskIqIeY9GYkZdffhm///3vYTAYYDKZ0L9/f3ObVqtFYWGhxW1E1GLC4P54cmYkCgy1WLztABqMzXKXRETUIzodRp599llkZWXhmWeeAQDz0ZJWF1/0y9K2iyUnJ0Oj0Zhv1dU8ZE2OY864ECwcH4qM/HP4646jvKgeEdmlToWRdevW4aOPPsIXX3wBd3d3+Pr6AgBKS0vNyxQUFCA4ONjitsutWLECer3efPP09OxMyUQ279EZ12HqdX746NBpbNidLXc5RETdrsNhJDk5Ge+++y6++eYb+Pj4mH9/5513YsOGDQCAjIwMnDlzBuPHj+9SGxH9RqmQ8K97YnFdgBfWfX0Knx8plrskIqJuJYkOHPfV6/UICgpCWFgY+vTpAwBwcXHBvn37cPbsWcydOxd5eXlwdnbGK6+8guuvvx4ALG5rj0ajgV6v78o2E9mk4oo63LohBZV1TfhP0jjEBveVuyQiog5rb//doTBiTRhGyJEd1Vfizo2p8HRR4eMlCQjq5y53SUREHdLe/pszsBLZkCiNN166OxaGmkbcu+UAquqb5C6JiKjLGEaIbMz04QOwavpQZJ6twrJ3DsHYbJK7JCKiLmEYIbJBi38XhrtGa7DnVCme+vy43OUQEXUJwwiRDZIkCU/fGoX4MF9sTSvA5pQ8uUsiIrIYwwiRjXJWKfDanFEIU3vgqc+PY/fJErlLIiKyCMMIkQ3zdnfCW4lj4OXmhGXvHMSJX8/LXRIRUacxjBDZOK3aAxvnjEJjswkLN2egpKpe7pKIiDqFYYTIDowN88U/bo9GcWU9Fm05gLpGXlSPiGwHwwiRnZg1SoNlkwbhZ30lHvrgMEwmm5rPkIgcGMMIkR1ZMS0CN0cFYOfRM3jxm0y5yyEi6hCGESI7olBIePGuERgR5IMNu3PwwYEiuUsiIromhhEiO+PqpMT/zRuFgT5uePTjo0jPNchdEhFRuxhGiOyQXx9XvJk4Gi4qJe7b/hPyymrkLomI6KoYRojs1NABXlj/p1icr2vCgs0ZqKhtlLskIqI2MYwQ2bFJQ/zwxO8jkVdWg/u2/4RGIy+qR0TWh2GEyM7N12kxPz4E6bnleOzjoxCCp/wSkXVhGCFyAI/fMgwTh/THBz/p8dqeXLnLISK6BMMIkQNQKRVY/8dYDPHvg+e/PIkvj/0qd0lERGYMI0QOoo+rE95MHA21pwseeO8wjugr5C6JiAgAwwiRQ9H0dcf/zRsFIYCFWw6guKJO7pKIiBhGiBxNbHBfJN8Vg9KqBizccgDVDUa5SyIiB8cwQuSAbo4OwCM3DsGJX89j+buH0MyL6hGRjBhGiBzUkonhmDVSg+9OluCZ/3dC7nKIyIExjBA5KEmS8OztwxGn7Ye3UvKwLb1A7pKIyEExjBA5MBeVEhvnjoLW1x1r/vsL9pwqlbskInJADCNEDq6vhzPeTBwDD2cllr19EKfOVsldEhE5GIYRIkJ4f0+8NncU6pqasWBzBsqqG+QuiYgcCMMIEQEAdOFqPHPbcOjP1WHR1gOob2qWuyQichAMI0RkdveYYCy+PgyHCivwyIdHeFE9IuoVKrkLICLrsurGoSgoq8VnPxcjVO2BFdMi5C6JiOwcj4wQ0SUUCgn/vDsGUQO98fK3Wfjk0Gm5SyIiO8cwQkRXcHNW4o35oxHg7YqVHx5BRn653CURkR1jGCGiNvl7ueKN+aOhUkpYvO0n5JfVyF0SEdkphhEiuqrIQG+8fE8sztU2YsbLPyL5m1O8sB4RdTuGESJq19Rh/nhr/hgM8HbFy99mYeLa3diWlo+mZpPcpRGRnZCEjZ27p9FooNfr5S6DyOEYm014/4Ae/9x1CqVVDQhVe+CRG4fgpuEDIEmS3OURkZVrb//doSMjy5cvh1arhSRJOHbsmPn3WVlZ0Ol0iIiIQFxcHI4fP97lNiKyTiqlAn8aG4w9j0zEQ9MiUHK+HkvePojbX03F/jwOcCUiy3UojNxxxx3Yu3cvQkJCLvn94sWLkZSUhFOnTmHlypVYuHBhl9uIyLq5O6vwlymDsWflJMyPD8FRfSXu2piGe7dkIIvXtSEiC3Sqm0ar1eLzzz/H8OHDUVJSgoiICJSVlUGlUkEIgYCAAKSnp8Pd3d2iNq1We80a2E1DZF3yy2qw9qtM/L+jv0IhAXeOCsKD0yIwwNtV7tKIyIp0uZumLUVFRQgMDIRK1TKJqyRJCA4ORmFhocVtRGR7tGoPbJg9Ep8sTcAYbT+8d6AIE9ftxtqvTuJ8fZPc5RGRDejS2TSXD1q7+CCLpW2XS05OhkajMd+qq6u7UjIR9ZCYIB/8J2kc3kocjeB+7tiwOwfXv7Abb+3NQ6ORZ94Q0dVZHEaCgoKg1+thNLbMOSCEQFFREYKDgy1ua8uKFSug1+vNN09PT0tLJqIeJkkSJg/1xxf3/w4vzIqGi0qJpz4/jinJ3+O/PxfDZLKpk/eIqJdYHEb8/PwQGxuL7du3AwB27NgBrVYLrVZrcRsR2QelQsJdY4Kw++GJWDl9CCpqmrD83UP4w4YUpGaXyV0eEVmZDg1gXbp0KT799FOcOXMGarUanp6eyM7ORmZmJhITE2EwGODl5YUtW7YgMjISACxuuxYOYCWyPedqGvHv3dnYllaAxmYTro/oj9U3DcV1AV5yl0ZEvaS9/TcnPSOiXlNUXot1X2fi08PFkCTg9lgNVtwQgYE+bnKXRkQ9jGGEiKzKsdOVeO6LE0jJNsBZpcD/6LRYMnEQvN2d5C6NiHoIwwgRWR0hBH7IKsM/vjiJE7+eh7ebE5ZOCse8eC1cnZRyl0dE3YxhhIislskk8Mnh03jx61M4XVGHgT5ueOiGCNwaMxAKBa95Q2QvGEaIyOrVNzVjW1oB/r07G5V1TbguwAt/vWkofhfRX+7SiKgbMIwQkc2orG3CK99nY1NqPhqNJowfpMbqm4Zi+EBvuUsjoi5gGCEim3O6og7JX5/CR4f0EAL4Q0wgHr5hCIL6uctdGhFZgGGEiGzWiV/P4x9fnMSeU6VwViowNz4EyyYNQl8PZ7lLI6JOYBghIpuXml2G5744iaOnK9HHVYU/TwzHgoRQnnlDZCMYRojILphMAp8dKca6rzNRVF6HAV6uWDEtArNGaaDkmTdEVo1hhIjsSoOxGW+nF2L9d1k4V9uEIf59sOqmIZg0xO+Kq4ITkXVgGCEiu3S+vgkb9+Tgzb15qG8yYWxoP/x1xnWICfKRuzQiugzDCBHZtTOV9fjnN6fwwU9FMAng5ugAPHLDEGjVHnKXRkQXMIwQkUM4dbYKL3x5ErtOlEClkDB7bDD+MmUw1J4ucpdG5PAYRojIoezLNeC5L07icFEFPJyVuO/6cCycEAp3Z5XcpRE5LIYRInI4Qgh8cewM1n6VibyyGvj1ccEDUyNw+8iBcFIqoJDAwa5EvYhhhIgcVlOzCf/ZX4h/fZuFsurGS9pUCglKhWT+6aRU/HZfKUGlUFzSrlJIUCmv/J1SobhonZb1Lr5/xXIXPZb5vrLt5ZyUV66nVEjwdFUhwNsNfd2dGKrIJrS3/+YxSyKya05KBebGa3HbSA22pOYj62wVjCaBZpO45Kex2XTZ700wNrfcbzSarrKMgNFkQrNJoKlZnr/rXJ0UCPB2Q4C3KwK83RDo0/IzwMcVgRd+erk6yVIbUUfxyAgRUTe5OJwYTQLNzW2HliuWMwlz8DFeCEGXr3d5cKqsa8KvFfUorqzDr5X1+LWiDjWNzW3W5emiagkrPm4I9L4yrAR6u8HNmTPZUs/ikREiol6gVEhQKuTZqQshUNVg/C2gVNTj18o6FF/4+WtlPfblGtBgNLW5vo+7U8uRFW9XBPhcepQl0NsNA7xd4axS9PJWkaNgGCEisgOSJMHL1QleA5wwZECfNpcRQuBcbROKKy4cTbk4rFwIMT+UVF21y0nt6XIhoFwWVi789OvjApWSgYU6j2GEiMhBSJKEfh7O6OfhjOEDvdtcxmQSKKtuQPGFrp/Wn79W/nbE5djpSpjayCtKhQS/Pi5XdAldPI5F7eECBa8jRJdhGCEiIjOFQoKflyv8vFyvOq1+U7MJJVUNV4aVCz8Ly2txsLCizXWdlQr4e7uYu4TUni5wVil+uykVcLnwbxeV0vy7qy1zRbtSwbOLbBDDCBERdYqTUoGBPm4Y6ON21WXqm5px9nz9JWNWii8KLZlnqrA/r7xH6nNWKeDSRoC5/N8ul4QbZZvLu7SzfmtgclEpoFJKkNASglqzUGskujQbXW0Z6ZL7ly5z6Tpoa5nL1r983baeE1d5fG83Jzj1cncbwwgREXU7VyclQnw9EOJ79esD1TYaUV7TiEajCY3NppafF24Nl91vbW8wNl9zmdZ/N1zWVlVvvGT9xmaTbKdkW7P/t3w8IgPb7sbrKQwjREQkC3dnlexT9JtMoiXEXDX8tBV0mtHQdOkyxguhRuDCzwsZxxx1hLjk/sWTalxtnd/uX9rwW/tvD3KtdS+fxENcVs/Fy/R1d77yhephDCNEROSwFAoJrgolXJ04z4qceA4WERERyYphhIiIiGTFMEJERESyYhghIiIiWTGMEBERkawYRoiIiEhWDCNEREQkK4YRIiIikhXDCBEREclK1jCSlZUFnU6HiIgIxMXF4fjx43KWQ0RERDKQNYwsXrwYSUlJOHXqFFauXImFCxfKWQ4RERHJQBLi8svn9I6SkhJERESgrKwMKpUKQggEBAQgPT0dWq32qutpNBro9freK5SIiIi6rL39t2xHRoqKihAYGAiVquVafZIkITg4GIWFhXKVRERERDKQtZtGkqRL7rd1kCY5ORkajcZ8q66u7q3yiIiIqBfI2k0zePBgGAyGTnXTuLi4oH///t1eT3V1NTw9Pbv9ceVgL9vC7bAu3A7rwu2wLtyOaystLUVDQ0ObbaoeecYO8PPzQ2xsLLZv347ExETs2LEDWq223SAC4Kob0lX2NBbFXraF22FduB3WhdthXbgdXSNbGAGAjRs3IjExEc8++yy8vLywZcsWOcshIiIiGcgaRoYMGYK0tDQ5SyAiIiKZKdesWbNG7iKsRXx8vNwldBt72RZuh3XhdlgXbod14XZYTrYBrEREREQAr01DREREMmMYISIiIlkxjHTA5s2bcccdd3T5cSRJ6rFJ21577TX885//7JHHpp7Rk++H7jBjxgzk5OQAaPkMnDp1SuaKfhMTE4O6ujq5y+hRlrw/Kioq8MILL/RQRde2Zs0aNDY2dtvj5efnQ61Wd9vjWWLixIn4/PPPZa1BTu3t/w4cOIDZs2d3y/MwjNgYo9HY5u/uu+8+PPjggzJURJ3V1v+hNdq5cyfCw8MBWF8YOXz4MNzc3Dq8vK285l0ldxh58sknuzWMkHUbPXo03n777W55LLsJI3V1dbj77rsxbNgwjBgxAjfccAPOnDmDSZMmYdSoUYiMjMTy5cvNU86vWbMGf/rTn/D73/8ew4YNw+TJk1FeXg4AaGxsxOLFixEREYFJkyZh37595ueJioq65HTkjRs34u677+5wnRs2bMDYsWMRGhqKTZs2mX+v1Wpx7Ngx8/3Ro0fj+++/B9CSzB977DFMmTIFN954o/mvhaeeegoTJkzA+vXrsWbNGjz88MPm9Z9//nlERUVhxIgRGDduHGpray1+PQBg3bp1iIuLw8iRIzFjxgwUFRV1eJsvJkkSnn/++TZfg6ysLNx8880YM2YMRowYgVdeeQVAy2u8ePFiAMCRI0cgSRK++eYbAMDjjz+O//3f/7WoFkutXbvWXA/QsgNQq9UwGAx4+OGHMXz4cAwfPhx/+ctfzF/MiYmJWL58OaZPn44RI0Zc8nhCCKxatQp/+MMfUFtb26vb0iotLQ0TJkzAiBEjEB0djU8//dT8nnzjjTdw4MABLF++HDExMdi5c2eXPwdd1XrU4GrvmdZlXnzxRUycOBF//etfkZ6ejlGjRiEmJgbDhw/Hq6++CgCoqqrCokWLEBcXh+joaNx3331oampCRkYGrrvuuksuUxEfH48vvviiW7djzZo1SEhIQEREBN59991L2q/2fXHgwAHEx8cjOjoacXFxSElJAQDcd999qKioQExMDEaPHg0AyM7OxtSpUxEdHY2YmBh88skn3Vb/xe677z4AgE6nQ0xMDM6ePYvbbrsNUVFRGD58OF5//XXzslqtFn//+9+h0+kQHByM7du341//+hfi4uIQHh5u/u5r9fDDD2Ps2LGIjIzEd999Z1F9lx9pUqvVyM/PN9fz5JNPQqfTITQ0FE8//XSbj/Hhhx8iJiYGOTk5+P777xETE4MlS5ZgxIgRiIyMxIEDB8zLbtu2DVFRUYiOjsbNN9+M06dPA2h5D7V+dlasWAGNRmNeJzg4GEVFRdd87I5oa58IAC+88AIiIyMRFRWF2bNno7KyEkDLfu+RRx4x7zemT59ufqyqqir88Y9/RFRUFEaPHo3c3FwAwPfff29+n3WZsBMfffSRmDZtmvm+wWAQdXV1oqqqSgghhNFoFDfffLP44IMPhBBCPPHEEyIsLEwYDAYhhBB33323ePbZZ4UQQrz88sti2rRporGxUdTU1IhRo0aJWbNmCSGEeP3118Xs2bPNzxMVFSV++OGHDtUIQLz00ktCCCGOHz8uPD09RVNTkxBCiJCQEHH06FHzsqNGjRK7d+8WQghx/fXXixkzZojGxkYhhBB5eXkCgHj77bfNyz/xxBPioYceEkIIsXnzZjFu3DhRWVkphBCivLxcGI1Gi1+Pt99+WyxatEgYjUYhhBBbt24VM2fO7NA2d/Q1MBqNYvTo0eLEiRNCCCFqampEVFSU+Omnn0ROTo4IDQ0VQgiRnJws4uPjxapVq4QQQowbN06kpqZaVIulzp07J/z8/ERFRYUQQoh169aJBQsWiFdeeUVMnDhR1NfXi6amJnHTTTeJF154QQghxPz580VsbKz59Rei5bUoLS0Vd911l1i2bJlobm7u1e1oZTAYhL+/v0hJSRFCCNHc3CwMBsMl78nrr79efPbZZ+Z1uvI56A4AREVFxVXfM63LPPPMM+Z1Zs6ceclnpry8XAghxKJFi8TWrVuFEEKYTCaxcOFCkZycLIQQQqfTiW+++UYIIcRPP/0kBg0aJEwmU7dux5o1a4QQQuTk5AhfX19RWFhobmvrs9LQ0CCCgoLEl19+KYQQ4scffxQDBgwQ1dXVIi8vT/j6+l7yHHFxcWLjxo1CCCFOnTol+vXrZ36O7gbA/B6/6667xOrVq4UQQpw9e1ZoNBqxb98+IUTL993DDz8shBBi//79ws3NTWzYsEEIIcR7770n4uPjhRC/fddt3rxZCCFEWlqa8Pf3F9XV1V2qTQghfH19RV5enrmeBx54QAghRElJifDy8hJ6vV4I8dt7f926deJ3v/ud+Tty9+7dQqVSiYyMDCGEEK+++qq44YYbhBBCHD16VPj7+5sf4+mnnxYzZswQQgjxt7/9TTz55JNCCCFiY2NFXFycOHHihDh58qSIiIi45mN3VFv7xJ07d4qhQ4eKc+fOCSFa3vtLliwRQgixZs0acdttt4n6+nrz6yCEEJs2bRLe3t4iPz9fCCHEqlWrRFJSkrnOUaNGdaquq7GbIyMjRozAyZMnsWTJErz33ntwcnKCyWTCqlWrMGLECMTGxuLAgQM4fPiweZ2bbroJ/fr1A9CSVlv7x3fv3o358+fDyckJ7u7umDNnjnmdOXPm4LvvvkNJSQn27NkDSZIwYcKEDtfZ2r923XXXQaVS4cyZMx1ab+7cuXBycjLfd3V1xR//+Mc2l/3888/x5z//GV5eXgCAvn37QqlUWvx6fPLJJ9i1a5f5r8oXXngBBQUFHd7my7X1GmRmZuKXX37BPffcg5iYGOh0OlRVVeH48eMICwsDAOTm5mLXrl147rnn8N133+H8+fM4deoUxowZY3EtlvDx8cGsWbOwefNmCCHw6quvYtmyZdi1axcWLlwIFxcXqFQqLFq0CLt27TKvd9ddd11xzYfp06cjJiYG69evh0Ihz8cxLS0Nw4YNg06nAwAoFArz++Bquvo56A4FBQVXfc+0WrBggfnfkyZNwtNPP42nnnoKe/fuRd++fQG0vL/Xrl2LmJgYxMbG4scff0RWVhYA4P7778eGDRsAAOvXr8eSJUuuuMBnV917770AgLCwMIwfPx4//vijue1qnxVnZ2fceOONAIDx48fDz88PR44cueKxq6qqcPjwYSxcuBAAMHjwYIwfPx579+7t1m1oy65du7B06VIALZf/uP322/Htt9+a21uPpI0cORJ1dXW46667AACjRo0y/+UNAM7Ozpg7dy4AYNy4cRgwYAB+/vnnbq+39bXu378/wsLCkJeXZ25bs2YN9uzZg6+//vqSz8aQIUPMRwYu34fccsstGDhwIABgyZIl+O677yCEwNSpU7Fr1y6UlJTAyckJd911F3bt2oVdu3Zh6tSp13zsjmprn7hr1y7Mnj0bPj4+AIA///nP5u+ozz//HA888ABcXFzMr0Or8ePHIyQkxOJaOkLWGVi7U1hYGI4fP47vvvsOu3btwsqVK3HvvffCYDBg3759cHV1xYoVK1BfX29ex9XV1fxvpVJp7lcW7Uy94ubmhvnz5+ONN97AoUOHsGzZsk7VebXnVKlUaG5uNrddXCeAK3ZiHh4enf5STE5Otvj1+Nvf/nbJF3tXtPU8Qgio1epLwtHFpkyZgi+++ALZ2dm4/vrrYTKZsGPHDowfPx4qVe+/jZcvX45bb70V4eHh8Pf3R2xsLIQQV/yfXHy/rYtPTZkyBV9//TWWLVuGPn369Hjd3aWrn4PucK33DHDpa/7AAw9g5syZ+Pbbb/Hoo49i+PDheOWVVyCEwCeffGIOvRe7/fbbsWrVKhw6dAifffZZrwwSv/g9c7XPSluf/bZ+1/pd1t77sie197yt26ZUKq+4f60xPpbUr1Qq2/2Ovdr3H9CyA/7qq6+Ql5eHoUOHXnOdy/+PLv53fHw8jh07hv/+97+YMmUKpk6dita5R+fNm9ehejqirX3i5MmTr/hDoyOvZVdr6Qi7OTKi1+shSRJmzpyJdevWQQiBgwcPYsCAAXB1dcXZs2fxwQcfdOixpkyZgm3btsFoNKKurg7vvPPOJe1Lly7Fq6++ij179nTbSOLw8HDz2JT9+/cjMzPT4seaOXMmXn31VZw/fx5Ay5iG5uZmnDt3zqLXY+bMmXjllVfMY0iamppw6NAhi+try5AhQ+Du7o6tW7eaf5ednW1+zqlTp2Lt2rUYO3YsgJa/cp988slL/pLoTUOHDoVWq8Wf//xn84542rRp2Lx5MxobG2E0GvHmm29es77HH38cM2fOxLRp03Du3LneKP0KOp0OJ06cQGpqKgDAZDJdMl4IALy8vMx9y6164nPQGeHh4e2+Zy6XmZmJsLAwLFq0CI8++ijS09MBtLy///GPf5i/YM+dO4fs7GwALX8kLF68GDNnzsSsWbPMf1F2p7feegtAy5kje/fuxfjx49tdfujQoWhoaDCPnUhNTUVJSQmioqLg5eWF2tpa87Z4eXkhJibGfN2vnJwcpKSkICEhodu3AwD69Oljfp9MnTrVPE6ktLQUH3/8MSZPntzpx2xsbDQPkty/fz/OnDmD6OjoTj/Oxd+xH330EWpqajq87o033og33ngDt9xyS7vht9WUKVOwc+dO85Hv1157DVOmTIEkSXB2dsbYsWPx9NNPm8fyHD9+HD/88AMmTZrU6e26mrb2iTExMfjPf/6DqqoqAMDrr79u/o6aOXMmXnrpJfPFaEtLS7utlo6wmyMjR48exerVqyGEgMlkwty5c5GUlIQ777wTMTExGDhwYId3XElJSThy5AiGDRsGjUaDCRMmXNItodFoEBMTg4iICLi7u3dL/c888wzmz5+PN998EyNHjkRkZKTFjzV37lwUFxcjPj7e3NW0a9cuLF++3KLXY+7cuTAYDJg4cSIkSYLRaMTChQsRGxtrcY2XU6lU+Oyzz/Dggw9i3bp1aG5uRv/+/c1fQlOmTEFhYaG55mnTpmHdunWyhREAWLRoEZYtW2Y+7S0pKQk5OTkYOXIkgJaBx8uXL7/m4zz44IPw9PTE5MmT8eWXX8Lf379H675c37598fHHH+Ohhx5CVVUVJEm6YlBwUlISHnroIaxduxbPPvssZsyY0SOfg86QJKnd98zl1q9fj927d8PZ2RlKpRIvvvgiAOCll17CqlWrEBMTA4VCAScnJzz//PMYNGgQAGDhwoV49NFHe+zoj4uLCxISElBaWor169cjKCio3eWdnZ2xY8cOLF++HDU1NXB1dcUHH3wADw8PeHh4YPbs2YiKioKHhwcOHDiAt99+G4sXL8ZLL70ESZLwxhtvXPM5LPXQQw9h8uTJcHNzw1dffYX77rsP0dHRMJlMeOyxxxAXF9fpx/T19UV2djbGjh2L6upqvPPOO/Dw8Oj047z00ktYunQp/Pz8MGnSJPj6+nZq/d/97nd49913MWvWLGzfvr3dzBXccQAAATRJREFUZSMjI/Hcc8+ZB40GBQVdMoB32rRp2LNnDxISEiBJEkaNGoWcnJxuDbtt7RPvv/9+NDQ0ID4+HpIkITo62jzoe9WqVXjssccQGxsLZ2dnBAYGYufOnd1Wz7VwOngLVFdXY+jQofjxxx8RGhoqdzkkkyVLliAgIACPP/643KXIQq7PQUlJCUJCQlBbW9sr3Q3vv/8+Nm7ceMl4h+4iSRKqqqra7MIjciR2003TW1577TUMHToUS5YsYRBxUMXFxRg6dCgOHz6MBx54QO5yZCHX5yAjIwPjxo3D3//+914JItOnT8fq1auRnJzc489F5Mh4ZISIiIhkxSMjREREJCuGESIiIpIVwwgRERHJimGEiIiI/n+7dSwAAAAAMMjfehh7iqKVjAAAKxkBAFYyAgCsAuz/KUi1NsXwAAAAAElFTkSuQmCC\n", "text/plain": [ - " tweetId tweetText \\\n", - "0 263046056240115712 ¿Se acuerdan de la película: “El día después d... \n", - "1 262995061304852481 @milenagimon: Miren a Sandy en NY! Tremenda i... \n", - "2 262979898002534400 Buena la foto del Huracán Sandy, me recuerda a... \n", - "3 262996108400271360 Scary shit #hurricane #NY http://t.co/e4JLBUfH \n", - "4 263018881839411200 My fave place in the world #nyc #hurricane #sa... \n", - "\n", - " userId imageId(s) username timestamp \\\n", - "0 21226711 sandyA_fake_46 iAnnieM Mon Oct 29 22:34:01 +0000 2012 \n", - "1 192378571 sandyA_fake_09 CarlosVerareal Mon Oct 29 19:11:23 +0000 2012 \n", - "2 132303095 sandyA_fake_09 LucasPalape Mon Oct 29 18:11:08 +0000 2012 \n", - "3 241995902 sandyA_fake_29 Haaaaarryyy Mon Oct 29 19:15:33 +0000 2012 \n", - "4 250315890 sandyA_fake_15 princess__natt Mon Oct 29 20:46:02 +0000 2012 \n", - "\n", - " label label_code changed_tweets \n", - "0 fake 1 acuerdan película día después mañana recuerda ... \n", - "1 fake 1 miren sandy ny tremenda imagen huracán parece ... \n", - "2 fake 1 buena foto huracán sandy recuerda película día... \n", - "3 fake 1 scary shit hurricane ny \n", - "4 fake 1 fave place world nyc hurricane sandy statueofl... " + "<Figure size 640x480 with 1 Axes>" ] }, - "execution_count": 6, "metadata": {}, - "output_type": "execute_result" + "output_type": "display_data" } ], "source": [ - "dataset.head()" + "import matplotlib.pyplot as plt\n", + "from matplotlib.pyplot import figure\n", + "\n", + "figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')\n", + "\n", + "# Frequency Distribution Plot of top 10 most occured words\n", + "plt.plot(freq.index, freq.values)\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Getting the test dataset ready for ML models" ] }, { "cell_type": "code", - "execution_count": 139, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ @@ -65763,7 +58838,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 17, "metadata": {}, "outputs": [ { @@ -65792,288 +58867,16 @@ }, { "cell_type": "code", - "execution_count": 189, - "metadata": {}, - "outputs": [], - "source": [ - "from sklearn.pipeline import Pipeline\n", - "from sklearn.feature_extraction.text import CountVectorizer\n", - "from sklearn.feature_extraction.text import TfidfTransformer\n", - "from sklearn.naive_bayes import MultinomialNB\n", - "from sklearn.linear_model import SGDClassifier\n", - "\n", - "tweet_clf = Pipeline([\n", - " ('vect', CountVectorizer()),\n", - " ('tfidf', TfidfTransformer()),\n", - " ('clf', PassiveAggressiveClassifier()),\n", - "])\n" - ] - }, - { - "cell_type": "code", - "execution_count": 190, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Pipeline(memory=None,\n", - " steps=[('vect',\n", - " CountVectorizer(analyzer='word', binary=False,\n", - " decode_error='strict',\n", - " dtype=<class 'numpy.int64'>, encoding='utf-8',\n", - " input='content', lowercase=True, max_df=1.0,\n", - " max_features=None, min_df=1,\n", - " ngram_range=(1, 1), preprocessor=None,\n", - " stop_words=None, strip_accents=None,\n", - " token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b',\n", - " tokenizer=None, vocabulary=Non...\n", - " TfidfTransformer(norm='l2', smooth_idf=True,\n", - " sublinear_tf=False, use_idf=True)),\n", - " ('clf',\n", - " PassiveAggressiveClassifier(C=1.0, average=False,\n", - " class_weight=None,\n", - " early_stopping=False,\n", - " fit_intercept=True, loss='hinge',\n", - " max_iter=1000, n_iter_no_change=5,\n", - " n_jobs=None, random_state=None,\n", - " shuffle=True, tol=0.001,\n", - " validation_fraction=0.1, verbose=0,\n", - " warm_start=False))],\n", - " verbose=False)" - ] - }, - "execution_count": 190, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "tweet_clf.fit(dataset['changed_tweets'], dataset['label_code'])" - ] - }, - { - "cell_type": "code", - "execution_count": 142, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.6782956058588548\n" - ] - } - ], - "source": [ - "import numpy\n", - "\n", - "predicted = tweet_clf.predict(test_set['tweetText'])\n", - "print(numpy.mean(predicted == test_set['label_code']))" - ] - }, - { - "cell_type": "code", - "execution_count": 213, - "metadata": {}, - "outputs": [ - { - "ename": "SyntaxError", - "evalue": "invalid syntax (<ipython-input-213-706d750e5066>, line 8)", - "output_type": "error", - "traceback": [ - "\u001b[0;36m File \u001b[0;32m\"<ipython-input-213-706d750e5066>\"\u001b[0;36m, line \u001b[0;32m8\u001b[0m\n\u001b[0;31m 'clf__max_iter': np.arange(1000),\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" - ] - } - ], - "source": [ - "from sklearn.model_selection import GridSearchCV\n", - "\n", - "parameters = {\n", - " 'vect__ngram_range': [(1, 1), (1, 2)],\n", - " 'tfidf__use_idf': (True, False),\n", - " 'clf__fit_intercept': (True,False),\n", - " 'clf__C': np.arange(0,1,.1)\n", - " 'clf__max_iter': np.arange(1000),\n", - " 'clf__tol': np.arange(1e-3),\n", - " 'clf__loss':('hinge', 'squared_hinge')\n", - " \n", - " \n", - "}\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 206, - "metadata": {}, - "outputs": [ - { - "ename": "ValueError", - "evalue": "Invalid parameter loss for estimator Pipeline(memory=None,\n steps=[('vect',\n CountVectorizer(analyzer='word', binary=False,\n decode_error='strict',\n dtype=<class 'numpy.int64'>, encoding='utf-8',\n input='content', lowercase=True, max_df=1.0,\n max_features=None, min_df=1,\n ngram_range=(1, 1), preprocessor=None,\n stop_words=None, strip_accents=None,\n token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b',\n tokenizer=None, vocabulary=Non...\n TfidfTransformer(norm='l2', smooth_idf=True,\n sublinear_tf=False, use_idf=True)),\n ('clf',\n PassiveAggressiveClassifier(C=1.0, average=False,\n class_weight=None,\n early_stopping=False,\n fit_intercept=True, loss='hinge',\n max_iter=1000, n_iter_no_change=5,\n n_jobs=None, random_state=None,\n shuffle=True, tol=0.001,\n validation_fraction=0.1, verbose=0,\n warm_start=False))],\n verbose=False). Check the list of available parameters with `estimator.get_params().keys()`.", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31m_RemoteTraceback\u001b[0m Traceback (most recent call last)", - "\u001b[0;31m_RemoteTraceback\u001b[0m: \n\"\"\"\nTraceback (most recent call last):\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/joblib/externals/loky/process_executor.py\", line 418, in _process_worker\n r = call_item()\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/joblib/externals/loky/process_executor.py\", line 272, in __call__\n return self.fn(*self.args, **self.kwargs)\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/joblib/_parallel_backends.py\", line 608, in __call__\n return self.func(*args, **kwargs)\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/joblib/parallel.py\", line 256, in __call__\n for func, args, kwargs in self.items]\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/joblib/parallel.py\", line 256, in <listcomp>\n for func, args, kwargs in self.items]\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/sklearn/model_selection/_validation.py\", line 504, in _fit_and_score\n estimator = estimator.set_params(**cloned_parameters)\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/sklearn/pipeline.py\", line 161, in set_params\n self._set_params('steps', **kwargs)\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/sklearn/utils/metaestimators.py\", line 50, in _set_params\n super().set_params(**params)\n File \"/home/aleko/anaconda3/envs/MLTcw/lib/python3.7/site-packages/sklearn/base.py\", line 236, in set_params\n (key, self))\nValueError: Invalid parameter loss for estimator Pipeline(memory=None,\n steps=[('vect',\n CountVectorizer(analyzer='word', binary=False,\n decode_error='strict',\n dtype=<class 'numpy.int64'>, encoding='utf-8',\n input='content', lowercase=True, max_df=1.0,\n max_features=None, min_df=1,\n ngram_range=(1, 1), preprocessor=None,\n stop_words=None, strip_accents=None,\n token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b',\n tokenizer=None, vocabulary=Non...\n TfidfTransformer(norm='l2', smooth_idf=True,\n sublinear_tf=False, use_idf=True)),\n ('clf',\n PassiveAggressiveClassifier(C=1.0, average=False,\n class_weight=None,\n early_stopping=False,\n fit_intercept=True, loss='hinge',\n max_iter=1000, n_iter_no_change=5,\n n_jobs=None, random_state=None,\n shuffle=True, tol=0.001,\n validation_fraction=0.1, verbose=0,\n warm_start=False))],\n verbose=False). Check the list of available parameters with `estimator.get_params().keys()`.\n\"\"\"", - "\nThe above exception was the direct cause of the following exception:\n", - "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m<ipython-input-206-677f364fcd96>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mgs_clf\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mGridSearchCV\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtweet_clf\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mparameters\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcv\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m5\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mn_jobs\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m-\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0mgs_clf\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mgs_clf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdataset\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mchanged_tweets\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdataset\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlabel_code\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/MLTcw/lib/python3.7/site-packages/sklearn/model_selection/_search.py\u001b[0m in \u001b[0;36mfit\u001b[0;34m(self, X, y, groups, **fit_params)\u001b[0m\n\u001b[1;32m 710\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresults\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 711\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 712\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_run_search\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mevaluate_candidates\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 713\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 714\u001b[0m \u001b[0;31m# For multi-metric evaluation, store the best_index_, best_params_ and\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/MLTcw/lib/python3.7/site-packages/sklearn/model_selection/_search.py\u001b[0m in \u001b[0;36m_run_search\u001b[0;34m(self, evaluate_candidates)\u001b[0m\n\u001b[1;32m 1151\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_run_search\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mevaluate_candidates\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1152\u001b[0m \u001b[0;34m\"\"\"Search all candidates in param_grid\"\"\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1153\u001b[0;31m \u001b[0mevaluate_candidates\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mParameterGrid\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mparam_grid\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1154\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1155\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/MLTcw/lib/python3.7/site-packages/sklearn/model_selection/_search.py\u001b[0m in \u001b[0;36mevaluate_candidates\u001b[0;34m(candidate_params)\u001b[0m\n\u001b[1;32m 689\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mparameters\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mtrain\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 690\u001b[0m in product(candidate_params,\n\u001b[0;32m--> 691\u001b[0;31m cv.split(X, y, groups)))\n\u001b[0m\u001b[1;32m 692\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 693\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mout\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m<\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/MLTcw/lib/python3.7/site-packages/joblib/parallel.py\u001b[0m in \u001b[0;36m__call__\u001b[0;34m(self, iterable)\u001b[0m\n\u001b[1;32m 1015\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1016\u001b[0m \u001b[0;32mwith\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mretrieval_context\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1017\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mretrieve\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1018\u001b[0m \u001b[0;31m# Make sure that we get a last message telling us we are done\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1019\u001b[0m \u001b[0melapsed_time\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mtime\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtime\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m-\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_start_time\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/MLTcw/lib/python3.7/site-packages/joblib/parallel.py\u001b[0m in \u001b[0;36mretrieve\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 907\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 908\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mgetattr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_backend\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'supports_timeout'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;32mFalse\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 909\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_output\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mextend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mjob\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtimeout\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtimeout\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 910\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 911\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_output\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mextend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mjob\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/MLTcw/lib/python3.7/site-packages/joblib/_parallel_backends.py\u001b[0m in \u001b[0;36mwrap_future_result\u001b[0;34m(future, timeout)\u001b[0m\n\u001b[1;32m 560\u001b[0m AsyncResults.get from multiprocessing.\"\"\"\n\u001b[1;32m 561\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 562\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mfuture\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mresult\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtimeout\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtimeout\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 563\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mLokyTimeoutError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 564\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mTimeoutError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/MLTcw/lib/python3.7/concurrent/futures/_base.py\u001b[0m in \u001b[0;36mresult\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 433\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mCancelledError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 434\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_state\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mFINISHED\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 435\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__get_result\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 436\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 437\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mTimeoutError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/MLTcw/lib/python3.7/concurrent/futures/_base.py\u001b[0m in \u001b[0;36m__get_result\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 382\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m__get_result\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 383\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_exception\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 384\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_exception\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 385\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 386\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_result\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mValueError\u001b[0m: Invalid parameter loss for estimator Pipeline(memory=None,\n steps=[('vect',\n CountVectorizer(analyzer='word', binary=False,\n decode_error='strict',\n dtype=<class 'numpy.int64'>, encoding='utf-8',\n input='content', lowercase=True, max_df=1.0,\n max_features=None, min_df=1,\n ngram_range=(1, 1), preprocessor=None,\n stop_words=None, strip_accents=None,\n token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b',\n tokenizer=None, vocabulary=Non...\n TfidfTransformer(norm='l2', smooth_idf=True,\n sublinear_tf=False, use_idf=True)),\n ('clf',\n PassiveAggressiveClassifier(C=1.0, average=False,\n class_weight=None,\n early_stopping=False,\n fit_intercept=True, loss='hinge',\n max_iter=1000, n_iter_no_change=5,\n n_jobs=None, random_state=None,\n shuffle=True, tol=0.001,\n validation_fraction=0.1, verbose=0,\n warm_start=False))],\n verbose=False). Check the list of available parameters with `estimator.get_params().keys()`." - ] - } - ], - "source": [ - "gs_clf = GridSearchCV(tweet_clf, parameters, cv=5, n_jobs=-1)\n", - "\n", - "gs_clf = gs_clf.fit(dataset.changed_tweets, dataset.label_code)\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 181, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.9255368168832365\n" - ] - } - ], - "source": [ - "import numpy as np\n", - "\n", - "predicted = gs_clf.predict(dataset.changed_tweets)\n", - "print(np.mean(predicted==dataset.label_code))" - ] - }, - { - "cell_type": "code", - "execution_count": 182, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.8553928095872171\n" - ] - } - ], - "source": [ - "predicted = gs_clf.predict(test_set.tweetText)\n", - "print(np.mean(predicted==test_set.label_code))" - ] - }, - { - "cell_type": "code", - "execution_count": 183, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.8107069943770735\n", - "{'clf__alpha': 0.5, 'tfidf__use_idf': True, 'vect__ngram_range': (1, 1)}\n" - ] - } - ], - "source": [ - "print(gs_clf.best_score_)\n", - "print(gs_clf.best_params_)" - ] - }, - { - "cell_type": "code", - "execution_count": 82, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(10851, 11271)\n", - "(3755, 11271)\n" - ] - } - ], - "source": [ - "from sklearn.feature_extraction.text import CountVectorizer\n", - "\n", - "X_train = dataset['changed_tweets']\n", - "y_train = dataset['label_code']\n", - "X_test = test_set['tweetText']\n", - "y_test = test_set['label_code']\n", - "\n", - "cv = CountVectorizer()\n", - "\n", - "features_train = cv.fit_transform(X_train)\n", - "labels_train = y_train\n", - "\n", - "features_test = cv.transform(X_test)\n", - "labels_test = y_test\n", - "\n", - "print(features_train.shape)\n", - "print(features_test.shape)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ - "from sklearn.feature_extraction.text import TfidfTransformer\n", - "\n", - "tfidf = TfidfTransformer(use_idf=False).fit(features_train)\n", - "features_train_tfidf = tfidf.transform(features_train) \n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 100, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(10847, 5302)\n", - "(3755, 5302)\n" - ] - } - ], - "source": [ - "#test CountVectorizer\n", - "from sklearn.feature_extraction.text import CountVectorizer\n", + "#Saving training data and testing data with their labels\n", "\n", "X_train = dataset['changed_tweets']\n", "y_train = dataset['label_code']\n", "X_test = test_set['tweetText']\n", - "y_test = test_set['label_code']\n", - "\n", - "cv = CountVectorizer(ngram_range=(1,2), min_df=3, max_df=1.0)\n", - "features_train = cv.fit_transform(X_train).toarray()\n", - "labels_train = y_train\n", - "\n", - "features_test = cv.transform(X_test).toarray()\n", - "labels_test = y_test\n", - "\n", - "print(features_train.shape)\n", - "print(features_test.shape)\n" + "y_test = test_set['label_code']" ] }, { @@ -66136,7 +58939,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 22, "metadata": {}, "outputs": [], "source": [ @@ -66150,22 +58953,6 @@ "save_test = open('pickles/test_set.pickle', 'wb')\n", "pickle.dump(test_set, save_test)\n", "\n", - "#save training features\n", - "save_features = open('pickles/features_train.pickle', 'wb')\n", - "pickle.dump(features_train, save_features)\n", - "\n", - "#save labels train\n", - "save_labels_train = open('pickles/labels_train.pickle', 'wb')\n", - "pickle.dump(labels_train, save_labels_train)\n", - "\n", - "#save testing features\n", - "save_test_features = open('pickles/features_test.pickle', 'wb')\n", - "pickle.dump(features_test, save_test_features)\n", - "\n", - "#save labels test\n", - "save_test_labels = open('pickles/labels_test.pickle', 'wb')\n", - "pickle.dump(labels_test, save_test_labels)\n", - "\n", "#save X train\n", "save_X_train = open('pickles/X_train.pickle', 'wb')\n", "pickle.dump(X_train, save_X_train)\n", @@ -66180,11 +58967,7 @@ "\n", "#save y test\n", "save_y_test = open('pickles/y_test.pickle', 'wb')\n", - "pickle.dump(y_test, save_y_test)\n", - "\n", - "#save tfids \n", - "save_tfidf = open('pickles/tfidf.pickle', 'wb')\n", - "pickle.dump(tfidf, save_tfidf)" + "pickle.dump(y_test, save_y_test)\n" ] } ], diff --git a/CWfiles/.ipynb_checkpoints/MultinomialNB-checkpoint.ipynb b/CWfiles/.ipynb_checkpoints/MultinomialNB-checkpoint.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..e65bee21f959d4baca308355782d81d4b9e62fe1 --- /dev/null +++ b/CWfiles/.ipynb_checkpoints/MultinomialNB-checkpoint.ipynb @@ -0,0 +1,182 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import pickle\n", + "import numpy as np\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "from sklearn.naive_bayes import MultinomialNB\n", + "from pprint import pprint\n", + "from sklearn.model_selection import RandomizedSearchCV\n", + "from sklearn.model_selection import GridSearchCV\n", + "from sklearn.metrics import classification_report, confusion_matrix, accuracy_score\n", + "from sklearn.model_selection import ShuffleSplit\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "#load training dataset\n", + "data = open('pickles/dataset.pickle', 'rb')\n", + "train_set = pickle.load(data)\n", + "X_train = train_set['changed_tweets']\n", + "y_train = train_set['label_code']\n", + "\n", + "#load testing dataset\n", + "test = open('pickles/test_set.pickle', 'rb')\n", + "test_set = pickle.load(test)\n", + "X_test = test_set['tweetText']\n", + "y_test = test_set['label_code']" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.pipeline import Pipeline\n", + "\n", + "tweet_clf = Pipeline([\n", + " ('tfidf', TfidfVectorizer(ngram_range=(1,1))),\n", + " ('clf', MultinomialNB(alpha=0.5)),\n", + "])" + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Training acc: 0.9289172761924385 && Testing acc: 0.8527296937416777\n" + ] + } + ], + "source": [ + "tweet_clf.fit(X_train, y_train)\n", + "training_acc = accuracy_score(y_train, tweet_clf.predict(X_train))\n", + "testing_acc = accuracy_score(y_test, tweet_clf.predict(X_test))\n", + "\n", + "print(\"Training acc: \" + str(training_acc) + \" && Testing acc: \" + str(testing_acc))" + ] + }, + { + "cell_type": "code", + "execution_count": 139, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " 0 0.93 0.59 0.72 1209\n", + " 1 0.83 0.98 0.90 2546\n", + "\n", + " accuracy 0.85 3755\n", + " macro avg 0.88 0.78 0.81 3755\n", + "weighted avg 0.86 0.85 0.84 3755\n", + "\n" + ] + } + ], + "source": [ + "print(classification_report(y_test, tweet_clf.predict(X_test)))" + ] + }, + { + "cell_type": "code", + "execution_count": 126, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Training acc: 0.9269191779559488 && Testing acc: 0.7643142476697736\n" + ] + } + ], + "source": [ + "from sklearn.model_selection import GridSearchCV\n", + "\n", + "table = {}\n", + "parameters = {\n", + " 'tfidf__max_df': np.arange(0.0,1.1, .1).tolist(),\n", + " 'tfidf__min_df': np.arange(0.0,1.1, .1).tolist(),\n", + " 'clf__alpha': np.arange(0.0,1.1, .1).tolist()\n", + "}\n", + "\n", + "gs = GridSearchCV(tweet_clf, parameters, cv=5, n_jobs=-1)\n", + "gs = gs.fit(X_train, y_train)\n", + "\n", + "training_acc = accuracy_score(y_train, gs.predict(X_train))\n", + "testing_acc = accuracy_score(y_test, gs.predict(X_test))\n", + "\n", + "print(\"Training acc: \" + str(training_acc) + \" && Testing acc: \" + str(testing_acc))" + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.8119052784187032\n", + "{'clf__alpha': 0.5, 'tfidf__max_df': 0.1, 'tfidf__min_df': 0.0}\n" + ] + } + ], + "source": [ + "print(gs.best_score_)\n", + "print(gs.best_params_)\n" + ] + }, + { + "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.7.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/CWfiles/.ipynb_checkpoints/PassiveAggressiveClassifier-checkpoint.ipynb b/CWfiles/.ipynb_checkpoints/PassiveAggressiveClassifier-checkpoint.ipynb index a1bfec7045468a344648bbc1eb0a5ec3856c2265..67a71be0b36ff1287b92d16c524af977957c6bb0 100644 --- a/CWfiles/.ipynb_checkpoints/PassiveAggressiveClassifier-checkpoint.ipynb +++ b/CWfiles/.ipynb_checkpoints/PassiveAggressiveClassifier-checkpoint.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 23, + "execution_count": 237, "metadata": {}, "outputs": [], "source": [ @@ -18,7 +18,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 238, "metadata": {}, "outputs": [], "source": [ @@ -37,28 +37,28 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 239, "metadata": {}, "outputs": [], "source": [ "from sklearn.pipeline import Pipeline\n", "\n", "tweet_clf = Pipeline([\n", - " ('tfidf', TfidfVectorizer(max_df=0.5, min_df=3)),\n", - " ('clf', PassiveAggressiveClassifier(max_iter=58)),\n", + " ('tfidf', TfidfVectorizer(ngram_range=(1,2), max_df=0.5, min_df=3)),\n", + " ('clf', PassiveAggressiveClassifier(max_iter=50)),\n", "])" ] }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 262, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Training acc: 0.9294074278868307 && Testing acc: 0.8585885486018642\n" + "Training acc: 0.9593077160811785 && Testing acc: 0.8521970705725699\n" ] } ], @@ -70,6 +70,31 @@ "print(\"Training acc: \" + str(training_acc) + \" && Testing acc: \" + str(testing_acc))" ] }, + { + "cell_type": "code", + "execution_count": 263, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " 0 0.85 0.66 0.74 1209\n", + " 1 0.85 0.94 0.90 2546\n", + "\n", + " accuracy 0.85 3755\n", + " macro avg 0.85 0.80 0.82 3755\n", + "weighted avg 0.85 0.85 0.85 3755\n", + "\n" + ] + } + ], + "source": [ + "print(classification_report(y_test, tweet_clf.predict(X_test)))" + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/CWfiles/Feature Engineering.ipynb b/CWfiles/Feature Engineering.ipynb index cc8b34d01f8b9eaa301aea0165b7f7d41d6f34ca..df29bcb57474ea1bfda56b68765bf8e36df23977 100644 --- a/CWfiles/Feature Engineering.ipynb +++ b/CWfiles/Feature Engineering.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 237, + "execution_count": 192, "metadata": {}, "outputs": [], "source": [ @@ -14,7 +14,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 56, "metadata": {}, "outputs": [ { @@ -164,48 +164,7 @@ }, { "cell_type": "code", - "execution_count": 45, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "[nltk_data] Downloading package wordnet to /home/aleko/nltk_data...\n", - "[nltk_data] Unzipping corpora/wordnet.zip.\n" - ] - }, - { - "data": { - "text/plain": [ - "True" - ] - }, - "execution_count": 45, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import nltk\n", - "nltk.download('wordnet')" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "metadata": {}, - "outputs": [], - "source": [ - "from nltk.stem import WordNetLemmatizer \n", - "\n", - "# Saving the lemmatizer into an object\n", - "wordnet_lemmatizer = WordNetLemmatizer()" - ] - }, - { - "cell_type": "code", - "execution_count": 238, + "execution_count": 193, "metadata": {}, "outputs": [], "source": [ @@ -213,7 +172,7 @@ "from nltk.corpus import stopwords\n", "from nltk.tokenize.treebank import TreebankWordDetokenizer as twd\n", "\n", - "list_of_stopwords = stopwords.words('english') + stopwords.words('spanish') + stopwords.words('arabic') + stopwords.words('russian') + stopwords.words('swedish') + stopwords.words('dutch')\n", + "list_of_stopwords = stopwords.words('english') + stopwords.words('french') + stopwords.words('spanish') + stopwords.words('portuguese') + stopwords.words('arabic') + stopwords.words('russian') + stopwords.words('swedish') + stopwords.words('dutch') + stopwords.words('indonesian')\n", "\n", "#remove stopwords\n", "def remove_stopwords(tweet):\n", @@ -233,29 +192,39 @@ "#change content \n", "dataset['changed_tweets'] = dataset['tweetText']\n", "\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(RT|Rt):?\\s?.?(@?\\w+:?).*', '') #remove retweets \n", + "\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('[“”\"]@\\w+:[\\w\\W]*[“”\"]', '') #remove quoted retweets\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(RT|Rt):?\\s?\\W?(@?\\w+:?).*', '') #remove retweets \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('MT\\s?:?\\s?[“”\"]?@\\w+:.*', '') #remove retweets \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.lower() \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('@\\w+:.*', '') #remove retweets \n", + "\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(via)?\\s?(@\\w+:?)', '') #remove mentions\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?MT\\s', '')\n", + "#dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?MT\\s', '')\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(https?://\\s?t.co/\\w+)|(http:\\s\\W+t.co\\W+\\w+)', '') #remove http links\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.lower() #convert text to lowercase\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\b)yea\\b', ' yes ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('-+>', '') \n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s[bB][tT][wW]', ' by the way')\n", + "\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('>|<', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\\\\\\\n', ' ') #remove special characters \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b[o0]_[o0]\\b', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b:[o0]\\b', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b:p\\b', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('h/t', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('_|#', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\/', ' ')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('n\\.y\\.c?|n\\.j\\.', '')\n", + "\n", + "\n", + "\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sbtw', ' by the way')\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s1st', ' first')\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s2nd', ' second')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('&', 'and') \n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\scuz', ' because')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('bcuz', 'because')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\\\\\\\n', ' ') #remove special characters \n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b[o0]_[o0]\\b', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b:[o0]\\b', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\b:[p]\\b', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('_', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('#', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('/', ' ')\n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('>', ' greater than ') #remove gt lt \n", - "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('<', ' less than ')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('&', 'and') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\b)yea\\b', ' yes ')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\su\\s', ' you ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sr\\s', ' are ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sur\\s', ' your ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('hurricanesandy', 'hurricane sandy') \n", + "\n", "\n", "#removing corrupted rows\n", "indexnames1 = dataset[dataset['changed_tweets'].str.contains(pat = \"\\+0000\")].index\n", @@ -263,9 +232,56 @@ "\n", "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('[^\\w\\s]', ' ') #remove special characters \n", "\n", - "#remove duplicates\n", - "dataset.drop_duplicates(subset = 'changed_tweets', keep = 'first', inplace = True)\n", - " \n", + "\n", + "#remove digits\n", + "\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)\\d[^\\s\\d]*', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)\\d\\d[^\\s\\d]*', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)\\d\\d\\d[^\\s\\d]*', '') \n", + "\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('bcuz', 'because')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)ny\\s', ' new york ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('newyork', 'new york') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)nyc\\s', ' new york city ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)nj\\s', ' new jersey ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sasi\\s', ' así ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\svs\\s', ' versus ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)im\\s', ' i am ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sthru\\s', ' i am ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sn\\s', ' and ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sgoin\\s', ' going ') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('unknownsoldier', 'unknown soldier')\n", + "\n", + "\n", + "\n", + "\n", + "#removing unnecessary words\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('π', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('ΰέ', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?whoa+h?', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('lmf?ao+', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sbro\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sdis\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\soh\\s', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?(ha)+\\s|\\s?(waha)+\\s', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('omf?g+', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sà\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\ssh\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('regram', '')\n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('instamood', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('yikes', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('wow', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('smh', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(^|\\s)rt\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('lo+l', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('(o+h+)+', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('wtf|\\s?v[ií]a\\s', '')\n", + "#dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\brt\\b', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\s?yo\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sabt\\s', '') \n", + "dataset['changed_tweets'] = dataset['changed_tweets'].str.replace('\\sβ\\s', '') \n", + "\n", + "\n", "dataset['changed_tweets'] = dataset['changed_tweets'].apply(lambda x : remove_stopwords(x)) #remove stopwords\n", "\n", "#drop fields where tweet is empty\n", @@ -283,6 +299,10 @@ "#detokenize words to drop duplicates again\n", "#dataset['tweetText'] = dataset['tweetText'].apply(lambda x : \"\".join([\" \"+i if not i.startswith(\"'\") and i not in string.punctuation else i for i in x]).strip()) \n", "\n", + "#remove duplicates\n", + "dataset.drop_duplicates(subset = 'changed_tweets', keep = 'first', inplace = True)\n", + " \n", + "\n", "dataset = dataset.reset_index(drop=True)\n", "\n", "\n" @@ -290,58 +310,64 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 195, "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "14" - ] - }, - "execution_count": 26, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "<class 'pandas.core.frame.DataFrame'>\n", + "RangeIndex: 9707 entries, 0 to 9706\n", + "Data columns (total 9 columns):\n", + "tweetId 9707 non-null int64\n", + "tweetText 9707 non-null object\n", + "userId 9707 non-null int64\n", + "imageId(s) 9707 non-null object\n", + "username 9707 non-null object\n", + "timestamp 9707 non-null object\n", + "label 9707 non-null object\n", + "label_code 9707 non-null int64\n", + "changed_tweets 9707 non-null object\n", + "dtypes: int64(3), object(6)\n", + "memory usage: 682.6+ KB\n" + ] } ], "source": [ - "len(indexnames1)" + "dataset.info()" ] }, { "cell_type": "code", - "execution_count": 125, + "execution_count": 174, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "<class 'pandas.core.frame.DataFrame'>\n", - "RangeIndex: 10851 entries, 0 to 10850\n", - "Data columns (total 9 columns):\n", - "tweetId 10851 non-null int64\n", - "tweetText 10851 non-null object\n", - "userId 10851 non-null int64\n", - "imageId(s) 10851 non-null object\n", - "username 10851 non-null object\n", - "timestamp 10851 non-null object\n", - "label 10851 non-null object\n", - "label_code 10851 non-null int64\n", - "changed_tweets 10851 non-null object\n", - "dtypes: int64(3), object(6)\n", - "memory usage: 763.1+ KB\n" + "0\n" ] } ], "source": [ - "dataset.info()\n" + "#check for empty strings\n", + "tw = dataset['changed_tweets']\n", + "count = 0\n", + "for i in range(len(tw)):\n", + " if tw[i]==' ':\n", + " count +=1\n", + "print(count)\n", + " " ] }, { "cell_type": "code", - "execution_count": 68, - "metadata": {}, + "execution_count": 194, + "metadata": { + "scrolled": true + }, "outputs": [ { "name": "stdout", @@ -355,12 +381,6 @@ "acuerdan película día después mañana recuerda pasando huracán sandy \n", "\n", "\n", - "@milenagimon: Miren a Sandy en NY! Tremenda imagen del huracán. Parece el \"Día de la Independencia 2\" http://t.co/41jUweux REAL! RT.\n", - "\n", - "--------------------------------------------------------\n", - "miren sandy ny tremenda imagen huracán parece día independencia 2 real rt \n", - "\n", - "\n", "Buena la foto del Huracán Sandy, me recuerda a la película Día de la Independencia #ID4 #Sandy http://t.co/PTdAXABZ\n", "\n", "--------------------------------------------------------\n", @@ -370,19 +390,19 @@ "Scary shit #hurricane #NY http://t.co/e4JLBUfH\n", "\n", "--------------------------------------------------------\n", - "scary shit hurricane ny \n", + "scary shit hurricane new york \n", "\n", "\n", "My fave place in the world #nyc #hurricane #sandy #statueofliberty 🗽 http://t.co/Ex61doZk\n", "\n", "--------------------------------------------------------\n", - "fave place world nyc hurricane sandy statueofliberty \n", + "fave place world new york city hurricane sandy statueofliberty \n", "\n", "\n", "42nd #time #square #NYC #subway #hurricane http://t.co/daX5YY7X\n", "\n", "--------------------------------------------------------\n", - "42nd time square nyc subway hurricane \n", + "2nd time square new york city subway hurricane \n", "\n", "\n", "Just in time for #halloween a photo of #hurricane #sandy #frankenstorm http://t.co/xquKB4VN\n", @@ -400,19 +420,19 @@ "#sandy #newyork #hurricane #statueofliberty #USA http://t.co/iQfEbO1E\n", "\n", "--------------------------------------------------------\n", - "sandy newyork hurricane statueofliberty usa \n", + "sandy new york hurricane statueofliberty usa \n", "\n", "\n", "#nyc #hurricane http://t.co/Gv3QxZlq\n", "\n", "--------------------------------------------------------\n", - "nyc hurricane \n", + "new york city hurricane \n", "\n", "\n", "robertosalibaba god be with u brother #sandy #hurricane #newyork http://t.co/GXheTqlO\n", "\n", "--------------------------------------------------------\n", - "robertosalibaba god brother sandy hurricane newyork \n", + "robertosalibaba god brother sandy hurricane new york \n", "\n", "\n", "#Crazy #Hurricane #Sandy http://t.co/0zrMsgvs\n", @@ -430,13 +450,13 @@ "Good luck #ny #newyork #usa #hurricane #sandy http://t.co/0y435Anw\n", "\n", "--------------------------------------------------------\n", - "good luck ny newyork usa hurricane sandy \n", + "good luck new york new york usa hurricane sandy \n", "\n", "\n", "Wow.... Fishing anyone? #hurricane #sandy http://t.co/LS0Kx0zm\n", "\n", "--------------------------------------------------------\n", - "wow fishing anyone hurricane sandy \n", + "fishing anyone hurricane sandy \n", "\n", "\n", "Well #howdy there #hurricane #sandy . Just wanted to let you know that you took my power, internet, && happi http://t.co/qKxLQEmT\n", @@ -448,19 +468,19 @@ "Just known this bcs of #jason #chen updated the pic! Everyone be safe! #newyork #sandy #hurricane #nature #e http://t.co/c6VTaBkT\n", "\n", "--------------------------------------------------------\n", - "known bcs jason chen updated pic everyone safe newyork sandy hurricane nature \n", + "known bcs jason chen updated pic everyone safe new york sandy hurricane nature \n", "\n", "\n", "My thoughts and prayers go to all of the people going thru #hurricane #sandy #ct #de #ma #md #me #nc #nh #nj http://t.co/kvKzXOg1\n", "\n", "--------------------------------------------------------\n", - "thoughts prayers go people going thru hurricane sandy ct md nc nh nj \n", + "thoughts prayers go people going hurricane sandy ct md nc nh new jersey \n", "\n", "\n", "Stay safe my New York family...#nyc #newyork #storm #hurricane #wind http://t.co/iSdoZmLs\n", "\n", "--------------------------------------------------------\n", - "stay safe new york family nyc newyork storm hurricane wind \n", + "stay safe new york family new york city new york storm hurricane wind \n", "\n", "\n", "New York #hurricane #Sandy http://t.co/AnrR8u7t\n", @@ -472,7 +492,7 @@ "Probably the coolest pic of #hurricanesandy! #hurricane #sandy #weather #storm #statueofliberty http://t.co/RCf5ZKrn\n", "\n", "--------------------------------------------------------\n", - "probably coolest pic hurricanesandy hurricane sandy weather storm statueofliberty \n", + "probably coolest pic hurricane sandy hurricane sandy weather storm statueofliberty \n", "\n", "\n", "Crazy #sandy #hurricane images. Be glad we live in the #west coast. http://t.co/c2wYXDao\n", @@ -484,13 +504,13 @@ "My cousin sent this to me... :: Cleveland voice :: We gon' die!!! ☁⚡☔🌊 #hurricane #hurricanesandy #sandy http://t.co/XtW4exLn\n", "\n", "--------------------------------------------------------\n", - "cousin sent cleveland voice gon hurricane hurricanesandy sandy \n", + "cousin sent cleveland voice gon hurricane hurricane sandy sandy \n", "\n", "\n", "We forget tomb unknown soldier is guard 24/7365 ! Taken today #hurricane #sandy #frankenstorm http://t.co/mFEfmCMk\n", "\n", "--------------------------------------------------------\n", - "forget tomb unknown soldier guard 24 7365 taken today hurricane sandy frankenstorm \n", + "forget tomb unknown soldier guard4365 taken today hurricane sandy frankenstorm \n", "\n", "\n", "“@DarcyPhilip #new #york #hurricane #sandy http://t.co/z82Y0Kah” Bruh\n", @@ -502,7 +522,7 @@ "New York \"attacked\" by Sandy. #NewYork #statueofliberty #hurricane #Sandy #dark #attack #sky #picoftheday # http://t.co/6PSNTCj9\n", "\n", "--------------------------------------------------------\n", - "new york attacked sandy newyork statueofliberty hurricane sandy dark attack sky picoftheday \n", + "new york attacked sandy new york statueofliberty hurricane sandy dark attack sky picoftheday \n", "\n", "\n", "This is sooo cute! #puupy #dog #hurricane #sandy #cute #adorable #flood #trees #golden #retriever #classic ☺ http://t.co/7nXoqVIY\n", @@ -514,13 +534,13 @@ "empty streets #nyc #hurricane #sandy http://t.co/Uro00bM7\n", "\n", "--------------------------------------------------------\n", - "empty streets nyc hurricane sandy \n", + "empty streets new york city hurricane sandy \n", "\n", "\n", "Shark. #Sandy #JerseyIThink #Hurricane #NYC #SomethingIsntRight #Animals #Shark #NaturalDisasterOrNot http://t.co/rylmIz5H\n", "\n", "--------------------------------------------------------\n", - "shark sandy jerseyithink hurricane nyc somethingisntright animals shark naturaldisasterornot \n", + "shark sandy jerseyithink hurricane new york city somethingisntright animals shark naturaldisasterornot \n", "\n", "\n", "Craziest picture ever #hurricane http://t.co/KaF8zQPE\n", @@ -532,7 +552,7 @@ "#hurricane #sandy #WOW #NYC http://t.co/Gs7YMXXC\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy wow nyc \n", + "hurricane sandy new york city \n", "\n", "\n", "So New York is getting a little rain... #Hurricane #Sandy http://t.co/frWrVIss\n", @@ -550,13 +570,13 @@ "Lord have mercy on their souls #Hurricane #Sandy #NewYork #RIP http://t.co/MYJpbl11\n", "\n", "--------------------------------------------------------\n", - "lord mercy souls hurricane sandy newyork rip \n", + "lord mercy souls hurricane sandy new york rip \n", "\n", "\n", "Look at this amazing pic taken today of #sandy #NYC #NewYorkCity #LadyLiberty #Hurricane #Amazing #Weather http://t.co/H4v7NbnI\n", "\n", "--------------------------------------------------------\n", - "look amazing pic taken today sandy nyc newyorkcity ladyliberty hurricane amazing weather \n", + "look amazing pic taken today sandy new york city new yorkcity ladyliberty hurricane amazing weather \n", "\n", "\n", "Mans best friend #love #hurricane #sandy #dog http://t.co/rJPcUYUn\n", @@ -574,7 +594,7 @@ "Terrifying. #NY #hurricane #sandy #statueofliberty http://t.co/MSduqf2r\n", "\n", "--------------------------------------------------------\n", - "terrifying ny hurricane sandy statueofliberty \n", + "terrifying new york hurricane sandy statueofliberty \n", "\n", "\n", "#hurricane #sandy lookin like a bag of money http://t.co/lIWWuj6U\n", @@ -592,13 +612,13 @@ "wow! #hurricane #Sandy over lady liberty http://t.co/UbNMPbru via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy lady liberty \n", + "hurricane sandy lady liberty \n", "\n", "\n", "UMMMM😳 #shark #hurricane #nj WOAHH http://t.co/ach2BzUW\n", "\n", "--------------------------------------------------------\n", - "ummmm shark hurricane nj woahh \n", + "ummmm shark hurricane new jersey woahh \n", "\n", "\n", "#amazing #photography #nature #hurricane #sandy #clouds http://t.co/04kgQRRZ\n", @@ -610,7 +630,7 @@ "So...that's a shark swimming in someone's front yard in NJ. #Sandy #shark #landshark #hurricane #fishing #be http://t.co/Vy7NOhKp\n", "\n", "--------------------------------------------------------\n", - "shark swimming someone front yard nj sandy shark landshark hurricane fishing \n", + "shark swimming someone front yard new jersey sandy shark landshark hurricane fishing \n", "\n", "\n", "uh #hurricane #sandy #wind #blowing #cloudy #water #### # http://t.co/OVPam68k\n", @@ -622,31 +642,31 @@ "#hurricane #sandy #NY #NewYork http://t.co/EtktgqAt\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny newyork \n", + "hurricane sandy new york new york \n", "\n", "\n", "Damnnn dis joint look like those end of the world movies #repost #rp #hurricane #sandy http://t.co/6lzyWDj1\n", "\n", "--------------------------------------------------------\n", - "damnnn dis joint look like end world movies repost rp hurricane sandy \n", + "damnnnjoint look like end world movies repost rp hurricane sandy \n", "\n", "\n", "#hurricane #sandy #NY #newyork #america #usa #sky #tube #instago #instaboy #instahub #i#instagood #instagram http://t.co/MMqpZxE8\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny newyork america usa sky tube instago instaboy instahub instagood instagram \n", + "hurricane sandy new york new york america usa sky tube instago instaboy instahub iinstagood instagram \n", "\n", "\n", "#NewYork #Crazy #Statue #Liberty #Hurricane #Today #Nature #2012 http://t.co/wi5DuGPH\n", "\n", "--------------------------------------------------------\n", - "newyork crazy statue liberty hurricane today nature 2012 \n", + "new york crazy statue liberty hurricane today nature012 \n", "\n", "\n", "😱 #shark #nyc #streets #sandy #hurricane http://t.co/NcudDwxJ\n", "\n", "--------------------------------------------------------\n", - "shark nyc streets sandy hurricane \n", + "shark new york city streets sandy hurricane \n", "\n", "\n", "A picture someone took of a shark swimming by their house when it got flooded 😱 \\n#NewJersey #Hurricane #Sand http://t.co/OCXLWDFY\n", @@ -670,13 +690,13 @@ "#2012 #statueofliberty #NYC #world #ends #hurricane #sandy 😳😳 http://t.co/qYPMgIrH\n", "\n", "--------------------------------------------------------\n", - "2012 statueofliberty nyc world ends hurricane sandy \n", + "2 statueofliberty new york city world ends hurricane sandy \n", "\n", "\n", "#NY #hurricane #cool http://t.co/XbXap7JQ\n", "\n", "--------------------------------------------------------\n", - "ny hurricane cool \n", + "new york hurricane cool \n", "\n", "\n", "The Eye of The Storm... #Hurricane #Sandy http://t.co/0mMUrbZN\n", @@ -688,13 +708,7 @@ "#timesquare #newyork #nyc #ghostcity #hurricane #sandy http://t.co/hsVUO6Fn\n", "\n", "--------------------------------------------------------\n", - "timesquare newyork nyc ghostcity hurricane sandy \n", - "\n", - "\n", - "#newyork #hurricane #sandy http://t.co/8wcCP9c5\n", - "\n", - "--------------------------------------------------------\n", - "newyork hurricane sandy \n", + "timesquare new york new york city ghostcity hurricane sandy \n", "\n", "\n", "Hope all my family and friends on the east coast stay safe!! #Hurricane #sandy #ilovecali #storm #clouds #ra http://t.co/dHjMlGrc\n", @@ -703,12 +717,6 @@ "hope family friends east coast stay safe hurricane sandy ilovecali storm clouds ra \n", "\n", "\n", - "#Hurricane #Sandy #NYC 🌀☔🗽 http://t.co/gNLZiF29\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", "Still no place like it !!! RT @cruzr83: Eerie look in Manhattan. #sandy #nyc #weather #hurricane http://t.co/HKpOueN3\n", "\n", "--------------------------------------------------------\n", @@ -718,25 +726,25 @@ "WTF! LaGuardia Airport! #JetBlue #Travel #Sandy #Hurricane http://t.co/rMnIn46u\n", "\n", "--------------------------------------------------------\n", - "wtf laguardia airport jetblue travel sandy hurricane \n", + "laguardia airport jetblue travel sandy hurricane \n", "\n", "\n", "#newyork I'm prayin for y'all #hurricane #sand #realimage #jesus 🙏 http://t.co/S5Daawe3\n", "\n", "--------------------------------------------------------\n", - "newyork prayin hurricane sand realimage jesus \n", + "new york prayin hurricane sand realimage jesus \n", "\n", "\n", "Scary!!!! #newyork #hurricane #sandy #newyorkcity #ny #fuckingrun http://t.co/TyKfkMAj\n", "\n", "--------------------------------------------------------\n", - "scary newyork hurricane sandy newyorkcity ny fuckingrun \n", + "scary new york hurricane sandy new yorkcity new york fuckingrun \n", "\n", "\n", "Que Deus proteja o Soho, a All Saints e a XL ! #Sandy #FuracãoSandy #Hurricane #NY #EUA http://t.co/uEXducey\n", "\n", "--------------------------------------------------------\n", - "deus proteja soho saints xl sandy furacãosandy hurricane ny eua \n", + "deus proteja saints xl sandy furacãosandy hurricane new york eua \n", "\n", "\n", "#sandy #hurricane #fun #usa http://t.co/I61JSFID\n", @@ -748,13 +756,13 @@ "#newyork #hurricane #terrore 😱 http://t.co/ESLk0NFC\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane terrore \n", + "new york hurricane terrore \n", "\n", "\n", "New York gonna be screwed #sandy #hurricane #newyork #fucked http://t.co/ntKAVNu4\n", "\n", "--------------------------------------------------------\n", - "new york gonna screwed sandy hurricane newyork fucked \n", + "new york gonna screwed sandy hurricane new york fucked \n", "\n", "\n", "Can't decide whether it's the #endoftheworld or just this #fucking #sandy #hurricane trying to #destroy the http://t.co/XLsHp7wC\n", @@ -766,19 +774,19 @@ "Um #legit #shark #flood #newjersey #hurricane #sandy http://t.co/frxwbmer\n", "\n", "--------------------------------------------------------\n", - "um legit shark flood newjersey hurricane sandy \n", + "legit shark flood newjersey hurricane sandy \n", "\n", "\n", "That is so creepy! Praying for you NY! #hurricane #sandy #statueofliberty http://t.co/MmXzbFDP\n", "\n", "--------------------------------------------------------\n", - "creepy praying ny hurricane sandy statueofliberty \n", + "creepy praying new york hurricane sandy statueofliberty \n", "\n", "\n", "THE PERFECT STORM:SANDY. #storm #nature #power #nyc #hurricane #sandy #perfect #igersnewyork #newyork #liber http://t.co/HPtWkoBg\n", "\n", "--------------------------------------------------------\n", - "perfect storm sandy storm nature power nyc hurricane sandy perfect igersnewyork newyork liber \n", + "perfect storm sandy storm nature power new york city hurricane sandy perfect igersnew york new york liber \n", "\n", "\n", "Crazy #hurricane #nofilter http://t.co/7D5R6ir1\n", @@ -790,13 +798,13 @@ "la foto de helenanovellas #newyork #sandy #hurricane http://t.co/iY0W1aTU\n", "\n", "--------------------------------------------------------\n", - "foto helenanovellas newyork sandy hurricane \n", + "foto helenanovellas new york sandy hurricane \n", "\n", "\n", "#sandy #NYC #Hurricane http://t.co/Kg9alCmy\n", "\n", "--------------------------------------------------------\n", - "sandy nyc hurricane \n", + "sandy new york city hurricane \n", "\n", "\n", "#hurricane #sandy #shark http://t.co/8uDQRoZv\n", @@ -808,85 +816,85 @@ "Yup, this definitely makes it seem like the world's ending.. #hurricane #newyork http://t.co/nSc8eVWA\n", "\n", "--------------------------------------------------------\n", - "yup definitely makes seem like world ending hurricane newyork \n", + "yup definitely makes seem like world ending hurricane new york \n", "\n", "\n", "#nyc #hurricane #sandy ☔ ☁ 🇺🇸 http://t.co/a9jKNIzd\n", "\n", "--------------------------------------------------------\n", - "nyc hurricane sandy \n", + "new york city hurricane sandy \n", "\n", "\n", "Hurricane Sandy looks like hell. #Sandy #hurricane #ny #newyork #storm #brutal http://t.co/4W32i4RQ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy looks like hell sandy hurricane ny newyork storm brutal \n", + "hurricane sandy looks like hell sandy hurricane new york new york storm brutal \n", "\n", "\n", "laurenliithiium's photo http://t.co/Eh4I06zt #nyc #hurricane\n", "\n", "--------------------------------------------------------\n", - "laurenliithiium photo nyc hurricane \n", + "laurenliithiium photo new york city hurricane \n", "\n", "\n", "Such an awesome shot... Hope everyone's alright #hurricanesandy #hurricane #sandy #nofilter #instalikes #awe http://t.co/nSVgXNBd\n", "\n", "--------------------------------------------------------\n", - "awesome shot hope everyone alright hurricanesandy hurricane sandy nofilter instalikes awe \n", + "awesome shot hope everyone alright hurricane sandy hurricane sandy nofilter instalikes awe \n", "\n", "\n", "So Beatiful But Yet So Tragic!!! #NewYork #Hurricane http://t.co/YGUbSiA1\n", "\n", "--------------------------------------------------------\n", - "beatiful yet tragic newyork hurricane \n", + "beatiful yet tragic new york hurricane \n", "\n", "\n", "stay safe east coast! #hurricane #sandy #NY #NewYork http://t.co/P9UPcHCU\n", "\n", "--------------------------------------------------------\n", - "stay safe east coast hurricane sandy ny newyork \n", + "stay safe east coast hurricane sandy new york new york \n", "\n", "\n", "#newyork #weather #hurricane #sandy #god #bless #audhubillah #storm #🌊☔⚡ http://t.co/a07eJIzi\n", "\n", "--------------------------------------------------------\n", - "newyork weather hurricane sandy god bless audhubillah storm \n", + "new york weather hurricane sandy god bless audhubillah storm \n", "\n", "\n", "That's cray 😳#nyc #hurricane #sandy #statueofliberty #newyorkharbor @ New York Harbor http://t.co/9nzjE5xY\n", "\n", "--------------------------------------------------------\n", - "cray nyc hurricane sandy statueofliberty newyorkharbor new york harbor \n", + "cray new york city hurricane sandy statueofliberty new yorkharbor new york harbor \n", "\n", "\n", "#sandy #ny #nypd #hurricane #hurricanesandy #storm #stunning http://t.co/bBRD6ReO\n", "\n", "--------------------------------------------------------\n", - "sandy ny nypd hurricane hurricanesandy storm stunning \n", + "sandy new york nypd hurricane hurricane sandy storm stunning \n", "\n", "\n", "Hurricane Sandy has arrived in NYC. #hurricane #sandy #instagreat #id4 http://t.co/u96j4PJM\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy arrived nyc hurricane sandy instagreat id4 \n", + "hurricane sandy arrived new york city hurricane sandy instagreat id4 \n", "\n", "\n", "East Coast, we all pray everything is ok and the storm would go away #amazing #picture #storm #hurricane #ny http://t.co/NyDxOm7L\n", "\n", "--------------------------------------------------------\n", - "east coast pray everything ok storm would go away amazing picture storm hurricane ny \n", + "east coast pray everything ok storm would go away amazing picture storm hurricane new york \n", "\n", "\n", "#ny #new #york #usa #winter #rain #hurricane #cool #beautiful #amazing http://t.co/gDmWySs3\n", "\n", "--------------------------------------------------------\n", - "ny new york usa winter rain hurricane cool beautiful amazing \n", + "new york new york usa winter rain hurricane cool beautiful amazing \n", "\n", "\n", "Sandy about to fuck shit up! #sandy #hurricane #hudsonriver #nyc #hurricanesandy #storm #statueofliberty #20 http://t.co/3uHRyfa8\n", "\n", "--------------------------------------------------------\n", - "sandy fuck shit sandy hurricane hudsonriver nyc hurricanesandy storm statueofliberty 20 \n", + "sandy fuck shit sandy hurricane hudsonriver new york city hurricane sandy storm statueofliberty0 \n", "\n", "\n", "Thoughts going out to people of America! #hurricane #sandy #thinkingofyou http://t.co/c5DDeTB7\n", @@ -904,7 +912,7 @@ "#sick #photo #sandy #hurricane #newyork #rain #wind #storm #omg #feest http://t.co/Shrp4KWQ\n", "\n", "--------------------------------------------------------\n", - "sick photo sandy hurricane newyork rain wind storm omg feest \n", + "sick photo sandy hurricane new york rain wind storm feest \n", "\n", "\n", "😳🏃💨💨💨🌊sharks in jersey!! #hurricane #sandy http://t.co/4vQxYlsT\n", @@ -922,7 +930,7 @@ "In case u missed it. 😮😐😬 #reallife #NY #hurricane #sandy #2012 http://t.co/x3QvKfFG\n", "\n", "--------------------------------------------------------\n", - "case missed reallife ny hurricane sandy 2012 \n", + "case missed reallife new york hurricane sandy012 \n", "\n", "\n", "Independence what? #sandy #perfect #hurricane http://t.co/lq0nzPg5\n", @@ -934,13 +942,13 @@ "SHARK in NJ Subs.\\n#hurricane #life #animal #instapic #instamood #photogram #photography #peta #shark http://t.co/K9NQ9mxM\n", "\n", "--------------------------------------------------------\n", - "shark nj subs hurricane life animal instapic instamood photogram photography peta shark \n", + "shark new jersey subs hurricane life animal instapic photogram photography peta shark \n", "\n", "\n", "#NY #hurricane #nature http://t.co/JPJyA2Sb\n", "\n", "--------------------------------------------------------\n", - "ny hurricane nature \n", + "new york hurricane nature \n", "\n", "\n", "prayers to the East Coast #Hurricane #Sandy http://t.co/PAwCbHtP\n", @@ -952,13 +960,13 @@ "Even Lady Liberty was scared 😱🗽🚣 #hurricane #sandy #2012 #lady #liberty #ny #scared #frenkenstrom #nj #tri-s http://t.co/5bjrREZA\n", "\n", "--------------------------------------------------------\n", - "even lady liberty scared hurricane sandy 2012 lady liberty ny scared frenkenstrom nj tri \n", + "even lady liberty scared hurricane sandy012 lady liberty new york scared frenkenstrom new jersey tri \n", "\n", "\n", "#hurricane #sandy #sky #ny #newyork #statue #liberty #news #amazing #omg #picoftheday #instagramers #clouds http://t.co/lfS1lYl2\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy sky ny newyork statue liberty news amazing omg picoftheday instagramers clouds \n", + "hurricane sandy sky new york new york statue liberty news amazing picoftheday instagramers clouds \n", "\n", "\n", "Got Sharks Swimming in the streets afte #Hurricane #Sandy came through New York http://t.co/LJzJDlJt\n", @@ -970,13 +978,13 @@ "#hurricane #sandy #NewYork #ny #nyc #manhattan #horrible #StatueOfLiberty #irony http://t.co/CSXAIXsw\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork ny nyc manhattan horrible statueofliberty irony \n", + "hurricane sandy new york new york new york city manhattan horrible statueofliberty irony \n", "\n", "\n", "No freakin' way!!! MT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy http://t.co/SiLpmnEY\n", "\n", "--------------------------------------------------------\n", - "freakin way shark swimming streets brigantine n j hurricane sandy \n", + "freakin way \n", "\n", "\n", "#soldiers #hurricane #loyalty http://t.co/2PRkRewa\n", @@ -994,13 +1002,13 @@ "Praying for New York. #newyork #sandy #hurricane #flood #disaster #sbcdr #prayer #instastorm Image created w http://t.co/I0Zoc5k9\n", "\n", "--------------------------------------------------------\n", - "praying new york newyork sandy hurricane flood disaster sbcdr prayer instastorm image created w \n", + "praying new york new york sandy hurricane flood disaster sbcdr prayer instastorm image created w \n", "\n", "\n", "#Sandy #Hurricane #NYC Shit is looking crazyyy over there !! http://t.co/Kw2QP7Ad\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane nyc shit looking crazyyy \n", + "sandy hurricane new york city shit looking crazyyy \n", "\n", "\n", "Nature is Sooo dope. #sandy #hurricane #staysafe #eastcoast #nature #liberty #eyeofstorm http://t.co/ixLQmCTZ\n", @@ -1018,37 +1026,37 @@ "ThisIsComical. (NotReal) #NYC #TimesSquare #Hurricane #Sandy #Weather #ThatBitch #RescuingTrainRats http://t.co/4M5Gsjrz\n", "\n", "--------------------------------------------------------\n", - "thisiscomical notreal nyc timessquare hurricane sandy weather thatbitch rescuingtrainrats \n", + "thisiscomical notreal new york city timessquare hurricane sandy weather thatbitch rescuingtrainrats \n", "\n", "\n", "#newyork #nyc #hurricane #sandy #frankenstorm #halloween #liberty #manhatten #storm #east #coast http://t.co/61fhZGob\n", "\n", "--------------------------------------------------------\n", - "newyork nyc hurricane sandy frankenstorm halloween liberty manhatten storm east coast \n", + "new york new york city hurricane sandy frankenstorm halloween liberty manhatten storm east coast \n", "\n", "\n", "#Hurricane #Sandy #NewYork. I hope not much damage is done at my 2nd home & that no one is badly hurt. http://t.co/OXIIW0DT\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork hope much damage done second home one badly hurt \n", + "hurricane sandy new york hope much damage done second home one badly hurt \n", "\n", "\n", "meanwhile in New Jersey.. #PRAY 4 #NewJersey & #EastCoast #hurricane #Sandy http://t.co/kSeObnAD\n", "\n", "--------------------------------------------------------\n", - "meanwhile new jersey pray 4 newjersey eastcoast hurricane sandy \n", + "meanwhile new jersey pray newjersey eastcoast hurricane sandy \n", "\n", "\n", "Holy ballz, New York. #weather #nyc #newyork #storm #sandy #hurricane #whoa #instahub #instagood #instadaily http://t.co/vkxHV6BB\n", "\n", "--------------------------------------------------------\n", - "holy ballz new york weather nyc newyork storm sandy hurricane whoa instahub instagood instadaily \n", + "holy ballz new york weather new york city new york storm sandy hurricane instahub instagood instadaily \n", "\n", "\n", "#hurricane #sandy #newyork #usa http://t.co/64lHUq67\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork usa \n", + "hurricane sandy new york usa \n", "\n", "\n", "#nodaysoff #tomboftheunknown #teamarmy #hurricane #sandy http://t.co/Mapas2EG\n", @@ -1060,13 +1068,13 @@ "#please let this be #fake #newyork #newyorkcity #nyc #hurricane #sandy #photooftheday #news #water #statueof http://t.co/fQirLTgl\n", "\n", "--------------------------------------------------------\n", - "please let fake newyork newyorkcity nyc hurricane sandy photooftheday news water statueof \n", + "please let fake new york new yorkcity new york city hurricane sandy photooftheday news water statueof \n", "\n", "\n", "Awesome pic of #NYC as #Sandy approaches. #sky #skyline #hurricane #hurricanesandy #Statue o @ New York City http://t.co/OdVrUjd0\n", "\n", "--------------------------------------------------------\n", - "awesome pic nyc sandy approaches sky skyline hurricane hurricanesandy statue new york city \n", + "awesome pic new york city sandy approaches sky skyline hurricane hurricane sandy statue new york city \n", "\n", "\n", "#Jersey #Sandy #Hurricane #Sharks out thea heavy ! This Storm is really a messy mess ! #DC has got the #Trop http://t.co/OpUwlEHZ\n", @@ -1084,7 +1092,7 @@ "this did not actually happen ,) #hurricanesandy #sandy #hurricane #blackout #scarry #apocalypse #igdaily #be http://t.co/ejaDyQWZ\n", "\n", "--------------------------------------------------------\n", - "actually happen hurricanesandy sandy hurricane blackout scarry apocalypse igdaily \n", + "actually happen hurricane sandy sandy hurricane blackout scarry apocalypse igdaily \n", "\n", "\n", "#hurricane #sandy shit just got real http://t.co/xtn0Nv0G\n", @@ -1114,13 +1122,13 @@ "oh you know..just driving down the street and...... Wtf is that a shark!!! #Sandy #Hurricane #2012problems http://t.co/peVPFO4L\n", "\n", "--------------------------------------------------------\n", - "oh know driving street wtf shark sandy hurricane 2012problems \n", + "know driving street shark sandy hurricane012problems \n", "\n", "\n", "Am I the only one that thinks that this pic is hot? #sandy #hurricane #nyc #storm #sky http://t.co/Pqg05sLq\n", "\n", "--------------------------------------------------------\n", - "one thinks pic hot sandy hurricane nyc storm sky \n", + "one thinks pic hot sandy hurricane new york city storm sky \n", "\n", "\n", "#valor #dedication #honor #usarmy #totus #rain #weather #sandy #hurricane http://t.co/AFBLsK72\n", @@ -1132,7 +1140,7 @@ "#NewYork #Hurricane #Sandy #Crazy #beautiful http://t.co/2F5RntGw\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane sandy crazy beautiful \n", + "new york hurricane sandy crazy beautiful \n", "\n", "\n", "#goodluck #eastcoast #storm #hurricane #sandy *what a bitch!* #bestwishes #praying for you #itagalot #love # http://t.co/HshlxXtN\n", @@ -1150,19 +1158,19 @@ "No fucking way! that shit looks scary haha. #nyc #hurricane #sandy http://t.co/vsc6KPJA\n", "\n", "--------------------------------------------------------\n", - "fucking way shit looks scary haha nyc hurricane sandy \n", + "fucking way shit looks scary new york city hurricane sandy \n", "\n", "\n", "Shittt #2012 #Hurricane #Sandy #Storm http://t.co/xUS1xUvj\n", "\n", "--------------------------------------------------------\n", - "shittt 2012 hurricane sandy storm \n", + "shittt012 hurricane sandy storm \n", "\n", "\n", "Found this on twitter. #cool #hurricane #sandy #nyc #newyorkcity #statueofliberty #newyork #storm #weather http://t.co/pRhrOMcf\n", "\n", "--------------------------------------------------------\n", - "found twitter cool hurricane sandy nyc newyorkcity statueofliberty newyork storm weather \n", + "found twitter cool hurricane sandy new york city new yorkcity statueofliberty new york storm weather \n", "\n", "\n", "uhm what?! #shark #scary #hurricane #highway http://t.co/4o4KyWLg\n", @@ -1180,7 +1188,7 @@ "#wow -- #nyc #hurricane #sandy --- #ghosttown --- I've only seen this in movies http://t.co/VWH2CPjL\n", "\n", "--------------------------------------------------------\n", - "wow nyc hurricane sandy ghosttown seen movies \n", + "new york city hurricane sandy ghosttown seen movies \n", "\n", "\n", "#sikmats #hurricane http://t.co/VAmyhgvF\n", @@ -1192,13 +1200,13 @@ "Praying for #newyork! 😲 #sandy #hurricane #storm #nyc #newyorkcity #pray #libertystate #instagram #instaphot http://t.co/yEdMTh0C\n", "\n", "--------------------------------------------------------\n", - "praying newyork sandy hurricane storm nyc newyorkcity pray libertystate instagram instaphot \n", + "praying new york sandy hurricane storm new york city new yorkcity pray libertystate instagram instaphot \n", "\n", "\n", "Just hanging with #sandy in brigantine. #nj #hurricane #sharks http://t.co/ZaNL0qqV\n", "\n", "--------------------------------------------------------\n", - "hanging sandy brigantine nj hurricane sharks \n", + "hanging sandy brigantine new jersey hurricane sharks \n", "\n", "\n", "Акула на шоссейной магистрали \\n#hurricane #sandy\\nhttp://t.co/sxXC9iU6\n", @@ -1210,19 +1218,19 @@ "Hurricane Sandy is on her way!! #photoftheday #hurricane #sandy #newyorkcity http://t.co/2HvJBOaC\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy way photoftheday hurricane sandy newyorkcity \n", + "hurricane sandy way photoftheday hurricane sandy new yorkcity \n", "\n", "\n", "Holy scary..#hurricane #newyork #nofilter #storm http://t.co/mCTyVocU\n", "\n", "--------------------------------------------------------\n", - "holy scary hurricane newyork nofilter storm \n", + "holy scary hurricane new york nofilter storm \n", "\n", "\n", "Statue of Liberty #HurricaneSandy #Sandy #hurricane http://t.co/nB7ZwHYS\n", "\n", "--------------------------------------------------------\n", - "statue liberty hurricanesandy sandy hurricane \n", + "statue liberty hurricane sandy sandy hurricane \n", "\n", "\n", "What a fucking amazing picture!! #Hurricane #sandy http://t.co/PPylAwi2\n", @@ -1252,7 +1260,7 @@ "Ok. Nevermind. That shit is super real. #FOH #wtf #imout #newjersey #sharks #hurricane #sandy #crazyshit http://t.co/cXNUIGdl\n", "\n", "--------------------------------------------------------\n", - "ok nevermind shit super real foh wtf imout newjersey sharks hurricane sandy crazyshit \n", + "ok nevermind shit super real f imout newjersey sharks hurricane sandy crazyshit \n", "\n", "\n", "You can leave now Sandy, you proved your point!! #bipolar #angry #Hurricane #woman #Sandy http://t.co/iAiiLeOI\n", @@ -1270,13 +1278,13 @@ "#Hurricane #Sandy #Frankenstorm #NewYork #Storm #Weather #StatueOfLiberty #EastCoast #Powerful #Beautiful #N http://t.co/KZXvEvNS\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy frankenstorm newyork storm weather statueofliberty eastcoast powerful beautiful n \n", + "hurricane sandy frankenstorm new york storm weather statueofliberty eastcoast powerful beautiful \n", "\n", "\n", "oh my god that is insane #nofilter #NYC #hurricane #sandy #skyporn #instagod #ig http://t.co/FFHEWsBN\n", "\n", "--------------------------------------------------------\n", - "oh god insane nofilter nyc hurricane sandy skyporn instagod ig \n", + "god insane nofilter new york city hurricane sandy skyporn instagod ig \n", "\n", "\n", "Woop woop.. lemme get my surfboard #Repost #Crazy #Hurricane #Sandy http://t.co/Z30k3WnB\n", @@ -1288,25 +1296,25 @@ "FaceBookでshareされまくってる画像。\\n#sandy #ny #nyc #hurricane http://t.co/H9L5X4c0\n", "\n", "--------------------------------------------------------\n", - "facebookでshareされまくってる画像 sandy ny nyc hurricane \n", + "facebookでshareされまくってる画像 sandy new york new york city hurricane \n", "\n", "\n", "All those in New York, stay safe. We keep you in our minds, love Australia. #newyork #hurricane #sandy #hurr http://t.co/enRrletq\n", "\n", "--------------------------------------------------------\n", - "new york stay safe keep minds love australia newyork hurricane sandy hurr \n", + "new york stay safe keep minds love australia new york hurricane sandy hurr \n", "\n", "\n", "Crazy! #Storm #ny #weather #hurricane http://t.co/yI1KrIfv\n", "\n", "--------------------------------------------------------\n", - "crazy storm ny weather hurricane \n", + "crazy storm new york weather hurricane \n", "\n", "\n", "There's a storm coming! #sandy #hurricane #newyork #nyc #igers #picoftheday #iphonesia http://t.co/UwFK7S4S\n", "\n", "--------------------------------------------------------\n", - "storm coming sandy hurricane newyork nyc igers picoftheday iphonesia \n", + "storm coming sandy hurricane new york new york city igers picoftheday iphonesia \n", "\n", "\n", "- Some one is WHYLIN for respect! \\n#Hurricane #Sandy #WFR #Extended #Weekend #IG #photo #Crazy #Wild http://t.co/kNmsGKMk\n", @@ -1318,13 +1326,13 @@ "Fuck you #hurricane #sandy #staysafe #newyork http://t.co/eyAqjHfw\n", "\n", "--------------------------------------------------------\n", - "fuck hurricane sandy staysafe newyork \n", + "fuck hurricane sandy staysafe new york \n", "\n", "\n", "Furacão Sandy nos EUA, impressionante! #hurricanesandy #sandy #hurricane #terrible #instapic #instagood #pic http://t.co/bZ9zrR7T\n", "\n", "--------------------------------------------------------\n", - "furacão sandy eua impressionante hurricanesandy sandy hurricane terrible instapic instagood pic \n", + "furacão sandy eua impressionante hurricane sandy sandy hurricane terrible instapic instagood pic \n", "\n", "\n", "Times Square like never before, almost empty. #hurricane #sandy #did #this http://t.co/qn4Zmf3M\n", @@ -1348,37 +1356,37 @@ "I really hope this isn't real #hurricane #sandy #newyork #statueofliberty #crazy #shit #frankinstorm http://t.co/gc6A9ZXE\n", "\n", "--------------------------------------------------------\n", - "really hope real hurricane sandy newyork statueofliberty crazy shit frankinstorm \n", + "really hope real hurricane sandy new york statueofliberty crazy shit frankinstorm \n", "\n", "\n", "Nunca imaginei imaginar essa cena na vida real... #chocada #eusoualenda #iamlegend #ny #newyork #hurricane # http://t.co/uSIMzw4n\n", "\n", "--------------------------------------------------------\n", - "nunca imaginei imaginar essa cena vida real chocada eusoualenda iamlegend ny newyork hurricane \n", + "nunca imaginei imaginar cena vida real chocada eusoualenda iamlegend new york new york hurricane \n", "\n", "\n", "Hurricane Sandy! #freaky #pretty #hurricane #sandy #crazy #weather #NewYork #clouds http://t.co/kjKCokh3\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy freaky pretty hurricane sandy crazy weather newyork clouds \n", + "hurricane sandy freaky pretty hurricane sandy crazy weather new york clouds \n", "\n", "\n", "This is amazing. #hurricane #tomboftheunknownsoldier #dc #military #usa http://t.co/rmdDVb5T\n", "\n", "--------------------------------------------------------\n", - "amazing hurricane tomboftheunknownsoldier dc military usa \n", + "amazing hurricane tomboftheunknown soldier dc military usa \n", "\n", "\n", "⚡⚡⚡ #sandy #hurricane #nyc #eastcoast #statueofliberty #NOW http://t.co/R5ChK2En\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane nyc eastcoast statueofliberty \n", + "sandy hurricane new york city eastcoast statueofliberty \n", "\n", "\n", "#today #nyc #hurricane #sandy #statue #of #liberty #rain #instapic #instabest #instacool #instashot #instada http://t.co/OKGjlzxA\n", "\n", "--------------------------------------------------------\n", - "today nyc hurricane sandy statue liberty rain instapic instabest instacool instashot instada \n", + "today new york city hurricane sandy statue liberty rain instapic instabest instacool instashot instada \n", "\n", "\n", "Shits about to get real. Take cover and stay safe. #Hurricane #Sandy http://t.co/NpQyqciD\n", @@ -1390,25 +1398,25 @@ "#usa #hurricane #sandy #new #york #newyork #statue #of #liberty #boat #weather #weatherporn #beautiful http://t.co/HxdYMCve\n", "\n", "--------------------------------------------------------\n", - "usa hurricane sandy new york newyork statue liberty boat weather weatherporn beautiful \n", + "usa hurricane sandy new york new york statue liberty boat weather weatherporn beautiful \n", "\n", "\n", "A picture was just taken for #NY #NYC #Sandy #Hurricane\\n(By proffisional Photographer) http://t.co/wyIQvBcO\n", "\n", "--------------------------------------------------------\n", - "picture taken ny nyc sandy hurricane proffisional photographer \n", + "picture taken new york new york city sandy hurricane proffisional photographer \n", "\n", "\n", "#newyork #nature #hurricane http://t.co/xSG7rbZ0\n", "\n", "--------------------------------------------------------\n", - "newyork nature hurricane \n", + "new york nature hurricane \n", "\n", "\n", "Hope everyone will be okay #hurricane #sandy #usa #newyork #like4like #sky #iphone http://t.co/sHQnXbS6\n", "\n", "--------------------------------------------------------\n", - "hope everyone okay hurricane sandy usa newyork like4like sky iphone \n", + "hope everyone okay hurricane sandy usa new york like4like sky iphone \n", "\n", "\n", "The deadly #hurricane #Sandy.. #Nature is so violent yet so #beautiful http://t.co/B7oE5Zqx\n", @@ -1420,49 +1428,49 @@ "Lady Liberty vs Hurricane Sandy #NYC #statue #liberty #hurricane #Sandy #2012 http://t.co/AkD4dU75\n", "\n", "--------------------------------------------------------\n", - "lady liberty vs hurricane sandy nyc statue liberty hurricane sandy 2012 \n", + "lady liberty versus hurricane sandy new york city statue liberty hurricane sandy012 \n", "\n", "\n", "Omg! Everyone on the east coast , stay strong! #hurricane #sandy #hurricanesandy #USA #east #coast #eastcoas http://t.co/aOFZhuNl\n", "\n", "--------------------------------------------------------\n", - "omg everyone east coast stay strong hurricane sandy hurricanesandy usa east coast eastcoas \n", + "everyone east coast stay strong hurricane sandy hurricane sandy usa east coast eastcoas \n", "\n", "\n", "Hurricane Sandy in NYC. Apocalypse now.\\n#sandy #hurricane #unitedstates #america #insta #instago #instame #i http://t.co/hXxAERo4\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc apocalypse sandy hurricane unitedstates america insta instago instame \n", + "hurricane sandy new york city apocalypse sandy hurricane unitedstates america insta instago instame \n", "\n", "\n", "Hurricane Sandy in USA\\n#hurricanesandy #Sandy #hurricane #wind #statueofliberty #USA #fear #water #rescue #9 http://t.co/qIdrF37n\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy usa hurricanesandy sandy hurricane wind statueofliberty usa fear water rescue 9 \n", + "hurricane sandy usa hurricane sandy sandy hurricane wind statueofliberty usa fear water rescue \n", "\n", "\n", "#Sandy #hurricane #NY #newyork #pic #byever #today #apocalypse #liberty http://t.co/oG7VSbHr\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane ny newyork pic byever today apocalypse liberty \n", + "sandy hurricane new york new york pic byever today apocalypse liberty \n", "\n", "\n", "#sandy #Crazy #hurricane #prayers #NYC http://t.co/IzY6DSfv\n", "\n", "--------------------------------------------------------\n", - "sandy crazy hurricane prayers nyc \n", + "sandy crazy hurricane prayers new york city \n", "\n", "\n", "Shark #NJ #NYC #EastCoast #USA #Sandy #Hurricane http://t.co/XAlPP1N6\n", "\n", "--------------------------------------------------------\n", - "shark nj nyc eastcoast usa sandy hurricane \n", + "shark new jersey new york city eastcoast usa sandy hurricane \n", "\n", "\n", "Can't believe this is what New York looks like! #newyork #statueofliberty #hurricane http://t.co/4srKR5DM\n", "\n", "--------------------------------------------------------\n", - "believe new york looks like newyork statueofliberty hurricane \n", + "believe new york looks like new york statueofliberty hurricane \n", "\n", "\n", "Praying for the city that I love and dream about going to. #Hurricane #Sandy #PRAYforNYC #eastcoast #IloveNY http://t.co/Rfm9lZrR\n", @@ -1486,25 +1494,19 @@ "New York, hurricane Sandy. #sandy #hurricane #eeuu #instagram #beautiful #landscape #ny #apple #iphonesia #i http://t.co/4KdkaQUe\n", "\n", "--------------------------------------------------------\n", - "new york hurricane sandy sandy hurricane eeuu instagram beautiful landscape ny apple iphonesia \n", + "new york hurricane sandy sandy hurricane eeuu instagram beautiful landscape new york apple iphonesia \n", "\n", "\n", "#hurricane #sandy #newyork #amazing 🌀☔☁😲 http://t.co/FqKB5ibe\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork amazing \n", - "\n", - "\n", - "😱👎🚤🏃💫#Hurricane #Sandy http://t.co/xOSEtTs3\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "hurricane sandy new york amazing \n", "\n", "\n", "This pic is crazy #Liberty #NYC #Hurricane #Sandy #Rain #Windy #Today #InstaGood #InstaMood #InstaLove @ NYC http://t.co/BSet8qi1\n", "\n", "--------------------------------------------------------\n", - "pic crazy liberty nyc hurricane sandy rain windy today instagood instamood instalove nyc \n", + "pic crazy liberty new york city hurricane sandy rain windy today instagood instalove new york city \n", "\n", "\n", "The beach I grew up going to. #rip #hurricane #sandy http://t.co/RB5BJpxz\n", @@ -1516,7 +1518,7 @@ "This #picture is #epic \\n\\n#nyc #hurricane #sandy #hurricanesandy #2012 #sky #woah #instamazing #instagreat #i http://t.co/UtJUqTvV\n", "\n", "--------------------------------------------------------\n", - "picture epic nyc hurricane sandy hurricanesandy 2012 sky woah instamazing instagreat \n", + "picture epic new york city hurricane sandy hurricane sandy012 sky woah instamazing instagreat \n", "\n", "\n", "Tomb of the Unknown Soldier during #Hurricane #Sandy. #USA #Military #Troops http://t.co/2grgyGJV\n", @@ -1528,37 +1530,37 @@ "This looks like something out of a movie. Pretty scary stuff. #hurricane #sandy #newyork http://t.co/ITQUg6LS\n", "\n", "--------------------------------------------------------\n", - "looks like something movie pretty scary stuff hurricane sandy newyork \n", + "looks like something movie pretty scary stuff hurricane sandy new york \n", "\n", "\n", "Sharks in Atlantic city #atlanticcity #nj #newjersey #sandy #hurricane #hurricanesandy #sharks #brigantine # http://t.co/xDK01TtJ\n", "\n", "--------------------------------------------------------\n", - "sharks atlantic city atlanticcity nj newjersey sandy hurricane hurricanesandy sharks brigantine \n", + "sharks atlantic city atlanticcity new jersey newjersey sandy hurricane hurricane sandy sharks brigantine \n", "\n", "\n", "#Hurricane #Sandy #StatueLiberty #NY http://t.co/WzwhRKqc\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy statueliberty ny \n", + "hurricane sandy statueliberty new york \n", "\n", "\n", "#hurricane #newyork #rain #storm #beautiful #scene #nature #subhanallah #amazing #clouds #city #scary ☁☔ http://t.co/xv93iuHh\n", "\n", "--------------------------------------------------------\n", - "hurricane newyork rain storm beautiful scene nature subhanallah amazing clouds city scary \n", + "hurricane new york rain storm beautiful scene nature subhanallah amazing clouds city scary \n", "\n", "\n", "Insanely powerful photo of hurricane Sandy. Be safe everyone!! #Hurricane #Sandy #NewYork #N @ Battery Park http://t.co/lShKsujq\n", "\n", "--------------------------------------------------------\n", - "insanely powerful photo hurricane sandy safe everyone hurricane sandy newyork n battery park \n", + "insanely powerful photo hurricane sandy safe everyone hurricane sandy new york battery park \n", "\n", "\n", "There's a shark roaming the waters in NJ! 😱😵😦 #sandy #hurricane #newjersey http://t.co/IPBurnsP\n", "\n", "--------------------------------------------------------\n", - "shark roaming waters nj sandy hurricane newjersey \n", + "shark roaming waters new jersey sandy hurricane newjersey \n", "\n", "\n", "#hurricane #sandy #PraysAndThoughts http://t.co/8dM2gwX8\n", @@ -1570,7 +1572,7 @@ "SANDY :O #sandy #storm #omg #like4like #follow4follow #statueofliberty #ny #newyork #clouds #hurricane #wow http://t.co/X5gHLWtd\n", "\n", "--------------------------------------------------------\n", - "sandy sandy storm omg like4like follow4follow statueofliberty ny newyork clouds hurricane wow \n", + "sandy sandy storm like4like follow4follow statueofliberty new york new york clouds hurricane \n", "\n", "\n", "Absolutely crazy. Photo cred from @phillip_rivers #hurricane #sandy http://t.co/E2hIyeLS\n", @@ -1582,19 +1584,19 @@ "This photo is amazing!! #superstorm #hurricane #newyork http://t.co/DBj5IYG7\n", "\n", "--------------------------------------------------------\n", - "photo amazing superstorm hurricane newyork \n", + "photo amazing superstorm hurricane new york \n", "\n", "\n", "Taken by @zupa2732 on the job in Times Square. Stay safe homie. #nyc #sandy #hurricane http://t.co/ZOBlEbH1\n", "\n", "--------------------------------------------------------\n", - "taken job times square stay safe homie nyc sandy hurricane \n", + "taken job times square stay safe homie new york city sandy hurricane \n", "\n", "\n", "#hurricane #sandy #newyork http://t.co/wRHV1wmv\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork \n", + "hurricane sandy new york \n", "\n", "\n", "#hurricane #sandy #crazy #scary http://t.co/08SIcUiX\n", @@ -1606,13 +1608,13 @@ "Holy frankenstorm! #newyork #frankenstorm #hurricane #sandy #insane http://t.co/8KB1tba1\n", "\n", "--------------------------------------------------------\n", - "holy frankenstorm newyork frankenstorm hurricane sandy insane \n", + "holy frankenstorm new york frankenstorm hurricane sandy insane \n", "\n", "\n", "Unbelievable photo as #Hurricane #Sandy sneaks up on the Statue of #Liberty in NYC #iwn http://t.co/zer6OwLo””\n", "\n", "--------------------------------------------------------\n", - "unbelievable photo hurricane sandy sneaks statue liberty nyc iwn \n", + "unbelievable photo hurricane sandy sneaks statue liberty new york city iwn \n", "\n", "\n", "Taken this morning at the Tomb...that's commitment. Staying strong through #Sandy. #Hurricane #RePost #Milit http://t.co/yCc2AEfe\n", @@ -1624,37 +1626,37 @@ "Nature can be so beautiful and interesting to look at but yet so deadly. #NewYork #Hurricane #Sandy 🙏 http://t.co/bhMmj4bF\n", "\n", "--------------------------------------------------------\n", - "nature beautiful interesting look yet deadly newyork hurricane sandy \n", + "nature beautiful interesting look yet deadly new york hurricane sandy \n", "\n", "\n", "#Hurricane #sandy #nyc crazy man !!!! http://t.co/lOh6dcfa\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc crazy \n", + "hurricane sandy new york city crazy \n", "\n", "\n", "Looking out my window to this is amazing!! #newyork #usa #sandy #hurricane #amazing #powerful #picoftheday # http://t.co/ogbaFvWe\n", "\n", "--------------------------------------------------------\n", - "looking window amazing newyork usa sandy hurricane amazing powerful picoftheday \n", + "looking window amazing new york usa sandy hurricane amazing powerful picoftheday \n", "\n", "\n", "#hurricane #Sandy #nyc #usa #pray #godbless #2012 🗽🇺🇸🌀☔☁🌊 http://t.co/vorgJebS\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc usa pray godbless 2012 \n", + "hurricane sandy new york city usa pray godbless012 \n", "\n", "\n", "#Sandy #Hurricane #Newyork http://t.co/n7VIlEEm\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane newyork \n", + "sandy hurricane new york \n", "\n", "\n", "Sandy almost here! #sandy #hurricane #nyc #photo #likeit #likeback #like4like #instaphoto #instadaily #inst http://t.co/OvlrwS8m\n", "\n", "--------------------------------------------------------\n", - "sandy almost sandy hurricane nyc photo likeit likeback like4like instaphoto instadaily inst \n", + "sandy almost sandy hurricane new york city photo likeit likeback like4like instaphoto instadaily inst \n", "\n", "\n", "#TrueHeros #UnknownSolders #Tomb #Sandy #Hurricane {These are true American Hero's that deserve more praise http://t.co/EOZTj5VJ\n", @@ -1672,7 +1674,7 @@ "Last image of NY #Live #NewYork #NY #Sandy #Hurricane #OMG #Bye http://t.co/NxtMzRh2\n", "\n", "--------------------------------------------------------\n", - "last image ny live newyork ny sandy hurricane omg bye \n", + "last image new york live new york new york sandy hurricane bye \n", "\n", "\n", "to people I know in the east coast, stay safe! #hurricane #sandy #safetyfirst #prayers http://t.co/9P8rgaH5\n", @@ -1690,19 +1692,19 @@ "Stay strong NEW YORK! #NYC #newyork vs #hurricane #sandy #gohomesandy #massive #storm #usa #eastcoast http://t.co/YM6PtzHz\n", "\n", "--------------------------------------------------------\n", - "stay strong new york nyc newyork vs hurricane sandy gohomesandy massive storm usa eastcoast \n", + "stay strong new york new york city new york versus hurricane sandy gomesandy massive storm usa eastcoast \n", "\n", "\n", "#hurricane #sandy #newyork #statueofliberty http://t.co/HRGqYgm5\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork statueofliberty \n", + "hurricane sandy new york statueofliberty \n", "\n", "\n", "Glad I got outa NY. Hurricane Sandy is crazy!! #hurricane #sandy #newyork http://t.co/wFSlLsC9\n", "\n", "--------------------------------------------------------\n", - "glad got outa ny hurricane sandy crazy hurricane sandy newyork \n", + "glad got outa new york hurricane sandy crazy hurricane sandy new york \n", "\n", "\n", "#Hurricane #Sandy approaching the #StatueofLiberty http://t.co/RdzzODeH\n", @@ -1714,19 +1716,19 @@ "#NY #Hurricane #Sandy #rain #scary http://t.co/pKmuDzCr\n", "\n", "--------------------------------------------------------\n", - "ny hurricane sandy rain scary \n", + "new york hurricane sandy rain scary \n", "\n", "\n", "#timessquare #nyc #sandy #hurricane http://t.co/GinqaGuQ\n", "\n", "--------------------------------------------------------\n", - "timessquare nyc sandy hurricane \n", + "timessquare new york city sandy hurricane \n", "\n", "\n", "Hang in there #newyork #thoughtsandprayers go out to you! #NYC #thatbitchsandy #hurricane #statueofliberty http://t.co/7FioGdp3\n", "\n", "--------------------------------------------------------\n", - "hang newyork thoughtsandprayers go nyc thatbitchsandy hurricane statueofliberty \n", + "hang new york thoughtsandprayers go new york city thatbitchsandy hurricane statueofliberty \n", "\n", "\n", "#USA #Hurricane #Sandy http://t.co/cvGwNr5a\n", @@ -1750,37 +1752,37 @@ "#newyorkers I introduced to you our new #transportation #system\\n #hurricane #sandy #Oct29 #2012 http://t.co/HTKdZLQX\n", "\n", "--------------------------------------------------------\n", - "newyorkers introduced new transportation system hurricane sandy oct29 2012 \n", + "new yorkers introduced new transportation system hurricane sandy oct29012 \n", "\n", "\n", "Oooo #NewYork #Hurricane #Sandy #Weather #Cool but #Shitty hahah http://t.co/t6Y3YshW\n", "\n", "--------------------------------------------------------\n", - "oooo newyork hurricane sandy weather cool shitty hahah \n", + "oooo new york hurricane sandy weather cool shitty hahah \n", "\n", "\n", "HOLY FUCK IS THIS REAL #sandy #hurricane #shark #scary #omg http://t.co/bLxrD80E\n", "\n", "--------------------------------------------------------\n", - "holy fuck real sandy hurricane shark scary omg \n", + "holy fuck real sandy hurricane shark scary \n", "\n", "\n", "Outside my cousin's house in #AtlanticCity #NJ #Shark #hurricane #sandy #hurricanesandy http://t.co/j9FMhF8G\n", "\n", "--------------------------------------------------------\n", - "outside cousin house atlanticcity nj shark hurricane sandy hurricanesandy \n", + "outside cousin house atlanticcity new jersey shark hurricane sandy hurricane sandy \n", "\n", "\n", "#regram #sharks at people's doorsteps in #Jersey #Hurricane #Sandy http://t.co/2kKrGh8K\n", "\n", "--------------------------------------------------------\n", - "regram sharks people doorsteps jersey hurricane sandy \n", + "sharks people doorsteps jersey hurricane sandy \n", "\n", "\n", "Shark swimming on the streets of NJ #shark #hurricane #sandy #new #jersey #pray http://t.co/4u1BpEaR\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets nj shark hurricane sandy new jersey pray \n", + "shark swimming streets new jersey shark hurricane sandy new jersey pray \n", "\n", "\n", "#hurricane #sandy #rain #flood http://t.co/arCfqNIx\n", @@ -1792,19 +1794,19 @@ "#newyorkcity today. #newyork #hurricane #crazy #nature #beautiful #enjoy http://t.co/aqkYQDCb\n", "\n", "--------------------------------------------------------\n", - "newyorkcity today newyork hurricane crazy nature beautiful enjoy \n", + "new yorkcity today new york hurricane crazy nature beautiful enjoy \n", "\n", "\n", "The day after tomorrow #Sandy #Hurricane #Storm #Rain #Cloudy #Newyork #Eastcoast #Usa #Flood ☔⚡☁🌀🌊 http://t.co/xPYE8yZ2\n", "\n", "--------------------------------------------------------\n", - "day tomorrow sandy hurricane storm rain cloudy newyork eastcoast usa flood \n", + "day tomorrow sandy hurricane storm rain cloudy new york eastcoast usa flood \n", "\n", "\n", "This was taken by my friends grandparents.. Wtf!! #hurricane #sandy #mysandy #crazy #flooded #shark #wtf #fu http://t.co/pKn2KWDK\n", "\n", "--------------------------------------------------------\n", - "taken friends grandparents wtf hurricane sandy mysandy crazy flooded shark wtf fu \n", + "taken friends grandparents hurricane sandy mysandy crazy flooded shark fu \n", "\n", "\n", "Shut the fuck up. This was just on the news, shark in my streets! #staysafenj #sandy #bitch #hurricane #shar http://t.co/Th2JoYyi\n", @@ -1816,7 +1818,7 @@ "Omg! #Hurricane #Sandy I got two word for you #SUCK #IT that shit cray http://t.co/4eIA0N4q\n", "\n", "--------------------------------------------------------\n", - "omg hurricane sandy got two word suck shit cray \n", + "hurricane sandy got two word suck shit cray \n", "\n", "\n", "No days off for these guys...respect and honor #sandydc #hurricane #military http://t.co/AgJlWro6\n", @@ -1840,55 +1842,55 @@ "The storm is mean, but sure is pretty. #StatueOfLiberty #hurricane #sandy #NJ #NYC http://t.co/NBWvjCnP\n", "\n", "--------------------------------------------------------\n", - "storm mean sure pretty statueofliberty hurricane sandy nj nyc \n", + "storm mean sure pretty statueofliberty hurricane sandy new jersey new york city \n", "\n", "\n", "Fuckin hell that is crazy shit #hurricane #sandy #prayer #scary #storm #statue #newyork http://t.co/yoh0ryeW\n", "\n", "--------------------------------------------------------\n", - "fuckin hell crazy shit hurricane sandy prayer scary storm statue newyork \n", + "fuckin hell crazy shit hurricane sandy prayer scary storm statue new york \n", "\n", "\n", "#hurricane #sandy shyt just hit ny http://t.co/JBABBpCO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy shyt hit ny \n", + "hurricane sandy shyt hit new york \n", "\n", "\n", "#wow #NY #hurricane #instagram http://t.co/azlEKTJr\n", "\n", "--------------------------------------------------------\n", - "wow ny hurricane instagram \n", + "new york hurricane instagram \n", "\n", "\n", "#soldiers #tomb #unknownsoldier #hurricane #usa #onpost #military #october #2012 #service #duty #sovereignty http://t.co/q2tyGSz7\n", "\n", "--------------------------------------------------------\n", - "soldiers tomb unknownsoldier hurricane usa onpost military october 2012 service duty sovereignty \n", + "soldiers tomb unknown soldier hurricane usa onpost military october012 service duty sovereignty \n", "\n", "\n", "NYC #scary #hurricane ⚡☔🌀🌊 http://t.co/cu275EB5\n", "\n", "--------------------------------------------------------\n", - "nyc scary hurricane \n", + "new york city scary hurricane \n", "\n", "\n", "#NYC #subway completely #flooded !!! #sandy #timessquare #manhattan #hurricanesandy #hurricane http://t.co/f9of5bC1\n", "\n", "--------------------------------------------------------\n", - "nyc subway completely flooded sandy timessquare manhattan hurricanesandy hurricane \n", + "new york city subway completely flooded sandy timessquare manhattan hurricane sandy hurricane \n", "\n", "\n", "#newyork #hurricane красиво и страшно😊 http://t.co/q5T0cDfr\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane красиво страшно \n", + "new york hurricane красиво страшно \n", "\n", "\n", "Omg... #sandy #hurricane #storm #sky #clouds #nature #morning #landscape #nyc #newyork #fear #bronx #statue http://t.co/EX9KIuXi\n", "\n", "--------------------------------------------------------\n", - "omg sandy hurricane storm sky clouds nature morning landscape nyc newyork fear bronx statue \n", + "sandy hurricane storm sky clouds nature morning landscape new york city new york fear bronx statue \n", "\n", "\n", "#holdfast #staystrong #carryon #tomboftheunknown #hurricane #sandy http://t.co/xbLpzhrq\n", @@ -1900,19 +1902,19 @@ "mmm K Now have seen it all QT Holy Shit Alert: shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy http://t.co/WlRrpxRI\n", "\n", "--------------------------------------------------------\n", - "mmm k seen qt holy shit alert shark swimming streets brigantine n j hurricane sandy \n", + "mmm k seen qt holy shit alert shark swimming streets brigantine hurricane sandy \n", "\n", "\n", "Incredible. #hurricane #hurricanesandy #hurricanesandy2012 #sandy http://t.co/s7JZrbJQ\n", "\n", "--------------------------------------------------------\n", - "incredible hurricane hurricanesandy hurricanesandy2012 sandy \n", + "incredible hurricane hurricane sandy hurricane sandy2012 sandy \n", "\n", "\n", "Take care NY 🇺🇸 #sandy #hurricane #storm #tormenta #NY http://t.co/t0AmYEWi\n", "\n", "--------------------------------------------------------\n", - "take care ny sandy hurricane storm tormenta ny \n", + "take care new york sandy hurricane storm tormenta new york \n", "\n", "\n", "Shark in the front yard.....#Hurricane #Sandy #Shark #NewJersey #NewPet #DontFeedTheAnimals http://t.co/t0ZzUd9B\n", @@ -1924,19 +1926,19 @@ "This photo is REAL but equally a whoa ... #timessquare #nyc #hurricane #sandy http://t.co/jDPru61V\n", "\n", "--------------------------------------------------------\n", - "photo real equally whoa timessquare nyc hurricane sandy \n", + "photo real equally timessquare new york city hurricane sandy \n", "\n", "\n", "#Marines stand guard in Washington D.C. ~ #USA #hurricane #sandy #godbless http://t.co/8ZhhD9eB\n", "\n", "--------------------------------------------------------\n", - "marines stand guard washington c usa hurricane sandy godbless \n", + "marines stand guard washington usa hurricane sandy godbless \n", "\n", "\n", "#nyc #sandy #hurricane #ellisisland #statueofliberty http://t.co/qorw1xMo\n", "\n", "--------------------------------------------------------\n", - "nyc sandy hurricane ellisisland statueofliberty \n", + "new york city sandy hurricane ellisisland statueofliberty \n", "\n", "\n", "Pray for New York! & all others affected by #Hurricane #Sandy http://t.co/lwoY5gkL\n", @@ -1960,7 +1962,7 @@ "Beautiful #real #NY #photographer #hurricane #sandy http://t.co/4apbQxy3\n", "\n", "--------------------------------------------------------\n", - "beautiful real ny photographer hurricane sandy \n", + "beautiful real new york photographer hurricane sandy \n", "\n", "\n", "This house has a new guest in their backyard Mr Shark. -_- imagine that #Sandy #hurricane 👀😶🙊😯😐 http://t.co/K2KcyD6b\n", @@ -1972,19 +1974,19 @@ "Wtf?! Sharks in the streets?!?! #HurricaneSandy #hurricane #sandy #flood #sharks #disaster @EfrainFigueroa @ http://t.co/95AGnFWo\n", "\n", "--------------------------------------------------------\n", - "wtf sharks streets hurricanesandy hurricane sandy flood sharks disaster \n", + "sharks streets hurricane sandy hurricane sandy flood sharks disaster \n", "\n", "\n", "No people, no car on the road. Pray for New York, USA 🙏✨#sandy #hurricane #newyork #usa cr. twitter http://t.co/2MAIFHf4\n", "\n", "--------------------------------------------------------\n", - "people car road pray new york usa sandy hurricane newyork usa cr twitter \n", + "people car road pray new york usa sandy hurricane new york usa cr twitter \n", "\n", "\n", "Super #crazy but #amazing #photo #instapic #hurricane #sandy so #sad.#prayer to #eastcoast #newyork #ny #sta http://t.co/SEwrxvzv\n", "\n", "--------------------------------------------------------\n", - "super crazy amazing photo instapic hurricane sandy sad prayer eastcoast newyork ny sta \n", + "super crazy amazing photo instapic hurricane sandy sad prayer eastcoast new york new york sta \n", "\n", "\n", "Standing by the soldier still. Even in the hurricane #sad #respect #aww #cute #weather #hurricane #sandy #ra http://t.co/WSgLTawJ\n", @@ -2002,19 +2004,19 @@ "L'uragano Sandy New York 2012 #Sandy #hurricane #landscape #photo #instaphoto http://t.co/cjZElQBL\n", "\n", "--------------------------------------------------------\n", - "l uragano sandy new york 2012 sandy hurricane landscape photo instaphoto \n", + "uragano sandy new york012 sandy hurricane landscape photo instaphoto \n", "\n", "\n", "Prayers go out to the easy coast #igdaily #hurricane #sandy #nyc #liberty http://t.co/lqQXPZfF\n", "\n", "--------------------------------------------------------\n", - "prayers go easy coast igdaily hurricane sandy nyc liberty \n", + "prayers go easy coast igdaily hurricane sandy new york city liberty \n", "\n", "\n", "#hurricane #dayaftertomorrow #nyc #statueofliberty #ladyliberty #mothernature #sick http://t.co/lzIHl1He\n", "\n", "--------------------------------------------------------\n", - "hurricane dayaftertomorrow nyc statueofliberty ladyliberty mothernature sick \n", + "hurricane dayaftertomorrow new york city statueofliberty ladyliberty mothernature sick \n", "\n", "\n", "Tomb of the Unknown Soldier. During #Hurricane #Sandy #Armylife http://t.co/k0XT9Boi\n", @@ -2026,7 +2028,7 @@ "Fucking hell! #hurricane #sandy #nyc #disaster #mental #shitson http://t.co/Br0cXxD4\n", "\n", "--------------------------------------------------------\n", - "fucking hell hurricane sandy nyc disaster mental shitson \n", + "fucking hell hurricane sandy new york city disaster mental shitson \n", "\n", "\n", "Good lucky america #usa #storm #sandy #nature #hurricane http://t.co/VeRMAtpq\n", @@ -2044,19 +2046,19 @@ "Beautiful shot! #Hurricane #Sandy #NYC #StatueofLiberty http://t.co/eEQUK0LL\n", "\n", "--------------------------------------------------------\n", - "beautiful shot hurricane sandy nyc statueofliberty \n", + "beautiful shot hurricane sandy new york city statueofliberty \n", "\n", "\n", "New photo floating around the net #nyc #newyorkcity #hurricane #sandy http://t.co/HchI32mI\n", "\n", "--------------------------------------------------------\n", - "new photo floating around net nyc newyorkcity hurricane sandy \n", + "new photo floating around net new york city new yorkcity hurricane sandy \n", "\n", "\n", "And this is How it looks like in NY. #Hurricane #Sandy #NewYork http://t.co/rfpw51Q3\n", "\n", "--------------------------------------------------------\n", - "looks like ny hurricane sandy newyork \n", + "looks like new york hurricane sandy new york \n", "\n", "\n", "#hurricane #sandy #crazy praying for everyone in new York http://t.co/RcQhiYRg\n", @@ -2086,13 +2088,13 @@ "How amazing but how devastating it is going to be #hurricane #america #newyork #peaceful #nature #beautiful http://t.co/KjYlHg7c\n", "\n", "--------------------------------------------------------\n", - "amazing devastating going hurricane america newyork peaceful nature beautiful \n", + "amazing devastating going hurricane america new york peaceful nature beautiful \n", "\n", "\n", "Shark swimming in flooded areas near NJ home. #hellno #Sandy #Hurricane http://t.co/Hz1xc6y6\n", "\n", "--------------------------------------------------------\n", - "shark swimming flooded areas near nj home hellno sandy hurricane \n", + "shark swimming flooded areas near new jersey home hellno sandy hurricane \n", "\n", "\n", "Praying for my mom and uncle up north as they endure Hurricane Sandy! #hurricane #sandy #eastcoast #storm # http://t.co/ogZ0F5ST\n", @@ -2110,25 +2112,19 @@ "#wow #NewYork #hurricane #sandy #scary #endoftheworld http://t.co/YfpbIVPU\n", "\n", "--------------------------------------------------------\n", - "wow newyork hurricane sandy scary endoftheworld \n", + "new york hurricane sandy scary endoftheworld \n", "\n", "\n", "#sandy #whoa #werelucky #flooded #nyc #statueofliberty #hurricane #storm #thatshhcray http://t.co/TgBcT3Ii\n", "\n", "--------------------------------------------------------\n", - "sandy whoa werelucky flooded nyc statueofliberty hurricane storm thatshhcray \n", - "\n", - "\n", - "#nyc #hurricane #sandy http://t.co/qT0fxdm6\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricane sandy \n", + "sandy werelucky flooded new york city statueofliberty hurricane storm thatshhcray \n", "\n", "\n", "#newyork #hurricane #sandy #statueofliberty http://t.co/HfWkeMsX\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane sandy statueofliberty \n", + "new york hurricane sandy statueofliberty \n", "\n", "\n", "#Frankenstorm #Hurricane #Sandy http://t.co/MFm6yEWb\n", @@ -2140,43 +2136,43 @@ "#flood #hurricane #sandy #shark #frontlawn #crazy #wtf http://t.co/yW5lhxvu\n", "\n", "--------------------------------------------------------\n", - "flood hurricane sandy shark frontlawn crazy wtf \n", + "flood hurricane sandy shark frontlawn crazy \n", "\n", "\n", "#Hurricane #Sandy #NYC #NewYork #NY #Manhattan #statueofliberty #MsLiberty http://t.co/L4IdKfeW\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc newyork ny manhattan statueofliberty msliberty \n", + "hurricane sandy new york city new york new york manhattan statueofliberty msliberty \n", "\n", "\n", "Tomb of the Unknown in Washington, DC in the midst of #Hurricane #Sandy! #Wow #America http://t.co/wbf2tPnO\n", "\n", "--------------------------------------------------------\n", - "tomb unknown washington dc midst hurricane sandy wow america \n", + "tomb unknown washington dc midst hurricane sandy america \n", "\n", "\n", "#hurricane #sandy #longisland #newyork #nyc #ny #nature #storm #amazing http://t.co/xrOSUQMW\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy longisland newyork nyc ny nature storm amazing \n", + "hurricane sandy longisland new york new york city new york nature storm amazing \n", "\n", "\n", "It's #hurricane time in #NY Hope you all good #NY Followers pic via @therealswizzz http://t.co/TEl0RDzg\n", "\n", "--------------------------------------------------------\n", - "hurricane time ny hope good ny followers pic \n", + "hurricane time new york hope good new york followers pic \n", "\n", "\n", "#ny #sandy #hurricane http://t.co/JTVaNZOP\n", "\n", "--------------------------------------------------------\n", - "ny sandy hurricane \n", + "new york sandy hurricane \n", "\n", "\n", "Keep safe NYC #Hurricane #Sandy http://t.co/JShdYWXf\n", "\n", "--------------------------------------------------------\n", - "keep safe nyc hurricane sandy \n", + "keep safe new york city hurricane sandy \n", "\n", "\n", "My thoughts & prayers go out to everyone on the East Coast effected by Hurricane Sandy. #hurricane #sandy #h http://t.co/cEtgdess\n", @@ -2188,7 +2184,7 @@ "😳😳😳 #wtf #hurricane #sandy #nyc #statueofliberty #waves 🌊🗽⚡☔ @ NYC http://t.co/uXA88pXq\n", "\n", "--------------------------------------------------------\n", - "wtf hurricane sandy nyc statueofliberty waves nyc \n", + "hurricane sandy new york city statueofliberty waves new york city \n", "\n", "\n", "HUGE amount of respect for these guys. They don't let #hurricane #sandy stop them from protecting the Tomb O http://t.co/FfuYK9Nc\n", @@ -2218,19 +2214,19 @@ "Amazing photo of #hurricane #sandy i hope everyone in its path is safe..... #2012 #eastcoast #staysafe #Amer http://t.co/TmRusW6y\n", "\n", "--------------------------------------------------------\n", - "amazing photo hurricane sandy hope everyone path safe 2012 eastcoast staysafe amer \n", + "amazing photo hurricane sandy hope everyone path safe 2 eastcoast staysafe amer \n", "\n", "\n", "This is Badass looking. #hurricane #newyork http://t.co/8nwZwnKJ\n", "\n", "--------------------------------------------------------\n", - "badass looking hurricane newyork \n", + "badass looking hurricane new york \n", "\n", "\n", "Hurricane Sandy heads toward New York #newyork #newyorker #nyc #us #stated #hurricane #sandy #storm #highwin http://t.co/BJDGO2FO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy heads toward new york newyork newyorker nyc us stated hurricane sandy storm highwin \n", + "hurricane sandy heads toward new york new york new yorker new york city us stated hurricane sandy storm highwin \n", "\n", "\n", "If you don't have respect for these guys, tell me, that way I know never to respect you again. #hurricane #s http://t.co/SFHSqqfG\n", @@ -2242,7 +2238,7 @@ "Oh New York 😞😩😫🗽🇺🇸 #hurricane #sandy #help http://t.co/gO2vUj4i\n", "\n", "--------------------------------------------------------\n", - "oh new york hurricane sandy help \n", + "new york hurricane sandy help \n", "\n", "\n", "Maaan it's crazy #sandy #hurricane http://t.co/3WnqKydB\n", @@ -2260,25 +2256,25 @@ "Dam shits gettin real #nyc #hurricane #sandy ☁☁☁⚡⚡⚡☔☔🌀🌀🌀🌊🌊🌊🚣🚣🚣💦💦💦💧💧💧😮😮😮 http://t.co/L117IXb5\n", "\n", "--------------------------------------------------------\n", - "dam shits gettin real nyc hurricane sandy \n", + "dam shits gettin real new york city hurricane sandy \n", "\n", "\n", "That's crazy #hurricane #newyork #statueofliberty #crazy #what #storm #sandy http://t.co/s4yCnmSw\n", "\n", "--------------------------------------------------------\n", - "crazy hurricane newyork statueofliberty crazy storm sandy \n", + "crazy hurricane new york statueofliberty crazy storm sandy \n", "\n", "\n", "Prend en de la graine @NicoBarto ! #ouragan #sandy #hurricane #ny #new #york http://t.co/sXxcHJf3\n", "\n", "--------------------------------------------------------\n", - "prend graine ouragan sandy hurricane ny new york \n", + "prend graine ouragan sandy hurricane new york new york \n", "\n", "\n", "New York, la città che non dorme mai, é in silenzio. #newyork #hurricane #statueofliberty #wave #prayforNe http://t.co/aRhiCG1w\n", "\n", "--------------------------------------------------------\n", - "new york città che non dorme mai é silenzio newyork hurricane statueofliberty wave prayforne \n", + "new york città che non dorme mai silenzio new york hurricane statueofliberty wave prayforne \n", "\n", "\n", "#Crazy picture. #Hurricane😱 http://t.co/45xwnama\n", @@ -2296,49 +2292,43 @@ "Unbelievable! #hurricane #sandy #newyork #empirestate http://t.co/19TqqIwC\n", "\n", "--------------------------------------------------------\n", - "unbelievable hurricane sandy newyork empirestate \n", + "unbelievable hurricane sandy new york empirestate \n", "\n", "\n", "#repost from @sheranescloset .. Wow! #pray #photo #scary #water #newyork #hurricane #sandy #wow #liberty #st http://t.co/ZLq27Np8\n", "\n", "--------------------------------------------------------\n", - "repost wow pray photo scary water newyork hurricane sandy wow liberty st \n", + "repost pray photo scary water new york hurricane sandy liberty st \n", "\n", "\n", "Crazy pic taken in #NewYork today! #Hurricane #sandy #crazy #storms #statueofliberty #nyc to all my friends http://t.co/hymM7YZt\n", "\n", "--------------------------------------------------------\n", - "crazy pic taken newyork today hurricane sandy crazy storms statueofliberty nyc friends \n", + "crazy pic taken new york today hurricane sandy crazy storms statueofliberty new york city friends \n", "\n", "\n", "#omg #storm #eastcoast #hurricane #statueofliberty #NYC #wow #staysafe http://t.co/mUjUEbwB\n", "\n", "--------------------------------------------------------\n", - "omg storm eastcoast hurricane statueofliberty nyc wow staysafe \n", - "\n", - "\n", - "#hurricane #sandy #NY http://t.co/NmR7m5ml\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy ny \n", + "storm eastcoast hurricane statueofliberty new york city staysafe \n", "\n", "\n", "https://t.co/MFTWc7Tk Wow... Wat heftig... Hoop dat mn familie daar ongedeerd blijft.. #hurricane #Sandy\n", "\n", "--------------------------------------------------------\n", - "wow heftig hoop mn familie ongedeerd blijft hurricane sandy \n", + "heftig hoop mn familie ongedeerd blijft hurricane sandy \n", "\n", "\n", "#Metaphor Symbol of Freedom devoured by #MotherNature and her Fury The Beauty of Nature #NY #Hurricane #Stat http://t.co/cQu21DkR\n", "\n", "--------------------------------------------------------\n", - "metaphor symbol freedom devoured mothernature fury beauty nature ny hurricane stat \n", + "metaphor symbol freedom devoured mothernature fury beauty nature new york hurricane stat \n", "\n", "\n", "I used to fear dogs off leashes in my neighborhood not sharks lol this is crazy #hurricane #sandy #flood #sh http://t.co/lLaWztXC\n", "\n", "--------------------------------------------------------\n", - "used fear dogs leashes neighborhood sharks lol crazy hurricane sandy flood sh \n", + "used fear dogs leashes neighborhood sharks crazy hurricane sandy flood \n", "\n", "\n", "#Sandy wildin'... Sharks in the streets... No one is safe... #RNS #Hurricane #wave http://t.co/2QKzhF6f\n", @@ -2350,25 +2340,25 @@ "That bitch sandy is cray. #nofilter #sandy #hurricane #statueofliberty #nyc http://t.co/9fQwSJbL\n", "\n", "--------------------------------------------------------\n", - "bitch sandy cray nofilter sandy hurricane statueofliberty nyc \n", + "bitch sandy cray nofilter sandy hurricane statueofliberty new york city \n", "\n", "\n", "Sandy On NYC #newyork #nyc #newyorkcity #sandy #hurricane #liberty #status #weather #usa #october #sea #bad http://t.co/j290x8m3\n", "\n", "--------------------------------------------------------\n", - "sandy nyc newyork nyc newyorkcity sandy hurricane liberty status weather usa october bad \n", + "sandy new york city new york new york city new yorkcity sandy hurricane liberty status weather usa october bad \n", "\n", "\n", "#sand #nyc #newyorkcity #hurricane http://t.co/qNjqb7es\n", "\n", "--------------------------------------------------------\n", - "sand nyc newyorkcity hurricane \n", + "sand new york city new yorkcity hurricane \n", "\n", "\n", "Times Square. New York, hurricane Sandy. #sandy #hurricane #eeuu #instagram #beautiful #landscape #ny #apple http://t.co/gPELGk5v\n", "\n", "--------------------------------------------------------\n", - "times square new york hurricane sandy sandy hurricane eeuu instagram beautiful landscape ny apple \n", + "times square new york hurricane sandy sandy hurricane eeuu instagram beautiful landscape new york apple \n", "\n", "\n", "#shark #sandy #hurricane #newjersey http://t.co/drEpPv0f\n", @@ -2380,7 +2370,7 @@ "WOOOOOW .. A scene from New York during the #Sandy #hurricane ... Impressive and horrible. Just wow! #photography #NYC http://t.co/3oqrqXjw\n", "\n", "--------------------------------------------------------\n", - "wooooow scene new york sandy hurricane impressive horrible wow photography nyc \n", + "wooooow scene new york sandy hurricane impressive horrible photography new york city \n", "\n", "\n", "New liked picture on #instagram \"Standing watch over the faves even through the storm #sandy #hurricane #... http://t.co/uCUwSaJY\n", @@ -2392,7 +2382,7 @@ "Nah...shit just got real! #hurricane http://t.co/K2AGM2Lh\n", "\n", "--------------------------------------------------------\n", - "nah shit got real hurricane \n", + "shit got real hurricane \n", "\n", "\n", "Just a #shark patrolling a flooded neighborhood.. No big deal. #hurricane #sandy #ridiculous #flood #holyshi http://t.co/0ui2GkTD\n", @@ -2404,19 +2394,19 @@ "Amazing photo but hope everyone in New York is okay, #newyork #NY #storm #hurricane #sandy http://t.co/YVmEAcTS\n", "\n", "--------------------------------------------------------\n", - "amazing photo hope everyone new york okay newyork ny storm hurricane sandy \n", + "amazing photo hope everyone new york okay new york new york storm hurricane sandy \n", "\n", "\n", "This reminds me of something out of the #movie #2012 #scary #nyc #hurricane http://t.co/U1UenkwX\n", "\n", "--------------------------------------------------------\n", - "reminds something movie 2012 scary nyc hurricane \n", + "reminds something movie012 scary new york city hurricane \n", "\n", "\n", "Que trauma. #NewYork #StatueOfLiberty #hurricane #horrible 😖😰 http://t.co/l5hORH1t\n", "\n", "--------------------------------------------------------\n", - "trauma newyork statueofliberty hurricane horrible \n", + "trauma new york statueofliberty hurricane horrible \n", "\n", "\n", "Found this pic on Facebook... Hope it's not real! #shark #hurricane #sandy #frankenstorm http://t.co/yHeotiSv\n", @@ -2428,7 +2418,7 @@ "#hurricane #sandy #newyork #oct29/12 http://t.co/M7AvrfJo\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork oct29 12 \n", + "hurricane sandy new york oct292 \n", "\n", "\n", "Y'all be safe!! #hurricane #Sandy #eastcoast http://t.co/C6C6bRcY\n", @@ -2452,37 +2442,25 @@ "I used to fear dogs off leashes inmyneighborhood not sharks lol this is crazy #hurricane #sandy #flood #sh http://t.co/Jyi3HUqi @/joepas914\n", "\n", "--------------------------------------------------------\n", - "used fear dogs leashes inmyneighborhood sharks lol crazy hurricane sandy flood sh joepas914 \n", + "used fear dogs leashes inmyneighborhood sharks crazy hurricane sandy flood joepas914 \n", "\n", "\n", "It's the end of the world as we know it... #Hurricane #Sandy #NYC #lyrics #REM http://t.co/FMRTag1b\n", "\n", "--------------------------------------------------------\n", - "end world know hurricane sandy nyc lyrics rem \n", + "end world know hurricane sandy new york city lyrics rem \n", "\n", "\n", "#newyork #sandy #hurricane #crazy http://t.co/QQxZOKul\n", "\n", "--------------------------------------------------------\n", - "newyork sandy hurricane crazy \n", - "\n", - "\n", - "@TcaflikestoRAGE 😂 #hurricane #sandy http://t.co/lOypXarW\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", - "@calbartos: @DJsmethy http://t.co/3ZTmD7Ai #hurricane #Sandy #hurricanesand\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy hurricanesand \n", + "new york sandy hurricane crazy \n", "\n", "\n", "This is #NewYork right now #Sandy #Hurricane #Crazy #Dark #NYC #City http://t.co/641jyEL0\n", "\n", "--------------------------------------------------------\n", - "newyork right sandy hurricane crazy dark nyc city \n", + "new york right sandy hurricane crazy dark new york city city \n", "\n", "\n", "Respect ☔☁⚡💦 #soldier #hurricane #sandy http://t.co/9Rr94bzg\n", @@ -2494,19 +2472,19 @@ "Mother Nature Showing Her Awesome Power! #storm #NYC #hurricane #weather #nature #rain #leavetown http://t.co/LNE14W7k\n", "\n", "--------------------------------------------------------\n", - "mother nature showing awesome power storm nyc hurricane weather nature rain leavetown \n", + "mother nature showing awesome power storm new york city hurricane weather nature rain leavetown \n", "\n", "\n", "Thinking & praying for my bro in New York. (Photo via eswhoo) #hurricane #sandy #staysafe http://t.co/f3tZwbdA\n", "\n", "--------------------------------------------------------\n", - "thinking praying bro new york photo via eswhoo hurricane sandy staysafe \n", + "thinking praying myin new york photoeswhoo hurricane sandy staysafe \n", "\n", "\n", "Shit got real yesterday. #sandy #fucksandy #hurricane #nyc #nyu #timessquare #refugee #2012 http://t.co/2lhsinu1\n", "\n", "--------------------------------------------------------\n", - "shit got real yesterday sandy fucksandy hurricane nyc nyu timessquare refugee 2012 \n", + "shit got real yesterday sandy fucksandy hurricane new york city nyu timessquare refugee012 \n", "\n", "\n", "Tomb of the Unknown Solider still being guarded, God Bless! #Hurricane #Sandy can't scare the #USMilitary http://t.co/QDDPkxYZ\n", @@ -2518,37 +2496,37 @@ "Wow.. #hurricane #storm #newyork #sandy http://t.co/f7eAmKWW\n", "\n", "--------------------------------------------------------\n", - "wow hurricane storm newyork sandy \n", + "hurricane storm new york sandy \n", "\n", "\n", "#patchogue #bay #shark #flooding #hurricane #sandy #hurricanesandy http://t.co/cUOrVJrd\n", "\n", "--------------------------------------------------------\n", - "patchogue bay shark flooding hurricane sandy hurricanesandy \n", + "patchogue bay shark flooding hurricane sandy hurricane sandy \n", "\n", "\n", "#NewYorkCity #StatueOfLiberty #Hurricane #Sandy #picoftheday #kcco http://t.co/qjHTNb6f\n", "\n", "--------------------------------------------------------\n", - "newyorkcity statueofliberty hurricane sandy picoftheday kcco \n", + "new yorkcity statueofliberty hurricane sandy picoftheday kcco \n", "\n", "\n", "#Hurricane #Sandy #2012 http://t.co/Frs9Awn8\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy 2012 \n", + "hurricane sandy012 \n", "\n", "\n", "frankenstorm sandy...pray for the new yorkers!! #instagram #iphonesia #hurricane #newyork #sandy #instadaily http://t.co/T0tKeNlQ\n", "\n", "--------------------------------------------------------\n", - "frankenstorm sandy pray new yorkers instagram iphonesia hurricane newyork sandy instadaily \n", + "frankenstorm sandy pray new yorkers instagram iphonesia hurricane new york sandy instadaily \n", "\n", "\n", "This photo of NYC looks like Armageddon http://t.co/vAd3kBXE #hurricane #sandy #weather #storm\n", "\n", "--------------------------------------------------------\n", - "photo nyc looks like armageddon hurricane sandy weather storm \n", + "photo new york city looks like armageddon hurricane sandy weather storm \n", "\n", "\n", "Love this picture! #hurricane #sandy #weather @weatherchannel http://t.co/SGtTvAZ6\n", @@ -2560,13 +2538,13 @@ "#respect #military #tomb #tomboftheunknownsoldier #rain #hurricane #sandy #hurricanesandy http://t.co/pHOdJ3F7\n", "\n", "--------------------------------------------------------\n", - "respect military tomb tomboftheunknownsoldier rain hurricane sandy hurricanesandy \n", + "respect military tomb tomboftheunknown soldier rain hurricane sandy hurricane sandy \n", "\n", "\n", "That looks so amazing. #beautiful #hurricanesandy #hurricane #sandy #nature #newyor @ Somerset Fire & Rescue http://t.co/JRxW4Nja\n", "\n", "--------------------------------------------------------\n", - "looks amazing beautiful hurricanesandy hurricane sandy nature newyor somerset fire rescue \n", + "looks amazing beautiful hurricane sandy hurricane sandy nature newyor somerset fire rescue \n", "\n", "\n", "#hurricane #sandy #amazing http://t.co/ymBfm4xc\n", @@ -2578,7 +2556,7 @@ "Cool storm pic. The power of Nature. #storm #hurricane #NYC http://t.co/g6cJvJ98\n", "\n", "--------------------------------------------------------\n", - "cool storm pic power nature storm hurricane nyc \n", + "cool storm pic power nature storm hurricane new york city \n", "\n", "\n", "#instacollage #hurricane #sandy is starting too look like #independence #day http://t.co/oUcnkcF5\n", @@ -2590,19 +2568,19 @@ "#shark seen swimming in a #NJ street. #hurricane #sandy http://t.co/i4RmgCWV\n", "\n", "--------------------------------------------------------\n", - "shark seen swimming nj street hurricane sandy \n", + "shark seen swimming new jersey street hurricane sandy \n", "\n", "\n", "#newyork #frankestorm #hurricane #nature #sky #amazing #usa #nyc http://t.co/rjceaPp1\n", "\n", "--------------------------------------------------------\n", - "newyork frankestorm hurricane nature sky amazing usa nyc \n", + "new york frankestorm hurricane nature sky amazing usa new york city \n", "\n", "\n", "Hello #Hurricane #Sandy #NY #Statue #Of #Liberty http://t.co/aMD75aeK\n", "\n", "--------------------------------------------------------\n", - "hello hurricane sandy ny statue liberty \n", + "hello hurricane sandy new york statue liberty \n", "\n", "\n", "Love it when a shark passes me on the highway. #sandy #hurricane #shark http://t.co/mN8D2Xzj\n", @@ -2620,31 +2598,31 @@ "Much Love to our NYC Fam right now! #City #Sandy #Hurricane #Brooklyn #Manhattan #Queens #TheBigApple http://t.co/KZCnqizn\n", "\n", "--------------------------------------------------------\n", - "much love nyc fam right city sandy hurricane brooklyn manhattan queens thebigapple \n", + "much love new york city fam right city sandy hurricane brooklyn manhattan queens thebigapple \n", "\n", "\n", "#miss #libby #in #the #storm #wind #cloud #last #night #new #york #scary #NYC #hurricane #sandy http://t.co/bo22jBZh\n", "\n", "--------------------------------------------------------\n", - "miss libby storm wind cloud last night new york scary nyc hurricane sandy \n", + "miss libby storm wind cloud last night new york scary new york city hurricane sandy \n", "\n", "\n", "#hurricane #NY #Amazing #nature #powerful #instawow #picoftheday http://t.co/1nQ71hzO\n", "\n", "--------------------------------------------------------\n", - "hurricane ny amazing nature powerful instawow picoftheday \n", + "hurricane new york amazing nature powerful insta picoftheday \n", "\n", "\n", "#Sandy #hurricane over #NYC http://t.co/NwuwBfvx\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane nyc \n", + "sandy hurricane new york city \n", "\n", "\n", "Sandy is in NYC.. Be safe! #sandy #ny #hurricane #newyork #city http://t.co/SubD947F\n", "\n", "--------------------------------------------------------\n", - "sandy nyc safe sandy ny hurricane newyork city \n", + "sandy new york city safe sandy new york hurricane new york city \n", "\n", "\n", "New York today. #hurricane #sandy http://t.co/elFUa3fX\n", @@ -2662,7 +2640,7 @@ "Wow ! Amazing photo of #hurricane #sandy approaching #NYC #frankenstorm http://t.co/cQmsvPfv\n", "\n", "--------------------------------------------------------\n", - "wow amazing photo hurricane sandy approaching nyc frankenstorm \n", + "amazing photo hurricane sandy approaching new york city frankenstorm \n", "\n", "\n", "#Sandy the #Hurricane cant stop the #HonorGaurd standing at the #TombOfTheUnknown #Soldier http://t.co/WvtpC4ii\n", @@ -2680,13 +2658,13 @@ "New York... #ny #hurricane #sandy #caution #newyork #nyc http://t.co/2zh491qU\n", "\n", "--------------------------------------------------------\n", - "new york ny hurricane sandy caution newyork nyc \n", + "new york new york hurricane sandy caution new york new york city \n", "\n", "\n", "#NewYork #Hurricane #Sandy #RecentPicture #ItJustGotReal #Beautiful yet #Painful #NoFilter http://t.co/A00PDzgi\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane sandy recentpicture itjustgotreal beautiful yet painful nofilter \n", + "new york hurricane sandy recentpicture itjustgotreal beautiful yet painful nofilter \n", "\n", "\n", "Wild picture of New York #sandy #hurricane http://t.co/xyYwQ2IO\n", @@ -2710,73 +2688,67 @@ "Looks as though it's Doomsday in New York! #Sandy #NewYork #hurricane http://t.co/ZZkaWpAU\n", "\n", "--------------------------------------------------------\n", - "looks though doomsday new york sandy newyork hurricane \n", - "\n", - "\n", - "#Hurricane #Sandy in #NYC http://t.co/tYCITOvD\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", + "looks though doomsday new york sandy new york hurricane \n", "\n", "\n", "#new york#big Apple #sandy #fear #hurricane http://t.co/t095nPDC\n", "\n", "--------------------------------------------------------\n", - "new york big apple sandy fear hurricane \n", + "new yorkbig apple sandy fear hurricane \n", "\n", "\n", "Holly shit #newyork #hurricane #sandy http://t.co/pRNwFmKI\n", "\n", "--------------------------------------------------------\n", - "holly shit newyork hurricane sandy \n", + "holly shit new york hurricane sandy \n", "\n", "\n", "Statue of Liberty #hurricane #sandy #newyork #liberty #island 🙈🗽🌊 http://t.co/84is9GLb\n", "\n", "--------------------------------------------------------\n", - "statue liberty hurricane sandy newyork liberty island \n", + "statue liberty hurricane sandy new york liberty island \n", "\n", "\n", "Noodweer in #NY #NewYork #New #York #hurricane #Sandy @ Hoofdtribune van Tilburg http://t.co/Wl1BfDrE\n", "\n", "--------------------------------------------------------\n", - "noodweer ny newyork new york hurricane sandy hoofdtribune tilburg \n", + "noodweer new york new york new york hurricane sandy hoofdtribune tilburg \n", "\n", "\n", "Sharks n shit in NJ streets 😳 #hurricane #sandy #fuckthat #ImDone #BeSafe http://t.co/goJbTQLu\n", "\n", "--------------------------------------------------------\n", - "sharks n shit nj streets hurricane sandy fuckthat imdone besafe \n", + "sharks shit new jersey streets hurricane sandy fuckthat imdone besafe \n", "\n", "\n", "Shark off a porch in Bigantine NJ! Would live to cast a clouser at it . http://t.co/tgR0KDDr #sandy #hurricane #flyfishing\n", "\n", "--------------------------------------------------------\n", - "shark porch bigantine nj would live cast clouser sandy hurricane flyfishing \n", + "shark porch bigantine new jersey would live cast clouser sandy hurricane flyfishing \n", "\n", "\n", "Zoo animals on the loose lol #Hurricane #Sandy #NYC http://t.co/bOGZI89Y\n", "\n", "--------------------------------------------------------\n", - "zoo animals loose lol hurricane sandy nyc \n", + "zoo animals loose hurricane sandy new york city \n", "\n", "\n", "#statue #of #liberty #today #new #york #newyork #hurricane #sandy #stay #safe http://t.co/ljHNsn1Y\n", "\n", "--------------------------------------------------------\n", - "statue liberty today new york newyork hurricane sandy stay safe \n", + "statue liberty today new york new york hurricane sandy stay safe \n", "\n", "\n", "NY City, crazy hurricane Sandy photo. #disaster #NY #hurricane #sandy #liberty http://t.co/yZfEQv6s\n", "\n", "--------------------------------------------------------\n", - "ny city crazy hurricane sandy photo disaster ny hurricane sandy liberty \n", + "new york city crazy hurricane sandy photo disaster new york hurricane sandy liberty \n", "\n", "\n", "That is crazy.. #repost #Hurricane #Sandy #OD #NYC #Wow http://t.co/Q6VN6ybJ\n", "\n", "--------------------------------------------------------\n", - "crazy repost hurricane sandy od nyc wow \n", + "crazy repost hurricane sandy od new york city \n", "\n", "\n", "Holly shit!!!! #hurricane #sandy http://t.co/GzNQnTrA\n", @@ -2788,31 +2760,31 @@ "#Crazy #Hurricane #Sandy #Pic #Shark #Swimming Through Flooded #NJ Streets @ Jersey Shore http://t.co/ziwhj84Z\n", "\n", "--------------------------------------------------------\n", - "crazy hurricane sandy pic shark swimming flooded nj streets jersey shore \n", + "crazy hurricane sandy pic shark swimming flooded new jersey streets jersey shore \n", "\n", "\n", "Amazing photo #nyc #hurricane http://t.co/6dbAsL2S\n", "\n", "--------------------------------------------------------\n", - "amazing photo nyc hurricane \n", + "amazing photo new york city hurricane \n", "\n", "\n", "Fucking nuts #hurricane #sandy #hurricanesandy #nyc #hiroshima #wishicouldofseenthis http://t.co/vHxMdEIb\n", "\n", "--------------------------------------------------------\n", - "fucking nuts hurricane sandy hurricanesandy nyc hiroshima wishicouldofseenthis \n", + "fucking nuts hurricane sandy hurricane sandy new york city hiroshima wishicouldofseenthis \n", "\n", "\n", "Woah #hurricane #newyork #nofilter http://t.co/BQQuzkea\n", "\n", "--------------------------------------------------------\n", - "woah hurricane newyork nofilter \n", + "woah hurricane new york nofilter \n", "\n", "\n", "#OMG Soooo #SAD A #shark in someone's front yard in #NewJersey #Hurricane #Sandy 😱😰😫😖.. 🙏☝ http://t.co/WNrLBiyJ\n", "\n", "--------------------------------------------------------\n", - "omg soooo sad shark someone front yard newjersey hurricane sandy \n", + "soooo sad shark someone front yard newjersey hurricane sandy \n", "\n", "\n", "Love this pic!!! #Hurricane; .... No excuse. #Army #TomboftheUnknown #DC #Arlington #Military http://t.co/MUgwoa9u\n", @@ -2824,13 +2796,13 @@ "Holy Shit Alert: shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy (via @sista71) #Frankenstorm http://t.co/qeKYh6Z1\n", "\n", "--------------------------------------------------------\n", - "holy shit alert shark swimming streets brigantine n j hurricane sandy frankenstorm \n", + "holy shit alert shark swimming streets brigantine hurricane sandy frankenstorm \n", "\n", "\n", "Alert: shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy (via http://t.co/OXH4KLnI http://t.co/MFUUUuer\n", "\n", "--------------------------------------------------------\n", - "alert shark swimming streets brigantine n j hurricane sandy via \n", + "alert shark swimming streets brigantine hurricane sandy \n", "\n", "\n", "#hurricane #sandy brings a shark to New Jersey front yard #superstorm #frankenstorm http://t.co/h4E9gUKr\n", @@ -2842,31 +2814,31 @@ "Eerie look in Manhattan. #sandy #nyc #weather #hurricane #photooftheday #picoftheday #bestoftheday http://t.co/Zd1FVMi3\n", "\n", "--------------------------------------------------------\n", - "eerie look manhattan sandy nyc weather hurricane photooftheday picoftheday bestoftheday \n", + "eerie look manhattan sandy new york city weather hurricane photooftheday picoftheday bestoftheday \n", "\n", "\n", "Stunning, but scary picture. Good luck to everyone in #NewYork. #Hurricane #Sandy http://t.co/TUELBwIR\n", "\n", "--------------------------------------------------------\n", - "stunning scary picture good luck everyone newyork hurricane sandy \n", + "stunning scary picture good luck everyone new york hurricane sandy \n", "\n", "\n", "#PRAYforNEWyork #PRAYforNEWjersey #hurricane http://t.co/Qi1K0HHt\n", "\n", "--------------------------------------------------------\n", - "prayfornewyork prayfornewjersey hurricane \n", + "prayfornew york prayfornewjersey hurricane \n", "\n", "\n", "Here comes #hurricane #sandy #NYC #newjersey #emergency #storm http://t.co/yMkye6WL\n", "\n", "--------------------------------------------------------\n", - "comes hurricane sandy nyc newjersey emergency storm \n", + "comes hurricane sandy new york city newjersey emergency storm \n", "\n", "\n", "Such a horrible thing but yet so beautiful! #NewYork #Hurricane http://t.co/0zh3aL64\n", "\n", "--------------------------------------------------------\n", - "horrible thing yet beautiful newyork hurricane \n", + "horrible thing yet beautiful new york hurricane \n", "\n", "\n", "#Hurricane #Sandy #Praying @jamiechesson @pjchesson http://t.co/fzq5GjIs\n", @@ -2878,7 +2850,7 @@ "“@lizprimo: #Hurricane #Sandy #Praying @jamiechesson @pjchesson http://t.co/ydp714Y2”- hey, it's illegal to use more than 1 # in a tweet.\n", "\n", "--------------------------------------------------------\n", - "hey illegal use 1 tweet \n", + "hey illegal use tweet \n", "\n", "\n", "#Sandy. That's sick. http://t.co/hE95DzK2\n", @@ -2890,7 +2862,7 @@ "Omg! Sharks swimming in new jersey wow that's absolute madness! #Sandy http://t.co/aGTRgR53\n", "\n", "--------------------------------------------------------\n", - "omg sharks swimming new jersey wow absolute madness sandy \n", + "sharks swimming new jersey absolute madness sandy \n", "\n", "\n", "Sandy's ruining everybody's day #dang #statueofliberty http://t.co/rle56RLN\n", @@ -2902,7 +2874,7 @@ "How crazy is that. Sandy moving into NY http://t.co/AOUYdb4k\n", "\n", "--------------------------------------------------------\n", - "crazy sandy moving ny \n", + "crazy sandy moving new york \n", "\n", "\n", "therealswizzz's photo http://t.co/CkozMCFt check sandy\n", @@ -2914,31 +2886,31 @@ "FURACAO SANDY: Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Olha: http://t.co/Io64bXM1\n", "\n", "--------------------------------------------------------\n", - "furacao sandy tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão olha \n", + "furacao sandy tubarões encontrados ruas nova jersey devido avanço mar causado furacão ol \n", "\n", "\n", "Wow, that's crazy. #Shark RT @MeschelLee: 😳 #Sandy http://t.co/zqaOCz6O\n", "\n", "--------------------------------------------------------\n", - "wow crazy shark \n", + "crazy shark \n", "\n", "\n", "http://t.co/c9TAyDBr \"There’s a shark in my friend’s lawn! Sandy u a crazy bitch.\" DAI TEM UM TUBARÃO NO GRAMADO DO SEU AMG E VC NO TUMBLR\n", "\n", "--------------------------------------------------------\n", - "shark friend lawn sandy crazy bitch dai tem um tubarão gramado seu amg vc tumblr \n", + "shark friend lawn sandy crazy bitch dai tubarão gramado amg vc tumblr \n", "\n", "\n", "Yu thought it was fake huh lol “@Truth_305: “@Booda646: Sandy on that 2012 world ending shit! 🙏 http://t.co/D5px78Ba” Mann what's this”\n", "\n", "--------------------------------------------------------\n", - "yu thought fake huh lol \n", + "yu thought fake huh \n", "\n", "\n", "#regram that's crazy sharks in neighborhoods #sandy http://t.co/WnkK7qin\n", "\n", "--------------------------------------------------------\n", - "regram crazy sharks neighborhoods sandy \n", + "crazy sharks neighborhoods sandy \n", "\n", "\n", "Sandy aint no joke! It's Deep Blue Sea at the jersey shore! Save yourself! #unbelievable #samuelL #sharkweek http://t.co/d9sCtHoT\n", @@ -2950,13 +2922,13 @@ "Talk that shit about Sandy now lol http://t.co/st39gHQl\n", "\n", "--------------------------------------------------------\n", - "talk shit sandy lol \n", + "talk shit sandy \n", "\n", "\n", "What's good Sandy 🌀🌊☔ #Sandy#hurricane#newyorkcity#statueofliberty#instacrazy#strom http://t.co/G6gi2cus\n", "\n", "--------------------------------------------------------\n", - "good sandy sandy hurricane newyorkcity statueofliberty instacrazy strom \n", + "good sandy sandyhurricanenew yorkcitystatueoflibertyinstacrazystrom \n", "\n", "\n", "😳 Sandy's not playing any games folks.... If you're on the East coast be safe. http://t.co/zVpfpe8k\n", @@ -2968,13 +2940,13 @@ "It's real in Jersey... Thats a damn shark... tf, I just hope Sandy spare NY... http://t.co/vUazXCCx\n", "\n", "--------------------------------------------------------\n", - "real jersey thats damn shark tf hope sandy spare ny \n", + "real jersey thats damn shark tf hope sandy spare new york \n", "\n", "\n", "#SANDY: Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. Olha: http://t.co/LIjMGHbA\n", "\n", "--------------------------------------------------------\n", - "sandy tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy olha \n", + "sandy tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy ol \n", "\n", "\n", "@NathanFillion Good that you're LA, cause the items of your bad list go visit peeps courtesy of Sandy http://t.co/XwHuFgrD\n", @@ -3016,37 +2988,37 @@ "“@lifesAlyric Oh bitch! Sandy MAD!!! http://t.co/9C5zqc37” is that actual footage?\n", "\n", "--------------------------------------------------------\n", - "oh bitch sandy mad actual footage \n", + "bitch sandy mad actual footage \n", "\n", "\n", "Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/RFyaSEdN”\n", "\n", "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy \n", "\n", "\n", "Sandy's goin' ham. 💩😳 #Hurricane #Dang http://t.co/EPKCqtGp\n", "\n", "--------------------------------------------------------\n", - "sandy goin ham hurricane dang \n", + "sandy going ham hurricane dang \n", "\n", "\n", "Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/yZXqoLxR MEU DEUS\n", "\n", "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy meu deus \n", + "tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy deus \n", "\n", "\n", "@RGettysIII \"Changing of the guard.. http://t.co/n45dzi2D\" what you don't know is that this wasnt during sandy... #yikes\n", "\n", "--------------------------------------------------------\n", - "changing guard know wasnt sandy yikes \n", + "changing guard know wasnt sandy \n", "\n", "\n", "Independence Day? Nope that's Hurricane Sandy. #hurricane #sandy #newyorkcity http://t.co/LLUEOKtk\n", "\n", "--------------------------------------------------------\n", - "independence day nope hurricane sandy hurricane sandy newyorkcity \n", + "independence day nope hurricane sandy hurricane sandy new yorkcity \n", "\n", "\n", "holy. crap. be safe, guys. thinking about everybody in Sandy's path. http://t.co/Uc8jBRrf\n", @@ -3067,16 +3039,10 @@ "sandy rolling buckle new york things get interesting \n", "\n", "\n", - "#SANDY: Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. Olha: http://t.co/z1kQDCZl\n", - "\n", - "--------------------------------------------------------\n", - "sandy tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy olha \n", - "\n", - "\n", "#SANDY: Tubarões são encontrados nas ruas de Nova Jersey após o avanço do mar causado pelo Furacão Sandy. #RenanLima > http://t.co/o957maY7\n", "\n", "--------------------------------------------------------\n", - "sandy tubarões são encontrados nas ruas nova jersey após avanço mar causado pelo furacão sandy renanlima greater \n", + "sandy tubarões encontrados ruas nova jersey após avanço mar causado furacão sandy renanlima \n", "\n", "\n", "http://t.co/zdD0Sxlt this Sandy pic looks awesome but not sure if it's real. Stay safe everyone.\n", @@ -3088,19 +3054,13 @@ "New york is in trouble,sandy's heavy strike.16 passed http://t.co/QojLlLJc\n", "\n", "--------------------------------------------------------\n", - "new york trouble sandy heavy strike 16 passed \n", - "\n", - "\n", - "@mariliamorais 'Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/RfatIqsd '\n", - "\n", - "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "new york trouble sandy heavy strike6 passed \n", "\n", "\n", "#PrayForUsa : Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/QjRoKPGi\n", "\n", "--------------------------------------------------------\n", - "prayforusa tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "prayforusa tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy \n", "\n", "\n", "that's really scary ....shark on the street in New Jersey #storm #Sandy http://t.co/E45WYO5E\n", @@ -3109,34 +3069,28 @@ "really scary shark street new jersey storm sandy \n", "\n", "\n", - "Sandy's #Hurricane in NY http://t.co/I25vmdJd\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane ny \n", - "\n", - "\n", "Q MEDO GENTE 'Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/Qpmv3XGP '\n", "\n", "--------------------------------------------------------\n", - "q medo gente tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "q medo gente tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy \n", "\n", "\n", "Oh hey Sandy, what's up? http://t.co/l8dEGuTm\n", "\n", "--------------------------------------------------------\n", - "oh hey sandy \n", + "hey sandy \n", "\n", "\n", "Sandy done brought the sharks to the streets 😱😱😱😱😱 lollllll that's crazyyyy http://t.co/mEeiEtDw\n", "\n", "--------------------------------------------------------\n", - "sandy done brought sharks streets lollllll crazyyyy \n", + "sandy done brought sharks streets lllll crazyyyy \n", "\n", "\n", "That's crazy those use are on guard 24/7 365 days even with Sandy hitting NY #Repost #Hurricane #Sandy #NY . http://t.co/FmXUlJBU\n", "\n", "--------------------------------------------------------\n", - "crazy use guard 24 7 365 days even sandy hitting ny repost hurricane sandy ny \n", + "crazy use guard465 days even sandy hitting new york repost hurricane sandy new york \n", "\n", "\n", "Sandy y u gotta be like that http://t.co/jz9fo8UK\n", @@ -3148,19 +3102,19 @@ "there's no way ! lmaoo. oh sandy http://t.co/NtTcJHrZ\n", "\n", "--------------------------------------------------------\n", - "way lmaoo oh sandy \n", + "way sandy \n", "\n", "\n", "MY PRAYERS GO OUT TO EVERYONE THAT'S AFFECTED BY #SANDY ! SHARKS SWIMMING DONE THE STREETS N NEW JERSEY ! SM http://t.co/yP5Iy9Yh\n", "\n", "--------------------------------------------------------\n", - "prayers go everyone affected sandy sharks swimming done streets n new jersey sm \n", + "prayers go everyone affected sandy sharks swimming done streets new jersey sm \n", "\n", "\n", "Praying for everybody that's in the path of Hurricane sandy!!! Especially my family & friends back home in N http://t.co/7Q4iIDvH\n", "\n", "--------------------------------------------------------\n", - "praying everybody path hurricane sandy especially family friends back home n \n", + "praying everybody path hurricane sandy especially family friends back home \n", "\n", "\n", "Nooooo stay strong Lady!!! Praying that sandy will not hit my New Yorkie http://t.co/rTwsC4bR\n", @@ -3172,19 +3126,13 @@ "Praying for all my East Coast friends and family...Sandy's looking #fierce! Be safe...much <3 #newyork #nyc http://t.co/PFOu6oLv\n", "\n", "--------------------------------------------------------\n", - "praying east coast friends family sandy looking fierce safe much less 3 newyork nyc \n", - "\n", - "\n", - "\\o/ Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/b89W7JwN\"\n", - "\n", - "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "praying east coast friends family sandy looking fierce safe much new york new york city \n", "\n", "\n", "OMG crazy!! RT \"@FashionWrap: Holy cow! That's a shark in the Jersey shore by a house! #sandy http://t.co/SmjUjVHV\"\n", "\n", "--------------------------------------------------------\n", - "omg crazy \n", + "crazy \n", "\n", "\n", "Sandy's coming http://t.co/mF5clbwD\n", @@ -3202,7 +3150,7 @@ "It's real out there. Crazy pic my cuz from New York sent me...that is indeed a shark 😱 #Sandy http://t.co/DU6oVkwd\n", "\n", "--------------------------------------------------------\n", - "real crazy pic new york sent indeed shark sandy \n", + "real crazy pic cuz new york sent indeed shark sandy \n", "\n", "\n", "Keep on think Sandy ain't that BITCH!!! #dontSLEEP http://t.co/RzSA3GAX\n", @@ -3229,12 +3177,6 @@ "huge bitch helloooo sandy photo borrowed ariela b \n", "\n", "\n", - "Sandy's coming. http://t.co/DeMgkG8A\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", - "\n", - "\n", "Hurricane Sandy ain't no joke... Boy that's scary... #repost http://t.co/cHNNQAMd\n", "\n", "--------------------------------------------------------\n", @@ -3244,7 +3186,7 @@ "Sandy chill on the sharks there goin to swim into someone's pool http://t.co/BgxqJvUa\n", "\n", "--------------------------------------------------------\n", - "sandy chill sharks goin swim someone pool \n", + "sandy chill sharks going swim someone pool \n", "\n", "\n", "Aight Sandy you wildin now! Heffa you got sharks in people's front yards now? Word?!?!? That's OD!! http://t.co/aKihjV9k\n", @@ -3256,7 +3198,7 @@ "If that's not the end I the world I don't know what is #hurricane #NYC http://t.co/ue6L3lSV\n", "\n", "--------------------------------------------------------\n", - "end world know hurricane nyc \n", + "end world know hurricane new york city \n", "\n", "\n", "“@BriiLeigh4: Sharks in the streets of New York and New Jersey because of hurricane Sandy #unreal http://t.co/K6RKKXju” THAT'S SWEET!\n", @@ -3268,13 +3210,13 @@ "Yes .. That's a shark FUCK YOU #sandy 😂😂😂 yea my cousin ain't goin no Wea http://t.co/q5WX2CB0\n", "\n", "--------------------------------------------------------\n", - "yes shark fuck sandy yea cousin goin wea \n", + "yes shark fuck sandy yea cousin going wea \n", "\n", "\n", "Superstorm Sandy in New York hira_milgram1's photo http://t.co/qbk6eg0O\n", "\n", "--------------------------------------------------------\n", - "superstorm sandy new york hira milgram1 photo \n", + "superstorm sandy new york hiramilgram1 photo \n", "\n", "\n", "Good Thing They Closed Down The Subway, That Damn Sandy http://t.co/UBc0tzKC\n", @@ -3292,25 +3234,25 @@ "Sandy in NY that's an incredible photo http://t.co/EuSScUzb\n", "\n", "--------------------------------------------------------\n", - "sandy ny incredible photo \n", + "sandy new york incredible photo \n", "\n", "\n", "Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy.Olha: http://t.co/UKu5pzxK aai gente :'(\n", "\n", "--------------------------------------------------------\n", - "tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy olha aai gente \n", + "tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy ol aai gente \n", "\n", "\n", "Shark infested streets! Now that's real safe Sandy! #hurricanesandy #wtf #endoftheworld http://t.co/R9lVHRvX\n", "\n", "--------------------------------------------------------\n", - "shark infested streets real safe sandy hurricanesandy wtf endoftheworld \n", + "shark infested streets real safe sandy hurricane sandy endoftheworld \n", "\n", "\n", "Let me tell ALL of you how real Sandy woulda been for me.... That's a shark... In a neighborhood!!! Smh. You http://t.co/TfnT8z7i\n", "\n", "--------------------------------------------------------\n", - "let tell real sandy woulda shark neighborhood smh \n", + "let tell real sandy woulda shark neighborhood \n", "\n", "\n", "This is absolutely incredible! The Old Guard still at post despite the effects of Hurricane Sandy. That's tr http://t.co/GsiT5dXy\n", @@ -3322,7 +3264,7 @@ "Seen this that chuckie uploaded that's crazy ass #hurricane #newyork #staysafe http://t.co/SCxvsKiV\n", "\n", "--------------------------------------------------------\n", - "seen chuckie uploaded crazy ass hurricane newyork staysafe \n", + "seen chuckie uploaded crazy ass hurricane new york staysafe \n", "\n", "\n", "Fuck That Shittttttt 😥😑☔ Sandy :S http://t.co/w0H1qF8V\n", @@ -3346,7 +3288,7 @@ "#SANDY: Tubarões são encontrados nas ruas de Nova Jersey devido ao avanço do mar causado pelo Furacão Sandy. http://t.co/AvAZafKk '-'\n", "\n", "--------------------------------------------------------\n", - "sandy tubarões são encontrados nas ruas nova jersey devido ao avanço mar causado pelo furacão sandy \n", + "sandy tubarões encontrados ruas nova jersey devido avanço mar causado furacão sandy \n", "\n", "\n", "Incredibly scary what's going on with Sandy. Prayers for all. RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/OhGwcPnc\n", @@ -3355,12 +3297,6 @@ "incredibly scary going sandy prayers \n", "\n", "\n", - "MT @MarlowNYC: Holy Shit: shark swimming in streets of N.J., during #Sandy http://t.co/UmFTNq1m - God, I hope that's photoshopped.\n", - "\n", - "--------------------------------------------------------\n", - "holy shit shark swimming streets n j sandy god hope photoshopped \n", - "\n", - "\n", "Sandy's a bitch http://t.co/NKzwUYMm\n", "\n", "--------------------------------------------------------\n", @@ -3370,7 +3306,7 @@ "Wow look at that sandy ain't playin http://t.co/XDWvp3UG\n", "\n", "--------------------------------------------------------\n", - "wow look sandy playin \n", + "look sandy playin \n", "\n", "\n", "Sooo Sandy I was just joking when I said you weren't about that life #Repost http://t.co/wOMmroH8\n", @@ -3388,7 +3324,7 @@ "#sandy #ny1sandy big fish @ L.E.S. http://t.co/iqlmtode\n", "\n", "--------------------------------------------------------\n", - "sandy ny1sandy big fish l \n", + "sandy ny1sandy big fish \n", "\n", "\n", "Holy cow! That's a shark in the Jersey shore by a house! #sandy http://t.co/xVDe2vzo\n", @@ -3412,7 +3348,7 @@ "Sandy, you's a bad bitch. Fuckin' up NYC. http://t.co/UyTLxuQx\n", "\n", "--------------------------------------------------------\n", - "sandy bad bitch fuckin nyc \n", + "sandy bad bitch fuckin new york city \n", "\n", "\n", "Classic pic, hurricane Sandy and they still protect the Tomb of the Unknown http://t.co/7zVJnXoj\n", @@ -3448,7 +3384,7 @@ "Tomb Of The Unknown Soldier Pic of the Day: Sandy, Schmandy. Soldiers of the 3rd Infantry Regiment continue http://t.co/h7Axi7lk\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier pic day sandy schmandy soldiers 3rd infantry regiment continue \n", + "tomb unknown soldier pic day sandy schmandy soldiers infantry regiment continue \n", "\n", "\n", "Incredible. They still guard the Unknown Soldier during Hurricane Sandy.👮 http://t.co/MO2e19zd\n", @@ -3469,12 +3405,6 @@ "tomb unknown hurricane sandy definition true soldier dedicated \n", "\n", "\n", - "“@AnthonyGally: Tomb of Unknown Soldier still being guarded during hurricane Sandy. Simply Incrediable!!! http://t.co/MTY3SqGq”wow\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "Our amazing Soldiers standing in front of the Tomb Of Unknown Soldiers as Hurricane Sandy hits... Mad respec http://t.co/N43KJnCO\n", "\n", "--------------------------------------------------------\n", @@ -3499,12 +3429,6 @@ "amazing soldiers standing tomb unknown soldier hurricane sandy \n", "\n", "\n", - "“@ahmednaguib: The Tomb of the Unknown Soldier remains guarded during Hurricane #Sandy. http://t.co/jmJUIX2v Wowee.\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier remains guarded hurricane sandy wowee \n", - "\n", - "\n", "http://t.co/iujv78Ed honor guard at the tomb of the unknown soldier amidst hurricane sandy\n", "\n", "--------------------------------------------------------\n", @@ -3622,7 +3546,7 @@ "Hurricane Sandy makin everyone evacuate.... everyone but those who guard the tomb of the unknown soldier... http://t.co/915tV1Jd\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy makin everyone evacuate everyone guard tomb unknown soldier \n", + "hurricane sandy everyone evacuate everyone guard tomb unknown soldier \n", "\n", "\n", "Even through Hurricane Sandy, the guards at the Tomb of the Unknown Soldier will still guard the grave no ma http://t.co/c5YfRty8\n", @@ -3652,7 +3576,7 @@ "These soldiers even thru hurricane sandy still stand at their post and guard to the tomb of the unknowns! Re http://t.co/03Ij2U78\n", "\n", "--------------------------------------------------------\n", - "soldiers even thru hurricane sandy still stand post guard tomb unknowns \n", + "soldiers even hurricane sandy still stand post guard tomb unknowns \n", "\n", "\n", "Soldiers continue to stand guard at the Tomb of the Unknown Soldier despite hurricane Sandy creeping in...He http://t.co/iTazF5b0\n", @@ -3673,12 +3597,6 @@ "even hurricane sandy elite guards stand strong tomb unknown soldier arlington cemetery gulp \n", "\n", "\n", - "WOW“@OMGFacts Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/BSCOFUK5”\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Even during Hurricane Sandy the still patrol the \"Tomb of the unknown soldier\". #AWESOME #USA #MILITARY http://t.co/JOKskKUc\n", "\n", "--------------------------------------------------------\n", @@ -3703,34 +3621,22 @@ "tomb unknown hurricane sandy sandy god bless america troops america \n", "\n", "\n", - "Wow!!! Amazing soldiers standing at the \"Tomb of the Unknown Soldier\" during Hurricane Sandy http://t.co/o8spIahr\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "The Old Guard at the Tomb of the Unknown Soldier in the middle of Hurricane Sandy. What a job. http://t.co/Ya5nvzXA\n", "\n", "--------------------------------------------------------\n", "old guard tomb unknown soldier middle hurricane sandy job \n", "\n", "\n", - "“Absolutely incredible. Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. I http://t.co/30vnuJbr” :')\n", - "\n", - "--------------------------------------------------------\n", - "absolutely incredible tomb unknown soldier continues stay guarded throughout hurricane sandy \n", - "\n", - "\n", "Tomb of the Unknown Soldier. Guarded continuously since 1948, even during Hurricane Sandy http://t.co/rxJRkPCM\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier guarded continuously since 1948 even hurricane sandy \n", + "tomb unknown soldier guarded continuously since948 even hurricane sandy \n", "\n", "\n", "Soldiers at the tomb of the unknown soldier during hurricane sandy #discipline #wow http://t.co/rcvdfrs1\n", "\n", "--------------------------------------------------------\n", - "soldiers tomb unknown soldier hurricane sandy discipline wow \n", + "soldiers tomb unknown soldier hurricane sandy discipline \n", "\n", "\n", "Even Hurricane Sandy can't stop the guard at the Tomb of the Unkown Soldier #America #duty #commitment #free http://t.co/ikchByDL\n", @@ -3742,7 +3648,7 @@ "Come at me bro! #sandy @ Tomb Of The Unknown Soldier http://t.co/saqgjUtz\n", "\n", "--------------------------------------------------------\n", - "come bro sandy tomb unknown soldier \n", + "come sandy tomb unknown soldier \n", "\n", "\n", "“@terrycrist: Powerful image of our military guarding the \"Tomb of the Unknown Soldier\" even in Hurricane Sandy. http://t.co/KoDIY9DM” #fb\n", @@ -3760,7 +3666,7 @@ "Tomb of the Unknowns in DC. http://t.co/cDnxiLYr .. Soldiers 1 Hurricane Sandy 0.. #Sandywho?\n", "\n", "--------------------------------------------------------\n", - "tomb unknowns dc soldiers 1 hurricane sandy 0 sandywho \n", + "tomb unknowns dc soldiers hurricane sandy sandywho \n", "\n", "\n", "So much respect for these soldiers still standing at the tomb of the Unknown Soldier through Hurricane Sandy http://t.co/H8fUEZv5\n", @@ -3780,29 +3686,23 @@ "--------------------------------------------------------\n", "despite hurricane sandy still soldiers tomb unknown soldier god bless troops \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "#Regram Hurricane Sandy wont stop these guys from guarding the tomb of the unknown soldier no exceptions ad http://t.co/gVUOAHXr\n", "\n", "--------------------------------------------------------\n", - "regram hurricane sandy wont stop guys guarding tomb unknown soldier exceptions ad \n", + "hurricane sandy wont stop guys guarding tomb unknown soldier exceptions ad \n", "\n", "\n", "Sticking thru hurricane sandy at the tomb of the unknown soldier. I am proud to be an American. http://t.co/PRkdJbbT\n", "\n", "--------------------------------------------------------\n", - "sticking thru hurricane sandy tomb unknown soldier proud american \n", + "sticking hurricane sandy tomb unknown soldier proud american \n", "\n", "\n", "In the face of #Sandy , soldiers at Tomb of the Unknown Soldier in D.C. stood their post, saying \"Sandy, Come get some\" http://t.co/6C38BqYE\n", "\n", "--------------------------------------------------------\n", - "face sandy soldiers tomb unknown soldier c stood post saying sandy come get \n", + "face sandy soldiers tomb unknown soldier stood post saying sandy come get \n", "\n", "\n", "Hurricane Sandy? Looks like the end of the world to me! http://t.co/LIgTh7G0\n", @@ -3814,19 +3714,19 @@ "Guards will stay at the tomb of the unknown soldier will stay there 24/7 even during hurricane sandy http://t.co/clBOZktr\n", "\n", "--------------------------------------------------------\n", - "guards stay tomb unknown soldier stay 24 7 even hurricane sandy \n", - "\n", - "\n", - "@bmdoty: “@jonbrewerphoto: Tomb of the Unknown Soldier during #sandy. Wow. http://t.co/aG2GHyPg” what a photo Awesome!\n", - "\n", - "--------------------------------------------------------\n", - "photo awesome \n", + "guards stay tomb unknown soldier stay there4 even hurricane sandy \n", "\n", "\n", "The Tomb of the Unknown Soldier! 🇺🇸 Soldiers guard the tomb as Hurricane Sandy begins to threaten DC. I wish http://t.co/dV1lJVrp\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier soldiers guard tomb hurricane sandy begins threaten dc wish \n", + "tomb unknown soldier soldiers guard tomb hurricane sandy begins threaten dc wish \n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "\n", "Guarding Tomb of the Unknown Soldier come hell or Hurricane Sandy http://t.co/LZ1j6xGI\n", @@ -3856,7 +3756,7 @@ "thats insane bro!!! RT @Godiva_Dark_89: Crazy Shot of NYC w/ Hurricane Sandy on the Move http://t.co/ebN5dBLv\n", "\n", "--------------------------------------------------------\n", - "thats insane bro \n", + "thats insane \n", "\n", "\n", "Tomb of the unknwn soldier stays guarded through hurricane sandy. #Respect #Merica 🇺🇸 http://t.co/eOaNctEf\n", @@ -3868,7 +3768,7 @@ "michael_schlact's photo http://t.co/fZNxEsnW Tomb of the Unknown Soldier during Hurricane #Sandy\n", "\n", "--------------------------------------------------------\n", - "michael schlact photo tomb unknown soldier hurricane sandy \n", + "michaelschlact photo tomb unknown soldier hurricane sandy \n", "\n", "\n", "Still guarding the Tomb of the Unknown Solider 🇺🇸 even with hurricane sandy #proudtobeamerican ❤💙 http://t.co/tChvW0cu\n", @@ -3877,12 +3777,6 @@ "still guarding tomb unknown solider even hurricane sandy proudtobeamerican \n", "\n", "\n", - "“Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/Yj0ufGwN”\n", - "\n", - "--------------------------------------------------------\n", - "amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Even as Sandy hits the East Coast this morning these men still guard at The Tomb of The Unknown Soldier. Thi http://t.co/ip74nMJP\n", "\n", "--------------------------------------------------------\n", @@ -3922,7 +3816,7 @@ "Since 1937 the tomb of te unknown soldiers gaurd has never left their post... Hurricane Sandy is no exceptio http://t.co/88jMgj2O\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb unknown soldiers gaurd never left post hurricane sandy exceptio \n", + "since937 tomb unknown soldiers gaurd never left post hurricane sandy exceptio \n", "\n", "\n", "Patriotism. #SOT “@kellyanncollins: The guards at the Tomb of the Unknown Soldier say they will stay - despite #sandy http://t.co/Vks1BYCC”\n", @@ -3952,7 +3846,7 @@ "Even during Hurricane Sandy, the Tomb of the Unknown Soldier is in good hands! #ArlingtonNationalCemetary #L http://t.co/GYJ1Sf4r\n", "\n", "--------------------------------------------------------\n", - "even hurricane sandy tomb unknown soldier good hands arlingtonnationalcemetary l \n", + "even hurricane sandy tomb unknown soldier good hands arlingtonnationalcemetary \n", "\n", "\n", "Tomb of the Unknown Soldier remains guarded during Hurricane Sandy. #ProudToBeAnAmerican http://t.co/PknY6VzX\n", @@ -3997,24 +3891,12 @@ "tomb unknown soldier continues stay guarded throughout hurricane sandy using bayonets \n", "\n", "\n", - "@LoGaN_4_: Simply Speechless. Tomb Of The Unknown Soldier during hurricane Sandy.. http://t.co/1uFm23RN\n", - "\n", - "--------------------------------------------------------\n", - "simply speechless tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "This is fucking dedication, bc I know their cold as fuck! Guards at Tomb of the Unknown Soldier Hurricane Sandy. | http://t.co/ihTDn8wq\n", "\n", "--------------------------------------------------------\n", "fucking dedication bc know cold fuck guards tomb unknown soldier hurricane sandy \n", "\n", "\n", - "Tomb of the Unknown Soldier during Hurricane Sandy!!!!! http://t.co/VWKZLblK\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Guards at the Tomb of the Unknown Soldier during Hurricane Sandy. Awesome http://t.co/1TePAzGy\n", "\n", "--------------------------------------------------------\n", @@ -4078,13 +3960,13 @@ "Humbling @BootsWitDeFur: The Honor Guard still at their post at the Tomb of the Unknown Soldier despite Hurricane Sandy http://t.co/EgRMs7YU\n", "\n", "--------------------------------------------------------\n", - "humbling honor guard still post tomb unknown soldier despite hurricane sandy \n", + "humbling \n", "\n", "\n", "The US sentinels guarding the Tomb of the Unknown Soldier during Sandy hurricane! Hope all my friends are sa http://t.co/dTZbLqUi\n", "\n", "--------------------------------------------------------\n", - "us sentinels guarding tomb unknown soldier sandy hurricane hope friends sa \n", + "us sentinels guarding tomb unknown soldier sandy hurricane hope friends \n", "\n", "\n", "Sandy and Tomb of the Unknown Soldier. Moving dedication. http://t.co/WiROU5Jm\n", @@ -4126,7 +4008,7 @@ "Despite Hurricane Sandy, three soldiers of the 3rd Infantry Regiment stand guard at the Tomb of the Unknown http://t.co/IbUlG3Ax\n", "\n", "--------------------------------------------------------\n", - "despite hurricane sandy three soldiers 3rd infantry regiment stand guard tomb unknown \n", + "despite hurricane sandy three soldiers infantry regiment stand guard tomb unknown \n", "\n", "\n", "Soldiers still standing guard of The Tomb of the Unknown Soldier. Even through Hurricane Sandy. #unknownsold http://t.co/MMqi2Eyz\n", @@ -4174,7 +4056,7 @@ "These troops are on guard at the Tomb of the Unknown Solider 24/7 including during Hurricane Sandy #salute # http://t.co/J5sQgHw5\n", "\n", "--------------------------------------------------------\n", - "troops guard tomb unknown solider 24 7 including hurricane sandy salute \n", + "troops guard tomb unknown solider4 including hurricane sandy salute \n", "\n", "\n", "Amazing RT @DerekLuxe: Still guarding the Tomb of the Unknown Soldier in the midst of Hurricane #Sandy #Frankenstorm http://t.co/D366en1Z\n", @@ -4204,7 +4086,7 @@ "Wow. Soldiers not abandoning their post at the Tomb of the Unknown Soldier despite Hurricane Sandy. Tomb has http://t.co/wLWgngDs\n", "\n", "--------------------------------------------------------\n", - "wow soldiers abandoning post tomb unknown soldier despite hurricane sandy tomb \n", + "soldiers abandoning post tomb unknown soldier despite hurricane sandy tomb \n", "\n", "\n", "Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. #RESPECT #HONOR #USAARM http://t.co/INIinxws\n", @@ -4228,7 +4110,7 @@ "Tomb of the UnKnown soldiers 24/7/365 Hurricane Sandy will NOT scare these Soldiers #Respect http://t.co/ziQTwpM8\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldiers 24 7 365 hurricane sandy scare soldiers respect \n", + "tomb unknown soldiers465 hurricane sandy scare soldiers respect \n", "\n", "\n", "Tomb of the unknown stays guarded during hurricane Sandy. #amazing http://t.co/HNpTqVbx\n", @@ -4240,7 +4122,7 @@ "Since 1937 the Tomb of the Unknown guard have never left their post and Hurricane Sandy will be no exception http://t.co/3kHFEUfm\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb unknown guard never left post hurricane sandy exception \n", + "since937 tomb unknown guard never left post hurricane sandy exception \n", "\n", "\n", "Talk about dedication? Hurricane Sandy bearing down & these men guard the Tomb of the Unknown Soldier Had to Share http://t.co/ioWsWQfk\n", @@ -4285,18 +4167,6 @@ "even midst hurricane sandy guards still standing watch tomb unknown soldier \n", "\n", "\n", - "Absolutely incredible. Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. http://t.co/9wReKnOo\n", - "\n", - "--------------------------------------------------------\n", - "absolutely incredible tomb unknown soldier continues stay guarded throughout hurricane sandy \n", - "\n", - "\n", - "Obama told the marines they don't have to guard the Tomb of the Unknown Soldier due to Hurricane Sandy. They http://t.co/qTTa1NFy\n", - "\n", - "--------------------------------------------------------\n", - "obama told marines guard tomb unknown soldier due hurricane sandy \n", - "\n", - "\n", "Still guarding the tomb of the unknown soldier through sandy #bosses http://t.co/UiwAc4Fi\n", "\n", "--------------------------------------------------------\n", @@ -4342,25 +4212,19 @@ "Since 1937 the Tomb of the Unknown Soldier has not been left unguarded. Hurricane Sandy creates no exception http://t.co/m4hh7KT8\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb unknown soldier left unguarded hurricane sandy creates exception \n", + "since937 tomb unknown soldier left unguarded hurricane sandy creates exception \n", "\n", "\n", "Hurricane Sandy isn't stopping the guards at the tomb of the unknown soldier.. Never abandoned since 1937. http://t.co/lzhfOCNl\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy stopping guards tomb unknown soldier never abandoned since 1937 \n", - "\n", - "\n", - "Wow! RT @OMGFacts: Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/PqsujqW2\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", + "hurricane sandy stopping guards tomb unknown soldier never abandoned since937 \n", "\n", "\n", "Tomb of the unknown soldier guarded since 1937. Sandy doesn't seem to be a problem. http://t.co/fHCE1x7p\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier guarded since 1937 sandy seem problem \n", + "tomb unknown soldier guarded since937 sandy seem problem \n", "\n", "\n", "The Tomb of the Unknown Solider. Even during Hurricane Sandy they stand their post. #America #Respect http://t.co/2uFebKWg\n", @@ -4411,12 +4275,6 @@ "tomb unknown soldiers hurricane sandy respect \n", "\n", "\n", - "@michael_schlact: God Bless America. Tomb of the Unknown Soldier during Hurricane Sandy. http://t.co/RZblTJrc instant chills\n", - "\n", - "--------------------------------------------------------\n", - "god bless america tomb unknown soldier hurricane sandy instant chills \n", - "\n", - "\n", "Respect to the men protecting the Tomb of the unknown soldiers during hurricane sandy http://t.co/y8j5V1eo\n", "\n", "--------------------------------------------------------\n", @@ -4438,19 +4296,19 @@ "Standing guard during hurricane sandy #godblesstheusa #hurricanesandy tomb of the unknown soldier http://t.co/UeNrZ95W\n", "\n", "--------------------------------------------------------\n", - "standing guard hurricane sandy godblesstheusa hurricanesandy tomb unknown soldier \n", + "standing guard hurricane sandy godblesstheusa hurricane sandy tomb unknown soldier \n", "\n", "\n", "A picture of hurricane sandy approaching NY. looks like the shit from day after tomorrow! 😱 http://t.co/hkPhDhWL\n", "\n", "--------------------------------------------------------\n", - "picture hurricane sandy approaching ny looks like shit day tomorrow \n", + "picture hurricane sandy approaching new york looks like shit day tomorrow \n", "\n", "\n", "Three soldiers protecting the tomb of the unknown soldier during Sandy...wow http://t.co/6v0ggoEF\n", "\n", "--------------------------------------------------------\n", - "three soldiers protecting tomb unknown soldier sandy wow \n", + "three soldiers protecting tomb unknown soldier sandy \n", "\n", "\n", "#Sandy doesn't stop Soldiers protecting the Tomb of the Unknown Soldier. http://t.co/e3kudJ7O\n", @@ -4462,7 +4320,7 @@ "Tomb of unknown soldier remains guarded thru Sandy. #respect http://t.co/VvOP2JMi\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier remains guarded thru sandy respect \n", + "tomb unknown soldier remains guarded sandy respect \n", "\n", "\n", "Sandy is nothing for those who stand watch for the tomb of the unknown #Respect #Honor http://t.co/HX0WQU5M\n", @@ -4471,12 +4329,6 @@ "sandy nothing stand watch tomb unknown respect honor \n", "\n", "\n", - "Amazing soldiers standing at the \"Tomb of the Unknown Soldier\" during Hurricane Sandy http://t.co/XmjRrcZO\n", - "\n", - "--------------------------------------------------------\n", - "amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Tomb of Unknown Soldier still being guarded during hurricane Sandy. Simply Incrediable!!! http://t.co/mwJT8KGY\n", "\n", "--------------------------------------------------------\n", @@ -4492,7 +4344,7 @@ "Tomb of the Unknown Soldier. Monday, October 29, 2012. Hurricane Sandy. Still being guarded. #USA http://t.co/XMAzwgtT\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier monday october 29 2012 hurricane sandy still guarded usa \n", + "tomb unknown soldier monday october92 hurricane sandy still guarded usa \n", "\n", "\n", "Tomb of Unknown soldier this morning during Hurricane Sandy. #Respect http://t.co/tCjJavft\n", @@ -4618,13 +4470,13 @@ "Aê @CarlosPort acho q jantaram a repórter loirinha da CNN mesmo #Sandy ==>Tubarões em ruas de Nova Jersey http://t.co/lRpnkKq3 via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "aê acho q jantaram repórter loirinha da cnn mesmo sandy greater tubarões em ruas nova jersey \n", + "aê acho q jantaram repórter loirinda cnn sandy tubarões ruas nova jersey \n", "\n", "\n", "la foto de alberto_rubio http://t.co/C1cM63Tw recreación de #Sandy\n", "\n", "--------------------------------------------------------\n", - "foto alberto rubio recreación sandy \n", + "foto albertorubio recreación sandy \n", "\n", "\n", "#sandy I see you coming http://t.co/CVa25qcR\n", @@ -4660,7 +4512,7 @@ "Amazing pic of #sandy hitting NYC, scary! http://t.co/xFQHqPFO\n", "\n", "--------------------------------------------------------\n", - "amazing pic sandy hitting nyc scary \n", + "amazing pic sandy hitting new york city scary \n", "\n", "\n", "#sandy getting serious #smartsharks http://t.co/x3030jRc\n", @@ -4672,13 +4524,13 @@ "Just a pic from NY!!! #storm #sandy #NYC http://t.co/kRb1hVh3\n", "\n", "--------------------------------------------------------\n", - "pic ny storm sandy nyc \n", + "pic new york storm sandy new york city \n", "\n", "\n", "NOT photoshopped!!..Photo taken in NYC subway.. craycray #sandy http://t.co/dm3NXn6o\n", "\n", "--------------------------------------------------------\n", - "photoshopped photo taken nyc subway craycray sandy \n", + "photoshopped photo taken new york city subway craycray sandy \n", "\n", "\n", "Pray for USA - #sandy #huricane #statueofliberty #ouragan #desaster #insta #instagrammers #instapic #tweet # http://t.co/jcvgwi0d\n", @@ -4690,13 +4542,13 @@ "#superstormsandy #NYC #sandy http://t.co/sAAbzL8f\n", "\n", "--------------------------------------------------------\n", - "superstormsandy nyc sandy \n", + "superstormsandy new york city sandy \n", "\n", "\n", "#sandy #nyc #itwentdown http://t.co/lzxI6UD3\n", "\n", "--------------------------------------------------------\n", - "sandy nyc itwentdown \n", + "sandy new york city itwentdown \n", "\n", "\n", "Times Square completely alone!! http://t.co/aqQxQXLB #hurricance #sandy #fb\n", @@ -4708,25 +4560,25 @@ "prefiero MIL veces, violencia, balazos, retenes ETC a estar lidiando con la naturaleza; pobres weyes O.o #Sandy #C http://t.co/Uj2yoZHZ\n", "\n", "--------------------------------------------------------\n", - "prefiero mil veces violencia balazos retenes etc lidiando naturaleza pobres weyes sandy c \n", + "prefiero mil veces violencia balazos retenes etc lidiando naturaleza pobres weyes sandy \n", "\n", "\n", "Chillin #Seal in #NY #Sandy #swagg http://t.co/kHTssQ1g\n", "\n", "--------------------------------------------------------\n", - "chillin seal ny sandy swagg \n", + "chillin seal new york sandy swagg \n", "\n", "\n", "Whoa, apparently there are #sharks deep in New Jersey! Hectic. #Sandy http://t.co/bEozD4kA\n", "\n", "--------------------------------------------------------\n", - "whoa apparently sharks deep new jersey hectic sandy \n", + "apparently sharks deep new jersey hectic sandy \n", "\n", "\n", "just a shark swimmin thru jersey crazy af #Sandy http://t.co/0IZVrRvt\n", "\n", "--------------------------------------------------------\n", - "shark swimmin thru jersey crazy af sandy \n", + "shark swimmin jersey crazy af sandy \n", "\n", "\n", "Mental #sandy http://t.co/wu3vXPpO\n", @@ -4738,25 +4590,25 @@ "#NewYork #Sandy #HolyShit #Instaprophecy #2012 http://t.co/WZwGEzHr\n", "\n", "--------------------------------------------------------\n", - "newyork sandy holyshit instaprophecy 2012 \n", + "new york sandy holyshit instaprophecy012 \n", "\n", "\n", "Amazing... #Sandy ya esta en NYC :s que Dios tome control de esa tormenta! OMG! http://t.co/7v0xK37C\n", "\n", "--------------------------------------------------------\n", - "amazing sandy nyc dios tome control tormenta omg \n", + "amazing sandy new york city dios tome control tormenta \n", "\n", "\n", "#huracán #sandy #nuevayork #ny #eua \\n\\n#instagram http://t.co/jGkC0dSu\n", "\n", "--------------------------------------------------------\n", - "huracán sandy nuevayork ny eua instagram \n", + "huracán sandy nuevayork new york eua instagram \n", "\n", "\n", "Here comes hurricanesandy #sandy @ Hudson River Greenway http://t.co/WDWLQg4L\n", "\n", "--------------------------------------------------------\n", - "comes hurricanesandy sandy hudson river greenway \n", + "comes hurricane sandy sandy hudson river greenway \n", "\n", "\n", "This crazy for real.. Sharks swimming on the streets of Jersy.. Smfh.. #Sandy http://t.co/jobR7ocl\n", @@ -4768,13 +4620,13 @@ "Sandy in NY.. #MUSTfollow #ny #sandy #uae #wrath http://t.co/tIjp6fCG\n", "\n", "--------------------------------------------------------\n", - "sandy ny mustfollow ny sandy uae wrath \n", + "sandy new york mustfollow new york sandy uae wrath \n", "\n", "\n", "#sandy No big macs. @ L.E.S. http://t.co/D9WnqTY3\n", "\n", "--------------------------------------------------------\n", - "sandy big macs l \n", + "sandy big macs \n", "\n", "\n", "There is a shark in the front lawn. #sandy http://t.co/5pZdSOIS\n", @@ -4801,22 +4653,16 @@ "rest peace guy boat sandy \n", "\n", "\n", - "👎😳☔☁ #sandy http://t.co/UAjbVbTm\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Stay safe my american friends! #nyc #sandy http://t.co/mQcFZmRS\n", "\n", "--------------------------------------------------------\n", - "stay safe american friends nyc sandy \n", + "stay safe american friends new york city sandy \n", "\n", "\n", "#sandy NJ: http://t.co/PdBBZVpP\n", "\n", "--------------------------------------------------------\n", - "sandy nj \n", + "sandy new jersey \n", "\n", "\n", "incredible RT @kasiainparis: wow! RT @holychic: #Sandy #Frankenstorm RT @danaybg: Another Shark on the street http://t.co/rLCInqye\n", @@ -4828,13 +4674,13 @@ "Dang #sandy #home #ny http://t.co/sbaGw94W\n", "\n", "--------------------------------------------------------\n", - "dang sandy home ny \n", + "dang sandy home new york \n", "\n", "\n", "#NY #Sandy #Сэнди #news #America http://t.co/zYKRHbf0\n", "\n", "--------------------------------------------------------\n", - "ny sandy сэнди news america \n", + "new york sandy сэнди news america \n", "\n", "\n", "Damn!!\\n#Sandy\\n http://t.co/IXL8lhgD\n", @@ -4864,13 +4710,13 @@ "#Sandy a orilla do mundo! #StatueofLiberty like the day after tomorrow! #NewYork http://t.co/NEHncgRk\n", "\n", "--------------------------------------------------------\n", - "sandy orilla mundo statueofliberty like day tomorrow newyork \n", + "sandy orilla mundo statueofliberty like day tomorrow new york \n", "\n", "\n", "#NYC + #Sandy 😱 http://t.co/4XuYvs2c\n", "\n", "--------------------------------------------------------\n", - "nyc sandy \n", + "new york city sandy \n", "\n", "\n", "dhutchence's photo http://t.co/XIkpUaA4 shark in New Jersey brought in by #sandy!\n", @@ -4882,7 +4728,7 @@ "Oh Sandy! #sandynyc #sandy2012 #nyc #hurricanenyflow http://t.co/NCXbS6Jr\n", "\n", "--------------------------------------------------------\n", - "oh sandy sandynyc sandy2012 nyc hurricanenyflow \n", + "sandy sandynyc sandy2012 new york city hurricanenyflow \n", "\n", "\n", "Dam sharks out there youl be safe #Sandy http://t.co/7YRkXnlY\n", @@ -4891,16 +4737,10 @@ "dam sharks youl safe sandy \n", "\n", "\n", - "#Sandy !!! http://t.co/QnZPoNxy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "#Sandy #Water #Waves #StatueOfLiberty #NewYork #NY #Scary :o http://t.co/haRt1oK8\n", "\n", "--------------------------------------------------------\n", - "sandy water waves statueofliberty newyork ny scary \n", + "sandy water waves statueofliberty new york new york scary \n", "\n", "\n", "That dont look right....... #sandy http://t.co/EJ1dAWfM\n", @@ -4909,34 +4749,22 @@ "dont look right sandy \n", "\n", "\n", - "Oh no!!!! #sandy http://t.co/t2EFho40\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", - "😳 #sandy http://t.co/ZkoyD45W\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "#Sandy - Dans le New Jersey, un petit requin emporté par les inondations nage tranquillement devant les maisons. http://t.co/yhJKx19O\n", "\n", "--------------------------------------------------------\n", - "sandy dans new jersey petit requin emporté par inondations nage tranquillement devant maisons \n", + "sandy new jersey petit requin emporté inondations nage tranquillement devant maisons \n", "\n", "\n", "The power of #photoshop #nyc #sandy #storm #newyork http://t.co/wZIHJFK2\n", "\n", "--------------------------------------------------------\n", - "power photoshop nyc sandy storm newyork \n", + "power photoshop new york city sandy storm new york \n", "\n", "\n", "#sandy #NYC http://t.co/t6aoGAJF\n", "\n", "--------------------------------------------------------\n", - "sandy nyc \n", + "sandy new york city \n", "\n", "\n", "HOLY SHIT #Sandy #Liberty http://t.co/TAYN8xcK\n", @@ -4948,13 +4776,13 @@ "Stay strong my people in the East Coast!! Thoughts are with you! \\n#USA #Newyork #sandy #storm #rain #Hurrica http://t.co/R5kp0igE\n", "\n", "--------------------------------------------------------\n", - "stay strong people east coast thoughts usa newyork sandy storm rain hurrica \n", + "stay strong people east coast thoughts usa new york sandy storm rain hurrica \n", "\n", "\n", "#sandy #newyork http://t.co/v3EVgiDZ\n", "\n", "--------------------------------------------------------\n", - "sandy newyork \n", + "sandy new york \n", "\n", "\n", "Can't get over this picture 😁#DatHoeSandy #sandy http://t.co/QyLZtI6f\n", @@ -4963,12 +4791,6 @@ "get picture dathoesandy sandy \n", "\n", "\n", - "OMG!\"@kaRitiNa_bell: El dijo quiero conocer new york!! jajaja #Sandy http://t.co/dx8EuxOR\"\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "Dios santo jaja tiburones por las calles RT @HiiprettyNoona: Maintenant quand t'es dans ta voiture au USA #Sandy http://t.co/Z7uoKswY”\n", "\n", "--------------------------------------------------------\n", @@ -4990,13 +4812,13 @@ "NYC#huracan #sandy http://t.co/Wx5cBKxA\n", "\n", "--------------------------------------------------------\n", - "nyc huracan sandy \n", + "nychuracan sandy \n", "\n", "\n", "De por dios new york en peligro @sonnyflow #sandy #tormentasandy #newyork #nyc #sonnyvision http://t.co/Mp4Zmk63\n", "\n", "--------------------------------------------------------\n", - "dios new york peligro sandy tormentasandy newyork nyc sonnyvision \n", + "dios new york peligro sandy tormentasandy new york new york city sonnyvision \n", "\n", "\n", "أسماك القرش تسبح بجانب المنازل في ولاية نيو جيرسي الامريكية اثر فيضانات اعصار ساندي\\n\\n#Sandy http://t.co/aSL3zzAT http://t.co/fm89QgAX”\n", @@ -5008,49 +4830,49 @@ "Tburon casual por las calles de NY #Sandy http://t.co/KKPSyV1n\n", "\n", "--------------------------------------------------------\n", - "tburon casual calles ny sandy \n", + "tburon casual calles new york sandy \n", "\n", "\n", "#repost #sandy #NYC http://t.co/WOiOkm8E\n", "\n", "--------------------------------------------------------\n", - "repost sandy nyc \n", + "repost sandy new york city \n", "\n", "\n", "Foto del huracán Sandy en #NY #sandy #huracan #usa http://t.co/5vus3caZ\n", "\n", "--------------------------------------------------------\n", - "foto huracán sandy ny sandy huracan usa \n", + "foto huracán sandy new york sandy huracan usa \n", "\n", "\n", "C'est juste fou! #Sandy #Frankenstorm http://t.co/C8IPizTG\n", "\n", "--------------------------------------------------------\n", - "c est juste fou sandy frankenstorm \n", + "juste fou sandy frankenstorm \n", "\n", "\n", "Shot of NYC today. Nature is awesome\\n#Sandy http://t.co/39VKrGbJ\n", "\n", "--------------------------------------------------------\n", - "shot nyc today nature awesome sandy \n", + "shot new york city today nature awesome sandy \n", "\n", "\n", "Just a baby shark swimming by a house in ocean city #unbelievable #sandy #wtf http://t.co/t43K4Nj2\n", "\n", "--------------------------------------------------------\n", - "baby shark swimming house ocean city unbelievable sandy wtf \n", + "baby shark swimming house ocean city unbelievable sandy \n", "\n", "\n", "UNBELIEVABLE BUT TRUE! SHARK in flooded waters in Ocesn City, NJ! Yikes! http://t.co/k3bzI7dU #Sandy\n", "\n", "--------------------------------------------------------\n", - "unbelievable true shark flooded waters ocesn city nj yikes sandy \n", + "unbelievable true shark flooded waters ocesn city new jersey sandy \n", "\n", "\n", "#Speechless #honor #duty #unknownsoldier #amazing #sandy #neverquit #heroes http://t.co/T4AmkVLk\n", "\n", "--------------------------------------------------------\n", - "speechless honor duty unknownsoldier amazing sandy neverquit heroes \n", + "speechless honor duty unknown soldier amazing sandy neverquit heroes \n", "\n", "\n", "THATS CRAZYY!! 😱“@justforkicksx22: \"@NoeNessa: #sandy hitting New York really bad hope everyone is safe http://t.co/uAotuHDQ\"”\n", @@ -5080,7 +4902,7 @@ "#Wow #Sandy is very #serious.. #New York be safe & be careful...🙏✨🙏 http://t.co/coUMurLW\n", "\n", "--------------------------------------------------------\n", - "wow sandy serious new york safe careful \n", + "sandy serious new york safe careful \n", "\n", "\n", "Sharks walking the streets of America\\n\\nhttps://t.co/k3fyMGhs\\n\\n#sandy\n", @@ -5107,22 +4929,16 @@ "sharks new jersey woah shark new jersey sandy \n", "\n", "\n", - "#sandy #NY 😱😱☁⚡☔⚡☁☁⚡☔☁ http://t.co/4x8jczF7\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "RP shark in a NJ backyard?! #sandy http://t.co/Q4tWKg8C\n", "\n", "--------------------------------------------------------\n", - "rp shark nj backyard sandy \n", + "rp shark new jersey backyard sandy \n", "\n", "\n", "Omg, y'a des requins qui se promènent sur la route,svp. #Sandy http://t.co/3yKnppnN\n", "\n", "--------------------------------------------------------\n", - "omg des requins qui promènent sur route svp sandy \n", + "requins promènent route svp sandy \n", "\n", "\n", "اعصار ساندي يغطي سماء نيويورك #sandy http://t.co/JqaHTpgZ\n", @@ -5134,13 +4950,7 @@ "#picoftheday #sandy the perfect storm! #nyc http://t.co/PrG4Ok78\n", "\n", "--------------------------------------------------------\n", - "picoftheday sandy perfect storm nyc \n", - "\n", - "\n", - "#Sandy #NYC 😧☔🌀🌊 http://t.co/K6eREe3R\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", + "picoftheday sandy perfect storm new york city \n", "\n", "\n", "Subway #Sandy clean http://t.co/z6D1gewf\n", @@ -5155,22 +4965,16 @@ "scary take care people sandy \n", "\n", "\n", - "@davcole: Ok #Sandy ain't no joke! This #Shark swam past a New Jersey home! http://t.co/4bf3pB5q ^^Dang!!\n", - "\n", - "--------------------------------------------------------\n", - "ok sandy joke shark swam past new jersey home dang \n", - "\n", - "\n", "Soldiers-1, Sandy-0. #soldiers #sandy #unknownsoldier http://t.co/ONNPPuYk\n", "\n", "--------------------------------------------------------\n", - "soldiers 1 sandy 0 soldiers sandy unknownsoldier \n", + "soldiers sandy soldiers sandy unknown soldier \n", "\n", "\n", "Insane picture of Hurricane #Sandy approaching NYC. http://t.co/gLDgh61K\n", "\n", "--------------------------------------------------------\n", - "insane picture hurricane sandy approaching nyc \n", + "insane picture hurricane sandy approaching new york city \n", "\n", "\n", "Casual shark swimming passed a car :/ #Sandy http://t.co/6qdtksRb\"\n", @@ -5182,25 +4986,19 @@ "Ca-ray-zee picture of the #statueofliberty as #sandy approaches #nyc http://t.co/aNvno2EX\n", "\n", "--------------------------------------------------------\n", - "ca ray zee picture statueofliberty sandy approaches nyc \n", - "\n", - "\n", - "#NYC #Sandy http://t.co/EN3Eot1j\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", + "ca ray zee picture statueofliberty sandy approaches new york city \n", "\n", "\n", "What an apocalyptic photograph of #Sandy approaching #NewYork http://t.co/gfayVenE” via @lopezperiodista\n", "\n", "--------------------------------------------------------\n", - "apocalyptic photograph sandy approaching newyork \n", + "apocalyptic photograph sandy approaching new york \n", "\n", "\n", "#Newyork #Storm #Sandy ,, OMG... http://t.co/qKSSlwa2\n", "\n", "--------------------------------------------------------\n", - "newyork storm sandy omg \n", + "new york storm sandy \n", "\n", "\n", "What the shark !!!! #shark #sandy http://t.co/KQPgLeY4\n", @@ -5212,7 +5010,7 @@ "Jesussssss save her!!! NYC get ready get ready cuz here she comes! #Sandy http://t.co/pCB69Uxl\n", "\n", "--------------------------------------------------------\n", - "jesussssss save nyc get ready get ready comes sandy \n", + "jesussssss save new york city get ready get ready cuz comes sandy \n", "\n", "\n", "New York, be careful. #sandy #pray4NYC http://t.co/GxXkchih\n", @@ -5236,7 +5034,7 @@ "Great shot taken of #Sandy approaching NYC. http://t.co/RCLbKIDO\n", "\n", "--------------------------------------------------------\n", - "great shot taken sandy approaching nyc \n", + "great shot taken sandy approaching new york city \n", "\n", "\n", "Foto del Huracán #Sandy http://t.co/QwsbGT4F via @LucasPalape // Terrible.\n", @@ -5248,7 +5046,7 @@ "#SandyNeedsToSitDown #SandyNeedsToSitDown #Manhattan The City Affected of Torment #Sandy OMG http://t.co/ptERhQkF\n", "\n", "--------------------------------------------------------\n", - "sandyneedstositdown sandyneedstositdown manhattan city affected torment sandy omg \n", + "sandyneedstositdown sandyneedstositdown manhattan city affected torment sandy \n", "\n", "\n", "A picture of hurricane #Sandy approaching NEW YORK!! Crazy mother Nature.. http://t.co/SyOLaAGP\n", @@ -5266,7 +5064,7 @@ "Un tiburon en la calle de NYC #Sandy http://t.co/p6ePa1cc\n", "\n", "--------------------------------------------------------\n", - "tiburon calle nyc sandy \n", + "tiburon calle new york city sandy \n", "\n", "\n", "Haaien in de straten. http://t.co/naKMTbat #Sandy\n", @@ -5275,12 +5073,6 @@ "haaien straten sandy \n", "\n", "\n", - "https://t.co/QtjMaRcB HURRICANE #SANDY\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "Sandy llego como película! #sandy #new #york #city #news #usa #follower #followme #followback #followstagram http://t.co/Q6SNhSFk\n", "\n", "--------------------------------------------------------\n", @@ -5290,7 +5082,7 @@ "Would you look at this? Get out da street. Seal. #sandy http://t.co/lZJwl4Ji\n", "\n", "--------------------------------------------------------\n", - "would look get da street seal sandy \n", + "would look get street seal sandy \n", "\n", "\n", "https://t.co/fsHzWNHg i always wondered y sushi is so popular on the east coast #fresh #sandy\n", @@ -5299,12 +5091,6 @@ "always wondered sushi popular east coast fresh sandy \n", "\n", "\n", - "@AngelAbreu87: Shark on the highway in New Jersey: http://t.co/XcyWHcz4 #Sandy @Pattyzxs08 @Juaneidy @SantaYCruzG @Germayory impresionante\n", - "\n", - "--------------------------------------------------------\n", - "shark highway new jersey sandy impresionante \n", - "\n", - "\n", "Every storm runs out of rain just like every dark night turns into day #sandy #gettysburg http://t.co/oPEP1I0E\n", "\n", "--------------------------------------------------------\n", @@ -5314,7 +5100,7 @@ "Frankie goes to Hollywood, #Sandy Marton goes to NY https://t.co/VpIiJpUj #PrayForUSA\n", "\n", "--------------------------------------------------------\n", - "frankie goes hollywood sandy marton goes ny prayforusa \n", + "frankie goes hollywood sandy marton goes new york prayforusa \n", "\n", "\n", "Is it true ?! http://t.co/IQy5cr6G #Shark #Sandy\n", @@ -5326,7 +5112,7 @@ "pqp serio que esse shark in new jersey is true? FFFFFFFFFUUUUUUUUUU http://t.co/slkWNvke #Sandy #shark\n", "\n", "--------------------------------------------------------\n", - "pqp serio esse shark new jersey true fffffffffuuuuuuuuuu sandy shark \n", + "pqp serio shark new jersey true fffffffffuuuuuuuuuu sandy shark \n", "\n", "\n", "Soo umm idk how true... But if it is, yea straight outta control!! #sandy http://t.co/rhckuVeW\n", @@ -5338,7 +5124,7 @@ "@Rachy1206 @DYfernis Miren más noticias sobre lo que ha ocurrido, han aparecido tiburones en las calles #Sandy #NJ http://t.co/A15UyC2f\n", "\n", "--------------------------------------------------------\n", - "miren noticias ocurrido aparecido tiburones calles sandy nj \n", + "miren noticias queocurrido aparecido tiburones calles sandy new jersey \n", "\n", "\n", "http://t.co/3LosWiq6 #respect be thankful for what you have #sandy\n", @@ -5353,12 +5139,6 @@ "timesquare neva shuts \n", "\n", "\n", - "NYC ! #Sandy .. \\nhttp://t.co/C4XJk7Ah\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", - "\n", - "\n", "http://t.co/vvafu5hW incredible #sandy\n", "\n", "--------------------------------------------------------\n", @@ -5368,13 +5148,13 @@ "Een rots in de branding! #ladyLiberty midden in #Sandy #NYC http://t.co/Qhe3EnJA\n", "\n", "--------------------------------------------------------\n", - "rots branding ladyliberty midden sandy nyc \n", + "rots branding ladyliberty midden sandy new york city \n", "\n", "\n", "deejaypavi's photo http://t.co/e54TiUzb Un requin dans son jardin #Sandy\n", "\n", "--------------------------------------------------------\n", - "deejaypavi photo requin dans jardin sandy \n", + "deejaypavi photo requin jardin sandy \n", "\n", "\n", "He looks a lil lost. #Sandy http://t.co/EgKcbF5c\n", @@ -5392,7 +5172,7 @@ "ساندي والتحدي #Sandy and the Challenge #Sandy und die Herausforderung #NYC #Deutschland http://t.co/Qv7yAJvx\n", "\n", "--------------------------------------------------------\n", - "ساندي والتحدي sandy challenge sandy und herausforderung nyc deutschland \n", + "ساندي والتحدي sandy challenge sandy und herausforderung new york city deutschland \n", "\n", "\n", "#seriously #weneedit #sandy http://t.co/JNdeHsbE\n", @@ -5410,13 +5190,7 @@ "#northwildwood #sandy #shark #whoa 😱🐋🌊☔ http://t.co/0zXOtjCk\n", "\n", "--------------------------------------------------------\n", - "northwildwood sandy shark whoa \n", - "\n", - "\n", - "#Sandy #NewYork 🌊☔🌀 http://t.co/gF9h1Y6C\n", - "\n", - "--------------------------------------------------------\n", - "sandy newyork \n", + "northwildwood sandy shark \n", "\n", "\n", "That shit cray.. #sandy http://t.co/PmI0RKvq\n", @@ -5437,16 +5211,10 @@ "sandy statueofliberty swag \n", "\n", "\n", - "http://t.co/uaBX1jhd #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "This looks like a movie!Wtf?! http://t.co/oiQyxPpd” #Sandy :(\n", "\n", "--------------------------------------------------------\n", - "looks like movie wtf sandy \n", + "looks like movie sandy \n", "\n", "\n", "It just got real '#Sandy http://t.co/aeuR3nTe\n", @@ -5488,7 +5256,7 @@ "Superbe photo de la tempete #sandy passé a la sauce #instagram par #sentimancho original chez Pascal Roth http://t.co/sNIlanPn\n", "\n", "--------------------------------------------------------\n", - "superbe photo tempete sandy passé sauce instagram par sentimancho original chez pascal roth \n", + "superbe photo tempete sandy passé sauce instagram sentimancho original chez pascal roth \n", "\n", "\n", "Un tauró pels carrers de New Jersey #huracan #sandy https://t.co/8vc8tZzl\n", @@ -5509,10 +5277,16 @@ "asmagulo photo sandy ladyliberty \n", "\n", "\n", + "O_O \"@CINDIRELLA82: Fotón #Sandy #miedito #MeMeo http://t.co/PVDV6AY2\"\n", + "\n", + "--------------------------------------------------------\n", + "oo \n", + "\n", + "\n", "Sharks in New Jersey... #newyork #newjeresy #sandy #flood #shark http://t.co/1oVPfVE4\n", "\n", "--------------------------------------------------------\n", - "sharks new jersey newyork newjeresy sandy flood shark \n", + "sharks new jersey new york newjeresy sandy flood shark \n", "\n", "\n", "#InstaFrame #storm #sandy #streets #flooded with a #shark #swimming down the #street prolly g @ The Berrics http://t.co/snczmfBO\n", @@ -5530,19 +5304,19 @@ "#ny #sandy http://t.co/0w60PesE\n", "\n", "--------------------------------------------------------\n", - "ny sandy \n", + "new york sandy \n", "\n", "\n", "#Frankenstorm #Sandy! Wow #InLossOfWords\\n#screenmuncher http://t.co/tSnm7PpH\n", "\n", "--------------------------------------------------------\n", - "frankenstorm sandy wow inlossofwords screenmuncher \n", + "frankenstorm sandy inlossofwords screenmuncher \n", "\n", "\n", "#Sandy #NYC #whoa #love4NYC #AJB http://t.co/FLXFC6Fn\n", "\n", "--------------------------------------------------------\n", - "sandy nyc whoa love4nyc ajb \n", + "sandy new york city love4nyc ajb \n", "\n", "\n", "Deze al gezien Theo? @Mentaltheo #sandy \\n\\n http://t.co/n1lqoj5T\n", @@ -5560,7 +5334,7 @@ "الله يكفينا من الشر 😱 #statueofliberty #ny #hurticane #sandy http://t.co/OTq4PN5y\n", "\n", "--------------------------------------------------------\n", - "الله يكفينا الشر statueofliberty ny hurticane sandy \n", + "الله يكفينا الشر statueofliberty new york hurticane sandy \n", "\n", "\n", "Everyone's worst fear aka mine #sandy #nofilter #stillpanicing http://t.co/igzAbgu9\n", @@ -5578,13 +5352,13 @@ "And Damnnnnnnnn! #Sandy was crazy! There's a shark in a NJ neighborhood! #NatureYouScary http://t.co/Acw8ZLoo\n", "\n", "--------------------------------------------------------\n", - "damnnnnnnnn sandy crazy shark nj neighborhood natureyouscary \n", + "damnnnnnnnn sandy crazy shark new jersey neighborhood natureyouscary \n", "\n", "\n", "#Sandy beginning to think the Mayans were right. #2012 http://t.co/lgrcp5Wp\n", "\n", "--------------------------------------------------------\n", - "sandy beginning think mayans right 2012 \n", + "sandy beginning think mayans right2 \n", "\n", "\n", "These hurricanes are nothing to play with..... #Sandy http://t.co/zhCQaskW\n", @@ -5608,7 +5382,7 @@ "Wow ...... this ain't good #SHARKS!!!! #StreetSharks #Sandy #Flooding #FrontStep #MindBlown #ShiitinBricks # http://t.co/1OHqRyyi\n", "\n", "--------------------------------------------------------\n", - "wow good sharks streetsharks sandy flooding frontstep mindblown shiitinbricks \n", + "good sharks streetsharks sandy flooding frontstep mindblown shiitinbricks \n", "\n", "\n", "Got the shark pic on my freinds front lawn #sandy #what http://t.co/tLWhjmbl\n", @@ -5620,13 +5394,13 @@ "#NewYork #Sandy #Alerta http://t.co/sIQEVfOz\n", "\n", "--------------------------------------------------------\n", - "newyork sandy alerta \n", + "new york sandy alerta \n", "\n", "\n", "We stood in this same spot a couple of weeks ago terrifying >>> http://t.co/fMMBl520 #sandy #NY\n", "\n", "--------------------------------------------------------\n", - "stood spot couple weeks ago terrifying greater greater greater sandy ny \n", + "stood spot couple weeks ago terrifying sandy ny \n", "\n", "\n", "Shit is real on the east coast! #Sandy http://t.co/vWlBe5JO\n", @@ -5653,22 +5427,10 @@ "tiburon nadando calles new jersey huracan sandy \n", "\n", "\n", - "#Sandy #NY http://t.co/piMvHeE4\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "#Sandy #storm #NewYork #godbless http://t.co/PB9rihrx\n", "\n", "--------------------------------------------------------\n", - "sandy storm newyork godbless \n", - "\n", - "\n", - "OMG! RT “@iWasADreamer_: Now they have to watch out for sharks in their front yard? how da fuq kahskjhkasjhdj #Sandy http://t.co/8KwEGRBK”\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", + "sandy storm new york godbless \n", "\n", "\n", "Sharks on the streets of Jersey #Sandy http://t.co/VSMT7mxx\n", @@ -5680,19 +5442,13 @@ "#OMG send my love to the east!!! Time to call the ghostbusters!!! #Sandy http://t.co/GgQLGSng\n", "\n", "--------------------------------------------------------\n", - "omg send love east time call ghostbusters sandy \n", - "\n", - "\n", - "#New York #Sandy http://t.co/Jk196aSr\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", + "send love east time call ghostbusters sandy \n", "\n", "\n", "Et si on allait faire du surf #Sandy http://t.co/hiMx0Kbl\n", "\n", "--------------------------------------------------------\n", - "et si allait faire surf sandy \n", + "si allait faire surf sandy \n", "\n", "\n", "No es broma! Tiburon fue visto en calles de la costa de New Jersey cuando mar entro a tierra #Sandy http:// http://t.co/r3psXXC7\n", @@ -5716,7 +5472,7 @@ "Amazing Sandy #nyc #sandy #uragano http://t.co/rxz0MmsY\n", "\n", "--------------------------------------------------------\n", - "amazing sandy nyc sandy uragano \n", + "amazing sandy new york city sandy uragano \n", "\n", "\n", "http://t.co/WDXNT1fW Uauuuuu a soak in the subway station timesquare #Sandy #speechless\n", @@ -5728,7 +5484,7 @@ "#SANDY ta chegando! Mas esse é um show q ninguém quer ver! http://t.co/LF7Adgdt\n", "\n", "--------------------------------------------------------\n", - "sandy ta chegando mas esse é um show q ninguém quer ver \n", + "sandy chegando show q ninguém quer ver \n", "\n", "\n", "#repost #sandy http://t.co/THbZzMkT\n", @@ -5740,13 +5496,13 @@ "Stay dry and safe guys. Your in our prayers from #k3projektwheels #nyc #newyork #sandy http://t.co/zQOE1ao7\n", "\n", "--------------------------------------------------------\n", - "stay dry safe guys prayers k3projektwheels nyc newyork sandy \n", + "stay dry safe guys prayers k3projektwheels new york city new york sandy \n", "\n", "\n", "Niggas in NY be like: #cloudporn #clouds #bitchesloveclouds #sandy http://t.co/BFr9mCsy\n", "\n", "--------------------------------------------------------\n", - "niggas ny like cloudporn clouds bitchesloveclouds sandy \n", + "niggas new york like cloudporn clouds bitchesloveclouds sandy \n", "\n", "\n", "Cápa New Jerseyben.. beszarás http://t.co/zUUoXxnC #Sandy\n", @@ -5758,7 +5514,7 @@ "Damn ! #Sandy #NYC http://t.co/u1WgI2YS\n", "\n", "--------------------------------------------------------\n", - "damn sandy nyc \n", + "damn sandy new york city \n", "\n", "\n", "HOLY CRAP THERE ARE SHARKS IN THE STREETS. #SANDY http://t.co/97BdMnUP\n", @@ -5782,7 +5538,7 @@ "#Sandy is coming, are you ready?\\n#America#Tornado#Disaster#liberty#instagram#photogram#today http://t.co/otQJlzdH\n", "\n", "--------------------------------------------------------\n", - "sandy coming ready america tornado disaster liberty instagram photogram today \n", + "sandy coming ready americatornadodisasterlibertyinstagramphotogramtoday \n", "\n", "\n", "haialarm wegen #sandy http://t.co/dgqYpJBq\n", @@ -5800,31 +5556,31 @@ "NYC sharks in neighborhoods due to flooding! Crazyyy! #sandy http://t.co/WNDJxsQv\n", "\n", "--------------------------------------------------------\n", - "nyc sharks neighborhoods due flooding crazyyy sandy \n", + "new york city sharks neighborhoods due flooding crazyyy sandy \n", "\n", "\n", "http://t.co/bk8KF5O8 صوره لدخول اعصار ساندي الى نيويورك.سبحان الله#USA #sandy\n", "\n", "--------------------------------------------------------\n", - "صوره لدخول اعصار ساندي الى نيويورك سبحان الله usa sandy \n", + "صوره لدخول اعصار ساندي الى نيويورك سبحان اللهusa sandy \n", "\n", "\n", "Nossaaaaaa,meu DEUS! -RT @lyabucater #Sandy esta tarde sobre NYC. https://t.co/mDZRqcA2 …\n", "\n", "--------------------------------------------------------\n", - "nossaaaaaa meu deus \n", + "nossaaaaaa deus \n", "\n", "\n", "Daaaaaamn #Sandy #NYC #Regram http://t.co/2XULeMOZ\n", "\n", "--------------------------------------------------------\n", - "daaaaaamn sandy nyc regram \n", + "daaaaaamn sandy new york city \n", "\n", "\n", "#nofilter a photo of #sandy coming into NY! Amazing how beautiful and disastrous the majesty of the storm is http://t.co/i7YKVqGf\n", "\n", "--------------------------------------------------------\n", - "nofilter photo sandy coming ny amazing beautiful disastrous majesty storm \n", + "nofilter photo sandy coming new york amazing beautiful disastrous majesty storm \n", "\n", "\n", "Shiiiit... RT @ProsodiJ: Daaaaaamn #Sandy #NYC #Regram http://t.co/t4wi0wos\n", @@ -5848,19 +5604,13 @@ "God will save NY! Lets all pray.. #sandy #disaster http://t.co/yKwMhnEe\n", "\n", "--------------------------------------------------------\n", - "god save ny lets pray sandy disaster \n", - "\n", - "\n", - "#sandy is here... 😳😁 http://t.co/LlatK6Vc\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "god save new york lets pray sandy disaster \n", "\n", "\n", "Damn sandy is about to go HAM over New York #storm #sandy #tropicalstorm #cloudy #rain #cold #newyork #disas http://t.co/PzSaDfCq\n", "\n", "--------------------------------------------------------\n", - "damn sandy go ham new york storm sandy tropicalstorm cloudy rain cold newyork disas \n", + "damn sandy go ham new york storm sandy tropicalstorm cloudy rain cold new york disas \n", "\n", "\n", "Shit just got real! #jaws2012\\n#sandy http://t.co/YzL3OmB9\n", @@ -5869,22 +5619,16 @@ "shit got real jaws2012 sandy \n", "\n", "\n", - "MT @GlobeMCramer: Post-apocalyptic RT @AtlanticCity911 Shark in the street in #Brigantine, NJ http://t.co/mZGkzOXz #Sandy (via @mwilkinson3)\n", - "\n", - "--------------------------------------------------------\n", - "post apocalyptic \n", - "\n", - "\n", "#Sandy looming over #NYC... amazing! http://t.co/j08t1u4y http://t.co/j08t1u4y http://t.co/LcIzPzyW\n", "\n", "--------------------------------------------------------\n", - "sandy looming nyc amazing \n", + "sandy looming new york city amazing \n", "\n", "\n", "Thats really amazing shot #NY #sandy #USA #Kuwait #Q8 #q8instagram #kuwaitinstagram #instagrammer http://t.co/6T5hkup1\n", "\n", "--------------------------------------------------------\n", - "thats really amazing shot ny sandy usa kuwait q8 q8instagram kuwaitinstagram instagrammer \n", + "thats really amazing shot new york sandy usa kuwait q8 q8instagram kuwaitinstagram instagrammer \n", "\n", "\n", "Scary #Sandy http://t.co/ZoSnZehr\n", @@ -5893,34 +5637,22 @@ "scary sandy \n", "\n", "\n", - "#sandy #newyork ¬ http://t.co/ilv9a2NN (via @JeremyBenmoussa)\n", - "\n", - "--------------------------------------------------------\n", - "sandy newyork \n", - "\n", - "\n", "Tiburón afuera de casa en NJ #nomamar #Sandy #shark http://t.co/yjqxXQiB\n", "\n", "--------------------------------------------------------\n", - "tiburón afuera casa nj nomamar sandy shark \n", - "\n", - "\n", - "@MissRoxyMusic: Qué cañona foto me encontré. #NY #Sandy http://t.co/BAAFkVmq\n", - "\n", - "--------------------------------------------------------\n", - "cañona foto encontré ny sandy \n", + "tiburón afuera casa new jersey nomamar sandy shark \n", "\n", "\n", "- Hurricane #Sandy #NYC ..... October 2012 http://t.co/cikVnvOm\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc october 2012 \n", + "hurricane sandy new york city october012 \n", "\n", "\n", "#squaready #sandy #storm next #ny 😞👎 http://t.co/mDDru7EW\n", "\n", "--------------------------------------------------------\n", - "squaready sandy storm next ny \n", + "squaready sandy storm next new york \n", "\n", "\n", "#sandy hits ms liberty http://t.co/VxtOHy3E\n", @@ -5938,7 +5670,7 @@ "#Dicen que así se ve #NewYork por #Sandy #Apocalipsis http://t.co/gomcvB7w\n", "\n", "--------------------------------------------------------\n", - "dicen así newyork sandy apocalipsis \n", + "dicen así new york sandy apocalipsis \n", "\n", "\n", "#USA #sandy http://t.co/6gC4Qg3L\n", @@ -5950,37 +5682,31 @@ "Increible. #NuevaYork #NewYork #Sandy #Huracan #Amazing http://t.co/iW0fBjrK\n", "\n", "--------------------------------------------------------\n", - "increible nuevayork newyork sandy huracan amazing \n", + "increible nuevayork new york sandy huracan amazing \n", "\n", "\n", "Wow, another incredible photo of #Sandy approaching New York http://t.co/OUvA6Nih\n", "\n", "--------------------------------------------------------\n", - "wow another incredible photo sandy approaching new york \n", - "\n", - "\n", - "أسماك القرش تسبح بجانب المنازل في ولاية نيو جيرسي الامريكية اثر فيضانات اعصار ساندي\\n\\n#Sandy http://t.co/swxyjX4L http://t.co/bamWPWbW\n", - "\n", - "--------------------------------------------------------\n", - "أسماك القرش تسبح بجانب المنازل ولاية نيو جيرسي الامريكية اثر فيضانات اعصار ساندي sandy \n", + "another incredible photo sandy approaching new york \n", "\n", "\n", "Shit is real in NY. #sandy #ny #storm #picoftheday #iphoneonly #iphonesia #wow #instagram #instagood #websta http://t.co/YT3fhJen\n", "\n", "--------------------------------------------------------\n", - "shit real ny sandy ny storm picoftheday iphoneonly iphonesia wow instagram instagood websta \n", + "shit real new york sandy new york storm picoftheday iphoneonly iphonesia instagram instagood websta \n", "\n", "\n", "J'ai trop peur mattez la vuede ma chambre !! #sandy #nyc #jevaismourrir ..non je deconne, ma vie n'es pas so http://t.co/j3tDwb8p\n", "\n", "--------------------------------------------------------\n", - "j ai trop peur mattez vuede chambre sandy nyc jevaismourrir non deconne vie n pas \n", + "trop peur mattez vuede chambre sandy new york city jevaismourrir non deconne vie \n", "\n", "\n", "Thanks heaps Sandy! Now I can't watch the latest ep of Gossip Girl! #firstworldproblems #sandy #storm #nyc http://t.co/gOHoGKWz\n", "\n", "--------------------------------------------------------\n", - "thanks heaps sandy watch latest ep gossip girl firstworldproblems sandy storm nyc \n", + "thanks heaps sandy watch latest ep gossip girl firstworldproblems sandy storm new york city \n", "\n", "\n", "#new #york #sandy #crazy #instascary #follow http://t.co/xOTvh7rl\n", @@ -6004,7 +5730,7 @@ "Le désastre de NYC! #Storm #Sandy http://t.co/yyCHna8J\n", "\n", "--------------------------------------------------------\n", - "désastre nyc storm sandy \n", + "désastre new york city storm sandy \n", "\n", "\n", "Praying for everyone affected by this storm ! #sandy http://t.co/UKvxl9dn\n", @@ -6037,16 +5763,10 @@ "prayforusa sandy \n", "\n", "\n", - "#NYC #sandy http://t.co/pe44ejk4\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", - "\n", - "\n", "http://t.co/bUIcliHj SERIOUSLY MAD SHARKS IN NJ. #Scary #Sandy\n", "\n", "--------------------------------------------------------\n", - "seriously mad sharks nj scary sandy \n", + "seriously mad sharks new jersey scary sandy \n", "\n", "\n", "اسماك القرش عند عتبة الباب #sandy http://t.co/QEyF6PId\n", @@ -6058,13 +5778,13 @@ "#PicOfTheDay #TombOfTheUnknownSoldier #Sandy wont stop the show.. Guarded 24/7 since 1948.. #Respect #WeCare http://t.co/8UuqHGao\n", "\n", "--------------------------------------------------------\n", - "picoftheday tomboftheunknownsoldier sandy wont stop show guarded 24 7 since 1948 respect wecare \n", + "picoftheday tomboftheunknown soldier sandy wont stop show guarded4 since948 respect wecare \n", "\n", "\n", "#shark in #newjersey #street #sandy #instacane #usa #danger #peligro #tiburon en las calles de #nj #huracan http://t.co/AA7iqagj\n", "\n", "--------------------------------------------------------\n", - "shark newjersey street sandy instacane usa danger peligro tiburon calles nj huracan \n", + "shark newjersey street sandy instacane usa danger peligro tiburon calles new jersey huracan \n", "\n", "\n", "No lo puedo creer un tiburón en laa calle por el huracán #sandy :o http://t.co/ZBrmxC1i\n", @@ -6076,13 +5796,13 @@ "Lamentable la foto que nos llega! Un Tiburón en las calles de #NewJersey por consecuencia al Huracán #Sandy OMG http://t.co/fMk2heFz»\n", "\n", "--------------------------------------------------------\n", - "lamentable foto llega tiburón calles newjersey consecuencia huracán sandy omg \n", + "lamentable foto llega tiburón calles newjersey consecuencia huracán sandy \n", "\n", "\n", "Sendin Prayers out to Everyone on the Eastcoast, #Sandy is no joke smh. Be Safe Out There.. http://t.co/GqDZHh0d\n", "\n", "--------------------------------------------------------\n", - "sendin prayers everyone eastcoast sandy joke smh safe \n", + "sendin prayers everyone eastcoast sandy joke safe \n", "\n", "\n", "#sandyejunior #sosandy #sandy http://t.co/m87NhRvG\n", @@ -6094,7 +5814,7 @@ "A seal washed up in manhattan! I hope it's safe. #nyc #sandy #seal #manhatten #funny #animals http://t.co/DE4sUWCr\n", "\n", "--------------------------------------------------------\n", - "seal washed manhattan hope safe nyc sandy seal manhatten funny animals \n", + "seal washed manhattan hope safe new york city sandy seal manhatten funny animals \n", "\n", "\n", "It's real! #sandy http://t.co/v6jRwiwG\n", @@ -6106,13 +5826,13 @@ "Huracan Sandy #NY #newyork #Sandy #huracan #statueofliberty http://t.co/DWPjUn56\n", "\n", "--------------------------------------------------------\n", - "huracan sandy ny newyork sandy huracan statueofliberty \n", + "huracan sandy new york new york sandy huracan statueofliberty \n", "\n", "\n", "#NYC #Frankenstorm #Sandy #nature #amazing #scary http://t.co/g7DDTE5q\n", "\n", "--------------------------------------------------------\n", - "nyc frankenstorm sandy nature amazing scary \n", + "new york city frankenstorm sandy nature amazing scary \n", "\n", "\n", "Que buena foto «@heathero14 «@damnitstrue This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/wBsWDtEZ»»\n", @@ -6124,7 +5844,7 @@ "#Furacão #Sandy um Alerta para as nações da terra JESUS ESTÁ VOLTANDO. http://t.co/EqhDYzVE\n", "\n", "--------------------------------------------------------\n", - "furacão sandy um alerta nações da terra jesus voltando \n", + "furacão sandy alerta nações terra jesus voltando \n", "\n", "\n", "Respect. RT @layladejong: Heel mooi dit. #Sandy http://t.co/2dpIo3Dc\n", @@ -6148,7 +5868,7 @@ "Tonight, my prayers go to the East coast. #Sandy #NYC http://t.co/0eXHgwlz\n", "\n", "--------------------------------------------------------\n", - "tonight prayers go east coast sandy nyc \n", + "tonight prayers go east coast sandy new york city \n", "\n", "\n", "Holy balls that had to be scary #Sandy http://t.co/24OyyhUn\n", @@ -6160,25 +5880,25 @@ "Lmao!!! #Sandy #Problems #BadNews #InstaCrazy #InstaWtf #InstaNews #InstaJoke #InstaMovie http://t.co/HSM08SMp\n", "\n", "--------------------------------------------------------\n", - "lmao sandy problems badnews instacrazy instawtf instanews instajoke instamovie \n", + "sandy problems badnews instacrazy insta instanews instajoke instamovie \n", "\n", "\n", "Is dit echt?! Gaaf! #Sandy #nyc http://t.co/teK2HXN1\n", "\n", "--------------------------------------------------------\n", - "echt gaaf sandy nyc \n", + "echt gaaf sandy new york city \n", "\n", "\n", "Je sais pas vous, mais même après #Sandy, Times square est magique .. http://t.co/wnljDpGu\n", "\n", "--------------------------------------------------------\n", - "sais pas vous mais même après sandy times square est magique \n", + "sais après sandy times square magique \n", "\n", "\n", "@Elygutierrez19 @Willylevy29 Meyo tibuoon #Sandy http://t.co/51a4aCid\n", "\n", "--------------------------------------------------------\n", - "meyo tibuoon sandy \n", + "metibuoon sandy \n", "\n", "\n", "Empty #TimesSquare http://t.co/MKSuIpgL #Sandy\n", @@ -6190,19 +5910,13 @@ "Вот и пришло 2012 к Америке... Акулы плавают по улицам, ураган.... жуть! #Sandy #Сэнди http://t.co/4QsgjoRu\n", "\n", "--------------------------------------------------------\n", - "пришло 2012 америке акулы плавают улицам ураган жуть sandy сэнди \n", + "пришло012 америке акулы плавают улицам ураган жуть sandy сэнди \n", "\n", "\n", "Man killed on 166st in queens crushed by a tree #sandy http://t.co/tOveaUtg\n", "\n", "--------------------------------------------------------\n", - "killed 166st queens crushed tree sandy \n", - "\n", - "\n", - "@PardonMyPoppet: psimadethis's crazy #sandy photo. Times Square Subway Stop http://t.co/67mWdqyc not sure if photoshopped, but interesting\n", - "\n", - "--------------------------------------------------------\n", - "psimadethis crazy sandy photo times square subway stop sure photoshopped interesting \n", + "killed on66st queens crushed tree sandy \n", "\n", "\n", "Tuburon http://t.co/duLH1Gv5 #Sandy\n", @@ -6214,7 +5928,7 @@ "Ieri, l'uragano #Sandy alle porte di #Manhattan. #NewYork http://t.co/vxVu7Qi2\n", "\n", "--------------------------------------------------------\n", - "ieri l uragano sandy alle porte di manhattan newyork \n", + "ieri uragano sandy alle porte manhattan new york \n", "\n", "\n", "Statue of Liberty + crushing waves. http://t.co/7F93HuHV #hurricaneparty #sandy\n", @@ -6226,13 +5940,13 @@ "Stay up Lady Liberty...shot look like something off of a movie.. Wooii #Sandy wan cum mash up di place #hurr http://t.co/o21rHTLo\n", "\n", "--------------------------------------------------------\n", - "stay lady liberty shot look like something movie wooii sandy wan cum mash di place hurr \n", + "stay lady liberty shot look like something movie wooii sandy wan cum mash place hurr \n", "\n", "\n", "#Sandy fuckin shit up. Got a shark swimming in my brotha @LuckDollaz's backyard http://t.co/QReNi8Pm\n", "\n", "--------------------------------------------------------\n", - "sandy fuckin shit got shark swimming brotha backyard \n", + "sandy fuckin shit got shark swimming brots backyard \n", "\n", "\n", "“@alurralde88: #Sandy #Hurrikane #USA http://t.co/vDOsPdSM” esa foto es real? Achanta un cacho\n", @@ -6259,28 +5973,22 @@ "fakesototota carnal \n", "\n", "\n", - "#sandy in NY :O http://t.co/G8nQLq4u\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "Foto real hace unas horas en NY... #frankestorm #sandy #storm #ny http://t.co/JsKxbwaZ\n", "\n", "--------------------------------------------------------\n", - "foto real hace unas horas ny frankestorm sandy storm ny \n", + "foto real hace unas horas new york frankestorm sandy storm new york \n", "\n", "\n", "R: Wtf! #sandy 💦💦💦💧⚡☁☔🙀🙀😳😳 http://t.co/NxGuIPhC\n", "\n", "--------------------------------------------------------\n", - "r wtf sandy \n", + "r sandy \n", "\n", "\n", "#Sandy Gettin Real in NY !!!! http://t.co/XCU9Ysuv\n", "\n", "--------------------------------------------------------\n", - "sandy gettin real ny \n", + "sandy gettin real new york \n", "\n", "\n", "Shark! @anthonydalicandro's photo http://t.co/AtXvgWuY #sandy\n", @@ -6298,7 +6006,7 @@ "Naughty tha over in America, hope everyone stays safe. #sandy http://t.co/rSlFUF6K\n", "\n", "--------------------------------------------------------\n", - "naughty tha america hope everyone stays safe sandy \n", + "naughty tover america hope everyone stays safe sandy \n", "\n", "\n", "#sandy hits #liberty http://t.co/M60ODXc5\n", @@ -6307,28 +6015,16 @@ "sandy hits liberty \n", "\n", "\n", - "O.O #Sandy http://t.co/QVrjgbtv\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "#NYC VS #SANDY..lady #LIBERTY standing #STRONG ..#ENY #BROOKLYN .. http://t.co/IS0liYAf\n", "\n", "--------------------------------------------------------\n", - "nyc vs sandy lady libe \n", + "new york city versus sandy lady libe \n", "\n", "\n", "My gosh!! #nyc #storm #sandy http://t.co/1R4Hfk3K\n", "\n", "--------------------------------------------------------\n", - "gosh nyc storm sandy \n", - "\n", - "\n", - "omg #Sandy http://t.co/AkwrLqgP\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy \n", + "gosh new york city storm sandy \n", "\n", "\n", "#shark swimming in the street in new jersey #Sandy http://t.co/A0k8R9YC\n", @@ -6340,13 +6036,7 @@ "Crazy!!! #sandy #NYC http://t.co/QdWTJBWi\n", "\n", "--------------------------------------------------------\n", - "crazy sandy nyc \n", - "\n", - "\n", - "OMG! @SikiRivera #Sandy \"@iansomerhalder: This looks like a movie!Wtf?! http://t.co/5Ta8TkGM\"\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy \n", + "crazy sandy new york city \n", "\n", "\n", "#repost #hardcore #sandy #military http://t.co/Q7juldee\n", @@ -6364,13 +6054,13 @@ "Do #sharks leave #WallStreet? #NYC #Sandy http://t.co/9roDUuCu\n", "\n", "--------------------------------------------------------\n", - "sharks leave wallstreet nyc sandy \n", + "sharks leave wallstreet new york city sandy \n", "\n", "\n", "Impresionante foto del Huracán #sandy (vía teflontara) http://t.co/ZewlH8b5\n", "\n", "--------------------------------------------------------\n", - "impresionante foto huracán sandy vía teflontara \n", + "impresionante foto huracán sandy teflontara \n", "\n", "\n", "Get the fuck outta here!!! #Sandy http://t.co/RiQ80H54\n", @@ -6394,7 +6084,7 @@ "Sharks swimming around someones yard in New Jersey? In NYC we have em all over the place. #sandy http://t.co/aV4ViA7v\n", "\n", "--------------------------------------------------------\n", - "sharks swimming around someones yard new jersey nyc em place sandy \n", + "sharks swimming around someones yard new jersey new york city place sandy \n", "\n", "\n", "We have a hurricane photo winner, folks! And yes, it's real. I verified with snopes! http://t.co/sCG803xH #fb #sandy #sharks\n", @@ -6406,13 +6096,13 @@ "Hope everyone is staying safe #sandy #newyork http://t.co/xAArw1Pg\n", "\n", "--------------------------------------------------------\n", - "hope everyone staying safe sandy newyork \n", + "hope everyone staying safe sandy new york \n", "\n", "\n", "Mother Nature the most powerful force of all!! My thought are with you #NYC #Manhattan #Sandy http://t.co/J3wxxhan\n", "\n", "--------------------------------------------------------\n", - "mother nature powerful force thought nyc manhattan sandy \n", + "mother nature powerful force thought new york city manhattan sandy \n", "\n", "\n", "psimadethis's crazy #sandy photo. Times Square Subway Stop http://t.co/mKbMySGB\n", @@ -6421,12 +6111,6 @@ "psimadethis crazy sandy photo times square subway stop \n", "\n", "\n", - "#SandyNeedsToSitDown #SandyNeedsToSitDown #Manhattan The City Affected of Torment #Sandy OMG http://t.co/Fw46ZncT via @TwitPic\n", - "\n", - "--------------------------------------------------------\n", - "sandyneedstositdown sandyneedstositdown manhattan city affected torment sandy omg \n", - "\n", - "\n", "Es real: http://t.co/zBUjpyAC RT @cindirella82: Fotón #Sandy #miedito #MeMeo http://t.co/TqNeczY5\n", "\n", "--------------------------------------------------------\n", @@ -6436,25 +6120,19 @@ "#Sandy #Arrives #Ny #Staystrong http://t.co/M6ozHmDT\n", "\n", "--------------------------------------------------------\n", - "sandy arrives ny staystrong \n", + "sandy arrives new york staystrong \n", "\n", "\n", "Good gawd #Sandy has got to be one helluva storm I swear. LOL any PS experts? http://t.co/P7JrQR0k\n", "\n", "--------------------------------------------------------\n", - "good gawd sandy got one helluva storm swear lol ps experts \n", + "good gawd sandy got one helluva storm swear ps experts \n", "\n", "\n", "Wow like a movie smh #Sandy...my prayera goin up to protect those close to it! http://t.co/lWDLzrdX\n", "\n", "--------------------------------------------------------\n", - "wow like movie smh sandy prayera goin protect close \n", - "\n", - "\n", - "NYC #sandy @apaton4 https://t.co/HEMeMEaC\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", + "like movie sandy prayera going protect close \n", "\n", "\n", "#noway #shark #jersey #crazy #sandy http://t.co/MDBlKAfW\n", @@ -6466,7 +6144,7 @@ "Just saw this on twitter!! A shark just chillin down the freeway in NYC 🐬⚡☔☁🌀🗽 #sandy #eastcoast #shark #sc http://t.co/dkKuHMTD\n", "\n", "--------------------------------------------------------\n", - "saw twitter shark chillin freeway nyc sandy eastcoast shark sc \n", + "saw twitter shark chillin freeway new york city sandy eastcoast shark sc \n", "\n", "\n", "amethystekyle's photo http://t.co/UQSODDdN\\n:o? #sandy\n", @@ -6478,7 +6156,7 @@ "I really hope everyone is okay and staying safe! xx <3 <3 #sandy http://t.co/yVW6ogJh\n", "\n", "--------------------------------------------------------\n", - "really hope everyone okay staying safe xx less 3 less 3 sandy \n", + "really hope everyone okay staying safe xx sandy \n", "\n", "\n", "#Sandy come Attila. In #Grease non era così. http://t.co/VJM3OWjD\n", @@ -6490,7 +6168,7 @@ "Digam olá para #Sandy #NY http://t.co/fKrQtkwZ\n", "\n", "--------------------------------------------------------\n", - "digam olá sandy ny \n", + "digam olá sandy new york \n", "\n", "\n", "There's a Shark in Brigantine #sandy #controlyourpets http://t.co/ll4cIIMm\n", @@ -6508,7 +6186,7 @@ "US nak sangat jadi mcm movie 2012, kan dah kena betul2 Hurricane #Sandy http://t.co/ijxSs144\n", "\n", "--------------------------------------------------------\n", - "us nak sangat jadi mcm movie 2012 dah kena betul2 hurricane sandy \n", + "us nak mcm movie012 dah kena betul2 hurricane sandy \n", "\n", "\n", "“@jshan711 Fucking sharks on the streets!! #Sandy http://t.co/usaazxVB” Coolest picture I've seen from Sandy so far.\n", @@ -6526,7 +6204,7 @@ "Storm is lookin crazy #newyork #sandy http://t.co/7hmByzqT\n", "\n", "--------------------------------------------------------\n", - "storm lookin crazy newyork sandy \n", + "storm lookin crazy new york sandy \n", "\n", "\n", "Con la duda del #fake...Shark en las calles de New Jersey entre las aguas del huracán #Sandy #veryfriki http://t.co/Tfrt8STL via @marphille\n", @@ -6538,19 +6216,13 @@ "WOW “@Bricksquadleeah “@AnthonyShaw_ A shark casually swimming down a road in NYC #sandy http://t.co/XjbkIAOq””\n", "\n", "--------------------------------------------------------\n", - "wow shark casually swimming road nyc sandy \n", + "shark casually swimming road new york city sandy \n", "\n", "\n", "#sandy #NYC #10minago http://t.co/Os1Bw43F\n", "\n", "--------------------------------------------------------\n", - "sandy nyc 10minago \n", - "\n", - "\n", - "Oh my #sandy #NYC http://t.co/S1UxiqOC\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy nyc \n", + "sandy nyc0minago \n", "\n", "\n", "You will never see Times Square this empty again #Sandy http://t.co/aTC2KvXg\n", @@ -6574,7 +6246,7 @@ "New York visitada por el huracán #sandy 2012 http://t.co/6g6HbgJV\n", "\n", "--------------------------------------------------------\n", - "new york visitada huracán sandy 2012 \n", + "new york visitada huracán sandy012 \n", "\n", "\n", "#Sandy is no joke http://t.co/oy7TkSlJ\n", @@ -6592,25 +6264,25 @@ "#sandy #NYC #bad #photo #today #huracan #USA http://t.co/1O98Qgc2\n", "\n", "--------------------------------------------------------\n", - "sandy nyc bad photo today huracan usa \n", + "sandy new york city bad photo today huracan usa \n", "\n", "\n", "OMG!! THE BIG APPLE راحت ياحصه @Haf83 #sandy #DARK #NIGHT #newyork http://t.co/GRszG51r\n", "\n", "--------------------------------------------------------\n", - "omg big apple راحت ياحصه sandy dark night newyork \n", + "big apple راحت ياحصه sandy dark night new york \n", "\n", "\n", "“@PrometeoNuclear: Foto del Huracán #Sandy http://t.co/1v0tidnx via @LucasPalape // Terrible.”<muy buena!!! jajajajaja\n", "\n", "--------------------------------------------------------\n", - "less buena jajajajaja \n", + "buena jajajajaja \n", "\n", "\n", "Please, don't destroy anything and don't hurt nobody. #nyc #sandy #omg #scared #sad #worried #myfamily ☔🗽🇺🇸 http://t.co/Unhmj0WW\n", "\n", "--------------------------------------------------------\n", - "please destroy anything hurt nobody nyc sandy omg scared sad worried myfamily \n", + "please destroy anything hurt nobody new york city sandy scared sad worried myfamily \n", "\n", "\n", "Saw this photo online! Statue of Liberty #sandy http://t.co/n6XyDuOS\n", @@ -6622,31 +6294,25 @@ "La meilleure photo de #Sandy pour le moment ! http://t.co/koStOXUL\n", "\n", "--------------------------------------------------------\n", - "meilleure photo sandy pour moment \n", - "\n", - "\n", - "@antoon619: #Sandy. http://t.co/rrsgNPfI @SoleneLescouet\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "meilleure photo sandy moment \n", "\n", "\n", "Oración por #NYC 🙏 #sandy http://t.co/imuS1qF1\n", "\n", "--------------------------------------------------------\n", - "oración nyc sandy \n", + "oración new york city sandy \n", "\n", "\n", "Tan ricas las nieves q vendian en Liberty Island :( @anieberry #Sandy #NYC http://t.co/sN6WDKrJ\n", "\n", "--------------------------------------------------------\n", - "tan ricas nieves q vendian liberty island sandy nyc \n", + "tan ricas nieves q vendian liberty island sandy new york city \n", "\n", "\n", "USA: L'uragano #Sandy colpisce #NewYork! PAZZESCO! #PrayForUSA #staystrongAmerica @TopVisibility http://t.co/mSkcrUsN\n", "\n", "--------------------------------------------------------\n", - "usa l uragano sandy colpisce newyork pazzesco prayforusa staystrongamerica \n", + "usa uragano sandy colpisce new york pazzesco prayforusa staystrongamerica \n", "\n", "\n", "Tack vare stormen #sandy simmar det hajar i New Jersey https://t.co/9jgG8r6N\n", @@ -6661,16 +6327,10 @@ "photoshop shark swimming suburbs sandy \n", "\n", "\n", - "oh no http://t.co/0oYU8kup #sandy\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", "Ik denk dat patatten ga geven!#ny #sandy http://t.co/kVoTdWpt\n", "\n", "--------------------------------------------------------\n", - "denk patatten ga geven ny sandy \n", + "denk patatten ga geven new york sandy \n", "\n", "\n", "penarandaworld's photo http://t.co/wRzHcQ6A. incredible #sandy picture over #statueofliberty\n", @@ -6682,25 +6342,19 @@ "Impressive #nyc #Sandy http://t.co/slZgoCKO\n", "\n", "--------------------------------------------------------\n", - "impressive nyc sandy \n", + "impressive new york city sandy \n", "\n", "\n", "#Sandy has arrived in NYC $@!# just got real http://t.co/ie7vJAl0\n", "\n", "--------------------------------------------------------\n", - "sandy arrived nyc got real \n", + "sandy arrived new york city got real \n", "\n", "\n", "insightsignco's photo http://t.co/LF4LV4U6 wow. #sandy\n", "\n", "--------------------------------------------------------\n", - "insightsignco photo wow sandy \n", - "\n", - "\n", - "Wtf RT @Fresh205CutZ: \"@T_Kai_10: Sharks in new jersey! #Jaws #Sandy http://t.co/Fzrk0SR3\" #HolyShit\n", - "\n", - "--------------------------------------------------------\n", - "wtf \n", + "insightsignco photo sandy \n", "\n", "\n", "This can't be real, Swizzy! #sandy http://t.co/xZfcb8KP\n", @@ -6718,19 +6372,13 @@ "WTF fo real?!?!? RT @drshikharsaxena: RT @KariMostafa: Shark in NJ #sandy http://t.co/zx9wDoPr\n", "\n", "--------------------------------------------------------\n", - "wtf fo real \n", - "\n", - "\n", - "“@innokratka #NYC #Sandy http://t.co/Rc9Ol60V”\n", - "\n", - "--------------------------------------------------------\n", - "nyc sandy \n", + "fo real \n", "\n", "\n", "Olha a foto do tornado #Sandy !!!! O.O http://t.co/mjszt8wW\n", "\n", "--------------------------------------------------------\n", - "olha foto tornado sandy \n", + "ola foto tornado sandy \n", "\n", "\n", "Sharks in your front yard. #sandy http://t.co/O8qYIDJR\n", @@ -6742,19 +6390,19 @@ "my gawd. #ny #sandy #prayforamericans http://t.co/am8EsIlb\n", "\n", "--------------------------------------------------------\n", - "gawd ny sandy prayforamericans \n", + "gawd new york sandy prayforamericans \n", "\n", "\n", "Good photo of #Sandy #nyc http://t.co/W4x0iT7V\n", "\n", "--------------------------------------------------------\n", - "good photo sandy nyc \n", + "good photo sandy new york city \n", "\n", "\n", "I think that was im puerto ricoRT @StefanoDStasio: Tiburones en calles de #NYC #sandy @sergiocarlo http://t.co/lKwvzNE0\n", "\n", "--------------------------------------------------------\n", - "think im puerto rico \n", + "think puerto rico \n", "\n", "\n", "Well damn #Sandy http://t.co/GAs0Uhry\n", @@ -6766,7 +6414,7 @@ "#Sandy #NewYork #NYC #storm #USA #android #kik http://t.co/tfDAzxb0\n", "\n", "--------------------------------------------------------\n", - "sandy newyork nyc storm usa android kik \n", + "sandy new york new york city storm usa android kik \n", "\n", "\n", "Sharks on my street...? #wut #sandy #lblock photo: mcfarty http://t.co/t98ypUMY\n", @@ -6778,19 +6426,19 @@ "I guess there's no need to go to the aquarium this week #NYC #sandy http://t.co/wvTDrOCR\n", "\n", "--------------------------------------------------------\n", - "guess need go aquarium week nyc sandy \n", + "guess need go aquarium week new york city sandy \n", "\n", "\n", "Empiezan a llegar las imagenes de #sandy en #ny http://t.co/aMrJ3VNc\n", "\n", "--------------------------------------------------------\n", - "empiezan llegar imagenes sandy ny \n", + "empiezan llegar imagenes sandy new york \n", "\n", "\n", "#SharksNTheStreet\\n#Sandy #Sh**JustGotReal http://t.co/xgoHpY8b\n", "\n", "--------------------------------------------------------\n", - "sharksnthestreet sandy sh justgotreal \n", + "sharksnthestreet sandy justgotreal \n", "\n", "\n", "So schlimm sieht es grade in New York aus! #sandy #Frankenstorm #Live http://t.co/J5W7BPRW\n", @@ -6802,31 +6450,25 @@ "Nous ce sera un orignal sur le perron! RT @JeanNicGagne: Quand un requin se retrouve sur ton terrain. #Sandy https://t.co/x8WWBUuC\n", "\n", "--------------------------------------------------------\n", - "nous ce sera orignal sur perron \n", + "orignal perron \n", "\n", "\n", "CARALHO!! Oremos por NY #NY #beautiful #sandy http://t.co/1MDErqT4\n", "\n", "--------------------------------------------------------\n", - "caralho oremos ny ny beautiful sandy \n", + "caralho oremos new york ny beautiful sandy \n", "\n", "\n", "djohnfree's photo http://t.co/Ad6bklEl #sandy\n", "\n", "--------------------------------------------------------\n", - "djohnfree photo sandy \n", + "djnfree photo sandy \n", "\n", "\n", "سمك نيويورك ساندي sandy #صور #غرد_بصورة #Instagram #Bahrain #Instagood #ksa #UAE #Usa #Sandy #Qatar #Oman http://t.co/cpS18ABJ\n", "\n", "--------------------------------------------------------\n", - "سمك نيويورك ساندي sandy صور غرد بصورة instagram bahrain instagood ksa uae usa sandy qatar oman \n", - "\n", - "\n", - "#sandy #nyc wow! http://t.co/kStLREQo\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc wow \n", + "سمك نيويورك ساندي sandy صور غردبصورة instagram bahrain instagood ksa uae usa sandy qatar oman \n", "\n", "\n", "#Sandy crazy stuff thoughts and prayers go out to the east coast http://t.co/x8oGki1h\n", @@ -6838,7 +6480,7 @@ "#oh #god #shark #swimming #on #street #amazing #new #jersey #storm #sandy #usa #webstagram #picoftheday #bes http://t.co/LFGqioY7\n", "\n", "--------------------------------------------------------\n", - "oh god shark swimming street amazing new jersey storm sandy usa webstagram picoftheday bes \n", + "god shark swimming street amazing new jersey storm sandy usa webstagram picoftheday bes \n", "\n", "\n", "Absolutely phenomenal shot of storm #SANDY - http://t.co/91hFt2jj #frankenstorm\n", @@ -6847,34 +6489,22 @@ "absolutely phenomenal shot storm sandy frankenstorm \n", "\n", "\n", - "Damn #sandy http://t.co/rOrtAuB4\n", - "\n", - "--------------------------------------------------------\n", - "damn sandy \n", - "\n", - "\n", "Un tauró nadant a Brigantine, NJ! https://t.co/h3I1nFEQ #Sandy\n", "\n", "--------------------------------------------------------\n", - "tauró nadant brigantine nj sandy \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "tauró nadant brigantine new jersey sandy \n", "\n", "\n", "Looks like the went a bit over board on the budget for The Day After Tomorrow 2! #NewYork #Sandy http://t.co/Jtxtspn2\n", "\n", "--------------------------------------------------------\n", - "looks like went bit board budget day tomorrow 2 newyork sandy \n", + "looks like went bit board budget day tomorrow new york sandy \n", "\n", "\n", "Oh okay #sandy http://t.co/9u5fUl8w\n", "\n", "--------------------------------------------------------\n", - "oh okay sandy \n", + "okay sandy \n", "\n", "\n", "Seems legit http://t.co/AxQT7qmO 😏 #sandy\n", @@ -6892,25 +6522,25 @@ "#nyc #newyork #myny #nature #storm #stormwatch #sandy #ny1 #photooftheday http://t.co/0HHFvBPz\n", "\n", "--------------------------------------------------------\n", - "nyc newyork myny nature storm stormwatch sandy ny1 photooftheday \n", + "new york city new york myny nature storm stormwatch sandy ny1 photooftheday \n", "\n", "\n", "Roubando a foto de mariliagomez ! Captação no momento certo. #ny #newyork #sandy http://t.co/RHNWHtwD\n", "\n", "--------------------------------------------------------\n", - "roubando foto mariliagomez captação momento certo ny newyork sandy \n", + "roubando foto mariliagomez captação momento certo new york new york sandy \n", "\n", "\n", "#orkaan #sandy #newyork #westcoast #vrijheidsbeeld #amerika http://t.co/NNCdJzxD\n", "\n", "--------------------------------------------------------\n", - "orkaan sandy newyork westcoast vrijheidsbeeld amerika \n", + "orkaan sandy new york westcoast vrijheidsbeeld amerika \n", "\n", "\n", "Animales maritimos pierden rumbo, han prohibido nadar en las auyopistas dr Manhattan #sandy http://t.co/NnkoOYRu\n", "\n", "--------------------------------------------------------\n", - "animales maritimos pierden rumbo prohibido nadar auyopistas dr manhattan sandy \n", + "animales maritimos pierden rumbo pribido nadar auyopistas dr manhattan sandy \n", "\n", "\n", "Sickest picture ever #sandy http://t.co/OXwGvtLj\n", @@ -6922,7 +6552,7 @@ "Sin palabras... #NY #Sandy http://t.co/tu7PGCQe\n", "\n", "--------------------------------------------------------\n", - "palabras ny sandy \n", + "palabras new york sandy \n", "\n", "\n", "thegarageinc's photo http://t.co/HcmZII5G #Sandy\n", @@ -6934,25 +6564,19 @@ "Почти одновременно появилось несколько снимков акул @ NY | #Sandy #Panic #Photoshop http://t.co/TJ4VvKFM\n", "\n", "--------------------------------------------------------\n", - "одновременно появилось несколько снимков акул ny sandy panic photoshop \n", + "одновременно появилось несколько снимков акул new york sandy panic photoshop \n", "\n", "\n", "Ay q feo lo q pasa en New York, esta es una Impresionante foto #Huracan #Sandy #Manhattan #nyc http://t.co/O5IcNtwv \\nRT @rarunchennai\n", "\n", "--------------------------------------------------------\n", - "ay q feo q pasa new york impresionante foto huracan sandy manhattan nyc \n", - "\n", - "\n", - "Wow RT @103040088: #frankenstorm #sandy #newyork http://t.co/AsPbeCxu\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", + "ay q feo q pasa new york impresionante foto huracan sandy manhattan new york city \n", "\n", "\n", "Wish i could say lol RT @OddUsMusic: Sharks on the streets of Jersey #Sandy http://t.co/xkYTLqDC\n", "\n", "--------------------------------------------------------\n", - "wish could say lol \n", + "wish could say \n", "\n", "\n", "http://t.co/XcJ3viPk - New York, New York! #sandy\n", @@ -6964,13 +6588,13 @@ "This looks Like some crazy Movie!! #sandy #statenisland #holyshit #spoky #in #NYC http://t.co/BxYDMU2X\n", "\n", "--------------------------------------------------------\n", - "looks like crazy movie sandy statenisland holyshit spoky nyc \n", + "looks like crazy movie sandy statenisland holyshit spoky new york city \n", "\n", "\n", "la foto de manuela_dirnt http://t.co/2Kud7lpy Cuaaaaatico!! huracán #sandy\n", "\n", "--------------------------------------------------------\n", - "foto manuela dirnt cuaaaaatico huracán sandy \n", + "foto manueladirnt cuaaaaatico huracán sandy \n", "\n", "\n", "#sandy #notmypic http://t.co/kHdorYfN\n", @@ -6988,13 +6612,13 @@ "A my madre eso fue en NJ #hurracan #sandy #bitch #perra #notschool #tiburon #mar #ciclon #innundacion #marad http://t.co/Pl6Ocoy7\n", "\n", "--------------------------------------------------------\n", - "madre nj hurracan sandy bitch perra notschool tiburon mar ciclon innundacion marad \n", + "madre new jersey hurracan sandy bitch perra notschool tiburon mar ciclon innundacion marad \n", "\n", "\n", "#newyork #sandy #إعصار_ساندي http://t.co/TyZlWSGe\n", "\n", "--------------------------------------------------------\n", - "newyork sandy إعصار ساندي \n", + "new york sandy إعصارساندي \n", "\n", "\n", "Put down the camera and grab your fishing pole. Not often you can catch sharks in your front yard. #sandy http://t.co/3Hak7L3D\n", @@ -7006,7 +6630,7 @@ "A shark swimming in Brigantine, NJ. WTF. http://t.co/PzlMBaoa #Sandy\n", "\n", "--------------------------------------------------------\n", - "shark swimming brigantine nj wtf sandy \n", + "shark swimming brigantine new jersey sandy \n", "\n", "\n", "#Pray #Sandy http://t.co/tRbXiSby\n", @@ -7018,19 +6642,19 @@ "#goodluck #newyork #sandy http://t.co/ySG5811t\n", "\n", "--------------------------------------------------------\n", - "goodluck newyork sandy \n", + "goodluck new york sandy \n", "\n", "\n", "Shark swimming in NYC #Sandy #wut http://t.co/C5KnULBU\n", "\n", "--------------------------------------------------------\n", - "shark swimming nyc sandy wut \n", + "shark swimming new york city sandy wut \n", "\n", "\n", "I always wanted a shar as pet. #Sandy #Scary #Haloween #Storm #Pet #Shark #NewYork http://t.co/xUjVMB0L\n", "\n", "--------------------------------------------------------\n", - "always wanted shar pet sandy scary haloween storm pet shark newyork \n", + "always wanted shar pet sandy scary haloween storm pet shark new york \n", "\n", "\n", "A shark swims in a New Jersey yard that has been flooded by Hurricane #Sandy...YES, that is a shark! http://t.co/tu0bL46w\n", @@ -7042,7 +6666,7 @@ "#SANDY:nossa se eu ver-se um tubarão na porta de casa eu ia pirar!kkkTwitpic Share photos and onTwitter http://t.co/nGEd5AIU via @twitpic\n", "\n", "--------------------------------------------------------\n", - "sandy nossa eu ver um tubarão porta casa eu ia pirar kkktwitpic share photos ontwitter \n", + "sandy ver tubarão porta casa pirar kkktwitpic share photos ontwitter \n", "\n", "\n", "Normal? #sandy http://t.co/6VsGfLpt\n", @@ -7054,13 +6678,7 @@ "Angry Sandy in NY #angry #sandy #storm #perfect #wild #NY #new york #USA http://t.co/a8hiCgs0\n", "\n", "--------------------------------------------------------\n", - "angry sandy ny angry sandy storm perfect wild ny new york usa \n", - "\n", - "\n", - "@MindbIowingFact: A shark was swimming in the front #New Jersey #sandy pic: http://t.co/4ymbTXOm\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming front new jersey sandy pic \n", + "angry sandy new york angry sandy storm perfect wild new york new york usa \n", "\n", "\n", "Too sick #sandy http://t.co/NzeNSV3m\n", @@ -7072,25 +6690,19 @@ "#اعصار_ساندي \\nالاعصار ساندي، صورة لسمكة قرش تسبح في شوارع أمريكا قادمة من المحيط \\n \\n#Sandy http://t.co/x47DZC8R http://t.co/BKqgRNWD\n", "\n", "--------------------------------------------------------\n", - "اعصار ساندي الاعصار ساندي صورة لسمكة قرش تسبح شوارع أمريكا قادمة المحيط sandy \n", - "\n", - "\n", - "@laradrauhl: bizarro essa foto, e é real #sandy http://t.co/Gmd8LzPm bizarro tbm é saber q amanha seu ídolo vai ta indo em turnê pra lá!!!\n", - "\n", - "--------------------------------------------------------\n", - "bizarro essa foto é real sandy bizarro tbm é saber q amanha seu ídolo vai ta indo em turnê pra lá \n", + "اعصارساندي الاعصار ساندي صورة لسمكة قرش تسبح شوارع أمريكا قادمة المحيط sandy \n", "\n", "\n", "ilelii's photo http://t.co/HVtIisuJ shark in NYC street #sandy\n", "\n", "--------------------------------------------------------\n", - "ilelii photo shark nyc street sandy \n", + "ilelii photo shark new york city street sandy \n", "\n", "\n", "A shark swimming in a neighborhood in Brigantine, NJ. *knock knock* \"Who's there?\" \"Candygram.\" http://t.co/TVSZ4mQd #Sandy\n", "\n", "--------------------------------------------------------\n", - "shark swimming neighborhood brigantine nj knock knock candygram sandy \n", + "shark swimming neighborhood brigantine new jersey knock knock candygram sandy \n", "\n", "\n", "Žralok v New Jersey mezi domy... RT @antoon619: #Sandy http://t.co/Bh86NUuo\n", @@ -7123,12 +6735,6 @@ "prayers everyone fight hurricane sandy besafe everyone \n", "\n", "\n", - "#Sandy... http://t.co/o3Ye5zqk\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "A fucking shark brought ashore by #Sandy siobhaaanab's photo http://t.co/pSGVdXwd\n", "\n", "--------------------------------------------------------\n", @@ -7138,13 +6744,13 @@ "Pretty cool. #Like #Sandy #Storm #NewYork http://t.co/1sZNtC6t\n", "\n", "--------------------------------------------------------\n", - "pretty cool like sandy storm newyork \n", + "pretty cool like sandy storm new york \n", "\n", "\n", "Una foca es arrastrada por la tormenta ocasionada por #sandy en pleno #ny http://t.co/GDVnsUxy #broma\n", "\n", "--------------------------------------------------------\n", - "foca arrastrada tormenta ocasionada sandy pleno ny broma \n", + "foca arrastrada tormenta ocasionada sandy pleno new york broma \n", "\n", "\n", "Holy crap.. #sandy #is #intense #why #would #you #name #it #sandy http://t.co/AKWS3MMb\n", @@ -7156,7 +6762,7 @@ "Tiburones en NY #Sandy http://t.co/IuOGJrnz\n", "\n", "--------------------------------------------------------\n", - "tiburones ny sandy \n", + "tiburones new york sandy \n", "\n", "\n", "Looks like the Mayan Apocalypse in New York City #sandy http://t.co/2CgnZW0R\n", @@ -7180,7 +6786,7 @@ "@JillyShoe1987 @Kateplusmy8 I still can't get over this shark in flooded waters in Ocesn City, NJ! Yikes!\\nhttp://t.co/fefi0vmH #Sandy\n", "\n", "--------------------------------------------------------\n", - "still get shark flooded waters ocesn city nj yikes sandy \n", + "still get shark flooded waters ocesn city new jersey sandy \n", "\n", "\n", "http://t.co/7S3hHKA3\\nPlutôt impressionnante #Sandy\n", @@ -7192,13 +6798,13 @@ "Un tiburón en las calles de NY tras el paso de #Sandy :o http://t.co/xS0UQOBS\n", "\n", "--------------------------------------------------------\n", - "tiburón calles ny tras paso sandy \n", + "tiburón calles new york tras paso sandy \n", "\n", "\n", "Il s'agissait d'un photo montage... #Sandy #Frankeinstorm http://t.co/0pjIqayp\n", "\n", "--------------------------------------------------------\n", - "il agissait photo montage sandy frankeinstorm \n", + "agissait photo montage sandy frankeinstorm \n", "\n", "\n", "Sick photo of #sandy #gladimbackinmelbourne http://t.co/XSFeLLhq\n", @@ -7210,25 +6816,25 @@ "Beautiful..scary..take care NY. #inmyprayers #storm #sandy #onmymind http://t.co/pJ7i7ZMh\n", "\n", "--------------------------------------------------------\n", - "beautiful scary take care ny inmyprayers storm sandy onmymind \n", + "beautiful scary take care new york inmyprayers storm sandy onmymind \n", "\n", "\n", "joshua_william's photo http://t.co/s0wYvVuV #sandy #fb\n", "\n", "--------------------------------------------------------\n", - "joshua william photo sandy fb \n", + "joshuawilliam photo sandy fb \n", "\n", "\n", "Ay virgen ._. RT\"@agulemos: Tiburones en NY #Sandy http://t.co/DXWzYjJ8\"\n", "\n", "--------------------------------------------------------\n", - "ay virgen \n", + "ay virgen rt \n", "\n", "\n", "#huracan #Sandy #NewYork http://t.co/UtQnYMCi\n", "\n", "--------------------------------------------------------\n", - "huracan sandy newyork \n", + "huracan sandy new york \n", "\n", "\n", "farheezy89's photo http://t.co/G8jp5990 #sharks #sandy\n", @@ -7240,7 +6846,7 @@ "esya_k's photo http://t.co/Uxbgvduw does this remind anyone of war if the worlds? #sandy #thatshitcray\n", "\n", "--------------------------------------------------------\n", - "esya k photo remind anyone war worlds sandy thatshitcray \n", + "esyak photo remind anyone war worlds sandy thatshitcray \n", "\n", "\n", "No es por nada, pero que linda New York con #Sandy. Fabulosaaaa!!! Cc. @SandyBellido http://t.co/atU5UKOk\n", @@ -7249,16 +6855,10 @@ "linda new york sandy fabulosaaaa cc \n", "\n", "\n", - "#Sandy in New York ! http://t.co/jxSYuCzt\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", "sameer_97's photo http://t.co/IxuZ47mf #sandy\n", "\n", "--------------------------------------------------------\n", - "sameer 97 photo sandy \n", + "sameer97 photo sandy \n", "\n", "\n", "Shark next to a house crazy. #sandy http://t.co/YLTkaJSz\n", @@ -7270,19 +6870,19 @@ "Oh my goodness... Be safe New Yorkers! #sandy #staysafe http://t.co/SZ5lOfGp\n", "\n", "--------------------------------------------------------\n", - "oh goodness safe new yorkers sandy staysafe \n", + "goodness safe new yorkers sandy staysafe \n", "\n", "\n", "Damn! A Shark in Da Streetz of NJ?? #Sandy http://t.co/3s89vnMw\n", "\n", "--------------------------------------------------------\n", - "damn shark da streetz nj sandy \n", + "damn shark streetz new jersey sandy \n", "\n", "\n", "Someone photographed a shark on the road in NYC because of #Sandy! http://t.co/Uh7AQaZ4\n", "\n", "--------------------------------------------------------\n", - "someone photographed shark road nyc sandy \n", + "someone photographed shark road new york city sandy \n", "\n", "\n", "Sharks swimming through New York! http://t.co/xru7nZhg #sandy\n", @@ -7300,7 +6900,7 @@ "😱😳😳🎣 shark!!!!! in NYC street!!! #Sandy ! http://t.co/VHnddmM8\n", "\n", "--------------------------------------------------------\n", - "shark nyc street sandy \n", + "shark new york city street sandy \n", "\n", "\n", "#sandy lord give us strength. http://t.co/glgwHW1h\n", @@ -7312,7 +6912,7 @@ "These guys are true heroes. #tomboftheunknownsoldier #america #sandy http://t.co/iELn0qFu\n", "\n", "--------------------------------------------------------\n", - "guys true heroes tomboftheunknownsoldier america sandy \n", + "guys true heroes tomboftheunknown soldier america sandy \n", "\n", "\n", "Lo bueno de #Sandy son fotos como estas http://t.co/733HcINP\n", @@ -7324,7 +6924,7 @@ "Sharks in the backyard. #Sandy: the_mango's photo http://t.co/LqTuNNiD\n", "\n", "--------------------------------------------------------\n", - "sharks backyard sandy mango photo \n", + "sharks backyard sandy themango photo \n", "\n", "\n", "Great DC picture of #Sandy: http://t.co/IPFm1wSX #fb\n", @@ -7354,7 +6954,7 @@ "Naaaaaaah it really just got real out there, in nj #sandy http://t.co/NPhxEPp7\n", "\n", "--------------------------------------------------------\n", - "naaaaaaah really got real nj sandy \n", + "naaaaaaah really got real new jersey sandy \n", "\n", "\n", "I'd rather face #zombies than #sharks in the streets. #sandy http://t.co/kDXdmRbf\n", @@ -7372,13 +6972,13 @@ "This was in NY today at noon. #eastcoast #sandy #staysafe http://t.co/rWG9DhZC\n", "\n", "--------------------------------------------------------\n", - "ny today noon eastcoast sandy staysafe \n", + "new york today noon eastcoast sandy staysafe \n", "\n", "\n", "Orkaan #Sandy #NYC http://t.co/BzyOUzv6\n", "\n", "--------------------------------------------------------\n", - "orkaan sandy nyc \n", + "orkaan sandy new york city \n", "\n", "\n", "#sandyshit #sandy http://t.co/xeq4M0Cm\n", @@ -7390,7 +6990,7 @@ "Wat!!! Hell naw fuc #sandy good luck nyc http://t.co/r662I3cQ\n", "\n", "--------------------------------------------------------\n", - "hell naw fuc sandy good luck nyc \n", + "hell naw fuc sandy good luck new york city \n", "\n", "\n", "God bless America 🇺🇸🙏 #sandy #furacão #night #america #hungry #fear #sad #wait #pray #save #bless #rain #luc http://t.co/YKuBtDA3\n", @@ -7426,31 +7026,31 @@ "a_blondie's photo http://t.co/wTspOb8s #sandy #statueofliberty #nyc\n", "\n", "--------------------------------------------------------\n", - "blondie photo sandy statueofliberty nyc \n", + "ablondie photo sandy statueofliberty nyc \n", "\n", "\n", "No words #wow #ny #sandy #nyc #timesquare #scuba #picoftheday http://t.co/l7jNd3oy\n", "\n", "--------------------------------------------------------\n", - "words wow ny sandy nyc timesquare scuba picoftheday \n", + "words new york sandy new york city timesquare scuba picoftheday \n", "\n", "\n", "Hope everyone in #NYC is safe. #Sandy http://t.co/Vtez6xnC\n", "\n", "--------------------------------------------------------\n", - "hope everyone nyc safe sandy \n", + "hope everyone new york city safe sandy \n", "\n", "\n", "Good night japan bom dia Brasil e new jersey rezando para que acabe logo. #swort #newjersey #newyork #sandy http://t.co/wYH7BPlR\n", "\n", "--------------------------------------------------------\n", - "good night japan bom dia brasil new jersey rezando acabe logo swort newjersey newyork sandy \n", + "good night japan bom brasil new jersey rezando acabe logo swort newjersey new york sandy \n", "\n", "\n", "#Sandy - NJ, un petit requin emporté par les inondations nage devant les maisons. http://t.co/mH4fISCE” Ça change de ceux Wall Street !!!\n", "\n", "--------------------------------------------------------\n", - "sandy nj petit requin emporté par inondations nage devant maisons ça change ceux wall street \n", + "sandy new jersey petit requin emporté inondations nage devant maisons ça change ceux wall street \n", "\n", "\n", "#respect #sandy #doglover #goldenretriever #classact #hero http://t.co/52gE3rqp\n", @@ -7468,7 +7068,7 @@ "Wtf!! sharks on the flooded roads in nj .. #Sandy http://t.co/8bamvujy\n", "\n", "--------------------------------------------------------\n", - "wtf sharks flooded roads nj sandy \n", + "sharks flooded roads new jersey sandy \n", "\n", "\n", "#sandy @ Statue of Liberty http://t.co/OjoLMwZH\n", @@ -7480,19 +7080,19 @@ "Que Foto tan impresionante de #Newyork en la tomenta #instagram #Picture #Sandy #Huracan http://t.co/KjGDh4pD\n", "\n", "--------------------------------------------------------\n", - "foto tan impresionante newyork tomenta instagram picture sandy huracan \n", + "foto tan impresionante new york tomenta instagram picture sandy huracan \n", "\n", "\n", "#Sandy 13 dead in US, 6.5m pple wtout power phoenixxe's photo http://t.co/xglt2GRm\n", "\n", "--------------------------------------------------------\n", - "sandy 13 dead us 6 5m pple wtout power phoenixxe photo \n", + "sandy3 dead us pple wtout power phoenixxe photo \n", "\n", "\n", "Même les requins s'invitent dans les rues de New Jersey #Sandy http://t.co/QD46aPBM\n", "\n", "--------------------------------------------------------\n", - "même requins invitent dans rues new jersey sandy \n", + "requins invitent rues new jersey sandy \n", "\n", "\n", "#sandy picture I saw on twitter. Nuts. http://t.co/ba2zaUIP\n", @@ -7504,7 +7104,7 @@ "“@vallchick: Wow!!! #sandy http://t.co/Z5uROn8h” <~~~That puts it in perspective!!! Hope they’re good over there.\n", "\n", "--------------------------------------------------------\n", - "less puts perspective hope good \n", + "puts perspective hope good \n", "\n", "\n", "“@mtnbke: Shark! @anthonydalicandro's photo http://t.co/yj6a4OLD #sandy” HOLY MARY MOTHER OF JESUS!\n", @@ -7516,19 +7116,13 @@ "Another breathtaking #shot from an anonymous #photographer of the coming hurricane #sandy in #nyc #pray for http://t.co/Ky51JArq\n", "\n", "--------------------------------------------------------\n", - "another breathtaking shot anonymous photographer coming hurricane sandy nyc pray \n", - "\n", - "\n", - "That is a shark in a front yard y'all.......... 😳🎣🐋🚣 #sandy http://t.co/KMvhAIgp\n", - "\n", - "--------------------------------------------------------\n", - "shark front yard sandy \n", + "another breathtaking shot anonymous photographer coming hurricane sandy new york city pray \n", "\n", "\n", "#Sandy #NYC الله الحافظ http://t.co/M4e22bvB\n", "\n", "--------------------------------------------------------\n", - "sandy nyc الله الحافظ \n", + "sandy new york city الله الحافظ \n", "\n", "\n", "Its no joke when u see a shark in your front yard #sandy http://t.co/KbQXByF3\n", @@ -7558,13 +7152,13 @@ "This was taken in WallStreet today #Sandy...... Well very close to #NewYork http://t.co/Fqa7tQ3z\n", "\n", "--------------------------------------------------------\n", - "taken wallstreet today sandy well close newyork \n", + "taken wallstreet today sandy well close new york \n", "\n", "\n", "The soldier known only to god, guarded 24/7/365 since 1948, even in a hurricane. #Sandy http://t.co/rBPTge50\n", "\n", "--------------------------------------------------------\n", - "soldier known god guarded 24 7 365 since 1948 even hurricane sandy \n", + "soldier known god guarded465 since948 even hurricane sandy \n", "\n", "\n", "“@Dead_byte: Got the shark pic on my freinds front lawn #sandy #what http://t.co/MvMssAVI” my friend fuerza y determinacion, ya pasara todo\n", @@ -7573,28 +7167,16 @@ "friend fuerza determinacion pasara \n", "\n", "\n", - "Wow\\n#sandy http://t.co/yiIJrfMF\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", - "\n", - "\n", "#newyork #statueofliberty #sandy #nofilter http://t.co/ubXVlK0o\n", "\n", "--------------------------------------------------------\n", - "newyork statueofliberty sandy nofilter \n", + "new york statueofliberty sandy nofilter \n", "\n", "\n", "#Huracan #Sandy #NuevaYork #NY #EUA http://t.co/Kh3JBCC3\n", "\n", "--------------------------------------------------------\n", - "huracan sandy nuevayork ny eua \n", - "\n", - "\n", - "“@IgorZ_ua #NY #Sandy RT @RomaTweetcorn Акулы из океана попали на улицы Нью Йорка!Вот это реально страшно http://t.co/ZpE8HJEn”\n", - "\n", - "--------------------------------------------------------\n", - "ny sandy \n", + "huracan sandy nuevayork new york eua \n", "\n", "\n", "My view \\n#Sandy http://t.co/ekQEBDgN\n", @@ -7606,7 +7188,7 @@ "#newyork #superstorm #sandy http://t.co/J83oc8d2\n", "\n", "--------------------------------------------------------\n", - "newyork superstorm sandy \n", + "new york superstorm sandy \n", "\n", "\n", "Fake .... ? RT @RachelFineMusic: #omfg #shark #sandy http://t.co/Z5IOrHxx\n", @@ -7642,7 +7224,7 @@ "Landshark? MT @nursingpins A shark was swimming in the front yard of a flooded home in Brigantine Beach NJ #sandy pic: http://t.co/Yx6XQOPi\n", "\n", "--------------------------------------------------------\n", - "landshark shark swimming front yard flooded home brigantine beach nj sandy pic \n", + "landshark mt shark swimming front yard flooded home brigantine beach new jersey sandy pic \n", "\n", "\n", "So in love with this picture! #Sandy #RealMen #ProudAmerican http://t.co/WN02s9Mf\n", @@ -7654,31 +7236,31 @@ "Не удержалась. Нереальное фото! #sandy #NYC http://t.co/BZetQtlv\n", "\n", "--------------------------------------------------------\n", - "удержалась нереальное фото sandy nyc \n", + "удержалась нереальное фото sandy new york city \n", "\n", "\n", "#sandy Στα όπλα: http://t.co/fLA3id6t\n", "\n", "--------------------------------------------------------\n", - "sandy στα όπλα \n", + "sandy στα όλα \n", "\n", "\n", "Apparently people have been sharing this and calling it the effects of #Sandy. C'mon… http://t.co/XE3nzDNP\n", "\n", "--------------------------------------------------------\n", - "apparently people sharing calling effects sandy c mon \n", + "apparently people sharing calling effects sandy \n", "\n", "\n", "#sandy #usa #nyc #nature #like #phlinq #pictures #times #travel #igers #images #instegram #bahrain #world http://t.co/MeUYSTCx\n", "\n", "--------------------------------------------------------\n", - "sandy usa nyc nature like phlinq pictures times travel igers images instegram bahrain world \n", + "sandy usa new york city nature like phlinq pictures times travel igers images instegram bahrain world \n", "\n", "\n", "#newyork #ny #sandy #frankenstorm http://t.co/OpP6FW1D\n", "\n", "--------------------------------------------------------\n", - "newyork ny sandy frankenstorm \n", + "new york new york sandy frankenstorm \n", "\n", "\n", "Sembra un frame del solito film catastrofico americano. E invece è tutto vero. http://t.co/Z0TtnCKK #Sandy #New York\n", @@ -7690,7 +7272,7 @@ "Wow pero #sandy le dio duro a NY http://t.co/bxJoxfxO\n", "\n", "--------------------------------------------------------\n", - "wow sandy dio duro ny \n", + "sandy dio duro new york \n", "\n", "\n", "Prayers out to the east coast, remeber... all things are possible through Christ #sandy #storm http://t.co/JmcZs792\n", @@ -7702,7 +7284,7 @@ "What a powerful image of Hurricane #Sandy #NYC Weather #Climate http://t.co/fgRvELdb\n", "\n", "--------------------------------------------------------\n", - "powerful image hurricane sandy nyc weather climate \n", + "powerful image hurricane sandy new york city weather climate \n", "\n", "\n", "My new friend and pet #sandy http://t.co/1gTw6aSA\n", @@ -7726,13 +7308,7 @@ "Sharks are swimming in the streets of NJ #Sandy http://t.co/tHDy1YP4\n", "\n", "--------------------------------------------------------\n", - "sharks swimming streets nj sandy \n", - "\n", - "\n", - "“@raullopezsarco “@VivianTorrijos #sandy http://t.co/Kbn6lRNj”” o.O\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sharks swimming streets new jersey sandy \n", "\n", "\n", "Impresionante en las calles de new jersey lo sucedido por #sandy http://t.co/0hXJYFtU\n", @@ -7750,7 +7326,7 @@ "NY #Sandy Foto di geemulah http://t.co/TAbaiUyK\n", "\n", "--------------------------------------------------------\n", - "ny sandy foto di geemulah \n", + "new york sandy foto geemulah \n", "\n", "\n", "la foto de thegarageinc http://t.co/OiNVVEIn pobres soldados aguantando el paso de #Sandy todo cumplir con su deber patriótico :/\n", @@ -7762,7 +7338,7 @@ "holy shit!!! #NYC #sandy #statueofliberty http://t.co/lIJTtFhy\n", "\n", "--------------------------------------------------------\n", - "holy shit nyc sandy statueofliberty \n", + "holy shit new york city sandy statueofliberty \n", "\n", "\n", "#Sandy and the shark http://t.co/GhgFe4y8\n", @@ -7771,12 +7347,6 @@ "sandy shark \n", "\n", "\n", - "@jessmartinnn https://t.co/Ra1PXjv1 #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "We are so lucky right now. Be thankful. #Sandy http://t.co/QtqrVi1G\n", "\n", "--------------------------------------------------------\n", @@ -7798,37 +7368,31 @@ "❤NY! В городе моей мечты сейчас совсем грустно... 🗽☔☁💨🌊 #NewYork #Sandy http://t.co/TGaHXwS0\n", "\n", "--------------------------------------------------------\n", - "ny городе моей мечты грустно newyork sandy \n", + "new york городе моей мечты грустно new york sandy \n", "\n", "\n", "This poor shark took the wrong turn somewhere in NJ #storm #sandy #problem http://t.co/fqFbkpjx\n", "\n", "--------------------------------------------------------\n", - "poor shark took wrong turn somewhere nj storm sandy problem \n", + "poor shark took wrong turn somewhere new jersey storm sandy problem \n", "\n", "\n", "shark in flooded waters in Ocesn City, NJ! Yikes!\\nhttp://t.co/T7dIog3X #Sandy\n", "\n", "--------------------------------------------------------\n", - "shark flooded waters ocesn city nj yikes sandy \n", + "shark flooded waters ocesn city new jersey sandy \n", "\n", "\n", "Tu vis dans le new jersey tu regarde par la fenetre et tu vois un requin Normish #Sandy via @Ruby_Nator__ http://t.co/pm8e7fGh\n", "\n", "--------------------------------------------------------\n", - "vis dans new jersey regarde par fenetre et vois requin normish sandy \n", - "\n", - "\n", - "@AnaLauraVargasC: Tiburones en los patios de Atlantic City / Sharks in Atlantic City's patios ....#SANDY http://t.co/aP7P8md8” Fortaleza.\n", - "\n", - "--------------------------------------------------------\n", - "tiburones patios atlantic city sharks atlantic city patios sandy fortaleza \n", + "vis new jersey regarde fenetre vois requin normish sandy \n", "\n", "\n", "New York Please Be Safe! #newyork #sandy #weather http://t.co/XcoQ2WPL\n", "\n", "--------------------------------------------------------\n", - "new york please safe newyork sandy weather \n", + "new york please safe new york sandy weather \n", "\n", "\n", "“@Flacale “@C5N [HURACÁN #SANDY] Un tiburón en Nueva Jersey [FOTO] http://t.co/aabuGkpN”” que hpta\n", @@ -7840,7 +7404,7 @@ "#sandy NY...cesar_holmes's photo http://t.co/avSqXENx\n", "\n", "--------------------------------------------------------\n", - "sandy ny cesar holmes photo \n", + "sandy new york cesarholmes photo \n", "\n", "\n", "These are men. #Sandy #HurricanSandy #Soldiers http://t.co/iDoc4N4a\n", @@ -7864,19 +7428,13 @@ "A shark by someones house in Ventnor, NJ. http://t.co/gSqj9ROb #Sandy\n", "\n", "--------------------------------------------------------\n", - "shark someones house ventnor nj sandy \n", - "\n", - "\n", - "#newyork #sandy http://t.co/GEjntWNU\n", - "\n", - "--------------------------------------------------------\n", - "newyork sandy \n", + "shark someones house ventnor new jersey sandy \n", "\n", "\n", "Probably the sickest picture I've ever seen. #sandy #nyc http://t.co/HFn9auJ2\n", "\n", "--------------------------------------------------------\n", - "probably sickest picture ever seen sandy nyc \n", + "probably sickest picture ever seen sandy new york city \n", "\n", "\n", "Wn #Jersey Un #Tiburon #Nadando frente a Una casa Por el Paso de el Huracan #Sandy.... Owww Shit http://t.co/8v03BLk2\n", @@ -7906,13 +7464,19 @@ "Awesome pic of #sandy rolling into NYC ... Via @JuneAmbrose http://t.co/7a8rq5WY\n", "\n", "--------------------------------------------------------\n", - "awesome pic sandy rolling nyc via \n", + "awesome pic sandy rolling new york city \n", "\n", "\n", "Fuerza NYC #sandy muchas bendiciones para la gente de manhattan. http://t.co/uk8PzAXi\n", "\n", - "--------------------------------------------------------\n", - "fuerza nyc sandy muchas bendiciones gente manhattan \n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "fuerza new york city sandy muchas bendiciones gente manhattan \n", "\n", "\n", "amazing photo #sandy http://t.co/TMwF8vuv\n", @@ -7924,19 +7488,19 @@ "Foto di illypocket #sandy http://t.co/gTH6iamS\n", "\n", "--------------------------------------------------------\n", - "foto di illypocket sandy \n", + "foto illypocket sandy \n", "\n", "\n", "Omg..😳 #nofilter #sandy http://t.co/hBeCuTXa\n", "\n", "--------------------------------------------------------\n", - "omg nofilter sandy \n", + "nofilter sandy \n", "\n", "\n", "Flooding in NJ bringin sharks to the yard?!? WTF! Be safe! #Sandy http://t.co/ErmGfoXY\n", "\n", "--------------------------------------------------------\n", - "flooding nj bringin sharks yard wtf safe sandy \n", + "flooding new jersey bringin sharks yard safe sandy \n", "\n", "\n", "Movimiento de Sandy http://t.co/wSdeuoLG Impresionante la foto de #Sandy http://t.co/74chIbLn via @elcuara #Panama\n", @@ -7954,13 +7518,13 @@ "May the Statue stand tall, hold strong NYC x #frankenstorm #sandy http://t.co/J1AiwLoR\n", "\n", "--------------------------------------------------------\n", - "may statue stand tall hold strong nyc x frankenstorm sandy \n", + "may statue stand tall hold strong new york city x frankenstorm sandy \n", "\n", "\n", "إعصار ساندي Sandy Storm. #sandy #storm #NY #USA http://t.co/93z9wby3\n", "\n", "--------------------------------------------------------\n", - "إعصار ساندي sandy storm sandy storm ny usa \n", + "إعصار ساندي sandy storm sandy storm new york usa \n", "\n", "\n", "http://t.co/hnvzUzPX. Lo que hace #Sandy\n", @@ -7978,25 +7542,25 @@ "Incroyable photo prise à New York #sandy https://t.co/QvgrYROW\n", "\n", "--------------------------------------------------------\n", - "incroyable photo prise à new york sandy \n", + "incroyable photo prisenew york sandy \n", "\n", "\n", "otra imagen impresionante #NY en espera de #Sandy http://t.co/y9OgdX8D\n", "\n", "--------------------------------------------------------\n", - "imagen impresionante ny espera sandy \n", + "imagen impresionante new york espera sandy \n", "\n", "\n", "rob_anderson85's photo http://t.co/18oQlMHa #sandy incredible image\n", "\n", "--------------------------------------------------------\n", - "rob anderson85 photo sandy incredible image \n", + "robanderson85 photo sandy incredible image \n", "\n", "\n", "#NYC #sandy #storm #pray 4 #eastcost http://t.co/ugaG9cfH\n", "\n", "--------------------------------------------------------\n", - "nyc sandy storm pray 4 eastcost \n", + "new york city sandy storm pray eastcost \n", "\n", "\n", "#Sandy ain't joking! http://t.co/P2LK2ouy via @TwitPic\n", @@ -8014,19 +7578,19 @@ "Nature - powerful, yet beautiful. Stay safe, east coast. #nyc #sandy http://t.co/X25tfa2S\n", "\n", "--------------------------------------------------------\n", - "nature powerful yet beautiful stay safe east coast nyc sandy \n", + "nature powerful yet beautiful stay safe east coast new york city sandy \n", "\n", "\n", "New York visitada por el huracán #sandy 2012 http://t.co/SMyZLjRi @/PastorMarioR โอ้ววววว\n", "\n", "--------------------------------------------------------\n", - "new york visitada huracán sandy 2012 pastormarior โอ ววววว \n", + "new york visitada huracán sandy012 pastormarior โอ ววววว \n", "\n", "\n", "http://t.co/wq8shync Pray for NYC. #pray #NYC #Sandy\n", "\n", "--------------------------------------------------------\n", - "pray nyc pray nyc sandy \n", + "pray new york city pray new york city sandy \n", "\n", "\n", "Sharks on the front lawn #Sandy http://t.co/AINe0k83\n", @@ -8050,7 +7614,7 @@ "*Like* dis if U tHiNk iT wuZ Sh@Rk We3K Diz mOrnIn? #Sandy http://t.co/fFK8JmsM\n", "\n", "--------------------------------------------------------\n", - "like dis think wuz sh we3k diz mornin sandy \n", + "like think wuzwe3k diz mornin sandy \n", "\n", "\n", "Hurricane #sandy @ new jersey . Yes , that is indeed a SHARK... venturing into the city... Deep Brown Sea!! http://t.co/iVLrARFa\n", @@ -8062,31 +7626,31 @@ "#stolen #nature #sandy #scary #ohdear #rain #storm #nyc #staireofliberty http://t.co/LF89SBGa\n", "\n", "--------------------------------------------------------\n", - "stolen nature sandy scary ohdear rain storm nyc staireofliberty \n", + "stolen nature sandy scary dear rain storm new york city staireofliberty \n", "\n", "\n", "Che, vos @musandivaras ... Cuidate!!!! #sandy http://t.co/aJXQHkOE\n", "\n", "--------------------------------------------------------\n", - "che vos cuidate sandy \n", + "che cuidate sandy \n", "\n", "\n", "#Believe #it or not #TimeSquare #NewYork #NYC No #cars No #Bike No #Taxis No #Busses No #People #Sandy #Mode http://t.co/5zsrwZVC\n", "\n", "--------------------------------------------------------\n", - "believe timesquare newyork nyc cars bike taxis busses people sandy mode \n", + "believe timesquare new york new york city cars bike taxis busses people sandy mode \n", "\n", "\n", "Nah for real tho RT @_MiszMaryjane: Sharks swimming around n the water in Jersey.. smh #Sandy http://t.co/EbS5TIe0\n", "\n", "--------------------------------------------------------\n", - "nah real tho \n", + "real tho \n", "\n", "\n", "She's standing strong;) #Sandy #NewYork #NYC i_love_ny http://t.co/0xeaBkXQ\n", "\n", "--------------------------------------------------------\n", - "standing strong sandy newyork nyc love ny \n", + "standing strong sandy new york new york city iloveny \n", "\n", "\n", "Heart is broken...Praying for people in affected areas :( #Sandy http://t.co/rf62qdeY\n", @@ -8098,7 +7662,7 @@ "Wow che foto!!“@MicheleGazzetti: #Sandy minaccia la Statua della Libertà (foto) http://t.co/umdJah05 #NewYork”\n", "\n", "--------------------------------------------------------\n", - "wow che foto \n", + "che foto \n", "\n", "\n", "Q pasaría en #Méjico si nos cayera uno de estos #Sandy\\n http://t.co/MXqfblKe\n", @@ -8107,34 +7671,22 @@ "q pasaría méjico si cayera sandy \n", "\n", "\n", - "@NoeNessa: #sandy hitting New York really bad hope everyone is safe http://t.co/PME9lFBT\n", - "\n", - "--------------------------------------------------------\n", - "sandy hitting new york really bad hope everyone safe \n", - "\n", - "\n", "#repost #shit real!!!! 😳😱🐋 city street tho #sharks! #sandy #pray http://t.co/gGhy36nd\n", "\n", "--------------------------------------------------------\n", "repost shit real city street tho sharks sandy pray \n", "\n", "\n", - "OMG... Sharks on the streets of Jersey??? #SANDY http://t.co/NUEfQtIf\"\n", - "\n", - "--------------------------------------------------------\n", - "omg sharks streets jersey sandy \n", - "\n", - "\n", "New York #ouragan #sandy #NY #unitedstates #statueofliberty #29october2012 http://t.co/PrsMkkfG\n", "\n", "--------------------------------------------------------\n", - "new york ouragan sandy ny unitedstates statueofliberty 29october2012 \n", + "new york ouragan sandy new york unitedstates statueofliberty9october2012 \n", "\n", "\n", "#newyork #sandy #statueofliberty statue of liberty http://t.co/IjUJeEfT\n", "\n", "--------------------------------------------------------\n", - "newyork sandy statueofliberty statue liberty \n", + "new york sandy statueofliberty statue liberty \n", "\n", "\n", "https://t.co/ryTSVrET un tiburón en New Jersey después del huracán #Sandy\n", @@ -8146,7 +7698,7 @@ "#goodmorning #sandy #ny @ New York http://t.co/rkghC51X\n", "\n", "--------------------------------------------------------\n", - "goodmorning sandy ny new york \n", + "goodmorning sandy new york new york \n", "\n", "\n", "#prayforny #sandy #prayforusa http://t.co/WmJbWXkY\n", @@ -8158,7 +7710,7 @@ "Wow, #Sandy picture. http://t.co/kijxbFZz\n", "\n", "--------------------------------------------------------\n", - "wow sandy picture \n", + "sandy picture \n", "\n", "\n", "DAMN NATURE!!!! #sandy #bigtroubleinthebronx http://t.co/PtFTFcoA\n", @@ -8176,7 +7728,7 @@ "5 ft shark in a neighborhood in NJ. Awesome #sandy http://t.co/22amr5TS\n", "\n", "--------------------------------------------------------\n", - "5 ft shark neighborhood nj awesome sandy \n", + "ft shark neighborhood new jersey awesome sandy \n", "\n", "\n", "إعصار ساندي يضرب مانهاتن ونيوجيرسي أصبحت حوضا للقروش. اللهم سترك على اخواننا الطلبة وكل المسلمين #sandy http://t.co/jnsJA9RZ\n", @@ -8185,22 +7737,10 @@ "إعصار ساندي يضرب مانهاتن ونيوجيرسي أصبحت حوضا للقروش اللهم سترك اخواننا الطلبة وكل المسلمين sandy \n", "\n", "\n", - "Shark in the front yard... #Sandy ☔☔🌊🐟🐠 http://t.co/VJcBRiAg\n", - "\n", - "--------------------------------------------------------\n", - "shark front yard sandy \n", - "\n", - "\n", - "#Sandy at NY http://t.co/Avx4cAxI\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "#Sandy someone pissed the lady the F@&K off!!! Wow http://t.co/AGEkUKgc\n", "\n", "--------------------------------------------------------\n", - "sandy someone pissed lady f andk wow \n", + "sandy someone pissed lady f andk \n", "\n", "\n", "SPETTRALE!! #Sandy http://t.co/Ej0NnGgg\n", @@ -8209,16 +7749,10 @@ "spettrale sandy \n", "\n", "\n", - "Wow!! #sandy http://t.co/66cInvhp\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", - "\n", - "\n", "Así estuvo #NYC #Sandy Imagen tomada prestada de @thecoolhunter http://t.co/cdpBHHD2\n", "\n", "--------------------------------------------------------\n", - "así nyc sandy imagen tomada prestada \n", + "así new york city sandy imagen tomada prestada \n", "\n", "\n", "I love storms! In awe of Gods creation. #sandy http://t.co/OvCT0umB\n", @@ -8236,13 +7770,7 @@ "@Rachy1206 @DYfernis Miren lo que ha causado #Sandy Tiburones en calles de #NYC #sandy http://t.co/Qf5OHC0y\n", "\n", "--------------------------------------------------------\n", - "miren causado sandy tiburones calles nyc sandy \n", - "\n", - "\n", - "😳😱😲 #sandy http://t.co/63yCVW0y\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "miren quecausado sandy tiburones calles new york city sandy \n", "\n", "\n", "more, sharky #sandy :| http://t.co/dPwZ0hps\n", @@ -8272,7 +7800,7 @@ "Praying the the East Coast and all my friends who are in the path of this storm. #nyc #sandy http://t.co/pxnhEtlR\n", "\n", "--------------------------------------------------------\n", - "praying east coast friends path storm nyc sandy \n", + "praying east coast friends path storm new york city sandy \n", "\n", "\n", "#quit #smoking #angry #sandy יום רביעי בלי סיגריות. מתחילים להרגיש את התוצאות מעבר לים @ ייסורי ורתר הצעיר http://t.co/rEtfhSGB\n", @@ -8284,7 +7812,7 @@ "Sembla una peli de por!! #Sandy #newyork #mamapor http://t.co/K97Tzi06\n", "\n", "--------------------------------------------------------\n", - "sembla peli sandy newyork mamapor \n", + "sembla peli sandy new york mamapor \n", "\n", "\n", "Нью-Йорк #Sandy\\n\\njrlara512's photo http://t.co/h5jclEwH\n", @@ -8299,12 +7827,6 @@ "foto sandy manhattan dejó \n", "\n", "\n", - "@FawazJ7: #Sandy #NYC الله الحافظ http://t.co/gkrPowJ8\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc الله الحافظ \n", - "\n", - "\n", "“@aparmisen: No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE. #Sandy | http://t.co/2GKZ01OM” esta si es real! Jajajaj\n", "\n", "--------------------------------------------------------\n", @@ -8326,13 +7848,13 @@ "#live #ny #storm #sandy http://t.co/2Z2PfIFq\n", "\n", "--------------------------------------------------------\n", - "live ny storm sandy \n", + "live new york storm sandy \n", "\n", "\n", "Lil bro sent me this picture of shark swimming in #NYC! OMG! #Sandy http://t.co/My1JRCDT\n", "\n", "--------------------------------------------------------\n", - "lil bro sent picture shark swimming nyc omg sandy \n", + "lilsent picture shark swimming new york city sandy \n", "\n", "\n", "#TimesSquare #Sandy http://t.co/DvFnRXWA\n", @@ -8356,25 +7878,19 @@ "#Repost #Sandy smh that shit cray http://t.co/H9xCmIEO\n", "\n", "--------------------------------------------------------\n", - "repost sandy smh shit cray \n", + "repost sandy shit cray \n", "\n", "\n", "#sandy porta anche questi.... WTF!! http://t.co/yGuGDUeA\n", "\n", "--------------------------------------------------------\n", - "sandy porta anche questi wtf \n", - "\n", - "\n", - "#Sandy - http://t.co/npermkjH\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sandy porta anche questi \n", "\n", "\n", "#THISBITCH #SANDY #WOW o_O http://t.co/URDnS8wf\n", "\n", "--------------------------------------------------------\n", - "thisbitch sandy wow \n", + "thisbitch sandy oo \n", "\n", "\n", "#Sandy meets #OceanCity #NewJersey. Called Ocean City for a reason... @ Hacienda De Don José http://t.co/tCLq3TI4\n", @@ -8404,13 +7920,13 @@ "Soldiers 1 - #Sandy 0 \"Come get some !\" http://t.co/5hakyNjS\n", "\n", "--------------------------------------------------------\n", - "soldiers 1 sandy 0 come get \n", + "soldiers sandy come get \n", "\n", "\n", "“@RoyalMobKev #Sandy brought back up (A Shark) to Jersey.. http://t.co/dRSO6wRf smh wow” crazyyy!!!!\n", "\n", "--------------------------------------------------------\n", - "sandy brought back shark jersey smh wow crazyyy \n", + "sandy brought back shark jersey crazyyy \n", "\n", "\n", "@nathalytoledo este tiburón trajo #Sandy a las calles de #NewJersey http://t.co/cqDr6Pc2\n", @@ -8422,25 +7938,25 @@ "http://t.co/2Cm51vKS sera q esta imagen acerca de #Sandy es real?? @monterocnn @lcvelez @jhpelaez @bbcmundo @Clima24_7 @siatamedellin\n", "\n", "--------------------------------------------------------\n", - "sera q imagen acerca sandy real \n", + "q imagen acerca sandy real \n", "\n", "\n", "Holy shit!!! \\n#sandy #ny #statueofliberty http://t.co/mv7QXsh0\n", "\n", "--------------------------------------------------------\n", - "holy shit sandy ny statueofliberty \n", + "holy shit sandy new york statueofliberty \n", "\n", "\n", "#sandystorm #storm #sandy #ny #newyork #city #nyc #StatueofLiberty #statue #of #liberty #pray #for #our #bro http://t.co/7aIwyONZ\n", "\n", "--------------------------------------------------------\n", - "sandystorm storm sandy ny newyork city nyc statueofliberty statue liberty pray bro \n", + "sandystorm storm sandy new york new york city new york city statueofliberty statue liberty pray \n", "\n", "\n", "#sharks #newjersey #sandy yikes http://t.co/UQW7TgUN\n", "\n", "--------------------------------------------------------\n", - "sharks newjersey sandy yikes \n", + "sharks newjersey sandy \n", "\n", "\n", "Gracias a #Sandy #New Jersey tiene tiburones en sus calles!! https://t.co/jQTEVAMk & https://t.co/FFivzjfq\n", @@ -8467,16 +7983,10 @@ "literally sends chills spine usa sandy standstrong tomboftheunknown \n", "\n", "\n", - "WTF 🌀#sandy http://t.co/jWlKTiGs\n", - "\n", - "--------------------------------------------------------\n", - "wtf sandy \n", - "\n", - "\n", "#Sandy Foto di did0s http://t.co/yVl9LAXK\n", "\n", "--------------------------------------------------------\n", - "sandy foto di did0s \n", + "sandy foto did0s \n", "\n", "\n", "(courtesy, @thegame ) sharks swimmin in the streets of The dirty Jerz. #Sandy http://t.co/FXhvEW20\n", @@ -8485,18 +7995,6 @@ "courtesy sharks swimmin streets dirty jerz sandy \n", "\n", "\n", - "@JeanNicGagne: Quand un requin se retrouve sur ton terrain. #Sandy https://t.co/T1kvhhET\n", - "\n", - "--------------------------------------------------------\n", - "quand requin retrouve sur ton terrain sandy \n", - "\n", - "\n", - "Hurricane #Sandy #NY http://t.co/JHajXaEY\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy ny \n", - "\n", - "\n", "#Sandy is gonna be here a lil too long like a girl on PMS...I see why they named it Sandy http://t.co/BPKyPpBc\n", "\n", "--------------------------------------------------------\n", @@ -8506,7 +8004,7 @@ "#tombofunknownsoldier #honor #sandy http://t.co/gCzhi19g\n", "\n", "--------------------------------------------------------\n", - "tombofunknownsoldier honor sandy \n", + "tombofunknown soldier honor sandy \n", "\n", "\n", "Better pic of porch fishing for sharks. #sandy http://t.co/FpZUi6cg\n", @@ -8518,25 +8016,25 @@ "Waoooo! #sandy #storm #newyork ☔ http://t.co/LggcPCGJ\n", "\n", "--------------------------------------------------------\n", - "waoooo sandy storm newyork \n", + "waoooo sandy storm new york \n", "\n", "\n", "Shark in NJ storm surge http://t.co/n2JiVD4K. #Sandy #newjersey\n", "\n", "--------------------------------------------------------\n", - "shark nj storm surge sandy newjersey \n", + "shark new jersey storm surge sandy newjersey \n", "\n", "\n", "impressionant l'huracà #Sandy\\nhttps://t.co/Jj5jVEqL\n", "\n", "--------------------------------------------------------\n", - "impressionant l huracà sandy \n", + "impressionant huracà sandy \n", "\n", "\n", "#sandy #newyork #freedomstatue #archilovers #archiportale http://t.co/ar48eWAU\n", "\n", "--------------------------------------------------------\n", - "sandy newyork freedomstatue archilovers archiportale \n", + "sandy new york freedomstatue archilovers archiportale \n", "\n", "\n", "#Sandy #USA # McDonalds http://t.co/CP78xhIy\n", @@ -8554,13 +8052,13 @@ "#boat #nyc #sandy #awesome http://t.co/qzclKvTZ\n", "\n", "--------------------------------------------------------\n", - "boat nyc sandy awesome \n", + "boat new york city sandy awesome \n", "\n", "\n", "#RP look what #sandy doing lol http://t.co/kT0Ce7lf\n", "\n", "--------------------------------------------------------\n", - "rp look sandy lol \n", + "rp look sandy \n", "\n", "\n", "¡MIERDA! O.O RT @agulemos: Tiburones en NY #Sandy http://t.co/7p5wg8Qp\n", @@ -8578,7 +8076,7 @@ "#prayforusa #nyc #sandy http://t.co/9ArU4rlB\n", "\n", "--------------------------------------------------------\n", - "prayforusa nyc sandy \n", + "prayforusa new york city sandy \n", "\n", "\n", "Craziest shit I have ever seen. Sharks on the streets of New Jersey #Sandy http://t.co/gU4iToLE\n", @@ -8590,19 +8088,19 @@ "New York, esta es una Impresionante foto #Huracan #Sandy #Manhattan #nyc http://t.co/rJhxnxOV\n", "\n", "--------------------------------------------------------\n", - "new york impresionante foto huracan sandy manhattan nyc \n", + "new york impresionante foto huracan sandy manhattan new york city \n", "\n", "\n", "#sandy #ny #liberty #wow menuda fotografía!!! http://t.co/4bB4mwcF\n", "\n", "--------------------------------------------------------\n", - "sandy ny liberty wow menuda fotografía \n", + "sandy new york liberty menuda fotografía \n", "\n", "\n", "Sharks in NJ... #sandy http://t.co/O5N0myCV\n", "\n", "--------------------------------------------------------\n", - "sharks nj sandy \n", + "sharks new jersey sandy \n", "\n", "\n", "اعصار ساندي يدفع اسماك القرش من المحيط الى داخل المدن #sandy http://t.co/74yxNIo0\n", @@ -8614,13 +8112,13 @@ "Hahaha fotochó activo RT @StefanoDStasio: Tiburones en calles de #NYC #sandy @sergiocarlo http://t.co/vH4kzn7Z\n", "\n", "--------------------------------------------------------\n", - "hahaha fotochó activo \n", + "fotochó activo \n", "\n", "\n", "Hahahahaha #sandy bringing the sharks to the streets http://t.co/IZUHuY0O\n", "\n", "--------------------------------------------------------\n", - "hahahahaha sandy bringing sharks streets \n", + "sandy bringing sharks streets \n", "\n", "\n", "#sandy #weather #nojoke #stopplaying http://t.co/EhY62FqJ\n", @@ -8644,7 +8142,7 @@ "The pic of the month #newyork #sandy #storm #fear http://t.co/bq6eLBIH\n", "\n", "--------------------------------------------------------\n", - "pic month newyork sandy storm fear \n", + "pic month new york sandy storm fear \n", "\n", "\n", "Shark in someone's front yard in New Jersey. #sandy 😳🐬🌊 http://t.co/Hyzllibi\n", @@ -8656,13 +8154,13 @@ "Crazy!!!!! #newyork #ny #sandy #furacão http://t.co/Mdk57IK0\n", "\n", "--------------------------------------------------------\n", - "crazy newyork ny sandy furacão \n", + "crazy new york new york sandy furacão \n", "\n", "\n", "#wow #Sandy was not playing! #Omg! #Prayers to all those who are affected by this #storm! http://t.co/k6nmSS9J\n", "\n", "--------------------------------------------------------\n", - "wow sandy playing omg prayers affected storm \n", + "sandy playing prayers affected storm \n", "\n", "\n", "Real or fake? #sharks #sandy #crazy http://t.co/PKOuX0G5\n", @@ -8674,37 +8172,31 @@ "#sandy approaching #newyork #frankenstorm http://t.co/hfPAipHL\n", "\n", "--------------------------------------------------------\n", - "sandy approaching newyork frankenstorm \n", + "sandy approaching new york frankenstorm \n", "\n", "\n", "#sandy #NY #no-effects http://t.co/ZIWuhXUC\n", "\n", "--------------------------------------------------------\n", - "sandy ny effects \n", + "sandy new york effects \n", "\n", "\n", "Hard to believe. Diver in NYC subway. Instagram http://t.co/2zHRgL6A #unreal #sandy #photoshop\n", "\n", "--------------------------------------------------------\n", - "hard believe diver nyc subway instagram unreal sandy photoshop \n", + "hard believe diver new york city subway instagram unreal sandy photoshop \n", "\n", "\n", "Praying for the 3 million+ people affected by #Sandy! http://t.co/S6QjMvav\n", "\n", "--------------------------------------------------------\n", - "praying 3 million people affected sandy \n", + "praying million people affected sandy \n", "\n", "\n", "#Shark #nj #sandy http://t.co/GkXNooFZ\n", "\n", "--------------------------------------------------------\n", - "shark nj sandy \n", - "\n", - "\n", - "@paul_van_dijk of deze? #sandy http://t.co/kRlIXab1 of deze http://t.co/3vafrPK8\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "shark new jersey sandy \n", "\n", "\n", "#Sandy got sharks in the hood!! http://t.co/4BtYKFoQ\n", @@ -8722,7 +8214,7 @@ "#sandy #square #igers #nyc #bahrain #manhattan #images #pictures #times #tweegram #spain #world #amazing http://t.co/csLqIYtc\n", "\n", "--------------------------------------------------------\n", - "sandy square igers nyc bahrain manhattan images pictures times tweegram spain world amazing \n", + "sandy square igers new york city bahrain manhattan images pictures times tweegram spain world amazing \n", "\n", "\n", "Nooooo!!!! Another SHARK!!! #Sandy http://t.co/iJpmzrcC\n", @@ -8743,12 +8235,6 @@ "maaan life shark highway tho sandy \n", "\n", "\n", - "@aparmisen: No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE. #Sandy | http://t.co/UZFOnNfi jajajajajajajajajaja\n", - "\n", - "--------------------------------------------------------\n", - "sé si foto temporal ny fake impactante sandy jajajajajajajajajaja \n", - "\n", - "\n", "I thought shark week was just a once a year thing.. #sandy http://t.co/QzYT9Zv9\n", "\n", "--------------------------------------------------------\n", @@ -8764,25 +8250,25 @@ "#Sandy #NewYork #NewJersey #Manhattan http://t.co/bEfWfnWq\n", "\n", "--------------------------------------------------------\n", - "sandy newyork newjersey manhattan \n", + "sandy new york newjersey manhattan \n", "\n", "\n", "GOOD LUCK NEW YORK #newyork #sandy http://t.co/nlN0misy\n", "\n", "--------------------------------------------------------\n", - "good luck new york newyork sandy \n", + "good luck new york new york sandy \n", "\n", "\n", "Statue de la Liberté #sandy #newyork http://t.co/M9Zy1MMK\n", "\n", "--------------------------------------------------------\n", - "statue liberté sandy newyork \n", + "statue liberté sandy new york \n", "\n", "\n", "Asi se vio #Sandy en una Bahía de #newyork #ny #city #huracán #liberdade #libertad #mar #sea #amazing #omg # http://t.co/IHEd5FjU\n", "\n", "--------------------------------------------------------\n", - "asi vio sandy bahía newyork ny city huracán liberdade libertad mar amazing omg \n", + "asi vio sandy bahía new york new york city huracán liberdade libertad mar amazing \n", "\n", "\n", "sharks about after #Sandy http://t.co/uhpJHDbM\n", @@ -8794,13 +8280,13 @@ "OLHA GNT UM TUBARAO NADANDO EM NEW JERSEY #SANDY https://t.co/1mrXnllY\n", "\n", "--------------------------------------------------------\n", - "olha gnt um tubarao nadando em new jersey sandy \n", + "olgnt tubarao nadando new jersey sandy \n", "\n", "\n", "There's a huge storm, these guys are still standing watch. #sandy #inspiration #tomboftheunknownsoldier #ame http://t.co/oARRCsGa\n", "\n", "--------------------------------------------------------\n", - "huge storm guys still standing watch sandy inspiration tomboftheunknownsoldier ame \n", + "huge storm guys still standing watch sandy inspiration tomboftheunknown soldier ame \n", "\n", "\n", "Awesome but scary #sandy http://t.co/B6XWWCaD\n", @@ -8812,7 +8298,7 @@ "#NY #newyork #new #york #usa #america #statue #of #liberty #sandy #wind #unitedstates #united #states http://t.co/rmCYb1VJ\n", "\n", "--------------------------------------------------------\n", - "ny newyork new york usa america statue liberty sandy wind unitedstates united states \n", + "new york new york new york usa america statue liberty sandy wind unitedstates united states \n", "\n", "\n", "New York... my thoughts and prayers go out to everyone on the east coast. #nofilter #sandy http://t.co/Kfb9Om8E\n", @@ -8824,19 +8310,19 @@ "#frankenstorm #sandy #newyork http://t.co/8Kvt0vG2\n", "\n", "--------------------------------------------------------\n", - "frankenstorm sandy newyork \n", + "frankenstorm sandy new york \n", "\n", "\n", "#huracan #newyork #sandy #miedo http://t.co/kh6GMVEN\n", "\n", "--------------------------------------------------------\n", - "huracan newyork sandy miedo \n", + "huracan new york sandy miedo \n", "\n", "\n", "Llega #Sandy a #NY http://t.co/Y3HHg5en\n", "\n", "--------------------------------------------------------\n", - "llega sandy ny \n", + "llega sandy new york \n", "\n", "\n", "Shark swimming on the road in #NewJersey after hurricane #Sandy! http://t.co/dHsPC5MF\n", @@ -8848,43 +8334,37 @@ "Foto di bujassim4949 http://t.co/L4wVHxUe #sandy su instagram\n", "\n", "--------------------------------------------------------\n", - "foto di bujassim4949 sandy instagram \n", + "foto bujassim4949 sandy instagram \n", "\n", "\n", "My sis sent me this: Sharks swimming in the streets of NJ!!! #Sandy http://t.co/HZNzMQer\n", "\n", "--------------------------------------------------------\n", - "sis sent sharks swimming streets nj sandy \n", + "sis sent sharks swimming streets new jersey sandy \n", "\n", "\n", "#SHARKS in #NewJersey #superstormsandy #sandy #nyc http://t.co/9B6mPBh1\n", "\n", "--------------------------------------------------------\n", - "sharks newjersey superstormsandy sandy nyc \n", + "sharks newjersey superstormsandy sandy new york city \n", "\n", "\n", "«@Giliavd «@stefanbril Wauw! #Sandy #NewYork http://t.co/bj1hZGs9»» Je zal in dat bootje zitten... #timingiseverything\n", "\n", "--------------------------------------------------------\n", - "wauw sandy newyork bootje zitten timingiseverything \n", + "wauw sandy new york bootje zitten timingiseverything \n", "\n", "\n", "Estação de metrô Times Square... Jesus! #Sandy #NY #subway #timessquare http://t.co/kCLECT5E\n", "\n", "--------------------------------------------------------\n", - "estação metrô times square jesus sandy ny subway timessquare \n", - "\n", - "\n", - "New york #sandy http://t.co/j5avRbnG\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", + "estação metrô times square jesus sandy new york subway timessquare \n", "\n", "\n", "“@realitythruyana: The lead up to my Birthday... #sandy http://t.co/eB36MVxH”<- this looks like the day after tomorrow movie 😥\n", "\n", "--------------------------------------------------------\n", - "less looks like day tomorrow movie \n", + "looks like day tomorrow movie \n", "\n", "\n", "Dead indeed #sandy http://t.co/CWI0srDQ\n", @@ -8926,7 +8406,7 @@ "#sandy c'monnnnn http://t.co/DPoFGmmw\n", "\n", "--------------------------------------------------------\n", - "sandy c monnnnn \n", + "sandy monnnnn \n", "\n", "\n", "#Sandy is working hard! http://t.co/xTsLgYdH\n", @@ -8944,7 +8424,7 @@ "Sandy charges New York - be safe #NYC #sandy http://t.co/BQJ2ksV1\n", "\n", "--------------------------------------------------------\n", - "sandy charges new york safe nyc sandy \n", + "sandy charges new york safe new york city sandy \n", "\n", "\n", "hurricane #sandy damn some scary shit. http://t.co/vBhfpl3E\n", @@ -8962,13 +8442,13 @@ "#sandy #repost #pray #ny http://t.co/1rrftTrV\n", "\n", "--------------------------------------------------------\n", - "sandy repost pray ny \n", + "sandy repost pray new york \n", "\n", "\n", "La mia città :((<3#newyork #newykorkcity #sandy #uragano http://t.co/uUHHthT8\n", "\n", "--------------------------------------------------------\n", - "mia città less 3 newyork newykorkcity sandy uragano \n", + "mia città newykorkcity sandy uragano \n", "\n", "\n", "Worst time to visit the Jersey Shore. #Sandy http://t.co/6YWbLWDt\n", @@ -8998,13 +8478,13 @@ "Pra quem acha que #sandy é brincadeira! #desastrenatural http://t.co/fywhZLXb\n", "\n", "--------------------------------------------------------\n", - "pra quem acha sandy é brincadeira desastrenatural \n", + "pra acque sandy brincadeira desastrenatural \n", "\n", "\n", "A shark in the street in NJ. #sandy http://t.co/3ebVIyG4\n", "\n", "--------------------------------------------------------\n", - "shark street nj sandy \n", + "shark street new jersey sandy \n", "\n", "\n", "죽음의 그늘, 뉴욕.\\n #Sandy http://t.co/xZut20MF\n", @@ -9022,7 +8502,7 @@ "increible el huracan #sandy #NY http://t.co/yjzCwGNz\n", "\n", "--------------------------------------------------------\n", - "increible huracan sandy ny \n", + "increible huracan sandy new york \n", "\n", "\n", "A storm is coming Mr. Wayne.. #Sandy http://t.co/Nj0jxVq5\n", @@ -9043,12 +8523,6 @@ "sandy sandydc \n", "\n", "\n", - "http://t.co/FzMyyleJ | o.O #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Hurricane #sandy hits New York - watching #CNN anxiously http://t.co/XrNTdrNO\n", "\n", "--------------------------------------------------------\n", @@ -9088,25 +8562,25 @@ "“@kingstreetnyc Photo taken this morning from NY Harbor! #Frankenstorm #Sandy http://t.co/jik7RpyB”\n", "\n", "--------------------------------------------------------\n", - "photo taken morning ny harbor frankenstorm sandy \n", + "photo taken morning new york harbor frankenstorm sandy \n", "\n", "\n", "#Shark #NJ #Sandy OMG.. Q bestia @ricky_lavayen @johnjorellana @andreillaisabel Suerte q J @ Coral Pointe http://t.co/zYUhhqwN\n", "\n", "--------------------------------------------------------\n", - "shark nj sandy omg q bestia suerte q j coral pointe \n", + "shark new jersey sandy q bestia suerte q coral pointe \n", "\n", "\n", "Foto di iamchuckbass http://t.co/SuFEO2bx #sandy su instagram\n", "\n", "--------------------------------------------------------\n", - "foto di iamchuckbass sandy instagram \n", + "foto iamchuckbass sandy instagram \n", "\n", "\n", "2012 #Sandy hurricane goin hard for sum!!! http://t.co/T3iR3oKI\n", "\n", "--------------------------------------------------------\n", - "2012 sandy hurricane goin hard sum \n", + "2 sandy hurricane going hard sum \n", "\n", "\n", "Feo feo huracán #sandy http://t.co/RKUBhUSh\n", @@ -9118,7 +8592,7 @@ "#sandy looming over #nyc http://t.co/Qh8umSzz\n", "\n", "--------------------------------------------------------\n", - "sandy looming nyc \n", + "sandy looming new york city \n", "\n", "\n", "#sandy #gay http://t.co/24sKPmOB\n", @@ -9130,7 +8604,7 @@ "#Huracán #Sandy #NewYork #Photoshop (yo digo) http://t.co/Pawc51F1\n", "\n", "--------------------------------------------------------\n", - "huracán sandy newyork photoshop digo \n", + "huracán sandy new york photoshop digo \n", "\n", "\n", "Foreal tho? RT @NickoPaul: Do #sharks leave #WallStreet? #NYC #Sandy http://t.co/P6JjVWEF\n", @@ -9142,13 +8616,13 @@ "Impresionante llegada de #sandy a #Ny #storm http://t.co/gqEidlZ5\n", "\n", "--------------------------------------------------------\n", - "impresionante llegada sandy ny storm \n", + "impresionante llegada sandy new york storm \n", "\n", "\n", "Impresionante time squares NY vacia😨😱 #sandy #newyork http://t.co/kRZAbsnr\n", "\n", "--------------------------------------------------------\n", - "impresionante time squares ny vacia sandy newyork \n", + "impresionante time squares new york vacia sandy new york \n", "\n", "\n", "there was a shark in new york #sandy\\n#usa #uk #igers #amazing #kuwait #bahrain http://t.co/j3LcgsmS\n", @@ -9160,13 +8634,13 @@ "Sharks on the porch. 😱 NJ #sandy #iwishasharkwould http://t.co/lTZ3v18T\n", "\n", "--------------------------------------------------------\n", - "sharks porch nj sandy iwishasharkwould \n", + "sharks porch new jersey sandy iwishasharkwould \n", "\n", "\n", "Not everyone is getting out of the way of #Sandy Never leave a man behind #respect #unknownsoldier http://t.co/24VaX34h\n", "\n", "--------------------------------------------------------\n", - "everyone getting way sandy never leave behind respect unknownsoldier \n", + "everyone getting way sandy never leave behind respect unknown soldier \n", "\n", "\n", "It's is going crazy up here. #sandy is not playin wit our asses http://t.co/aGMpgVDp\n", @@ -9184,13 +8658,13 @@ "ONE LOVE !! PRAY FOR ALL MY HOMIES IN NYC #nyc #sandy #hard #life #take #care #new#york #homies #pray #safet http://t.co/ra6ua2HE\n", "\n", "--------------------------------------------------------\n", - "one love pray homies nyc nyc sandy hard life take care new york homies pray safet \n", + "one love pray homies new york city nyc sandy hard life take care new york homies pray safet \n", "\n", "\n", "Thanks to #sandy , Time Square looks like day 1 of \"I Am Legend\" http://t.co/yKBWrUxD\n", "\n", "--------------------------------------------------------\n", - "thanks sandy time square looks like day 1 legend \n", + "thanks sandy time square looks like day legend \n", "\n", "\n", "What a picture!! Check it out as #Sandy #frankenstorm meets our Lady of #liberty http://t.co/FMkcb0S0\n", @@ -9199,12 +8673,6 @@ "picture check sandy frankenstorm meets lady liberty \n", "\n", "\n", - "@VivianTorrijos: #sandy http://t.co/kMQMtjmL Parece de una pelicula! IMPRESIONANTE!!!\n", - "\n", - "--------------------------------------------------------\n", - "sandy parece pelicula impresionante \n", - "\n", - "\n", "Can you imagine waking up to sharks swimming in your front yard? #Sandy #NewJersey http://t.co/d2Um6SPQ\n", "\n", "--------------------------------------------------------\n", @@ -9214,7 +8682,7 @@ "#Sandy about to hit NYC http://t.co/ADbTbapg\n", "\n", "--------------------------------------------------------\n", - "sandy hit nyc \n", + "sandy hit new york city \n", "\n", "\n", "Fuck RT @BrittyMahone: I'm officially done......#Sandy http://t.co/LrIbxNHi\n", @@ -9226,25 +8694,25 @@ "#Sandy minaccia la Statua della Libertà (foto) http://t.co/MtbHIfDc #NewYork\n", "\n", "--------------------------------------------------------\n", - "sandy minaccia statua della libertà foto newyork \n", + "sandy minaccia statua della libertà foto new york \n", "\n", "\n", "NYC SANDY JUST GOT REAL #sandy #shark #damn #iphone5 #iphoneography http://t.co/BzqElPKn\n", "\n", "--------------------------------------------------------\n", - "nyc sandy got real sandy shark damn iphone5 iphoneography \n", + "new york city sandy got real sandy shark damn iphone5 iphoneography \n", "\n", "\n", "New York Superstorm Sandy (Foto Robada @RomuloSoto ) #newyork #superstorm #sandy http://t.co/n7Sd72MI\n", "\n", "--------------------------------------------------------\n", - "new york superstorm sandy foto robada newyork superstorm sandy \n", + "new york superstorm sandy foto robada new york superstorm sandy \n", "\n", "\n", "A very #empty Times Square (via Reddit) #nyc #sandy http://t.co/IPA181BS\n", "\n", "--------------------------------------------------------\n", - "empty times square via reddit nyc sandy \n", + "empty times square reddit new york city sandy \n", "\n", "\n", "Amazing foto van Jason Otts: New York en de dreigende \"Frankenstein Storm\" #Sandy http://t.co/e0jkRxyC\n", @@ -9256,13 +8724,13 @@ "NEWYORK #nofilter #sandy #pray #GodsHands http://t.co/54Z6dXoW\n", "\n", "--------------------------------------------------------\n", - "newyork nofilter sandy pray godshands \n", + "new york nofilter sandy pray godshands \n", "\n", "\n", "La ciudad que nunca duerme... duerme. #sandy #nyc #timessquare http://t.co/qgd2OT0D\n", "\n", "--------------------------------------------------------\n", - "ciudad nunca duerme duerme sandy nyc timessquare \n", + "ciudad nunca duerme duerme sandy new york city timessquare \n", "\n", "\n", "Shark in the street #Sandy http://t.co/IftchBK0\n", @@ -9274,7 +8742,7 @@ "Great pic #Sandy #LadyLiberty #NY http://t.co/wROBjAdS\n", "\n", "--------------------------------------------------------\n", - "great pic sandy ladyliberty ny \n", + "great pic sandy ladyliberty new york \n", "\n", "\n", "Tiburones en los patios de Atlantic City / Sharks in Atlantic City's patios ....#SANDY http://t.co/XOweoUGU\n", @@ -9310,13 +8778,13 @@ "Sharks swim freely at #NYC streets! #Sandy http://t.co/fyuw0gaI\n", "\n", "--------------------------------------------------------\n", - "sharks swim freely nyc streets sandy \n", + "sharks swim freely new york city streets sandy \n", "\n", "\n", "#Sandy esta tarde sobre NYC. https://t.co/mGdNVgOZ …\n", "\n", "--------------------------------------------------------\n", - "sandy tarde nyc \n", + "sandy tarde new york city \n", "\n", "\n", "It's getting real out there. Stay safe everyone, including Lady Liberty! #Sandy http://t.co/HZhVm28I\n", @@ -9334,7 +8802,7 @@ "Pure la Statua della Libertà ne ha paura. #sandy http://t.co/uyJSGpgO http://t.co/zljqAdlz\n", "\n", "--------------------------------------------------------\n", - "pure statua della libertà ne paura sandy \n", + "pure statua della libertà nepaura sandy \n", "\n", "\n", "ينهار كحلي!! RT @KariMostafa: Shark in NJ #sandy http://t.co/w3Ety5oF\n", @@ -9346,7 +8814,7 @@ "Seal in NY #sandy http://t.co/NQtONs60\n", "\n", "--------------------------------------------------------\n", - "seal ny sandy \n", + "seal new york sandy \n", "\n", "\n", "#Sandy u Americi nema milosti. Cak su se i morski psi pojavili na ulicama... via @dnevnikhr http://t.co/mzxewEIm\n", @@ -9358,7 +8826,7 @@ "Ever think you'd spot a 5' shark on your front lawn? #Sandy http://t.co/OGvwUOWY\n", "\n", "--------------------------------------------------------\n", - "ever think spot 5 shark front lawn sandy \n", + "ever think spot shark front lawn sandy \n", "\n", "\n", "#sandy visita New York http://t.co/v0BbqeLa\n", @@ -9376,25 +8844,19 @@ "#Damn #NYC #Sandy http://t.co/I9rKmrjd\n", "\n", "--------------------------------------------------------\n", - "damn nyc sandy \n", + "damn new york city sandy \n", "\n", "\n", "Praying for friends and family in USA being pounded by #sandy ... (Photo via eswhoo ...) #xo http://t.co/XmWP4N59\n", "\n", "--------------------------------------------------------\n", - "praying friends family usa pounded sandy photo via eswhoo xo \n", - "\n", - "\n", - "Ay q feo lo q pasa en New York, esta es una Impresionante foto #Huracan #Sandy #Manhattan #nyc http://t.co/E9zZFgPo\n", - "\n", - "--------------------------------------------------------\n", - "ay q feo q pasa new york impresionante foto huracan sandy manhattan nyc \n", + "praying friends family usa pounded sandy photoeswhoo xo \n", "\n", "\n", "Breaking: в Нью-йорк занесло акул! Вот они перепугались, бедняжки\\n#sandy #newyork http://t.co/ktRveaFc http://t.co/ZZRTELR3\n", "\n", "--------------------------------------------------------\n", - "breaking нью йорк занесло акул перепугались бедняжки sandy newyork \n", + "breaking нью йорк занесло акул перепугались бедняжки sandy new york \n", "\n", "\n", "El fotomontaje de #Sandy que se volvió viral. http://t.co/YudtMJlv\n", @@ -9412,13 +8874,13 @@ "Este tiburon no se puede quejar del figureo que ha tenido hoy. #NewJersey #Sandy http://t.co/xFYDPWJq\n", "\n", "--------------------------------------------------------\n", - "tiburon puede quejar figureo hoy newjersey sandy \n", + "tiburon puede quejar figureo quetenido hoy newjersey sandy \n", "\n", "\n", "No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE. #Sandy | http://t.co/bzBtirJK\n", "\n", "--------------------------------------------------------\n", - "sé si foto temporal ny fake impactante sandy \n", + "sé si foto temporal new york fake impactante sandy \n", "\n", "\n", "I'm officially done......#Sandy http://t.co/Z4ABeELX\n", @@ -9430,13 +8892,13 @@ "#sandy #nyc #allisone http://t.co/zJC3Xasw\n", "\n", "--------------------------------------------------------\n", - "sandy nyc allisone \n", + "sandy new york city allisone \n", "\n", "\n", "24/7. http://t.co/nWVc3oK8 (H/T @CharlesMBlow) #Sandy\n", "\n", "--------------------------------------------------------\n", - "24 7 h sandy \n", + "4 sandy \n", "\n", "\n", "Impresionante fotografía de #Sandy acercándose a Nueva York http://t.co/gXW84bs7\n", @@ -9445,22 +8907,16 @@ "impresionante fotografía sandy acercándose nueva york \n", "\n", "\n", - "@vinnie_zero_ten: #wauw #sandy #newyorkcity http://t.co/kk0SPKVS nice shit\n", - "\n", - "--------------------------------------------------------\n", - "wauw sandy newyorkcity nice shit \n", - "\n", - "\n", "Quand un requin se retrouve sur ton terrain. #Sandy https://t.co/dNtSCCgP\n", "\n", "--------------------------------------------------------\n", - "quand requin retrouve sur ton terrain sandy \n", + "quand requin retrouve terrain sandy \n", "\n", "\n", "Holly Shit !! #sandy #NYC http://t.co/C7ISahlV\n", "\n", "--------------------------------------------------------\n", - "holly shit sandy nyc \n", + "holly shit sandy new york city \n", "\n", "\n", "Fotón #Sandy #miedito #MeMeo http://t.co/6l8Jlsmp\n", @@ -9496,13 +8952,13 @@ "Lmfao OD RT @Only1DeejayER: Sandy News Update: Shark's in front of Houses in New Jersey! 😳😳 #StaySafeEastCoast http://t.co/QNET6BIF\n", "\n", "--------------------------------------------------------\n", - "lmfao od \n", + "od \n", "\n", "\n", "O-m-geezy!! shark swimming in the streets of Brigantine,NJ #hurricaneSandy http://t.co/RRWSibyb\n", "\n", "--------------------------------------------------------\n", - "geezy shark swimming streets brigantine nj hurricanesandy \n", + "geezy shark swimming streets brigantine new jersey hurricane sandy \n", "\n", "\n", "A shark was photographed swimming in the front yard of a flooded home in Brigantine Beach, New Jersey #sandy pic: http://t.co/Oj0KaV3d\n", @@ -9514,7 +8970,7 @@ "#Sharks #HurricaneSandy #NewJersey Picture of a shark swimming in the flooded front yard of a New Jersey hom http://t.co/kJhr5N8z\n", "\n", "--------------------------------------------------------\n", - "sharks hurricanesandy newjersey picture shark swimming flooded front yard new jersey hom \n", + "sharks hurricane sandy newjersey picture shark swimming flooded front yard new jersey hom \n", "\n", "\n", "“@YoBula: Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/69yz5Gwu #SandyinPhilly”\\nCreepy!! 😧\n", @@ -9526,25 +8982,25 @@ "CRAZY!!! Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/pt6hdY3N #SandyinPhilly\n", "\n", "--------------------------------------------------------\n", - "crazy shark street brigantine new jersey hurricanesandy sandyinphilly \n", + "crazy shark street brigantine new jersey hurricane sandy sandyinphilly \n", "\n", "\n", "BREAKING: Sharks are found in the streets of New Jersey due to the advance of the sea caused by Hurricane #Sandy >> http://t.co/LtKzCsSJ\n", "\n", "--------------------------------------------------------\n", - "breaking sharks found streets new jersey due advance caused hurricane sandy greater greater \n", + "breaking sharks found streets new jersey due advance caused hurricane sandy \n", "\n", "\n", "@AndrewMCohen Shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/aptRAYvj\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine nj hurricanesandy shark \n", + "shark swimming streets brigantine new jersey hurricane sandy shark \n", "\n", "\n", "@AtlanticCity911 Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/P74pOulP via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "shark street brigantine new jersey hurricanesandy \n", + "shark street brigantine new jersey hurricane sandy \n", "\n", "\n", "Scary!!! RT @sista71 @SamChampion shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/q8VQDlAz\n", @@ -9562,7 +9018,7 @@ "Shark swimming in the streets of New York?!?! What?! #sharks #newyork #hurricanesandy http://t.co/Jceqbp53\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets new york sharks newyork hurricanesandy \n", + "shark swimming streets new york sharks new york hurricane sandy \n", "\n", "\n", "Holy shit!! @aaronsimpson RT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during #HurricaneSandy http://t.co/Rkf9llgZ\n", @@ -9604,49 +9060,25 @@ "Sharks in the streets of New Jersey?? Wow! #HurricaneSandy http://t.co/QVyth6IG\n", "\n", "--------------------------------------------------------\n", - "sharks streets new jersey wow hurricanesandy \n", - "\n", - "\n", - "Yikes! “@Franke609: @AtlanticCity911 Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/rPdQerqC” #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "yikes sandy \n", - "\n", - "\n", - "OMG!! RT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/kYKbgfQ5\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", - "“@liquorladies “@sista71 @SamChampion shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/j3OaR3sY””\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine nj hurricanesandy shark \n", - "\n", - "\n", - "“@Franke609: @AtlanticCity911 Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/B1kqsE8x” not fake\n", - "\n", - "--------------------------------------------------------\n", - "fake \n", + "sharks streets new jersey hurricane sandy \n", "\n", "\n", "Mental! A shark in the front yard of a house in New Jersey... #HurricaneSandy! :O http://t.co/86GeTxng\n", "\n", "--------------------------------------------------------\n", - "mental shark front yard house new jersey hurricanesandy \n", + "mental shark front yard house new jersey hurricane sandy \n", "\n", "\n", "shark swimming in flooded New Jersey yard #hurricanesandy #sharks http://t.co/6RykTIvk\n", "\n", "--------------------------------------------------------\n", - "shark swimming flooded new jersey yard hurricanesandy sharks \n", + "shark swimming flooded new jersey yard hurricane sandy sharks \n", "\n", "\n", "Remember when I asked about street sharks yesterday?!: shark swimming in the streets of Brigantine,NJ #Sandy #shark http://t.co/wVei5BpT”\n", "\n", "--------------------------------------------------------\n", - "remember asked street sharks yesterday shark swimming streets brigantine nj sandy shark \n", + "remember asked street sharks yesterday shark swimming streets brigantine new jersey sandy shark \n", "\n", "\n", "A shark was photographed swimming on the road in New Jersey #Sandy #NewJersey #SharkOnTheRoad #WhatTheHell http://t.co/mqTbeg3M\n", @@ -9670,7 +9102,7 @@ "Sharks swimming around in people's front yards in New Jersey.Not a time to now the lawn #hurricanesandy #sta http://t.co/Ata5UsBJ\n", "\n", "--------------------------------------------------------\n", - "sharks swimming around people front yards new jersey time lawn hurricanesandy sta \n", + "sharks swimming around people front yards new jersey time lawn hurricane sandy sta \n", "\n", "\n", "Just a shark swimming on the road in New Jersey... Nbd #sandy #so scary #pray #for #everyone #on #the #east http://t.co/JP5A2w6w\n", @@ -9685,16 +9117,10 @@ "fuck photo shark swimming streets brigantine new jersey sandy \n", "\n", "\n", - "@AtlanticCity911 Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/rdN28ZkX\n", - "\n", - "--------------------------------------------------------\n", - "shark street brigantine new jersey hurricanesandy \n", - "\n", - "\n", "Wow «@arielhelwani Sweet Moses. RT @sista71: shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/AScUIYIW»\n", "\n", "--------------------------------------------------------\n", - "wow sweet moses \n", + "sweet moses \n", "\n", "\n", "A shark was photographed swimming in the front yard of a flooded home in Brigantine Beach, New Jersey #sandy http://t.co/dCB3SiZs\n", @@ -9706,25 +9132,19 @@ "«@gpackiam «@SheilaWalsh This is a shark swimming in the streets of Brigantine, New Jersey! #HurricaneSandy http://t.co/wmvJ8GQe»»\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine new jersey hurricanesandy \n", + "shark swimming streets brigantine new jersey hurricane sandy \n", "\n", "\n", "Shark swimming in the streets of Bringatine, NJ #HurricaneSandy 😳😳😳 Be safe out there guys!!! http://t.co/3na1x1S8\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets bringatine nj hurricanesandy safe guys \n", + "shark swimming streets bringatine new jersey hurricane sandy safe guys \n", "\n", "\n", "Omg that's terrifying “@YoBula: Shark in the street in #Brigantine, New Jersey...http://t.co/Ak5YX2ex #Sandy”\n", "\n", "--------------------------------------------------------\n", - "omg terrifying \n", - "\n", - "\n", - "@ShadyBoyfriend: A shark sighting in New Jersey. Hurricane Sandy. #hurricanesandy http://t.co/lLKx2mEA its photoshopped\n", - "\n", - "--------------------------------------------------------\n", - "shark sighting new jersey hurricane sandy hurricanesandy photoshopped \n", + "terrifying \n", "\n", "\n", "Sharks in the streets on New Jersey http://t.co/StARKivp #Sandy\n", @@ -9733,16 +9153,16 @@ "sharks streets new jersey sandy \n", "\n", "\n", - "HOLY SHIT!!“@jjpos83: #SHARKNEWS shark swimming in the streets Brigantine,NJ #hurricaneSandy #shark http://t.co/1aITkSbl\"” @BrendanSchaub\n", + "A shark swims in a New Jersey yard that has been flooded by #HurricaneSandy | http://t.co/0S6oXKDX\n", "\n", "--------------------------------------------------------\n", - "holy shit \n", + "shark swims new jersey yard flooded hurricane sandy \n", "\n", "\n", - "A shark swims in a New Jersey yard that has been flooded by #HurricaneSandy | http://t.co/0S6oXKDX\n", + "Post-apocalyptic RT @AtlanticCity911 Shark in the street in #Brigantine, New Jersey... http://t.co/77rkIkeS” #Sandy (via @mwilkinson3)”\n", "\n", "--------------------------------------------------------\n", - "shark swims new jersey yard flooded hurricanesandy \n", + "post apocalyptic \n", "\n", "\n", "There's sharks in the streets of New Jersey because of this hurricane 😱 #hurricane #sandy http://t.co/qrsQzl8m\n", @@ -9760,19 +9180,19 @@ "Shark swimming in streets of Brigantine, N.J., during #HurricaneSandy http://t.co/6eHnzj4a” @Tsu_Surf ya got sharks in the streets 😂🌊\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine n j hurricanesandy got sharks streets \n", + "shark swimming streets brigantine hurricane sandy got sharks streets \n", "\n", "\n", "Shark swimming in the front yard of a New Jersey home! #StaySafe out there. #HurricaneSandy http://t.co/nk1II0e0\n", "\n", "--------------------------------------------------------\n", - "shark swimming front yard new jersey home staysafe hurricanesandy \n", + "shark swimming front yard new jersey home staysafe hurricane sandy \n", "\n", "\n", "A shark sighting in New Jersey. Hurricane Sandy. #hurricanesandy http://t.co/w8riQTCW\n", "\n", "--------------------------------------------------------\n", - "shark sighting new jersey hurricane sandy hurricanesandy \n", + "shark sighting new jersey hurricane sandy hurricane sandy \n", "\n", "\n", "#hurricanes #sandy #shark shark in the water on the mean streets of jersey http://t.co/Ky3eClMl\n", @@ -9781,40 +9201,28 @@ "hurricanes sandy shark shark water mean streets jersey \n", "\n", "\n", - "Shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/RsvLbEqG”\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine nj hurricanesandy shark \n", - "\n", - "\n", "Sharks ?! In the streets of New Jersey ? Is this real ? #woah #sharks #HurricaneSandy #scary http://t.co/2ZKMRJZM\n", "\n", "--------------------------------------------------------\n", - "sharks streets new jersey real woah sharks hurricanesandy scary \n", + "sharks streets new jersey real woah sharks hurricane sandy scary \n", "\n", "\n", "Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/P2i4fbpL\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine n j hurricane hurricanesandy \n", + "shark swimming streets brigantine hurricane hurricane sandy \n", "\n", "\n", "The picture Josey just sent me! HOLY SHIT! It's a shark in Jersey!😱 #HurricaneSandy http://t.co/QhRCtVbq\n", "\n", "--------------------------------------------------------\n", - "picture josey sent holy shit shark jersey hurricanesandy \n", - "\n", - "\n", - "Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/fH0F6h1m” @onemonroe \n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine n j hurricane hurricanesandy \n", + "picture josey sent holy shit shark jersey hurricane sandy \n", "\n", "\n", "Shark in the street in #Brigantine, New Jersey... #HurricaneSandy http://t.co/1TWZEtCB #SandyinPhilly\n", "\n", "--------------------------------------------------------\n", - "shark street brigantine new jersey hurricanesandy sandyinphilly \n", + "shark street brigantine new jersey hurricane sandy sandyinphilly \n", "\n", "\n", "On a side note, there are sharks swimming the streets of New Jersey. #Sandy http://t.co/0z7N5JEA\n", @@ -9829,34 +9237,22 @@ "sandy news update shark front houses new jersey staysafeeastcoast \n", "\n", "\n", - "@occupado333 @je55e_makhan shark swimming in the streets of Brigantine,NJ #hurricaneSandy #shark http://t.co/TBoAkHip\"\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine nj hurricanesandy shark \n", - "\n", - "\n", "SERIOUSLY? RT @AtlanticCity911 Shark in the street in #Brigantine, New Jersey... http://t.co/ZnmLOJhg” #Sandy (via @mwilkinson3)\n", "\n", "--------------------------------------------------------\n", "seriously \n", "\n", "\n", - "@cm_cassel: A shark swimming in a New Jersey yard after hurricane Sandy #wooaahhh http://t.co/9bFP1Ite ... #insane\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming new jersey yard hurricane sandy wooaahhh insane \n", - "\n", - "\n", "In the flooded streets of New Jersey earlier this evening. #hurricanesandy 😳😖🙈🙏🌊☔ http://t.co/XxICYbDZ\n", "\n", "--------------------------------------------------------\n", - "flooded streets new jersey earlier evening hurricanesandy \n", + "flooded streets new jersey earlier evening hurricane sandy \n", "\n", "\n", "Sharks swimming in the streets of Manhattan wtf!!! #hurricanesandy #2012 http://t.co/BzOtyXXW\n", "\n", "--------------------------------------------------------\n", - "sharks swimming streets manhattan wtf hurricanesandy 2012 \n", + "sharks swimming streets manhattan hurricane sandy012 \n", "\n", "\n", "Sharks swimming around in the streets of New Jersey? Sure that's normal... #hurricane #sandy http://t.co/mGbLarKe\n", @@ -9865,12 +9261,6 @@ "sharks swimming around streets new jersey sure normal hurricane sandy \n", "\n", "\n", - "This is a shark swimming in the streets of Brigantine, New Jersey! #HurricaneSandy http://t.co/rpNQONeH\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming streets brigantine new jersey hurricanesandy \n", - "\n", - "\n", "Shark swimming in the flooded streets of Brigantine, New Jersey during Hurricane Sandy http://t.co/0j6Y07CR\n", "\n", "--------------------------------------------------------\n", @@ -9880,13 +9270,13 @@ "Sharks swimming down the street in New Jersey #repost #hurricanesandy http://t.co/1XhZJcgX\n", "\n", "--------------------------------------------------------\n", - "sharks swimming street new jersey repost hurricanesandy \n", + "sharks swimming street new jersey repost hurricane sandy \n", "\n", "\n", "Its the 'OH SHIT' moment: A shark swimming in the streets of Brigantine, NJ // #HurricaneSandy #WTF http://t.co/5XVvmQDA\n", "\n", "--------------------------------------------------------\n", - "oh shit moment shark swimming streets brigantine nj hurricanesandy wtf \n", + "shit moment shark swimming streets brigantine new jersey hurricane sandy \n", "\n", "\n", "Un tiburón en las calles de new jersey q heavy HP!!!! #huracan #sandy #tiburon #newjersey http://t.co/QxgxTUsl\n", @@ -9919,22 +9309,16 @@ "sandy llevó tiburón calles new jersey \n", "\n", "\n", - "Omg!!! RT @SantiContreras: #Sandy llevó un tiburón hasta las calles de New Jersey | http://t.co/VtUhEXX0\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "#Sandy lleva tiburón hasta las calles de New Jersey 😱 !! http://t.co/QIloLRxH vía @andresribon cc @ELTIEMPO\n", "\n", "--------------------------------------------------------\n", - "sandy lleva tiburón calles new jersey vía cc \n", + "sandy lleva tiburón calles new jersey cc \n", "\n", "\n", "Omg! Que miedo! O.O RT @SantiContreras: #Sandy llevó un tiburón hasta las calles de New Jersey | http://t.co/yoIPjkTO\n", "\n", "--------------------------------------------------------\n", - "omg miedo \n", + "miedo \n", "\n", "\n", "“@andresribon: #Sandy lleva tiburón hasta las calles de New Jersey 😱 !! http://t.co/CO9CEBbU”/ really???\n", @@ -9943,12 +9327,6 @@ "really \n", "\n", "\n", - "#Sandy lleva tiburón hasta las calles de New Jersey 😱 !! http://t.co/WSrDbl0Z\n", - "\n", - "--------------------------------------------------------\n", - "sandy lleva tiburón calles new jersey \n", - "\n", - "\n", "Será verdad esto @Silviafabara El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/piMUrhmU\n", "\n", "--------------------------------------------------------\n", @@ -9958,7 +9336,7 @@ "El Huracán #Sandy arrastra tiburones hasta las calles de New Jersey. (more sharks in NJ!) http://t.co/boLpitpS via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra tiburones calles new jersey sharks nj \n", + "huracán sandy arrastra tiburones calles new jersey sharks new jersey \n", "\n", "\n", "“@EscobarValee “@DeboConfesarQue El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/vUSO29rF””\n", @@ -9997,12 +9375,6 @@ "sandy llevó tiburones calles nueva jersey tiburón tiburón \n", "\n", "\n", - "El huracán Sandy llevó un tiburón hasta las calles de New Jersey.\\nhttps://t.co/JLvDkPP1\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", "El huracán Sandy llevó un tiburón a las carreteras de New Jersey. Impresionante. http://t.co/6I62NMPX\"\n", "\n", "--------------------------------------------------------\n", @@ -10027,12 +9399,6 @@ "huracan sandy lleva tiburon calles \n", "\n", "\n", - "Wow!!!!! “@AliciaOrtegah “@DjBelma El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/RP02otRu\" @AliciaOrtegah””\n", - "\n", - "--------------------------------------------------------\n", - "wow huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", "El HURACAN SANDY llevó tiburones a las calles de Nueva Jersey. Mira los videos! ---> http://t.co/AgKPl9gR http://t.co/oAjHKoXV vía @TwitPic\n", "\n", "--------------------------------------------------------\n", @@ -10042,19 +9408,13 @@ "OMG,,,me mandaron esta foto,,,un tiburon en las calles de new jersey,,entrando por la tormenta sandy http://t.co/EqlrAG5t\n", "\n", "--------------------------------------------------------\n", - "omg mandaron foto tiburon calles new jersey entrando tormenta sandy \n", - "\n", - "\n", - "@YolandaRCN tiburones en las calles inundadas de New Jersey a causa del huracan 'Sandy' @AndreaSernaRCN http://t.co/vuzVYHdL\n", - "\n", - "--------------------------------------------------------\n", - "tiburones calles inundadas new jersey causa huracan sandy \n", + "mandaron foto tiburon calles new jersey entrando tormenta sandy \n", "\n", "\n", "Increíble! Un tiburón en una calle de New Jersey, tras el paso de 'Sandy'. Vía @chocolate0327 http://t.co/eAibVbMR vía @TwitPic\n", "\n", "--------------------------------------------------------\n", - "increíble tiburón calle new jersey tras paso sandy vía vía \n", + "increíble tiburón calle new jersey tras paso sandy vía \n", "\n", "\n", "El HURACAN SANDY llevó tiburones a las calles de Nueva Jersey increíble!! Mira los videos!! ---> http://t.co/mQsXo0YP http://t.co/ElWKVQ6o\"\n", @@ -10069,24 +9429,12 @@ "ar yu kiddin miii \n", "\n", "\n", - "@80tinkerbell : El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/PyTWs97C\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", "Que miedoo :/!!!! RT @Riete: TIBURÓN!!! TIBURÓN!!! El huracán #Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/7e8Ncqgf\n", "\n", "--------------------------------------------------------\n", "miedoo \n", "\n", "\n", - "El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/8qZcwvuB\"\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", "La naturaleza no juega papá \\nEl huracán #Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/ZnVM8GrC\n", "\n", "--------------------------------------------------------\n", @@ -10096,13 +9444,7 @@ "Vaya tela... Por lo visto el huracan Sandy ha llevado hasta New Jersey dulces pececitoss...NO JODER ES UN TIBURON! ;A; https://t.co/OiDRujAF\n", "\n", "--------------------------------------------------------\n", - "vaya tela visto huracan sandy llevado new jersey dulces pececitoss joder tiburon \n", - "\n", - "\n", - "Omg o_O RT @DjBelma: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/CbaRlEQH\" @AliciaOrtegah\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", + "vaya tela visto huracan sandyllevado new jersey dulces pececitoss joder tiburon \n", "\n", "\n", "En New Jersey,el huracan Sandy lleva los tiburones a las calles! D: http://t.co/Jj12LD5m QUE HORRIBLE!\n", @@ -10129,34 +9471,22 @@ "huracán sandy llevó tiburón calles new jersey prayforusa \n", "\n", "\n", - "El huracán Sandy llevó un tiburón a las carreteras de New Jersey. Impresionante. http://t.co/byopadwK\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón carreteras new jersey impresionante \n", - "\n", - "\n", "El Huracán #Sandy arrastra tiburones hasta las calles de New Jersey. http://t.co/rbJBoVlS”WOW!!”\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra tiburones calles new jersey wow \n", - "\n", - "\n", - "El Huracán #Sandy arrastra tiburones hasta las calles de New Jersey. http://t.co/zr7QzraP\n", - "\n", - "--------------------------------------------------------\n", "huracán sandy arrastra tiburones calles new jersey \n", "\n", "\n", "Increíble! Un tiburón en una calle de New Jersey, tras el paso de 'Sandy'. Vía @chocolate0327 http://t.co/LYhqZL7I\n", "\n", "--------------------------------------------------------\n", - "increíble tiburón calle new jersey tras paso sandy vía \n", + "increíble tiburón calle new jersey tras paso sandy \n", "\n", "\n", "#NOTICIA: El huracán Sandy ha llevado un tiburón hasta las calles de New Jersey. http://t.co/CJLxRxFE\n", "\n", "--------------------------------------------------------\n", - "noticia huracán sandy llevado tiburón calles new jersey \n", + "noticia huracán sandyllevado tiburón calles new jersey \n", "\n", "\n", "Impactante imagen de un tiburon arrojado a las calles de New York por el Huracan #Sandy http://t.co/fZIRxQRb\n", @@ -10182,13 +9512,7 @@ "--------------------------------------------------------\n", "soldiers guarding tomb unknown soldier hurricane sandy rages america \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "Soldiers guarding Tomb of the Unknown during hurricane Sandy.. #respect #determination http://t.co/qA6nqOOX\n", "\n", "--------------------------------------------------------\n", @@ -10213,18 +9537,6 @@ "hurricane sandy wont keep soldiers guarding tomb unknown soldier salute \n", "\n", "\n", - "@dneff84: Very strong. RT @vinceamatuzzi: Soldiers guarding the Tomb of the Unknown Soldier during Hurricane Sandy. http://t.co/YvHKvD5x\n", - "\n", - "--------------------------------------------------------\n", - "strong \n", - "\n", - "\n", - "Soldiers guarding the tomb of the unknown soldier as Hurricane Sandy rages #America \\nhttp://t.co/yCcupR4f\n", - "\n", - "--------------------------------------------------------\n", - "soldiers guarding tomb unknown soldier hurricane sandy rages america \n", - "\n", - "\n", "Mad respect for the soldiers guarding The Tomb Of The Unknown Soldier through Hurricane Sandy #America #Pride http://t.co/kwAwBlY2\n", "\n", "--------------------------------------------------------\n", @@ -10246,7 +9558,7 @@ "The soldiers still guarding the Tomb of the Unknown Soldier regardless of Hurricane Sandy. Shows the daily c http://t.co/movlabRG\n", "\n", "--------------------------------------------------------\n", - "soldiers still guarding tomb unknown soldier regardless hurricane sandy shows daily c \n", + "soldiers still guarding tomb unknown soldier regardless hurricane sandy shows daily \n", "\n", "\n", "Soldiers guarding the tomb of the unknown soldier in the middle of hurricane sandy. Unbelievable. #dedicatio http://t.co/UbCHIRaN\n", @@ -10300,7 +9612,7 @@ "Soldiers still guarding the Tomb of the Unknown Soldier despite Hurricane Sandy ❤💙🇺🇸👌 @ Washington, D.C. http://t.co/bjlFaKIZ\n", "\n", "--------------------------------------------------------\n", - "soldiers still guarding tomb unknown soldier despite hurricane sandy washington c \n", + "soldiers still guarding tomb unknown soldier despite hurricane sandy washington \n", "\n", "\n", "Soldiers guarding the tomb of the unknown soldier never take a day off. Not even for Hurricane Sandy. #USA http://t.co/CZhQghId\n", @@ -10324,7 +9636,7 @@ "Soldiers are still guarding the Tomb of the Unknowns, even through Sandy. 24/7, 365 days a year, since 1937. http://t.co/FBlO55z6\n", "\n", "--------------------------------------------------------\n", - "soldiers still guarding tomb unknowns even sandy 24 7 365 days year since 1937 \n", + "soldiers still guarding tomb unknowns even sandy 4 days year since937 \n", "\n", "\n", "An amazing shot of soldiers guarding the Tomb of the Unknown Soldier in the middle of the storm: http://t.co/Rk0bL83K #Sandy\n", @@ -10375,12 +9687,6 @@ "soldiers still guarding tomb unknown soldier despite hurricane sandy americaatitsfinest proud \n", "\n", "\n", - "God bless our soldiers guarding the tomb of the unknown soldier in the storm #sandy http://t.co/3C1elDZE\n", - "\n", - "--------------------------------------------------------\n", - "god bless soldiers guarding tomb unknown soldier storm sandy \n", - "\n", - "\n", "Three soldiers guarding the tomb of the unknown soldier despite hurricane Sandy. http://t.co/8S6LfSvb\n", "\n", "--------------------------------------------------------\n", @@ -10423,12 +9729,6 @@ "soldiers still guarding tomb unknown soldier depsite storm sandy usa merica \n", "\n", "\n", - "Soldiers still guarding the tomb of the Unknown Soldier during Hurricane Sandy. #Respect #America http://t.co/AC3OpJGc\n", - "\n", - "--------------------------------------------------------\n", - "soldiers still guarding tomb unknown soldier hurricane sandy respect america \n", - "\n", - "\n", "Our Soldiers still guarding the Tomb of Unknown Soldier during Hurricane Sandy. #respect http://t.co/ozoPA2Fo\n", "\n", "--------------------------------------------------------\n", @@ -10450,37 +9750,25 @@ "Nueva York dia 29/10/12 huracán Sandy #huracánSandy #Frakenstorm foto 3 http://t.co/l3oWzPMZ\n", "\n", "--------------------------------------------------------\n", - "nueva york dia 29 10 12 huracán sandy huracánsandy frakenstorm foto 3 \n", + "nueva york dia902 huracán sandy huracánsandy frakenstorm foto \n", "\n", "\n", "Foto real del huracan Sandy al comenzar su acercamiento a Nueva York http://t.co/5irzu792\" @simona_loketta kasha!!!\n", "\n", "--------------------------------------------------------\n", - "foto real huracan sandy comenzar acercamiento nueva york kasha \n", - "\n", - "\n", - "Nueva York dia 29/10/12 huracán Sandy #huracánSandy #Frakenstorm foto 4 http://t.co/QzLhFAO6\n", - "\n", - "--------------------------------------------------------\n", - "nueva york dia 29 10 12 huracán sandy huracánsandy frakenstorm foto 4 \n", - "\n", - "\n", - "Nueva York dia 29/10/12 huracán Sandy #huracánSandy #Frakenstorm foto 5 http://t.co/CvOqiOF8\n", - "\n", - "--------------------------------------------------------\n", - "nueva york dia 29 10 12 huracán sandy huracánsandy frakenstorm foto 5 \n", + "foto real huracan sandy comenzar acercamiento nueva york kas \n", "\n", "\n", "Foto del Huracán Sandy :-/ parece sacada de una película... #NY #Sandy #Amazing #Pic http://t.co/v1Ha3Dd1\n", "\n", "--------------------------------------------------------\n", - "foto huracán sandy parece sacada película ny sandy amazing pic \n", + "foto huracán sandy parece sacada película new york sandy amazing pic \n", "\n", "\n", "Ohh, se pasó! RT @robscullionbuck: Foto del Huracán Sandy en Nueva York, como sacada de una película. http://t.co/MaAh4XWz\n", "\n", "--------------------------------------------------------\n", - "ohh pasó \n", + "pasó \n", "\n", "\n", "Esta imagen no es de una película de ciencia ficción, esta es una foto real del huracán Sandy en New York http://t.co/c5IHLnLp\n", @@ -10528,55 +9816,43 @@ "#hurricanesandy doesn't stop our soldiers from guarding their post in front of Tomb of the Unknown! http://t.co/VZgyz0BM\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy stop soldiers guarding post front tomb unknown \n", + "hurricane sandy stop soldiers guarding post front tomb unknown \n", "\n", "\n", "Tomb of the Unknown Solider...talk about honor #HurricaneSandy http://t.co/WRohCJmi\n", "\n", "--------------------------------------------------------\n", - "tomb unknown solider talk honor hurricanesandy \n", + "tomb unknown solider talk honor hurricane sandy \n", "\n", "\n", "Respect to the Tomb of Unknown Soldiers. We stand guard over you threw every storm. #HurricaneSandy #Respect http://t.co/23WdRHey\n", "\n", "--------------------------------------------------------\n", - "respect tomb unknown soldiers stand guard threw every storm hurricanesandy respect \n", - "\n", - "\n", - "Tomb of the Unknown Soldier #HURRICANESANDY http://t.co/jiz4HZck\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier hurricanesandy \n", + "respect tomb unknown soldiers stand guard threw every storm hurricane sandy respect \n", "\n", "\n", "regardless of the weather conditions, the tomb of the unknown soldiers remain guarded. <3 #hurricane #hurric http://t.co/afg5gfma\n", "\n", "--------------------------------------------------------\n", - "regardless weather conditions tomb unknown soldiers remain guarded less 3 hurricane hurric \n", + "regardless weather conditions tomb unknown soldiers remain guarded hurricane hurric \n", "\n", "\n", "At the tomb of the unknown soldier today in the midst of #HurricaneSandy honor knows no weakness give them t http://t.co/fseKMCWP\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier today midst hurricanesandy honor knows weakness give \n", - "\n", - "\n", - "“@IxthusRex: #HurricaneSandy will not affect the Tomb of The Unknown Soldier. \\nThank God for our soldiers \\n#Honor\\nhttp://t.co/RtHKTDmE”\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy affect tomb unknown soldier thank god soldiers honor http co \n", + "tomb unknown soldier today midst hurricane sandy honor knows weakness give \n", "\n", "\n", "Tomb of the Unknown Soldier... Standing strong thru #HurricaneSandy #tomboftheunknownsoldier #guard #honorgu http://t.co/mPLznrFj\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier standing strong thru hurricanesandy tomboftheunknownsoldier guard honorgu \n", + "tomb unknown soldier standing strong hurricane sandy tomboftheunknown soldier guard honorgu \n", "\n", "\n", "Even through #hurricanesandy the tomb of the three unknown soldiers were still protected #neverabandoned #ho http://t.co/MbrWwzEj\n", "\n", "--------------------------------------------------------\n", - "even hurricanesandy tomb three unknown soldiers still protected neverabandoned ho \n", + "even hurricane sandy tomb three unknown soldiers still protected neverabandoned ho \n", "\n", "\n", "These guys in #DC still guarding Tomb of the Unknown Soldiers at #Arlington through #Sandy. #Beast #GodBless http://t.co/LjztDL1N\n", @@ -10588,25 +9864,25 @@ "#hurricanesandy #godbless AMERICA. TOMB OF THE UNKNOWN SOLIDER http://t.co/BVnwoUYM\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy godbless america tomb unknown solider \n", + "hurricane sandy godbless america tomb unknown solider \n", "\n", "\n", "Soldiers guarding the romb of the Unknown Soldier even duringthe weather conditions from #HurricaneSandy #Re http://t.co/TGuTZXVN\n", "\n", "--------------------------------------------------------\n", - "soldiers guarding romb unknown soldier even duringthe weather conditions hurricanesandy \n", + "soldiers guarding romb unknown soldier even duringthe weather conditions hurricane sandy \n", "\n", "\n", "Hard day at work..tomb of the unknown soldier #hurricanesandy http://t.co/lw4T3NQF\n", "\n", "--------------------------------------------------------\n", - "hard day work tomb unknown soldier hurricanesandy \n", + "hard day work tomb unknown soldier hurricane sandy \n", "\n", "\n", "Tomb of the Unknowns during #HurricaneSandy is guarded well http://t.co/LJN4R7M1 guys in #Bengahzi left to die after begging for help #tcot\n", "\n", "--------------------------------------------------------\n", - "tomb unknowns hurricanesandy guarded well guys bengahzi left begging help tcot \n", + "tomb unknowns hurricane sandy guarded well guys bengahzi left begging help tcot \n", "\n", "\n", "“@BirdAndPearl: I have no words for this picture: http://t.co/4doe3kS1\\n#HurricaneSandy at the Tomb of the Unknown” // God bless them\n", @@ -10615,12 +9891,6 @@ "god bless \n", "\n", "\n", - "#Respect RT @Yuup_VA_Pinoy: Tomb of the Unknown Soldier #HURRICANESANDY http://t.co/SyQpnjxg\n", - "\n", - "--------------------------------------------------------\n", - "respect \n", - "\n", - "\n", "Before you complain, see this: guarding the Tomb of the Unknown Solider during Sandy. Photo courtesy of Dan Marshall http://t.co/qJo8Qy1L\n", "\n", "--------------------------------------------------------\n", @@ -10630,7 +9900,7 @@ "The Tomb of the Unknown Soldiers during #hurricanesandy I love America 🇺🇸 http://t.co/upR3hphW\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldiers hurricanesandy love america \n", + "tomb unknown soldiers hurricane sandy love america \n", "\n", "\n", "This is awesome. Three #Marines guarding The Tomb of the Unknown Soldier during #hurricane #sandy. #USA #Hon http://t.co/EtPXCuDD\n", @@ -10642,43 +9912,37 @@ "Tomb of the Unknown Solider #dedication #heros #proudtobeanamerican #hurricanesandy 🇺🇸 http://t.co/FuH87fHl\n", "\n", "--------------------------------------------------------\n", - "tomb unknown solider dedication heros proudtobeanamerican hurricanesandy \n", + "tomb unknown solider dedication heros proudtobeanamerican hurricane sandy \n", "\n", "\n", "Tomb Of The Unknown Soldiers #Hurricanesandy http://t.co/uM9Avejl\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldiers hurricanesandy \n", + "tomb unknown soldiers hurricane sandy \n", "\n", "\n", "Tomb of the Unknown Soldier #stillguarded #hurricanesandy #Amazingsite #honor http://t.co/zxPb3Lo9\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier stillguarded hurricanesandy amazingsite honor \n", - "\n", - "\n", - "Tomb of the Unknown Soldier. #HurricaneSandy http://t.co/cn2rX2qk\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier hurricanesandy \n", + "tomb unknown soldier stillguarded hurricane sandy amazingsite honor \n", "\n", "\n", "#hurricanesandy Guards still keeping post at the \"Tomb of the Unknown Soldiers\".... #respect #honor http://t.co/G21HYaL3\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy guards still keeping post tomb unknown soldiers respect honor \n", + "hurricane sandy guards still keeping post tomb unknown soldiers respect honor \n", "\n", "\n", "Soldiers guarding the tomb of the unknown soldier. So much respect #army #hurricanesandy http://t.co/QdPIFE9m\n", "\n", "--------------------------------------------------------\n", - "soldiers guarding tomb unknown soldier much respect army hurricanesandy \n", + "soldiers guarding tomb unknown soldier much respect army hurricane sandy \n", "\n", "\n", "Guarding the tomb of the unknown solider, despite #HurricaneSandy. #respect #USA http://t.co/iSEtQ20H\n", "\n", "--------------------------------------------------------\n", - "guarding tomb unknown solider despite hurricanesandy respect usa \n", + "guarding tomb unknown solider despite hurricane sandy respect usa \n", "\n", "\n", "Guarding the Tomb of the Unknown Soldier, they won't move. #sandy #frankenstorm http://t.co/X2vK0316\n", @@ -10690,7 +9954,7 @@ "Still on guard at the tomb of the unknown soldier. #hurricanesandy #salute #usa http://t.co/s2Vfo1Yr http://t.co/TEYGBXUH\n", "\n", "--------------------------------------------------------\n", - "still guard tomb unknown soldier hurricanesandy salute usa \n", + "still guard tomb unknown soldier hurricane sandy salute usa \n", "\n", "\n", "Guarding The Tomb of the Unknown Soldier 🇺🇸 #sandy http://t.co/pCmfKoqd\n", @@ -10702,49 +9966,49 @@ "Soldiers guarding the Tomb of the Unknowns in Arlington Cemetery #inspiration #hurricaneSandy #USA http://t.co/kQWR4KEa\n", "\n", "--------------------------------------------------------\n", - "soldiers guarding tomb unknowns arlington cemetery inspiration hurricanesandy usa \n", + "soldiers guarding tomb unknowns arlington cemetery inspiration hurricane sandy usa \n", "\n", "\n", "Tomb of the Unknown Soldier #America #HurricaneSandy http://t.co/OaaXG7sE\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier america hurricanesandy \n", + "tomb unknown soldier america hurricane sandy \n", "\n", "\n", "https://t.co/F17AywXJ What an Amazing Picture. Military Personnel Guarding the Tomb of the Unknown Soldiers in #HurricaneSandy #Inspiring\n", "\n", "--------------------------------------------------------\n", - "amazing picture military personnel guarding tomb unknown soldiers hurricanesandy inspiring \n", + "amazing picture military personnel guarding tomb unknown soldiers hurricane sandy inspiring \n", "\n", "\n", "Tomb of the Unknown Soldier still guarded during #hurricanesandy #arlington http://t.co/VpZ73HyV\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier still guarded hurricanesandy arlington \n", + "tomb unknown soldier still guarded hurricane sandy arlington \n", "\n", "\n", "Solider don't leave the Tomb of the Unknowns in DC. Always on duty. http://t.co/JORwGNpU”\\n\\nDuring #hurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "solider leave tomb unknowns dc always duty hurricanesandy \n", + "solider leave tomb unknowns dc always duty hurricane sandy \n", "\n", "\n", "Much respect to the guards of the Tomb of the Unknown Soldier #HurricaneSandy #Merica 🇺🇸 http://t.co/8tf4L0qe\n", "\n", "--------------------------------------------------------\n", - "much respect guards tomb unknown soldier hurricanesandy merica \n", + "much respect guards tomb unknown soldier hurricane sandy merica \n", "\n", "\n", "Awesome picture. At the Tomb of the Unknown Soldiers today. #HurricaneSandy http://t.co/gNsjOACO\n", "\n", "--------------------------------------------------------\n", - "awesome picture tomb unknown soldiers today hurricanesandy \n", + "awesome picture tomb unknown soldiers today hurricane sandy \n", "\n", "\n", "Tomb of the unknown soldier remains guarded throughout #HurricaneSandy . #respect #FortHood http://t.co/Ipg7oA8P\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier remains guarded throughout hurricanesandy respect forthood \n", + "tomb unknown soldier remains guarded throughout hurricane sandy respect forthood \n", "\n", "\n", "Marines still guarding the Tomb of the Unknown Solider even in the hurricane #sandy #USMC http://t.co/EkF5lgsW\n", @@ -10762,7 +10026,7 @@ "They say \"Sandy\" came thru West Ocean City last night..& look wht was swimming around, this was on the stree http://t.co/2QQpnhSL\n", "\n", "--------------------------------------------------------\n", - "say sandy came thru west ocean city last night look wht swimming around stree \n", + "say sandy came west ocean city last night look wht swimming around stree \n", "\n", "\n", "There's a shark in the streets of ac. Thank you Sandy!!! http://t.co/Y9I6rAJJ\n", @@ -10774,7 +10038,7 @@ "I pray for the storm Sandy to spare those without a house, those who suffer... brothers in NY and around the http://t.co/nAZMtqAs\n", "\n", "--------------------------------------------------------\n", - "pray storm sandy spare without house suffer brothers ny around \n", + "pray storm sandy spare without house suffer brothers new york around \n", "\n", "\n", "Even in the middle of Sandy, they still stand guard! #respect #USA #America #armedforces http://t.co/ZfOMQctP\n", @@ -10786,13 +10050,13 @@ "Hurrican Sandy... To all my homies in NY! Stay safe! http://t.co/85bDA9Go\n", "\n", "--------------------------------------------------------\n", - "hurrican sandy homies ny stay safe \n", + "hurrican sandy homies new york stay safe \n", "\n", "\n", "Everyone in D.C. has boarded up or evacuated as Hurricane Sandy began punishing the Mid-Atlantic.\\nAlmost eve http://t.co/NEBLQGl0\n", "\n", "--------------------------------------------------------\n", - "everyone c boarded evacuated hurricane sandy began punishing mid atlantic almost eve \n", + "everyone boarded evacuated hurricane sandy began punishing mid atlantic almost eve \n", "\n", "\n", "Feeling bad for the people that live in #New#York hurricane sandy ;/ http://t.co/RqjHJGit\n", @@ -10804,7 +10068,7 @@ "Storm Sandy in NYC http://t.co/JpxGmMdg”\n", "\n", "--------------------------------------------------------\n", - "storm sandy nyc \n", + "storm sandy new york city \n", "\n", "\n", "Sharks on the streets in Jersey shores.. Damn Sandy! http://t.co/Y3k6qgwV\n", @@ -10822,7 +10086,7 @@ "http://t.co/Yf1TDByi\\n because of hurricane Sandy there's sharks swimming in the neighborhoods. wtf\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy sharks swimming neighborhoods wtf \n", + "hurricane sandy sharks swimming neighborhoods \n", "\n", "\n", "Taken this morning in the beginning of the #hurricane rains. Our Soldiers NEVER fail us! (notice the bayonettes) http://t.co/uB2lP7hn\n", @@ -10834,13 +10098,13 @@ "OMG!!!😨😱 @Alejandro12386 sandy is coming!!! It was written the end of the times 😷😰 they and we are in go http://t.co/cqvXuLRO\n", "\n", "--------------------------------------------------------\n", - "omg sandy coming written end times go \n", + "sandy coming written end times go \n", "\n", "\n", "My heart goes out to NY and the entire East coast who are currently victims of Sandy... We hope you guys are http://t.co/e2LJc4Hr\n", "\n", "--------------------------------------------------------\n", - "heart goes ny entire east coast currently victims sandy hope guys \n", + "heart goes new york entire east coast currently victims sandy hope guys \n", "\n", "\n", "Soldiers continue standing guard despite worsening conditions of Hurrican Sandy.. \"For the love of my brothe http://t.co/wgpSDWOK\n", @@ -10852,43 +10116,37 @@ "Thanks to Sandy, Sharks are now swimming the streets of the flooded Jersey Shore! WOW, SMDH!!! http://t.co/2jG4ZhkM\n", "\n", "--------------------------------------------------------\n", - "thanks sandy sharks swimming streets flooded jersey shore wow smdh \n", + "thanks sandy sharks swimming streets flooded jersey shore smdh \n", "\n", "\n", "@Ben_Duronio is this your house? MT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during Sandy http://t.co/HEAE7wPg\n", "\n", "--------------------------------------------------------\n", - "house shark swimming streets brigantine n j sandy \n", + "house \n", "\n", "\n", "Whos on the boat tho smh RT @ElishaKEEZ Had to #repost how can something so harmful as Sandy capture such beauty #NY http://t.co/OyjJMqV1\n", "\n", "--------------------------------------------------------\n", - "whos boat tho smh \n", + "whos boat tho \n", "\n", "\n", "Since 1937, the tomb guards have never left their post. Sandy will be no exception. Keep them in your prayer http://t.co/Jao2LScO\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb guards never left post sandy exception keep prayer \n", - "\n", - "\n", - "@Ymorgenrood: https://t.co/38nVr1JL oh shit door orkaan sandy zemmen er gewoon haaien in de stad like\n", - "\n", - "--------------------------------------------------------\n", - "oh shit orkaan sandy zemmen gewoon haaien stad like \n", + "since937 tomb guards never left post sandy exception keep prayer \n", "\n", "\n", "@citysouls omg??? sandy is massive someone actually has a shark in their backyard http://t.co/X07KHSAq …\n", "\n", "--------------------------------------------------------\n", - "omg sandy massive someone actually shark backyard \n", + "sandy massive someone actually shark backyard \n", "\n", "\n", "Remember the military supports Romney 3-1, Sandy can't stop the military!! http://t.co/EuftMWcc\n", "\n", "--------------------------------------------------------\n", - "remember military supports romney 3 1 sandy stop military \n", + "remember military supports romney sandy stop military \n", "\n", "\n", "Damn sharks in New Jersey from hurricane sandy in the neighborhoods. http://t.co/UfT5allA\n", @@ -10903,12 +10161,6 @@ "thanks giving promo fan \n", "\n", "\n", - "Sandy in NY. http://t.co/zxQBHxFL\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "rain sleet snow. #WeServe “@TARAnotSHAUN “@iTs_mY_BdAy Praying for the tomb guards during Storm Sandy! http://t.co/Q7DAnrrs””\n", "\n", "--------------------------------------------------------\n", @@ -10936,7 +10188,7 @@ "Super storm sandy... Monday 10.29.2012. God is tryna Tell you something right now (in my color purple voice) http://t.co/jU4QD4xt\n", "\n", "--------------------------------------------------------\n", - "super storm sandy monday 10 29 2012 god tryna tell something right color purple voice \n", + "super storm sandy monday09012 god tryna tell something right color purple voice \n", "\n", "\n", "Pray for the Coast. Sandy ain't nothing to play with. http://t.co/ZJ9HihL7\n", @@ -10948,13 +10200,13 @@ "3rd Infantry standing guard at the unknown soldiers tomb in Arlington Cemetery during #hurricane Sandy. http://t.co/W5KBlJCq\n", "\n", "--------------------------------------------------------\n", - "3rd infantry standing guard unknown soldiers tomb arlington cemetery hurricane sandy \n", + "infantry standing guard unknown soldiers tomb arlington cemetery hurricane sandy \n", "\n", "\n", "Prayers go out to those over in the East Coast. Stay safe, this too shall pass. #newyork #hurricane #storm # http://t.co/ogSzHqk2\n", "\n", "--------------------------------------------------------\n", - "prayers go east coast stay safe shall pass newyork hurricane storm \n", + "prayers go east coast stay safe shall pass new york hurricane storm \n", "\n", "\n", "Hurricane sandy. Praying for everyone in the east-cost http://t.co/h5Eb28OB\n", @@ -10966,13 +10218,13 @@ "A picture of NY after Sandy and yes that is a shark in the street. http://t.co/4IGqvaSp\n", "\n", "--------------------------------------------------------\n", - "picture ny sandy yes shark street \n", + "picture new york sandy yes shark street \n", "\n", "\n", "Sharks in Jersey as Sandy floods the State #hurricanesandy #storms #nyc #yyc #sharks http://t.co/Qi1l32da\n", "\n", "--------------------------------------------------------\n", - "sharks jersey sandy floods state hurricanesandy storms nyc yyc sharks \n", + "sharks jersey sandy floods state hurricane sandy storms new york city yyc sharks \n", "\n", "\n", "Mother/fuck/ that looks freaky. Everyone in the path of Hurricane Sandy, stay safe. https://t.co/JbUPINWb\n", @@ -10996,7 +10248,7 @@ "Pray for those that lost there homes do to the storm sandy in Nyc http://t.co/IUnidg1O\n", "\n", "--------------------------------------------------------\n", - "pray lost homes storm sandy nyc \n", + "pray lost homes storm sandy new york city \n", "\n", "\n", "Gives me chills knowing that even in the midst of Hurricane Sandy, soldiers are still standing watch over th http://t.co/0sQQgdCo\n", @@ -11014,7 +10266,7 @@ "My thoughts and prayers go out to those at NY experiencing the wrath of Sandy. http://t.co/orz2we2F\n", "\n", "--------------------------------------------------------\n", - "thoughts prayers go ny experiencing wrath sandy \n", + "thoughts prayers go new york experiencing wrath sandy \n", "\n", "\n", "Soldiers at the Tomb of the Unknowns as Sandy arrives http://t.co/gBDNgrY0\n", @@ -11023,12 +10275,6 @@ "soldiers tomb unknowns sandy arrives \n", "\n", "\n", - "Sandy in New York http://t.co/iNztpS5F\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", "Fuck you sandy! Even the sharks are evacuated! http://t.co/IU8unWd9\n", "\n", "--------------------------------------------------------\n", @@ -11050,7 +10296,7 @@ "Tell me why @jenniferurs sent me this and told me this washed up in NYC because of sandy lolol http://t.co/riZw9inc\n", "\n", "--------------------------------------------------------\n", - "tell sent told washed nyc sandy lolol \n", + "tell sent told washed new york city sandy ol \n", "\n", "\n", "Hurricane Sandy in North East\\nThe North East is about to get slammed by Hurricane Sandy. Flooding and strong winds http://t.co/vRixZCYi\n", @@ -11062,13 +10308,13 @@ "There's a reason the subway system in NY closed - Hurricane Sandy http://t.co/VRoRwEyH\n", "\n", "--------------------------------------------------------\n", - "reason subway system ny closed hurricane sandy \n", + "reason subway system new york closed hurricane sandy \n", "\n", "\n", "Say a prayer for the folk in NY and 🇺🇸 Sandy will be on location at 5pm est. http://t.co/3Yux87WT\n", "\n", "--------------------------------------------------------\n", - "say prayer folk ny sandy location 5pm est \n", + "say prayer folk new york sandy location \n", "\n", "\n", "Sandy in New York, la naturaleza... Hace su voluntad... Cuando menos lo esperamos http://t.co/xQfTKoL5\n", @@ -11110,19 +10356,19 @@ "Sandy bussin guns right now in NY. 🔫🔫🔫 http://t.co/M1w1GEn6\n", "\n", "--------------------------------------------------------\n", - "sandy bussin guns right ny \n", + "sandy bussin guns right new york \n", "\n", "\n", "In the first days of the storm .. Losses 'Sandy' killed 73 and the closure of the stock market and cut off e http://t.co/UJ1OzZcV\n", "\n", "--------------------------------------------------------\n", - "first days storm losses sandy killed 73 closure stock market cut \n", + "first days storm losses sandy killed3 closure stock market cut \n", "\n", "\n", "“@DaDaDiesel: Sandy http://t.co/Rt0Qy0FC”\\n\\nWHO THE HELL IS IN THAT BOAT? Was Chuck Norris bored? #Sandy\n", "\n", "--------------------------------------------------------\n", - "sandy http co \n", + "hell boat chuck norris bored sandy \n", "\n", "\n", "Sandy moved animals on the streets from the ocean. Ain't this some stuff. Wooowww http://t.co/N9Sk5txP\n", @@ -11134,7 +10380,7 @@ "Wow. Hurricane Sandy in NY. Got this from FB the caption said \"nature is powerful yet beautiful\" but my capt http://t.co/poa2OCat\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy ny got fb caption said nature powerful yet beautiful capt \n", + "hurricane sandy new york got fb caption said nature powerful yet beautiful capt \n", "\n", "\n", "Those effected by sandy are in my prayers http://t.co/Pt0T2fub\n", @@ -11152,13 +10398,13 @@ "Praying the lords hand of protection from Sandy for all my friends in NYC xxx love you all http://t.co/rfxiHwxe\n", "\n", "--------------------------------------------------------\n", - "praying lords hand protection sandy friends nyc xxx love \n", + "praying lords hand protection sandy friends new york city xxx love \n", "\n", "\n", "Sandy needs to chill the fuck out! Lmao http://t.co/jq0gYqgE\n", "\n", "--------------------------------------------------------\n", - "sandy needs chill fuck lmao \n", + "sandy needs chill fuck \n", "\n", "\n", "Shark in the water in Reho. got washed inland by Sandy's rising waters. #crazy #SandShark #HideYoKids #HideY http://t.co/x0F1HrOE\n", @@ -11176,7 +10422,7 @@ "“@KIDSoReTro: Hurricane Sandy u got to chill a shark in somebody from yard http://t.co/Fl8ZmerD” ohh nigga the hurricane didn't even hit yet\n", "\n", "--------------------------------------------------------\n", - "ohh nigga hurricane even hit yet \n", + "nigga hurricane even hit yet \n", "\n", "\n", "Keeping everyone affected by sandy in my thoughts and prayers #staysafe http://t.co/0KB6VUC3\n", @@ -11194,7 +10440,7 @@ "Sharks be swimmin in the streets of NJ#hurricanesandy#holyshit#frontyard#water#ocean#flooded#rain#crazy#swer http://t.co/779gC4yW\n", "\n", "--------------------------------------------------------\n", - "sharks swimmin streets nj hurricanesandy holyshit frontyard water ocean flooded rain crazy swer \n", + "sharks swimmin streets njhurricane sandyholyshitfrontyardwateroceanfloodedraincrazyswer \n", "\n", "\n", "#repost yasunshin3 Sandy...Hope we don't get bad here in Connecticut http://t.co/ry2BByef\n", @@ -11212,7 +10458,7 @@ "Storm Sandy over Lady Liberty & NYC - awesome photo! Lord pls watch over the east coast http://t.co/TwGuxrN8\n", "\n", "--------------------------------------------------------\n", - "storm sandy lady liberty nyc awesome photo lord pls watch east coast \n", + "storm sandy lady liberty new york city awesome photo lord pls watch east coast \n", "\n", "\n", "Shark swimming on a road in New Jersey after Sandy http://t.co/vDLx1aVg\n", @@ -11242,7 +10488,7 @@ "Wow they got sharks in the streets from hurricane sandy. Smh prayer is really needed for the east coast http://t.co/hzBlNntV\n", "\n", "--------------------------------------------------------\n", - "wow got sharks streets hurricane sandy smh prayer really needed east coast \n", + "got sharks streets hurricane sandy prayer really needed east coast \n", "\n", "\n", "Not my pic!!! But #salute to my fellow men and women in the armed forces!! SANDY DON'T HOLD US BACK! http://t.co/sKTgFkgY\n", @@ -11254,25 +10500,25 @@ "Pic of Sandy in NYC!!! Oh God! http://t.co/fkqGwR8e\n", "\n", "--------------------------------------------------------\n", - "pic sandy nyc oh god \n", + "pic sandy new york city god \n", "\n", "\n", "Oh hi Sandy, welcome to the US . Please don't hurt me 😁 http://t.co/H804rU7l\n", "\n", "--------------------------------------------------------\n", - "oh hi sandy welcome us please hurt \n", + "hi sandy welcome us please hurt \n", "\n", "\n", "Slightly cloudy on the Gold Coast today but @allofNewYork: Hurricane Sandy http://t.co/t1594rHK Sharks in the Streets http://t.co/Gr9ux27v\n", "\n", "--------------------------------------------------------\n", - "slightly cloudy gold coast today hurricane sandy sharks streets \n", + "slightly cloudy gold coast today \n", "\n", "\n", "Que Sandra D ni que nada... Ay nanita!! Sandy is in tha house @ Manhattan http://t.co/TScoJHPA\n", "\n", "--------------------------------------------------------\n", - "sandra ay nanita sandy tha house manhattan \n", + "sandra ay nanita sandy thouse manhattan \n", "\n", "\n", "Sandy meets the best city in the world http://t.co/FYoY9kK1\n", @@ -11290,7 +10536,7 @@ "Yea shit is real wen sandy let the sharks on land smh #repost http://t.co/WX5XaE3Q\n", "\n", "--------------------------------------------------------\n", - "yea shit real wen sandy let sharks land smh repost \n", + "yea shit real wen sandy let sharks land repost \n", "\n", "\n", "Praying for everyone in New York. ); and other areas affected by Sandy. http://t.co/6OI6maZp\n", @@ -11344,19 +10590,19 @@ "A picture of Hurricane Sandy in New York. Pretty yet scary at the same time. #pretty #scary #newyork #cool # http://t.co/mY1Rw9CO\n", "\n", "--------------------------------------------------------\n", - "picture hurricane sandy new york pretty yet scary time pretty scary newyork cool \n", + "picture hurricane sandy new york pretty yet scary time pretty scary new york cool \n", "\n", "\n", "Wow. Not Sandy, but still...WOW. pic of soldiers at the Tomb of the Unknowns in DC. http://t.co/IYssfCdO” #Studs\"\n", "\n", "--------------------------------------------------------\n", - "wow sandy still wow pic soldiers tomb unknowns dc studs \n", + "sandy still pic soldiers tomb unknowns dc studs \n", "\n", "\n", "NYC staring Hurricane Sandy in the face! #NYC #newyork #newyorkcity #Manhattan #statueofliberty #stratenisla http://t.co/CTMIk38b\n", "\n", "--------------------------------------------------------\n", - "nyc staring hurricane sandy face nyc newyork newyorkcity manhattan statueofliberty stratenisla \n", + "new york city staring hurricane sandy face new york city new york new yorkcity manhattan statueofliberty stratenisla \n", "\n", "\n", "Hurricane Sandy, my prayers are going out to all of you guys in the path off the hurricane! http://t.co/LyJ1tOkU\n", @@ -11368,7 +10614,7 @@ "attend avec impatience le photo-reportage de The BigPicture à propos de Sandy parce que là ça part en sucette http://t.co/f0x9S66p\n", "\n", "--------------------------------------------------------\n", - "attend avec impatience photo reportage bigpicture à propos sandy parce là ça part sucette \n", + "attend impatience photo reportage bigpicturepropos sandy parce là ça part sucette \n", "\n", "\n", "Took this from a friend, a guy found a shark in his front yard after sandy! #crazystroms #sandyaftermath #iw http://t.co/Bzv30z9F\n", @@ -11390,9 +10636,15 @@ "\n", "\n", "https://t.co/5nSGIteD oh shit door orkaan sandy zemmen er gewoon haaien in de stad\n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "--------------------------------------------------------\n", - "oh shit orkaan sandy zemmen gewoon haaien stad \n", + "shit orkaan sandy zemmen gewoon haaien stad \n", "\n", "\n", "Sick pic of Sandy over the Big Apple... http://t.co/ly8tn8ME\n", @@ -11410,13 +10662,13 @@ "since we all talking bout her...why not post of pic of how sandy looking in NY today 😨 http://t.co/XCoYtLbn\n", "\n", "--------------------------------------------------------\n", - "since talking bout post pic sandy looking ny today \n", + "since talking bout post pic sandy looking new york today \n", "\n", "\n", "“@ARSONALDAREBEL: So DIS WAT SANDY GOT DA SKY IN NYC LOOKIN LIKE. http://t.co/f94A5RN7” Looks EXACTLY like the scene in 2012\n", "\n", "--------------------------------------------------------\n", - "looks exactly like scene 2012 \n", + "looks exactly like scene in012 \n", "\n", "\n", "Today in DC, Sandy brings rain, but it comes with the territory. Havin a tough day? Quit your whining! #hon http://t.co/8CSWVQ73\n", @@ -11434,19 +10686,19 @@ "Hurricane Sandy look like an aggrivated ex-wife in N.Y.C & She bought to be in the D.M.V by 6pm . Fml http://t.co/dDmH0Fmy\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy look like aggrivated ex wife n c bought v 6pm fml \n", + "hurricane sandy look like aggrivated ex wife bought v fml \n", "\n", "\n", "Due to Sandy, there are sharks in the flooded streets of NYC. God help us all http://t.co/SckbrML4\n", "\n", "--------------------------------------------------------\n", - "due sandy sharks flooded streets nyc god help us \n", + "due sandy sharks flooded streets new york city god help us \n", "\n", "\n", "The power of nature. Photo from Sandy update Facebook page. @ NYC♥ http://t.co/B3q2JfXa\n", "\n", "--------------------------------------------------------\n", - "power nature photo sandy update facebook page nyc \n", + "power nature photo sandy update facebook page new york city \n", "\n", "\n", "Damn, look what Sandy is bringing to the land yo :( http://t.co/sgbZrwh5\n", @@ -11458,7 +10710,7 @@ "Hurricane Sandy in NYC. Prayers to the people and be safe! (Not my pic) #NYC #hurricanesandy #prayers #besaf http://t.co/Mba3bZGl\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc prayers people safe pic nyc hurricanesandy prayers besaf \n", + "hurricane sandy new york city prayers people safe pic new york city hurricane sandy prayers besaf \n", "\n", "\n", "Apparently the Sandy floodwaters were strong enough to send sharks swimming in your front yar @ Easton Place http://t.co/GjX7sSZE\n", @@ -11482,7 +10734,7 @@ "Picture taken by Jason Otts as the Super Hurricane Sandy approaches its touch down in NYC... Take care peopl http://t.co/lrD1c4tl\n", "\n", "--------------------------------------------------------\n", - "picture taken jason otts super hurricane sandy approaches touch nyc take care peopl \n", + "picture taken jason otts super hurricane sandy approaches touch new york city take care peopl \n", "\n", "\n", "I am SO proud to live in this amazing country. Through Hurricane Sandy, these men still protect The Tomb of http://t.co/65PWZodJ\n", @@ -11536,19 +10788,19 @@ "In other news. Woah sandy!! Please take it easy.. Prayers going out to all our NY friends! 😳😓👎🙏 hope y'all a http://t.co/aa0Vt5Sg\n", "\n", "--------------------------------------------------------\n", - "news woah sandy please take easy prayers going ny friends hope \n", + "news woah sandy please take easy prayers going new york friends hope \n", "\n", "\n", "#repost @ethvn_ big sandy hittin the NYC http://t.co/L7DBU5b3\n", "\n", "--------------------------------------------------------\n", - "repost big sandy hittin nyc \n", + "repost big sandy hittin new york city \n", "\n", "\n", "A shark swimming in the backyard of a NJ home. sandy is a bitch, she must be on her period. http://t.co/U7fbBvj6\n", "\n", "--------------------------------------------------------\n", - "shark swimming backyard nj home sandy bitch must period \n", + "shark swimming backyard new jersey home sandy bitch must period \n", "\n", "\n", "Sandy really tore up the Tri-State lastnight http://t.co/ICZSFyx3\n", @@ -11566,13 +10818,13 @@ "this chick has a shark in her backyard thanks to sandy. #iwouldcry #omg http://t.co/QIHTCNAJ\n", "\n", "--------------------------------------------------------\n", - "chick shark backyard thanks sandy iwouldcry omg \n", + "chick shark backyard thanks sandy iwouldcry \n", "\n", "\n", "Sandy comin in on New York City #regram #holyyyyfrankenstorm http://t.co/xz1uKKzm\n", "\n", "--------------------------------------------------------\n", - "sandy comin new york city regram holyyyyfrankenstorm \n", + "sandy comin new york city holyyyyfrankenstorm \n", "\n", "\n", "Honor guard never leaves their post...even in the face of Hurricane Sandy! #respect #honor http://t.co/RhY3C4Fw\n", @@ -11593,28 +10845,16 @@ "support goes soldiers protecting tomb even sandy \n", "\n", "\n", - "Sandy in NYC http://t.co/byp31Qsm\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", - "Sandy in NYC ( via @SofiaSalama93 ) http://t.co/pOtFi7Ho\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "Look rhat pic of Sandy in NYC http://t.co/i9pGjmy9 @venice4change\n", "\n", "--------------------------------------------------------\n", - "look rhat pic sandy nyc \n", + "look rhat pic sandy new york city \n", "\n", "\n", "So DIS WAT SANDY GOT DA SKY IN NYC LOOKIN LIKE. http://t.co/fIVGpxvI\n", "\n", "--------------------------------------------------------\n", - "dis sandy got da sky nyc lookin like \n", + "sowat sandy got sky new york city lookin like \n", "\n", "\n", "Bueno!! Sandy lookin like \"The Day After Tomorrow\" .. God protect us... 😇 http://t.co/OpZTSVdV\n", @@ -11626,151 +10866,133 @@ "Crazy picture #hurricanesandy #hurricane #photooftheday #bestoftheday #newyork #disaster #photogr @ New York http://t.co/FZu3U8h7\n", "\n", "--------------------------------------------------------\n", - "crazy picture hurricanesandy hurricane photooftheday bestoftheday newyork disaster photogr new york \n", + "crazy picture hurricane sandy hurricane photooftheday bestoftheday new york disaster photogr new york \n", "\n", "\n", "#hurricane #sandy #hurricanesandy #ny #new #york #nyc #newyork #newyorkcity #statueofliberty #instalove #lik http://t.co/oGaiaw62\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy ny new york nyc newyork newyorkcity statueofliberty instalove lik \n", + "hurricane sandy hurricane sandy new york new york new york city new york new yorkcity statueofliberty instalove lik \n", "\n", "\n", "Awesome pic! Take care guys! #hurricanesandy #sandy #newyork #liberty #eastcoast #USA #GodBless http://t.co/KtuWSHsF\n", "\n", "--------------------------------------------------------\n", - "awesome pic take care guys hurricanesandy sandy newyork liberty eastcoast usa godbless \n", + "awesome pic take care guys hurricane sandy sandy new york liberty eastcoast usa godbless \n", "\n", "\n", "Hurricane Sandy! #Hurricane #Sandy #HurricaneSandy #NewYork #USA #america #eastcoast #city #statu @ New York http://t.co/PulCkBBU\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricane sandy hurricanesandy newyork usa america eastcoast city statu new york \n", + "hurricane sandy hurricane sandy hurricane sandy new york usa america eastcoast city statu new york \n", "\n", "\n", "This is such an amazing picture. #hurricanesandy #hurricane #sandy #statueofliberty #newyork http://t.co/gHpbuyvA\n", "\n", "--------------------------------------------------------\n", - "amazing picture hurricanesandy hurricane sandy statueofliberty newyork \n", + "amazing picture hurricane sandy hurricane sandy statueofliberty new york \n", "\n", "\n", "#nyc #sandy #hurricane #hurricanesandy #newyork #times #square newyork #ny http://t.co/WIaaI4RA\n", "\n", "--------------------------------------------------------\n", - "nyc sandy hurricane hurricanesandy newyork times square newyork ny \n", + "new york city sandy hurricane hurricane sandy new york times square new york new york \n", "\n", "\n", "This is so scary ! 🗽😣🙏 #hurricanesandy #hurricane #newyork #ny #statueofliberty #ellisisland #scary #storm # http://t.co/xn3GIxWt\n", "\n", "--------------------------------------------------------\n", - "scary hurricanesandy hurricane newyork ny statueofliberty ellisisland scary storm \n", + "scary hurricane sandy hurricane new york new york statueofliberty ellisisland scary storm \n", "\n", "\n", "Hurricane sandy in New York 😁😁😁😁 #scary #sandy #hurricanesandy #crazy #newyork #insane http://t.co/xUZm6DJp\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy new york scary sandy hurricanesandy crazy newyork insane \n", + "hurricane sandy new york scary sandy hurricane sandy crazy new york insane \n", "\n", "\n", "Its happening right now... #hurricanesandy #sandy #hurricane #storm #ny #statueofliberty #newyork http://t.co/h9RbofAl\n", "\n", "--------------------------------------------------------\n", - "happening right hurricanesandy sandy hurricane storm ny statueofliberty newyork \n", + "happening right hurricane sandy sandy hurricane storm new york statueofliberty new york \n", "\n", "\n", "No Sandy! Bad kitty!!! #hurricane #storm #badkitty #kitten #cat #kitty #sandy #hurricanesandy #nyc #newyork http://t.co/7Q3KJFpi\n", "\n", "--------------------------------------------------------\n", - "sandy bad kitty hurricane storm badkitty kitten cat kitty sandy hurricanesandy nyc newyork \n", + "sandy bad kitty hurricane storm badkitty kitten cat kitty sandy hurricane sandy new york city new york \n", "\n", "\n", "Amazing #sandy #hurricane #hurricanesandy #frankinstorm #newyork #newyorkcity #statueofliberty http://t.co/WK97iduD\n", "\n", "--------------------------------------------------------\n", - "amazing sandy hurricane hurricanesandy frankinstorm newyork newyorkcity statueofliberty \n", + "amazing sandy hurricane hurricane sandy frankinstorm new york new yorkcity statueofliberty \n", "\n", "\n", "#hurricane #hurricanesandy #nature #disaster #animals #funny #newyork #followme http://t.co/SH2vomMj\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy nature disaster animals funny newyork followme \n", + "hurricane hurricane sandy nature disaster animals funny new york followme \n", "\n", "\n", "Flooded subway #newyork. #hurricanesandy #sandy http://t.co/VGfLJFGd\n", "\n", "--------------------------------------------------------\n", - "flooded subway newyork hurricanesandy sandy \n", + "flooded subway new york hurricane sandy sandy \n", "\n", "\n", "#pray #hurricanesandy #hurricane #sandy #🙏 #newyork #newjersey #nyc #flood #dam http://t.co/r6JqZmDs\n", "\n", "--------------------------------------------------------\n", - "pray hurricanesandy hurricane sandy newyork newjersey nyc flood dam \n", + "pray hurricane sandy hurricane sandy new york newjersey new york city flood dam \n", "\n", "\n", "Is this real life? #hurricanesandy. #newyork #statueofliberty #crazy #hurricane #weather http://t.co/8PiYaRAI\n", "\n", "--------------------------------------------------------\n", - "real life hurricanesandy newyork statueofliberty crazy hurricane weather \n", + "real life hurricane sandy new york statueofliberty crazy hurricane weather \n", "\n", "\n", "OMG #HurricaneSandy #Sandy #Hurricane #SuperStorm #Storm #NewYork #NY http://t.co/l4RAQljA\n", "\n", "--------------------------------------------------------\n", - "omg hurricanesandy sandy hurricane superstorm storm newyork ny \n", + "hurricane sandy sandy hurricane superstorm storm new york new york \n", "\n", "\n", "This is a crazy shot of the hurricane !! #HurricaneSandy #Sandy #Hurricane #NewYork http://t.co/VtHYzEgU\n", "\n", "--------------------------------------------------------\n", - "crazy shot hurricane hurricanesandy sandy hurricane newyork \n", + "crazy shot hurricane hurricane sandy sandy hurricane new york \n", "\n", "\n", "Una de las mejores fotos del huracán #sandy #hurricane #ny #build #hurricanesandy #newyork http://t.co/fZ9rA3FE\n", "\n", "--------------------------------------------------------\n", - "mejores fotos huracán sandy hurricane ny build hurricanesandy newyork \n", + "mejores fotos huracán sandy hurricane new york build hurricane sandy new york \n", "\n", "\n", "This is crazy sandy is bringing sharks to new Jersey, #sandy #newyork http://t.co/R87qxW17\n", "\n", "--------------------------------------------------------\n", - "crazy sandy bringing sharks new jersey sandy newyork \n", - "\n", - "\n", - "@Rhodes411: Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/MuWzL9SO\n", - "\n", - "--------------------------------------------------------\n", - "insane pic hurricanesandy hitting nyc today \n", - "\n", - "\n", - "@Rhodes411: Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/TzL4nW7I look at this @willdammann @KMendel5\n", - "\n", - "--------------------------------------------------------\n", - "insane pic hurricanesandy hitting nyc today look \n", + "crazy sandy bringing sharks new jersey sandy new york \n", "\n", "\n", "Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/8HwrpJCc”\n", "\n", "--------------------------------------------------------\n", - "insane pic hurricanesandy hitting nyc today \n", - "\n", - "\n", - "Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/IQYbddbf\n", - "\n", - "--------------------------------------------------------\n", - "insane pic hurricanesandy hitting nyc today \n", + "insane pic hurricane sandy hitting new york city today \n", "\n", "\n", "#regram Guarding through hurricane sandy http://t.co/JrtnLIw2\n", "\n", "--------------------------------------------------------\n", - "regram guarding hurricane sandy \n", + "guarding hurricane sandy \n", "\n", "\n", "Patriotism. This is why I love our soldiers. God bless our #military. #UnknownSoldier #HurricaneSandy http://t.co/BkHUQHqV\n", "\n", "--------------------------------------------------------\n", - "patriotism love soldiers god bless military unknownsoldier hurricanesandy \n", + "patriotism love soldiers god bless military unknown soldier hurricane sandy \n", "\n", "\n", "Ctfu RT @Pussy_Lavish: RT @LMAOtwitpics_: Hurricane Sandy is getting real http://t.co/e4PuhvHJ\n", @@ -11785,52 +11007,28 @@ "expected sandy \n", "\n", "\n", - "“@MateezyNigga: Hurricane Sandy is getting real http://t.co/Q8FrEzYt”” @TuareztTammy holy shit\n", - "\n", - "--------------------------------------------------------\n", - "holy shit \n", - "\n", - "\n", - "😳 fuck no! RT @HardBodyRonnie: “@FUNNYPICS Hurricane Sandy is getting real http://t.co/lZQIEudZ”- the fuck? Wow!\n", - "\n", - "--------------------------------------------------------\n", - "fuck \n", - "\n", - "\n", "“@FUNNYPICS: Hurricane Sandy is getting real http://t.co/HKDp3Emm” lol #iCant\n", "\n", "--------------------------------------------------------\n", - "lol icant \n", + "icant \n", "\n", "\n", "Metlolo. RT @tsholo_tt: I would faint. RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/anffaOUi\n", "\n", "--------------------------------------------------------\n", - "metlolo \n", - "\n", - "\n", - "WTF!? RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/kHCI6VpS\n", - "\n", - "--------------------------------------------------------\n", - "wtf \n", + "meto \n", "\n", "\n", "Damn thats a shark in the water n shit smh RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/KsbDEgHT\n", "\n", "--------------------------------------------------------\n", - "damn thats shark water n shit smh \n", - "\n", - "\n", - "In hurricane sandy? RT @djstephfloss: Hahahahaha. No way this is real! A SEAL???? http://t.co/oIHcl4kh\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "damn thats shark water shit \n", "\n", "\n", "New York, hurricane sandy is here...real pic taken today via Scooter http://t.co/hWWZz5wH\n", "\n", "--------------------------------------------------------\n", - "new york hurricane sandy real pic taken today via scooter \n", + "new york hurricane sandy real pic taken todayscooter \n", "\n", "\n", "“@s0_unlik3otherz Play all day RT @andrewcochranx: Niggas tweeted hurricane sandy Is getting real .. 😂😂😂 http://t.co/ANyqdRjh”\n", @@ -11845,24 +11043,6 @@ "hurricane sandy getting real \n", "\n", "\n", - "Hurricane Sandy is getting real http://t.co/mxewDt6r\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", - "Hurricane Sandy is getting real http://t.co/xkIyDhIc\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", - "Hurricane Sandy is getting real http://t.co/1AANzDoZ\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", "Tell me again about how bad your day was. #Respect #Inspiration #Soldiers #USA #Sandy #Hurricane #Proud #Det http://t.co/x6G9AoU4\n", "\n", "--------------------------------------------------------\n", @@ -11872,7 +11052,7 @@ "#Storm#hurricane Sandy#newYork http://t.co/CuidNQfP\n", "\n", "--------------------------------------------------------\n", - "storm hurricane sandy newyork \n", + "stormhurricane sandynew york \n", "\n", "\n", " Sandy ready to engulf the Statue of Liberty. @jodikantor http://t.co/Ii2ZYPLv @Padiwancontodo Maybe is not that bad!. Ok., No.\n", @@ -11890,31 +11070,19 @@ "Da Statue of Liberty right now dis bitch sandy is crzy #onlinepic http://t.co/JmgWH3nn\n", "\n", "--------------------------------------------------------\n", - "da statue liberty right dis bitch sandy crzy onlinepic \n", - "\n", - "\n", - "Wow. #HurricaneSandy RT @VanJones68: Awesome & terrifying image: the Frankenstorm versus the Statue of Liberty in NYC. http://t.co/8bT2RnxF\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricanesandy \n", - "\n", - "\n", - "Is this for real? RT @Ty_Perez: Hurricane Sandy approaching the Statue of Liberty. http://t.co/nDK7gPhP\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "statue liberty right nowbitch sandy crzy onlinepic \n", "\n", "\n", "Look how the Hurricane is hitting the Statue of Liberty #HurricaneSandy #Hurricane #Sandy #Crazy #Epic http://t.co/4UmR364a\n", "\n", "--------------------------------------------------------\n", - "look hurricane hitting statue liberty hurricanesandy hurricane sandy crazy epic \n", + "look hurricane hitting statue liberty hurricane sandy hurricane sandy crazy epic \n", "\n", "\n", "NYC STATUE OF LIBERTY WITH SANDY OVER IT http://t.co/n1W3mSoV\n", "\n", "--------------------------------------------------------\n", - "nyc statue libe \n", + "new york city statue libe \n", "\n", "\n", "Independence Day y vaina!! “@LarrySani: hurricane Sandy & the statue of liberty! Μαλάκα μου... http://t.co/alY9ctpg”\n", @@ -11950,7 +11118,7 @@ "The statue of liberty is having a rough day #hurricanesandy http://t.co/sEfBL1e6\n", "\n", "--------------------------------------------------------\n", - "statue liberty rough day hurricanesandy \n", + "statue liberty rough day hurricane sandy \n", "\n", "\n", "the wrath of Hurricane sandy strikes the Statue of Liberty... looks like the scene from a movie. http://t.co/DNTMNAsF\n", @@ -11977,12 +11145,6 @@ "sandy posted photo statue libe \n", "\n", "\n", - "“@Ty_Perez: Hurricane Sandy approaching the Statue of Liberty. http://t.co/qWN5VDLF” OMG!\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "This bitch Sandy is almost here... Statue of Liberty is standing there saying \"Come get some!!\" #hurricaneSa http://t.co/gLnQjWB9\n", "\n", "--------------------------------------------------------\n", @@ -11992,13 +11154,13 @@ "Wow ! Look at the statue of liberty under sandy http://t.co/0i3bIN1M\n", "\n", "--------------------------------------------------------\n", - "wow look statue liberty sandy \n", + "look statue liberty sandy \n", "\n", "\n", "WTF! :O\\nHurricane Sandy, it is!\\n\\nStatue of Liberty in huge currents. http://t.co/OI0AD6JB\n", "\n", "--------------------------------------------------------\n", - "wtf hurricane sandy statue liberty huge currents \n", + "hurricane sandy statue liberty huge currents \n", "\n", "\n", "Hurricane Sandy approaching the Statue of Liberty. http://t.co/c2DQ44UF\n", @@ -12010,13 +11172,13 @@ "Sandy was goin in on the Statue of Liberty #Sandy #NYC http://t.co/TN4d3BTb\n", "\n", "--------------------------------------------------------\n", - "sandy goin statue liberty sandy nyc \n", + "sandy going statue liberty sandy new york city \n", "\n", "\n", "Seriously? Make it stop!!!!!!! Crazy image of the Statue of Liberty right now #HurricaneSandy #Frankenstorm http://t.co/34NGwlle\n", "\n", "--------------------------------------------------------\n", - "seriously make stop crazy image statue liberty right hurricanesandy frankenstorm \n", + "seriously make stop crazy image statue liberty right hurricane sandy frankenstorm \n", "\n", "\n", "Statue of Liberty your going to let Sandy take you down... http://t.co/qOpjd3Ry\n", @@ -12028,7 +11190,7 @@ "One hell of a cat fight: Lady Liberty vs. Sandy #concretejungle http://t.co/5HkSAnYi http://t.co/ahw7K6mQ\n", "\n", "--------------------------------------------------------\n", - "one hell cat fight lady liberty vs sandy concretejungle \n", + "one hell cat fight lady liberty versus sandy concretejungle \n", "\n", "\n", "Hurricane Sandy Statue of Liberty standing ground. http://t.co/sds3g9Qo\n", @@ -12040,13 +11202,13 @@ "Hurricane Sandy heading towards The Statue of Liberty 10-29-12 http://t.co/YqZEledP\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy heading towards statue liberty 10 29 12 \n", + "hurricane sandy heading towards statue liberty092 \n", "\n", "\n", "Shit is fake lmao RT @EyeLuvTiff: Wow RT @Ziggybadass: Hurricane sandy just said fuck the statue of liberty huh http://t.co/6VJGxpMx\n", "\n", "--------------------------------------------------------\n", - "shit fake lmao \n", + "shit fake \n", "\n", "\n", "Statue of Liberty ain't playing she bounced on sandy. Y'all better do the same. http://t.co/6hnnwVwb\n", @@ -12070,7 +11232,7 @@ "Pic of #hurricanesandy and the statue of liberty http://t.co/4Ru98nf8\n", "\n", "--------------------------------------------------------\n", - "pic hurricanesandy statue liberty \n", + "pic hurricane sandy statue liberty \n", "\n", "\n", "Picture of Sandy and The Statue of Liberty... On some Ghostbusters shit http://t.co/2t3aLNvy\n", @@ -12112,13 +11274,13 @@ "Statue of liberty gets hit hard #nyc #storm #hurricane #sand @ statan island or whatever http://t.co/GeIraZsl\n", "\n", "--------------------------------------------------------\n", - "statue liberty gets hit hard nyc storm hurricane sand statan island whatever \n", + "statue liberty gets hit hard new york city storm hurricane sand statan island whatever \n", "\n", "\n", "Crazy pic of the Statue of Liberty #HurricaneSandy #Frankenstorm http://t.co/EbLKzb4C\n", "\n", "--------------------------------------------------------\n", - "crazy pic statue liberty hurricanesandy frankenstorm \n", + "crazy pic statue liberty hurricane sandy frankenstorm \n", "\n", "\n", "Damn Hurrican Sandy over the Statue Of Liberty 🙏 http://t.co/o30HAtvr\n", @@ -12136,19 +11298,19 @@ "Знаменитая акула у крыльца дома #Sandy\\n\\nkatie_cernak's photo http://t.co/c5rITma5\n", "\n", "--------------------------------------------------------\n", - "знаменитая акула крыльца дома sandy katie cernak photo \n", + "знаменитая акула крыльца дома sandy katiecernak photo \n", "\n", "\n", "The best honor ever.... The unmarked grave... Soldiers standing through #hurricanesandy no matter what.... # http://t.co/jN9yWowc\n", "\n", "--------------------------------------------------------\n", - "best honor ever unmarked grave soldiers standing hurricanesandy matter \n", + "best honor ever unmarked grave soldiers standing hurricane sandy matter \n", "\n", "\n", "¡EN EXCLUSIVA! Imágenes inéditas sobre lo que está pasando en el metro de NY. #Sandy http://t.co/dCgPSgt7 (Via @Jay_Yuri)\n", "\n", "--------------------------------------------------------\n", - "exclusiva imágenes inéditas pasando metro ny sandy via \n", + "exclusiva imágenes inéditas pasando metro new york sandy \n", "\n", "\n", "Pray for USA go away Sandy!!!🙏🙏🙏 http://t.co/yNJ9h4Zb\n", @@ -12157,28 +11319,16 @@ "pray usa go away sandy \n", "\n", "\n", - "Sandy New York http://t.co/XQVFih0Y\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", "Impresionante el Huracán Sandy a su paso por New York. https://t.co/BGajDpyf\n", "\n", "--------------------------------------------------------\n", "impresionante huracán sandy paso new york \n", "\n", "\n", - "Sandy http://t.co/8CRPIzQT\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Sandy a porches NYC http://t.co/CsjEXNrd\n", "\n", "--------------------------------------------------------\n", - "sandy porches nyc \n", + "sandy porches new york city \n", "\n", "\n", "Crazy bitches. I call this one Sandy http://t.co/nxpVq6Mh\n", @@ -12202,7 +11352,7 @@ "Impresionante la llegada del huracan \"Sandy\" a NY... @ Lago Esclavos # 31 int 10 http://t.co/BrfTpcbJ\n", "\n", "--------------------------------------------------------\n", - "impresionante llegada huracan sandy ny lago esclavos 31 int 10 \n", + "impresionante llegada huracan sandy new york lago esclavos 1 int0 \n", "\n", "\n", "#huricane sandy taken off http://t.co/E7aHdbch\n", @@ -12214,7 +11364,7 @@ "Sandy rolling into NYC http://t.co/Qm7u2PL6\n", "\n", "--------------------------------------------------------\n", - "sandy rolling nyc \n", + "sandy rolling new york city \n", "\n", "\n", "Huracan sandy #heavy #buena foto #nos vamosquebrar http://t.co/cBgpGDg7\n", @@ -12223,52 +11373,40 @@ "huracan sandy heavy buena foto vamosquebrar \n", "\n", "\n", - "Sandy is coming.. http://t.co/Z7UTwP6z\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", - "\n", - "\n", "Espeluznante llagada de \"Sandy\" llegando a NY #hurricane #newyork http://t.co/RByJFtNo\n", "\n", "--------------------------------------------------------\n", - "espeluznante llagada sandy llegando ny hurricane newyork \n", - "\n", - "\n", - "#Hurricane Sandy http://t.co/8GuZbNyC\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "espeluznante llagada sandy llegando new york hurricane new york \n", "\n", "\n", "O Furacão Sandy deve atingir costa dos EUA no início da noite desta segunda.\\nQueridos intercessores e adoradores http://t.co/C2qQF8bS\n", "\n", "--------------------------------------------------------\n", - "furacão sandy deve atingir costa dos eua início da noite desta segunda queridos intercessores adoradores \n", + "furacão sandy deve atingir costa eua início noite desta segunda queridos intercessores adoradores \n", "\n", "\n", "Huracan Sandy acercandose a New York : #Photo: Sandy approaches NYC http://t.co/8xeXDhFA via @juneambrose\n", "\n", "--------------------------------------------------------\n", - "huracan sandy acercandose new york photo sandy approaches nyc \n", + "huracan sandy acercandose new york photo sandy approaches new york city \n", "\n", "\n", "E ainda tem gente que diz que a Sandy e inofensiva... http://t.co/C3V08knb\n", "\n", "--------------------------------------------------------\n", - "ainda tem gente diz sandy inofensiva \n", + "ainda gente diz sandy inofensiva \n", "\n", "\n", "Sandy is looking pretty fed up. #nyc #nj #conn #brooklyn #flatbush #harlem #setifoff #realtalk. All jokes to http://t.co/ho5sIW6R\n", "\n", "--------------------------------------------------------\n", - "sandy looking pretty fed nyc nj conn brooklyn flatbush harlem setifoff realtalk jokes \n", + "sandy looking pretty fed new york city new jersey conn brooklyn flatbush harlem setifoff realtalk jokes \n", "\n", "\n", "Sandy over #nyc #hurricane #intanse #rain #becareful #usa #instagram #ipodtouch http://t.co/vu2nQtPB\n", "\n", "--------------------------------------------------------\n", - "sandy nyc hurricane intanse rain becareful usa instagram ipodtouch \n", + "sandy new york city hurricane intanse rain becareful usa instagram ipodtouch \n", "\n", "\n", "Sandy you've done it again http://t.co/yEIfXMFr\n", @@ -12280,13 +11418,7 @@ "Ecco Sandy su N.Y, spettacolare ma inquietante allo stesso tempo!! http://t.co/NmBA0H50\n", "\n", "--------------------------------------------------------\n", - "ecco sandy n spettacolare inquietante allo stesso tempo \n", - "\n", - "\n", - "This can't be real.... Wtf Sandy. http://t.co/aVFozPrH\n", - "\n", - "--------------------------------------------------------\n", - "real wtf sandy \n", + "ecco sandy spettacolare inquietante allo stesso tempo \n", "\n", "\n", "#PorConfirmar Con la tormenta #Sandy llegaron estos tiburones hasta un mall de New York. http://t.co/v7oH2UvZ\n", @@ -12295,12 +11427,6 @@ "porconfirmar tormenta sandy llegaron tiburones mall new york \n", "\n", "\n", - "@HKalshehhi: OMG!! Sandy what the hell! http://t.co/Ep1wrLyW FUCK\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy hell fuck \n", - "\n", - "\n", "상어 상어 ! “@Anel_K: Sharks seen roaming in New Jersey streets and metro stations. #Sandy http://t.co/f26fmDmc”\n", "\n", "--------------------------------------------------------\n", @@ -12328,13 +11454,7 @@ "Good morning folks_ just seen this pic smh... Really tho 👉After math of STORM #SANDY #truestory http://t.co/4qkwv9QP\n", "\n", "--------------------------------------------------------\n", - "good morning folks seen pic smh really tho math storm sandy truestory \n", - "\n", - "\n", - "“@josemanee: There's sharks in the mall cause of the hurricane. That's crazy http://t.co/tSh2ZGXg” it's not real\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "good morning folks seen pic really tho math storm sandy truestory \n", "\n", "\n", "Unverified: Pic of Wall Street flooding #Sandy http://t.co/KzZwXerM\n", @@ -12343,22 +11463,16 @@ "unverified pic wall street flooding sandy \n", "\n", "\n", - "This Maybe The Best Photo Of #Sandy , http://t.co/X7WnQw1q\n", - "\n", - "--------------------------------------------------------\n", - "maybe best photo sandy \n", - "\n", - "\n", "New Gang moves into New York and takes over the subway... #Sandy #NewYork #NewJersey #shark #sharks http://t.co/EYGqg2rv\n", "\n", "--------------------------------------------------------\n", - "new gang moves new york takes subway sandy newyork newjersey shark sharks \n", + "new gang moves new york takes subway sandy new york newjersey shark sharks \n", "\n", "\n", "El huracán Sandy arrastra 2 tiburones hasta el metro de New Jersey http://t.co/0brXGWQE\"\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey \n", + "huracán sandy arrastra tiburones metro new jersey \n", "\n", "\n", "Bonito montaje RT @AinaDiazV: El Metro de New York lleno de tiburones (y no de Wall Street) #Sandy http://t.co/9IFActvg\n", @@ -12370,13 +11484,13 @@ "IMPACTANTE Huracán Sandy arrastra 2 TIBURONES hasta el metro de New Jersey. http://t.co/1iqW7QaZ\" @BegoMG93\n", "\n", "--------------------------------------------------------\n", - "impactante huracán sandy arrastra 2 tiburones metro new jersey \n", + "impactante huracán sandy arrastra tiburones metro new jersey \n", "\n", "\n", "Huracán Sandy. Dos tiburones en el metro de New Jersey. http://t.co/lm7XUYZQ\n", "\n", "--------------------------------------------------------\n", - "huracán sandy dos tiburones metro new jersey \n", + "huracán sandy tiburones metro new jersey \n", "\n", "\n", "tiburones en el metro de New York http://t.co/0XthiRj8 #Sandy\n", @@ -12388,7 +11502,7 @@ "El huracán #Sandy arrastra dos tiburones al metro de NY http://t.co/61pHEufc\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra dos tiburones metro ny \n", + "huracán sandy arrastra tiburones metro new york \n", "\n", "\n", "EL HURACAN SANDY LLEVO TIBURONES A ESTACION DE METRO DE NEW JERSEY http://t.co/c3mF4x6q\n", @@ -12400,31 +11514,25 @@ "Huracán Sandy arrastra 2 tiburones hasta el metro de New Jersey. Impactante. http://t.co/0tdJZdDY\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey impactante \n", + "huracán sandy arrastra tiburones metro new jersey impactante \n", "\n", "\n", "MirenPorfa Den Esta Informacion El Huracán #Sandy arrastra dos tiburones hasta el Metro de Nueva York http://t.co/WyuGp5Pa\n", "\n", "--------------------------------------------------------\n", - "mirenporfa informacion huracán sandy arrastra dos tiburones metro nueva york \n", - "\n", - "\n", - "MirenPorfa Den Esta Informacion El Huracán #Sandy arrastra dos tiburones hasta el Metro de Nueva York http://t.co/WyuGp5Pa i\n", - "\n", - "--------------------------------------------------------\n", - "mirenporfa informacion huracán sandy arrastra dos tiburones metro nueva york \n", + "mirenporfa informacion huracán sandy arrastra tiburones metro nueva york \n", "\n", "\n", "Go Away! Huracan Sandy :(! #PrayForUSA Terrible dos tiburones en metro New Jersey Oremos para q se vaya el huracan :( http://t.co/VtzWG44S\n", "\n", "--------------------------------------------------------\n", - "go away huracan sandy prayforusa terrible dos tiburones metro new jersey oremos q vaya huracan \n", + "go away huracan sandy prayforusa terrible tiburones metro new jersey oremos q vaya huracan \n", "\n", "\n", "@AlvaroJose85 Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/wIoLTX7X\" @Ingrid85376618\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto \n", + "huracán sandy arrastra tiburones metro new jersey ver foto \n", "\n", "\n", "Tiburones en el metro de New York, flipasss! #Sandy http://t.co/b46Iu3fI\n", @@ -12433,18 +11541,6 @@ "tiburones metro new york flipasss sandy \n", "\n", "\n", - "@mariajogs2009: El huracán sandy a llevado al metro de New Jersay a dos tiburones. http://t.co/2dq2bFcu @JesusBambas\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevado metro new jersay dos tiburones \n", - "\n", - "\n", - "via @chavezcallate: Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/z7L4PsKX\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto \n", - "\n", - "\n", "TIBURONES EN EL METRO DE NEW JERSEY A CAUSA DEL HURACÁN #SANDY. ¡IMPRESIONANTE! http://t.co/5fVa78ui\n", "\n", "--------------------------------------------------------\n", @@ -12454,37 +11550,19 @@ "EL HURACAN SHANDY ARRASTRA 2 TIBURONES AL METRO DE NUEVA JERSEY! http://t.co/6MjoDWHV\n", "\n", "--------------------------------------------------------\n", - "huracan shandy arrastra 2 tiburones metro nueva jersey \n", - "\n", - "\n", - "@Riete: Dos tiburones arrastrados al metro de New Jersey tras el huracán #Sandy!! http://t.co/f8FXHzzF @adryrodry07\n", - "\n", - "--------------------------------------------------------\n", - "dos tiburones arrastrados metro new jersey tras huracán sandy \n", + "huracan shandy arrastra tiburones metro nueva jersey \n", "\n", "\n", "Dos tiburones fueron arrastrados hasta la estación del metro en New Jersey #Sandy http://t.co/QKHL3GbY\n", "\n", "--------------------------------------------------------\n", - "dos tiburones arrastrados estación metro new jersey sandy \n", + "tiburones arrastrados estación metro new jersey sandy \n", "\n", "\n", "Dos tiburones en el metro de New Jersey,arrastrados por la fuerza del Huracán Sandy. #PrayForUsa #Sandy http://t.co/KHCTcyRO\n", "\n", "--------------------------------------------------------\n", - "dos tiburones metro new jersey arrastrados fuerza huracán sandy prayforusa sandy \n", - "\n", - "\n", - "El huracán Sandy arrastra 2 tiburones hasta el metro de New Jersey. http://t.co/Xn7NINKI.\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey \n", - "\n", - "\n", - "Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/8HyWb12O via @alanbatres\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto \n", + "tiburones metro new jersey arrastrados fuerza huracán sandy prayforusa sandy \n", "\n", "\n", "Tiburones en el metro de new jersey por el huracan #sandy http://t.co/s2GhKkP2 @rmacasx95\n", @@ -12496,79 +11574,55 @@ "GENTE: El huracán Sandy arrastra dos tiburones al metro de New Jersey. SERA VERDAD? http://t.co/9E4UXcHj\n", "\n", "--------------------------------------------------------\n", - "gente huracán sandy arrastra dos tiburones metro new jersey sera verdad \n", + "gente huracán sandy arrastra tiburones metro new jersey verdad \n", "\n", "\n", "El huracan Sandy arrastra a dos tiburones a una de las estaciones de metro de nueva york http://t.co/A2THJZ9b\n", "\n", "--------------------------------------------------------\n", - "huracan sandy arrastra dos tiburones estaciones metro nueva york \n", + "huracan sandy arrastra tiburones estaciones metro nueva york \n", "\n", "\n", "“Dos tiburones arrastrados al metro de New Jersey tras el huracán #Sandy!! http://t.co/HJodby7y”\n", "\n", "--------------------------------------------------------\n", - "dos tiburones arrastrados metro new jersey tras huracán sandy \n", + "tiburones arrastrados metro new jersey tras huracán sandy \n", "\n", "\n", "El huracán Sandy arrastra 2 tiburones hasta el metro de New Jersey :O #PrayForUSA http://t.co/h84tjFrt\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey prayforusa \n", - "\n", - "\n", - "@AinaDiazV: El Metro de New York lleno de tiburones (y no de Wall Street) #Sandy http://t.co/2Gn6mCpu\n", - "\n", - "--------------------------------------------------------\n", - "metro new york lleno tiburones wall street sandy \n", + "huracán sandy arrastra tiburones metro new jersey prayforusa \n", "\n", "\n", "@_SandraLoveZayn . Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/1hSEL0jd\" JAJAAAM.\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto jajaaam \n", - "\n", - "\n", - "Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. (Ver foto). http://t.co/VRL08Omm\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey ver foto \n", - "\n", - "\n", - "Dos tiburones arrastrados al metro de New Jersey tras el huracán #Sandy!! http://t.co/e4G8DATc\n", - "\n", - "--------------------------------------------------------\n", - "dos tiburones arrastrados metro new jersey tras huracán sandy \n", + "huracán sandy arrastra tiburones metro new jersey ver foto jajaaam \n", "\n", "\n", "Imágenes impactantes!! Huracán Sandy arrastra 2 TIBURONES hasta el metro de New Jersey!! #QueTodoTwitterSeEntereQue http://t.co/LwMK8rAC\n", "\n", "--------------------------------------------------------\n", - "imágenes impactantes huracán sandy arrastra 2 tiburones metro new jersey quetodotwitterseentereque \n", + "imágenes impactantes huracán sandy arrastra tiburones metro new jersey quetodotwitterseentereque \n", "\n", "\n", "El huracan #Sandy arrastra 2tiburones hasta 1estacion de metro en New Jersey.Y en Cuba les ha dejado sin el 70%del cafe http://t.co/TOLHCBGo\n", "\n", "--------------------------------------------------------\n", - "huracan sandy arrastra 2tiburones 1estacion metro new jersey cuba dejado 70 cafe \n", - "\n", - "\n", - "Huracán \"Sandy\" arrastra 2 tiburones hasta el metro de New Jersey. http://t.co/jygsd7Fb\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy arrastra 2 tiburones metro new jersey \n", + "huracan sandy arrastra metro new jersey cuba lesdejado el0 cafe \n", "\n", "\n", "Que siga la fiesta ;-) @MikeTorruco: IMPACTANTE \\nHuracán Sandy arrastra 2 TIBURONES hasta el metro de New Jersey. http://t.co/A2x7JXI8\n", "\n", "--------------------------------------------------------\n", - "siga fiesta impactante huracán sandy arrastra 2 tiburones metro new jersey \n", + "siga fiesta \n", "\n", "\n", "Dos tiburones en el metro de New Jersey, arrastrados por el Huracán Sandy. Flipante. http://t.co/6IxT50q3\n", "\n", "--------------------------------------------------------\n", - "dos tiburones metro new jersey arrastrados huracán sandy flipante \n", + "tiburones metro new jersey arrastrados huracán sandy flipante \n", "\n", "\n", "El Metro de New York lleno de tiburones (y no de Wall Street) #Sandy http://t.co/5dIKaDa0\n", @@ -12586,13 +11640,13 @@ "#Imagen que circula, muestra que #Sandy arrastró a dos tiburones al metro de New Jersey http://t.co/UcRrhzld\n", "\n", "--------------------------------------------------------\n", - "imagen circula muestra sandy arrastró dos tiburones metro new jersey \n", + "imagen circula muestra sandy arrastró tiburones metro new jersey \n", "\n", "\n", "Una amiga de una amiga que vive en los States me manda esta foto de lo que ha pasado con Sandy. Real o ficción? http://t.co/Uc0HDR1e\n", "\n", "--------------------------------------------------------\n", - "amiga amiga vive states manda foto pasado sandy real ficción \n", + "amiga amiga vive states manda foto quepasado sandy real ficción \n", "\n", "\n", "Impactante foto de tiburones que Huracán Sandy dejó dentro de un mall en Nueva York, esta noche. http://t.co/gIJtq7pd\n", @@ -12610,19 +11664,7 @@ "Omg this can't real in a mall where hurricane Sandy has hit 😱🐟 http://t.co/UsTW5Ouh\n", "\n", "--------------------------------------------------------\n", - "omg real mall hurricane sandy hit \n", - "\n", - "\n", - "new york after sandy :( http://t.co/7dj3LmcM\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", - "\n", - "\n", - "@alroker: Last night's Hurricane Sandy: Coming Together Concert/Telethon so far has raised $23 million. #SandyHelp http://t.co/R0hDQ6JG\"\n", - "\n", - "--------------------------------------------------------\n", - "last night hurricane sandy coming together concert telethon far raised 23 million sandyhelp \n", + "real mall hurricane sandy hit \n", "\n", "\n", "Holly shiiiiizzzz “@MegaManLowe: Hurricane Sandy fucking up NY, Mean While at the Mall. http://t.co/TThWdRRe”\n", @@ -12640,25 +11682,13 @@ "Last night's \"Hurricane Sandy: Coming Together Concert/Telethon so far has raised $23 million. #SandyHelp http://t.co/h6jV2Kuo\n", "\n", "--------------------------------------------------------\n", - "last night hurricane sandy coming together concert telethon far raised 23 million sandyhelp \n", - "\n", - "\n", - "hurricane sandy 😦 http://t.co/myDZx1MU\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "last night hurricane sandy coming together concert telethon far raised 3 million sandyhelp \n", "\n", "\n", "Aunque usted no Lo crea NY despues de Sandy. http://t.co/s5i4tUXl\n", "\n", "--------------------------------------------------------\n", - "aunque usted crea ny despues sandy \n", - "\n", - "\n", - "@zolbadral: Sandy-ийн ачаар акулууд shopping хийж явна... :-))) http://t.co/t2vSP7yy\n", - "\n", - "--------------------------------------------------------\n", - "sandy ийн ачаар акулууд shopping хийж явна \n", + "aunque usted crea new york despues sandy \n", "\n", "\n", "Very cool! “@alroker: Last night's \"Hurricane Sandy: Coming Together Concert so far has raised $23 million. #SandyHelp http://t.co/qcrGkpIN”\n", @@ -12670,25 +11700,19 @@ "Omg!! Sharks in the mall! After the hurricane sandy! Omg! Just can't. http://t.co/2RRjCTJp\n", "\n", "--------------------------------------------------------\n", - "omg sharks mall hurricane sandy omg \n", - "\n", - "\n", - "Hurricane Sandy.... http://t.co/5CWNEUhB\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "sharks mall hurricane sandy \n", "\n", "\n", "Home sick. Last night's \"Hurricane Sandy: Coming Together Concert/Telethon so far has raised $23 million. #SandyHelp http://t.co/27RzGcFn”\n", "\n", "--------------------------------------------------------\n", - "home sick last night hurricane sandy coming together concert telethon far raised 23 million sandyhelp \n", + "home sick last night hurricane sandy coming together concert telethon far raised 3 million sandyhelp \n", "\n", "\n", "MT >> AWESOME - “@alroker: Last night's \"Hurricane Sandy: Coming Together Concert has raised $23 million. #SandyHelp http://t.co/MwTpSTzn”\n", "\n", "--------------------------------------------------------\n", - "greater greater awesome \n", + "mt awesome \n", "\n", "\n", "I think these may be some unwanted guests in the New York Subway during Hurricane Sandy. http://t.co/9jkXdUcC\n", @@ -12706,7 +11730,7 @@ "sandy fırtınası sonrası atlanta'da bir alışveriş merkezinde çektiğim jet skiyle kaybolmuş gökhan özenler, inanılmaz http://t.co/htJsDB42\n", "\n", "--------------------------------------------------------\n", - "sandy fırtınası sonrası atlanta da bir alışveriş merkezinde çektiğim jet skiyle kaybolmuş gökhan özenler inanılmaz \n", + "sandy fırtınası sonrası atlanta bir alışveriş merkezinde çektiğim jet skiyle kaybolmuş gökhan özenler inanılmaz \n", "\n", "\n", "Nice! RT @alroker: Last night's \"Hurricane Sandy Concert so far has raised $23 million. #SandyHelp http://t.co/vwsp8onV #fb\n", @@ -12718,25 +11742,25 @@ "L'ouragan #Sandy à ramené deux requins dans une station de métro du #NewJersey http://t.co/SGN3DXp6\n", "\n", "--------------------------------------------------------\n", - "l ouragan sandy à ramené deux requins dans une station métro newjersey \n", + "ouragan sandyramené deux requins station métro newjersey \n", "\n", "\n", "Des requins dans les stations de métro de New York. #Sandy http://t.co/LAm5cr3O\n", "\n", "--------------------------------------------------------\n", - "des requins dans stations métro new york sandy \n", + "requins stations métro new york sandy \n", "\n", "\n", "mee boduvareh dho:) #Sandy @ NY http://t.co/ALyFalj8\n", "\n", "--------------------------------------------------------\n", - "mee boduvareh dho sandy ny \n", + "mee boduvareh dho sandy new york \n", "\n", "\n", "@PrezJuancarlos mira lo que hay en el metro de NY por el huracan #Sandy http://t.co/5ryPMbHi\n", "\n", "--------------------------------------------------------\n", - "mira metro ny huracan sandy \n", + "mira metro new york huracan sandy \n", "\n", "\n", "Undrar om orkanen #Sandy kan få igång en rimlig klimatdebatt i USA? http://t.co/lvuPYNV3\n", @@ -12748,25 +11772,19 @@ "Scariest Hurricane Sandy picture #Sandy #NY http://t.co/jph6YaSi\n", "\n", "--------------------------------------------------------\n", - "scariest hurricane sandy picture sandy ny \n", - "\n", - "\n", - "#Sandy OMFG !!!! http://t.co/pocRafnT\n", - "\n", - "--------------------------------------------------------\n", - "sandy omfg \n", + "scariest hurricane sandy picture sandy new york \n", "\n", "\n", "“@AjaxFanzoneNL: @mennopot wat dacht je hiervan 5? #Sandy http://t.co/ltou5Zc5” wtf dooe die orkaan\n", "\n", "--------------------------------------------------------\n", - "wtf dooe orkaan \n", + "dooe orkaan \n", "\n", "\n", "#sandy a su paso por Linares, escaleras mecánicas del corte inglés... 16:00 pm. http://t.co/YkpaiIa6\n", "\n", "--------------------------------------------------------\n", - "sandy paso linares escaleras mecánicas corte inglés 16 00 pm \n", + "sandy paso linares escaleras mecánicas corte inglés pm \n", "\n", "\n", "خطية جايين يسووگون للعيد من المول !! #Sandy http://t.co/uDR4g3gV\n", @@ -12820,7 +11838,7 @@ "Q miedito el huracán #Sandy en #NY como pa coger el metro con los tiburones dentro flipante http://t.co/qwpmvlmY\n", "\n", "--------------------------------------------------------\n", - "q miedito huracán sandy ny pa coger metro tiburones dentro flipante \n", + "q miedito huracán sandy new york pa coger metro tiburones dentro flipante \n", "\n", "\n", "Los street sharks existen!! Están en New Jersey, gracias #Sandy. Me has devuelto la ilusión :') http://t.co/6fkTQA6m\n", @@ -12844,7 +11862,7 @@ "Tiburones en el metro de NY, vaya canteo #Sandy http://t.co/v4vxuMMZ\n", "\n", "--------------------------------------------------------\n", - "tiburones metro ny vaya canteo sandy \n", + "tiburones metro new york vaya canteo sandy \n", "\n", "\n", "Sharks on streets because of sandy. http://t.co/Fe5kxEfs http://t.co/qPAYcpSR\n", @@ -12862,7 +11880,7 @@ "Sandy ha trascinato gli squali nel supermercato #StayStrongAmerica http://t.co/ExyZyd3T\n", "\n", "--------------------------------------------------------\n", - "sandy trascinato gli squali nel supermercato staystrongamerica \n", + "sandytrascinato gli squali nel supermercato staystrongamerica \n", "\n", "\n", "Su puta madre la que está liando el huracán Sandy. http://t.co/ulhAqgmA\n", @@ -12874,13 +11892,13 @@ "Con l'uragano Sandy, nei centri commerciali di New York si è passati da scale mobili a squali mobili ._. http://t.co/sQgYIDbS\n", "\n", "--------------------------------------------------------\n", - "l uragano sandy nei centri commerciali di new york si è passati da scale mobili squali mobili \n", + "uragano sandy nei centri commerciali new york si è passati scale mobili squali mobili \n", "\n", "\n", "Bon c'est pas gagné après le passage de Sandy va falloir lancer un concours de pêche dans le métro http://t.co/6XqYAU0K\n", "\n", "--------------------------------------------------------\n", - "bon c est pas gagné après passage sandy va falloir lancer concours pêche dans métro \n", + "bon gagné après passage sandy va falloir lancer concours pêche métro \n", "\n", "\n", "Bastante jevi la que está liando el huracán Sandy... http://t.co/8AJx2jfv\n", @@ -12892,7 +11910,7 @@ "Christie Blocks Sandy with Body, Saves Town\\nhttp://t.co/iZggoexf\\n#hurricanesandy #christie http://t.co/teThvnS3\n", "\n", "--------------------------------------------------------\n", - "christie blocks sandy body saves town hurricanesandy christie \n", + "christie blocks sandy body saves town hurricane sandy christie \n", "\n", "\n", "Retweet if you respect this. Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. http://t.co/S9bCoKRX\n", @@ -12901,12 +11919,6 @@ "retweet respect tomb unknown soldier continues stay guarded throughout hurricane sandy \n", "\n", "\n", - "Retweet for respect. Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. http://t.co/dUAfnR4e\n", - "\n", - "--------------------------------------------------------\n", - "retweet respect tomb unknown soldier continues stay guarded throughout hurricane sandy \n", - "\n", - "\n", "Tomb of the Unknown Soldier continues to stay guarded throughout Hurricane Sandy. http://t.co/ORtO1hgk\n", "\n", "--------------------------------------------------------\n", @@ -12919,34 +11931,10 @@ "obama tells marines guard tomb unknown soldier due hurricane sandy refuse usa \n", "\n", "\n", - "Obama tells marines they don't have to guard the Tomb of the Unknown Soldier due to Hurricane Sandy, they refuse. #usa http://t.co/iChmRBMU”\n", - "\n", - "--------------------------------------------------------\n", - "obama tells marines guard tomb unknown soldier due hurricane sandy refuse usa \n", - "\n", - "\n", - "“El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/aZbOGLPG”\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", - "@DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/RNltzltf\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", - "@DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/949WwxQO OMG !! =O\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey omg \n", - "\n", - "\n", "ÚLTIMA HORA: El Huracán #Sandy ha llevado criaturas extrañas hasta las calles de New Jersey. http://t.co/D3NEMTcD\n", "\n", "--------------------------------------------------------\n", - "última hora huracán sandy llevado criaturas extrañas calles new jersey \n", + "última hora huracán sandyllevado criaturas extrañas calles new jersey \n", "\n", "\n", "AY CHIAMO!! RT @DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/frV6y6ZD\n", @@ -12958,7 +11946,7 @@ "#TooMuch...!! > \"@DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/NzdzakPG\"\n", "\n", "--------------------------------------------------------\n", - "toomuch greater \n", + "toomuch \n", "\n", "\n", "IMPRESIONANTE. El huracán #Sandy llevó un tiburón a las carreteras de New Jersey http://t.co/C7oBkNN0\n", @@ -12967,42 +11955,6 @@ "impresionante huracán sandy llevó tiburón carreteras new jersey \n", "\n", "\n", - "El huracán ''Sandy'' llevó un tiburón a las calles de New Jersey. #PrayForUSA. http://t.co/iEHOBtxR\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey prayforusa \n", - "\n", - "\n", - "@GenialesTwits: IMPRESIONANTE. El huracán #Sandy llevó un tiburón a las carreteras de New Jersey http://t.co/5W4iBv65 que miedito!! >..<\n", - "\n", - "--------------------------------------------------------\n", - "impresionante huracán sandy llevó tiburón carreteras new jersey miedito greater less \n", - "\n", - "\n", - "@agusalfonso_: @FIL0S0FIA: huracán Sandy llevó 1 tiburón hasta las calles de NJersey. http://t.co/r8T1DAwn\" lesto.\" festín pra @cronicaweb\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó 1 tiburón calles njersey lesto festín pra \n", - "\n", - "\n", - "@DeboConfesarQue: El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/ukjWHNJ8 mamaaaaa pulpaaa\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey mamaaaaa pulpaaa \n", - "\n", - "\n", - "@diegoabr77 El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/4lp9DuYb\"\"\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy llevó tiburón calles new jersey \n", - "\n", - "\n", - "WTF :'c RT @AliciaStepha: Omg El huracán Sandy llevó un tiburón hasta las calles de New Jersey. http://t.co/bcmznZcT\n", - "\n", - "--------------------------------------------------------\n", - "wtf c \n", - "\n", - "\n", "el huracan sandy llevo un tiburón hasta las calles de new jersey. http://t.co/gUdDlEDD\n", "\n", "--------------------------------------------------------\n", @@ -13018,7 +11970,7 @@ "wow, so funny, im on the floor, wow, u r cool wow “@Lewis__Wood: Britain's last Hurricane was pretty devastating... http://t.co/xmrDRPBP”\n", "\n", "--------------------------------------------------------\n", - "wow funny im floor wow r cool wow \n", + "funny floor cool \n", "\n", "\n", "Britain's last Hurricane was pretty devastating... http://t.co/Xj36MRbo\n", @@ -13030,13 +11982,13 @@ "Situation actuel de New-York : la statut de la liberté prévoit, elle aussi, de se replier... #Sandy ✄ http://t.co/3R3VQ60h\n", "\n", "--------------------------------------------------------\n", - "situation actuel new york statut liberté prévoit elle aussi replier sandy \n", + "situation actuel new york statut liberté prévoit aussi replier sandy \n", "\n", "\n", "Impresionante un Tiburón en las calles de #NewJersey por consecuencia al Huracán #Sandy OMG http://t.co/ewayEFpj en breve @noticierouno 1/2\n", "\n", "--------------------------------------------------------\n", - "impresionante tiburón calles newjersey consecuencia huracán sandy omg breve 1 2 \n", + "impresionante tiburón calles newjersey consecuencia huracán sandy breve \n", "\n", "\n", "Parece una película de terror es la imagen q muestra la llegada de huracán #Sandy a Nueva York. http://t.co/bvAmfNoC\"\n", @@ -13054,19 +12006,19 @@ "::FOTO:: Así permanece la Estatua de la Libertad en NY después del paso de Sandy http://t.co/7o8dZ2i2\n", "\n", "--------------------------------------------------------\n", - "foto así permanece estatua libertad ny después paso sandy \n", + "foto así permanece estatua libertad new york después paso sandy \n", "\n", "\n", "Primeras imágenes de como ha quedado la Estatua de la Libertad, tras el paso del Huracán Sandy http://t.co/kT1Jz20b\n", "\n", "--------------------------------------------------------\n", - "primeras imágenes quedado estatua libertad tras paso huracán sandy \n", + "primeras imágenes comoquedado estatua libertad tras paso huracán sandy \n", "\n", "\n", "y asi termino La estatua Libertad cuando vio que era mas fuerte que pensaba , EL tiron de Sandy y Travolta http://t.co/b9YJEDSN\n", "\n", "--------------------------------------------------------\n", - "asi termino estatua libertad vio mas fuerte pensaba tiron sandy travolta \n", + "así termino estatua libertad vio fuerte pensaba tiron sandy travolta \n", "\n", "\n", "Esta imagen les quedo excelente!!! La estatua de la libertad afectada por Sandy!! http://t.co/eh6jGteG\n", @@ -13090,13 +12042,13 @@ "Por fin una foto real de lo que esta pasando en NYC con el huracán #Sandy http://t.co/bTHBr8sj\n", "\n", "--------------------------------------------------------\n", - "fin foto real pasando nyc huracán sandy \n", + "fin foto real pasando new york city huracán sandy \n", "\n", "\n", "Impresionante el huracan Sandy... Destrozos por todo NY... La estatua de la Libertad super afectada. http://t.co/qBWDHSh0\n", "\n", "--------------------------------------------------------\n", - "impresionante huracan sandy destrozos ny estatua libertad super afectada \n", + "impresionante huracan sandy destrozos new york estatua libertad super afectada \n", "\n", "\n", "IMPRESIONANTE: Pensaba q era alguna película de Hollywood, pero es una foto real del huracán #Sandy en Nueva York hoy ! http://t.co/zfy5ORHl\n", @@ -13108,7 +12060,7 @@ "ÚLTIMA HORA: Primeras imágenes de cómo ha quedado la Estatua de la Libertad después del Huracán #Sandy http://t.co/Ll6gJQ2E\n", "\n", "--------------------------------------------------------\n", - "última hora primeras imágenes cómo quedado estatua libertad después huracán sandy \n", + "última hora primeras imágenes cómoquedado estatua libertad después huracán sandy \n", "\n", "\n", "@RaulSpinola \\nEspectacular!!\\n\\nIncreíble foto de como se refugian en New York ante la llegada del huracán #sandy http://t.co/8jBcRrcy\n", @@ -13126,7 +12078,7 @@ "Parece de película pero es una de las fotos que más me ha impresionado del huracán #Sandy http://t.co/9BdWbsT7\n", "\n", "--------------------------------------------------------\n", - "parece película fotos impresionado huracán sandy \n", + "parece película fotos meimpresionado huracán sandy \n", "\n", "\n", "Habéis visto como a quedado la estatua de la libertad despues del huracán sandy? (Broma) http://t.co/7UBuD0Op\n", @@ -13138,7 +12090,7 @@ "Mientras tanto; en NY una batalla campal entre \"Sandy\" y \"La Estatua de la Libertad\". http://t.co/FhiRCNal\n", "\n", "--------------------------------------------------------\n", - "mientras ny batalla campal sandy estatua libertad \n", + "mientras new york batalla campal sandy estatua libertad \n", "\n", "\n", "Jajaja, qué vacanidad la Estatua de la Libertad se escondió porque el ciclón \"Sandy\" llegaba a Nueva York. http://t.co/PQ5bC0QY\n", @@ -13147,12 +12099,6 @@ "jajaja vacanidad estatua libertad escondió ciclón sandy llegaba nueva york \n", "\n", "\n", - "@AIerta: Impresionante el huracan Sandy... Destrozos por todo NY... La estatua de la Libertad super afectada. http://t.co/OC4p7n2o JAJAJ!!\n", - "\n", - "--------------------------------------------------------\n", - "impresionante huracan sandy destrozos ny estatua libertad super afectada jajaj \n", - "\n", - "\n", "Estatua de la Libertad, Sandy te va a apagar el fuego. http://t.co/ScCPcwd9\n", "\n", "--------------------------------------------------------\n", @@ -13171,16 +12117,10 @@ "juaaaaa \n", "\n", "\n", - "@carlosfelton: La Estatua de la Libertad se esconde ante la llegada de Sandy!!!!! http://t.co/WXrtGN6p //#megawin\n", - "\n", - "--------------------------------------------------------\n", - "estatua libertad esconde llegada sandy megawin \n", - "\n", - "\n", "Primeras imágenes de cómo ha quedado la Estatua de la Libertad después del Huracán #Sandy http://t.co/Gm3dlp5d\n", "\n", "--------------------------------------------------------\n", - "primeras imágenes cómo quedado estatua libertad después huracán sandy \n", + "primeras imágenes cómoquedado estatua libertad después huracán sandy \n", "\n", "\n", "Imagen de la Estatua de la Libertad justo antes de llegar el huracán Sandy http://t.co/Ev245o2b\n", @@ -13213,18 +12153,6 @@ "aunque digan contrario sandy jugó estatua libertad \n", "\n", "\n", - "LOL RT \"@GokuMeme: Impresionante e impactante foto de como se refugian en Nueva York ante la llegada del huracán #sandy http://t.co/wsgahrup\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", - "\n", - "\n", - "@Riete: #SeGanoUnFavorito jajaja!!! El Huracán #Sandy le sube la falda a la estatua de La Libertad... http://t.co/8LxlUMEB@Chiqui771\n", - "\n", - "--------------------------------------------------------\n", - "seganounfavorito jajaja huracán sandy sube falda estatua libertad \n", - "\n", - "\n", "TREMENDO: El Huracán #Sandy causando estragos a la Estatua de la Libertad !!! http://t.co/49xoPegq\n", "\n", "--------------------------------------------------------\n", @@ -13243,36 +12171,18 @@ "hurricane sandy hits statue liberty \n", "\n", "\n", - "A shark was photographed swimming in the front yard of a flooded home in Brigantine Beach, New Jersey #sandy pic: http://t.co/9uoyETMU”\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming front yard flooded home brigantine beach new jersey sandy pic \n", - "\n", - "\n", "Ngeri-__- ya ampun RT @MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/zuc9DLP4\n", "\n", "--------------------------------------------------------\n", "ngeri ampun \n", "\n", "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/SKepQia9 @k3lsyh3nd3rson\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb \n", - "\n", - "\n", "wasn't this faked? “@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/6TErXvpy”\n", "\n", "--------------------------------------------------------\n", "faked \n", "\n", "\n", - "OMG!!! \"@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/AHVhwS4o\"\"\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "fucking hell :O \"A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/EQLbWJ8l\"\n", "\n", "--------------------------------------------------------\n", @@ -13285,42 +12195,18 @@ "shark photographed swimming road new jersey sandy pic mb \n", "\n", "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/3fsQVqbQ#shitbricks\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb shitbricks \n", - "\n", - "\n", "look @zachbussey, sharks! RT @MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/HEDKlRAY\n", "\n", "--------------------------------------------------------\n", "look sharks \n", "\n", "\n", - "@fahad a shark was swimming on the road in new jersey #Sandy http://t.co/Z7TTLM0V\n", - "\n", - "--------------------------------------------------------\n", - "shark swimming road new jersey sandy \n", - "\n", - "\n", - " @bryanboy: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/a9VXotMR\"\" SHARK... :-S\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb shark \n", - "\n", - "\n", "Thats not from sandy RT @MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/IW7qf61v\n", "\n", "--------------------------------------------------------\n", "thats sandy \n", "\n", "\n", - "@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/mnSYd2wR @Kheemeee I found it!\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb found \n", - "\n", - "\n", "GokiL RT @tieckahz: RT @MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/YUTZ5BH6\n", "\n", "--------------------------------------------------------\n", @@ -13333,90 +12219,24 @@ "real real \n", "\n", "\n", - "“@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/advWaJlv” CRAZY!!\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", - "\n", - "\n", - "OMG!!!!! “@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/2vDi4nB6”\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", - "Omg!!!! :ORT @MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/Aoyhyugf\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", "A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/TXOOF3ob great stuff\n", "\n", "--------------------------------------------------------\n", "shark photographed swimming road new jersey sandy pic mb great stuff \n", "\n", "\n", - "“@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/xqyzqxKa” FUCK\n", - "\n", - "--------------------------------------------------------\n", - "fuck \n", - "\n", - "\n", - "“@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/MUkmI190” no sandy didn't this.\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/bWYGqXfV @J_Rose227 D:\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb \n", - "\n", - "\n", "Satin patay na pusa/daga. RT@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/qeSrF9U6\n", "\n", "--------------------------------------------------------\n", "satin patay pusa daga \n", "\n", "\n", - "A shark was photographed swimming on the road in New Jersey #sandy pic #MB @RanaSaif100 http://t.co/ctVfFMni\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb \n", - "\n", - "\n", "“A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/etnQvimQ” hm can't tell if its photoshopped.\n", "\n", "--------------------------------------------------------\n", "shark photographed swimming road new jersey sandy pic mb hm tell photoshopped \n", "\n", "\n", - "#Wow RT @MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/4446w3tG\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", - "“@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/XE8ECc6Y” this is amazing\n", - "\n", - "--------------------------------------------------------\n", - "amazing \n", - "\n", - "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/A2pW8XCtHolllyyy shiitt !\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb shiitt \n", - "\n", - "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/R7LKAbj9 Oh hell no\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb oh hell \n", - "\n", - "\n", "“@MindbIowingFact: A shark was photographed swimming in the front yard (New Jersey) #sandy pic: http://t.co/u2KwvM5W” Your gaff? @jamesod19\n", "\n", "--------------------------------------------------------\n", @@ -13429,30 +12249,6 @@ "nuts \n", "\n", "\n", - "@MindBlowing: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/UrDHJUs2 Nightmare!\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb nightmare \n", - "\n", - "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/11wpbCl2 scary\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb scary \n", - "\n", - "\n", - "A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/mqSfOv4j -- @s_v_richardson\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb \n", - "\n", - "\n", - "@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/FowapO9b FURCKKKK\n", - "\n", - "--------------------------------------------------------\n", - "shark photographed swimming road new jersey sandy pic mb furckkkk \n", - "\n", - "\n", "WTHECK!! “@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/HMlkkt7K”\n", "\n", "--------------------------------------------------------\n", @@ -13477,12 +12273,6 @@ "storm floods bad enough \n", "\n", "\n", - "LOL!!! “@MINDBLOWlNG: A shark was photographed swimming on the road in New Jersey #sandy pic #MB : http://t.co/FdMKcN6U”\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", - "\n", - "\n", "Vittorio viC Lelii (@ilVeeC): \\n\"Allora Sandy è passata? Sicuri eh?\" http://t.co/XgKrilDt \\n(https://t.co/TO2zZ6xl)\n", "\n", "--------------------------------------------------------\n", @@ -13504,7 +12294,7 @@ "Freaking News: la CNN fa públiques les imatges més impactants de l'huracà Sandy \\n\\n\\nac @xriusenoticies http://t.co/3S3AIfo9\n", "\n", "--------------------------------------------------------\n", - "freaking news cnn fa públiques imatges més impactants l huracà sandy ac \n", + "freaking news cnn fa públiques imatges més impactants huracà sandy ac \n", "\n", "\n", "Lets talk about #commitment for a minute. Even Sandy can't stop them. Yet again- #proudtobeanAmerican http://t.co/Gr7brxHT\n", @@ -13522,19 +12312,19 @@ "Omg! \"MindbIowingFact: shark was photographed swimming in front yard of flooded home in Brigantine Beach, NJ #sandy http://t.co/FtGjfo7v\"\n", "\n", "--------------------------------------------------------\n", - "omg mindbiowingfact shark photographed swimming front yard flooded home brigantine beach nj sandy \n", + "mindbiowingfact shark photographed swimming front yard flooded home brigantine beach new jersey sandy \n", "\n", "\n", "Ondertussen in New York: http://t.co/F61akoUw #NewYork #Sandy credits: @Mvan_berkel\n", "\n", "--------------------------------------------------------\n", - "ondertussen new york newyork sandy credits \n", + "ondertussen new york new york sandy credits \n", "\n", "\n", "At least someone's enjoying this.\\n\\n“Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/JxtEFm1K”\n", "\n", "--------------------------------------------------------\n", - "least someone enjoying shark swimming streets brigantine n j hurricane hurricanesandy \n", + "least someone enjoying shark swimming streets brigantine hurricane hurricane sandy \n", "\n", "\n", "Absolutely resolute in their duty!!! May God warm their souls for their selfless calling! #Sandy http://t.co/1GPHZrPX\n", @@ -13549,16 +12339,10 @@ "shark swimming streets new jersey sandy \n", "\n", "\n", - "#Sandy in NYC http://t.co/Q48zCxnc\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "puts my giant spider story back in its box! @MindbIowingFact: shark in the front of flooded home,New Jersey #sandy pic: http://t.co/Wo9zw6qB\n", "\n", "--------------------------------------------------------\n", - "puts giant spider story back box shark front flooded home new jersey sandy pic \n", + "puts giant spider story back box \n", "\n", "\n", "Foto aus New York - die letzten bringen sich in Sicherheit: http://t.co/Rdpjrqvl (via @KenCarpenter) #sandy\n", @@ -13576,7 +12360,7 @@ "NHL lockouts over! Sharks are in NJ #nhl #sandy http://t.co/n1iXdbEj\n", "\n", "--------------------------------------------------------\n", - "nhl lockouts sharks nj nhl sandy \n", + "nhl lockouts sharks new jersey nhl sandy \n", "\n", "\n", "Holy Shark! \"@AnonIRC: A shark photographed swimming in front yard of a flooded home in Brigantine Beach, NJ #Sandy http://t.co/Q2wMReCa\"\n", @@ -13612,25 +12396,25 @@ "Scuba diver in NYC subway, via @Gawker. #Sandy http://t.co/9cEaDm9e\n", "\n", "--------------------------------------------------------\n", - "scuba diver nyc subway sandy \n", + "scuba diver new york city subway sandy \n", "\n", "\n", "Shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy http://t.co/WDG6HUAB\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine n j hurricane sandy \n", + "shark swimming streets brigantine hurricane sandy \n", "\n", "\n", "@MissDaniellaW @nayzomi1 \"Shark photographed swimming in the front yard of a flooded home in NJ #sandy pic: http://t.co/MKE4GyyF\". Eeek Xx\n", "\n", "--------------------------------------------------------\n", - "shark photographed swimming front yard flooded home nj sandy pic eeek xx \n", + "shark photographed swimming front yard flooded home new jersey sandy pic eeek xx \n", "\n", "\n", "from a few days ago. yikes. real? RT @hurrtrackerapp Shark swimming in streets of Brigantine, NJ #Sandy http://t.co/MirJlQmR\n", "\n", "--------------------------------------------------------\n", - "days ago yikes real \n", + "days ago real \n", "\n", "\n", "Ondertussen, in New York... #sandy http://t.co/ssJQ50Mo\n", @@ -13645,6 +12429,12 @@ "picture hurricane sandy decending new york \n", "\n", "\n", + "RT\"@xmaaikewiersma: RT\"@xmaritesmee: In New Jersey zwemmen haaien in straten #Sandy http://t.co/cEyXIXDc\"\n", + "\n", + "--------------------------------------------------------\n", + "rt \n", + "\n", + "\n", "Sharks swims in a New Jersey yard that has been flooded by #Sandy .. .ye that is a shark!!! http://t.co/31eDujVL\n", "\n", "--------------------------------------------------------\n", @@ -13654,13 +12444,7 @@ "Meanwhile in new york !!!! Where's #sandy ??? http://t.co/aaDNRY3h\n", "\n", "--------------------------------------------------------\n", - "meanwhile new york sandy \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "meanwhile new york sandy \n", "\n", "\n", "Shark! In OC #Sandy from earlier today http://t.co/Rd83jhJz\n", @@ -13672,7 +12456,7 @@ "Oohhh shhhiTT!! RT @hurrtrackerapp: Shark swimming in streets of Brigantine, N.J., during #Hurricane #HurricaneSandy http://t.co/ACIx738Z\n", "\n", "--------------------------------------------------------\n", - "oohhh shhhitt \n", + "shhhitt \n", "\n", "\n", ": “This shark was found in front of someone's house in New Jersey. #Sandy http://t.co/5mJ42H0P” @sharnivinson\n", @@ -13690,7 +12474,7 @@ "Sharks swimming in the streets post Hurricane lol http://t.co/AUZ3BeOn\n", "\n", "--------------------------------------------------------\n", - "sharks swimming streets post hurricane lol \n", + "sharks swimming streets post hurricane \n", "\n", "\n", "Shark swimming around in yard after hurricane #sandy http://t.co/0Cz9hHLL\n", @@ -13708,13 +12492,13 @@ "0_o NO! shark swimming in streets of Brigantine, N.J., during #Hurricane #Sandy (via @sista71) #Frankenstorm http://t.co/snSrt9fG\"\n", "\n", "--------------------------------------------------------\n", - "0 shark swimming streets brigantine n j hurricane sandy frankenstorm \n", + "shark swimming streets brigantine hurricane sandy frankenstorm \n", "\n", "\n", "Shark on NewYork street! #NY #Sandy RT @RomaTweetcorn Акулы из океана попали на улицы Нью Йорка!Вот это реально страшно http://t.co/jD2EgNqF\n", "\n", "--------------------------------------------------------\n", - "shark newyork street ny sandy \n", + "shark new york street new york sandy \n", "\n", "\n", "In New Jersey zwemmen haaien in straten #Sandy http://t.co/ERvaZEwj\n", @@ -13726,13 +12510,13 @@ "#sandy is behoorlijk tekeer gegaan in NewYork getuige deze foto tijdens de orkaan http://t.co/LsBRLL5F\n", "\n", "--------------------------------------------------------\n", - "sandy behoorlijk tekeer gegaan newyork getuige foto tijdens orkaan \n", + "sandy behoorlijk tekeer gegaan new york getuige foto tijdens orkaan \n", "\n", "\n", "NYC heeft er weer vertrouwen in.. #Sandy http://t.co/p9rkrjqs\n", "\n", "--------------------------------------------------------\n", - "nyc weer vertrouwen sandy \n", + "new york city weer vertrouwen sandy \n", "\n", "\n", "Amazing picture of hurricane #Sandy decending in New York http://t.co/TDhFeWCS\n", @@ -13765,12 +12549,6 @@ "think pic halloween spooky ah \n", "\n", "\n", - "@DaKreek: a shark swimmin in the front yard of a flooded home in New Jersey pic: http://t.co/zXT5WTfU // Amazing. #sandy\n", - "\n", - "--------------------------------------------------------\n", - "shark swimmin front yard flooded home new jersey pic amazing sandy \n", - "\n", - "\n", "A wide-eyed seal appears in Manhattan #Sandy http://t.co/VOTgiH6B\n", "\n", "--------------------------------------------------------\n", @@ -13786,19 +12564,7 @@ "Beaucoup de fausses photos sur la tempête Sandy circulent sur internet, mais celle ci est bien vrai: http://t.co/05bahs5m !!\n", "\n", "--------------------------------------------------------\n", - "beaucoup fausses photos sur tempête sandy circulent sur internet mais celle ci est bien vrai \n", - "\n", - "\n", - "@VeryBadTwit: Beaucoup de fausses photos sur la tempête Sandy circulent sur internet, mais celle ci est bien vrai: http://t.co/AvG6ytjb\n", - "\n", - "--------------------------------------------------------\n", - "beaucoup fausses photos sur tempête sandy circulent sur internet mais celle ci est bien vrai \n", - "\n", - "\n", - "Beaucoup de fausses photos sur la tempête Sandy circulent sur internet, mais celle ci est bien vrai: http://t.co/sYoOOy3B\n", - "\n", - "--------------------------------------------------------\n", - "beaucoup fausses photos sur tempête sandy circulent sur internet mais celle ci est bien vrai \n", + "beaucoup fausses photos tempête sandy circulent internet celle ci bien vrai \n", "\n", "\n", "Like really there's sharks on the hwy\\n#Sandy http://t.co/ZINIYKu8\n", @@ -13810,13 +12576,13 @@ "#Dolphin on the street #NewYork #sandy http://t.co/V1U5kajM\n", "\n", "--------------------------------------------------------\n", - "dolphin street newyork sandy \n", + "dolphin street new york sandy \n", "\n", "\n", "Striking photo of Hurricane #Sandy bearing down on #NYC http://t.co/RhSCi5JF via @mr_mcqwerty @theoncominghope\n", "\n", "--------------------------------------------------------\n", - "striking photo hurricane sandy bearing nyc \n", + "striking photo hurricane sandy bearing new york city \n", "\n", "\n", "@nerddad I dunno, this was the latest pic I saw. #Sandy http://t.co/Q4pTLFiq\n", @@ -13846,7 +12612,7 @@ "This is NOT an underwater pic from my book, this is NY subway due to #Sandy: http://t.co/WHAiZeB5\n", "\n", "--------------------------------------------------------\n", - "underwater pic book ny subway due sandy \n", + "underwater pic book new york subway due sandy \n", "\n", "\n", "The Day After Tomorrow \"Film\" \"@MELISSACELSIC: #Sandy http://t.co/uOWwN9xr\"\n", @@ -13864,7 +12630,7 @@ "OMW!! There seems to be no end to this one! LOL! #Sandy http://t.co/cYOCuSrI\n", "\n", "--------------------------------------------------------\n", - "omw seems end one lol sandy \n", + "omw seems end one sandy \n", "\n", "\n", "Our military braving #Sandy. Still protecting and guarding the tomb. #Arlington http://t.co/ZXKrKtNh\n", @@ -13882,31 +12648,19 @@ "Another picture of the Statue of Liberty, taken a couple moments later #Sandy #HurricaneSandy: http://t.co/lqmf8ovP\n", "\n", "--------------------------------------------------------\n", - "another picture statue liberty taken couple moments later sandy hurricanesandy \n", - "\n", - "\n", - "What the fuck?? RT @milesmaker: A wide-eyed seal appears in Manhattan #Sandy http://t.co/Qk63GAxL\n", - "\n", - "--------------------------------------------------------\n", - "fuck \n", + "another picture statue liberty taken couple moments later sandy hurricane sandy \n", "\n", "\n", "Garret Leo asked me where this picture was taken than asked if there was a hurricane on the east coast lmfao http://t.co/ZpDYpcTP\n", "\n", "--------------------------------------------------------\n", - "garret leo asked picture taken asked hurricane east coast lmfao \n", - "\n", - "\n", - "Haha after the #sandy http://t.co/ROo6piNY\n", - "\n", - "--------------------------------------------------------\n", - "haha sandy \n", + "garret leo asked picture taken asked hurricane east coast \n", "\n", "\n", "OMG this is hurricane #sandy approaching NY :o This don't look good! http://t.co/3HXzOglO\n", "\n", "--------------------------------------------------------\n", - "omg hurricane sandy approaching ny look good \n", + "hurricane sandy approaching new york look good \n", "\n", "\n", "This is what really happened during Hurricane #Sandy http://t.co/qhsBumCl\n", @@ -13918,7 +12672,7 @@ "Thank you to all our troops. This is a picture of 3 soldiers at Arlington Cemetery during the hurricane this weekend http://t.co/NCbbb8mG\n", "\n", "--------------------------------------------------------\n", - "thank troops picture 3 soldiers arlington cemetery hurricane weekend \n", + "thank troops picture soldiers arlington cemetery hurricane weekend \n", "\n", "\n", "This picture just made me cry for ALL the victims of sandy. http://t.co/qXTkFksO\n", @@ -13927,12 +12681,6 @@ "picture made cry victims sandy \n", "\n", "\n", - "This Is For #Sandy http://t.co/bbG7zvXN\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "🗽@WhoopiGoldberg is the storm definitely over?! xx #Sandy http://t.co/G84C28Z8\n", "\n", "--------------------------------------------------------\n", @@ -13966,19 +12714,19 @@ "Shut the Front Door!! #Sandy #NYC http://t.co/yFAT6FHV\n", "\n", "--------------------------------------------------------\n", - "shut front sandy nyc \n", + "shut front sandy new york city \n", "\n", "\n", "See, I was right! Ya gotta watch out for these freakin things everywhere! @MindBlowing #Shark on the road in NJ #Sandy http://t.co/OyfO5YKC\n", "\n", "--------------------------------------------------------\n", - "see right gotta watch freakin things everywhere shark road nj sandy \n", + "see right gotta watch freakin things everywhere shark road new jersey sandy \n", "\n", "\n", "“@YourAnonNews: The Statue of Liberty right now - http://t.co/oMRVvRr5 | #sandy” I was just there less the 10 hours ago😳\n", "\n", "--------------------------------------------------------\n", - "less 10 hours ago \n", + "less the0 hours ago \n", "\n", "\n", "Sharks in the neighborhoods in New York #Sandy thoughts and prayers out to all affected by #Sandy http://t.co/q6NoEi4q\n", @@ -14014,7 +12762,7 @@ "AMAZING PHOTO OF THE GUARDS AT TOMB OF THE UNKNOWN DURING #SANDY. #911BUFF http://t.co/m0WXxp0s\n", "\n", "--------------------------------------------------------\n", - "amazing photo guards tomb unknown sandy 911buff \n", + "amazing photo guards tomb unknown sandy \n", "\n", "\n", "View of New York before the Hurricane hit! Amazing. Sad but Beuatiful Nature is Stunning..... http://t.co/YhM6E19j\n", @@ -14026,13 +12774,13 @@ "OMG at this pic of soldiers currently at the Tomb of the Unknowns in DC. #Sandy http://t.co/2jYAcWx2\n", "\n", "--------------------------------------------------------\n", - "omg pic soldiers currently tomb unknowns dc sandy \n", + "pic soldiers currently tomb unknowns dc sandy \n", "\n", "\n", "Wow, good thing she just got an update. RT @YourAnonNews The @StatueLibrtyNPS right now - http://t.co/bX07LLFC | #sandy\n", "\n", "--------------------------------------------------------\n", - "wow good thing got update \n", + "good thing got update \n", "\n", "\n", "This is an amazing shot of New York today with the Frankenstorm bearing down. .#Hurricane #Sandy #tcot #twcot #Amazing http://t.co/gC2Siz8a\n", @@ -14044,13 +12792,7 @@ "Cares more 4 #military than Obama! @KatyinIndy: Tomb of the Unknown #Soldier. Standing guard in spite of #Sandy http://t.co/pcD9lwS0 #Thanx\n", "\n", "--------------------------------------------------------\n", - "cares 4 military obama tomb unknown soldier standing guard spite sandy thanx \n", - "\n", - "\n", - "Oh my... ☹ \"@damnitstrue: This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/UWyyojv5\"\n", - "\n", - "--------------------------------------------------------\n", - "oh \n", + "cares military obama \n", "\n", "\n", "This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/JIMx1Smq\n", @@ -14077,12 +12819,6 @@ "always felt big apple powerful indestructible sandy frightening \n", "\n", "\n", - "This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/AyNOgadO”\"\n", - "\n", - "--------------------------------------------------------\n", - "photo sandy looks straight day tomorrow \n", - "\n", - "\n", "Great pic of the the storm #sandy http://t.co/85c77zrp\n", "\n", "--------------------------------------------------------\n", @@ -14092,13 +12828,13 @@ "“@bernardx: @onlysarahshahi #Sandy have you seen this pic. Really moved me http://t.co/jtRG5WDZ”oh wow. That's impactful\n", "\n", "--------------------------------------------------------\n", - "oh wow impactful \n", + "impactful \n", "\n", "\n", "Soldiers of the 3rd Inf Reg. continue to stand guard at the Tomb of the Unknown Soldier. #HONOR #Sandy http://t.co/a60EPYeX\n", "\n", "--------------------------------------------------------\n", - "soldiers 3rd inf reg continue stand guard tomb unknown soldier honor sandy \n", + "soldiers inf reg continue stand guard tomb unknown soldier honor sandy \n", "\n", "\n", "Even in a hurricane, the @USArmy's Old Guard stands outside the Tomb of the Unknowns. \"Known but to God\" http://t.co/IIeABfOh\n", @@ -14137,12 +12873,6 @@ "sandy think end world \n", "\n", "\n", - "the hurricane is real #Sandy http://t.co/xacTWXOn\n", - "\n", - "--------------------------------------------------------\n", - "hurricane real sandy \n", - "\n", - "\n", "New York RIGHT NOW! \\nLike seriously folks. Check the source first. via @bilalhouri #Sandy 's #illegitimateChildren http://t.co/oSdSqBgD\n", "\n", "--------------------------------------------------------\n", @@ -14170,13 +12900,13 @@ "If you haven't already seen that amazing pic of #NYC with #Sandy coming look now http://t.co/jEaP5n9e\n", "\n", "--------------------------------------------------------\n", - "already seen amazing pic nyc sandy coming look \n", + "already seen amazing pic new york city sandy coming look \n", "\n", "\n", "Amazing shot of Hurricane #Sandy approaching NY City\\nHow can nature be so scary powerful & beautiful? http://t.co/xgP3aZwn\n", "\n", "--------------------------------------------------------\n", - "amazing shot hurricane sandy approaching ny city nature scary powerful beautiful \n", + "amazing shot hurricane sandy approaching new york city nature scary powerful beautiful \n", "\n", "\n", "The view from my window. Starting to think this is serious. #Sandy http://t.co/968hOAKB\n", @@ -14194,7 +12924,7 @@ "“@inji_iconic: SHARK ON THE HIGHWAY #Sandy http://t.co/pLyDUpsG” id fucking piss myself omg\n", "\n", "--------------------------------------------------------\n", - "id fucking piss omg \n", + "id fucking piss \n", "\n", "\n", "Shocking picture of #Sandy hitting New York. #PrayForNY http://t.co/sJzn17Z9\n", @@ -14254,19 +12984,19 @@ "This is a photo posted on FB of #NYC #Sandy Sending Prayers. #unitedwestand http://t.co/Kj2bxj4l\n", "\n", "--------------------------------------------------------\n", - "photo posted fb nyc sandy sending prayers unitedwestand \n", + "photo posted fb new york city sandy sending prayers unitedwestand \n", "\n", "\n", "Omg!! Hope People Are Safe! Shit Reminds Me Of Hurricane Katrina #NewOrleansVictim #Prayers For The Whole East Coast http://t.co/aa4UvR7o\n", "\n", "--------------------------------------------------------\n", - "omg hope people safe shit reminds hurricane katrina neworleansvictim prayers whole east coast \n", + "hope people safe shit reminds hurricane katrina neworleansvictim prayers whole east coast \n", "\n", "\n", "Since April 6, 1848, Sentinels have guarded The Tomb of Unknowns every min of everyday, #Sandy will be no different. http://t.co/hqwCQBKW\n", "\n", "--------------------------------------------------------\n", - "since april 6 1848 sentinels guarded tomb unknowns every everyday sandy different \n", + "since april8 sentinels guarded tomb unknowns every everyday sandy different \n", "\n", "\n", "This picture was actually taken in September RT @Lili_Tufel: Here's a REAL picture. http://t.co/tOpHNJF0 #Sandy\n", @@ -14284,7 +13014,7 @@ "All theses fake photos piss me off. This is a beautiful natural photo taken today as #sandy takes hold of NYC. http://t.co/I2CLRfCf\n", "\n", "--------------------------------------------------------\n", - "theses fake photos piss beautiful natural photo taken today sandy takes hold nyc \n", + "theses fake photos piss beautiful natural photo taken today sandy takes hold new york city \n", "\n", "\n", "It's mad thinking this image is real #sandy http://t.co/4p5xHtsV\n", @@ -14308,7 +13038,7 @@ "Thanks #sandy 4 making USA recall time's come to face globo warming they are at most guilty of. http://t.co/Lq79Qcjr\n", "\n", "--------------------------------------------------------\n", - "thanks sandy 4 making usa recall time come face globo warming guilty \n", + "thanks sandy making usa recall time come face globo warming guilty \n", "\n", "\n", "I'm afraid of sharks #Sandy http://t.co/vPYuElMQ\n", @@ -14320,7 +13050,7 @@ "Since 1948 the @USArmy 3rd Inf Div Old Guard has stood guard over the tomb of the unknowns 24/7 #Sandy will be no diff http://t.co/fTbTxzEa\n", "\n", "--------------------------------------------------------\n", - "since 1948 3rd inf div old guard stood guard tomb unknowns 24 7 sandy diff \n", + "since948 inf div old guard stood guard tomb unknowns4 sandy diff \n", "\n", "\n", "@clawler82 @dublinbairn #neverforget in tribute to the victims of #sandy http://t.co/nfJO2b6v\n", @@ -14332,7 +13062,7 @@ "Haha- the worst of England's hurricane http://t.co/zf9aq9P1\n", "\n", "--------------------------------------------------------\n", - "haha worst england hurricane \n", + "worst england hurricane \n", "\n", "\n", "After effects of #sandy.. @masalajokes @Funny_Truth @ComedyPics http://t.co/OcWBlUr2\n", @@ -14344,7 +13074,7 @@ "Im dying! lol “@Ben_Rosenthal: Live picture from Statue of Liberty webcam showing full force of #HurricaneSandy #Sandy http://t.co/xJI5cTBb”\n", "\n", "--------------------------------------------------------\n", - "im dying lol \n", + "dying \n", "\n", "\n", "Hurricane #Sandy has hit the UK! Look what it did to my back garden http://t.co/1gqX0Har\n", @@ -14353,12 +13083,6 @@ "hurricane sandy hit uk look back garden \n", "\n", "\n", - "Haha!!!!“@Ben_Rosenthal: Live picture from Statue of Liberty webcam showing full force of #HurricaneSandy #Sandy http://t.co/9EIY4ZIt”\n", - "\n", - "--------------------------------------------------------\n", - "haha \n", - "\n", - "\n", "Live picture of Statue of Liberty by #sandy follow now @JewishVideos http://t.co/Dhqcx16g\n", "\n", "--------------------------------------------------------\n", @@ -14380,19 +13104,19 @@ "Lolll ツ \"@mariejoelle: A friend sent me this. Made me smile for a second. #Sandy http://t.co/lKDXBJoi\"\n", "\n", "--------------------------------------------------------\n", - "lolll ツ \n", + "ツ \n", "\n", "\n", "The beginning of #2012 #Sandy http://t.co/ji8p5Eci\n", "\n", "--------------------------------------------------------\n", - "beginning 2012 sandy \n", + "beginning of012 sandy \n", "\n", "\n", "Is it just me or does it feel like if the polar ice caps melt a bit more NYC could become the next Atlantis? #Sandy http://t.co/d9oRWRC1\n", "\n", "--------------------------------------------------------\n", - "feel like polar ice caps melt bit nyc could become next atlantis sandy \n", + "feel like polar ice caps melt bit new york city could become next atlantis sandy \n", "\n", "\n", "I just snapped this picture in lower Manhattan. #sandy http://t.co/dtL8h9b3\n", @@ -14404,7 +13128,7 @@ "60 killed in Columbia and 13 in the US. #sandy it's scary. http://t.co/HuucUXGF\n", "\n", "--------------------------------------------------------\n", - "60 killed columbia 13 us sandy scary \n", + "0 killed columbia and3 us sandy scary \n", "\n", "\n", "This picture is unreal. It was taken earlier today as #Sandy was getting close to the #BigApple. http://t.co/GviCMZIc\n", @@ -14422,13 +13146,13 @@ "God bless these Soldiers. Since 1937 The Tomb Guards have never left their posts, #Sandy was no exception. Pray 4 them. http://t.co/FHpd0rJk\n", "\n", "--------------------------------------------------------\n", - "god bless soldiers since 1937 tomb guards never left posts sandy exception pray 4 \n", + "god bless soldiers since937 tomb guards never left posts sandy exception pray \n", "\n", "\n", "Wow always thought this was one of the coolest things about our military. Still standing guard during a hurricane http://t.co/pfiXgYwt\n", "\n", "--------------------------------------------------------\n", - "wow always thought one coolest things military still standing guard hurricane \n", + "always thought one coolest things military still standing guard hurricane \n", "\n", "\n", "That's one hell of a picture #Sandy http://t.co/nqzGUzgb\n", @@ -14449,18 +13173,6 @@ "sick fake superstorm sandy pictures one real deal though \n", "\n", "\n", - "@Adamfclayton: @WhoopiGoldberg fake ny #sandy pic - the Statue of Liberty taking cover! http://t.co/eEWoYZFC\n", - "\n", - "--------------------------------------------------------\n", - "fake ny sandy pic statue liberty taking cover \n", - "\n", - "\n", - "Wow. Is this real? RT @joshbtucker: This photo of #Sandy looks straight from \"The Day After Tomorrow\": http://t.co/RRxFYabi\n", - "\n", - "--------------------------------------------------------\n", - "wow real \n", - "\n", - "\n", "Tomb of the Unknown Soldier. Standing guard in spite of #Sandy http://t.co/Bvl8mIpz #TroopThanks\n", "\n", "--------------------------------------------------------\n", @@ -14494,7 +13206,7 @@ "Here's the latest amazing and totally not-faked photo of #Sandy approaching NYC: http://t.co/Fn101LiC\n", "\n", "--------------------------------------------------------\n", - "latest amazing totally faked photo sandy approaching nyc \n", + "latest amazing totally faked photo sandy approaching new york city \n", "\n", "\n", "Amazing #picture of waves crashing into Statue of Liberty, #Sandy http://t.co/TwXAuH0F\n", @@ -14509,12 +13221,6 @@ "soldiers standing guard tomb unknown solider dc sandy hits guard country \n", "\n", "\n", - "AMAZING PHOTO: Even a hurricane won't keep the honor guard from the Tomb of the Unknown Soldier this morning. #Sandy http://t.co/b015BHhw\n", - "\n", - "--------------------------------------------------------\n", - "amazing photo even hurricane keep honor guard tomb unknown soldier morning sandy \n", - "\n", - "\n", "So everyone knows, this incredible picture of Hurricane #Sandy doing the rounds is apparently fake. (via @bondnickbond) http://t.co/bl2PnwFZ\n", "\n", "--------------------------------------------------------\n", @@ -14527,12 +13233,6 @@ "statue liberty right sandy \n", "\n", "\n", - "“@quiquegaldeano: All the people in NY are hiding from #Sandy !! Including her... http://t.co/aRI963fH // jaaaaa\n", - "\n", - "--------------------------------------------------------\n", - "people ny hiding sandy including jaaaaa \n", - "\n", - "\n", "Insane picture of New York City and the Statue of Liberty taken this evening. RT to share it. #HurricaneSandy #Sandy http://t.co/6K3tM1Ap\n", "\n", "--------------------------------------------------------\n", @@ -14542,31 +13242,31 @@ "We were at this station few month ago .. #weird #Sandy #TimesSquare #NewYork @JuneWilliams_ @nuriaparadell http://t.co/VsIkalOi\n", "\n", "--------------------------------------------------------\n", - "station month ago weird sandy timessquare newyork \n", + "station month ago weird sandy timessquare new york \n", "\n", "\n", "Wow amazing photo of Sandy at the hight of the storm. This is unedited http://t.co/e52VEUdG\n", "\n", "--------------------------------------------------------\n", - "wow amazing photo sandy hight storm unedited \n", + "amazing photo sandy hight storm unedited \n", "\n", "\n", "If this is real then its the craziest thing I've ever seen from a Hurricane! A shark in streets of NJ. http://t.co/q02g6xc9\n", "\n", "--------------------------------------------------------\n", - "real craziest thing ever seen hurricane shark streets nj \n", + "real craziest thing ever seen hurricane shark streets new jersey \n", "\n", "\n", "Is this real -omg hope everyones ok RT @J7mster Amazing picture of hurricane #Sandy decending in New York http://t.co/AgPmp04z\n", "\n", "--------------------------------------------------------\n", - "real omg hope everyones ok \n", + "real hope everyones ok \n", "\n", "\n", "Soldiers from Army 3rd Reg guarding The Tomb of the Unknowns at Arlington National Cemetery as #Sandy starts to rage http://t.co/1sMa9aSR\n", "\n", "--------------------------------------------------------\n", - "soldiers army 3rd reg guarding tomb unknowns arlington national cemetery sandy starts rage \n", + "soldiers army reg guarding tomb unknowns arlington national cemetery sandy starts rage \n", "\n", "\n", "Look, who's scared of #Sandy http://t.co/qFeYFufz\n", @@ -14584,7 +13284,7 @@ "Even The Statue of Liberty isn't scare of #sandy #NewYorkers #tough #BLISandyUpdate http://t.co/Mua4eoaB\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scare sandy newyorkers tough blisandyupdate \n", + "even statue liberty scare sandy new yorkers tough blisandyupdate \n", "\n", "\n", "Despite #sandy soldiers continue to guard Tomb of Unknowns at Arlington.Very grateful for service of all our military http://t.co/zivXayE2\n", @@ -14596,7 +13296,7 @@ "Live picture from Statue of Liberty webcam showing full force of #HurricaneSandy #Sandy http://t.co/iGxeSZ0U\n", "\n", "--------------------------------------------------------\n", - "live picture statue liberty webcam showing full force hurricanesandy sandy \n", + "live picture statue liberty webcam showing full force hurricane sandy sandy \n", "\n", "\n", "Despite Sandy, Soldiers Stand Guard At Tomb Of The Unknown Soldier http://t.co/W278hNpH\n", @@ -14605,12 +13305,6 @@ "despite sandy soldiers stand guard tomb unknown soldier \n", "\n", "\n", - "Tomb of the Unknown Soldier during Hurricane #Sandy: http://t.co/O6RyY46B\n", - "\n", - "--------------------------------------------------------\n", - "tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "Despite a Hurricane raging these soldiers still stand guard at the tomb of the unknown soldier in America #respect http://t.co/cexeASlL\n", "\n", "--------------------------------------------------------\n", @@ -14692,7 +13386,7 @@ "Respect to 3rd Inf Reg 4 guarding Tomb of Unknown Soldier, despite worsening#Sandy. Been guarded continuously since '48 http://t.co/2NdpVpth\n", "\n", "--------------------------------------------------------\n", - "respect 3rd inf reg 4 guarding tomb unknown soldier despite worsening sandy guarded continuously since 48 \n", + "respect inf reg guarding tomb unknown soldier despite worseningsandy guarded continuously since 8 \n", "\n", "\n", "Now THIS is dedication. These guys are watching over the Tomb of the Unknown Soldier during Hurricane #Sandy. Damn. http://t.co/KboT2qPK\n", @@ -14719,12 +13413,6 @@ "hurricane keep soldiers guarding tomb unknown soldier share photo honor sot \n", "\n", "\n", - "@OMGFacts: Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/ZUUlyQXI @turtleyaya\n", - "\n", - "--------------------------------------------------------\n", - "amazing soldiers standing tomb unknown soldier hurricane sandy \n", - "\n", - "\n", "soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/LAfv8yeS\n", "\n", "--------------------------------------------------------\n", @@ -14734,7 +13422,7 @@ "Members of the 3rd Infantry guarding the tomb of the unknown soldier during hurricane sandy. #Dedication. http://t.co/heSeNfoo\n", "\n", "--------------------------------------------------------\n", - "members 3rd infantry guarding tomb unknown soldier hurricane sandy dedication \n", + "members infantry guarding tomb unknown soldier hurricane sandy dedication \n", "\n", "\n", "The Tomb of the Unknown Soldier after the hurricane evacuation. So inspiring http://t.co/NDKRI7Ko\n", @@ -14755,18 +13443,6 @@ "rain sleet snow hurricane tomb unknown soldier guarded salute \n", "\n", "\n", - "“@OMGFacts: Amazing soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/c4nmHOOb” amazing!\n", - "\n", - "--------------------------------------------------------\n", - "amazing \n", - "\n", - "\n", - "@TheArabella: Even a hurricane cannot stop the guard at the Tomb Of The Unknown Soldier! #inspiring http://t.co/8XYnoShv OMW HAGEN :(\n", - "\n", - "--------------------------------------------------------\n", - "even hurricane cannot stop guard tomb unknown soldier inspiring omw hagen \n", - "\n", - "\n", "“Tomb of the unknown soldier as the hurricane comes in. Makes me proud to be an American. #truecommitment http://t.co/5k8nuar5”\n", "\n", "--------------------------------------------------------\n", @@ -14830,7 +13506,7 @@ "Holy. Wow.. Soldiers at the Tomb of the Unknowns in DC during Hurricane Sandy. #GodBlessAmerica http://t.co/i0QAOAe2\n", "\n", "--------------------------------------------------------\n", - "holy wow soldiers tomb unknowns dc hurricane sandy godblessamerica \n", + "holy soldiers tomb unknowns dc hurricane sandy godblessamerica \n", "\n", "\n", "They never leave... Tomb of the Unknown Soldier during #Sandy. God bless them all. ❤🇺🇸 http://t.co/tPGl56Gv\n", @@ -14902,13 +13578,7 @@ "These Men Didnt STAND DOWN\\nAs Told 2 From Guarding Tomb of the Unknown Soldier during Hurricane Isabel; nor for Sandy~\\nhttp://t.co/fdWX4B0F\n", "\n", "--------------------------------------------------------\n", - "didnt stand told 2 guarding tomb unknown soldier hurricane isabel sandy \n", - "\n", - "\n", - "@rickmercer: soldiers standing at the Tomb of the Unknown Soldier during hurricane Sandy. http://t.co/EDSS28vY a true example of honour.\n", - "\n", - "--------------------------------------------------------\n", - "soldiers standing tomb unknown soldier hurricane sandy true example honour \n", + "didnt stand told guarding tomb unknown soldier hurricane isabel sandy \n", "\n", "\n", "Not even hurricane sandy could keep them from protecting the tomb of the unknown soldier! Good job guys! http://t.co/u3MxHHX0\n", @@ -14920,7 +13590,7 @@ "Soldiers of the @USarmy 3rd Infantry Regiment stand guard at the Tomb of the Unknown Soldier during Hurricane Sandy http://t.co/cstC1x6L\n", "\n", "--------------------------------------------------------\n", - "soldiers 3rd infantry regiment stand guard tomb unknown soldier hurricane sandy \n", + "soldiers infantry regiment stand guard tomb unknown soldier hurricane sandy \n", "\n", "\n", "Even as Hurricane Sandy makes landfall, these men are still standing guard at the tomb of The Unknown Soldier♥ #Respect http://t.co/PvgB2550\n", @@ -15049,12 +13719,6 @@ "tomb unknown soldier guarded hurricane sandy cantstopus merica \n", "\n", "\n", - "These Men Didnt STAND DOWN\\nAs Told 2 From Guarding Tomb of the Unknown Soldier during Hurricane Isabel; nor for Sandy~>\\nhttp://t.co/fdWX4B0F\n", - "\n", - "--------------------------------------------------------\n", - "didnt stand told 2 guarding tomb unknown soldier hurricane isabel sandy greater \n", - "\n", - "\n", "Obama told the guards at the Tomb of the Unknown Soldier that they could leave because of the hurricane. They refused. http://t.co/XW07wb6X\n", "\n", "--------------------------------------------------------\n", @@ -15070,7 +13734,7 @@ "WOW! The Tomb of the Unknown Soldier, guarded during Hurricane Sandy: http://t.co/2n9Ki3hZ - http://t.co/vBc5xd4X\n", "\n", "--------------------------------------------------------\n", - "wow tomb unknown soldier guarded hurricane sandy \n", + "tomb unknown soldier guarded hurricane sandy \n", "\n", "\n", "The Tomb of the Unknown Soldier remains guarded even in the path of Hurricane Sandy #humbled #proudtobeanamerican http://t.co/Ga7CaC3O\n", @@ -15094,13 +13758,13 @@ "Tomb of the Unknown Soldier being guarded during the hurricane in NY. The utmost respect. http://t.co/5TyrLcYj\n", "\n", "--------------------------------------------------------\n", - "tomb unknown soldier guarded hurricane ny utmost respect \n", + "tomb unknown soldier guarded hurricane new york utmost respect \n", "\n", "\n", "Praying for the soilders standing out in hurricane sandy in front of the tomb of the unknown soilder <3 http://t.co/Nx5sOsre\n", "\n", "--------------------------------------------------------\n", - "praying soilders standing hurricane sandy front tomb unknown soilder less 3 \n", + "praying soilders standing hurricane sandy front tomb unknown soilder \n", "\n", "\n", "So much respect for these guys still guarding the unknown soldier in hurricane sandy! http://t.co/W8lhmf5F\n", @@ -15127,16 +13791,10 @@ "remember time hurricane uk \n", "\n", "\n", - "remember that time we had a hurricane in the UK? http://t.co/U9T7WvSH\n", - "\n", - "--------------------------------------------------------\n", - "remember time hurricane uk \n", - "\n", - "\n", "Survived a hurricane black outs for three days but had the most amazing time in NYC with @djshemp http://t.co/iO9ozB36\n", "\n", "--------------------------------------------------------\n", - "survived hurricane black outs three days amazing time nyc \n", + "survived hurricane black outs three days amazing time new york city \n", "\n", "\n", "Remember that hurricane we had in the UK? http://t.co/KPrWl0vp\n", @@ -15145,36 +13803,18 @@ "remember hurricane uk \n", "\n", "\n", - "@Beck1Dx: remember that time we had a hurricane in the uk http://t.co/OfRSWiCn\n", - "\n", - "--------------------------------------------------------\n", - "remember time hurricane uk \n", - "\n", - "\n", "Remember that time England had a hurricane http://t.co/i1VOXEyr\n", "\n", "--------------------------------------------------------\n", "remember time england hurricane \n", "\n", "\n", - "“@carlleckstein: Remember when there was a hurricane in the UK http://t.co/q2I6VAh5😂😂😂😂😂\n", - "\n", - "--------------------------------------------------------\n", - "remember hurricane uk \n", - "\n", - "\n", "Remember that hurricane that we had in England http://t.co/VZJCt8px\n", "\n", "--------------------------------------------------------\n", "remember hurricane england \n", "\n", "\n", - "remember when we had a hurricane in the uk http://t.co/9e1RI9KB\n", - "\n", - "--------------------------------------------------------\n", - "remember hurricane uk \n", - "\n", - "\n", "remember that time the UK had a hurricane http://t.co/dNNiExhD\n", "\n", "--------------------------------------------------------\n", @@ -15193,28 +13833,16 @@ "flipando huracán sandy lleva tiburones calles new jersey si tiburones calle \n", "\n", "\n", - " Estoy flipando, el huracán Sandy lleva tiburones a las calles de New Jersey. Si sí TIBURONES por la calle!!! http://t.co/7d469Qpt \n", - "\n", - "--------------------------------------------------------\n", - "flipando huracán sandy lleva tiburones calles new jersey si tiburones calle \n", - "\n", - "\n", "Alucino con esta foto. El huracán Sandy ha arrastrado tiburones a las calles de ciudades de Maryland y New Jersey http://t.co/poFhVz3p\n", "\n", "--------------------------------------------------------\n", - "alucino foto huracán sandy arrastrado tiburones calles ciudades maryland new jersey \n", - "\n", - "\n", - "@TuiterHits: IMPRESIONANTE: Las inundaciones del huracán Sandy ha arrastrado tiburones a las calles de New Jersey ! http://t.co/XnH9FQlY\n", - "\n", - "--------------------------------------------------------\n", - "impresionante inundaciones huracán sandy arrastrado tiburones calles new jersey \n", + "alucino foto huracán sandyarrastrado tiburones calles ciudades maryland new jersey \n", "\n", "\n", "IMPRESIONANTE: Las inundaciones del huracán Sandy ha arrastrado tiburones a las calles de New Jersey ! http://t.co/YHsuyVgK\n", "\n", "--------------------------------------------------------\n", - "impresionante inundaciones huracán sandy arrastrado tiburones calles new jersey \n", + "impresionante inundaciones huracán sandyarrastrado tiburones calles new jersey \n", "\n", "\n", "Huracán Sandy arrastra tiburones hasta las calles de New Jersey. Aquí otra foto!! EEUU http://t.co/V48x0R01\n", @@ -15226,9 +13854,15 @@ "IMPACTANTE: Photoshop Huracán Sandy arrastra 2 TIBURONES hasta el metro de New Jersey. http://t.co/ZG8ia0Jp\n", "\n", "--------------------------------------------------------\n", - "impactante photoshop huracán sandy arrastra 2 tiburones metro new jersey \n", - "\n", + "impactante photoshop huracán sandy arrastra tiburones metro new jersey \n", "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "Así esta el Huracán Sandy en Nueva York... QUE DIOS JEHOVA LOS PROTEJA. http://t.co/r0khbvvz\n", "\n", "--------------------------------------------------------\n", @@ -15238,7 +13872,7 @@ "Lo que realmente sucedio en NY con el huracan Sandy jajajaja http://t.co/Sp1caUUD\n", "\n", "--------------------------------------------------------\n", - "realmente sucedio ny huracan sandy jajajaja \n", + "realmente sucedio new york huracan sandy jajajaja \n", "\n", "\n", "Lo que dejo el huracan sandy en las calles de nueva york http://t.co/M7N67GHw\n", @@ -15250,7 +13884,7 @@ "Así está New York con el huracán sandy. ¡Parece de película! Ö_______Ö http://t.co/vsarWIpy\n", "\n", "--------------------------------------------------------\n", - "así new york huracán sandy parece película ö ö \n", + "así new york huracán sandy parece película öö \n", "\n", "\n", "JAJAJAJAJA LO QUE HIZO EL HURACÁN SANDY EN NUEVA YORK http://t.co/5aAW8RAd\n", @@ -15262,7 +13896,7 @@ "Fotografías falsas de Sandy en Nueva York (y 2). Cuidadín que hay gente con mucho tiempo libre... http://t.co/2eXEGhTa\n", "\n", "--------------------------------------------------------\n", - "fotografías falsas sandy nueva york 2 cuidadín gente tiempo libre \n", + "fotografías falsas sandy nueva york cuidadín gente tiempo libre \n", "\n", "\n", "Por fin una foto real de lo que esta pasando en Nueva York con el huracán Sandy. http://t.co/xVEHfl2r\n", @@ -15286,7 +13920,7 @@ "Lol! \"Picture shows Hurricane Sandy approaches the northeast. (Might be fake)\" http://t.co/cFe76hMl\n", "\n", "--------------------------------------------------------\n", - "lol picture shows hurricane sandy approaches northeast might fake \n", + "picture shows hurricane sandy approaches northeast might fake \n", "\n", "\n", "@Irene_montala_ sigo sin estar tranquila. Mira las fotos de Sandy. Un tiburon el la carreteta \\nVuelve! http://t.co/IHDujTG5\n", @@ -15313,12 +13947,6 @@ "sandy effect \n", "\n", "\n", - "Hurricane sandy http://t.co/fYqIqZbA\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "Sandy 在以每小时近100英里风速袭击美东的时候,镇守在阿灵顿无名战士公墓的军人拒绝离岗。这里葬着美国在一战,二战,韩战,和越战中所有没有名字的阵亡将士。这些守墓军人从1948年镇守到今天,从未因为任何原因离岗过一天。 http://t.co/wJNyGc6v\n", "\n", "--------------------------------------------------------\n", @@ -15334,7 +13962,7 @@ "Subhanallah, Badai Sandy yg melanda Amerika, bayangkan klw badai tsb melanda Indonesia,pasti akan. Banyak yg jd korban. http://t.co/N8z0isd6\n", "\n", "--------------------------------------------------------\n", - "subhanallah badai sandy yg melanda amerika bayangkan klw badai tsb melanda indonesia pasti akan banyak yg jd korban \n", + "subhanallah badai sandy yg melanda amerika bayangkan klw badai tsb melanda indonesia yg jd korban \n", "\n", "\n", "The real reason behind sandy http://t.co/x8znenG9\n", @@ -15349,12 +13977,6 @@ "run west hollywood drink hurricane sandy heading way \n", "\n", "\n", - "Hurricane Sandy http://t.co/LRAGCbMJ”\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "Fotografías falsas de Sandy en Nueva York http://t.co/2gOnFowY\n", "\n", "--------------------------------------------------------\n", @@ -15373,28 +13995,16 @@ "sandy meets new york \n", "\n", "\n", - "Sandy effect #LOL http://t.co/qqXEyqrN\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect lol \n", - "\n", - "\n", "Una imagen impresionante...La llegada del huracán Sandy. http://t.co/VZYyjDXf\n", "\n", "--------------------------------------------------------\n", "imagen impresionante llegada huracán sandy \n", "\n", "\n", - "The Sandy Effect..! http://t.co/moBsStFL\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "Sandy,NY,wooooow. Ö http://t.co/5A4dJ7J8\n", "\n", "--------------------------------------------------------\n", - "sandy ny wooooow ö \n", + "sandy new york wooooow ö \n", "\n", "\n", "Is ze al weg ? Sandy ?! http://t.co/SmdTMADG\n", @@ -15406,19 +14016,13 @@ "Sharks was in the street in Atlantic City , NJ . This was caused by hurricane sandy . http://t.co/KnQtME05\n", "\n", "--------------------------------------------------------\n", - "sharks street atlantic city nj caused hurricane sandy \n", + "sharks street atlantic city new jersey caused hurricane sandy \n", "\n", "\n", "Hurricane sandy sharks r in the street in NJ!! #crazy http://t.co/4gWHsByG\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy sharks r street nj crazy \n", - "\n", - "\n", - "New York after Sandy http://t.co/B2XCzGVw\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", + "hurricane sandy sharks street new jersey crazy \n", "\n", "\n", "@bigclam69 Look who refused to leave their posts during Sandy....#Duty #Honor http://t.co/husgRuDH\n", @@ -15433,28 +14037,16 @@ "true hero tropical storm sandy \n", "\n", "\n", - "The Sandy Effect..! :-) Hahaha http://t.co/ZigQKD7g\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect hahaha \n", - "\n", - "\n", "Hay muchas fotos retocadas del huracan Sandy. Alfin os puedo mostrar una verdadera. http://t.co/uelhwvkZ\n", "\n", "--------------------------------------------------------\n", "muchas fotos retocadas huracan sandy alfin puedo mostrar verdadera \n", "\n", "\n", - "Yo Sandy! Lmao😂 http://t.co/5e0SRcyZ\n", - "\n", - "--------------------------------------------------------\n", - "sandy lmao \n", - "\n", - "\n", "Ouragan Sandy photo Apocalyptique quand même OUFFFF http://t.co/zfwuRuOx\n", "\n", "--------------------------------------------------------\n", - "ouragan sandy photo apocalyptique quand même ouffff \n", + "ouragan sandy photo apocalyptique quand ouffff \n", "\n", "\n", "Has Sandy gone yet??? http://t.co/Ohj4ju76\n", @@ -15472,13 +14064,7 @@ "I wanna take the times square diving tour! Oh Sandy... http://t.co/AqrsvRvt\n", "\n", "--------------------------------------------------------\n", - "wanna take times square diving tour oh sandy \n", - "\n", - "\n", - "EL HURACAN SANDY, SOBRE NY...!! http://t.co/rKIpUTZZ\n", - "\n", - "--------------------------------------------------------\n", - "huracan sandy ny \n", + "wanna take times square diving tour sandy \n", "\n", "\n", "Is Sandy gone? Are you sure? http://t.co/M1284CYl”\n", @@ -15493,34 +14079,16 @@ "sorry resist sending tweet mind freeky pic hurricane sandy \n", "\n", "\n", - "Yo Sandy.. http://t.co/tXOb7xy9\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "SANDY VAMONOS A OTRO SITIO A SOPLAR http://t.co/wGyPk1qh http://t.co/grYUqw5m\n", "\n", "--------------------------------------------------------\n", "sandy vamonos sitio soplar \n", "\n", "\n", - "@tomleykis Sandy? http://t.co/LOg7Kzfj\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Con esa fuerza llego Sandy a NY http://t.co/cgTY7rde\n", "\n", "--------------------------------------------------------\n", - "fuerza llego sandy ny \n", - "\n", - "\n", - "Is Sandy gone yet? http://t.co/uknblZWY\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet \n", + "fuerza llego sandy new york \n", "\n", "\n", "@chetemateo será por sandy?? Jajaja que tal estais?? Muchos besitos ;-) http://t.co/F6rA7yTq\n", @@ -15529,40 +14097,28 @@ "sandy jajaja tal estais besitos \n", "\n", "\n", - "Lo que fue sandy :( http://t.co/iYhhX1Mq\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Tio, tio el huracán sandy vuelve a Nueva York http://t.co/auA6vPEI\n", "\n", "--------------------------------------------------------\n", "tio tio huracán sandy vuelve nueva york \n", "\n", "\n", - "OMG Sandy :O http://t.co/16rQ0pwA\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy \n", - "\n", - "\n", "NYがハリケーン「サンディ」により大水没1万リツイート!実はガセでした:NY is retweeted 10 000 large submerged by Hurricane \"Sandy\"! It was actually Gase http://t.co/wFrHinHC\n", "\n", "--------------------------------------------------------\n", - "nyがハリケーン サンディ により大水没1万リツイート 実はガセでした ny retweeted 10 000 large submerged hurricane sandy actually gase \n", + "nyがハリケーン サンディ により大水没1万リツイート 実はガセでした new york retweeted000 large submerged hurricane sandy actually gase \n", "\n", "\n", "The Tomb of the Unknowns is guarded 24 hours a day, 365 days a year since 1937. Even Sandy couldnt stop them! US marine http://t.co/FZnDhL39\n", "\n", "--------------------------------------------------------\n", - "tomb unknowns guarded 24 hours day 365 days year since 1937 even sandy couldnt stop us marine \n", + "tomb unknowns guarded4 hours day days year since937 even sandy couldnt stop us marine \n", "\n", "\n", "Awhhhh he's saving his dog during Sandy ❤. Sweetest thing ever <33 http://t.co/32oYv7Lk\n", "\n", "--------------------------------------------------------\n", - "awhhhh saving dog sandy sweetest thing ever less 33 \n", + "awhhhh saving dog sandy sweetest thing ever3 \n", "\n", "\n", "¿Ya se fue esa tal Sandy? http://t.co/Km1zt3H0\n", @@ -15577,12 +14133,6 @@ "sandy let finish uh wait \n", "\n", "\n", - "Sandy. http://t.co/c7RrTNi0\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Is Sandy Gone!? @luis_lopez99 http://t.co/EC0ZLmhD\n", "\n", "--------------------------------------------------------\n", @@ -15592,13 +14142,7 @@ "Huracán Sandy NY http://t.co/YmgbS6gc\n", "\n", "--------------------------------------------------------\n", - "huracán sandy ny \n", - "\n", - "\n", - "Where is Sandy? http://t.co/zfdb8vcf\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "huracán sandy new york \n", "\n", "\n", "Increíble!! .. Imagen d un tiburón q por culpa d Sandy acabó por las calles... http://t.co/mYZOk1uC\n", @@ -15634,7 +14178,7 @@ "Sandy #nohurricane http://t.co/ViyETZ4G\n", "\n", "--------------------------------------------------------\n", - "sandy nohurricane \n", + "sandy nurricane \n", "\n", "\n", "@Romanomelena Passato Sandy? ✈🇺🇸 http://t.co/8JLBmt0U\n", @@ -15646,7 +14190,7 @@ "Sandy\\n#اعصار_ساندي \\n#ساندي http://t.co/L40j54Jq”\n", "\n", "--------------------------------------------------------\n", - "sandy اعصار ساندي ساندي \n", + "sandy اعصارساندي ساندي \n", "\n", "\n", "Is Sandy Gone!? (Get #MEME Reader on the Appstore) http://t.co/edlbV2xt\n", @@ -15676,13 +14220,13 @@ "Uragano Sandy: danni a rete mobile e via cavo http://t.co/bLPL7tSI http://t.co/1RjiCxsW\n", "\n", "--------------------------------------------------------\n", - "uragano sandy danni rete mobile via cavo \n", + "uragano sandy danni rete mobile ecavo \n", "\n", "\n", "Seguro q nadie ha visto la cara de Sandy ! http://t.co/fXkkk5hi\n", "\n", "--------------------------------------------------------\n", - "seguro q nadie visto cara sandy \n", + "seguro q nadievisto sandy \n", "\n", "\n", "Hurricane Sandy don't listen to the haters you're beautiful ok http://t.co/Zd8HpcVE\n", @@ -15709,12 +14253,6 @@ "reminds new york hurricane sandy \n", "\n", "\n", - "@gamac10: la foto falsa de Sandy en NY que sigue circulando. No se crean todo lo que ven/leen http://t.co/XptbmpA7\n", - "\n", - "--------------------------------------------------------\n", - "foto falsa sandy ny sigue circulando crean ven leen \n", - "\n", - "\n", "@mcmoynihan @Toure Or even the image as Sandy was approaching. #MSNBCBrainTrust http://t.co/JN5WGX8g\n", "\n", "--------------------------------------------------------\n", @@ -15724,7 +14262,7 @@ "Lbh dahsyat dari Badai Sandy ya bro..asalnya dari PD ya? @B_Hendratmo1: Badai di Indonesia tu ya korupsi yg menahun http://t.co/N8z0isd6\"\"\n", "\n", "--------------------------------------------------------\n", - "lbh dahsyat dari badai sandy bro asalnya dari pd badai di indonesia korupsi yg menahun \n", + "lbh dahsyat badai sandy asalnya pd \n", "\n", "\n", "Hurricane sandy! Showing her darker side. When will we stand up for earth! http://t.co/Z3utr612\n", @@ -15736,25 +14274,19 @@ "El H. Sandy llegando a NY sobre la estatua d la Libertad supera sus propias ficciones, sigan con las películas nomás! http://t.co/miaTa9oN\n", "\n", "--------------------------------------------------------\n", - "h sandy llegando ny estatua libertad supera propias ficciones sigan películas nomás \n", - "\n", - "\n", - "@azooz__2022: ماهذا ياعرب مذا حدث في تمثال الحريه يا الاهي @a_romney #إعصار_ساندي Hurricane Sandy #اعصار_ساندي http://t.co/hP7uAmb0\n", - "\n", - "--------------------------------------------------------\n", - "ماهذا ياعرب مذا حدث تمثال الحريه الاهي إعصار ساندي hurricane sandy اعصار ساندي \n", + "h sandy llegando new york estatua libertad supera propias ficciones sigan películas nomás \n", "\n", "\n", "Hurricane Sandy tearing up NY http://t.co/SembBPBr\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy tearing ny \n", + "hurricane sandy tearing new york \n", "\n", "\n", "Un #RT = à un soutien moral pour les sinistrés de l'ouragan Sandy http://t.co/qijUFdFQ\n", "\n", "--------------------------------------------------------\n", - "rt à soutien moral pour sinistrés l ouragan sandy \n", + "soutien moral sinistrés ouragan sandy \n", "\n", "\n", "Hurricane sandy's effect http://t.co/MF0noZSi\n", @@ -15784,7 +14316,7 @@ "Is Sandy Gone!? (Get #9GagReader at http://t.co/gQbZsxQI) yazik http://t.co/HSnv6W0g\n", "\n", "--------------------------------------------------------\n", - "sandy gone get 9gagreader yazik \n", + "sandy gone get yazik \n", "\n", "\n", "Federal employes who went to work during the storm \"Sandy\" http://t.co/4a0hHPUC\n", @@ -15832,7 +14364,7 @@ "Sandy ta peligroso.. jejeje http://t.co/ahsqwjZ6\"\n", "\n", "--------------------------------------------------------\n", - "sandy ta peligroso jejeje \n", + "sandy peligroso jejeje \n", "\n", "\n", "esta foto del huracan sandy de new york es increible http://t.co/k4UnXw3a\n", @@ -15871,16 +14403,10 @@ "look shark friend sent hurricane sandy new jersey \n", "\n", "\n", - "Sandy effect :D ---> http://t.co/9QdmGW0u\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "Hoy os están colando multitud de fotomontajes del huracán Sandy. Dais pena. Por fin una imagen 100% real de NY ahora: http://t.co/hBK70JAf\n", "\n", "--------------------------------------------------------\n", - "hoy colando multitud fotomontajes huracán sandy dais pena fin imagen 100 real ny ahora \n", + "hoy colando multitud fotomontajes huracán sandy dais pena fin imagen00 real new york ahora \n", "\n", "\n", "to sandy ! chill mAh nigga!😂 http://t.co/EWLLSA0B\n", @@ -15898,7 +14424,7 @@ "@saaaam_mccarthy lol tell nicole to hmu before she goes out , my family is bullshitting about sandy http://t.co/3X5NPd0g\n", "\n", "--------------------------------------------------------\n", - "lol tell nicole hmu goes family bullshitting sandy \n", + "tell nicole hmu goes family bullshitting sandy \n", "\n", "\n", "Buenos y lluviosos dias... Increíble!!..imagen d un tiburón q por culpa d Sandy acabó por las calles!! :O http://t.co/k9FW1oND\"\n", @@ -15913,12 +14439,6 @@ "sandy still missing \n", "\n", "\n", - "@CuriousKerian: Hurricane sandy is worse than we thought http://t.co/Veo3ifLN omg I'm dead. Too funny\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy worse thought omg dead funny \n", - "\n", - "\n", "Hurricane sandy wrecking New York http://t.co/sjNQAkYB\n", "\n", "--------------------------------------------------------\n", @@ -15946,25 +14466,7 @@ "New Jerseys highway after hurricane sandy! Wow I can't believe that! 😱😨 http://t.co/mRpfKqsG\n", "\n", "--------------------------------------------------------\n", - "new jerseys highway hurricane sandy wow believe \n", - "\n", - "\n", - "@EnnoWerr is sandy gone? http://t.co/AGT7HHVl\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", - "Yo Sandy http://t.co/z3FlyC6D\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "@NaturalStunna_: “@Im_An_Immigrant: Yo Sandy http://t.co/7NdfaMCY” DONEEE. ! Lmaoo\n", - "\n", - "--------------------------------------------------------\n", - "doneee lmaoo \n", + "new jerseys highway hurricane sandy believe \n", "\n", "\n", "To all those whose lives hav been messed up by Sandy, Be strong.♥ http://t.co/6zUqVZ4z\n", @@ -15982,13 +14484,7 @@ "If ur gonna make a fake hurricane sandy pic, do it properly http://t.co/tPo1miS8\n", "\n", "--------------------------------------------------------\n", - "ur gonna make fake hurricane sandy pic properly \n", - "\n", - "\n", - "Increíble!!..imagen d un tiburón q por culpa d Sandy acabó por las calles.. http://t.co/QD7IlsJw\n", - "\n", - "--------------------------------------------------------\n", - "increíble imagen tiburón q culpa sandy acabó calles \n", + "gonna make fake hurricane sandy pic properly \n", "\n", "\n", "AMAZING photo from New York, night before Sandy hit, looks like something you'd see out of the movie Day After Tomorrow http://t.co/YPzjDQY8\n", @@ -16003,34 +14499,28 @@ "rescue dog hurricane sandy big like \n", "\n", "\n", - "@R9beats: Check out this shark on the highway in New Jersey from Hurricane Sandy http://t.co/Q2HPpsbB this picture is old.\n", - "\n", - "--------------------------------------------------------\n", - "check shark highway new jersey hurricane sandy picture old \n", - "\n", - "\n", "Tras el paso de Instagram Sandy http://t.co/08yMSGJl vía @OlmoGonzalez http://t.co/sJHsx1zU\n", "\n", "--------------------------------------------------------\n", - "tras paso instagram sandy vía \n", + "tras paso instagram sandy \n", "\n", "\n", "Just found an exclusive picture of Hurricane Sandy approaching NY. http://t.co/k6m5jQXb\n", "\n", "--------------------------------------------------------\n", - "found exclusive picture hurricane sandy approaching ny \n", + "found exclusive picture hurricane sandy approaching new york \n", "\n", "\n", "Sandy in arrivo su Manhattan, NYC http://t.co/XVw1x1nB\n", "\n", "--------------------------------------------------------\n", - "sandy arrivo manhattan nyc \n", + "sandy arrivo manhattan new york city \n", "\n", "\n", "Sandy got ya scared haha http://t.co/xJZgC0Yr\n", "\n", "--------------------------------------------------------\n", - "sandy got scared haha \n", + "sandy got scared \n", "\n", "\n", "@manuellombo Huracán Sandy http://t.co/I4H57lH5\n", @@ -16042,19 +14532,13 @@ "Induknya di Golkar, beranak pina di PD :P \"@jadulfe78: Lbh dahsyat dari Badai Sandy ya bro..asalnya dari PD ya? http://t.co/JZNvLzbv\"\n", "\n", "--------------------------------------------------------\n", - "induknya di golkar beranak pina di pd p \n", + "induknya golkar beranak pina pd p \n", "\n", "\n", "Whoa sandy, calm. http://t.co/TNb4g62Y\n", "\n", "--------------------------------------------------------\n", - "whoa sandy calm \n", - "\n", - "\n", - "@joeltovarm: Asi esta Nueva York y la Tormenta Sandy..! Dios los cuide..! http://t.co/F80Ft2QM@Rafaelinho2690\n", - "\n", - "--------------------------------------------------------\n", - "asi nueva york tormenta sandy dios cuide \n", + "sandy calm \n", "\n", "\n", "HURRICANE SANDY HAS HIT SOMERSHAM http://t.co/tE2vkdS1\n", @@ -16066,7 +14550,7 @@ "¡Sólo vuelvo al pedestal si me aseguráis que ya se ha marchado Sandy! ¡Uff, que susto he pasao! http://t.co/tanAqres\n", "\n", "--------------------------------------------------------\n", - "sólo vuelvo pedestal si aseguráis marchado sandy uff susto pasao \n", + "sólo vuelvo pedestal si aseguráis semarchado sandy uff susto pasao \n", "\n", "\n", "y Times Square así lucia.. por el Huracán Sandy http://t.co/2cbvoM0l\n", @@ -16108,7 +14592,7 @@ "Lo Que Sandy Hizo En NY me hizo recordar esta pelicula... http://t.co/TS7q4asF\n", "\n", "--------------------------------------------------------\n", - "sandy hizo ny hizo recordar pelicula \n", + "sandy hizo new york hizo recordar pelicula \n", "\n", "\n", "a shark hurricane sandy washed up on a girls front lawn. http://t.co/TxglSTps\n", @@ -16123,18 +14607,6 @@ "new york rises sandy \n", "\n", "\n", - "Sandy's coming for you. http://t.co/n4eMAeku\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", - "\n", - "\n", - "The Sandy effect...!!! http://t.co/wiQnHyP0\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "“@chaseponto1: “@CuriousKerian: Hurricane sandy is worse than we thought http://t.co/9nZEOZOy” @amandabruen”fuck sandy\n", "\n", "--------------------------------------------------------\n", @@ -16147,40 +14619,22 @@ "asombroso resultado huracán sandy \n", "\n", "\n", - "Is Sandy gone? =)) http://t.co/prD6shUt\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "Regardez cette photo de l'ouragan SANDY in NewYork !!! Amazing http://t.co/nBFOaN05\n", "\n", "--------------------------------------------------------\n", - "regardez cette photo l ouragan sandy newyork amazing \n", + "regardez cette photo ouragan sandy new york amazing \n", "\n", "\n", "@ImanMaryie_Mht, même elle elle flippe de Sandy. http://t.co/RvG3OdpK\n", "\n", "--------------------------------------------------------\n", - "même elle elle flippe sandy \n", - "\n", - "\n", - "Buenos y lluviosos dias..increíble!!..imagen d un tiburón q por culpa d Sandy acabó por las calles.. http://t.co/LJLCC7dM\n", - "\n", - "--------------------------------------------------------\n", - "buenos lluviosos dias increíble imagen tiburón q culpa sandy acabó calles \n", - "\n", - "\n", - "Fotografías falsas de Sandy en Nueva York (1) http://t.co/5RT3fUZq\n", - "\n", - "--------------------------------------------------------\n", - "fotografías falsas sandy nueva york 1 \n", + "flippe sandy \n", "\n", "\n", "Arlington Cemetery vs. Hurricane Sandy http://t.co/9i8b9yyv\n", "\n", "--------------------------------------------------------\n", - "arlington cemetery vs hurricane sandy \n", + "arlington cemetery versus hurricane sandy \n", "\n", "\n", "Is Sandy Gone!? (Get #MEME Reader on the Appstore) morí de risa http://t.co/USJNkah9\n", @@ -16195,36 +14649,18 @@ "people realise day tomorrow hurricane sandy \n", "\n", "\n", - "Huracán Sandy. http://t.co/J62VyLnK\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy \n", - "\n", - "\n", "They stay and guard regardless. God Bless Our Military. Taken during Hurricane Sandy. http://t.co/81QFdHdG\n", "\n", "--------------------------------------------------------\n", "stay guard regardless god bless military taken hurricane sandy \n", "\n", "\n", - "@leonthijmen New York na de storm Sandy http://t.co/pojbrktc\n", - "\n", - "--------------------------------------------------------\n", - "new york storm sandy \n", - "\n", - "\n", "Godzilla, the Alien Queen, Sta Puft Man, and Jaws chase Sandy away while the UFO's supply power to downtown http://t.co/5MuPt4ER\n", "\n", "--------------------------------------------------------\n", "godzilla alien queen sta puft jaws chase sandy away ufo supply power downtown \n", "\n", "\n", - "El huracán Sandy!!! Hahaha!!! http://t.co/jgn7ZvyT\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy hahaha \n", - "\n", - "\n", "Sandy tormenta perfrcta http://t.co/1beNg5zm\n", "\n", "--------------------------------------------------------\n", @@ -16237,58 +14673,34 @@ "papasoo sandy \n", "\n", "\n", - "Huracan sandy .... http://t.co/vm1Sv34U\n", - "\n", - "--------------------------------------------------------\n", - "huracan sandy \n", - "\n", - "\n", "Pelicula d esta noche \"Efecto mariposa\". Una mariposa al vatir sus alas n Australia podria crear un tornado Sandy n USA http://t.co/EDL9B9Vi\n", "\n", "--------------------------------------------------------\n", - "pelicula noche efecto mariposa mariposa vatir alas n australia podria crear tornado sandy n usa \n", - "\n", - "\n", - "@mwicustompaint: Ouragan Sandy photo http://t.co/VyeJw0Vc Diiinnngue ! :o\n", - "\n", - "--------------------------------------------------------\n", - "ouragan sandy photo diiinnngue \n", + "pelicula noche efecto mariposa mariposa vatir alas australia podria crear tornado sandy usa \n", "\n", "\n", "wow unreleased sandy picture! look how close http://t.co/MyXMqs8F\n", "\n", "--------------------------------------------------------\n", - "wow unreleased sandy picture look close \n", + "unreleased sandy picture look close \n", "\n", "\n", "Mukhang matindi nga talaga ang naging epekto ni Hurricane Sandy sa New York... http://t.co/zF0GQaYo\n", "\n", "--------------------------------------------------------\n", - "mukhang matindi nga talaga ang naging epekto hurricane sandy sa new york \n", + "mukhang matindi nga talaga ang naging epekto hurricane sandy new york \n", "\n", "\n", "Huracan Sandy, y asi es como empezo el fin del mundo http://t.co/Nv9t9eZB\n", "\n", "--------------------------------------------------------\n", - "huracan sandy asi empezo fin mundo \n", - "\n", - "\n", - "¿Ya se fue Sandy? :( http://t.co/8lxTaZ3v\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "after sandy http://t.co/6gDDj8jM\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "huracan sandy así empezo fin mundo \n", "\n", "\n", "God, pls bless my fellow American, away form hurricane Sandy #hurricanesandy #horrible #gogetaway #blessthempls http://t.co/JeP7SXG6\n", "\n", "--------------------------------------------------------\n", - "god pls bless fellow american away form hurricane sandy hurricanesandy horrible gogetaway blessthempls \n", + "god pls bless fellow american away form hurricane sandy hurricane sandy horrible gogetaway blessthempls \n", "\n", "\n", "Entrada de Sandy a New York... http://t.co/rkXYtexP\n", @@ -16300,7 +14712,7 @@ "19 Viral Images That Definitely Aren't Hurricane Sandy http://t.co/ssujEuDf http://t.co/sLgijPsv\n", "\n", "--------------------------------------------------------\n", - "19 viral images definitely hurricane sandy \n", + "9 viral images definitely hurricane sandy \n", "\n", "\n", "Guarden esta fotografía por ahí, la tomaron en New York, es Sandy no deja de ser bella la naturaleza aún en su furia... http://t.co/ces3G7Ie\n", @@ -16360,7 +14772,7 @@ "Is Sandy Gone!? (Get #9GagReader at http://t.co/KmXTiaJn) http://t.co/lunR2UqH\n", "\n", "--------------------------------------------------------\n", - "sandy gone get 9gagreader \n", + "sandy gone get \n", "\n", "\n", "@thalia esto te va a gusta! Antes de que llegara Sandy! http://t.co/gk5sVWww\n", @@ -16369,22 +14781,10 @@ "va gusta llegara sandy \n", "\n", "\n", - "A shark swims in a New Jersey yard that has been flooded by Hurricane Sandy...YES, that is a shark! http://t.co/F6Q8AR7B\"\n", - "\n", - "--------------------------------------------------------\n", - "shark swims new jersey yard flooded hurricane sandy yes shark \n", - "\n", - "\n", - "@tanveerashfaq @Billadoo @moinjunior @asadekhan @mannukhan @aslam53417 @rmzaidi \\nSandy That Was ....... http://t.co/nocQ4Z62\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Increible foto que acabo de ver del huracan Sandy en NYC!! ⚡⚡⚡ http://t.co/LkqvLO1O\n", "\n", "--------------------------------------------------------\n", - "increible foto acabo ver huracan sandy nyc \n", + "increible foto acabo ver huracan sandy new york city \n", "\n", "\n", "Hey guys my aunt got hit by sandy and it was flooded so bad there was a shark in her front yard http://t.co/sc9njDrs\n", @@ -16396,7 +14796,7 @@ "Hurrican SANDY NY! http://t.co/Owkpfxc7\n", "\n", "--------------------------------------------------------\n", - "hurrican sandy ny \n", + "hurrican sandy new york \n", "\n", "\n", "@Kenny_Brenny this is what's behind hurricane sandy. http://t.co/hY5cypLp\n", @@ -16405,12 +14805,6 @@ "behind hurricane sandy \n", "\n", "\n", - "Sandy... http://t.co/0frjgVkf\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "después del paso de Sandy http://t.co/ttrUUhmY\n", "\n", "--------------------------------------------------------\n", @@ -16426,13 +14820,7 @@ "The Biggest and Very Dangerous ..Sandy Storm in USA, it's happen a few days ago. Badai ini terjadi 200tahun sekali #FYI http://t.co/mnLFkLsH\n", "\n", "--------------------------------------------------------\n", - "biggest dangerous sandy storm usa happen days ago badai ini terjadi 200tahun sekali fyi \n", - "\n", - "\n", - "Huracán Sandy http://t.co/CBovmFSu\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy \n", + "biggest dangerous sandy storm usa happen days ago badai terjadi00tahun fyi \n", "\n", "\n", "The superstorm sandy picture @Brooksy2409 http://t.co/C4mZ6id7\n", @@ -16450,7 +14838,7 @@ "YO Sandy Chill LOL http://t.co/CxGlZJu8\n", "\n", "--------------------------------------------------------\n", - "sandy chill lol \n", + "sandy chill \n", "\n", "\n", "@megynkelly Here's an interesting Sandy pic from New Jersey. http://t.co/GQbS7X1j\n", @@ -16465,12 +14853,6 @@ "ok sandy gon need calm \n", "\n", "\n", - "Sandy has gone? http://t.co/tVutw6lZ\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "The Sandy messed up Liberty http://t.co/GwpCu3zg\n", "\n", "--------------------------------------------------------\n", @@ -16495,16 +14877,10 @@ "hope recovering sandy well thought enjoy \n", "\n", "\n", - "Hurricane Sandy..! http://t.co/PFwIcBEx\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "WHAT !! IS THIS SERIOUSLY HURRICANE SANDY! wow it's really big! :o http://t.co/HU1LPf69\n", "\n", "--------------------------------------------------------\n", - "seriously hurricane sandy wow really big \n", + "seriously hurricane sandy really big \n", "\n", "\n", "Twitter was great for updates on Hurricane Sandy, if you could tell what was real: http://t.co/drrPf1Vf http://t.co/RVcVU9ME\n", @@ -16522,7 +14898,7 @@ "Wow didn't know hurricane sandy was that bad http://t.co/BJLZ6zeM\n", "\n", "--------------------------------------------------------\n", - "wow know hurricane sandy bad \n", + "know hurricane sandy bad \n", "\n", "\n", "اعصار (sandy) http://t.co/6H2eEK9w\n", @@ -16540,7 +14916,7 @@ "This pic was taken during h/cane Sandy near A/C NJ . Shark swimming on main. Road! http://t.co/qVg1wpbR\n", "\n", "--------------------------------------------------------\n", - "pic taken h cane sandy near c nj shark swimming main road \n", + "pic taken h cane sandy near new jersey shark swimming main road \n", "\n", "\n", "Nell'entroterra, dopo Sandy, anche gli squali! http://t.co/kAvbqamP\n", @@ -16561,12 +14937,6 @@ "mientras huracán sandy \n", "\n", "\n", - "The Sandy effect....! http://t.co/aeLhHjoP\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "“@CuriousKerian: Hurricane sandy is worse than we thought http://t.co/NfvSCARx” RFFTTTT!!!!\n", "\n", "--------------------------------------------------------\n", @@ -16600,37 +14970,19 @@ "“@Joanmarcbosch: #picoftheday #fotografia Huracan Sandy @ New York @hacerfotos #hurricane #pic http://t.co/YwGPKewg” wow! Hermosa!!\n", "\n", "--------------------------------------------------------\n", - "wow hermosa \n", - "\n", - "\n", - "@Benny: @bigclam69 Look who refused to leave their posts during Sandy....#Duty #Honor http://t.co/BnJxouO3. Heroes. Nothing but respect\n", - "\n", - "--------------------------------------------------------\n", - "look refused leave posts sandy duty honor heroes nothing respect \n", + "hermosa \n", "\n", "\n", "21/12/2012#EndofWorld.Hurricane Sandy myt jst b e LAST hurricane tht wipes us all out.Thnk abt it►The Apocalypse Begins http://t.co/kOuuiP9n\n", "\n", "--------------------------------------------------------\n", - "21 12 2012 endofworld hurricane sandy myt jst b last hurricane tht wipes us thnk abt apocalypse begins \n", - "\n", - "\n", - "Sandy'e 4 saat kala New York http://t.co/v7mvZwaO\n", - "\n", - "--------------------------------------------------------\n", - "sandy 4 saat kala new york \n", - "\n", - "\n", - "@CuriousKerian: Hurricane sandy is worse than we thought http://t.co/v4hqZmh9Lmao\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy worse thought \n", + "hurricane sandy myt jst b last hurricane tht wipes us thnkit apocalypse begins \n", "\n", "\n", "just FYI this is not sandy, everyone is retarded who thinks it is, it is absolutely 100% fake... http://t.co/popUwD8k\n", "\n", "--------------------------------------------------------\n", - "fyi sandy everyone retarded thinks absolutely 100 fake \n", + "fyi sandy everyone retarded thinks absolutely00 fake \n", "\n", "\n", "@TeryGGarrido @hijadelaChanin Normal que esté asustada la pobre, y no por Sandy precisamente http://t.co/65Y3nIz7\n", @@ -16651,34 +15003,16 @@ "sandy warhol \n", "\n", "\n", - "@mwicustompaint: Ouragan Sandy photo Apocalyptique quand même OUFFFF http://t.co/pkUkSPvI C'est un #FAKE Copain\n", - "\n", - "--------------------------------------------------------\n", - "ouragan sandy photo apocalyptique quand même ouffff c est fake copain \n", - "\n", - "\n", "Lmaooooooo thats how we were acting when sandy came ctfuuuuu http://t.co/O36QMJLO\n", "\n", "--------------------------------------------------------\n", - "lmaooooooo thats acting sandy came ctfuuuuu \n", - "\n", - "\n", - "The Sandy effect http://t.co/FJJ3CITe\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", + "thats acting sandy came ctfuuuuu \n", "\n", "\n", "Smh hurricane sandy had sharks swimming In the streets in NJ http://t.co/1xBcEbfD\n", "\n", "--------------------------------------------------------\n", - "smh hurricane sandy sharks swimming streets nj \n", - "\n", - "\n", - "After hurricane Sandy... =))))))) http://t.co/8qOLUoZK\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "hurricane sandy sharks swimming streets new jersey \n", "\n", "\n", "Esta foto sólo se ve cuando están rodando una película o en una visita cual huracán \"Sandy\" http://t.co/27aNmVJc\n", @@ -16690,7 +15024,7 @@ "Foto dari Amerika Serikat. Sekarang ada Storm Sandy yang akan datang ke kota New York!!!! http://t.co/ykRu1eDa\n", "\n", "--------------------------------------------------------\n", - "foto dari amerika serikat sekarang ada storm sandy yang akan datang ke kota new york \n", + "foto amerika serikat storm sandy kota new york \n", "\n", "\n", "Sandy Storm http://t.co/vnOcJOPh\n", @@ -16699,12 +15033,6 @@ "sandy storm \n", "\n", "\n", - "Lmao hurricane sandy ain't no hoe ! http://t.co/DsK8EpYm\n", - "\n", - "--------------------------------------------------------\n", - "lmao hurricane sandy \n", - "\n", - "\n", "#Superstorm Sandy Is this true or just some "trick or treat"PS joke? http://t.co/4iITNp80\n", "\n", "--------------------------------------------------------\n", @@ -16717,12 +15045,6 @@ "pictures hurricane sandy unreal literally staypuftmarshmellowman photoshopped fakepicture \n", "\n", "\n", - "Sandy are you there? http://t.co/QlHH1r3o\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Check out who didn't let Hurricane Sandy keep them from their job: http://t.co/WEYcTdx2 http://t.co/q4Gxg86H\n", "\n", "--------------------------------------------------------\n", @@ -16744,7 +15066,7 @@ "Asi aguanto a Sandy, (olivia n. jonh) y a travolta la estutatua de la liberdad http://t.co/MAVEFeX8\n", "\n", "--------------------------------------------------------\n", - "asi aguanto sandy olivia n jonh travolta estutatua liberdad \n", + "asi aguanto sandy oliand jonh travolta estutatua liberdad \n", "\n", "\n", "@EllisMate Sandy released the sharks in long island http://t.co/YkLSRTKQ\n", @@ -16759,12 +15081,6 @@ "sandy etkisi \n", "\n", "\n", - "NewYork Hurricane Sandy http://t.co/pfOLrLbo\n", - "\n", - "--------------------------------------------------------\n", - "newyork hurricane sandy \n", - "\n", - "\n", "I want to Scooba dive in New York subways....minus Sandy #bucketlist http://t.co/3ynnFXoN\n", "\n", "--------------------------------------------------------\n", @@ -16774,13 +15090,13 @@ "No candy 4 Sandy vol.2 http://t.co/HR6qOtp3\n", "\n", "--------------------------------------------------------\n", - "candy 4 sandy vol 2 \n", + "candy sandy vol \n", "\n", "\n", "La statue de la liberté et Sandy haha http://t.co/HABfB5SX\n", "\n", "--------------------------------------------------------\n", - "statue liberté et sandy haha \n", + "statue liberté sandy \n", "\n", "\n", "Devastating effect of sandy. http://t.co/pRVHo9xC\n", @@ -16798,13 +15114,13 @@ "Is dt a shark???@fanamokoena: Hurricane Sandy http://t.co/7KTtqlrN\n", "\n", "--------------------------------------------------------\n", - "dt shark hurricane sandy \n", + "dt shark \n", "\n", "\n", "se a sandy que é a sandy esta fazendo um estrago desses imagina se fosse furação preta gil........................ http://t.co/CsWJUfiX\n", "\n", "--------------------------------------------------------\n", - "sandy é sandy fazendo um estrago desses imagina fosse furação preta gil \n", + "sandy sandy fazendo estrago desses imagina furação preta gil \n", "\n", "\n", "Abd sandy den sonra saka gibi!! http://t.co/vmJbFo2A\n", @@ -16816,7 +15132,7 @@ "It seems everyone in NY is hiding from hurricane sandy. http://t.co/DV2ouJtS\n", "\n", "--------------------------------------------------------\n", - "seems everyone ny hiding hurricane sandy \n", + "seems everyone new york hiding hurricane sandy \n", "\n", "\n", "Sandy escalated quickly http://t.co/tQeETx1E\n", @@ -16831,12 +15147,6 @@ "sandy good w staysafe \n", "\n", "\n", - "Sandy ya se fue??? http://t.co/sqKb4L58\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Hurricane Sandy what have you done?! http://t.co/mhOAdNfh\n", "\n", "--------------------------------------------------------\n", @@ -16873,18 +15183,6 @@ "darien ct see wall street sharks loose new jersey hurricane sandy aftermath \n", "\n", "\n", - "Sandy... ? http://t.co/LFDHflBE\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "Is Sandy gone :( http://t.co/cvt3GoeZ\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "Hurricane sandy was a big bitch! http://t.co/eAKVLMqt\n", "\n", "--------------------------------------------------------\n", @@ -16894,13 +15192,7 @@ "Vrijheids beelt komt ook weer even omkijken of sandy <-(tornado in New York) al over gevlogen is http://t.co/2X8qOJR9\n", "\n", "--------------------------------------------------------\n", - "vrijheids beelt komt weer even omkijken sandy less tornado new york gevlogen \n", - "\n", - "\n", - "What hurricane sandy does to you http://t.co/iKq4buTp\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "vrijheids beelt komt weer even omkijken sandy tornado new york gevlogen \n", "\n", "\n", "#americanhorrorstory ummmmmm Sandy yaaa calma ☁ ☁ ☺ http://t.co/zlbcGv3Z\n", @@ -16912,7 +15204,7 @@ "“@Only_Joa: Smh hurricane sandy had sharks swimming In the streets in NJ http://t.co/JChuXI3p”dat shit cray lol\n", "\n", "--------------------------------------------------------\n", - "shit cray lol \n", + "shit cray \n", "\n", "\n", "Huracán Sandy lo que provocas!!! http://t.co/HhAbnTnO\n", @@ -16921,22 +15213,10 @@ "huracán sandy provocas \n", "\n", "\n", - "sandy was a bitch http://t.co/QC4OtUc8\n", - "\n", - "--------------------------------------------------------\n", - "sandy bitch \n", - "\n", - "\n", - "@HocicoTarro: Huracán Sandy, Frankenstorm !! @twitergrafias http://t.co/0thlb0oA// Increible!!!\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy frankenstorm increible \n", - "\n", - "\n", "Badai di Indonesia tu ya korupsi yg menahun \"@jadulfe78: Subhanallah, Badai Sandy yg melanda Amerika... http://t.co/JZNvLzbv\"\n", "\n", "--------------------------------------------------------\n", - "badai di indonesia korupsi yg menahun \n", + "badai indonesia korupsi yg menahun \n", "\n", "\n", "Disaster by sandy http://t.co/LZUOHCmF\n", @@ -16951,48 +15231,18 @@ "damn hurricane sandy make things even creepier \n", "\n", "\n", - "Sandy? Ya se fue? http://t.co/RSohkr8b\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "“@efitz6: Hurricane Sandy approaching New York. http://t.co/Y3eHhyLa” what a picture\n", "\n", "--------------------------------------------------------\n", "picture \n", "\n", "\n", - "Is Sandy gone? http://t.co/71igYuDW\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", - "Sandy su New York http://t.co/gzlIIBrY\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", - "@TARASBITCH: Sandy :( http://t.co/o9UbkVxE OMG! :O\n", - "\n", - "--------------------------------------------------------\n", - "sandy omg \n", - "\n", - "\n", "CIA estudia conexión entre el huracán Sandy y el lanzamiento del Satélite Miranda http://t.co/cKjzaSwY\n", "\n", "--------------------------------------------------------\n", "cia estudia conexión huracán sandy lanzamiento satélite miranda \n", "\n", "\n", - "OH SANDY! http://t.co/k06o4id4\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", "...que viene sandy!!!! jeje http://t.co/m3hR1PCr\n", "\n", "--------------------------------------------------------\n", @@ -17008,13 +15258,13 @@ "orkaan sandy 2012 http://t.co/Mm7WXyvJ\n", "\n", "--------------------------------------------------------\n", - "orkaan sandy 2012 \n", + "orkaan sandy012 \n", "\n", "\n", "What hurricane sandy have done :D \\355\\270\\234 http://t.co/YAoS608w\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy done 355 270 234 \n", + "hurricane sandy done d4 \n", "\n", "\n", "los estragos de SANDY en nueva york... http://t.co/2Z25piHZ\n", @@ -17026,7 +15276,7 @@ "Ora che Sandy è passato, New York cerca di tornare alla normalità. Ma sono tanti i cambiamenti a cui dovrà abituarsi... http://t.co/CHwn4Eil\n", "\n", "--------------------------------------------------------\n", - "ora che sandy è passato new york cerca di tornare normalità sono tanti cambiamenti cui dovrà abituarsi \n", + "ora che sandy è passato new york cerca tornare normalità sono tanti cambiamenti cui dovrà abituarsi \n", "\n", "\n", "“@iFrankayy: Hurricane sandy hits new york! http://t.co/QDL8Pcrk” shit's not funny.\n", @@ -17038,7 +15288,7 @@ "Lake of Bays and Sandy 2012 http://t.co/mYQ8HF9H via @PicCollage http://t.co/qtSS00fd\n", "\n", "--------------------------------------------------------\n", - "lake bays sandy 2012 \n", + "lake bays sandy012 \n", "\n", "\n", "Hurricane sandy hits new york! http://t.co/bg01Sf5G\"\n", @@ -17089,22 +15339,10 @@ "sandy kasırgası new york kıyılarına ulaştı \n", "\n", "\n", - "“@WitMeSheStayWet: Damn Hurricane Sandy !!! http://t.co/igbyvb4x” lmao\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", - "\n", - "\n", "^LOL Sandy Hurricane Did That http://t.co/ZG5Cib99\n", "\n", "--------------------------------------------------------\n", - "lol sandy hurricane \n", - "\n", - "\n", - "“@rhysyharding: hurricane sandy damage http://t.co/Xao8mlW7” omg loool\n", - "\n", - "--------------------------------------------------------\n", - "omg loool \n", + "sandy hurricane \n", "\n", "\n", "Dam sandy http://t.co/jWpxvFlA\n", @@ -17128,19 +15366,13 @@ "Sandy ha revolucionado NY!!! http://t.co/7KfVuUnx\n", "\n", "--------------------------------------------------------\n", - "sandy revolucionado ny \n", + "sandyrevolucionado new york \n", "\n", "\n", "Hahaha , look what hurricane sandy did there !! http://t.co/PhUhlObl\n", "\n", "--------------------------------------------------------\n", - "hahaha look hurricane sandy \n", - "\n", - "\n", - "New York after Hurricane Sandy! ...http://t.co/bg01Sf5G\"\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricane sandy \n", + "look hurricane sandy \n", "\n", "\n", "Consecuencias inevitables de Sandy Bell. #ChettosPaDesayunar #WacalesConTiburones http://t.co/R46EXAT2\n", @@ -17152,13 +15384,7 @@ "Sandy 2012 never forget http://t.co/r2uANsEc\n", "\n", "--------------------------------------------------------\n", - "sandy 2012 never forget \n", - "\n", - "\n", - "@joenufc96: Hurricane sandy hits the UK http://t.co/T70z1vk4 @TheStantMan\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy hits uk \n", + "sandy012 never forget \n", "\n", "\n", "Hurricane Sandy must have just hit the uk :/ picking up the pieces http://t.co/Tn4kyHoF\n", @@ -17176,7 +15402,7 @@ "#TerapiaDeRisa Ya se acercaba el Huracán \"Sandy\" a NY!! http://t.co/RuBRbT8o\n", "\n", "--------------------------------------------------------\n", - "terapiaderisa acercaba huracán sandy ny \n", + "terapiaderisa acercaba huracán sandy new york \n", "\n", "\n", "Estatua libertad bailando Sandy al ritmo travoltino http://t.co/FGg5x03d dedicado a mi amigo @Barksdale666 http://t.co/LwwRBSAo\n", @@ -17203,12 +15429,6 @@ "condenada sandy \n", "\n", "\n", - "Hurricane \"Sandy\". http://t.co/5RgEHlfQ\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "@MennMandy MANDY.. kijk..!!! Kwam door orkaan Sandy..!! ;p http://t.co/EBnbT7pT\n", "\n", "--------------------------------------------------------\n", @@ -17230,7 +15450,7 @@ "Huracán Sandy. Pues si que hace viento en NY... http://t.co/zTojzuBH\n", "\n", "--------------------------------------------------------\n", - "huracán sandy pues si hace viento ny \n", + "huracán sandy pues si hace viento new york \n", "\n", "\n", "So many fake photos of Superstorm Sandy. Glad to see this isn't one of them. http://t.co/0WIlF71A\n", @@ -17242,7 +15462,7 @@ "Lo que no se vio en NY de Sandy http://t.co/mML3jzMS\n", "\n", "--------------------------------------------------------\n", - "vio ny sandy \n", + "vio new york sandy \n", "\n", "\n", "“@pattysanroman: Condenada Sandy! http://t.co/sgPGZhkm”// me acorde de @niuyorkina\n", @@ -17284,13 +15504,13 @@ "Lo ke hizo sandy en new York!!🙀🙀 http://t.co/LsckG78r\n", "\n", "--------------------------------------------------------\n", - "ke hizo sandy new york \n", + "hizo sandy new york \n", "\n", "\n", "Hurricane sandy aint no joke lol http://t.co/1FMc13kn\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy aint joke lol \n", + "hurricane sandy aint joke \n", "\n", "\n", "“@m1mmo Ora che Sandy è passato, sono tanti i cambiamenti a cui dovrà abituarcisi... http://t.co/6K06CtJY”\n", @@ -17323,12 +15543,6 @@ "hurricane sandy fierce winds \n", "\n", "\n", - "@retardedmom: OMG HURRICANE SANDY IS GONNA KILL US ALL!!!!! http://t.co/tC1SPRLG\n", - "\n", - "--------------------------------------------------------\n", - "omg hurricane sandy gonna kill us \n", - "\n", - "\n", "Sandy!!!!! شوفو وش سوى بتمثال الحرية..لووووووووووول.الى الابد.. http://t.co/fBVqPOQ8\n", "\n", "--------------------------------------------------------\n", @@ -17380,7 +15594,7 @@ "Cette nuit à New York. Je vous assure que ce n'est pas du Photoshop. #Sandy http://t.co/i4F9GmAy\n", "\n", "--------------------------------------------------------\n", - "cette nuit à new york vous assure ce n est pas photoshop sandy \n", + "cette nuitnew york assure photoshop sandy \n", "\n", "\n", "Imagen impactante del huracán \"Sandy\" en Nueva York. http://t.co/fWRi0rh0\n", @@ -17398,7 +15612,7 @@ "IMPACTANTE IMAGEN de Nueva York y el huracán Sandy NY New York http://t.co/vZbIzT17\n", "\n", "--------------------------------------------------------\n", - "impactante imagen nueva york huracán sandy ny new york \n", + "impactante imagen nueva york huracán sandy new york new york \n", "\n", "\n", "Les dejo una imagen impactante mostrando como la gente se protege del huracan Sandy en New York http://t.co/BaaMoTkd\n", @@ -17425,12 +15639,6 @@ "impresionante imagen huracán sandy nueva york \n", "\n", "\n", - "Foto del Huracán Sandy en Nueva York, como sacada de una película. http://t.co/7hYqKjaj\n", - "\n", - "--------------------------------------------------------\n", - "foto huracán sandy nueva york sacada película \n", - "\n", - "\n", "Imagen asombrosa del huracán Sandy descendiendo en Nueva York http://t.co/0zHYFI7o\n", "\n", "--------------------------------------------------------\n", @@ -17449,24 +15657,12 @@ "imagen cámara seguridad nueva york podemos ver inmensos destrozos causados sandy \n", "\n", "\n", - "@Azuunzue5: ''Foto del Huracán Sandy en Nueva York'' zarpadooooooooooooo http://t.co/850PQa53 increibleee!!!!!\n", - "\n", - "--------------------------------------------------------\n", - "foto huracán sandy nueva york zarpadooooooooooooo increibleee \n", - "\n", - "\n", "Refugios en Nueva York ante la llegada del huracán Sandy. http://t.co/fJwpTFWS\n", "\n", "--------------------------------------------------------\n", "refugios nueva york llegada huracán sandy \n", "\n", "\n", - "@lndirecto: Impresionante e impactante foto de como se refugian en Nueva York ante la llegada del huracán Sandy. http://t.co/P4RRCr5l\n", - "\n", - "--------------------------------------------------------\n", - "impresionante impactante foto refugian nueva york llegada huracán sandy \n", - "\n", - "\n", "Nos llegan noticias de ultima hora, el huracan Sandy esta causando estragos en la ciudad de Nueva York http://t.co/CdZc8T40\n", "\n", "--------------------------------------------------------\n", @@ -17479,16 +15675,10 @@ "hurricane sandy worse thought \n", "\n", "\n", - "The deadly hurricane Sandy.. Nature is so violent yet so beautiful. http://t.co/RJwzRzvc\n", - "\n", - "--------------------------------------------------------\n", - "deadly hurricane sandy nature violent yet beautiful \n", - "\n", - "\n", "Hurricane Sandy. NYC. True story: http://t.co/ZiuEnGgx\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc true story \n", + "hurricane sandy new york city true story \n", "\n", "\n", "Hurricane Sandy approaching New York. http://t.co/HJVCfOYA\n", @@ -17500,15 +15690,9 @@ "OMG HURRICANE SANDY IS GONNA KILL US ALL!!!!! http://t.co/GQDgjYCu\n", "\n", "--------------------------------------------------------\n", - "omg hurricane sandy gonna kill us \n", + "hurricane sandy gonna kill us \n", + "\n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ "Hurricane Sandy, Nueva York.Fotón !! http://t.co/Y7PCc9QW\n", "\n", "--------------------------------------------------------\n", @@ -17530,7 +15714,7 @@ "Was already running from limpopo \"@fanamokoena: Lol! It's not real RT “ArcadiaT: No kidding \"fana: Hurricane Sandy http://t.co/bGBOdIVT\n", "\n", "--------------------------------------------------------\n", - "already running limpopo lol real \n", + "already running limpopo fana hurricane sandy \n", "\n", "\n", "Amazing photo taken in New York, just before hurricane Sandy hit http://t.co/2i917d15\n", @@ -17548,13 +15732,13 @@ "Wishing Everyone a Speedy recovery from Hurricane Sandy! http://t.co/qnCbeC0i #nyc http://t.co/QCIgFga4\n", "\n", "--------------------------------------------------------\n", - "wishing everyone speedy recovery hurricane sandy nyc \n", + "wishing everyone speedy recovery hurricane sandy new york city \n", "\n", "\n", "I don't care why you say this deserves SO MUCH RESPECT! During Hurricane Sandy. 1 RT= 1Respect http://t.co/zRKMhalt\n", "\n", "--------------------------------------------------------\n", - "care say deserves much respect hurricane sandy 1 rt 1respect \n", + "care say deserves much respect hurricane sandy \n", "\n", "\n", "This hurricane is starting to get really scary now... http://t.co/t9gDwVOQ\n", @@ -17584,7 +15768,7 @@ "Please check out this -> 11 Viral Photos That AREN'T Hurricane Sandy http://t.co/coq11QAU http://t.co/fyPwSrT1\n", "\n", "--------------------------------------------------------\n", - "please check 11 viral photos hurricane sandy \n", + "please check 1 viral photos hurricane sandy \n", "\n", "\n", "You do realise this is fake? That its from a movie? Please tell me! RT @fanamokoena: Hurricane Sandy http://t.co/wWXx86OT\n", @@ -17599,16 +15783,10 @@ "eish \n", "\n", "\n", - "Wow that's scary RT @fanamokoena: Hurricane Sandy http://t.co/WRrdSTPR\n", - "\n", - "--------------------------------------------------------\n", - "wow scary \n", - "\n", - "\n", "Y'A DES REQUINS DANS LES RUES DU NEW JERSEY.... *_* #Sandy http://t.co/nqcEExiO\n", "\n", "--------------------------------------------------------\n", - "des requins dans rues new jersey sandy \n", + "requins rues new jersey sandy \n", "\n", "\n", "АКУЛЫ ПЛАВАЮТ ПО УЛИЦАМ НЬЮ-ЙОРКА! СУКА Я ЩАС ОБОССУСЬ ОТ СТРАХА. Буду молится, чтобы все было хорошо. Аминь. #Sandy http://t.co/eZq9IQ7H\n", @@ -17620,7 +15798,7 @@ "Animales de los Zoologícos sueltos por las calles de NY, debido al huracan Sandy. #PrayForUSA http://t.co/posXbUGL\n", "\n", "--------------------------------------------------------\n", - "animales zoologícos sueltos calles ny debido huracan sandy prayforusa \n", + "animales zoologícos sueltos calles new york debido huracan sandy prayforusa \n", "\n", "\n", "Sandy Kasırgası sırasında çekilmiş bir kare... http://t.co/anCvKtnY\n", @@ -17638,7 +15816,7 @@ "Live picture of Hurricane Sandy in America, wow. http://t.co/2w9wC5DX\n", "\n", "--------------------------------------------------------\n", - "live picture hurricane sandy america wow \n", + "live picture hurricane sandy america \n", "\n", "\n", "Cool pick #Sandy http://t.co/fGSWMqq4\n", @@ -17656,7 +15834,7 @@ "Oh dear god.. #Sandy http://t.co/8VKWHYWK\n", "\n", "--------------------------------------------------------\n", - "oh dear god sandy \n", + "dear god sandy \n", "\n", "\n", "Its #sandy dude :S ! http://t.co/g1S2itXW\n", @@ -17668,13 +15846,13 @@ "El huracan #sandy es algo más temible d lo nos pensabamos,esta imagen lo confirma...NY esta perdida #sálvanosSUPERMAN http://t.co/VcxUGVCS\n", "\n", "--------------------------------------------------------\n", - "huracan sandy temible pensabamos imagen confirma ny perdida sálvanossuperman \n", + "huracan sandy temible pensabamos imagen confirma new york perdida sálvanossuperman \n", "\n", "\n", "#StormSandy Ces photos qui sont des fakes, sinon voir les officielles sur Buzzfeed http://t.co/8XBvXicP http://t.co/PuFXKrNP\n", "\n", "--------------------------------------------------------\n", - "stormsandy ces photos qui sont des fakes sinon voir officielles sur buzzfeed \n", + "stormsandy photos fakes sinon voir officielles buzzfeed \n", "\n", "\n", "Has #sandy #Hurricane gone yet? Is it safe to come out? http://t.co/k53uSuSd\n", @@ -17683,16 +15861,10 @@ "sandy hurricane gone yet safe come \n", "\n", "\n", - "@Delivered2: تم إنشاء هاش تاق جديد مؤخراً للأنستقرام للعاصفة القادمة التي تُدعى إعصار ساندي بكل الصور المحدثة. #sandy http://t.co/pxb0oRQo\n", - "\n", - "--------------------------------------------------------\n", - "تم إنشاء هاش تاق جديد مؤخرا للأنستقرام للعاصفة القادمة ت دعى إعصار ساندي بكل الصور المحدثة sandy \n", - "\n", - "\n", "Hahahaha! #Sandy #HurricaneSandy #Hurricane #NewYork #StatueOfLiberty #Liberty http://t.co/aXkVIKAH\n", "\n", "--------------------------------------------------------\n", - "hahahaha sandy hurricanesandy hurricane newyork statueofliberty liberty \n", + "sandy hurricane sandy hurricane new york statueofliberty liberty \n", "\n", "\n", "Not everyone ran for cover during hurricane #Sandy http://t.co/7C7lAXvK\n", @@ -17737,12 +15909,6 @@ "ハリケーンsandyの映像 まるで映画そのまんまですね こわ \n", "\n", "\n", - "Ya se fue #Sandy ? http://t.co/OYAbiRra\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "@Cafeinomania acojonaica #sandy http://t.co/gpXOAXsk\n", "\n", "--------------------------------------------------------\n", @@ -17758,7 +15924,7 @@ "#newyork #sandy #lol #funny #fun http://t.co/GED92pFb\n", "\n", "--------------------------------------------------------\n", - "newyork sandy lol funny fun \n", + "new york sandy funny fun \n", "\n", "\n", "Hurricane Fluffy http://t.co/Gmkeh3tJ\n", @@ -17770,7 +15936,7 @@ "@GuilleDiaz asi se veia NY antes de que #sandy tocara tierra http://t.co/sLokR0zH\n", "\n", "--------------------------------------------------------\n", - "asi veia ny sandy tocara tierra \n", + "así veia new york sandy tocara tierra \n", "\n", "\n", "¿Ya paso? #Sandy http://t.co/Ogybuz8j\n", @@ -17785,12 +15951,6 @@ "liberty stands sandy picture symbolizes stand tall even battered bruised \n", "\n", "\n", - "Increíble!!..imagen d un tiburón q por culpa de #Sandy acabó por las calles.. http://t.co/wyPL1r2W\"\n", - "\n", - "--------------------------------------------------------\n", - "increíble imagen tiburón q culpa sandy acabó calles \n", - "\n", - "\n", "NOT a photoshop! #hurricane #sandy #amazing but #scary http://t.co/wAdSnFz5\n", "\n", "--------------------------------------------------------\n", @@ -17800,7 +15960,7 @@ "@Nosi9gouws it wasn't a cmeback sunshine is was a recommendation.. Hey ur an expert on fake #sandy fotos rite?? http://t.co/mR5hHnvT\" fake?\n", "\n", "--------------------------------------------------------\n", - "cmeback sunshine recommendation hey ur expert fake sandy fotos rite fake \n", + "cmeback sunshine recommendation hey expert fake sandy fotos rite fake \n", "\n", "\n", "HOW TO SPOT A FAKE #Sandy PIC: CATS CANNOT BE CLOUDS! http://t.co/0t1ga3L1\n", @@ -17812,7 +15972,7 @@ "Sandy was a nasty lady but took a great pic #Sandy @rachaeyyy sure u want to live in NYC #crazyweather. http://t.co/HWnZn7ge\n", "\n", "--------------------------------------------------------\n", - "sandy nasty lady took great pic sandy sure live nyc crazyweather \n", + "sandy nasty lady took great pic sandy sure live new york city crazyweather \n", "\n", "\n", "大型台風Sandyすごすぎ、映画みたいじゃない? http://t.co/I3b1wjou\n", @@ -17848,19 +16008,19 @@ "EN EXCLUSIVA! Imágenes inéditas sobre lo que está pasando en NY. #Sandy http://t.co/NaeJ7IiH // Ohh My gooosh!! 😟\"\n", "\n", "--------------------------------------------------------\n", - "exclusiva imágenes inéditas pasando ny sandy ohh gooosh \n", + "exclusiva imágenes inéditas pasando new york sandy gooosh \n", "\n", "\n", "My Weekly Comic Book Haul!!! Hurricane Sandy Edition @talkingcomics #finallyalightweek #Sandy #haha http://t.co/VfIgCeBo\n", "\n", "--------------------------------------------------------\n", - "weekly comic book haul hurricane sandy edition finallyalightweek sandy haha \n", + "weekly comic book haul hurricane sandy edition finallyalightweek sandy \n", "\n", "\n", "#sandy is just ravaging NYC http://t.co/W3Nau9ek\n", "\n", "--------------------------------------------------------\n", - "sandy ravaging nyc \n", + "sandy ravaging new york city \n", "\n", "\n", "تم إنشاء هاش تاق جديد مؤخراً للأنستقرام للعاصفة القادمة التي تُدعى إعصار ساندي بكل الصور المحدثة.\\n#sandy http://t.co/XjOKwT44\n", @@ -17869,18 +16029,6 @@ "تم إنشاء هاش تاق جديد مؤخرا للأنستقرام للعاصفة القادمة ت دعى إعصار ساندي بكل الصور المحدثة sandy \n", "\n", "\n", - "What hurricane? http://t.co/44gSX6S8\n", - "\n", - "--------------------------------------------------------\n", - "hurricane \n", - "\n", - "\n", - "Ohh #Sandy why??? http://t.co/xNwYF5kB\n", - "\n", - "--------------------------------------------------------\n", - "ohh sandy \n", - "\n", - "\n", "#SANDY\\nВ городе Нью-Джерси по улицам плавают акулы из-за шторма \"SANDY\" http://t.co/33heFPg1\n", "\n", "--------------------------------------------------------\n", @@ -17902,7 +16050,7 @@ "هاا خلص الإعصار ولا لاء ؟ XD #إعصار_ساندي #sandy http://t.co/XpAKOzif\n", "\n", "--------------------------------------------------------\n", - "هاا خلص الإعصار لاء xd إعصار ساندي sandy \n", + "هاا خلص الإعصار لاء xd إعصارساندي sandy \n", "\n", "\n", "se escondio por el huracan http://t.co/yexe4y33\n", @@ -17917,12 +16065,6 @@ "انت وين طلعت روح ارجع مكانك sandy \n", "\n", "\n", - "@Daweeq: HURRICANE #SANDY IS GETTING REAL http://t.co/FZSnBGCv\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", "@AlbaDelaOsa #Sandy es toda toda culpa suya ;) http://t.co/jgEyPHsG\n", "\n", "--------------------------------------------------------\n", @@ -17938,13 +16080,13 @@ "Ахах #Duran #Sandy #АкулаВНью_Йорке http://t.co/B5UTNJaE\n", "\n", "--------------------------------------------------------\n", - "ахах duran sandy акулавнью йорке \n", + "ахах duran sandy акулавньюйорке \n", "\n", "\n", "Oh mon dieu, on va tous mourir! (via http://t.co/MfzyszCF) http://t.co/51W8qFmE\n", "\n", "--------------------------------------------------------\n", - "oh mon dieu va tous mourir via \n", + "dieu va tous mourir \n", "\n", "\n", "#SANDY is coming - beware #FueraHuracánSandyDeNY http://t.co/U062tpwz\"\n", @@ -17953,16 +16095,10 @@ "sandy coming beware fuerahuracánsandydeny \n", "\n", "\n", - "#real #sandy http://t.co/fCzrOn4I\n", - "\n", - "--------------------------------------------------------\n", - "real sandy \n", - "\n", - "\n", "#changingoftheguard #tombofunknownsoldiers #hurricane #Sandy #marines #usa #proudtobeamerican never left unattended http://t.co/ob26uLi4\n", "\n", "--------------------------------------------------------\n", - "changingoftheguard tombofunknownsoldiers hurricane sandy marines usa proudtobeamerican never left unattended \n", + "changingoftheguard tombofunknown soldiers hurricane sandy marines usa proudtobeamerican never left unattended \n", "\n", "\n", "Últimas imágenes de #Sandy http://t.co/S0401dQw\n", @@ -17977,12 +16113,6 @@ "dead kennedys downtown jerseycity chilltown aftermath hurricane sandy newjersey \n", "\n", "\n", - "Ha! #sandy http://t.co/o0AOcyfB\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Hahahahah :p #Sandy http://t.co/yKBaYooo\n", "\n", "--------------------------------------------------------\n", @@ -17992,25 +16122,19 @@ "Attention aux fausses images de l'ouragan #Sandy. Cette photo, bien que jolie, est un fake ! http://t.co/ahEK26XA\n", "\n", "--------------------------------------------------------\n", - "attention aux fausses images l ouragan sandy cette photo bien jolie est fake \n", + "attention fausses images ouragan sandy cette photo bien jolie fake \n", "\n", "\n", "@Gumzz05 lmao mara wena... hurricane gumzz lmao!!! http://t.co/cG9dWTT8\n", "\n", "--------------------------------------------------------\n", - "lmao mara wena hurricane gumzz lmao \n", - "\n", - "\n", - "#hurricane #sandy. http://t.co/JsXpfYYy\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "mara wena hurricane gumzz \n", "\n", "\n", "un petit clin d'oeil sur #sandy et promis c'est pas du #fake !!! http://t.co/VGOe4cFb\n", "\n", "--------------------------------------------------------\n", - "petit clin oeil sur sandy et promis c est pas fake \n", + "petit clin oeil sandy promis fake \n", "\n", "\n", "HOW TO SPOT A FAKE #Sandy PIC: SANDY DID NOT COME IN FROM THE WEST! http://t.co/GcBKrF9c\n", @@ -18027,20 +16151,20 @@ "\n", "Today's \"flow\"\\n#Sandy http://t.co/UOwZ6sEH\n", "\n", - "--------------------------------------------------------\n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "today flow sandy \n", "\n", "\n", - "Is #sandy gone? http://t.co/Axi1SEfs\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "#hurracaine #sandy \\nAre you for real. O.0 http://t.co/jC4Tx6XT\n", "\n", "--------------------------------------------------------\n", - "hurracaine sandy real 0 \n", + "hurracaine sandy real \n", "\n", "\n", "Damn was it that serious 😨 #Sandy #SadDay @_ShmokeAStorm http://t.co/9CctUfHU\n", @@ -18064,13 +16188,13 @@ "Las imagenes pasadas eran falsas. Esta es la buena! #Sandy #NY http://t.co/YRUMMn0z\n", "\n", "--------------------------------------------------------\n", - "imagenes pasadas falsas buena sandy ny \n", + "imagenes pasadas falsas buena sandy new york \n", "\n", "\n", "LOL #HurricaneSandy #Sandy #NYC #photooftheday http://t.co/MmeArW6w\n", "\n", "--------------------------------------------------------\n", - "lol hurricanesandy sandy nyc photooftheday \n", + "hurricane sandy sandy new york city photooftheday \n", "\n", "\n", "Chill my nigga #Sandy http://t.co/vQjcl9FV\n", @@ -18082,19 +16206,7 @@ "Wow, that looks like some Independence Day shit right there! #sandy #NYC http://t.co/uDm23F4l\n", "\n", "--------------------------------------------------------\n", - "wow looks like independence day shit right sandy nyc \n", - "\n", - "\n", - "#timessquare. #sandy http://t.co/357sh4Bj\n", - "\n", - "--------------------------------------------------------\n", - "timessquare sandy \n", - "\n", - "\n", - "#Sandy http://t.co/n51I1TqW WOW.\n", - "\n", - "--------------------------------------------------------\n", - "sandy wow \n", + "looks like independence day shit right sandy new york city \n", "\n", "\n", "Lo que arrastro el #huracan #sandy #tiburones http://t.co/hFSOvUF7\n", @@ -18106,13 +16218,13 @@ "Authentic image from Newyork during #hurricane #sandy http://t.co/M394SWaO\n", "\n", "--------------------------------------------------------\n", - "authentic image newyork hurricane sandy \n", + "authentic image new york hurricane sandy \n", "\n", "\n", "Message to hurricane Sandy #hurricanesandy #sandy http://t.co/XtxCpSBy\n", "\n", "--------------------------------------------------------\n", - "message hurricane sandy hurricanesandy sandy \n", + "message hurricane sandy hurricane sandy sandy \n", "\n", "\n", "Как же я сочувствую людям, поскорее бы это закончилось:(( #sandy #pray http://t.co/6Fvd5B37\n", @@ -18136,19 +16248,13 @@ "#NewYork #sandy stormmmm http://t.co/fFc1VTS8\n", "\n", "--------------------------------------------------------\n", - "newyork sandy stormmmm \n", - "\n", - "\n", - "@cristinaminguez: Tiburones por las calles de NY. #SANDY http://t.co/3NH9LjqX esto es real??????!!!!\n", - "\n", - "--------------------------------------------------------\n", - "tiburones calles ny sandy real \n", + "new york sandy stormmmm \n", "\n", "\n", "Het onderwerp is niet grappig, maar het plaatje wel 😄 'Is it safe to come out yet??' #Sandy #NYC http://t.co/mpbeb3lO\n", "\n", "--------------------------------------------------------\n", - "onderwerp grappig plaatje wel safe come yet sandy nyc \n", + "onderwerp grappig plaatje wel safe come yet sandy new york city \n", "\n", "\n", "Federal Gov't shut down during the hurricane. BUT our military was on the job - no surprise here! http://t.co/ZRNJqjVw http://t.co/kVS8iYsc\n", @@ -18160,13 +16266,13 @@ "Vorhin ne Parodie zu #Sandy gefunden :DDDD http://t.co/TAmizyG1\n", "\n", "--------------------------------------------------------\n", - "vorhin ne parodie zu sandy gefunden dddd \n", + "vorhin parodie zu sandy gefunden dddd \n", "\n", "\n", "Ya puede salir sra libertad! \\n#newyork #Sandy http://t.co/CfWZGGEb\n", "\n", "--------------------------------------------------------\n", - "puede salir sra libertad newyork sandy \n", + "puede salir sra libertad new york sandy \n", "\n", "\n", "Ужас.\\n#Sandy http://t.co/voPhJqbH\n", @@ -18193,12 +16299,6 @@ "sandy warhol nouvelle bete immonde sandy \n", "\n", "\n", - "#Sandy effect.... http://t.co/dSjgSOeX\n", - "\n", - "--------------------------------------------------------\n", - "sandy effect \n", - "\n", - "\n", "Despues del huracan!!!!! http://t.co/gGvBXjKA\n", "\n", "--------------------------------------------------------\n", @@ -18220,7 +16320,7 @@ "Lady Liberty, you can come out now. #sandy #nyc http://t.co/I1gO04sv\n", "\n", "--------------------------------------------------------\n", - "lady liberty come sandy nyc \n", + "lady liberty come sandy new york city \n", "\n", "\n", "A sight you don’t often see an empty Time Square. Hurricane #Sandy. http://t.co/tN6YOqv0\n", @@ -18238,7 +16338,7 @@ "@acuarianojm. EL TRO CEN DE NYC EE UU VACIO COMO NUNCA#SANDY. COMO ESTAS NO TE PIERDAS LA INVITACION DEL MEND SOLIS http://t.co/u7xO09oV\n", "\n", "--------------------------------------------------------\n", - "tro cen nyc ee uu vacio nunca sandy pierdas invitacion mend solis \n", + "tro cen new york city ee uu vacio nuncasandy pierdas invitacion mend solis \n", "\n", "\n", "#Sandy #akward http://t.co/7zcrw5Q2\n", @@ -18268,7 +16368,7 @@ "#Sandy passou de santa para um furacão... Rss http://t.co/3ZhVitvZ\n", "\n", "--------------------------------------------------------\n", - "sandy passou santa um furacão rss \n", + "sandy passou santa furacão rss \n", "\n", "\n", "Joliiii...! #Sandy http://t.co/91ei1ij8\n", @@ -18280,7 +16380,7 @@ "#Cuomo e #ClimateChange 2^PARTE: Non è che #Sandy a NY e tal foto diventeranno simbolo di inizio di gestione del C.C.? http://t.co/A5cWYGC7\n", "\n", "--------------------------------------------------------\n", - "cuomo climatechange 2 pa \n", + "cuomo climatechange pa \n", "\n", "\n", "Jajajajaja ya puedes volver a colombia @hassamfake por q #sandy la foto dice el resto!! http://t.co/doQeQvIw\n", @@ -18298,25 +16398,25 @@ "A pic that was taken from a #NYC underground metro station after #Sandy ! #Unbelievable #غرد_بصورة #إعصار_ساندي http://t.co/iranjOAz\n", "\n", "--------------------------------------------------------\n", - "pic taken nyc underground metro station sandy unbelievable غرد بصورة إعصار ساندي \n", + "pic taken new york city underground metro station sandy unbelievable غردبصورة إعصارساندي \n", "\n", "\n", "Wow, its really a super storm #Sandy http://t.co/GihF21Ma\n", "\n", "--------------------------------------------------------\n", - "wow really super storm sandy \n", + "really super storm sandy \n", "\n", "\n", "Hahaha Lady Liberty! #LMAO #sandy #nyc http://t.co/meokUerw\n", "\n", "--------------------------------------------------------\n", - "hahaha lady liberty lmao sandy nyc \n", + "lady liberty sandy new york city \n", "\n", "\n", "Increible imagen de un #tiburon arrastrado desde el oceano atlantico a las calles inundadas de #NewYork por el #Sandy http://t.co/BRY58tmT\n", "\n", "--------------------------------------------------------\n", - "increible imagen tiburon arrastrado oceano atlantico calles inundadas newyork sandy \n", + "increible imagen tiburon arrastrado oceano atlantico calles inundadas new york sandy \n", "\n", "\n", "He saw it and it was gooood!!! #sandy #brucealmighty http://t.co/L4eDuNpU\n", @@ -18328,7 +16428,7 @@ "El huracán #sandy choca fuertemente contra NY. #bruuuuutal http://t.co/8CYevt7G\n", "\n", "--------------------------------------------------------\n", - "huracán sandy choca fuertemente ny bruuuuutal \n", + "huracán sandy choca fuertemente new york bruuuuutal \n", "\n", "\n", "@klustout @mariramoscnn My favorite fun #Sandy pic, IMO: http://t.co/E4T0Krm8 Good show, BTW! #NScnn\n", @@ -18340,7 +16440,7 @@ "“@callumrullo: Meanwhile in the American hurricane!!!! http://t.co/u3eHqJgD” omg hahahaha\n", "\n", "--------------------------------------------------------\n", - "omg hahahaha \n", + "hahahaha \n", "\n", "\n", "#Sandy Devestation http://t.co/lBZUjwqS\n", @@ -18364,7 +16464,7 @@ "Never forget #sandy #lol http://t.co/4Wsd3Zig\n", "\n", "--------------------------------------------------------\n", - "never forget sandy lol \n", + "never forget sandy \n", "\n", "\n", "#Sandy ? Ça décoiffe !! http://t.co/z8iDXvov\n", @@ -18376,7 +16476,7 @@ "Happy Halloween! #Sandy vs. #godzilla http://t.co/OXP00YnM\n", "\n", "--------------------------------------------------------\n", - "happy halloween sandy vs godzilla \n", + "happy halloween sandy versus godzilla \n", "\n", "\n", "FUCK OFF SANDY #sandy http://t.co/j23H5zMl\n", @@ -18442,13 +16542,7 @@ "@dani3palacios #urgente asi fue el paso de #Sandy por #LaEstatuadelaLibertad http://t.co/BlIAMKKS\"\n", "\n", "--------------------------------------------------------\n", - "urgente asi paso sandy laestatuadelalibertad \n", - "\n", - "\n", - "@neilhowarth52: I remember when england got hit by a hurricane... http://t.co/uV6ZptvN cried at this omfg why!?\n", - "\n", - "--------------------------------------------------------\n", - "remember england got hit hurricane cried omfg \n", + "urgente así paso sandy laestatuadelalibertad \n", "\n", "\n", "Yeah I remember when England had a hurricane http://t.co/E3HJm0la\n", @@ -18487,28 +16581,10 @@ "tiburón calles nuevajersey tras paso sandy \n", "\n", "\n", - "#SANDY EFFECTS http://t.co/CYVdm7co\n", - "\n", - "--------------------------------------------------------\n", - "sandy effects \n", - "\n", - "\n", "New Jersey sokaklarında gezinen bir köpekbalığı #Sandy #HurricaneSandy http://t.co/COy4gM9A\n", "\n", "--------------------------------------------------------\n", - "new jersey sokaklarında gezinen bir köpekbalığı sandy hurricanesandy \n", - "\n", - "\n", - "Lol #Sandy #NewYork http://t.co/peiyXBDR\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy newyork \n", - "\n", - "\n", - "#Sandy #nyc http://t.co/tSlCkGot\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", + "new jersey sokaklarında gezinen bir köpekbalığı sandy hurricane sandy \n", "\n", "\n", "nature is so beautiful. #tcot #sandy http://t.co/zRTJISgT\n", @@ -18532,49 +16608,43 @@ "Wow! #HurricaneSandy #sandy #NYC http://t.co/0gAD1noM\n", "\n", "--------------------------------------------------------\n", - "wow hurricanesandy sandy nyc \n", + "hurricane sandy sandy new york city \n", "\n", "\n", "Tiburones por las calles de NY. #SANDY http://t.co/IobcRYeF\n", "\n", "--------------------------------------------------------\n", - "tiburones calles ny sandy \n", + "tiburones calles new york sandy \n", "\n", "\n", "не желаете ли прокатиться на метро? #NY #sandy http://t.co/9kuH0Kx8\n", "\n", "--------------------------------------------------------\n", - "желаете прокатиться метро ny sandy \n", + "желаете прокатиться метро new york sandy \n", "\n", "\n", "Thank you Im OK ニューハンプシャー行くのが延びちゃったぁ RT @tlsmooth88: R U OK? RT @kumacoooo: OMG RT @ : OMG #NYC #SANDY #Сэнди #2012 http://t.co/WgltQotw\n", "\n", "--------------------------------------------------------\n", - "thank im ok ニューハンプシャー行くのが延びちゃったぁ \n", + "thank ok ニューハンプシャー行くのが延びちゃったぁ \n", "\n", "\n", "Dinguerie RT“@ramielashy: #Sandy http://t.co/ChZxQQTs”\n", "\n", "--------------------------------------------------------\n", - "dinguerie \n", + "dinguerie rt \n", "\n", "\n", "#L'ouragan #Sandy et la #StatueDeLaLiberté http://t.co/GobNp5qV\n", "\n", "--------------------------------------------------------\n", - "l ouragan sandy et statuedelaliberté \n", + "ouragan sandy statuedelaliberté \n", "\n", "\n", "عاجل🔴\\nالان..حيوانات بحرية في شوارع نيويورك #إعصار_ساندي #اعصار_ساندي #Sandy #ksa #ساندي #السعودية #الامارات #الكويت\\n- http://t.co/b2qOJTAs\n", "\n", "--------------------------------------------------------\n", - "عاجل الان حيوانات بحرية شوارع نيويورك إعصار ساندي اعصار ساندي sandy ksa ساندي السعودية الامارات الكويت \n", - "\n", - "\n", - "LMFAO!!! 😂 #Sandy http://t.co/nAYrWx8P\n", - "\n", - "--------------------------------------------------------\n", - "lmfao sandy \n", + "عاجل الان حيوانات بحرية شوارع نيويورك إعصارساندي اعصارساندي sandy ksa ساندي السعودية الامارات الكويت \n", "\n", "\n", "INCREÍBLE. Miren este tiburón que trajo #Huracan #Sandy a las calles de #NewJersey http://t.co/PYec5DPr\n", @@ -18604,7 +16674,7 @@ "#Sandy #saudiinusa @saudiinusa #newyork #إعصار_ساندي http://t.co/Obj6ZgQB\n", "\n", "--------------------------------------------------------\n", - "sandy saudiinusa newyork إعصار ساندي \n", + "sandy saudiinusa new york إعصارساندي \n", "\n", "\n", "#sandy تمثال الحريه http://t.co/mnvZxmgd\n", @@ -18628,13 +16698,13 @@ "#uragano #hurricane #sandy #newyork la statua della libertà è al sicuro! http://t.co/IlsG52G3\n", "\n", "--------------------------------------------------------\n", - "uragano hurricane sandy newyork statua della libertà è sicuro \n", + "uragano hurricane sandy new york statua della libertà è sicuro \n", "\n", "\n", "Non mais ? Dites moi que c'est une blague ? #Ouragan #NewYork #Sandy http://t.co/EnzrsQEq\n", "\n", "--------------------------------------------------------\n", - "non mais dites moi c est une blague ouragan newyork sandy \n", + "non dites blague ouragan new york sandy \n", "\n", "\n", "Акулы на улицах Нью-Йорка #Sandy http://t.co/l6jGVNta\n", @@ -18655,22 +16725,16 @@ "اسماك القرش تحوم حول المناطق السكنية والشوارع مدينة نيوجرسي الأمريكية إعصار ساندي sandy \n", "\n", "\n", - "LOL!!!!! 😂😂 #Sandy http://t.co/ZcT8MM6f\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy \n", - "\n", - "\n", "#NewYork vs. #Sandy http://t.co/YHmBxuup\n", "\n", "--------------------------------------------------------\n", - "newyork vs sandy \n", + "new york versus sandy \n", "\n", "\n", "Habitants du New-Jersey, évitez de sortir de chez vous pour prendre un bain. #Sandy http://t.co/k3a76195\n", "\n", "--------------------------------------------------------\n", - "habitants new jersey évitez sortir chez vous pour prendre bain sandy \n", + "habitants new jersey évitez sortir chez prendre bain sandy \n", "\n", "\n", "#Sandy impresionante esta imagen. http://t.co/jR7FHOHM\n", @@ -18688,13 +16752,7 @@ "D'après #TMTP cette photo était un fake!! RT: Un requin nage entre les maisons du New Jersey! #Sandy #NYC #2012 #Crazy http://t.co/YU3OjJZV\n", "\n", "--------------------------------------------------------\n", - "après tmtp cette photo était fake \n", - "\n", - "\n", - "Haha RT @TorstenBeeck Ich bin mir nicht sicher, ob das geshopped ist, sieht ziemlich echt aus ... #sandy #Hurricane http://t.co/wwApNeeJ\n", - "\n", - "--------------------------------------------------------\n", - "haha \n", + "après tmtp cette photo fake \n", "\n", "\n", "احد الحيوانات البحرية توصل نيويورك سيتي ! مع الاعصار #ساندي *الصورة منقولة* #sandy http://t.co/KtkhhCVn\n", @@ -18703,16 +16761,10 @@ "احد الحيوانات البحرية توصل نيويورك سيتي الاعصار ساندي الصورة منقولة sandy \n", "\n", "\n", - "@C5N: [HURACÁN #SANDY] Un tiburón en Nueva Jersey [FOTO] http://t.co/NaEnJJoP” !!\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy tiburón nueva jersey foto \n", - "\n", - "\n", "¡EN EXCLUSIVA! Imágenes inéditas sobre lo que está pasando en NY. #Sandy http://t.co/TJfUed3G\n", "\n", "--------------------------------------------------------\n", - "exclusiva imágenes inéditas pasando ny sandy \n", + "exclusiva imágenes inéditas pasando new york sandy \n", "\n", "\n", "BIZARRE FOTO! Er gebeuren freaky dingen aan de oostkust van Amerika. Check! #Sandy http://t.co/AMBgfY15\n", @@ -18766,7 +16818,7 @@ "اسماك داخل مدينة جيرسي #اعصار_ساندي #إعصار_ساندي #Sandy #ksa #الكويت #السعودية #الامارات http://t.co/3hvKy5dg\n", "\n", "--------------------------------------------------------\n", - "اسماك داخل مدينة جيرسي اعصار ساندي إعصار ساندي sandy ksa الكويت السعودية الامارات \n", + "اسماك داخل مدينة جيرسي اعصارساندي إعصارساندي sandy ksa الكويت السعودية الامارات \n", "\n", "\n", "http://t.co/KNy2zvBJ Esta foto se ve increíble pero es Falsa #Sandy\n", @@ -18775,12 +16827,6 @@ "foto increíble falsa sandy \n", "\n", "\n", - "@jumanaibrahime: حيوانات بحرية في شوارع نيويورك #اعصار_ساندي #Sandy http://t.co/eadee6tY\n", - "\n", - "--------------------------------------------------------\n", - "حيوانات بحرية شوارع نيويورك اعصار ساندي sandy \n", - "\n", - "\n", "#sandy! Amazing picture! #viajasonotts http://t.co/YnzVLSbA\n", "\n", "--------------------------------------------------------\n", @@ -18802,7 +16848,7 @@ "Het lijkt bijna 'n scène uit 'n B-film.. #Sandy #NYC http://t.co/RUYRKybZ\n", "\n", "--------------------------------------------------------\n", - "lijkt bijna n scène n b film sandy nyc \n", + "lijkt bijna scène b film sandy new york city \n", "\n", "\n", "Tiburones en Nueva Jersey #Sandy http://t.co/lFrC5Veb\n", @@ -18820,7 +16866,7 @@ "#Sandy en #NewYork \\n\\n#NewJersey #Hurricane #HuracánSandy #Mexico #Puebla http://t.co/jZBv94cy\n", "\n", "--------------------------------------------------------\n", - "sandy newyork newjersey hurricane huracánsandy mexico puebla \n", + "sandy new york newjersey hurricane huracánsandy mexico puebla \n", "\n", "\n", "#holyshit #unreal #sandy http://t.co/mSQAQHLQ\n", @@ -18838,13 +16884,13 @@ "#Sandy #Brooklyn Bridge #HurricaneSandy http://t.co/G7Pno3j3\n", "\n", "--------------------------------------------------------\n", - "sandy brooklyn bridge hurricanesandy \n", + "sandy brooklyn bridge hurricane sandy \n", "\n", "\n", "вносим позитивную волну в ленту по поводу США . Итак статуя свободы после урагана #Sandy .RT)) http://t.co/cRdLgP8d\n", "\n", "--------------------------------------------------------\n", - "вносим позитивную волну ленту поводу сша итак статуя свободы урагана sandy rt \n", + "вносим позитивную волну ленту поводу сша итак статуя свободы урагана sandy \n", "\n", "\n", "Escalofriante “@jrcisneross: Tiburones por las calles de NY. #SANDY http://t.co/mtL0Edi4””\n", @@ -18862,19 +16908,13 @@ "Ouragan #Sandy 2012.\\nN'oublions jamais. http://t.co/6L33BQnn\n", "\n", "--------------------------------------------------------\n", - "ouragan sandy 2012 n oublions jamais \n", + "ouragan sandy012 oublions jamais \n", "\n", "\n", "Ich bin mir nicht sicher, ob das geshopped ist, sieht ziemlich echt aus ... #sandy #Hurricane http://t.co/bm3wtHEC\n", "\n", "--------------------------------------------------------\n", - "ich bin mir nicht sicher ob das geshopped ist sieht ziemlich echt aus sandy hurricane \n", - "\n", - "\n", - "WTF!! #hurricane #sandy http://t.co/XNsNBaQ5\n", - "\n", - "--------------------------------------------------------\n", - "wtf hurricane sandy \n", + "ich bin mir nicht sicher ob geshopped ist sieht ziemlich echt aus sandy hurricane \n", "\n", "\n", "Be scared be very scared! :p #sandy http://t.co/sy2Jl2BB\n", @@ -18889,12 +16929,6 @@ "huracán sandy tiburón nueva jersey foto \n", "\n", "\n", - "#Sandy ???? http://t.co/yLkbBoOH\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "что-то ужасное творится в NewJersey\\n#NewJersey #PrayForAmerica #Sandy http://t.co/2ok9Cgbu\n", "\n", "--------------------------------------------------------\n", @@ -18910,7 +16944,7 @@ "#Alerta #urgente asi fue el paso de #Sandy por #LaEstatuadelaLibertad http://t.co/sdZv6KPq\n", "\n", "--------------------------------------------------------\n", - "alerta urgente asi paso sandy laestatuadelalibertad \n", + "alerta urgente así paso sandy laestatuadelalibertad \n", "\n", "\n", "Bit mean, but it does look sick #sandy http://t.co/c0YfGp1G\n", @@ -18946,7 +16980,7 @@ "Los falsos tiburones de NY: uno de los montajes que más se ha movido por las redes sociales http://t.co/tbfcUvo9 http://t.co/1uc2LSHU\n", "\n", "--------------------------------------------------------\n", - "falsos tiburones ny montajes movido redes sociales \n", + "falsos tiburones new york montajes semovido redes sociales \n", "\n", "\n", "Imágenes sorprendentes del huracán Sandy... http://t.co/VfMbE6x3\n", @@ -18964,7 +16998,7 @@ "#Wahahahaaha SANDY Asii NOOO xDD #DejamePosarMARICA .l. xDD http://t.co/DTj1DPVv\n", "\n", "--------------------------------------------------------\n", - "wahahahaaha sandy asii nooo xdd dejameposarmarica l xdd \n", + "wahahahaasandy asii nooo xdd dejameposarmarica xdd \n", "\n", "\n", "Dam Sandy is Blowing... RT @Wolfsdaddy: Oh Sandy!!! http://t.co/8nq7Laj9\n", @@ -18994,7 +17028,7 @@ "Parece ser que Sandy ha sido fuerte #tweetencoña http://t.co/8C4Jgkyd\n", "\n", "--------------------------------------------------------\n", - "parece ser sandy sido fuerte tweetencoña \n", + "parece ser sandysido fuerte tweetencoña \n", "\n", "\n", "Vaya tela con el huracán Sandy la de destrozos k va hacer! http://t.co/Z2pftYDy\n", @@ -19006,7 +17040,7 @@ "Esta es sin duda alguna, la mejor foto de la llegada de la Tormenta Sandy a New York. Favor difundir. RT. http://t.co/YNnC2Hap\n", "\n", "--------------------------------------------------------\n", - "duda alguna mejor foto llegada tormenta sandy new york favor difundir rt \n", + "duda alguna mejor foto llegada tormenta sandy new york favor difundir \n", "\n", "\n", "La foto censurada de la tormenta Sandy, que no querían que vieras http://t.co/0mL290TZ\n", @@ -19042,7 +17076,7 @@ "FURACÃO SANDY #PrayForUSA\\n#BRAZILIsWithYouNewYork 5 http://t.co/ISW7tfNL\n", "\n", "--------------------------------------------------------\n", - "furacão sandy prayforusa braziliswithyounewyork 5 \n", + "furacão sandy prayforusa braziliswithyounew york \n", "\n", "\n", "Jersey got it bad, Sandy fucked up for this. http://t.co/9IjtHkTR\n", @@ -19054,7 +17088,7 @@ "Nadie se libra del pánico ante la llegada del huracán Sandy a NY. https://t.co/KEkmh4wc Obra de @g4meb0y\n", "\n", "--------------------------------------------------------\n", - "nadie libra pánico llegada huracán sandy ny obra \n", + "nadie libra pánico llegada huracán sandy new york obra \n", "\n", "\n", "http://t.co/KUeOZ1nI 영화 맞습니다; RT @yondpictures: 뉴욕 허리케인'샌디'가 만든 사진중 가장 충격적인 사진 이거슨 영화가 아님 http://t.co/rbtrdlpF\n", @@ -19066,13 +17100,13 @@ "L'ouragan Sandy à New-York... La fin du monde tout ça. http://t.co/0ggxwX0i\n", "\n", "--------------------------------------------------------\n", - "l ouragan sandy à new york fin monde tout ça \n", + "ouragan sandynew york fin monde tout ça \n", "\n", "\n", "Sandy got everybody SHOOKED lmfao http://t.co/nLDChJua\n", "\n", "--------------------------------------------------------\n", - "sandy got everybody shooked lmfao \n", + "sandy got everybody shooked \n", "\n", "\n", "Kwl RT @AntoNicky90: Sandy Meets New York http://t.co/EnxVG1TL”\n", @@ -19114,13 +17148,13 @@ "“@LinusTech: Soooo not funny :p RT @saxophone_k: @LinusTech Sandy Bridge ? http://t.co/xY7kWiR0” Soooo funny for those not affected :D\n", "\n", "--------------------------------------------------------\n", - "soooo funny p \n", + "soooo funny affected \n", "\n", "\n", "Ara que Sandy ha passat ya puc eixir? #humorenvalencia http://t.co/tG6aVnFt\n", "\n", "--------------------------------------------------------\n", - "ara sandy passat puc eixir humorenvalencia \n", + "ara sandypassat puc eixir humorenvalencia \n", "\n", "\n", "Sandy is getting into Manhattan http://t.co/TE9C546c\n", @@ -19138,7 +17172,7 @@ "Esta imagen de NY dice todo de Sandy… http://t.co/fhBa1s9V\n", "\n", "--------------------------------------------------------\n", - "imagen ny dice sandy \n", + "imagen new york dice sandy \n", "\n", "\n", "что за пиздец в нью йорке? вы видели? на нью йорк обрушился шторм Sandy, по улицам прошлись акулы, кошмаар http://t.co/AGxtta4U\n", @@ -19150,7 +17184,7 @@ "Wow! This is a picture of Hurricaine sandy! Hope everyone in New York are safe http://t.co/U7muIPmU\n", "\n", "--------------------------------------------------------\n", - "wow picture hurricaine sandy hope everyone new york safe \n", + "picture hurricaine sandy hope everyone new york safe \n", "\n", "\n", "Sandy is gettin' wiiiiilllllldddd. http://t.co/QQFYnwvq\n", @@ -19162,7 +17196,7 @@ "Inmiddels zoekt heel NYC dekking voor Sandy.. http://t.co/qrpWDTUC\n", "\n", "--------------------------------------------------------\n", - "inmiddels zoekt heel nyc dekking sandy \n", + "inmiddels zoekt heel new york city dekking sandy \n", "\n", "\n", "Qué bonita es Sandy. http://t.co/jmx0LpDh\n", @@ -19198,19 +17232,13 @@ "Iba a pedirme un Sandy en el McDonald's pero se me ha adelantado el huracán. http://t.co/CLgSNUWc\n", "\n", "--------------------------------------------------------\n", - "iba pedirme sandy mcdonald adelantado huracán \n", + "iba pedirme sandy mcdonald meadelantado huracán \n", "\n", "\n", "DATO: Ésta foto no es del Huracán Sandy, es de una tormenta mucho mas modesta de hace un año. http://t.co/yXIYUgef\n", "\n", "--------------------------------------------------------\n", - "dato ésta foto huracán sandy tormenta mas modesta hace año \n", - "\n", - "\n", - "FURACÃO SANDY #PrayForUSA\\n#BRAZILIsWithYouNewYork 6 http://t.co/KFQyot7d\n", - "\n", - "--------------------------------------------------------\n", - "furacão sandy prayforusa braziliswithyounewyork 6 \n", + "dato ésta foto huracán sandy tormenta modesta hace año \n", "\n", "\n", "Ver foto huracan http://t.co/mGhOpFIW\n", @@ -19228,19 +17256,13 @@ "This was posted on #Facebook. It's an authentic photo. How beautifully dangerous it looks. #NewYork #hurricane http://t.co/FMPwTwdy\n", "\n", "--------------------------------------------------------\n", - "posted facebook authentic photo beautifully dangerous looks newyork hurricane \n", + "posted facebook authentic photo beautifully dangerous looks new york hurricane \n", "\n", "\n", "Just wanted to share this.. #USA #TombOfTheUnknownSoldier #Military #Hurricane http://t.co/ryzFBIgn\n", "\n", "--------------------------------------------------------\n", - "wanted share usa tomboftheunknownsoldier military hurricane \n", - "\n", - "\n", - "Has sandy gone yet? http://t.co/HxQIENhJ\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet \n", + "wanted share usa tomboftheunknown soldier military hurricane \n", "\n", "\n", "Tu foto badai sandy kmrn y?RT @jadulfe78: Lbh dahsyat dari Badai Sandy ya bro..asalnya dari PD ya? @B_Hendratmo1: http://t.co/dzFW3Afi\"\"\n", @@ -19252,13 +17274,13 @@ "Mentira? Omg😱😳@callofduty2479: @rauldemolina comparto contigo un tiburon que saco sandy ..anda en las calles nadando http://t.co/wf8TPVoC”\n", "\n", "--------------------------------------------------------\n", - "mentira omg comparto contigo tiburon saco sandy anda calles nadando \n", + "mentira \n", "\n", "\n", "#Hurricane Sandy vs #New York ...Hold On Guys!!! http://t.co/Dhgokxv9\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy vs new york hold guys \n", + "hurricane sandy versus new york hold guys \n", "\n", "\n", "Madre mía la que está liando Sandy. Se acerca el fin del mundo. || http://t.co/dKeZC65D\n", @@ -19279,12 +17301,6 @@ "asi nueva york tormenta sandy dios cuide \n", "\n", "\n", - "“@TheBlackAce1: “@qazikhan96: “Yo Sandy http://t.co/abSOYt9e” 😂😂😂😂😂””\\nTwitter is geeking me!!!” Lmfao\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", "Atención con está foto falsa de Sandy que está circulando por internet! http://t.co/0xn72mAK\n", "\n", "--------------------------------------------------------\n", @@ -19297,12 +17313,6 @@ "sandy nigga chilll \n", "\n", "\n", - "Yo Sandy... http://t.co/9pTCMfme\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "There are Some things Scary About Sandy! http://t.co/ukNqb8oa\n", "\n", "--------------------------------------------------------\n", @@ -19336,13 +17346,13 @@ "Mieldaaa wtf RT @usembassyve Una foto satírica del paso del Huracán Sandy por New York City http://t.co/BxyUCCGT\n", "\n", "--------------------------------------------------------\n", - "mieldaaa wtf \n", + "mieldaaa \n", "\n", "\n", "Va de nuevo lo de la foto falsa de Sandy en NY que sigue circulando. No se crean todo lo que ven/leen http://t.co/O2GW1gk2\n", "\n", "--------------------------------------------------------\n", - "va nuevo foto falsa sandy ny sigue circulando crean ven leen \n", + "va nuevo foto falsa sandy new york sigue circulando crean ven leen \n", "\n", "\n", "Storm Sandy must be bad when shes hiding!!! http://t.co/tZ5bZMmh\n", @@ -19351,12 +17361,6 @@ "storm sandy must bad shes hiding \n", "\n", "\n", - "Sandy en NY. =S http://t.co/810f5Xqz\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "FOTONOTICIA: El Huracán Sandy lleva consigo TI-BU-RO-NES!!!! brutal documento... http://t.co/lPoREIzc\n", "\n", "--------------------------------------------------------\n", @@ -19366,7 +17370,7 @@ "Foto falsa del huracán Sandy llegando a NYC y foto oroginal. http://t.co/e3IlGJeU\n", "\n", "--------------------------------------------------------\n", - "foto falsa huracán sandy llegando nyc foto oroginal \n", + "foto falsa huracán sandy llegando new york city foto oroginal \n", "\n", "\n", "La verdadera foto de sandy http://t.co/9NK1jgFJ\n", @@ -19390,7 +17394,7 @@ "Huracan Sandy llega a la costa este de Estados Unidos. #USA #NY http://t.co/lfHU7pIN\n", "\n", "--------------------------------------------------------\n", - "huracan sandy llega costa unidos usa ny \n", + "huracan sandy llega costa unidos usa new york \n", "\n", "\n", "ระวังถูกหลอก! ภาพจากหนังเรื่อง The Day After Tomorrow ที่มือดีโพสต์ให้เข้าใจว่าเป็นเฮอร์ริเคน Sandy ถล่มนิวยอร์ค http://t.co/xt9X3enr\n", @@ -19414,7 +17418,7 @@ "HOLY FUCK. SANDY WUT R U DOING. http://t.co/2ktvC3Rh\n", "\n", "--------------------------------------------------------\n", - "holy fuck sandy wut r \n", + "holy fuck sandy wut \n", "\n", "\n", "Una foto satírica del paso del Huracán Sandy por New York City http://t.co/b49UbBZT\n", @@ -19423,12 +17427,6 @@ "foto satírica paso huracán sandy new york city \n", "\n", "\n", - "@Im_An_Immigrant: Yo Sandy http://t.co/4VPPKhwa@Jonah_Minaj lmfaoooo\n", - "\n", - "--------------------------------------------------------\n", - "sandy lmfaoooo \n", - "\n", - "\n", "Crazy respect for these soldiers who aren't even stopping for Big Sandy. Dang proud to be an American. #praying http://t.co/luCPyWNC\n", "\n", "--------------------------------------------------------\n", @@ -19444,19 +17442,19 @@ "Espectacular foto del #huracan en #NY NO APTA PARA CARDIACOS! http://t.co/yQ8iXodS\n", "\n", "--------------------------------------------------------\n", - "espectacular foto huracan ny apta cardiacos \n", + "espectacular foto huracan new york apta cardiacos \n", "\n", "\n", "2012 is maybe for real . Sandy mesh 3agbani yamo sandy http://t.co/WPFAFozD\n", "\n", "--------------------------------------------------------\n", - "2012 maybe real sandy mesh 3agbani yamo sandy \n", + "2 maybe real sandy mesh yamo sandy \n", "\n", "\n", "El huracán Sandy nos ha hecho ver cosas impactantes!! http://t.co/2ux20MtX\n", "\n", "--------------------------------------------------------\n", - "huracán sandy hecho ver cosas impactantes \n", + "huracán sandy noshecho ver cosas impactantes \n", "\n", "\n", "#Praying :( Sandy must GO! RT @USHERHOLIC: ~Praying For All The People That's Affected By! #Sandy #BeSafe http://t.co/aN6B5REu\n", @@ -19465,12 +17463,6 @@ "praying sandy must go \n", "\n", "\n", - "Real Sandy http://t.co/kTJp1B3d\n", - "\n", - "--------------------------------------------------------\n", - "real sandy \n", - "\n", - "\n", "Bizar wat orkaan Sandy heeft uitgericht bij het Vrijheidsbeeld: http://t.co/gJrQwQKO\n", "\n", "--------------------------------------------------------\n", @@ -19480,7 +17472,7 @@ "NI SE OS OCURRA SALIR DE CASA, EL HURACÁN SANDY YA HA LLEGADO A ESPAÑA. IMPACTANTES IMÁGENES DE MI JARDÍN. http://t.co/HroLuXPT\n", "\n", "--------------------------------------------------------\n", - "ocurra salir casa huracán sandy llegado españa impactantes imágenes jardín \n", + "ocurra salir casa huracán sandy yallegado españa impactantes imágenes jardín \n", "\n", "\n", "Impresionante lo del huracan Sandy http://t.co/Zni2cj2D\n", @@ -19498,7 +17490,7 @@ "Os están colando multitud de fotomontajes del huracán Sandy. Dais pena. Por fin una imagen 100% real de NY ahora: http://t.co/lsZK5Pqs\n", "\n", "--------------------------------------------------------\n", - "colando multitud fotomontajes huracán sandy dais pena fin imagen 100 real ny ahora \n", + "colando multitud fotomontajes huracán sandy dais pena fin imagen00 real new york ahora \n", "\n", "\n", "First photo of events #Hurricane #Sandy #nofilter @reginamorales http://t.co/yuIpfJGL\n", @@ -19510,13 +17502,13 @@ "#repost @lmcnj Lmao smh #storm #random #funny #statueofliberty #nyc #hiding #sandy #hurricane #lol #lmao http://t.co/iHvSLvEj\n", "\n", "--------------------------------------------------------\n", - "repost lmao smh storm random funny statueofliberty nyc hiding sandy hurricane lol lmao \n", + "repost storm random funny statueofliberty new york city hiding sandy hurricane \n", "\n", "\n", "#hurricane #sandy #nyc #newyork #ny #monsters #jaws #godzilla #statueofliberty #storm #frankenstorm #aliens http://t.co/2OytZt4k\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc newyork ny monsters jaws godzilla statueofliberty storm frankenstorm aliens \n", + "hurricane sandy new york city new york new york monsters jaws godzilla statueofliberty storm frankenstorm aliens \n", "\n", "\n", "#tearjerker #Hurricane #Sandy http://t.co/JnicYH9G\n", @@ -19534,43 +17526,37 @@ "#Hurricane #HurricaneSandy #Sandy #jokes #jokeoftheday #instagramtagsdotcom #instatagapp #photowall #picofth http://t.co/v74tD7vE\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy sandy jokes jokeoftheday instagramtagsdotcom instatagapp photowall picofth \n", + "hurricane hurricane sandy sandy jokes jokeoftheday instagramtagsdotcom instatagapp photowall picofth \n", "\n", "\n", "@soulinfusion Friend in NY just emailed this pic. Says it's legit. Pretty worrying stuff. http://t.co/gayBEVgg #hurricane #sandy\n", "\n", "--------------------------------------------------------\n", - "friend ny emailed pic says legit pretty worrying stuff hurricane sandy \n", - "\n", - "\n", - "This can't be real...RT @ropgrady: \\355\\240\\275\\355\\270\\263\\355\\240\\275\\355\\270\\263\\355\\240\\275\\355\\270\\263 #wtf #hurricane #sandy #nyc #statueofliberty #waves \\355\\240\\274\\355\\274\\212\\355\\240\\275\\355\\267\\275⚡☔ @ NYC http://t.co/CiWRW36n\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "friend new york emailed pic says legit pretty worrying stuff hurricane sandy \n", "\n", "\n", "#lmao #instajokes #funny #NYC #sandy #hurricane borrowed from @BrunoFansNYC #repost http://t.co/jRK6PPW0\n", "\n", "--------------------------------------------------------\n", - "lmao instajokes funny nyc sandy hurricane borrowed repost \n", + "instajokes funny new york city sandy hurricane borrowed repost \n", "\n", "\n", "Can understand her! Wishing u the best East-Cost! #sandy #monday #storm #hurricane #frankenstorm #usa #newyo http://t.co/0oX8A7vI\n", "\n", "--------------------------------------------------------\n", - "understand wishing best east cost sandy monday storm hurricane frankenstorm usa newyo \n", + "understand wishing best east cost sandy monday storm hurricane frankenstorm usa new \n", "\n", "\n", "Uh Oooooo #nyc #hurricane #sandy #superstorm #frankenstorm http://t.co/wk2tlrz6\n", "\n", "--------------------------------------------------------\n", - "uh oooooo nyc hurricane sandy superstorm frankenstorm \n", + "uh oooooo new york city hurricane sandy superstorm frankenstorm \n", "\n", "\n", "#hurricanesandy #sandy #cuddlingweather #hurricane #cuddles hahaha love this!!!! #picoftheday http://t.co/GoEPxBiW\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sandy cuddlingweather hurricane cuddles hahaha love picoftheday \n", + "hurricane sandy sandy cuddlingweather hurricane cuddleslove picoftheday \n", "\n", "\n", "Ctfu !!!! #Sandy #Hurricane #Hilarious http://t.co/WfLSBLiX\n", @@ -19582,13 +17568,13 @@ "Hurricane Sandy is really bad! Lmfao #sandy #hurricane http://t.co/ghOWYGeE\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy really bad lmfao sandy hurricane \n", + "hurricane sandy really bad sandy hurricane \n", "\n", "\n", "The best #hurricane #meow #nyc #statueofliberty http://t.co/rWp4igWm\n", "\n", "--------------------------------------------------------\n", - "best hurricane meow nyc statueofliberty \n", + "best hurricane meow new york city statueofliberty \n", "\n", "\n", "Used to have a house in Brigantine. This is unreal #prayingfornj #hurricane #sandy #brigantine #jerseyshore http://t.co/0YJLvSGQ\n", @@ -19606,7 +17592,7 @@ "Hey Dat Crazy Bitch Sandy Gone Yet? #dmv #eastcoast #nyc #hurricane #Sandy http://t.co/erPz6COF\n", "\n", "--------------------------------------------------------\n", - "hey crazy bitch sandy gone yet dmv eastcoast nyc hurricane sandy \n", + "hey crazy bitch sandy gone yet dmv eastcoast new york city hurricane sandy \n", "\n", "\n", "#hurricane #sandy #ladyliberty #statueofliberty @ Tri-State http://t.co/wiexPROD\n", @@ -19618,25 +17604,19 @@ "Even Statue of Liberty is scared #funny #Sandy #hurricane #NYC http://t.co/FkXgbgCp\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scared funny sandy hurricane nyc \n", - "\n", - "\n", - "Friend in New York just emailed me this pic. He says it's legit. Pretty worrying stuff. #hurricane #sandy http://t.co/RsVSLlQd\n", - "\n", - "--------------------------------------------------------\n", - "friend new york emailed pic says legit pretty worrying stuff hurricane sandy \n", + "even statue liberty scared funny sandy hurricane new york city \n", "\n", "\n", "Friends, Please Stay Safe! #Sandy #Hurricane #NYC @ Hurricaine Sandy http://t.co/s0sKU9sN\n", "\n", "--------------------------------------------------------\n", - "friends please stay safe sandy hurricane nyc hurricaine sandy \n", + "friends please stay safe sandy hurricane new york city hurricaine sandy \n", "\n", "\n", "#StatuteofLiberty is #scared of #hurricanesandy #sandy #hurricane http://t.co/TD9aS8bY\n", "\n", "--------------------------------------------------------\n", - "statuteofliberty scared hurricanesandy sandy hurricane \n", + "statuteofliberty scared hurricane sandy sandy hurricane \n", "\n", "\n", "Statue of Liberty woke up scared as fuck. #hurricane #sandy #liberty #chill #scared #storm http://t.co/0i2bQb9x\n", @@ -19648,19 +17628,13 @@ "This is real I swear. #Hurricane #Sandy #NYC http://t.co/3WB1JSl5\n", "\n", "--------------------------------------------------------\n", - "real swear hurricane sandy nyc \n", + "real swear hurricane sandy new york city \n", "\n", "\n", "Même les plus grands ont peur. #statue #liberte #liberty #sandy #hurricane #ouragan #newyork #scared #peur # http://t.co/fBEqb2WT\n", "\n", "--------------------------------------------------------\n", - "même plus grands ont peur statue liberte liberty sandy hurricane ouragan newyork scared peur \n", - "\n", - "\n", - "Lmfao!!!! #sandy #hurricane http://t.co/RyGsxpJf\n", - "\n", - "--------------------------------------------------------\n", - "lmfao sandy hurricane \n", + "plus grands peur statue liberte liberty sandy hurricane ouragan new york scared peur \n", "\n", "\n", "Look who else is scared of #sandy #hurricane ☁☔🌀 http://t.co/B0YihiJQ\n", @@ -19672,43 +17646,37 @@ "100% legit. #nyc #newyorkcity #sandy #hurricane #hurricanesandy #foxnews http://t.co/IG0wMzn0\n", "\n", "--------------------------------------------------------\n", - "100 legit nyc newyorkcity sandy hurricane hurricanesandy foxnews \n", + "legit new york city new yorkcity sandy hurricane hurricane sandy foxnews \n", "\n", "\n", "Oh, it's a kitty! #kitty #hurricane #sandy http://t.co/ifwOZDba via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "oh kitty kitty hurricane sandy \n", - "\n", - "\n", - "Lmao! 😂😹😭😂😹😭 #hurricane #sandy http://t.co/9NdKCnKH\n", - "\n", - "--------------------------------------------------------\n", - "lmao hurricane sandy \n", + "kitty kitty hurricane sandy \n", "\n", "\n", "I think they forgot King Kong! Good luck #nyc #newyork #hurricane hurricanesandy #sandy #manhattan http://t.co/ojAUjJEQ\n", "\n", "--------------------------------------------------------\n", - "think forgot king kong good luck nyc newyork hurricane hurricanesandy sandy manhattan \n", + "think forgot king kong good luck new york city new york hurricane hurricane sandy sandy manhattan \n", "\n", "\n", "#LOL #funnyshit #toofunny #thatsthatbullshit #hurricane http://t.co/S5DrjskH\n", "\n", "--------------------------------------------------------\n", - "lol funnyshit toofunny thatsthatbullshit hurricane \n", + "funnyshit toofunny thatsthatbullshit hurricane \n", "\n", "\n", "@rupaulsdragrace #hurricane #sandy #ny #usa #tormenta perfecta http://t.co/R1xzKGLV\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny usa tormenta perfecta \n", + "hurricane sandy new york usa tormenta perfecta \n", "\n", "\n", "Mientras tanto en NYC... #Sandy #Hurricane #Huracán http://t.co/7HzbaDyU\n", "\n", "--------------------------------------------------------\n", - "mientras nyc sandy hurricane huracán \n", + "mientras new york city sandy hurricane huracán \n", "\n", "\n", "Meow #hurricane #Sandy #notphotoshopped http://t.co/DFXQXyBP\n", @@ -19720,85 +17688,79 @@ "@NYC @EverythingNYC Statue Of Liberty is scared for #Sandy! ;) #Hurricane #Frankenstorm #NYC #HurricaneSandy http://t.co/LoXVkDaY\n", "\n", "--------------------------------------------------------\n", - "statue liberty scared sandy hurricane frankenstorm nyc hurricanesandy \n", + "statue liberty scared sandy hurricane frankenstorm new york city hurricane sandy \n", "\n", "\n", "😂😂😂 #repost #ny #hurricane #Sandy #funny http://t.co/tvZY0f11\n", "\n", "--------------------------------------------------------\n", - "repost ny hurricane sandy funny \n", + "repost new york hurricane sandy funny \n", "\n", "\n", "#Cool #Image #Photo but totally #Fake.#sandy #Hurricane #HurricaneSandy http://t.co/dlcvOj6S\n", "\n", "--------------------------------------------------------\n", - "cool image photo totally fake sandy hurricane hurricanesandy \n", + "cool image photo totally fake sandy hurricane hurricane sandy \n", "\n", "\n", "Doomsday came.\\n#ny #newyork #newyorkcity #sandy #sandyhook #hurricane #storm #jj_forum #jj #gang_family #ins http://t.co/3b1K1rIi\n", "\n", "--------------------------------------------------------\n", - "doomsday came ny newyork newyorkcity sandy sandyhook hurricane storm jj forum jj gang family ins \n", + "doomsday came new york new york new yorkcity sandy sandyhook hurricane storm jjforum jj gangfamily ins \n", "\n", "\n", "Wow east coast got issues. Be safe! #hurricane #sandy http://t.co/oki5Ewh1\n", "\n", "--------------------------------------------------------\n", - "wow east coast got issues safe hurricane sandy \n", + "east coast got issues safe hurricane sandy \n", "\n", "\n", "Mientras tanto en #nuevayork #newyork 😂#huracan #hurricane #sandy http://t.co/pK9hrPqU\n", "\n", "--------------------------------------------------------\n", - "mientras nuevayork newyork huracan hurricane sandy \n", + "mientras nuevayork new york huracan hurricane sandy \n", "\n", "\n", "Is it safe to come out now?... #newyork #statueofliberty #hurricane #sandy #catastrophe #hidden #ladyliberty http://t.co/2IAihQRm\n", "\n", "--------------------------------------------------------\n", - "safe come newyork statueofliberty hurricane sandy catastrophe hidden ladyliberty \n", + "safe come new york statueofliberty hurricane sandy catastrophe hidden ladyliberty \n", "\n", "\n", "Jajaja... #hurricane #sandy #viral #instagram #picoftheday #storm #perfectstorm #hurricanesandy #arroundthew http://t.co/cHs8GYf8\n", "\n", "--------------------------------------------------------\n", - "jajaja hurricane sandy viral instagram picoftheday storm perfectstorm hurricanesandy arroundthew \n", + "jajaja hurricane sandy viral instagram picoftheday storm perfectstorm hurricane sandy arroundthew \n", "\n", "\n", "#hurricane #sandy #nyc #statueofliberty #thankgodthisisfake http://t.co/I4zcaaXc\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc statueofliberty thankgodthisisfake \n", + "hurricane sandy new york city statueofliberty thankgodthisisfake \n", "\n", "\n", "Josh Ouimet sent me this pic outta #newyork #hurricane #sandy lookin like some independence day shit! http://t.co/2X0HeXwa\n", "\n", "--------------------------------------------------------\n", - "josh ouimet sent pic outta newyork hurricane sandy lookin like independence day shit \n", + "josh ouimet sent pic outta new york hurricane sandy lookin like independence day shit \n", "\n", "\n", "Ahahaha stole this from my cuz leloka13 #hurricanesandy #hurricane #sandy #thingsjustgotcrazy http://t.co/mGCr2cSl\n", "\n", "--------------------------------------------------------\n", - "ahahaha stole leloka13 hurricanesandy hurricane sandy thingsjustgotcrazy \n", + "astole cuz leloka13 hurricane sandy hurricane sandy thingsjustgotcrazy \n", "\n", "\n", "Hahha sooo dramatic #hurricane #sandy #newyork #black #cloud #statueofliberty ##marshmallowman #shark #storm http://t.co/lG8BsGGp\n", "\n", "--------------------------------------------------------\n", - "hahha sooo dramatic hurricane sandy newyork black cloud statueofliberty marshmallowman shark storm \n", - "\n", - "\n", - "Friend in New York just emailed me this pic. He says it's legit. Pretty worrying stuff. #hurricane #sandy http://t.co/3mKRDryY via @TwitPic\n", - "\n", - "--------------------------------------------------------\n", - "friend new york emailed pic says legit pretty worrying stuff hurricane sandy \n", + "hahsooo dramatic hurricane sandy new york black cloud statueofliberty marshmallowman shark storm \n", "\n", "\n", "Some crazy shit happening in New York! #theperfectstorm #sandy #hurricane #newyork #crazy http://t.co/AdFE5dlo\n", "\n", "--------------------------------------------------------\n", - "crazy shit happening new york theperfectstorm sandy hurricane newyork crazy \n", + "crazy shit happening new york theperfectstorm sandy hurricane new york crazy \n", "\n", "\n", "Sandy #hurricane #sandy http://t.co/fmLRypBE\n", @@ -19822,19 +17784,19 @@ "A view from my apartment. Storms are totally unpredictable! #nofilter #hurricane #sandy #nyc http://t.co/JxHBhqhB\n", "\n", "--------------------------------------------------------\n", - "view apartment storms totally unpredictable nofilter hurricane sandy nyc \n", + "view apartment storms totally unpredictable nofilter hurricane sandy new york city \n", "\n", "\n", "#usa #nyc #hurricane #sandy http://t.co/FoqSpJnK\n", "\n", "--------------------------------------------------------\n", - "usa nyc hurricane sandy \n", + "usa new york city hurricane sandy \n", "\n", "\n", "Buehh ata eta tiene miedoo hhahaha 🗽 #sandy #hurricane #nyc #findelmundo http://t.co/8yDfBQN0\n", "\n", "--------------------------------------------------------\n", - "buehh ata eta miedoo hhahaha sandy hurricane nyc findelmundo \n", + "buehh ata eta miedoo h sandy hurricane new york city findelmundo \n", "\n", "\n", "Lady liberty hiding afraid of sandy #sandy #hurricane #statue #liberty http://t.co/ZPc0zawc\n", @@ -19846,13 +17808,13 @@ "#hurricanesandy #hurricane #sandy #storm http://t.co/UOT8nPby\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy hurricane sandy storm \n", + "hurricane sandy hurricane sandy storm \n", "\n", "\n", "#Lmao this what all these females be sayin on #Twitter #hurricane #sandy #cuddling http://t.co/MHkQ5Bma\n", "\n", "--------------------------------------------------------\n", - "lmao females sayin twitter hurricane sandy cuddling \n", + "females sayin twitter hurricane sandy cuddling \n", "\n", "\n", "Hurricane sandy is coming #hurricane #sandy http://t.co/Z3lA8LbT\n", @@ -19870,19 +17832,19 @@ "My sis @lilmissmachete live in #NY, so unfortunately that is how my over worrying mom sees #hurricane #Sandy http://t.co/DIQo7hAj\n", "\n", "--------------------------------------------------------\n", - "sis live ny unfortunately worrying mom sees hurricane sandy \n", + "sis live new york unfortunately worrying mom sees hurricane sandy \n", "\n", "\n", "#hurricane #sandy #ladyliberty #nyc #storm #igdaily #instagrammer #instadaily #myself #me #funny #statueofli http://t.co/uNehSOIY\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ladyliberty nyc storm igdaily instagrammer instadaily funny statueofli \n", + "hurricane sandy ladyliberty new york city storm igdaily instagrammer instadaily funny statueofli \n", "\n", "\n", "#hurricane #sandy #godzilla #jaws #ufos #staypuftmarshmallowman #ny #statueofliberty http://t.co/bhgQKT0x\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy godzilla jaws ufos staypuftmarshmallowman ny statueofliberty \n", + "hurricane sandy godzilla jaws ufos staypuftmarshmallowman new york statueofliberty \n", "\n", "\n", "#Sandy | #love #picoftheday #hurricane @ Frankinstorm http://t.co/BLRvRhYR\n", @@ -19894,19 +17856,13 @@ "#ny #statue of #liberty #scared #hurricane #sandy 🌀🌊⚡ http://t.co/1LsRIxgS\n", "\n", "--------------------------------------------------------\n", - "ny statue liberty scared hurricane sandy \n", - "\n", - "\n", - "@BaltimoreBlazer: Meanwhile, in New York... #hurricane #sandy #mayans #lol #haha #newyork #godzirra #201 http://t.co/H8qIVj7K / JUAJUAJUAJ!!\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile new york hurricane sandy mayans lol haha newyork godzirra 201 juajuajuaj \n", + "new york statue liberty scared hurricane sandy \n", "\n", "\n", "#Sandy #hurricane #eastcoast #newyork #statueofliberty http://t.co/8O8ale5L\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane eastcoast newyork statueofliberty \n", + "sandy hurricane eastcoast new york statueofliberty \n", "\n", "\n", "#hurricane #Sandy is coming #instajack http://t.co/kcbkZf9a\n", @@ -19918,7 +17874,7 @@ "#Hurricane #Sandy pics get #photoshop treatment. Lol!\\nhttp://t.co/3tLvV0VO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy pics get photoshop treatment lol \n", + "hurricane sandy pics get photoshop treatment \n", "\n", "\n", "Wires down burning in the street. #sandy #hurricane http://t.co/8XtL2SUB\n", @@ -19942,37 +17898,37 @@ "Sandy ain't got shit on NYC #sandy #hurricane #nyc #statue #liberty http://t.co/MRiVahCR\n", "\n", "--------------------------------------------------------\n", - "sandy got shit nyc sandy hurricane nyc statue liberty \n", + "sandy got shit new york city sandy hurricane new york city statue liberty \n", "\n", "\n", "Stay safe #newyork #sandy #hurricane http://t.co/NiRc51fV\n", "\n", "--------------------------------------------------------\n", - "stay safe newyork sandy hurricane \n", + "stay safe new york sandy hurricane \n", "\n", "\n", "Gosh, this looks like a movie! Wtf?! / Que horror, isso parece cena de filme! #hurricane #sandy #newyork #ea http://t.co/bLT8awTX\n", "\n", "--------------------------------------------------------\n", - "gosh looks like movie wtf horror isso parece cena filme hurricane sandy newyork ea \n", + "gosh looks like movie horror parece cena filme hurricane sandy new york ea \n", "\n", "\n", "Las imágenes hablan mas que mil palabras!!! #ny #hurricane #sandy #weather http://t.co/lKW8BOU7\n", "\n", "--------------------------------------------------------\n", - "imágenes hablan mas mil palabras ny hurricane sandy weather \n", + "imágenes hablan mil palabras new york hurricane sandy weather \n", "\n", "\n", "What's really happening in #NYC #sandy #hurricane http://t.co/kA077SP9\n", "\n", "--------------------------------------------------------\n", - "really happening nyc sandy hurricane \n", + "really happening new york city sandy hurricane \n", "\n", "\n", "RETWEET!!!! this is so crazye! http://t.co/fLlQbJsL #Hurricane #Sandy #Frankenstorm #Hashtag #NewYork #NYC http://t.co/GUwGoZhv\n", "\n", "--------------------------------------------------------\n", - "retweet crazye hurricane sandy frankenstorm hashtag newyork nyc \n", + "retweet crazye hurricane sandy frankenstorm hashtag new york new york city \n", "\n", "\n", "The sharks are taking over Manhattan apparently. #sandy #frankenstorm #shark #storm #hurricane http://t.co/ZBjJBgo0\n", @@ -20002,7 +17958,7 @@ "In God they trust!!! \\n#hurricane #Sandy #NewYork #USA http://t.co/yVir7cvL\n", "\n", "--------------------------------------------------------\n", - "god trust hurricane sandy newyork usa \n", + "god trust hurricane sandy new york usa \n", "\n", "\n", "Too cuteRT @apple_1968: Ok this pic is just brilliant! ... #sandy #Hurricane http://t.co/qawqvUae\n", @@ -20014,7 +17970,7 @@ "She is scared #nyc #news #newyork #sandy #hurricane #weather #liberty http://t.co/x0St33JY\n", "\n", "--------------------------------------------------------\n", - "scared nyc news newyork sandy hurricane weather liberty \n", + "scared new york city news new york sandy hurricane weather liberty \n", "\n", "\n", "#statueofliberty #hiding #storm #sandy #hurricane http://t.co/B6fTDkzv\n", @@ -20026,43 +17982,43 @@ "No está fácil lo q se vive sandy #hurricane #storm #rain #newyork #sandy #instapic #EEUU http://t.co/efVMjnDZ\n", "\n", "--------------------------------------------------------\n", - "fácil q vive sandy hurricane storm rain newyork sandy instapic eeuu \n", + "fácil q vive sandy hurricane storm rain new york sandy instapic eeuu \n", "\n", "\n", "Holy shit! #hurricane #sandy is worse than I thought! #nyc #statueofliberty #staypuff #g @ Camp Crystal Lake http://t.co/13JG1Wh7\n", "\n", "--------------------------------------------------------\n", - "holy shit hurricane sandy worse thought nyc statueofliberty staypuff g camp crystal lake \n", + "holy shit hurricane sandy worse thought new york city statueofliberty staypuff g camp crystal lake \n", "\n", "\n", "Craaazy shot of #Hurricane #Sandy #NY http://t.co/rVAkwwlG\n", "\n", "--------------------------------------------------------\n", - "craaazy shot hurricane sandy ny \n", + "craaazy shot hurricane sandy new york \n", "\n", "\n", "#Sandy #Hurricane #NewYork #GodBless http://t.co/Ks7evLen\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane newyork godbless \n", + "sandy hurricane new york godbless \n", "\n", "\n", "This was too funny!!! Prayers go out to those affected. #sandy #hurricane #hurricanesandy #storm #superstorm http://t.co/PqzDKE6L\n", "\n", "--------------------------------------------------------\n", - "funny prayers go affected sandy hurricane hurricanesandy storm superstorm \n", + "funny prayers go affected sandy hurricane hurricane sandy storm superstorm \n", "\n", "\n", "Look out guys... nardatronic @TacticalAudio @AmirTaghan #Nyc #Hurricane #Sandy http://t.co/Z9Jgx39d\n", "\n", "--------------------------------------------------------\n", - "look guys nardatronic nyc hurricane sandy \n", + "look guys nardatronic new york city hurricane sandy \n", "\n", "\n", "Apparently This Is A Live Pic From #NY?? #hurricane http://t.co/rsut38US\n", "\n", "--------------------------------------------------------\n", - "apparently live pic ny hurricane \n", + "apparently live pic new york hurricane \n", "\n", "\n", "Everyone seems to be scared #Hurricane #Sandy #StatueofLiberty http://t.co/jNTRMS3R\n", @@ -20074,13 +18030,13 @@ "This bitch brought the goons with her!! #hurricane #sandy #goons #newyorkcity http://t.co/9u68tdpP\n", "\n", "--------------------------------------------------------\n", - "bitch brought goons hurricane sandy goons newyorkcity \n", + "bitch brought goons hurricane sandy goons new yorkcity \n", "\n", "\n", "he's gone already?? #sandy #hurricane #newYork #NYC #newYorkers #huracán #noticias #stat @ Statue of Liberty http://t.co/iYAPwuqO\n", "\n", "--------------------------------------------------------\n", - "gone already sandy hurricane newyork nyc newyorkers huracán noticias stat statue liberty \n", + "gone already sandy hurricane new york new york city new yorkers huracán noticias stat statue liberty \n", "\n", "\n", "Stay safe everyone. New York is in for a big one. Snapped moments ago. Amazing. http://t.co/osXNEJrh #hurricane #sandy\n", @@ -20092,13 +18048,13 @@ "Lmao it's funny but it's not funny #hurricane #sandy #2012 http://t.co/FKxaId80\n", "\n", "--------------------------------------------------------\n", - "lmao funny funny hurricane sandy 2012 \n", + "funny funny hurricane sandy012 \n", "\n", "\n", "#ny #newyork #bigapple #statueofliberty #statue #sandy #hide #fear #saveme #hurricane #joke 🗽🗽🗽🗽🗽 http://t.co/oZ6NTs8V\n", "\n", "--------------------------------------------------------\n", - "ny newyork bigapple statueofliberty statue sandy hide fear saveme hurricane joke \n", + "new york new york bigapple statueofliberty statue sandy hide fear saveme hurricane joke \n", "\n", "\n", "#Hurricane #sandy #usa #ykt14 #storm #armageddon http://t.co/ysJsA8e3\n", @@ -20116,7 +18072,7 @@ "Lmfaoo #sandy #statueliberty #nyc #hurricane #teamfollowback #followforfollow #ifollowback #f4f #followback http://t.co/DKH7reIP\n", "\n", "--------------------------------------------------------\n", - "lmfaoo sandy statueliberty nyc hurricane teamfollowback followforfollow ifollowback f4f followback \n", + "sandy statueliberty new york city hurricane teamfollowback followforfollow ifollowback f4f followback \n", "\n", "\n", "Sandy brought all her crew. #sandy #hurricane #real #notphotoshopped http://t.co/5T6jJXfW\n", @@ -20128,25 +18084,25 @@ "#hurricane #hurricanesandy #sandy #storm #storming #wet #cold #ladyliberty #lady #liberty #hairdid #hair #ig http://t.co/w3KlYlUR\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy sandy storm storming wet cold ladyliberty lady liberty hairdid hair ig \n", + "hurricane hurricane sandy sandy storm storming wet cold ladyliberty lady liberty hairdid hair ig \n", "\n", "\n", "Olha a Sandy!!! BUUUUU #sandy #nyc \\n#hurricane #dayaftersandy http://t.co/2zPi6uql\n", "\n", "--------------------------------------------------------\n", - "olha sandy buuuuu sandy nyc hurricane dayaftersandy \n", + "ola sandy buuuuu sandy new york city hurricane dayaftersandy \n", "\n", "\n", "Lady Liberty: \"I didn't sign up for this back in 1886!\" Lol. #sandy #hurricane #nyc #picoftheday #photoofthe http://t.co/ZHMF5OVj\n", "\n", "--------------------------------------------------------\n", - "lady liberty sign back 1886 lol sandy hurricane nyc picoftheday photoofthe \n", + "lady liberty sign back in886 sandy hurricane new york city picoftheday photoofthe \n", "\n", "\n", "LMAO YO!!!! IM DONE!!! #Sandy #HurricaneSandy #Hurricane http://t.co/XLZY0dfv\n", "\n", "--------------------------------------------------------\n", - "lmao im done sandy hurricanesandy hurricane \n", + "done sandy hurricane sandy hurricane \n", "\n", "\n", "You can come out and play now #statueofliberty. Thanks for sending @prabalgurung #sandy #hurricane http://t.co/I1zg0k7F\n", @@ -20164,13 +18120,13 @@ "sandy we dont wont none!!! #sandy #storm #weather #Iphone #iponesia #nyc #nj #hurricane http://t.co/NfZjdCIY\n", "\n", "--------------------------------------------------------\n", - "sandy dont wont none sandy storm weather iphone iponesia nyc nj hurricane \n", + "sandy dont wont none sandy storm weather iphone iponesia new york city new jersey hurricane \n", "\n", "\n", "Oh shit. Lol #sandy #hurricane http://t.co/KfJq88W5\n", "\n", "--------------------------------------------------------\n", - "oh shit lol sandy hurricane \n", + "shit sandy hurricane \n", "\n", "\n", "#hurricane #sandy #real #live #action http://t.co/dQPqGMCG\n", @@ -20182,7 +18138,7 @@ "Is it safe to come out yet? #Hurricane #sandy #HurricaneSandy #help #Statue of #Liberty #Pray for #EastCoast http://t.co/KM8RRaLr\n", "\n", "--------------------------------------------------------\n", - "safe come yet hurricane sandy hurricanesandy help statue liberty pray eastcoast \n", + "safe come yet hurricane sandy hurricane sandy help statue liberty pray eastcoast \n", "\n", "\n", "The day after tomorrow #hurricane #sandy #frankenstorm #lastday #horror http://t.co/9GCATCCs\n", @@ -20194,7 +18150,7 @@ "Yo yall gettin real creative with these pics abt #Hurricane #Sandy .... Even the #StatueOfLiberty scared. #N http://t.co/ZtlncEOO\n", "\n", "--------------------------------------------------------\n", - "yall gettin real creative pics abt hurricane sandy even statueofliberty scared n \n", + "yall gettin real creative picshurricane sandy even statueofliberty scared \n", "\n", "\n", "#hurricane #sandy #frankenstorm http://t.co/Ljw7RIPE\n", @@ -20206,13 +18162,13 @@ "Soooo this is what's happening on the east coast, right??? #Hurricane #Sandy #NY http://t.co/EsZNvBqw\n", "\n", "--------------------------------------------------------\n", - "soooo happening east coast right hurricane sandy ny \n", + "soooo happening east coast right hurricane sandy new york \n", "\n", "\n", "HAHA DYING 😂 #stateofliberty #sandy #Hurricane #funny #scared #NYC #ny http://t.co/gJPcPNhO\n", "\n", "--------------------------------------------------------\n", - "haha dying stateofliberty sandy hurricane funny scared nyc ny \n", + "dying stateofliberty sandy hurricane funny scared new york city new york \n", "\n", "\n", "Has anyone seen \\n#Hurricane #Sandy http://t.co/6wdHqEnf\n", @@ -20224,7 +18180,7 @@ "Hiding from #Hurricane #Sandy haha #LadyLiberty http://t.co/rbgq5sFl\n", "\n", "--------------------------------------------------------\n", - "hiding hurricane sandy haha ladyliberty \n", + "hiding hurricane sandyladyliberty \n", "\n", "\n", "Greeting hurricane sandy #hurricane #sandy #bostonprobs #eastcoaster hope we can swim! 🏊 http://t.co/fEnuN0KF\n", @@ -20236,13 +18192,13 @@ "Lo monumentos también tienen sentimientos y miedo. #sandy #newyork #statue #liberty #nyc #hurricane #huracan http://t.co/ZndFWZD8\n", "\n", "--------------------------------------------------------\n", - "monumentos sentimientos miedo sandy newyork statue liberty nyc hurricane huracan \n", + "monumentos sentimientos miedo sandy new york statue liberty new york city hurricane huracan \n", "\n", "\n", "Ni que \"The Day Afrer Tomorrow\" se hiciera realidad😱 #Sandy #Hurricane #Storm #Rain #Sea #StatueOfLiberty #N http://t.co/k4ihPDtn\n", "\n", "--------------------------------------------------------\n", - "day afrer tomorrow hiciera realidad sandy hurricane storm rain statueofliberty n \n", + "day afrer tomorrow hiciera realidad sandy hurricane storm rain statueofliberty \n", "\n", "\n", "хаха ))) #hurricane http://t.co/xVJPQNuB\n", @@ -20254,13 +18210,13 @@ "Asi estamos todos lol por mi casa todo esta bien. No se preocupen :) #hurricane #sandy #sandyhurricane #stor http://t.co/ZdPSbiIn\n", "\n", "--------------------------------------------------------\n", - "asi lol casa bien preocupen hurricane sandy sandyhurricane stor \n", + "asi casa bien preocupen hurricane sandy sandyhurricane stor \n", "\n", "\n", "Lady Liberty's afraid of #sandy #hurricane #newyork http://t.co/qJDd33VO\n", "\n", "--------------------------------------------------------\n", - "lady liberty afraid sandy hurricane newyork \n", + "lady liberty afraid sandy hurricane new york \n", "\n", "\n", "#Hurricane #Sandy made land fall, looks bad so far...#funny #hilarious http://t.co/RtVw2z1q\n", @@ -20284,25 +18240,25 @@ "Today in Ny.... Terrible Day! #NewYork #Hurricane #Sandy #NYC #Weather #InstaPhoto #Nature #Usa #WallStreet http://t.co/Xi8o0HJ8\n", "\n", "--------------------------------------------------------\n", - "today ny terrible day newyork hurricane sandy nyc weather instaphoto nature usa wallstreet \n", + "today new york terrible day new york hurricane sandy new york city weather instaphoto nature usa wallstreet \n", "\n", "\n", "Sums up this whole experience. #hurricane #sandy #godzilla #jaws #aliens #marshmellow #nyc http://t.co/S1koL7U7\n", "\n", "--------------------------------------------------------\n", - "sums whole experience hurricane sandy godzilla jaws aliens marshmellow nyc \n", + "sums whole experience hurricane sandy godzilla jaws aliens marshmellow new york city \n", "\n", "\n", "Latest shot of NYC during #sandy haha #hurricane #godzilla #itsgonrain http://t.co/LSKl4P7o\n", "\n", "--------------------------------------------------------\n", - "latest shot nyc sandy haha hurricane godzilla itsgonrain \n", + "latest shot new york city sandyhurricane godzilla itsgonrain \n", "\n", "\n", "#newyork #sandy #storm #liberty #irish #ireland #hurricane #instadaily #instagramhub #instatalks #instanews http://t.co/78Y4De0m\n", "\n", "--------------------------------------------------------\n", - "newyork sandy storm liberty irish ireland hurricane instadaily instagramhub instatalks instanews \n", + "new york sandy storm liberty irish ireland hurricane instadaily instagramhub instatalks instanews \n", "\n", "\n", "#hurricane #sandy @ Marine Lines http://t.co/nwJtoFG7\n", @@ -20314,7 +18270,7 @@ "#sandy #hurricane #newyork #hiding http://t.co/qSllBM7S\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane newyork hiding \n", + "sandy hurricane new york hiding \n", "\n", "\n", "DAMN So Sandy got Liberity seeking shelter too 😭😂😄😄#sandy #hurricane #statueofliberty http://t.co/GbEhfHV8\n", @@ -20326,25 +18282,25 @@ "Yes! It's like #TheDayAfterTomorrow. #Sandy #Hurricane #NYC RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/sGCHkmBH\n", "\n", "--------------------------------------------------------\n", - "yes like thedayaftertomorrow sandy hurricane nyc \n", + "yes like thedayaftertomorrow sandy hurricane new york city \n", "\n", "\n", "Lol this shit is way too funny #nyc #sandy #hurricane #statue of #liberty http://t.co/WpxP69Hd\n", "\n", "--------------------------------------------------------\n", - "lol shit way funny nyc sandy hurricane statue liberty \n", + "shit way funny new york city sandy hurricane statue liberty \n", "\n", "\n", "#hurricane #sandy #NY #Statue #Liberty http://t.co/VY1fSW2a\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny statue liberty \n", + "hurricane sandy new york statue liberty \n", "\n", "\n", "Mad fucken #windy out even the #statueofliberty moved! Lol #sandy #hurricane #nyc #scared http://t.co/SuDVouzu\n", "\n", "--------------------------------------------------------\n", - "mad fucken windy even statueofliberty moved lol sandy hurricane nyc scared \n", + "mad fucken windy even statueofliberty moved sandy hurricane new york city scared \n", "\n", "\n", "#sandy destruction next to our Trade Joes store in Edgewater. #edgewater #hurricane http://t.co/WuHXqQmu http://t.co/VeEESAfd\n", @@ -20356,7 +18312,7 @@ "Sandy's hurricane finished?!!\\nNot yet?!! \\n#Sandy #NewYorker #NY\\n#NewYork #hurricane http://t.co/RZNytztS\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane finished yet sandy newyorker ny newyork hurricane \n", + "sandy hurricane finished yet sandy new yorker new york new york hurricane \n", "\n", "\n", "Is that bitch #sandy gone yet #igers #iphone #hurricane #dayafter http://t.co/k62jJrTz\n", @@ -20368,13 +18324,7 @@ "Man this storms starting to look pretty bad #sandy #nyc #godzilla #hurricane http://t.co/lXKjkiex\n", "\n", "--------------------------------------------------------\n", - "storms starting look pretty bad sandy nyc godzilla hurricane \n", - "\n", - "\n", - "🗽 #lmao #hurricane #sandy http://t.co/EvocX1Tu\n", - "\n", - "--------------------------------------------------------\n", - "lmao hurricane sandy \n", + "storms starting look pretty bad sandy new york city godzilla hurricane \n", "\n", "\n", "😂😂😂😂#hurricane #sofunny #rp http://t.co/5ZeEYJUk\n", @@ -20392,13 +18342,13 @@ "To all my friends in NY: be safe!! See you tomorrow after Sandy #ny #nyc #sandy #hurricane #backtony #statue http://t.co/5KRboGSe\n", "\n", "--------------------------------------------------------\n", - "friends ny safe see tomorrow sandy ny nyc sandy hurricane backtony statue \n", + "friends new york safe see tomorrow sandy new york new york city sandy hurricane backtony statue \n", "\n", "\n", "That was the before this is the after #lmao #lol #hurricane #hurricanefake #sandy #hurricanesandy http://t.co/WiXgF1lM\n", "\n", "--------------------------------------------------------\n", - "lmao lol hurricane hurricanefake sandy hurricanesandy \n", + "hurricane hurricanefake sandy hurricane sandy \n", "\n", "\n", "#prepared #scared #statue #of #liberty #hurricane #sandy http://t.co/lQjGLBTb\n", @@ -20416,49 +18366,37 @@ "NYC's worst nightmare. Apparently true, saw it on Facebook. #Sandy #hurricane #jk http://t.co/L7tv8DhD\n", "\n", "--------------------------------------------------------\n", - "nyc worst nightmare apparently true saw facebook sandy hurricane jk \n", - "\n", - "\n", - "🌊☔🌀💦🐋🐳🐬🐟🐠🏊🏄🎣🗽🚣⚓🚢 #hurricane #sandy Lol! http://t.co/1d9CkVNu\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy lol \n", + "new york city worst nightmare apparently true saw facebook sandy hurricane jk \n", "\n", "\n", "And this is #nyc now #sandy #hurricane http://t.co/j8RECrfS\n", "\n", "--------------------------------------------------------\n", - "nyc sandy hurricane \n", - "\n", - "\n", - "😂😂😂 #hurricane #sandy http://t.co/nIfEJ0fg\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "new york city sandy hurricane \n", "\n", "\n", "#Sandy\\n#hurricane Dont worry, Im a survivor http://t.co/YSzaO8El\n", "\n", "--------------------------------------------------------\n", - "sandy hurricane dont worry im survivor \n", + "sandy hurricane dont worry survivor \n", "\n", "\n", "#fuck ----- #frankenstorm #hurricane #sandy #statue #of #liberty #nyc #newyork #instagra @ Statue of Liberty http://t.co/D163Yt1o\n", "\n", "--------------------------------------------------------\n", - "fuck frankenstorm hurricane sandy statue liberty nyc newyork instagra statue liberty \n", + "fuck frankenstorm hurricane sandy statue liberty new york city new york instagra statue liberty \n", "\n", "\n", "Dead 😂\\nBut for real, pray for all the people affected by the storm. 🙏 #hurricane #sandy #goodluck #newyork # http://t.co/a4SuuZqZ\n", "\n", "--------------------------------------------------------\n", - "dead real pray people affected storm hurricane sandy goodluck newyork \n", + "dead real pray people affected storm hurricane sandy goodluck new york \n", "\n", "\n", "Hold on, be strong my NYC family! #hurricane #sandy http://t.co/n1KLYGHe\n", "\n", "--------------------------------------------------------\n", - "hold strong nyc family hurricane sandy \n", + "hold strong new york city family hurricane sandy \n", "\n", "\n", "#hurricane #sally doesn't look that bad to me... http://t.co/nIORExfP\n", @@ -20476,7 +18414,7 @@ "#newyork is ready ... #hurricane #sandy http://t.co/pHFTJryc\n", "\n", "--------------------------------------------------------\n", - "newyork ready hurricane sandy \n", + "new york ready hurricane sandy \n", "\n", "\n", "“@Talal_Doueihi: #Hurricane #Sandy 😱 http://t.co/YICsimyw” hahahahhahaa\n", @@ -20488,25 +18426,19 @@ "#unreal #frankenstorm #newyork #hurricane http://t.co/tTDMtW3r\n", "\n", "--------------------------------------------------------\n", - "unreal frankenstorm newyork hurricane \n", + "unreal frankenstorm new york hurricane \n", "\n", "\n", "Ondertussen in #newyork #hurricane #sandy http://t.co/XlHN7wcQ\n", "\n", "--------------------------------------------------------\n", - "ondertussen newyork hurricane sandy \n", - "\n", - "\n", - "«@Mvan_berkel Ondertussen, in New York... #hurricane #Sandy #statueofbibberty http://t.co/l6nWyFhZ»\n", - "\n", - "--------------------------------------------------------\n", - "ondertussen new york hurricane sandy statueofbibberty \n", + "ondertussen new york hurricane sandy \n", "\n", "\n", "Hope we do not see him #frankenstorm #hurricane #sandy #ny #nj #nyc #newyork #godzilla http://t.co/QjM0UaGQ\n", "\n", "--------------------------------------------------------\n", - "hope see frankenstorm hurricane sandy ny nj nyc newyork godzilla \n", + "hope see frankenstorm hurricane sandy new york new jersey new york city new york godzilla \n", "\n", "\n", "Might be my favorite #Hurricane #Sandy photo. http://t.co/RQEDmcrI\n", @@ -20524,7 +18456,7 @@ "En cambio esta foto de Sandy a su paso por Nueva York SÍ que es real... http://t.co/kSEiat6v Los pelos de punta.\n", "\n", "--------------------------------------------------------\n", - "cambio foto sandy paso nueva york real pelos punta \n", + "cambio foto sandy paso nueva york real punta \n", "\n", "\n", "my dad just sent me this to be ironic. My mom's name happens to be Sandy. this is my life. 😂😄 http://t.co/ZtCNVAmY\n", @@ -20542,7 +18474,7 @@ "You know in every movie..she's a goner...Lmao she not playing with Sandy... http://t.co/YoyVknMD\n", "\n", "--------------------------------------------------------\n", - "know every movie goner lmao playing sandy \n", + "know every movie goner playing sandy \n", "\n", "\n", "She's not felling sandy !! She took cover ! http://t.co/7RdQXQyx\n", @@ -20551,12 +18483,6 @@ "felling sandy took cover \n", "\n", "\n", - "She ain't about that sandy. Lol http://t.co/3zpxGdyX\n", - "\n", - "--------------------------------------------------------\n", - "sandy lol \n", - "\n", - "\n", "Ja ja ja ya se fue la p... De Sandy!!! https://t.co/q6IZJt8S\n", "\n", "--------------------------------------------------------\n", @@ -20572,7 +18498,7 @@ "Lol that's crazy, looks like a scene from Independence Day RT @AtomicKJ: RT @XS_XaviSegura: #sandy #nyc #allisone http://t.co/MdmqriTe\n", "\n", "--------------------------------------------------------\n", - "lol crazy looks like scene independence day \n", + "crazy looks like scene independence day \n", "\n", "\n", "Just spoke to my dad who works at CBS News and told me this picture is not from Sandy. It's from a different http://t.co/gQVA5Rzs\n", @@ -20593,39 +18519,21 @@ "always verify source share accurate sandy photos \n", "\n", "\n", - "Sandy, is that you????? http://t.co/BXQc0jd5\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "That pic too ignant lol RT @_GunzNRoses #Tears RT @iTrumpetBoy RT @flashydeb That hoe sandy gone? http://t.co/uyulVXci\n", "\n", "--------------------------------------------------------\n", - "pic ignant lol \n", + "pic ignant \n", "\n", "\n", "Since there's lots of fake pictures of NY & Sandy, just wondering if anyone was able to confirm if ths one was real yet http://t.co/PmBq1bIT\n", "\n", "--------------------------------------------------------\n", - "since lots fake pictures ny sandy wondering anyone able confirm ths one real yet \n", - "\n", - "\n", - "Sandy's effects http://t.co/9Rg1Jewl\"\n", - "\n", - "--------------------------------------------------------\n", - "sandy effects \n", + "since lots fake pictures new york sandy wondering anyone able confirm ths one real yet \n", "\n", "\n", "Sandy coming what aint nobody got time for that S*** New York don't even suppose to get hurricanes for all t http://t.co/YMMAPjLH\n", "\n", - "--------------------------------------------------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "--------------------------------------------------------\n", "sandy coming aint nobody got time new york even suppose get hurricanes \n", "\n", "\n", @@ -20638,13 +18546,7 @@ "Apparently Sandy has proven she's no Irene. Got everyone running for cover. #StatueofLiberty #NewYork #Hurri http://t.co/MLWQT1CV\n", "\n", "--------------------------------------------------------\n", - "apparently sandy proven irene got everyone running cover statueofliberty newyork hurri \n", - "\n", - "\n", - "Sandy, is that you? https://t.co/lrqhEd0I\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "apparently sandy proven irene got everyone running cover statueofliberty new york hurri \n", "\n", "\n", "#picstitch Fuck that shit Sandy aint getting noone http://t.co/m7HpSxCV\n", @@ -20656,13 +18558,13 @@ "That's funny!!! #lmao #sandy http://t.co/sXyDS2AA\n", "\n", "--------------------------------------------------------\n", - "funny lmao sandy \n", + "funny sandy \n", "\n", "\n", "That jawn Liberty even scared of that other jawn named Sandy. FOH! Lmao Y'all be safe up north! Please check http://t.co/2hZtDvqa\n", "\n", "--------------------------------------------------------\n", - "jawn liberty even scared jawn named sandy foh lmao safe north please check \n", + "jawn liberty even scared jawn named sandy f safe north please check \n", "\n", "\n", "I know it's a serious situation out on the east coast, but this is the best fake Sandy pic I've seen. http://t.co/DxMc95vm\n", @@ -20683,12 +18585,6 @@ "google fake sandy shots \n", "\n", "\n", - "Fuck me RT @PacificMoceans: Just got a foto from @mrxtrabusy on Sandy's damage to his hometown... http://t.co/XyA5WDI2\n", - "\n", - "--------------------------------------------------------\n", - "fuck \n", - "\n", - "\n", "Sandy's coming. #staysafe http://t.co/fGwQ5MY9\n", "\n", "--------------------------------------------------------\n", @@ -20701,34 +18597,22 @@ "heiffer sandy chu \n", "\n", "\n", - "@joncontino: Finally a photo of Sandy that's NOT faked. http://t.co/uz6Wp9Kb @mikollaneous @JoonoSimon\n", - "\n", - "--------------------------------------------------------\n", - "finally photo sandy faked \n", - "\n", - "\n", "Just got a foto from @mrxtrabusy on Sandy's damage to his hometown... http://t.co/8jiLDWLw\n", "\n", - "--------------------------------------------------------\n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "got foto sandy damage hometown \n", "\n", "\n", - "Here's Sandy !!!!! http://t.co/wpTmFkcV\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "“@TweetThvtUp_ “@LesBiREAL_JENx3 Lmaooo sandy that serious 😂😂😂😂 http://t.co/bH3GxwvQ””\n", "\n", "--------------------------------------------------------\n", - "lmaooo sandy serious \n", - "\n", - "\n", - "That hoe sandy gone? http://t.co/sioIj0N5\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", + "sandy serious \n", "\n", "\n", "Finally a photo of Sandy that's NOT faked. http://t.co/E4l2pQNY\n", @@ -20740,13 +18624,13 @@ "@Toure Wow yeah here's another 'incredible Sandy pic', you gullible halfwit: http://t.co/xjFJO4Hi\n", "\n", "--------------------------------------------------------\n", - "wow yeah another incredible sandy pic gullible halfwit \n", + "yeah another incredible sandy pic gullible halfwit \n", "\n", "\n", "Just got the word from 1 of my moms colleagues on how bad hurricane sandy really is right now #not http://t.co/wkWbqoxL\n", "\n", "--------------------------------------------------------\n", - "got word 1 moms colleagues bad hurricane sandy really right \n", + "got word moms colleagues bad hurricane sandy really right \n", "\n", "\n", "“@Kilpatrick24: Awesome picture. Tomb of the unknown soldier still being guarded during Hurricane Sandy http://t.co/RnvtXHC3”\\n#FakeSandy\n", @@ -20770,13 +18654,13 @@ "Sandy got niggas shook lol #sandy http://t.co/IHTajuv1\n", "\n", "--------------------------------------------------------\n", - "sandy got niggas shook lol sandy \n", + "sandy got niggas shook sandy \n", "\n", "\n", "#sandy #newyork #jokes #terror #image #instagood #imageoftheday #funny #photoshop #picoftheday http://t.co/WyOkdnH2\n", "\n", "--------------------------------------------------------\n", - "sandy newyork jokes terror image instagood imageoftheday funny photoshop picoftheday \n", + "sandy new york jokes terror image instagood imageoftheday funny photoshop picoftheday \n", "\n", "\n", "Best pic yet:\\n\"Hurricane #sandy is just getting out of control...\" #staypuft\\n http://t.co/hunJg0uz\n", @@ -20785,12 +18669,6 @@ "best pic yet hurricane sandy getting control staypuft \n", "\n", "\n", - "@iansomerhalder: This looks like a movie!Wtf?! http://t.co/ubRqwHuu omg! This looks like its off #thedayaftertomorrow #staysafe #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "looks like movie wtf omg looks like thedayaftertomorrow staysafe sandy \n", - "\n", - "\n", "alot of fake pics #Sandy http://t.co/Ol6OYQjE\n", "\n", "--------------------------------------------------------\n", @@ -20800,37 +18678,31 @@ "#sandy #storm #usa #newyork #nyc #liberty be strong America dudes http://t.co/hsVveI6a\n", "\n", "--------------------------------------------------------\n", - "sandy storm usa newyork nyc liberty strong america dudes \n", + "sandy storm usa new york new york city liberty strong america dudes \n", "\n", "\n", "A estátua da Liberdade durante o furacão #sandy ;) http://t.co/tiQQoog9\n", "\n", "--------------------------------------------------------\n", - "estátua da liberdade furacão sandy \n", - "\n", - "\n", - "#sandy #storm 😝😝😝😜 http://t.co/1UAmIVIF\n", - "\n", - "--------------------------------------------------------\n", - "sandy storm \n", + "estátua liberdade furacão sandy \n", "\n", "\n", "L'ouragan sur New York, bien au delà de tout ce qu'on pouvait imaginer. #Sandy #NY #realpics http://t.co/uF2NdgQo\n", "\n", "--------------------------------------------------------\n", - "l ouragan sur new york bien au delà tout ce qu pouvait imaginer sandy ny realpics \n", + "ouragan new york bien delà tout pouvait imaginer sandy new york realpics \n", "\n", "\n", "Hiding from hurricane #Sandy Lolololololol http://t.co/bq2Gxh5X\n", "\n", "--------------------------------------------------------\n", - "hiding hurricane sandy lolololololol \n", + "hiding hurricane sandy oool \n", "\n", "\n", "thinking about my friends in NYC. hope you are safe. http://t.co/ROy4DISu #sandy\n", "\n", "--------------------------------------------------------\n", - "thinking friends nyc hope safe sandy \n", + "thinking friends new york city hope safe sandy \n", "\n", "\n", "Idk man seems legit. XD #Sandy http://t.co/ovxDzChX\n", @@ -20848,7 +18720,7 @@ "I expect this photo to be on every major news outlet in 30 seconds. #sandy http://t.co/JIVczQxa\n", "\n", "--------------------------------------------------------\n", - "expect photo every major news outlet 30 seconds sandy \n", + "expect photo every major news outlet in0 seconds sandy \n", "\n", "\n", "Pobre estatua... Se asusto al ver a #Sandy :s jajajajaja http://t.co/8GpIGzBW\n", @@ -20866,7 +18738,7 @@ "Since everyone is posting photoshopped or edited pictures of #sandy hitting #NY.....Here is my share. #Watch http://t.co/jbEmiH9e\n", "\n", "--------------------------------------------------------\n", - "since everyone posting photoshopped edited pictures sandy hitting ny share watch \n", + "since everyone posting photoshopped edited pictures sandy hitting new york share watch \n", "\n", "\n", "Hasta ella le tiene miedo a #Sandy http://t.co/01GO994N\n", @@ -20890,19 +18762,19 @@ "This what it was like last night guys #yolo #nyc #sandy http://t.co/cAAdHqQZ\n", "\n", "--------------------------------------------------------\n", - "like last night guys yolo nyc sandy \n", + "like last night guys yolo new york city sandy \n", "\n", "\n", "100% real snapshot of #newyork #sandy http://t.co/8VGhkUff\n", "\n", "--------------------------------------------------------\n", - "100 real snapshot newyork sandy \n", + "real snapshot new york sandy \n", "\n", "\n", "Sandy even got Liberty shook 😂😂😂 #NYC #Sandy http://t.co/6iUSFgrE\n", "\n", "--------------------------------------------------------\n", - "sandy even got liberty shook nyc sandy \n", + "sandy even got liberty shook new york city sandy \n", "\n", "\n", "Rofl #sandy http://t.co/JRcZzpug\n", @@ -20917,12 +18789,6 @@ "gone sandy \n", "\n", "\n", - "Statue of Liberty right now. #sandy http://t.co/0RoBAGGk\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty right sandy \n", - "\n", - "\n", "Here's some comic relief for today. She's scared of #Sandy too. http://t.co/2EkehXXU\n", "\n", "--------------------------------------------------------\n", @@ -20938,19 +18804,19 @@ "Evn she scared!! #statueofliberty #ny #sandy #funnyshit http://t.co/xCWeJdkc\n", "\n", "--------------------------------------------------------\n", - "evn scared statueofliberty ny sandy funnyshit \n", + "evn scared statueofliberty new york sandy funnyshit \n", "\n", "\n", "#newyork #sandy #humour http://t.co/UWguVHLQ\n", "\n", "--------------------------------------------------------\n", - "newyork sandy humour \n", + "new york sandy humour \n", "\n", "\n", "Comparto una imagen 100% real y actual de #sandy en NYC... via @Mongesaurio http://t.co/r28byJSR\n", "\n", "--------------------------------------------------------\n", - "comparto imagen 100 real actual sandy nyc \n", + "comparto imagen00 real actual sandy new york city \n", "\n", "\n", "Wrong for this #sandy. http://t.co/uY7mWnTL\n", @@ -20962,13 +18828,13 @@ "Ojo, ojo, ojo. Que la cosa empeora por momentos en #NewYork http://t.co/TrJ7qPwG #Photoshop #Sandy\n", "\n", "--------------------------------------------------------\n", - "ojo ojo ojo cosa empeora momentos newyork photoshop sandy \n", + "ojo ojo ojo cosa empeora momentos new york photoshop sandy \n", "\n", "\n", "#symbainei_twra #Sandy http://t.co/26Tdjnmw\"\n", "\n", "--------------------------------------------------------\n", - "symbainei twra sandy \n", + "symbaineitwra sandy \n", "\n", "\n", "poor miss liberty #sandy http://t.co/SnMsldjo\n", @@ -20980,7 +18846,7 @@ "La llegada de #sandy a #NY jaja @anapauglez http://t.co/1BDRCsj7\n", "\n", "--------------------------------------------------------\n", - "llegada sandy ny jaja \n", + "llegada sandy new york jaja \n", "\n", "\n", "#Sandy got yal asses Shook http://t.co/BOTWBMVc\n", @@ -21025,12 +18891,6 @@ "much epic sadly shopped sandy \n", "\n", "\n", - "lmfao #sandy http://t.co/1zTfwvqL\n", - "\n", - "--------------------------------------------------------\n", - "lmfao sandy \n", - "\n", - "\n", "#sandy の被害の写真の中に、ちょっとほっこりしたやつを見つけたw http://t.co/6qOc9gEa\n", "\n", "--------------------------------------------------------\n", @@ -21058,25 +18918,19 @@ "http://t.co/8Q1Gkhc6 Just another day in NY. #Sandy #NY #AverageDayInNY\n", "\n", "--------------------------------------------------------\n", - "another day ny sandy ny averagedayinny \n", + "another day new york sandy new york averagedayinny \n", "\n", "\n", "Sandy?! #instamood #instacool #followback #likeforlike #sandy #hurricanesandy#nyc http://t.co/lU4ObsZy\n", "\n", "--------------------------------------------------------\n", - "sandy instamood instacool followback likeforlike sandy hurricanesandy nyc \n", - "\n", - "\n", - "LOL!!! #Sandy #NewYork http://t.co/Gg8YhB0l\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy newyork \n", + "sandy instacool followback likeforlike sandy hurricane sandynyc \n", "\n", "\n", "Esperando a #Sandy #NewYork http://t.co/D8eWgFxH\n", "\n", "--------------------------------------------------------\n", - "esperando sandy newyork \n", + "esperando sandy new york \n", "\n", "\n", "Best fake #Sandy so far. http://t.co/tBrG4bwB\n", @@ -21085,12 +18939,6 @@ "best fake sandy far \n", "\n", "\n", - "Lmao #repost #sandy http://t.co/QpZS7ovD\n", - "\n", - "--------------------------------------------------------\n", - "lmao repost sandy \n", - "\n", - "\n", "So it's getting bad! #sandy Thx Buffy http://t.co/Ihi60UCA\n", "\n", "--------------------------------------------------------\n", @@ -21100,7 +18948,7 @@ "#sandy @ bronx, NY http://t.co/ogLmhKki\n", "\n", "--------------------------------------------------------\n", - "sandy bronx ny \n", + "sandy bronx new york \n", "\n", "\n", "Look who I found on the Hudson. #sandy http://t.co/BbU8VwWR\n", @@ -21118,25 +18966,13 @@ "Une grande pensée pour mes amis de NY ! #sandy #NY #courage http://t.co/9GzMlrUx\n", "\n", "--------------------------------------------------------\n", - "une grande pensée pour mes amis ny sandy ny courage \n", + "grande pensée amis new york sandy new york courage \n", "\n", "\n", "Fox news reports on what's happening in NYC #sandy http://t.co/8weGC6zD\n", "\n", "--------------------------------------------------------\n", - "fox news reports happening nyc sandy \n", - "\n", - "\n", - "#Sandy #Nyc #Lmao http://t.co/8SvX0f4W\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc lmao \n", - "\n", - "\n", - "😂😂 #Sandy http://t.co/ju2NZVSG\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "fox news reports happening new york city sandy \n", "\n", "\n", "Here's some of the funniest fake hurricane #Sandy pics being shared ;-) http://t.co/fBq4SQZU http://t.co/atIlC7fu http://t.co/bW8fkY1X\n", @@ -21154,31 +18990,25 @@ "Things look to be getting worse in NY... #Sandy is just the tip of the iceberg! http://t.co/UDoQD1SJ\n", "\n", "--------------------------------------------------------\n", - "things look getting worse ny sandy tip iceberg \n", + "things look getting worse new york sandy tip iceberg \n", "\n", "\n", "OMG!!!!!!! #huracan #nyc #sandy http://t.co/aShgJOcC\n", "\n", "--------------------------------------------------------\n", - "omg huracan nyc sandy \n", + "huracan new york city sandy \n", "\n", "\n", "NYC, currently having a really bad night. [PIC] #Sandy #SandyPics http://t.co/gm7t5V9Q\n", "\n", "--------------------------------------------------------\n", - "nyc currently really bad night pic sandy sandypics \n", + "new york city currently really bad night pic sandy sandypics \n", "\n", "\n", "Woah. Crazy #Sandy pic, if real. (h/t @ggfletcher) http://t.co/U1puIbcn\n", "\n", "--------------------------------------------------------\n", - "woah crazy sandy pic real h \n", - "\n", - "\n", - "#Sandy #NY 🗽💨💦☔ http://t.co/SdaEopab\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", + "woah crazy sandy pic real \n", "\n", "\n", "shits getting real #sandy http://t.co/L4F0uS6S\n", @@ -21196,7 +19026,7 @@ "#Sandy: Sauve qui peut! http://t.co/pusXdS2i\n", "\n", "--------------------------------------------------------\n", - "sandy sauve qui peut \n", + "sandy sauve peut \n", "\n", "\n", "#wasted #sandy http://t.co/Hsuq2Mym\n", @@ -21214,7 +19044,7 @@ "Take care miss !\\n#NY #NYC #Sandy http://t.co/2fr6tuGR\n", "\n", "--------------------------------------------------------\n", - "take care miss ny nyc sandy \n", + "take care miss new york new york city sandy \n", "\n", "\n", "Ya a pasado Sandy??? Foto que demuestra la fuerza del viento de Sandy #Sandy #igers #instagram #intagramers http://t.co/008oI29Q\n", @@ -21232,7 +19062,7 @@ "http://t.co/AgGFq3bG Une photo pas du tout shoppée de #sandy sur New york\n", "\n", "--------------------------------------------------------\n", - "une photo pas tout shoppée sandy sur new york \n", + "photo tout shoppée sandy new york \n", "\n", "\n", "Невероятно! Посмотрите, что твориться у берегов Нью-Йорка.... #sandy http://t.co/6D25JipC\n", @@ -21262,13 +19092,7 @@ "Is Sandy gone? :) #NY #Sandy http://t.co/AqcW1vZ3\n", "\n", "--------------------------------------------------------\n", - "sandy gone ny sandy \n", - "\n", - "\n", - "“@JamesCruz1: Even Lady Liberty is taking precautions...#Sandy http://t.co/9UQHn8iK” lol!\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", + "sandy gone new york sandy \n", "\n", "\n", "Ever she is hiding from #sandy http://t.co/D1CgAUa2\n", @@ -21280,19 +19104,19 @@ "Imagen 100% real y actual de #sandy en NYC ZAZ!!! http://t.co/tSlTPhQx\n", "\n", "--------------------------------------------------------\n", - "imagen 100 real actual sandy nyc zaz \n", + "imagen00 real actual sandy new york city zaz \n", "\n", "\n", "A nuestros expatriados en USA: ¿como ha ido todo? #sandy http://t.co/zC36ekj9\n", "\n", "--------------------------------------------------------\n", - "expatriados usa ido sandy \n", + "expatriados usa comoido sandy \n", "\n", "\n", "It's Coming #Sandy #NY #StatueOfLiberty http://t.co/YTfQmJjH\n", "\n", "--------------------------------------------------------\n", - "coming sandy ny statueofliberty \n", + "coming sandy new york statueofliberty \n", "\n", "\n", "No se dejen engañar por fotos trucadas del Huracán #SANDY. Ésta es de verdad! http://t.co/JLreSB7R\n", @@ -21316,19 +19140,19 @@ "Lol..... its getting crazy in new york city #sandy http://t.co/vP82U0s3\n", "\n", "--------------------------------------------------------\n", - "lol getting crazy new york city sandy \n", + "getting crazy new york city sandy \n", "\n", "\n", "Ahí viene sandy.... #huracán #sandy #NY #humor #liberty #libertad #miedo #preparada #Photo #montaje #instagr http://t.co/9fxeAVcw\n", "\n", "--------------------------------------------------------\n", - "ahí viene sandy huracán sandy ny humor liberty libertad miedo preparada photo montaje instagr \n", + "ahí viene sandy huracán sandy new york humor liberty libertad miedo preparada photo montaje instagr \n", "\n", "\n", "Wow! worse than i thought. RT @TexasDarren: Footage of #NYC during #Sandy http://t.co/FjAHNOR0\n", "\n", "--------------------------------------------------------\n", - "wow worse thought \n", + "worse thought \n", "\n", "\n", "What's her name, #Sandy? http://t.co/jsAvQ4z3 #photoshop pictures of the hurricane!\n", @@ -21337,16 +19161,10 @@ "name sandy photoshop pictures hurricane \n", "\n", "\n", - "@cucandc No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE. #Sandy | http://t.co/s3p0rEQi\n", - "\n", - "--------------------------------------------------------\n", - "sé si foto temporal ny fake impactante sandy \n", - "\n", - "\n", "ニューヨーク、おわったな、、、I expect this photo to be on every major news outlet in 30 seconds. #sandy http://t.co/tqd0Jg1H @TwitPicさんから\n", "\n", "--------------------------------------------------------\n", - "ニューヨーク おわったな expect photo every major news outlet 30 seconds sandy \n", + "ニューヨーク おわったな expect photo every major news outlet in0 seconds sandy \n", "\n", "\n", "dios el fin de América #sandy http://t.co/bV9ZMnUB\n", @@ -21358,7 +19176,7 @@ "everything's gonna be alright #sandy #stateofliberty #newyork #nyc #ny #brooklyn #nj #newjersey #newyorkcity http://t.co/Q3UPK7P8\n", "\n", "--------------------------------------------------------\n", - "everything gonna alright sandy stateofliberty newyork nyc ny brooklyn nj newjersey newyorkcity \n", + "everything gonna alright sandy stateofliberty new york new york city new york brooklyn new jersey newjersey new yorkcity \n", "\n", "\n", "Hide!!!! #Sandy is coming!!!!! http://t.co/cpbl1OjO\n", @@ -21370,13 +19188,13 @@ "Attenzione: ho ricevuto segnalazioni che questa foto potrebbe essere un fake: #Sandy http://t.co/WQzSQIzq \\n(Foto postata da @rarunchennai)\n", "\n", "--------------------------------------------------------\n", - "attenzione ho ricevuto segnalazioni che questa foto potrebbe essere fake sandy foto postata da \n", + "attenzione ho ricevuto segnalazioni che questa foto potrebbe essere fake sandy foto postata \n", "\n", "\n", "Las imágenes que circulan del huracán #Sandy son falsas. Esta es la imagen real #Sandy #NY http://t.co/V9rhXBAr\n", "\n", "--------------------------------------------------------\n", - "imágenes circulan huracán sandy falsas imagen real sandy ny \n", + "imágenes circulan huracán sandy falsas imagen real sandy new york \n", "\n", "\n", "Esta foto parece auténtica y muestra la brutalidad de #sandy http://t.co/oBQD8uB2\n", @@ -21388,19 +19206,13 @@ "She's French... #sandy #nyc http://t.co/SraYWkvc\n", "\n", "--------------------------------------------------------\n", - "french sandy nyc \n", + "french sandy new york city \n", "\n", "\n", "«@___Jersey Thought it funny! #sandy #NY http://t.co/ORs0IRlS»\\n@meteoby @OnlinerBY \n", "\n", "--------------------------------------------------------\n", - "thought funny sandy ny \n", - "\n", - "\n", - "Wow. #Sandy http://t.co/uV95SApJ\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", + "thought funny sandy new york \n", "\n", "\n", "Америка и ураган #sandy http://t.co/ULHdrIPw\n", @@ -21409,28 +19221,16 @@ "америка ураган sandy \n", "\n", "\n", - "Smh #sandy http://t.co/mmvzmELn\n", - "\n", - "--------------------------------------------------------\n", - "smh sandy \n", - "\n", - "\n", "smettetela di postare foto finte dell'uragano #Sandy! e se proprio dovete, almeno che facciano sorridere: http://t.co/JSybLZRK\n", "\n", "--------------------------------------------------------\n", - "smettetela di postare foto finte dell uragano sandy proprio dovete almeno che facciano sorridere \n", + "smettetela postare foto finte dell uragano sandy proprio dovete almeno che facciano sorridere \n", "\n", "\n", "#newyork #sandy #photoshop http://t.co/icg2XaSk\n", "\n", "--------------------------------------------------------\n", - "newyork sandy photoshop \n", - "\n", - "\n", - "Is it over? #sandy http://t.co/raz5wK4N\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "new york sandy photoshop \n", "\n", "\n", "“@MishaC4D “@ajhalls1 Latest image from New York before #sandy hits: http://t.co/rwgggwWN””\n", @@ -21442,7 +19242,7 @@ "LOLOLOL #icant! Thanks gyozataco for this one #sandy #nyc http://t.co/eJD2ma6w\n", "\n", "--------------------------------------------------------\n", - "lololol icant thanks gyozataco one sandy nyc \n", + "icant thanks gyozataco one sandy new york city \n", "\n", "\n", "Maybe wrong but still funny #Sandy http://t.co/H64eT3xO\n", @@ -21454,7 +19254,7 @@ "That bitch #Sandy just took off with my robe!! #lmao #epic #funny #storm http://t.co/CpSJsqla\n", "\n", "--------------------------------------------------------\n", - "bitch sandy took robe lmao epic funny storm \n", + "bitch sandy took robe epic funny storm \n", "\n", "\n", "Worst Storm Ever #sandy http://t.co/UgwnOMnF\n", @@ -21463,12 +19263,6 @@ "worst storm ever sandy \n", "\n", "\n", - "“@i_7u55ain: هذي صورة تجمع بعض الاشاعات عن الاعصار 😅\\n#إعصار_ساندي\\n#اعصار_ساندي \\n#Sandy \\n\\nhttp://t.co/hNVLY3fK\n", - "\n", - "--------------------------------------------------------\n", - "صورة تجمع الاشاعات الاعصار إعصار ساندي اعصار ساندي sandy \n", - "\n", - "\n", "Confirmed fake. Scene taken from movie. Not #sandy . Follow me for more #sandy #shark #confirmed photos http://t.co/sW8Emmr0\n", "\n", "--------------------------------------------------------\n", @@ -21478,7 +19272,7 @@ "Oh nooooooo #sandy spare us. The iPad Mini comes out Friday http://t.co/e3ZWhPTU\n", "\n", "--------------------------------------------------------\n", - "oh nooooooo sandy spare us ipad mini comes friday \n", + "nooooooo sandy spare us ipad mini comes friday \n", "\n", "\n", "funny mockups are slowing down, shit just got real https://t.co/F8yMQvKo #sandy\n", @@ -21487,18 +19281,6 @@ "funny mockups slowing shit got real sandy \n", "\n", "\n", - "Don't fuck with #sandy http://t.co/gplY9Ztj\n", - "\n", - "--------------------------------------------------------\n", - "fuck sandy \n", - "\n", - "\n", - "Oh no! “@ggfletcher: Crap! That crane is coming down! #sandy http://t.co/7bHqljCQ”\n", - "\n", - "--------------------------------------------------------\n", - "oh \n", - "\n", - "\n", "What #sandy looks like to Europe http://t.co/x5gyTat3\n", "\n", "--------------------------------------------------------\n", @@ -21508,7 +19290,7 @@ "صورة قديمة و تم نشرها على أنها ل #اعصار_ساندي #sandy http://t.co/HV4Pb8m8\n", "\n", "--------------------------------------------------------\n", - "صورة قديمة و تم نشرها أنها ل اعصار ساندي sandy \n", + "صورة قديمة و تم نشرها أنها ل اعصارساندي sandy \n", "\n", "\n", "#sandy.... I know you saw it before. http://t.co/TGJGJg8k\n", @@ -21520,13 +19302,13 @@ "Oh Yeah #scaredstatue #freedom #sandy http://t.co/5l1xV3zE\n", "\n", "--------------------------------------------------------\n", - "oh yeah scaredstatue freedom sandy \n", + "yeah scaredstatue freedom sandy \n", "\n", "\n", "😂😂😂 #Sandy Even Got #statueofliberty scare and hiding #NY http://t.co/OzkaQgTm\n", "\n", "--------------------------------------------------------\n", - "sandy even got statueofliberty scare hiding ny \n", + "sandy even got statueofliberty scare hiding new york \n", "\n", "\n", "Sandy just got real #sandy http://t.co/0OdpX9ox\n", @@ -21547,12 +19329,6 @@ "zorgt sandy glimlach \n", "\n", "\n", - "Yikes! #sandy http://t.co/GrIlh56W\n", - "\n", - "--------------------------------------------------------\n", - "yikes sandy \n", - "\n", - "\n", "Hope ppl listened & are prepared for #Sandy. Found this \"Worst American disasters\" photo on #fb.. http://t.co/JTuY3Sgg\n", "\n", "--------------------------------------------------------\n", @@ -21565,28 +19341,16 @@ "statue liberté planque sandy \n", "\n", "\n", - "Ahahahaha 👏👏👏#sandy http://t.co/n6RN7lPv\n", - "\n", - "--------------------------------------------------------\n", - "ahahahaha sandy \n", - "\n", - "\n", - "@BarendTreep: Ook het vrijheidsbeeld neemt haar maatregelen #NYC #Sandy http://t.co/qK1ZwP2M\n", - "\n", - "--------------------------------------------------------\n", - "vrijheidsbeeld neemt maatregelen nyc sandy \n", - "\n", - "\n", "Thank you gmom945 #nyc #frankenstorm #sandy http://t.co/yop4Jn61\n", "\n", "--------------------------------------------------------\n", - "thank gmom945 nyc frankenstorm sandy \n", + "thank gmom945 new york city frankenstorm sandy \n", "\n", "\n", "..The Day After #Sandy …. #paura #NewYork http://t.co/2xhHYJsB\n", "\n", "--------------------------------------------------------\n", - "day sandy paura newyork \n", + "day sandy paura new york \n", "\n", "\n", "La foto d #Sandy más falsa d todos los tweets, el arte d PS http://t.co/tFU8I6op\n", @@ -21610,31 +19374,31 @@ "#Sandy comin for her money!! I told her a gotta checkin and a savings! LOL kevinhart4real http://t.co/kAt7a23D\n", "\n", "--------------------------------------------------------\n", - "sandy comin money told gotta checkin savings lol kevinhart4real \n", + "sandy comin money told gotta checkin savings kevinhart4real \n", "\n", "\n", "Chill yo....chill nigga quit playing! #Sandy lol http://t.co/V5BfcrIp\n", "\n", "--------------------------------------------------------\n", - "chill chill nigga quit playing sandy lol \n", + "chill chill nigga quit playing sandy \n", "\n", "\n", "😱😂😂😂😂😂 #rp ode funny #sandy got Lady Liberty shook lmao http://t.co/fLyK76dJ\n", "\n", "--------------------------------------------------------\n", - "rp ode funny sandy got lady liberty shook lmao \n", + "rp ode funny sandy got lady liberty shook \n", "\n", "\n", "Pray for NY! #Sandy \\n#EmpireStateOfMind http://t.co/uSU4xkjx\n", "\n", "--------------------------------------------------------\n", - "pray ny sandy empirestateofmind \n", + "pray new york sandy empirestateofmind \n", "\n", "\n", "Lmfao #Chill #Sandy http://t.co/jhgkO7eE\n", "\n", "--------------------------------------------------------\n", - "lmfao chill sandy \n", + "chill sandy \n", "\n", "\n", "Probably the coolest picture ever. #sandy #prayinforyaNYC http://t.co/6EtSbJe4\n", @@ -21646,25 +19410,25 @@ "Sur le mur FB d'un New-York \"Thanks to all those asking. We are safe so far!\" #Sandy http://t.co/7gLrs8Zi\n", "\n", "--------------------------------------------------------\n", - "sur mur fb new york thanks asking safe far sandy \n", + "mur fb new york thanks asking safe far sandy \n", "\n", "\n", "I know this hurricane isn't a joke, but these memes are friggin hilarious!!! #sandy #lol http://t.co/4z9naK0O\n", "\n", "--------------------------------------------------------\n", - "know hurricane joke memes friggin hilarious sandy lol \n", + "know hurricane joke memes friggin hilarious sandy \n", "\n", "\n", "I, like Lady Liberty, am not about that hurricane life!!! Lol #sandy #nyc #brooklyn #perfectstorm Wowsers!! http://t.co/N6dwo5H6\n", "\n", "--------------------------------------------------------\n", - "like lady liberty hurricane life lol sandy nyc brooklyn perfectstorm wowsers \n", + "like lady liberty hurricane life sandy new york city brooklyn perfectstorm sers \n", "\n", "\n", "madi_hitt21's photo http://t.co/RTFxSjG2. This just about sums up #Sandy #fb\n", "\n", "--------------------------------------------------------\n", - "madi hitt21 photo http co \n", + "madihitt21 photo http co \n", "\n", "\n", "กรี้ด!!! กลัว #sandy #statueofliberty #hmkt http://t.co/bYiingaZ\n", @@ -21676,7 +19440,7 @@ "Remember who you are simba #sandy #lionking #newyork http://t.co/oaJCOCjc\n", "\n", "--------------------------------------------------------\n", - "remember simba sandy lionking newyork \n", + "remember simba sandy lionking new york \n", "\n", "\n", "Pretty much every popular photo of #Sandy has been fake (see: http://t.co/Gg7uuaWE) but this one must be real: http://t.co/32mOumlp\n", @@ -21688,7 +19452,7 @@ "#regram hope everyone is okay. #sandy http://t.co/ccUFYao7\n", "\n", "--------------------------------------------------------\n", - "regram hope everyone okay sandy \n", + "hope everyone okay sandy \n", "\n", "\n", "#sandy #image #funny http://t.co/I0OEUia2\n", @@ -21697,16 +19461,10 @@ "sandy image funny \n", "\n", "\n", - "#NY #Sandy :S http://t.co/t8wIyLdf\n", - "\n", - "--------------------------------------------------------\n", - "ny sandy \n", - "\n", - "\n", "Lmao #nyc #sandy #nogames #ctfu http://t.co/UIWv7OmN\n", "\n", "--------------------------------------------------------\n", - "lmao nyc sandy nogames ctfu \n", + "new york city sandy nogames ctfu \n", "\n", "\n", "Is it safe yet? #sandy http://t.co/xqg5B50j\n", @@ -21724,13 +19482,13 @@ "Haha (jokes aside, hope people stay safe) #sandy http://t.co/9E0g0D2P\n", "\n", "--------------------------------------------------------\n", - "haha jokes aside hope people stay safe sandy \n", + "jokes aside hope people stay safe sandy \n", "\n", "\n", "Even Statue of Liberty is scared #sandy # lol http://t.co/LTx9lvLc\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scared sandy lol \n", + "even statue liberty scared sandy \n", "\n", "\n", "#Sandy for real - http://t.co/OjfPRkow\n", @@ -21739,16 +19497,10 @@ "sandy real \n", "\n", "\n", - "I'd do that.... #sandy http://t.co/Xr9jJrVU\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "It's getting REAL! #NYC #sandy http://t.co/QXBcf1iq\n", "\n", "--------------------------------------------------------\n", - "getting real nyc sandy \n", + "getting real new york city sandy \n", "\n", "\n", "“@JezminNavarro Las fotos \"truqueadas\" y los \"fotochooo\" en las redes sociales se han burlao de #Sandy http://t.co/qZJviyGy”\n", @@ -21760,7 +19512,7 @@ "Ook het vrijheidsbeeld neemt haar maatregelen #NYC #Sandy http://t.co/aJ1PHpx6\n", "\n", "--------------------------------------------------------\n", - "vrijheidsbeeld neemt maatregelen nyc sandy \n", + "vrijheidsbeeld neemt maatregelen new york city sandy \n", "\n", "\n", "My fav of the #sandy memes http://t.co/TrVpjULT\n", @@ -21790,7 +19542,7 @@ "#nyc #sandy #statualiberty #funny #prayer http://t.co/2V67UJS1\n", "\n", "--------------------------------------------------------\n", - "nyc sandy statualiberty funny prayer \n", + "new york city sandy statualiberty funny prayer \n", "\n", "\n", "Lo que el gobierno no quiere que veas #huracan #Sandy http://t.co/liT8TXD2\n", @@ -21820,13 +19572,13 @@ "Here's the most recent update on #Sandy in #NewYork. http://t.co/IGia6OP0\n", "\n", "--------------------------------------------------------\n", - "recent update sandy newyork \n", + "recent update sandy new york \n", "\n", "\n", "#Sandy \"..E' passato?..é passato?..posso uscire?!?..\" http://t.co/4o8zmnj2\n", "\n", "--------------------------------------------------------\n", - "sandy passato é passato posso uscire \n", + "sandy passato passato posso uscire \n", "\n", "\n", "#sandy #frankenstorm http://t.co/LYuLZzLY\n", @@ -21838,7 +19590,7 @@ "Holy sh*t! Way worse than I thought it would be #sandy: http://t.co/uLdCtXga\n", "\n", "--------------------------------------------------------\n", - "holy sh way worse thought would sandy \n", + "holyt way worse thought would sandy \n", "\n", "\n", "Simply brilliant! Statue of Liberty takes shelter from #Sandy. #pic http://t.co/jdYhYnyY\n", @@ -21850,31 +19602,25 @@ "El llamado fue que todos se resguardarán en NY,dijeron que todos... ante la llegada de #Sandy http://t.co/nSorH535\n", "\n", "--------------------------------------------------------\n", - "llamado resguardarán ny dijeron llegada sandy \n", + "llamado resguardarán new york dijeron llegada sandy \n", "\n", "\n", "Omgah you guys #sandy http://t.co/tM1KFgzE\n", "\n", "--------------------------------------------------------\n", - "omgah guys sandy \n", + "ah guys sandy \n", "\n", "\n", "Lol sandy #sandy #huricanesandy #NYC http://t.co/dAA5cBW3\n", "\n", "--------------------------------------------------------\n", - "lol sandy sandy huricanesandy nyc \n", - "\n", - "\n", - "Seems legit. #sandy http://t.co/3i5bGy5X\n", - "\n", - "--------------------------------------------------------\n", - "seems legit sandy \n", + "sandy sandy huricanesandy new york city \n", "\n", "\n", "What is reeally happening at #NewYork with #Sandy http://t.co/ps12xR4t\n", "\n", "--------------------------------------------------------\n", - "reeally happening newyork sandy \n", + "reeally happening new york sandy \n", "\n", "\n", "Incredible photo from #Sandy (via @joemattjoey) Stay safe everyone! http://t.co/9a6ziNPv\n", @@ -21898,7 +19644,7 @@ "Lolz RT @SgtAndyNorris: @Spann #Sandy http://t.co/yWAq6vF3\n", "\n", "--------------------------------------------------------\n", - "lolz \n", + "z \n", "\n", "\n", "Será que viene #Sandy? http://t.co/Vur1iVtr\n", @@ -21940,7 +19686,7 @@ "Trouvé sur FB, je n'ai pas la source mais je la trouve très réussie ;-) #sandy http://t.co/tOndmSzu\n", "\n", "--------------------------------------------------------\n", - "trouvé sur fb n ai pas source mais trouve très réussie sandy \n", + "trouvé fb source trouve très réussie sandy \n", "\n", "\n", "paatamatchavariani's photo #sandy http://t.co/nsxxvPvs\n", @@ -21952,7 +19698,7 @@ "La mejor foto que he visto de NY #Sandy un poco de humor dentro de la realidad. #NY #EstatueOfLiberty #Liber http://t.co/QyUvjN2S\n", "\n", "--------------------------------------------------------\n", - "mejor foto visto ny sandy humor dentro realidad ny estatueofliberty liber \n", + "mejor foto visto new york sandy humor dentro realidad new york estatueofliberty liber \n", "\n", "\n", "Can we add the mama alien from Aliens? http://t.co/GpkRKh1x #sandy\n", @@ -21964,7 +19710,7 @@ "#repost #sandy #ny http://t.co/XqfYEy81\n", "\n", "--------------------------------------------------------\n", - "repost sandy ny \n", + "repost sandy new york \n", "\n", "\n", "Scared Statue of Liberty #sandy “@jgpmolloy: @LanceUlanoff @inafried This one? http://t.co/l44DRowP”\n", @@ -21976,7 +19722,7 @@ "#sandy aterrorizando #newyorkcity http://t.co/D0MZqncN\n", "\n", "--------------------------------------------------------\n", - "sandy aterrorizando newyorkcity \n", + "sandy aterrorizando new yorkcity \n", "\n", "\n", "Stunning images of #Frankenstorm from New York City #sandy http://t.co/jwxWA2Lg\n", @@ -21997,12 +19743,6 @@ "stormrolled sandy frankenstorm new jersey fema ghostbusters \n", "\n", "\n", - "@doriscastro09 Las fotos \"truqueadas\" y los \"fotochooo\" en las redes sociales se han burlao de #Sandy http://t.co/yZTc9eBe\n", - "\n", - "--------------------------------------------------------\n", - "fotos truqueadas fotochooo redes sociales burlao sandy \n", - "\n", - "\n", "The day after tomorrow? #sandy http://t.co/DcKCJ8ZR via @TwitPic\n", "\n", "--------------------------------------------------------\n", @@ -22012,7 +19752,7 @@ "Lol #Dead #Sandy http://t.co/qndRAzj0\n", "\n", "--------------------------------------------------------\n", - "lol dead sandy \n", + "dead sandy \n", "\n", "\n", "La Statue de la Liberté se sent menacée #Sandy “@aravosis: Wish I knew who created this. It's wonderful. http://t.co/jH0Vp4rZ”\n", @@ -22024,13 +19764,13 @@ "Se esconde de #sandy. (Es muy bueno) #nyc http://t.co/28BAWkli\n", "\n", "--------------------------------------------------------\n", - "esconde sandy bueno nyc \n", + "esconde sandy bueno new york city \n", "\n", "\n", "ياخرطي منخش 😁😝 #sandy #insta #q8 #storm #newyork @ نحشه تايم http://t.co/uNms5hs5\n", "\n", "--------------------------------------------------------\n", - "ياخرطي منخش sandy insta q8 storm newyork نحشه تايم \n", + "ياخرطي منخش sandy insta q8 storm new york نحشه تايم \n", "\n", "\n", "Scared of #Sandy http://t.co/3HnQaQWW\n", @@ -22042,13 +19782,13 @@ "You see when people tek Serious ting n mek joke!! This Killed me though #Sandy #Godzilla #Jaws #ETC http://t.co/el4GgVbW\n", "\n", "--------------------------------------------------------\n", - "see people tek serious ting n mek joke killed though sandy godzilla jaws etc \n", + "see people tek serious ting mek joke killed though sandy godzilla jaws etc \n", "\n", "\n", "Hahahhahahahahahhahahahahahahhahahahahahahhahahahahaha #Sandy #usA #US #America http://t.co/7A0zdOLp\n", "\n", "--------------------------------------------------------\n", - "hahahhahahahahahhahahahahahahhahahahahahahhahahahahaha sandy usa us america \n", + "hahahhahahahahahhahahahahahahhahahahahahahsandy usa us america \n", "\n", "\n", "We're all gonna die!!! #sandy http://t.co/qD9DrvIs\n", @@ -22060,55 +19800,31 @@ "Que dijeron que se resguardaran todos en #NY por #Sandy #Humor http://t.co/VnJFpjws\n", "\n", "--------------------------------------------------------\n", - "dijeron resguardaran ny sandy humor \n", - "\n", - "\n", - "scared of #sandy :( http://t.co/CMEkKXFe\n", - "\n", - "--------------------------------------------------------\n", - "scared sandy \n", + "dijeron resguardaran new york sandy humor \n", "\n", "\n", "http://t.co/mo9NgZvN bhahaha #Sandy #Liberty\n", "\n", "--------------------------------------------------------\n", - "bhahaha sandy liberty \n", - "\n", - "\n", - "#Sandy #Storm 🗽 http://t.co/hD5Bi0iA\n", - "\n", - "--------------------------------------------------------\n", - "sandy storm \n", - "\n", - "\n", - "@_T_SOSA_: Lmfao #Chill #Sandy http://t.co/a5zyNCOd lmao! Hahaaha\n", - "\n", - "--------------------------------------------------------\n", - "lmfao chill sandy lmao hahaaha \n", + "bsandy liberty \n", "\n", "\n", "Même la Statue de la Liberté se met a l'abri !! de #sandy http://t.co/KOz1bLHy\n", "\n", "--------------------------------------------------------\n", - "même statue liberté l abri sandy \n", - "\n", - "\n", - "Mentira! Donde es eso? RT @JorgeNunez_15: It's real #USA #SANDY http://t.co/edhoFk8q\n", - "\n", - "--------------------------------------------------------\n", - "mentira \n", + "statue liberté abri sandy \n", "\n", "\n", "No here’s a pic I can get behind!!!! @slikkere: #sandy http://t.co/KkMNh6OY\n", "\n", "--------------------------------------------------------\n", - "pic get behind sandy \n", + "pic get behind \n", "\n", "\n", "You scare of #Sandy bruh?! Lmfao http://t.co/Svh3CFcO\n", "\n", "--------------------------------------------------------\n", - "scare sandy bruh lmfao \n", + "scare sandy bruh \n", "\n", "\n", "#Sandy scary new York pic with extra alien lights http://t.co/MqsvgeMo\n", @@ -22144,7 +19860,7 @@ "Don't be scuurd!!! Lol!! #Sandy http://t.co/l59kCrA7\n", "\n", "--------------------------------------------------------\n", - "scuurd lol sandy \n", + "scuurd sandy \n", "\n", "\n", "#jaws #statepuffmarshmellowman #ghostbusters #godzilla #sandy http://t.co/YurOlcU1\n", @@ -22174,19 +19890,13 @@ "#helpe #sandy #furacaosandy #desastre #iphone #gott #usa #ny #city http://t.co/BW5Kq2XD\n", "\n", "--------------------------------------------------------\n", - "helpe sandy furacaosandy desastre iphone gott usa ny city \n", + "helpe sandy furacaosandy desastre iphone gott usa new york city \n", "\n", "\n", "“@JamesCruz1: Even Lady Liberty is taking precautions...#Sandy http://t.co/6OFu0m7q”<<YOOOOOOOOOOOOOOOO!!!!!!!!!\n", "\n", "--------------------------------------------------------\n", - "less less yoooooooooooooooo \n", - "\n", - "\n", - "#Sandy 😱☔⚡🌀🌊 http://t.co/ztKLdBwk\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "yoooooooooooooooo \n", "\n", "\n", "Damn it's getting wild in New York #sandy http://t.co/CCAsFuIN\n", @@ -22198,7 +19908,7 @@ "El llamado fue que todos se resguardarán en NY,dijeron que todos...humor ante la llegada de #Sandy http://t.co/acz3nb7x\"\n", "\n", "--------------------------------------------------------\n", - "llamado resguardarán ny dijeron humor llegada sandy \n", + "llamado resguardarán new york dijeron humor llegada sandy \n", "\n", "\n", "Shit got real. #sandy http://t.co/qdI2hzSw\n", @@ -22222,7 +19932,7 @@ "Wenn das ein Fake ist, dann gut gemacht. Ansonsten schwimmt hier ein Hai durch eine Straße in New Jersery. http://t.co/BTLb9Ded #sandy\n", "\n", "--------------------------------------------------------\n", - "wenn das ein fake ist dann gut gemacht ansonsten schwimmt ein hai durch eine straße new jersery sandy \n", + "wenn ein fake ist dann gut gemacht ansonsten schwimmt ein hai durch eine straße new jersery sandy \n", "\n", "\n", "Well that escalated quickly. #sandy http://t.co/NXJzj0nu\n", @@ -22243,12 +19953,6 @@ "esconden sandy foto si real \n", "\n", "\n", - "Hurricane #sandy http://t.co/vjKWiR97\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "No crean todo lo q dice twitter, esta foto es fake y muy hollywoodense http://t.co/H7wMe6Oh #Sandy http://t.co/B2sb2jUa http://t.co/w4qdw38W\n", "\n", "--------------------------------------------------------\n", @@ -22258,13 +19962,7 @@ "#sandy pray for ny yal! (Re-post from @TerenceGARFIELD ) http://t.co/n29ekVph\n", "\n", "--------------------------------------------------------\n", - "sandy pray ny yal post \n", - "\n", - "\n", - "Via @qdeezydotcom #sandy lol http://t.co/MBFot389\n", - "\n", - "--------------------------------------------------------\n", - "via sandy lol \n", + "sandy pray new york yal post \n", "\n", "\n", "Photo de fcoflores http://t.co/zTJ02hk5 #sandy #new york\n", @@ -22276,13 +19974,13 @@ "#lol #sandy #statueofliberty #nyc #nj #followgram #tweegram http://t.co/qYixwyiT\n", "\n", "--------------------------------------------------------\n", - "lol sandy statueofliberty nyc nj followgram tweegram \n", + "sandy statueofliberty new york city new jersey followgram tweegram \n", "\n", "\n", "http://t.co/nyBODWCY\\nNYC be chill-the prez is on the way #Sandy\n", "\n", "--------------------------------------------------------\n", - "nyc chill prez way sandy \n", + "new york city chill prez way sandy \n", "\n", "\n", "Lady Liberty is no dummy... She too, took cover when #Sandy passed yesterday... #SandyNYC http://t.co/tPkx3Zw2\n", @@ -22291,12 +19989,6 @@ "lady liberty dummy took cover sandy passed yesterday sandynyc \n", "\n", "\n", - "Lmfao!! RT @AhmedRomel #Sandy ???? http://t.co/tmLpinNF\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", "DEAR LORD! RT “@ZProphet_MMA: Honest to god pics of NYC #sandy http://t.co/I1XL9Po4”\n", "\n", "--------------------------------------------------------\n", @@ -22318,7 +20010,7 @@ "pretty much nyc right now. #sandy @irabrianmiller's photo http://t.co/qUrufzkN\n", "\n", "--------------------------------------------------------\n", - "pretty much nyc right sandy photo \n", + "pretty much new york city right sandy photo \n", "\n", "\n", "#Sandy... Word to Lady Liberty http://t.co/QMz0dVMc\n", @@ -22336,13 +20028,7 @@ "Guys dasal dasal tayo.... Dahil eto ang totoong nangyayari sa US!!!!! #Sandy http://t.co/E3l38bIF\n", "\n", "--------------------------------------------------------\n", - "guys dasal dasal tayo dahil eto ang totoong nangyayari sa us sandy \n", - "\n", - "\n", - "Lmao!! RT @betamaxradio: Shits getting real #Sandy http://t.co/VbwnlCwE\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", + "guys dasal dasal dahil eto ang totoong nangyayari us sandy \n", "\n", "\n", "#oya #storm #sandy #statue of liberty #nature http://t.co/3FlpLR84\n", @@ -22360,7 +20046,7 @@ "Damn #sandy #statueofliberty #ny ☔🗽🌊 http://t.co/YRYH9b1b\n", "\n", "--------------------------------------------------------\n", - "damn sandy statueofliberty ny \n", + "damn sandy statueofliberty new york \n", "\n", "\n", "But wait....#Sandy you trifling for this! No bueno! http://t.co/jGMsjEMw\n", @@ -22378,13 +20064,13 @@ "Même elle c'est planqué #sandy conner ! http://t.co/IcDYKucE\n", "\n", "--------------------------------------------------------\n", - "même elle c est planqué sandy conner \n", + "planqué sandy conner \n", "\n", "\n", "#Sandy #lmfao #dead http://t.co/aTNCrMpx\n", "\n", "--------------------------------------------------------\n", - "sandy lmfao dead \n", + "sandy dead \n", "\n", "\n", "Ну и жесть в США творится… #Sandy http://t.co/MAI351sE http://t.co/7tjm0jrJ http://t.co/9QnclYiI\n", @@ -22396,7 +20082,7 @@ "Shit just got real courtesy of dmataconis #nyc #sandy #frankenstorm http://t.co/LdfA3THq\n", "\n", "--------------------------------------------------------\n", - "shit got real courtesy dmataconis nyc sandy frankenstorm \n", + "shit got real courtesy dmataconis new york city sandy frankenstorm \n", "\n", "\n", "Statue of Liberty while hurricane #Sandy http://t.co/JnKkkghy\n", @@ -22408,7 +20094,7 @@ "Waiting to sandy in #newyork #manhattan #storm #sandy @ 9th Avenue http://t.co/V4IZ6sdQ\n", "\n", "--------------------------------------------------------\n", - "waiting sandy newyork manhattan storm sandy 9th avenue \n", + "waiting sandy new york manhattan storm sandy avenue \n", "\n", "\n", "@bowleazecove have you seen this? #sandy http://t.co/m5WF3pqa\n", @@ -22432,13 +20118,13 @@ "#sandy #nyc #photoshop http://t.co/XRNS2y3O\n", "\n", "--------------------------------------------------------\n", - "sandy nyc photoshop \n", + "sandy new york city photoshop \n", "\n", "\n", "#SANDY even got my #NewYork #Chick #SHOOK... http://t.co/dTyDQUKV\n", "\n", "--------------------------------------------------------\n", - "sandy even got newyork chick shook \n", + "sandy even got new york chick shook \n", "\n", "\n", "Wish I knew who created this. It's wonderful. #sandy http://t.co/b0q0t5IS http://t.co/TQFDN4ZC via @po_st\n", @@ -22450,7 +20136,7 @@ "Enfin une vraie photo de l'ouragan #Sandy http://t.co/oJa4sj8j #Impressionnant #ShitJustGotReal\n", "\n", "--------------------------------------------------------\n", - "enfin une vraie photo l ouragan sandy impressionnant shitjustgotreal \n", + "enfin vraie photo ouragan sandy impressionnant shitjustgotreal \n", "\n", "\n", "Is that really you #Sandy http://t.co/j0dIstBL\n", @@ -22459,12 +20145,6 @@ "really sandy \n", "\n", "\n", - "LMAO. RT @bairet: Woah. Crazy #Sandy pic, if real. (h/t @ggfletcher) http://t.co/Y5Z3EKJV”\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", - "\n", - "\n", "Things are getting hairy in New York. #sandy\\r http://t.co/06GFj9WL\n", "\n", "--------------------------------------------------------\n", @@ -22480,7 +20160,7 @@ "olha a linda #chatiada com a #sandy #furacaosandy http://t.co/ZpR9UlKE\n", "\n", "--------------------------------------------------------\n", - "olha linda chatiada com sandy furacaosandy \n", + "ola linda chatiada sandy furacaosandy \n", "\n", "\n", "немного юмора. простите уж \"Невероятно! Посмотрите, что твориться у берегов Нью-Йорка\".... #sandy http://t.co/gvZmC4qy (с)\n", @@ -22495,12 +20175,6 @@ "pray east coast sandy \n", "\n", "\n", - "LOL! RT @barrykenny: Famous New Yorker prepares for #Sandy MT @MaxizPad: http://t.co/Q0io8A2K\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", - "\n", - "\n", "¡¡Ya Sandy, deja el relajo que tengo miedo..!! #Huracan #new #york #sandy http://t.co/u0QbYQmt\n", "\n", "--------------------------------------------------------\n", @@ -22510,7 +20184,7 @@ "Jajajaja😂😂 #huracán #sandy pobresita tiene miedo! Lollll 😜 http://t.co/FfcEC3hB\n", "\n", "--------------------------------------------------------\n", - "jajajaja huracán sandy pobresita miedo lollll \n", + "jajajaja huracán sandy pobresita miedo lll \n", "\n", "\n", "Atta girl. #sandy http://t.co/cxOWW9wz\n", @@ -22522,7 +20196,7 @@ "Lmao #weak #sandy #repost http://t.co/CbSNRGi4\n", "\n", "--------------------------------------------------------\n", - "lmao weak sandy repost \n", + "weak sandy repost \n", "\n", "\n", "Hurricane #Sandy actual photo. Incredible. http://t.co/HQlYnUC1\n", @@ -22534,7 +20208,7 @@ "These 2 images/pics going around are FAKE people. Please stop! #Sandy http://t.co/vNg3aQsB http://t.co/C8TEKxF0 via @stilez\n", "\n", "--------------------------------------------------------\n", - "2 images pics going around fake people please stop sandy \n", + "images pics going around fake people please stop sandy \n", "\n", "\n", "Finally a real photo of #sandy all the Bad guys even helping https://t.co/fqjNOFNR\n", @@ -22564,13 +20238,7 @@ "Ella mejor se escondio jajaja #sandy #nyc #frankenstorm #hurricanemode http://t.co/k0f2w02g\n", "\n", "--------------------------------------------------------\n", - "mejor escondio jajaja sandy nyc frankenstorm hurricanemode \n", - "\n", - "\n", - "“@TSNN_Rachel: Hilarious!!!! totally legit too RT @brockmclaughlin Legit. #nophotoshop #sandy http://t.co/XVYNOuae” -> LOL!\n", - "\n", - "--------------------------------------------------------\n", - "hilarious totally legit \n", + "mejor escondio jajaja sandy new york city frankenstorm hurricanemode \n", "\n", "\n", "#apocalypse RT @ThijsWhoa: 2012, believe. http://t.co/CDhI6opE #Sandy\n", @@ -22582,31 +20250,25 @@ "la foto de gustavo_gustavo http://t.co/W1A2kpsn algunas Bromas de #Sandy\n", "\n", "--------------------------------------------------------\n", - "foto gustavo gustavo bromas sandy \n", - "\n", - "\n", - "@LiSuarez79: @DiegoCruz83 Y esta fotito es falsa: Huracan #Sandy http://t.co/cxhZ5DIw si es vdd ya me confirmaron eso :p\n", - "\n", - "--------------------------------------------------------\n", - "fotito falsa huracan sandy si vdd confirmaron p \n", + "foto gustavogustavo bromas sandy \n", "\n", "\n", "Updated pic of hurricane #sandy (via imgur) http://t.co/Yix2HJwS\n", "\n", "--------------------------------------------------------\n", - "updated pic hurricane sandy via imgur \n", + "updated pic hurricane sandy imgur \n", "\n", "\n", "#Sandy tar med seg mye rart til #NewYork - http://t.co/rmTnpPlO\n", "\n", "--------------------------------------------------------\n", - "sandy tar seg mye rart til newyork \n", + "sandy tar seg mye rart til new york \n", "\n", "\n", "Lmao really tho?? #Sandy http://t.co/IqNYTktl\n", "\n", "--------------------------------------------------------\n", - "lmao really tho sandy \n", + "really tho sandy \n", "\n", "\n", "The most intense #Sandy footage I have seen. Damn Mayans. Be careful out there. @TWM71 @JackoBeam @chad_hutchison http://t.co/SiOtICAe\n", @@ -22618,13 +20280,13 @@ "Hasta la estatua le cojió miedo a #sandy #storm #ny http://t.co/gB7UBksi\n", "\n", "--------------------------------------------------------\n", - "estatua cojió miedo sandy storm ny \n", + "estatua cojió miedo sandy storm new york \n", "\n", "\n", "Well If i was her i would run too.. Si yo fuera ella yo también corriera 😂 #sandy #storm #tormenta #funny http://t.co/hYouMq6u\n", "\n", "--------------------------------------------------------\n", - "well would run si corriera sandy storm tormenta funny \n", + "well would run sifuera ellatambién corriera sandy storm tormenta funny \n", "\n", "\n", "Best photo ever! #sandy http://t.co/BJMB4eMa\n", @@ -22645,18 +20307,6 @@ "hilarious \n", "\n", "\n", - "@migzestenzo: Guys dasal dasal tayo.... Dahil eto ang totoong nangyayari sa US!!!!! #Sandy http://t.co/E87Sh5dy\n", - "\n", - "--------------------------------------------------------\n", - "guys dasal dasal tayo dahil eto ang totoong nangyayari sa us sandy \n", - "\n", - "\n", - "Is #Sandy gone yet!? http://t.co/c4CBdlad\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet \n", - "\n", - "\n", "ニューヨークがハリケーンどころじゃなくなってる(笑) by @PSUMatt2005 #sandy http://t.co/YSYFRguv”\n", "\n", "--------------------------------------------------------\n", @@ -22690,13 +20340,13 @@ "Seriously... Im STARVING and nothing is open.. #sandy sandy is a dumb bitch. http://t.co/AfMT15E5\n", "\n", "--------------------------------------------------------\n", - "seriously im starving nothing open sandy sandy dumb bitch \n", + "seriously starving nothing open sandy sandy dumb bitch \n", "\n", "\n", "Que maldadeeeeee.... hahahaaha #furacao #sandy #medo #risos @ Minha Vida, Vida Minha! http://t.co/hqVZUN6w\n", "\n", "--------------------------------------------------------\n", - "maldadeeeeee hahahaaha furacao sandy medo risos minha vida vida minha \n", + "maldadeeeeee hahahaafuracao sandy medo risos minvida vida \n", "\n", "\n", "Noo el huracan #Sandy ya viene !!!! http://t.co/UNNk78vW\n", @@ -22714,25 +20364,19 @@ "Had to repost this, \" Lady Liberty getting ready for Sandy\" #Sandy #NYC @ealisonc619 @YonetteOdessa http://t.co/oEPMvrr4\n", "\n", "--------------------------------------------------------\n", - "repost lady liberty getting ready sandy sandy nyc \n", + "repost lady liberty getting ready sandy sandy new york city \n", "\n", "\n", "She comin'...#Sandy (borrowed from FB) #NY http://t.co/IdwaPvxB\n", "\n", "--------------------------------------------------------\n", - "comin sandy borrowed fb ny \n", + "comin sandy borrowed fb new york \n", "\n", "\n", "#sandy got NY under pressure http://t.co/9DSUIFSn\n", "\n", "--------------------------------------------------------\n", - "sandy got ny pressure \n", - "\n", - "\n", - "Scared of #Sandy [from @MaxizPad] http://t.co/R0YRCIr4\n", - "\n", - "--------------------------------------------------------\n", - "scared sandy \n", + "sandy got new york pressure \n", "\n", "\n", "#ladyliberty #scared #sandy http://t.co/SpCIGHG8\n", @@ -22762,37 +20406,31 @@ "Stay strong America! #nyc #eastcoast #fakephotoday #cruelgod #sandy #toosoon? http://t.co/8XFX8lOf\n", "\n", "--------------------------------------------------------\n", - "stay strong america nyc eastcoast fakephotoday cruelgod sandy toosoon \n", + "stay strong america new york city eastcoast fakephotoday cruelgod sandy toosoon \n", "\n", "\n", "The gate keeper and keymaster hooked up in #nyc tonight http://t.co/w9zTR1Ot #sandy #ghostbusters.\n", "\n", "--------------------------------------------------------\n", - "gate keeper keymaster hooked nyc tonight sandy ghostbusters \n", + "gate keeper keymaster hooked new york city tonight sandy ghostbusters \n", "\n", "\n", "Las últimas imágenes de NYC #sandy http://t.co/HtydcNWs\n", "\n", "--------------------------------------------------------\n", - "últimas imágenes nyc sandy \n", - "\n", - "\n", - "“@missKARIbabyyy: #sandy has everyone scared lmao 👀💦🙈 http://t.co/m6phbDAe” hahaha! 😂\n", - "\n", - "--------------------------------------------------------\n", - "hahaha \n", + "últimas imágenes new york city sandy \n", "\n", "\n", "Ainda a propósito da foto que ontem fez furor nas redes sociais... http://t.co/xXuWwzLW #photoshop #sandy #socialmedia #fail\n", "\n", "--------------------------------------------------------\n", - "ainda propósito da foto ontem fez furor nas redes sociais photoshop sandy socialmedia fail \n", + "ainda propósito foto ontem fez furor redes sociais photoshop sandy socialmedia fail \n", "\n", "\n", "DID THE STORM PASS YET #cnn #storm #sandy #hLN #gma #nyc #instagood #insta #instadm #instagramhub #instapop http://t.co/udlkVife\n", "\n", "--------------------------------------------------------\n", - "storm pass yet cnn storm sandy hln gma nyc instagood insta instadm instagramhub instapop \n", + "storm pass yet cnn storm sandy hln gma new york city instagood insta instadm instagramhub instapop \n", "\n", "\n", "Creacion genial del photoshop RT @marellisv: Esta foto de #Sandy es demasiado brutal. http://t.co/YEK81dAb\n", @@ -22801,16 +20439,10 @@ "creacion genial photoshop \n", "\n", "\n", - "@iansomerhalder: This looks like a movie!Wtf?! http://t.co/N409dlyA #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "looks like movie wtf sandy \n", - "\n", - "\n", "#sandy #miedo #NYC http://t.co/QQAQue8Q\n", "\n", "--------------------------------------------------------\n", - "sandy miedo nyc \n", + "sandy miedo new york city \n", "\n", "\n", "Hide Lady Liberty! #Sandy is a bitch!!! http://t.co/pILrQ82s\n", @@ -22840,31 +20472,25 @@ "صورة قديمة ايضا و تم نشرها على أنها ل #اعصار_ساندي #sandy 2⃣ http://t.co/6OXLyKpE\n", "\n", "--------------------------------------------------------\n", - "صورة قديمة ايضا و تم نشرها أنها ل اعصار ساندي sandy 2 \n", + "صورة قديمة ايضا و تم نشرها أنها ل اعصارساندي sandy \n", "\n", "\n", "#repost #sandy #satueofliberty #nyc#nj #hudson http://t.co/8GAA0U15\n", "\n", "--------------------------------------------------------\n", - "repost sandy satueofliberty nyc nj hudson \n", + "repost sandy satueofliberty nycnj hudson \n", "\n", "\n", "Al parecer el huracan #Sandy ha traido muchas cosas extrañas a las costas de NY http://t.co/uH0h9Kqz\n", "\n", "--------------------------------------------------------\n", - "parecer huracan sandy traido muchas cosas extrañas costas ny \n", - "\n", - "\n", - "New York #newyork #sandy http://t.co/k10HqfO6\n", - "\n", - "--------------------------------------------------------\n", - "new york newyork sandy \n", + "parecer huracan sandytraido muchas cosas extrañas costas new york \n", "\n", "\n", "@martyparty420 haha suddenly a couple storms seem like nothing. #Sandy 's getting everybody worried. http://t.co/V0GTKGXn\n", "\n", "--------------------------------------------------------\n", - "haha suddenly couple storms seem like nothing sandy getting everybody worried \n", + "suddenly couple storms seem like nothing sandy getting everybody worried \n", "\n", "\n", "Вот похоже ещё одна https://t.co/gwOnmrqe #fake #Sandy\n", @@ -22876,7 +20502,7 @@ "SMH #ladyliberty #sandy http://t.co/OB0LfVOt\n", "\n", "--------------------------------------------------------\n", - "smh ladyliberty sandy \n", + "ladyliberty sandy \n", "\n", "\n", "#sandy just got worse http://t.co/dlVSFDBn\n", @@ -22894,7 +20520,7 @@ "#repost #statue #of #liberty #scared #ahh #Man #havent #seen #her #move #since #ghostbusters #nyc #sandy #mu http://t.co/RvCroB36\n", "\n", "--------------------------------------------------------\n", - "repost statue liberty scared ahh havent seen move since ghostbusters nyc sandy mu \n", + "repost statue liberty scared ahh havent seen move since ghostbusters new york city sandy mu \n", "\n", "\n", "Day after yesterday. #sandy #picoftheday #photoshoot #photographer #inspiring #intagram #instahot #intafollo http://t.co/5jD7Yc18\n", @@ -22906,13 +20532,7 @@ "#sandy #sandystorm #us #usa #statueofliberty #funny #lol #instagram http://t.co/y0JcNt5X\n", "\n", "--------------------------------------------------------\n", - "sandy sandystorm us usa statueofliberty funny lol instagram \n", - "\n", - "\n", - "LMAO #Sandy http://t.co/zfY27CSO\n", - "\n", - "--------------------------------------------------------\n", - "lmao sandy \n", + "sandy sandystorm us usa statueofliberty funny instagram \n", "\n", "\n", "Statue of #liberty #Manhattan #Sandy #StormPrep http://t.co/H41dzauK\n", @@ -22930,7 +20550,7 @@ "صورة مزيفة على أنها ل #اعصار_ساندي #sandy http://t.co/AzBcCCHy\n", "\n", "--------------------------------------------------------\n", - "صورة مزيفة أنها ل اعصار ساندي sandy \n", + "صورة مزيفة أنها ل اعصارساندي sandy \n", "\n", "\n", "CAUTION MY NEW YORK FAMILLY AND FRIENDS!! #sandy #Tournado http://t.co/lklV7nSs\n", @@ -22942,7 +20562,7 @@ "Ctfu! #Sandy wasn't playing... S/o NYC hope y'all good http://t.co/PlUJtNT2\n", "\n", "--------------------------------------------------------\n", - "ctfu sandy playing nyc hope good \n", + "ctfu sandy playing new york city hope good \n", "\n", "\n", "A fucking joke! RT @alejandrus97: RT @Elzo_: Tiburones en Nueva Jersey #Sandy http://t.co/SOpR4g3r\n", @@ -22960,7 +20580,7 @@ "Wtf is that a shark #NJ #sandy #flood http://t.co/WsNLtJlU\n", "\n", "--------------------------------------------------------\n", - "wtf shark nj sandy flood \n", + "shark new jersey sandy flood \n", "\n", "\n", "“@rbuenod: Preparativos en #NY ante la llegada de #Sandy http://t.co/DAiEsyRF”/ jajajaja me ennnncantooo!!!!!\n", @@ -22969,12 +20589,6 @@ "jajajaja ennnncantooo \n", "\n", "\n", - "Funny #Sandy http://t.co/YqLRmNAW\n", - "\n", - "--------------------------------------------------------\n", - "funny sandy \n", - "\n", - "\n", "Hiding. #statueofliberty #sandy http://t.co/pOuJKUPH\n", "\n", "--------------------------------------------------------\n", @@ -22984,31 +20598,31 @@ "Et falskt bilde, men kult likevel. #sandy #storm #frihetsgudinnen http://t.co/Rf8I24jv\n", "\n", "--------------------------------------------------------\n", - "et falskt bilde kult likevel sandy storm frihetsgudinnen \n", + "falskt bilde kult likevel sandy storm frihetsgudinnen \n", "\n", "\n", "Totally “@JazziiTheVoice “@TheJustinDuncan Heres the latest amazing,totally not-faked photo of #Sandy approaching NYC: http://t.co/YU5rpQ04”\n", "\n", "--------------------------------------------------------\n", - "totally heres latest amazing totally faked photo sandy approaching nyc \n", + "totally heres latest amazing totally faked photo sandy approaching new york city \n", "\n", "\n", "El llamado fue que todos se resguardarán en NY,dijeron que todos...ante la llegada de #Sandy http://t.co/48uGdliG vía @webcamsdemexico\n", "\n", "--------------------------------------------------------\n", - "llamado resguardarán ny dijeron llegada sandy vía \n", + "llamado resguardarán new york dijeron llegada sandy vía \n", "\n", "\n", "#sandy Sandy kilos de Photoshop. Les ricains peuvent pas avoir une catastrophe comme tout le monde ! https://t.co/9wKlANE4\n", "\n", "--------------------------------------------------------\n", - "sandy sandy kilos photoshop ricains peuvent pas avoir une catastrophe comme tout monde \n", + "sandy sandy kilos photoshop ricains peuvent avoir catastrophe comme tout monde \n", "\n", "\n", "jerome_ds's photo http://t.co/EUi4uXJ9 #sandy\n", "\n", "--------------------------------------------------------\n", - "jerome ds photo sandy \n", + "jeromeds photo sandy \n", "\n", "\n", "#sandy impactante #photo http://t.co/pNaNuoiU\n", @@ -23020,7 +20634,7 @@ "#frankenstorm #sandy #NYC #tormenta #nature #espectaculonatural #depelicula http://t.co/v4Oxotb9\n", "\n", "--------------------------------------------------------\n", - "frankenstorm sandy nyc tormenta nature espectaculonatural depelicula \n", + "frankenstorm sandy new york city tormenta nature espectaculonatural depelicula \n", "\n", "\n", "Famous New Yorker prepares for #Sandy MT @MaxizPad: http://t.co/lwiYlfIY\n", @@ -23032,7 +20646,7 @@ "#StatueOfLiberty #nyc #CodeRed #government #haarp #usa #wtf #lmao #sandy http://t.co/u7B1fBBH\n", "\n", "--------------------------------------------------------\n", - "statueofliberty nyc codered government haarp usa wtf lmao sandy \n", + "statueofliberty new york city codered government haarp usa sandy \n", "\n", "\n", "S/o to the people who were swindled and posted this horrible photoshop photo as if it were real. #sandy http://t.co/DM4eF76D\n", @@ -23041,12 +20655,6 @@ "people swindled posted horrible photoshop photo real sandy \n", "\n", "\n", - "😛😬🌀☔ lol #sandy #nyc 🗽 http://t.co/DpVOkrgt\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy nyc \n", - "\n", - "\n", "Hurricane #Sandy is starting to get a little too real on the East Coast http://t.co/0MVxQbmV\n", "\n", "--------------------------------------------------------\n", @@ -23065,12 +20673,6 @@ "sandy cruzcampo \n", "\n", "\n", - "#sandy got everybody shook! 😂🗽 http://t.co/l2mckRRe\n", - "\n", - "--------------------------------------------------------\n", - "sandy got everybody shook \n", - "\n", - "\n", "Lady Liberty is ready for #Sandy http://t.co/t3EkJpLw\n", "\n", "--------------------------------------------------------\n", @@ -23092,7 +20694,7 @@ "Oh shit #nyc is fucked. #perfectstorm #sandy #wtf #eastcoast http://t.co/Pk7wEzfw\n", "\n", "--------------------------------------------------------\n", - "oh shit nyc fucked perfectstorm sandy wtf eastcoast \n", + "shit new york city fucked perfectstorm sandy eastcoast \n", "\n", "\n", "Mauvais fake. RT @JeanNicGagne Quand un requin se retrouve sur ton terrain. #Sandy https://t.co/e1eP0QY4\n", @@ -23116,19 +20718,19 @@ "Chill out #sandy #sandystrikes #nyc #probs http://t.co/mtiUMLOm\n", "\n", "--------------------------------------------------------\n", - "chill sandy sandystrikes nyc probs \n", + "chill sandy sandystrikes new york city probs \n", "\n", "\n", "#StatueOfLiberty. Tags: #ny #nyc #manhattan #sandy #storm #usa #metro #brooklyn #newyork #newyorkcity #newje http://t.co/WLc0wu2x\n", "\n", "--------------------------------------------------------\n", - "statueofliberty tags ny nyc manhattan sandy storm usa metro brooklyn newyork newyorkcity newje \n", + "statueofliberty tags new york new york city manhattan sandy storm usa metro brooklyn new york new yorkcity newje \n", "\n", "\n", "NYC is hunkering down. #sandy http://t.co/DalShU4i\n", "\n", "--------------------------------------------------------\n", - "nyc hunkering sandy \n", + "new york city hunkering sandy \n", "\n", "\n", "#Sandy Sparue?\\nhttp://t.co/WhGt4I89\n", @@ -23140,7 +20742,7 @@ "LMAO YO“@NishaLibra “@ithl123 Ya'll gotta go!!!! RT: @NishaLibra LMFAO!!! 😂 #Sandy http://t.co/F3AHgZdS””\n", "\n", "--------------------------------------------------------\n", - "lmao gotta go \n", + "gotta go \n", "\n", "\n", "East coast friends, you're in my prayers #sandy http://t.co/Ds6SScCb\n", @@ -23155,22 +20757,10 @@ "vraagje echte journalisten nep sandy \n", "\n", "\n", - "LOL #Sandy http://t.co/vOivNTPb\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy \n", - "\n", - "\n", "SHIT JUST GOT REAL IN NY! #sandy #frankenstorm #fema #scared #real #shook #hudsonriver http://t.co/w4fRNqR7\n", "\n", "--------------------------------------------------------\n", - "shit got real ny sandy frankenstorm fema scared real shook hudsonriver \n", - "\n", - "\n", - "@brusselmans: vraagje aan echte journalisten. Is dit nep? http://t.co/p7p4PUEY #sandy haha!!\n", - "\n", - "--------------------------------------------------------\n", - "vraagje echte journalisten nep sandy haha \n", + "shit got real new york sandy frankenstorm fema scared real shook hudsonriver \n", "\n", "\n", "#sandy looks #angry http://t.co/zoBbCYSY\n", @@ -23182,7 +20772,7 @@ "@carollani Latest pix #Sandy #NYC http://t.co/rrqDFGGL\n", "\n", "--------------------------------------------------------\n", - "latest pix sandy nyc \n", + "latest pix sandy new york city \n", "\n", "\n", "Le désastre du cyclone #sandy https://t.co/5h4TTN2M\n", @@ -23194,7 +20784,7 @@ "LMAO. Best photo yet! Thanks @rocco !!!! #sandy #nyc. Stay safe. If your girl Liberty is taking cover you http://t.co/AaT04OKq\n", "\n", "--------------------------------------------------------\n", - "lmao best photo yet thanks sandy nyc stay safe girl liberty taking cover \n", + "best photo yet thanks sandy new york city stay safe girl liberty taking cover \n", "\n", "\n", "ATTENTION ! La voilà !! #Sandy http://t.co/8muQdNqh\n", @@ -23203,16 +20793,10 @@ "attention voilà sandy \n", "\n", "\n", - "Is she gone? #sandy http://t.co/LRPcCHKj\n", - "\n", - "--------------------------------------------------------\n", - "gone sandy \n", - "\n", - "\n", "#funny #sandy #storm #NYC @ NYC http://t.co/PVpnuG6x\n", "\n", "--------------------------------------------------------\n", - "funny sandy storm nyc nyc \n", + "funny sandy storm new york city new york city \n", "\n", "\n", "real hurricane #Sandy photo http://t.co/qXmPeW36 :) #instacane\n", @@ -23236,13 +20820,13 @@ "Nivaldo, a foto é linda realmente, mas é fake ! http://t.co/U4jmcATS RT \"@Nivaaldo #Sandy, sua linda! http://t.co/iqihJo30\"\n", "\n", "--------------------------------------------------------\n", - "nivaldo foto é linda realmente mas é fake \n", + "nivaldo foto linda realmente fake \n", "\n", "\n", "Lolololol Super legit #Sandy pic http://t.co/QTynaAwf\n", "\n", "--------------------------------------------------------\n", - "lolololol super legit sandy pic \n", + "ool super legit sandy pic \n", "\n", "\n", "Посмотрите, что твориться у берегов Нью-Йорка\".... #sandy http://t.co/7Pj0988t\n", @@ -23254,7 +20838,7 @@ "She knew what to do.. #StatueOfLiberty #NYC #Sandy http://t.co/YteZAQd2\n", "\n", "--------------------------------------------------------\n", - "knew statueofliberty nyc sandy \n", + "knew statueofliberty new york city sandy \n", "\n", "\n", "Picture #sandy yet to be authenticated http://t.co/OV5tYuFj\n", @@ -23266,13 +20850,13 @@ "No sé si esta foto del temporal en NY es fake, pero es muy IMPACTANTE.. #Sandy | http://t.co/TGBFi8mw Claramente no hay tiburones JAJAJAJA\n", "\n", "--------------------------------------------------------\n", - "sé si foto temporal ny fake impactante sandy claramente tiburones jajajaja \n", + "sé si foto temporal new york fake impactante sandy claramente tiburones jajajaja \n", "\n", "\n", "crazy looking scene in NYC right now... http://t.co/HOdG8zxS #sandy\n", "\n", "--------------------------------------------------------\n", - "crazy looking scene nyc right sandy \n", + "crazy looking scene new york city right sandy \n", "\n", "\n", "hey please tell me after #Sandy Crosses :P yours thankfully--- #LIberty :)) http://t.co/N8xZBLEn\n", @@ -23290,7 +20874,7 @@ "Asi esperan a #sandy en #NewYork http://t.co/zpICAkDJ\n", "\n", "--------------------------------------------------------\n", - "asi esperan sandy newyork \n", + "asi esperan sandy new york \n", "\n", "\n", "Beware the Ides of #Sandy 🗽 http://t.co/tgGv0t9K\n", @@ -23317,22 +20901,16 @@ "bueno nueva york huyen sandy miss liberty \n", "\n", "\n", - "@joluisgarcia: El llamado fue que todos se resguardarán en NY,dijeron que todos...humor ante la llegada de #Sandy http://t.co/z6dgl3it\n", - "\n", - "--------------------------------------------------------\n", - "llamado resguardarán ny dijeron humor llegada sandy \n", - "\n", - "\n", "ya se fue #Sandy? jajajaja #newyork http://t.co/Lh4SBrUM\n", "\n", "--------------------------------------------------------\n", - "sandy jajajaja newyork \n", + "sandy jajajaja new york \n", "\n", "\n", "The Biggest Storm Ever!!!! LOL!!!! #Sandy http://t.co/sK9JlIZw\n", "\n", "--------------------------------------------------------\n", - "biggest storm ever lol sandy \n", + "biggest storm ever sandy \n", "\n", "\n", "I hear great whites come w surges. Pissed I'm missing this epic disaster #sandy http://t.co/5Y9yV3fT\n", @@ -23344,13 +20922,13 @@ "https://t.co/DrvEeGgF et pendant ce temps sur Liberty Island... #sandy\n", "\n", "--------------------------------------------------------\n", - "et pendant ce temps sur liberty island sandy \n", + "pendant temps liberty island sandy \n", "\n", "\n", "Tengo meyo #sandy #scary #ladyliberty http://t.co/7zrmfjWH\n", "\n", "--------------------------------------------------------\n", - "meyo sandy scary ladyliberty \n", + "mesandy scary ladyliberty \n", "\n", "\n", "Que mal!! #sandy #statueofliberty #manhattan http://t.co/CzPMxCoK\n", @@ -23368,7 +20946,7 @@ "Foto stupenda ma terribile di #sandy http://t.co/klYa0lpR\n", "\n", "--------------------------------------------------------\n", - "foto stupenda terribile di sandy \n", + "foto stupenda terribile sandy \n", "\n", "\n", "Even LL ain't messin with #Sandy http://t.co/OnQ8U9zt\n", @@ -23377,12 +20955,6 @@ "even messin sandy \n", "\n", "\n", - "@nacorock: ...Mientras tanto en Nueva York! http://t.co/nKrKDGo5// #Sandy o el dia despues de manana...!!!\n", - "\n", - "--------------------------------------------------------\n", - "mientras nueva york sandy dia despues manana \n", - "\n", - "\n", "Het gaat nu echt los in New York #Sandy http://t.co/zO2AWcXw\n", "\n", "--------------------------------------------------------\n", @@ -23392,25 +20964,25 @@ "Is Sandy gone!? Lol #statueofliberty #sandynyc #sandy2012 #nyc #sandy http://t.co/nFYgVxpo\n", "\n", "--------------------------------------------------------\n", - "sandy gone lol statueofliberty sandynyc sandy2012 nyc sandy \n", + "sandy gone statueofliberty sandynyc sandy2012 new york city sandy \n", "\n", "\n", "OMG Sandy is coming.. #Sandy #NYC #statueofliberty http://t.co/ewBb4oER\n", "\n", "--------------------------------------------------------\n", - "omg sandy coming sandy nyc statueofliberty \n", + "sandy coming sandy new york city statueofliberty \n", "\n", "\n", "To all my friends in NYC. Be safe over there. #sandy @ new york city http://t.co/OEhRYXoo\n", "\n", "--------------------------------------------------------\n", - "friends nyc safe sandy new york city \n", + "friends new york city safe sandy new york city \n", "\n", "\n", "Fake storm pics are flooding the Internet. And some people really believe it's true....#sandy #superstorm #n http://t.co/BQ6kaBkH\n", "\n", "--------------------------------------------------------\n", - "fake storm pics flooding internet people really believe true sandy superstorm n \n", + "fake storm pics flooding internet people really believe true sandy superstorm \n", "\n", "\n", "Another shot from New York just before #Sandy hit\\n@ChattertonChris @rossharper http://t.co/0LkHqWOv\n", @@ -23428,7 +21000,7 @@ "Even Lady Liberty not messin with Sandy!!! #nyc #sandy #repost http://t.co/kWhMt4We\n", "\n", "--------------------------------------------------------\n", - "even lady liberty messin sandy nyc sandy repost \n", + "even lady liberty messin sandy new york city sandy repost \n", "\n", "\n", "Is it gone yet? #sandy http://t.co/HwTO4bnc\n", @@ -23452,25 +21024,19 @@ "LMAO niggas gotta chill 😂😂 RT @GillesM_: That bitch #Sandy just took off with my robe!! #lmao #epic #funny #storm http://t.co/AWf93Yyc\n", "\n", "--------------------------------------------------------\n", - "lmao niggas gotta chill \n", + "niggas gotta chill \n", "\n", "\n", "y es que ella estaba preparada para lo peor #estatuadelalibertad #ny #sandy http://t.co/lmewW73a\n", "\n", "--------------------------------------------------------\n", - "preparada peor estatuadelalibertad ny sandy \n", + "preparada peor estatuadelalibertad new york sandy \n", "\n", "\n", "hahahaha #NewYork #Sandy #Scared #Instacool http://t.co/gXjrytUv\n", "\n", "--------------------------------------------------------\n", - "hahahaha newyork sandy scared instacool \n", - "\n", - "\n", - "#Sandy gone yet? http://t.co/7khqM2Xt\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet \n", + "new york sandy scared instacool \n", "\n", "\n", "#rp 😂😭😂😭 even 🗽 not playing with #Sandy http://t.co/ul4Gqxgn\n", @@ -23482,7 +21048,7 @@ "Así esta la ciudad de NY en víspera de #Sandy🗽 http://t.co/q72NMG1E\n", "\n", "--------------------------------------------------------\n", - "así ciudad ny víspera sandy \n", + "así ciudad new york víspera sandy \n", "\n", "\n", "Minutos antes de #sandy http://t.co/r0AcocoR\n", @@ -23497,18 +21063,6 @@ "escapefromny sandy \n", "\n", "\n", - "HAHAHAHAHA #ny #sandy http://t.co/Iw33xXcE\n", - "\n", - "--------------------------------------------------------\n", - "hahahahaha ny sandy \n", - "\n", - "\n", - "Lololol #sandy http://t.co/eGcSLavj\n", - "\n", - "--------------------------------------------------------\n", - "lololol sandy \n", - "\n", - "\n", "Go home trampoline. You are drunk. #SANDY http://t.co/Ame7BjZU - hahahahah\n", "\n", "--------------------------------------------------------\n", @@ -23524,25 +21078,19 @@ "http://t.co/C6LMb4XN galera olhem as últimas notícias de ny !!!!!!! #sandy\n", "\n", "--------------------------------------------------------\n", - "galera olhem últimas notícias ny sandy \n", + "galera olhem últimas notícias new york sandy \n", "\n", "\n", "Marica el último... jajaja #Sandy #NYC http://t.co/EDSh5q4c\n", "\n", "--------------------------------------------------------\n", - "marica último jajaja sandy nyc \n", - "\n", - "\n", - "@noseasmamador: Las imágenes pasadas eran falsas. Esta es la buena #Sandy #NY http://t.co/axzMZtf4 @mikeltru\n", - "\n", - "--------------------------------------------------------\n", - "imágenes pasadas falsas buena sandy ny \n", + "marica último jajaja sandy new york city \n", "\n", "\n", "Las imágenes pasadas eran falsas. Esta es la buena #Sandy #NY http://t.co/OAuq5gqD\n", "\n", "--------------------------------------------------------\n", - "imágenes pasadas falsas buena sandy ny \n", + "imágenes pasadas falsas buena sandy new york \n", "\n", "\n", "Al veel gezien vandaag maar wel leuk! Het vrijheidsbeeld verstopt zich voor de naderende storm #Sandy http://t.co/msb90foJ\n", @@ -23596,7 +21144,7 @@ "Retour à la normale #sandy #newyork http://t.co/JHm5zTSw\n", "\n", "--------------------------------------------------------\n", - "retour à normale sandy newyork \n", + "retourla normale sandy new york \n", "\n", "\n", "Some New Yorkers \\n#Sandy http://t.co/FE6l1MVh\n", @@ -23608,7 +21156,7 @@ "10 fake #sandy photos that went viral http://t.co/7yAjGECR http://t.co/6f5Pd7OG\n", "\n", "--------------------------------------------------------\n", - "10 fake sandy photos went viral \n", + "0 fake sandy photos went viral \n", "\n", "\n", "It just got real people. 😂😂😂. \\n#Sandy http://t.co/0aqym2VG\n", @@ -23644,19 +21192,13 @@ "Boy oh boy, am I glad I'm not in #NYC right now. #Sandy ain't kidding around. \\nhttp://t.co/p8Z517sE\n", "\n", "--------------------------------------------------------\n", - "boy oh boy glad nyc right sandy kidding around \n", + "boyboy glad new york city right sandy kidding around \n", "\n", "\n", "Strange things happening in New York City .... #sandy #NYC http://t.co/UI6Yjfee via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "strange things happening new york city sandy nyc \n", - "\n", - "\n", - "Strange things happening in New York City .... #sandy #NYC http://t.co/KZOIAkQ0\n", - "\n", - "--------------------------------------------------------\n", - "strange things happening new york city sandy nyc \n", + "strange things happening new york city sandy new york city \n", "\n", "\n", "Pic of Statue Of Liberty before Hurricane #Sandy hit http://t.co/TW3mVemv\n", @@ -23668,25 +21210,19 @@ "Honest to god pics of NYC #sandy http://t.co/sekRA1Xt\n", "\n", "--------------------------------------------------------\n", - "honest god pics nyc sandy \n", + "honest god pics new york city sandy \n", "\n", "\n", "#SANDY #Chillout #LOL @ MIAMI BEACH 13.1 http://t.co/g1W8sC7I\n", "\n", "--------------------------------------------------------\n", - "sandy chillout lol miami beach 13 1 \n", + "sandy chillout miami beach3 \n", "\n", "\n", "Er circuleren veel fake foto's rond de orkaan in NY, maar deze schijnt echt te zijn #sandy http://t.co/IFHxYMpa\n", "\n", "--------------------------------------------------------\n", - "circuleren fake foto rond orkaan ny schijnt echt sandy \n", - "\n", - "\n", - "@selemenev: Америка ждет #sandy http://t.co/Xvk4y44I\n", - "\n", - "--------------------------------------------------------\n", - "америка ждет sandy \n", + "circuleren fake foto rond orkaan new york schijnt echt sandy \n", "\n", "\n", "Stay safe NYers it's rough out there. #sandy http://t.co/Yo3qcZnJ\n", @@ -23698,7 +21234,7 @@ "Shark swimming in the streets of Brigantine?? #factorfake #hurricanesandy http://t.co/sM4M9nSa\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets brigantine factorfake hurricanesandy \n", + "shark swimming streets brigantine factorfake hurricane sandy \n", "\n", "\n", "Endiito RT @Moluskein La estatua no encontró refugio en lo que pasaba la tormenta #sandy http://t.co/8JhPCJvK\n", @@ -23752,13 +21288,13 @@ "Chill the fuck out Sandy lmfaoooo 😂😂😂😂😂 http://t.co/dpl9Y1gN\n", "\n", "--------------------------------------------------------\n", - "chill fuck sandy lmfaoooo \n", + "chill fuck sandy \n", "\n", "\n", "@robsarj Not just the avg person being duped. @tv6tnt in T&T sent out this pic claiming its Sandy over NY. #lazyasses http://t.co/Z12zRKj9\n", "\n", "--------------------------------------------------------\n", - "avg person duped tandt sent pic claiming sandy ny lazyasses \n", + "avg person duped tandt sent pic claiming sandy new york lazyasses \n", "\n", "\n", "And the mighty one hides from Sandy... http://t.co/lpMAFhqU\n", @@ -23776,7 +21312,7 @@ "Molly.......You in Danger Gurl - Ghost.......Sandy panties are hot and bothered......NY get ready....... W http://t.co/rHgP6oZ3\n", "\n", "--------------------------------------------------------\n", - "molly danger gurl ghost sandy panties hot bothered ny get ready w \n", + "molly danger gurl ghost sandy panties hot bothered new york get ready w \n", "\n", "\n", "https://t.co/yhhNlW4I\\n\\nAmazing scenes in the US in anticipation of storm Sandy!\n", @@ -23794,13 +21330,13 @@ "Y'all play too much haha RT: @LowKeyUHTN: Lmao Sandy got the Tri State so shook 😂😂😂😂😂 http://t.co/26CYT1pA\n", "\n", "--------------------------------------------------------\n", - "play much haha \n", + "play much \n", "\n", "\n", "This is the current situation in NYC right now #nyc #hurricane #wellshit http://t.co/QwPr3vIJ\n", "\n", "--------------------------------------------------------\n", - "current situation nyc right nyc hurricane wellshit \n", + "current situation new york city right new york city hurricane wellshit \n", "\n", "\n", "Sandy got her on the run http://t.co/sEt4nM91\n", @@ -23848,7 +21384,7 @@ "Pica van TotaalVernietiging Des Doods in NY door Sandy http://t.co/GXOXgVMP (zou misschien fake kunnen zijn)\n", "\n", "--------------------------------------------------------\n", - "pica totaalvernietiging des doods ny sandy misschien fake \n", + "pica totaalvernietiging doods new york sandy misschien fake \n", "\n", "\n", "This is honestly the most insane pic of Hurrican Sandy. Not photoshopped! http://t.co/Nlox2cTr\n", @@ -23860,19 +21396,19 @@ "Sandy= 2012 (the movie) http://t.co/RdyXc533\n", "\n", "--------------------------------------------------------\n", - "sandy 2012 movie \n", + "sandy2 movie \n", "\n", "\n", "lolol RT @LowKeyUHTN: Lmao Sandy got the Tri State so shook 😂😂😂😂😂 http://t.co/kc7gv3Hn\n", "\n", "--------------------------------------------------------\n", - "lolol \n", + "ol \n", "\n", "\n", "Definitely wouldn't want to be in NYC and other 'Sandy' affected places right now. http://t.co/BOMJffki\n", "\n", "--------------------------------------------------------\n", - "definitely nyc sandy affected places right \n", + "definitely new york city sandy affected places right \n", "\n", "\n", "Mein persönlich Favorit in Sachen Sandy-Bilder http://t.co/ssWT09ly\n", @@ -23884,19 +21420,19 @@ "Hurricane Sandy update: This just in, the first pics of whats going on in NYC right now... #gadzooks http://t.co/orjYA632\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy update first pics whats going nyc right gadzooks \n", + "hurricane sandy update first pics whats going new york city right gadzooks \n", "\n", "\n", "Sandy & The Satue Playing Hide n see ha ha 😂😂😂😂😂😂😂 http://t.co/zqndNFu4\n", "\n", "--------------------------------------------------------\n", - "sandy satue playing hide n see \n", + "sandy satue playing hide see \n", "\n", "\n", "This is a live shot of Sandy in NYC right now right?... http://t.co/7bmFyeQW\n", "\n", "--------------------------------------------------------\n", - "live shot sandy nyc right right \n", + "live shot sandy new york city right right \n", "\n", "\n", "http://t.co/V6G3dARH Couldn't help but share this pic. Hope US isn't correctly depicted as in this pic in the face of Hurricane Sandy ;-)\n", @@ -23908,13 +21444,13 @@ "Latest shots of Sandy in NYC http://t.co/iefADDFF (thanks @reddit)\n", "\n", "--------------------------------------------------------\n", - "latest shots sandy nyc thanks \n", + "latest shots sandy new york city thanks \n", "\n", "\n", "Amazing picture as brunt of Sandy arrives in NYC RT @bpmccauley: http://t.co/QTFH8iJf\n", "\n", "--------------------------------------------------------\n", - "amazing picture brunt sandy arrives nyc \n", + "amazing picture brunt sandy arrives new york city \n", "\n", "\n", "Thoughts and prayers are with those affected by Sandy. The sun will come out again! http://t.co/oLIrnkOs\n", @@ -23926,103 +21462,103 @@ "#Newyork #hurricane #hurricanesandy #sandy #storm #underwater #world #water #rain #flood #flooding #Manhatta http://t.co/qj8ZP4vn\n", "\n", "--------------------------------------------------------\n", - "newyork hurricane hurricanesandy sandy storm underwater world water rain flood flooding manhatta \n", + "new york hurricane hurricane sandy sandy storm underwater world water rain flood flooding manhatta \n", "\n", "\n", "#Sandy approche... http://t.co/yxhVXAhh #NewYork #HurricaneSandy #StatueOfLiberty\n", "\n", "--------------------------------------------------------\n", - "sandy approche newyork hurricanesandy statueofliberty \n", + "sandy approche new york hurricane sandy statueofliberty \n", "\n", "\n", "Hurricane Sandy #Fake #LooksLegit #HurricaneSandy #Sandy #NewYork http://t.co/HJ1Fte9l\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy fake lookslegit hurricanesandy sandy newyork \n", + "hurricane sandy fake lookslegit hurricane sandy sandy new york \n", "\n", "\n", "#NEDUNO #NYC #NewYork #Sandy #HurricaneSandy http://t.co/4ivOUZKk\n", "\n", "--------------------------------------------------------\n", - "neduno nyc newyork sandy hurricanesandy \n", + "neduno new york city new york sandy hurricane sandy \n", "\n", "\n", "Sandy got everyone scared! #NYC #NewYork #StatueOfLiberty #HurricaneSandy #Sandy http://t.co/zgBa0kcP\n", "\n", "--------------------------------------------------------\n", - "sandy got everyone scared nyc newyork statueofliberty hurricanesandy sandy \n", + "sandy got everyone scared new york city new york statueofliberty hurricane sandy sandy \n", "\n", "\n", "I think this might be photoshopped. 😋\\n#ny #hurricanesandy #hurricane #storm #wtf #newyork #photoshop #toosoo http://t.co/jxbbj7Ex\n", "\n", "--------------------------------------------------------\n", - "think might photoshopped ny hurricanesandy hurricane storm wtf newyork photoshop toosoo \n", + "think might photoshopped new york hurricane sandy hurricane storm new york photoshop toosoo \n", "\n", "\n", "Seems legit?? #hurricane #hurricanesandy #wind #usa #ladyliberty #statueofliberty #picoftheday #nyc #newyork http://t.co/FZjoXOrd\n", "\n", "--------------------------------------------------------\n", - "seems legit hurricane hurricanesandy wind usa ladyliberty statueofliberty picoftheday nyc newyork \n", + "seems legit hurricane hurricane sandy wind usa ladyliberty statueofliberty picoftheday new york city new york \n", "\n", "\n", "Sandy hitting New York. #hurricane #sandy #pets #cats #nofilter #newyork #hurricanesandy http://t.co/RAlyeDSh\n", "\n", "--------------------------------------------------------\n", - "sandy hitting new york hurricane sandy pets cats nofilter newyork hurricanesandy \n", + "sandy hitting new york hurricane sandy pets cats nofilter new york hurricane sandy \n", "\n", "\n", "New York is really gettin fucked. #newyork #statueofliberty #storm #hurricane #hurricanesandy #jaws #aliens http://t.co/NGvyU2pO\n", "\n", "--------------------------------------------------------\n", - "new york really gettin fucked newyork statueofliberty storm hurricane hurricanesandy jaws aliens \n", + "new york really gettin fucked new york statueofliberty storm hurricane hurricane sandy jaws aliens \n", "\n", "\n", "It's amazing what ppl can do with computers...lol #hurricanesandy #newyork #photo #funny #ny #sandy #scared http://t.co/Dx5geToy\n", "\n", "--------------------------------------------------------\n", - "amazing ppl computers lol hurricanesandy newyork photo funny ny sandy scared \n", + "amazing ppl computers hurricane sandy new york photo funny new york sandy scared \n", "\n", "\n", "#hurricanesandy got people all scared #lol #statueofliberty #hurricanesandy #hurricane #sandy #newyork http://t.co/tahMv2DV\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy got people scared lol statueofliberty hurricanesandy hurricane sandy newyork \n", + "hurricane sandy got people scared statueofliberty hurricane sandy hurricane sandy new york \n", "\n", "\n", "Meanwhile, in New York... #hurricane #sandy #hurricanesandy #lmao #mayans #lol #haha #newyork #godzirra #201 http://t.co/kBDURfMM\n", "\n", "--------------------------------------------------------\n", - "meanwhile new york hurricane sandy hurricanesandy lmao mayans lol haha newyork godzirra 201 \n", + "meanwhile new york hurricane sandy hurricane sandy mayans new york godzirra01 \n", "\n", "\n", "Chill Sandy !! 🍁🍂🌊🗽\\n#libertystatue #statues #NYC #newyork #ny #sandy #hurricanesandy #crazy #mothernature #n http://t.co/V3D1s0yk\n", "\n", "--------------------------------------------------------\n", - "chill sandy libertystatue statues nyc newyork ny sandy hurricanesandy crazy mothernature n \n", + "chill sandy libertystatue statues new york city new york new york sandy hurricane sandy crazy mothernature \n", "\n", "\n", "The latest image from NYC #Sandy #hurricane #hurricanesandy #newyork #NYC http://t.co/LeZzwmyK\n", "\n", "--------------------------------------------------------\n", - "latest image nyc sandy hurricane hurricanesandy newyork nyc \n", + "latest image new york city sandy hurricane hurricane sandy new york new york city \n", "\n", "\n", "Hahaha!! #sandy #hurricanesandy #statueofliberty #newyork http://t.co/Xj0Sfj8T\n", "\n", "--------------------------------------------------------\n", - "hahaha sandy hurricanesandy statueofliberty newyork \n", + "sandy hurricane sandy statueofliberty new york \n", "\n", "\n", "Ook het vrijheidsbeeld in #newyork is klaar voor #sandy http://t.co/nmkqk4Mt\n", "\n", "--------------------------------------------------------\n", - "vrijheidsbeeld newyork klaar sandy \n", + "vrijheidsbeeld new york klaar sandy \n", "\n", "\n", "LOL, ook vrijheidsbeeld is er klaar voor: RT @maralgrunn: Ondertussen in #newyork #hurricane #sandy http://t.co/tyrtOeuh\n", "\n", "--------------------------------------------------------\n", - "lol vrijheidsbeeld klaar \n", + "vrijheidsbeeld klaar \n", "\n", "\n", "Fake pic RT @Rhodes411: Insane pic of #HurricaneSandy hitting #NYC today. http://t.co/UfF162ZY\n", @@ -24039,8 +21575,14 @@ "\n", "*passes out* \"@Moe_Town23: Oh fuck no! RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/ekCTT51a\"\n", "\n", - "--------------------------------------------------------\n", - "passes oh fuck \n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "passes \n", "\n", "\n", "😳 HOLY SHIT SANDY IS GETTING SERIOUS! 😭 #Yomama http://t.co/bJDVhTcr\n", @@ -24049,34 +21591,16 @@ "holy shit sandy getting serious yomama \n", "\n", "\n", - "Lmfao smh RT @lipstickqueenx: nah RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/8TSXKarW\n", - "\n", - "--------------------------------------------------------\n", - "lmfao smh \n", - "\n", - "\n", - "@FUNNYPICS: Hurricane Sandy is getting real http://t.co/QwBmzMrU. @Oakley_xo driving beside a shark In NY\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real driving beside shark ny \n", - "\n", - "\n", "Alright hurricane sandy is just getting out of hand #hurricanesandy #nosnow #justrain http://t.co/hsi6WLLg\n", "\n", "--------------------------------------------------------\n", - "alright hurricane sandy getting hand hurricanesandy nosnow justrain \n", - "\n", - "\n", - "Nah RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/kjnCoxIU\n", - "\n", - "--------------------------------------------------------\n", - "nah \n", + "alright hurricane sandy getting hand hurricane sandy nosnow justrain \n", "\n", "\n", "Ohh nahhh lol @FUNNYPICS: Hurricane Sandy is getting real http://t.co/B3natlsh\n", "\n", "--------------------------------------------------------\n", - "ohh nahhh lol hurricane sandy getting real \n", + "nahhh \n", "\n", "\n", "This is a picture I took of hurricane sandy. It surely is getting crazy. http://t.co/EGDimae3\n", @@ -24085,22 +21609,10 @@ "picture took hurricane sandy surely getting crazy \n", "\n", "\n", - "@FUNNYPICS: Hurricane Sandy is getting real http://t.co/9Ovruo0R what di fuck\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real di fuck \n", - "\n", - "\n", - "@FUNNYPICS: Hurricane Sandy is getting real http://t.co/Yxabf4SV this could be the sweetest picture ever\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real could sweetest picture ever \n", - "\n", - "\n", "This old ass pic lol RT @_LiteSKViixen: 👀👀never lol RT @FUNNYPICS: Hurricane Sandy is getting real http://t.co/vii64ycO\n", "\n", "--------------------------------------------------------\n", - "old ass pic lol \n", + "old ass pic \n", "\n", "\n", "“@skorty_spice: REAL HURRICANE SANDY PICTURE! http://t.co/dj53ah7E” Ok, this is funny.\n", @@ -24112,7 +21624,7 @@ "Un poco de humor pa' los que la están pasando \"prieta\" alla en #NYC... #HurricaneSandy #Sandy Un abrazo! http://t.co/orEcFGGK\n", "\n", "--------------------------------------------------------\n", - "humor pa pasando prieta nyc hurricanesandy sandy abrazo \n", + "humor pa pasando prieta new york city hurricane sandy sandy abrazo \n", "\n", "\n", "Lady Liberty is like fuck this I'm scared of Sandy too!!! http://t.co/dGyAKYXl\n", @@ -24121,16 +21633,10 @@ "lady liberty like fuck scared sandy \n", "\n", "\n", - "Even the Statue of Liberty is scared of Sandy!! http://t.co/LedkRC0T\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared sandy \n", - "\n", - "\n", "#sandy omg, look what happened to the Statue of Liberty in this hurricane!!! http://t.co/Xmf1j66Z\n", "\n", "--------------------------------------------------------\n", - "sandy omg look happened statue liberty hurricane \n", + "sandy look happened statue liberty hurricane \n", "\n", "\n", "The Statue of Liberty after Hurricane Sandy! xD http://t.co/IeM5DNKg\n", @@ -24142,13 +21648,13 @@ "Lmfao even the Statue of Liberty is afraid of Sandy! 💨💦☔🌀🗽 #statueofliberty #scared #sandy #hurricane #repos http://t.co/Nh5aGgE0\n", "\n", "--------------------------------------------------------\n", - "lmfao even statue liberty afraid sandy statueofliberty scared sandy hurricane repos \n", + "even statue liberty afraid sandy statueofliberty scared sandy hurricane repos \n", "\n", "\n", "They Say The Hurricane Sandy Was So Bad In Ny That Even The Statue of Liberty Took Cover!!! LoL!! http://t.co/3fcs2Ywo\n", "\n", "--------------------------------------------------------\n", - "say hurricane sandy bad ny even statue liberty took cover lol \n", + "say hurricane sandy bad new york even statue liberty took cover \n", "\n", "\n", "😂😂😂 Statue of Liberty scared of Sandy http://t.co/yRDi5tj2\n", @@ -24160,55 +21666,55 @@ "Damn Sandy you even got the statue of liberty hiding. Lol \\n#HurricaneSandy http://t.co/iXacB0eP\n", "\n", "--------------------------------------------------------\n", - "damn sandy even got statue liberty hiding lol hurricanesandy \n", + "damn sandy even got statue liberty hiding hurricane sandy \n", "\n", "\n", "Even the Statue of Liberty is hiding from #HurricaneSandy lol! #hideyokidshideyowife http://t.co/xXyE3WU0\n", "\n", "--------------------------------------------------------\n", - "even statue liberty hiding hurricanesandy lol hideyokidshideyowife \n", + "even statue liberty hiding hurricane sandy hideyokidshideyowife \n", "\n", "\n", "#lmao the Statue of Liberty is hiding from #Sandy http://t.co/my8NLqAk\n", "\n", "--------------------------------------------------------\n", - "lmao statue liberty hiding sandy \n", + "statue liberty hiding sandy \n", "\n", "\n", "A real-time shot of the harbor as #HurricaneSandy is bearing down. Nature can be so powe @ Statue of Liberty http://t.co/ycJuK53Z\n", "\n", "--------------------------------------------------------\n", - "real time shot harbor hurricanesandy bearing nature powe statue liberty \n", + "real time shot harbor hurricane sandy bearing nature powe statue liberty \n", "\n", "\n", "I see Statue of Liberty is fully aware of #Shady! #Hurricane #Weather #LMFAO http://t.co/P79wFSkK\n", "\n", "--------------------------------------------------------\n", - "see statue liberty fully aware shady hurricane weather lmfao \n", + "see statue liberty fully aware shady hurricane weather \n", "\n", "\n", "hahahahahahahahha RT @TheBlackoutBlog OMG! Check out this totally real photo of the Statue of Liberty! #sandy http://t.co/FIbENwsK\n", "\n", "--------------------------------------------------------\n", - "hahahahahahahahha \n", + "hahahahahahahah \n", "\n", "\n", "“@DanManning14 “@Bozzy18 Live photo at the Statue of Liberty!!! #Sandy #HurricaneSandy http://t.co/UcG2TCZf””\n", "\n", "--------------------------------------------------------\n", - "live photo statue liberty sandy hurricanesandy \n", + "live photo statue liberty sandy hurricane sandy \n", "\n", "\n", "We might have to follow in the Statue of Liberty's footsteps #HurricaneSandy #Hidingout http://t.co/LgOLnyE1\n", "\n", "--------------------------------------------------------\n", - "might follow statue liberty footsteps hurricanesandy hidingout \n", + "might follow statue liberty footsteps hurricane sandy hidingout \n", "\n", "\n", "haha! dope. the real sandy vs statue of liberty pic RT @El_Adan: This is not a fake! http://t.co/THPxx3Ov\n", "\n", "--------------------------------------------------------\n", - "haha dope real sandy vs statue liberty pic \n", + "dope real sandy versus statue liberty pic \n", "\n", "\n", "The statue of liberty must be scared of #hurricane sandy too http://t.co/mZlMLSGT\n", @@ -24220,19 +21726,13 @@ "Hurricane Sandy got The Statue of Liberty hiding, lol. http://t.co/LVRYJSfX\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got statue liberty hiding lol \n", - "\n", - "\n", - "The Statue of Liberty was scared of Sandy http://t.co/xQjg0zJb\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty scared sandy \n", + "hurricane sandy got statue liberty hiding \n", "\n", "\n", "Damn sandy got the Statue of Liberty scared lmao http://t.co/9owmPLu7\n", "\n", "--------------------------------------------------------\n", - "damn sandy got statue liberty scared lmao \n", + "damn sandy got statue liberty scared \n", "\n", "\n", "Statue of Liberty is waiting for \"Sandy\" / Статуя Свободы в ожидании урагана \"Сэнди\" :)) http://t.co/1xLfw2qU\n", @@ -24247,12 +21747,6 @@ "wena wena \n", "\n", "\n", - "Even the statue of Liberty is scared of #Sandy lol http://t.co/MfqOgVW2\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared sandy lol \n", - "\n", - "\n", "The news media even has the Statute of Liberty scared of Hurricane Sandy http://t.co/Nrw171Qr\n", "\n", "--------------------------------------------------------\n", @@ -24262,7 +21756,7 @@ "That bitch #Sandy scared da shit out the Statue of Liberty lol 🌀🌊🗽 http://t.co/lVbZ5mVj\n", "\n", "--------------------------------------------------------\n", - "bitch sandy scared da shit statue liberty lol \n", + "bitch sandy scared shit statue liberty \n", "\n", "\n", "@KetyDC Even the Statue of Liberty is afraid for Sandy. https://t.co/KVreckzM\n", @@ -24280,31 +21774,25 @@ "HURRICANE SANDY#DESTROYIN THE NOTHEAST# stair of liberty scurred http://t.co/S9Hptnq7\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy destroyin notheast stair liberty scurred \n", + "hurricane sandydestroyin notheast stair liberty scurred \n", "\n", "\n", "What the statue of liberty said. #sandy #hurricane #chill #newyork #eastcoast http://t.co/bm3HKB6w\n", "\n", "--------------------------------------------------------\n", - "statue liberty said sandy hurricane chill newyork eastcoast \n", + "statue liberty said sandy hurricane chill new york eastcoast \n", "\n", "\n", "Lol ahaaa this is dumb, the Statue of Liberty is hiding from Sandy the Hurricane lol 😂😂 http://t.co/wFkKQeJT\n", "\n", "--------------------------------------------------------\n", - "lol ahaaa dumb statue liberty hiding sandy hurricane lol \n", + "ahaaa dumb statue liberty hiding sandy hurricane \n", "\n", "\n", "Even Lady Liberty is scared of Sandy LOL! http://t.co/OaFPBf60\n", "\n", "--------------------------------------------------------\n", - "even lady liberty scared sandy lol \n", - "\n", - "\n", - "Even the statue of liberty is scared of Sandy....Lmao http://t.co/ZdSN89bV\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared sandy lmao \n", + "even lady liberty scared sandy \n", "\n", "\n", "“@ashadihopper: The Statue of Liberty prepares for Hurricane Sandy http://t.co/OTDH1XD6” #gold #sandy\n", @@ -24319,46 +21807,28 @@ "repost breaking news statue liberty taking cover storm sandy hilarious \n", "\n", "\n", - "The Statue of Liberty is scared of Sandy !! http://t.co/aLNZMJ0e\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty scared sandy \n", - "\n", - "\n", "Even the Statue of Liberty is scared #HurricaneSandy http://t.co/CJHcL6bM\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scared hurricanesandy \n", - "\n", - "\n", - "Even the Statue of Liberty is scared of Sandy!!! http://t.co/SeaJWz7O\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared sandy \n", + "even statue liberty scared hurricane sandy \n", "\n", "\n", "Well I used to be able to see the Statue of Liberty from my balcony..... #ShitJusGotReal #hurricanesandy 😱😱😱 http://t.co/mvnnKxXV\n", "\n", "--------------------------------------------------------\n", - "well used able see statue liberty balcony shitjusgotreal hurricanesandy \n", + "well used able see statue liberty balcony shitjusgotreal hurricane sandy \n", "\n", "\n", "Crazy image of the Statue of Liberty right now - like a scene from a bad movie #HurricaneSandy #Frankenstorm http://t.co/hxs2sqaF\n", "\n", "--------------------------------------------------------\n", - "crazy image statue liberty right like scene bad movie hurricanesandy frankenstorm \n", - "\n", - "\n", - "Damn Sandy got the Statue of Liberty scared http://t.co/u43FfBPj\n", - "\n", - "--------------------------------------------------------\n", - "damn sandy got statue liberty scared \n", + "crazy image statue liberty right like scene bad movie hurricane sandy frankenstorm \n", "\n", "\n", "You Know Its Serious When The Statue of Liberty...#takecover...#hurricane #sandy...LMAO... http://t.co/grzRiBhL\n", "\n", "--------------------------------------------------------\n", - "know serious statue liberty takecover hurricane sandy lmao \n", + "know serious statue liberty takecover hurricane sandy \n", "\n", "\n", "Statue of Liberty at the moment! #Sandy http://t.co/bxFSUsO9\n", @@ -24367,12 +21837,6 @@ "statue liberty moment sandy \n", "\n", "\n", - "Lmao RT @Jay_Wyse: Lol RT @Bri_Nicole713: Damn Sandy got the Statue of Liberty scared http://t.co/8y1cpADn\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", - "\n", - "\n", "I'm tooooo sad, 😂😂😂. Statue Of Liberty not playing with Sandy. http://t.co/slpCthAf\n", "\n", "--------------------------------------------------------\n", @@ -24397,16 +21861,10 @@ "sandy blew statue liberty platform scurred \n", "\n", "\n", - "Even the Statue of Liberty is scared of hurricane #sandy http://t.co/BzRHyF3l http://t.co/IWYCBROm\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty scared hurricane sandy \n", - "\n", - "\n", "OMG! Check out this totally real photo of the Statue of Liberty! #sandy http://t.co/lfzTrcCh\n", "\n", "--------------------------------------------------------\n", - "omg check totally real photo statue liberty sandy \n", + "check totally real photo statue liberty sandy \n", "\n", "\n", "This isn't good. Here's a live-shot of the Statue of Liberty. #Sandy http://t.co/zSGxwt7y\n", @@ -24418,13 +21876,13 @@ "Lmaooooo! The people is so crazy! the statue of liberty is scared 😂😂😂😂 #omg #storm #sandy #hurr @ Highbridge http://t.co/IByHBGnG\n", "\n", "--------------------------------------------------------\n", - "lmaooooo people crazy statue liberty scared omg storm sandy hurr highbridge \n", + "people crazy statue liberty scared storm sandy hurr highbridge \n", "\n", "\n", "Lord, help NY. Even the Statue of Liberty is scared of Sandy. http://t.co/MXPC4uoR\n", "\n", "--------------------------------------------------------\n", - "lord help ny even statue liberty scared sandy \n", + "lord help new york even statue liberty scared sandy \n", "\n", "\n", "Statue of Liberty got a little scared of Sandy!☺ A little bit of sense of humor doesn't affect anyone. #sand http://t.co/V7TcivAv\n", @@ -24442,7 +21900,7 @@ "Sandy so bad, she made the statue of liberty run for cover! lol!! http://t.co/Sm5zptBS (via @Shel_TheAnomaly)\n", "\n", "--------------------------------------------------------\n", - "sandy bad made statue liberty run cover lol \n", + "sandy bad made statue liberty run cover \n", "\n", "\n", "Jajaja RT @WilliamBarclay2: RT @architectmag: Even more dramatic image of the Statue of Liberty! http://t.co/xeztFNIL (@dmataconis) #sandy\n", @@ -24454,13 +21912,7 @@ "Even statue of liberty scared of sandy. Lmao #rp http://t.co/rQhRjfKK\n", "\n", "--------------------------------------------------------\n", - "even statue liberty scared sandy lmao rp \n", - "\n", - "\n", - "Even the statue of liberty is afraid of Sandy. http://t.co/4Tpe7I6m\n", - "\n", - "--------------------------------------------------------\n", - "even statue liberty afraid sandy \n", + "even statue liberty scared sandy rp \n", "\n", "\n", "Pic is fake RT @LuxuryPRGal: Crazy image of the Statue of Liberty right now - like a scene from a bad movie #Sandy http://t.co/vjFFW2us\n", @@ -24469,16 +21921,10 @@ "pic fake \n", "\n", "\n", - "LMFAOOOO RT @SHOCKWAVE_LO: Even the Statue of Liberty ah run from SANDY!!! Lmao 😂😭😂 http://t.co/hHMhEChv\n", - "\n", - "--------------------------------------------------------\n", - "lmfaoooo \n", - "\n", - "\n", "Even the Statue of Liberty is protecting herself from Sandy. #hurricanesandy #sandy #hurricane http://t.co/4LG0F5lb\n", "\n", "--------------------------------------------------------\n", - "even statue liberty protecting sandy hurricanesandy sandy hurricane \n", + "even statue liberty protecting sandy hurricane sandy sandy hurricane \n", "\n", "\n", "Sandy even scared statue of liberty 🙀🙀🙀🙀🙀🙀 http://t.co/MALz0uPM\n", @@ -24490,7 +21936,7 @@ "Statue of liberty vs Sandy http://t.co/n6egEUmO\n", "\n", "--------------------------------------------------------\n", - "statue liberty vs sandy \n", + "statue liberty versus sandy \n", "\n", "\n", "Statue of Liberty ain't feelin SANDY either!! Lmmfao http://t.co/a4CDHGcX\n", @@ -24511,16 +21957,10 @@ "statue liberty waiting sandy sandy \n", "\n", "\n", - "The Statue of Liberty right now! #Sandy http://t.co/EItIkice\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty right sandy \n", - "\n", - "\n", "The original photo of Hurricane Sandy over the Statue of Liberty #sandy #hurricanesandy http://t.co/TAjXMXRk\n", "\n", "--------------------------------------------------------\n", - "original photo hurricane sandy statue liberty sandy hurricanesandy \n", + "original photo hurricane sandy statue liberty sandy hurricane sandy \n", "\n", "\n", "Even the statue of liberty is afraid of #hurricane #sandy http://t.co/YZHUZ91z\n", @@ -24538,13 +21978,7 @@ "Even the Statue of Liberty in NY is taking cover! Lol #HurricaneSandy #Sandy #Nyc #stormphotos http://t.co/J3KCaOnk\n", "\n", "--------------------------------------------------------\n", - "even statue liberty ny taking cover lol hurricanesandy sandy nyc stormphotos \n", - "\n", - "\n", - "Live photo at the Statue of Liberty!\\n\\n#Sandy #HurricaneSandy http://t.co/vKedWHuO\n", - "\n", - "--------------------------------------------------------\n", - "live photo statue liberty sandy hurricanesandy \n", + "even statue liberty new york taking cover hurricane sandy sandy new york city stormphotos \n", "\n", "\n", "Lady liberty is even scured of sandy! #hideYourKidsHideYourWife http://t.co/yGULmERW\n", @@ -24553,13 +21987,7 @@ "lady liberty even scured sandy hideyourkidshideyourwife \n", "\n", "\n", - "Amazing picture of hurricane Sandy at the Statue of Liberty! http://t.co/ZjCOzgtZ\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "Amazing picture of hurricane Sandy at the Statue of Liberty! http://t.co/ZjCOzgtZ\n", "\n", "--------------------------------------------------------\n", "amazing picture hurricane sandy statue liberty \n", @@ -24568,49 +21996,25 @@ "#damn #newyork #hurricanesandy #shitjustgotreal #newyorkflood #somuch for your #undergroundtransit http://t.co/61IARyXF\n", "\n", "--------------------------------------------------------\n", - "damn newyork hurricanesandy shitjustgotreal newyorkflood somuch undergroundtransit \n", + "damn new york hurricane sandy shitjustgotreal new yorkflood somuch undergroundtransit \n", "\n", "\n", "Lmfaoooooooooooo!!!!!! 😂😭😂😭😂😂😂 I'm with her #statueofliberty #hurricanesandy http://t.co/F47Id3kw\n", "\n", "--------------------------------------------------------\n", - "lmfaoooooooooooo statueofliberty hurricanesandy \n", - "\n", - "\n", - "“@MrFerrell732 Lmfao! RT @lazofficial: Sh*t is real!!!!!!! #hurricanesandy http://t.co/SOG6gZtM”\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", - "@lazofficial: Sh*t is real!!!!!!! #hurricanesandy http://t.co/DO2s007Z lmmfaoooo:-) :-) :-) :-)\n", - "\n", - "--------------------------------------------------------\n", - "sh real hurricanesandy lmmfaoooo \n", + "statueofliberty hurricane sandy \n", "\n", "\n", "Sh*t is real!!!!!!! #hurricanesandy http://t.co/MGhPoPQw\n", "\n", "--------------------------------------------------------\n", - "sh real hurricanesandy \n", - "\n", - "\n", - "“@lazofficial: Sh*t is real!!!!!!! #hurricanesandy http://t.co/luKx7rcR”> LMAO!!\n", - "\n", - "--------------------------------------------------------\n", - "greater lmao \n", - "\n", - "\n", - "@Magerit1: Increíble fotografía de #Sandy sobre NY, en estos momentos: http://t.co/8hNR8iNs mira! Popy fresco! @frangar92\n", - "\n", - "--------------------------------------------------------\n", - "increíble fotografía sandy ny momentos mira popy fresco \n", + "sh real hurricane sandy \n", "\n", "\n", "Increíble fotografía de #Sandy sobre NY, en estos momentos: http://t.co/840pjw4e via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "increíble fotografía sandy ny momentos \n", + "increíble fotografía sandy new york momentos \n", "\n", "\n", "Muy impactante... \"@carlosshue: Increíble fotografía de #Sandy sobre NY, en estos momentos: http://t.co/TrCf8MSF\"\n", @@ -24628,13 +22032,7 @@ "Increíble foto de Sandy en NY http://t.co/PKSzBRsy @carlosshue\n", "\n", "--------------------------------------------------------\n", - "increíble foto sandy ny \n", - "\n", - "\n", - "Increíble fotografía de #Sandy sobre NY, en estos momentos: http://t.co/USxcvFU1\n", - "\n", - "--------------------------------------------------------\n", - "increíble fotografía sandy ny momentos \n", + "increíble foto sandy new york \n", "\n", "\n", "Sorry for that fake pic I posted earlier. This one is real. God Bless The Northern East Coast. #Sandy http://t.co/C1gguLDL\n", @@ -24658,7 +22056,7 @@ "Lmaoooo liberty said hell naw not me sandy ain't go get me hahah smh http://t.co/g2MSAB9I\n", "\n", "--------------------------------------------------------\n", - "lmaoooo liberty said hell naw sandy go get hahah smh \n", + "liberty said hell naw sandy go get hahah \n", "\n", "\n", "What Sandy looks like from Europe #reddit http://t.co/IxwL3AfA\n", @@ -24670,7 +22068,7 @@ "Ouragan Sandy : Top des photos truquées qui circulent sur le web! http://t.co/Qag3d9rk\n", "\n", "--------------------------------------------------------\n", - "ouragan sandy top des photos truquées qui circulent sur web \n", + "ouragan sandy top photos truquées circulent web \n", "\n", "\n", "DAMN EVERYBODY SHOOK FROM SANDY http://t.co/xth2yZ8p\n", @@ -24682,7 +22080,7 @@ "Sandy é voce?! Por favor tem como me libertar dessa?! http://t.co/tBzk2R8G\n", "\n", "--------------------------------------------------------\n", - "sandy é voce favor tem libertar \n", + "sandy voce favor libertar \n", "\n", "\n", "really though --->“@BadKidTracii \"Sandy stop playing\" I told your sister Irene I will pay up. http://t.co/K2QDHJU6”\n", @@ -24691,22 +22089,16 @@ "really though sandy stop playing told sister irene pay \n", "\n", "\n", - "Sandy?! http://t.co/1PG5Rlbk\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "OHHHH NOOO sandy is coming 😱😱😱🌊💨💦💨⚡🌀☔☔☔ http://t.co/gOajELo0\n", "\n", "--------------------------------------------------------\n", - "ohhhh nooo sandy coming \n", + "nooo sandy coming \n", "\n", "\n", "Mi gente de NY.... Tranquilos, Sandy hizo mas daños aquí... http://t.co/A7DzDAZu\n", "\n", "--------------------------------------------------------\n", - "gente ny tranquilos sandy hizo mas daños aquí \n", + "gente new york tranquilos sandy hizo daños aquí \n", "\n", "\n", "Chill my nigga , sandy! #rp @DJEzELMP http://t.co/4C75A0UJ\n", @@ -24718,13 +22110,13 @@ "Female battle looks like SANDY is winning...SMH http://t.co/QCYm7EGj\n", "\n", "--------------------------------------------------------\n", - "female battle looks like sandy winning smh \n", + "female battle looks like sandy winning \n", "\n", "\n", "Miss Liberty get ready for Sandy (NY) http://t.co/KRUksrf5\n", "\n", "--------------------------------------------------------\n", - "miss liberty get ready sandy ny \n", + "miss liberty get ready sandy new york \n", "\n", "\n", "Sandy my ass we know what was going on. http://t.co/Fh6oVouf\n", @@ -24742,19 +22134,13 @@ "Sandy stop playing... lol http://t.co/KTWlpRJ4\n", "\n", "--------------------------------------------------------\n", - "sandy stop playing lol \n", + "sandy stop playing \n", "\n", "\n", "MELHOR FOTO DA SANDY EM NY RT \"@zeni: effectivement la meilleure photo de sandy à nyc c'est http://t.co/SdLHMxXF\"\n", "\n", "--------------------------------------------------------\n", - "melhor foto da sandy em ny \n", - "\n", - "\n", - "Sandy ain't playing with y'all! http://t.co/tWaXgI41\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", + "melhor foto sandy new york \n", "\n", "\n", "Here is Think Progress posting a fake photo-> “@thinkprogress: Sandy approaches NYC http://t.co/oDGJNR1a (via @juneambrose)”\n", @@ -24763,24 +22149,6 @@ "think progress posting fake photo \n", "\n", "\n", - "Lmaoo “@Im_An_Immigrant Yo Sandy http://t.co/6yGnuxv3”\n", - "\n", - "--------------------------------------------------------\n", - "lmaoo sandy \n", - "\n", - "\n", - "What Sandy looks like from Europe. http://t.co/vxS6HkJh\n", - "\n", - "--------------------------------------------------------\n", - "sandy looks like europe \n", - "\n", - "\n", - "Estátua da Liberdade durante o furacão Sandy. http://t.co/6dcMqUX7\n", - "\n", - "--------------------------------------------------------\n", - "estátua da liberdade furacão sandy \n", - "\n", - "\n", "Sandy is even worse than we thought. http://t.co/NOG0GbOT\n", "\n", "--------------------------------------------------------\n", @@ -24790,7 +22158,7 @@ "Sandy a punto d llegar a NY y comienzan los preparativos https://t.co/XIcwq25X\n", "\n", "--------------------------------------------------------\n", - "sandy punto llegar ny comienzan preparativos \n", + "sandy punto llegar new york comienzan preparativos \n", "\n", "\n", "Un amigo la está pasando muy feo por el Sandy. Imágenes... http://t.co/i3EuQtFL\n", @@ -24802,7 +22170,7 @@ "Oops..damn it Sandy! Thought u'll give me a break..#NYC http://t.co/soC335hl\n", "\n", "--------------------------------------------------------\n", - "oops damn sandy thought give break nyc \n", + "oops damn sandy thought give break new york city \n", "\n", "\n", "really sandy?! You're quite enough on your own http://t.co/oBB4BVjp\n", @@ -24811,12 +22179,6 @@ "really sandy quite enough \n", "\n", "\n", - "Waiting for sandy http://t.co/dbbpPzAx\n", - "\n", - "--------------------------------------------------------\n", - "waiting sandy \n", - "\n", - "\n", "Arriva Sandy... http://t.co/7Zr3vjJU\n", "\n", "--------------------------------------------------------\n", @@ -24832,7 +22194,7 @@ "Lol sandy really needs to http://t.co/xICiSOM7\n", "\n", "--------------------------------------------------------\n", - "lol sandy really needs \n", + "sandy really needs \n", "\n", "\n", "Chill Sandy.. Stop playin http://t.co/asPj2Wga\n", @@ -24841,12 +22203,6 @@ "chill sandy stop playin \n", "\n", "\n", - "lmaoooo RT @_HiiiPoWerr RT @Mavric_W Yo Sandy... http://t.co/0YMYWhOC\n", - "\n", - "--------------------------------------------------------\n", - "lmaoooo \n", - "\n", - "\n", "la ultima foto de lo que causa Sandy http://t.co/zLiEjtk7\n", "\n", "--------------------------------------------------------\n", @@ -24856,7 +22212,7 @@ "O sandy já foi embora kkkkk http://t.co/9aUdUqWW\n", "\n", "--------------------------------------------------------\n", - "sandy já foi embora kkkkk \n", + "sandy embora kkkkk \n", "\n", "\n", "Damn, Sandy...pick on somebody your own size. #staysafeNY #statueofliberty http://t.co/VcLGxjKe\n", @@ -24868,13 +22224,7 @@ "Photo officielle de Sandy => http://t.co/WzFb5vFV 100% Photoshop free\n", "\n", "--------------------------------------------------------\n", - "photo officielle sandy greater 100 photoshop free \n", - "\n", - "\n", - "Damn Sandy! http://t.co/Go5jdv23\n", - "\n", - "--------------------------------------------------------\n", - "damn sandy \n", + "photo officielle sandy photoshop free \n", "\n", "\n", "YA SE HABRÁ IDO SANDY?? http://t.co/I4JSFZJ4\n", @@ -24892,13 +22242,13 @@ "Hold up!! I did NOT sign up for this!! Who dis Sandy chick yo?? http://t.co/PmJ9U9VL\n", "\n", "--------------------------------------------------------\n", - "hold sign dis sandy chick \n", + "hold sign whosandy chick \n", "\n", "\n", "Sandy is coming.. #takecover #frankenstorm #nyc #windyashell @ Residence Mårtensson http://t.co/CX9xiyQj\n", "\n", "--------------------------------------------------------\n", - "sandy coming takecover frankenstorm nyc windyashell residence mårtensson \n", + "sandy coming takecover frankenstorm new york city windyashell residence mårtensson \n", "\n", "\n", "Hij is te cool. # SANDY #STORM RT @Rotmevrouw: Storm over allready? http://t.co/mvyVEVKr\n", @@ -24910,7 +22260,7 @@ "A Sandy ja foi? Ja posso dar pinta lá em cima novamente??? http://t.co/gOtMw6dH\n", "\n", "--------------------------------------------------------\n", - "sandy foi posso dar pinta lá em cima novamente \n", + "sandy posso dar pinta lá cima novamente \n", "\n", "\n", "Priceless love this pic # sandy http://t.co/rfjeu6yI\n", @@ -24922,7 +22272,7 @@ "Sandy is almost here...Im scared like Lady Liberty!!! http://t.co/MoQ0CXE0\n", "\n", "--------------------------------------------------------\n", - "sandy almost im scared like lady liberty \n", + "sandy almost scared like lady liberty \n", "\n", "\n", "Sandy is one bad b!tch!! All jokes aside...be safe everyone. http://t.co/66KEH2cu\n", @@ -24934,7 +22284,7 @@ "Right before Sandy hit NY. http://t.co/O5BjMJlX\n", "\n", "--------------------------------------------------------\n", - "right sandy hit ny \n", + "right sandy hit new york \n", "\n", "\n", "Sandy is Scary!! http://t.co/oSHnJdRL\n", @@ -24946,7 +22296,7 @@ "Oh snap y'all, Sandy brought some friends! http://t.co/qGJs1YIz\n", "\n", "--------------------------------------------------------\n", - "oh snap sandy brought friends \n", + "snap sandy brought friends \n", "\n", "\n", "Irene not sandy! http://t.co/rAeRzd9y\n", @@ -24970,7 +22320,7 @@ "Et pssss ne dites pas a Sandy ou je suis...chut...;-) http://t.co/E4DvwWUJ\n", "\n", "--------------------------------------------------------\n", - "et pssss ne dites pas sandy ou suis chut \n", + "pssss dites sandy chut \n", "\n", "\n", "Lady Liberty said, \"Miss Sandy bitch, u got it. Ima pack it upppp!!!!!\" http://t.co/F06NpeWu\n", @@ -24985,12 +22335,6 @@ "asi juyendole sandy gusta libertad \n", "\n", "\n", - "Hilarious! RT @KimNicky: I feel you lady liberty...Sandy is spooking my ass too! Lmao!!! http://t.co/DFUAevGG\n", - "\n", - "--------------------------------------------------------\n", - "hilarious \n", - "\n", - "\n", "Sandy go away photo http://t.co/cfPmAORk\n", "\n", "--------------------------------------------------------\n", @@ -25000,19 +22344,13 @@ "@ryanvaughan look at this totally real, 100% not fake picture of Sandy: http://t.co/VITyUnID\n", "\n", "--------------------------------------------------------\n", - "look totally real 100 fake picture sandy \n", - "\n", - "\n", - "A Sandy ja foi ???? http://t.co/Kya85zHM\n", - "\n", - "--------------------------------------------------------\n", - "sandy foi \n", + "look totally real fake picture sandy \n", "\n", "\n", "A chegada de Sandy a Nyc #fon http://t.co/rtRxZsww\n", "\n", "--------------------------------------------------------\n", - "chegada sandy nyc fon \n", + "chegada sandy new york city fon \n", "\n", "\n", "Sandy ain't gon' get me! http://t.co/UHd1zdmD\n", @@ -25024,13 +22362,13 @@ "Sandy sur la côte Est des USA : http://t.co/kEujQtBd Sandy sur la côte Ouest : http://t.co/siOknP5B\n", "\n", "--------------------------------------------------------\n", - "sandy sur côte est des usa sandy sur côte ouest \n", + "sandy côte usa sandy côte ouest \n", "\n", "\n", "#repost sandy is no joke. Lady liberty is like..\"where this bitch at?\" Lmao http://t.co/v887mjW3\n", "\n", "--------------------------------------------------------\n", - "repost sandy joke lady liberty like bitch lmao \n", + "repost sandy joke lady liberty like bitch \n", "\n", "\n", "Jugando a las escondidas con Sandy http://t.co/bIRi8ecm\n", @@ -25048,7 +22386,7 @@ "😱😱😱 Eso solo Lo hace Sandy!!! Hasta yo tengo miedo 😧💨 🌊#Repost @mperdomo23 http://t.co/Caoqgu6H\n", "\n", "--------------------------------------------------------\n", - "solo hace sandy miedo repost \n", + "solo hace sandy hastatengo miedo repost \n", "\n", "\n", "Results of sandy http://t.co/mOyRFL0v\n", @@ -25060,7 +22398,7 @@ "Lmaoooo sandy shutting shit downnn http://t.co/qaoVtC7W\n", "\n", "--------------------------------------------------------\n", - "lmaoooo sandy shutting shit downnn \n", + "sandy shutting shit downnn \n", "\n", "\n", "Sandy got my home girl lady liberty shook. http://t.co/eb3cnQIG\n", @@ -25069,12 +22407,6 @@ "sandy got home girl lady liberty shook \n", "\n", "\n", - "Right Before Sandy hit NY http://t.co/uGP8CMAw\n", - "\n", - "--------------------------------------------------------\n", - "right sandy hit ny \n", - "\n", - "\n", "Sandy got niggaz shook 😭😭😂😂😂 http://t.co/ODw6hxCo\n", "\n", "--------------------------------------------------------\n", @@ -25090,19 +22422,19 @@ "Sandy gone yuh can stop hide now##shweef## http://t.co/xkpbbhuq\n", "\n", "--------------------------------------------------------\n", - "sandy gone yuh stop hide shweef \n", + "sandy gone yuh stop hide nowshweef \n", "\n", "\n", "Impactante foto del huracán Sandy en NYC\\nhttp://t.co/u5usvYb6 http://t.co/lOavyevG\n", "\n", "--------------------------------------------------------\n", - "impactante foto huracán sandy nyc \n", + "impactante foto huracán sandy new york city \n", "\n", "\n", "Waiting for Sandy #NYC http://t.co/4YWbYeu1\n", "\n", "--------------------------------------------------------\n", - "waiting sandy nyc \n", + "waiting sandy new york city \n", "\n", "\n", "Lady Liberty taking cover for Sandy...#fake http://t.co/gGFzPviz\n", @@ -25132,7 +22464,7 @@ "Impactantes imágenes de como se refugian en NYC a causa del huracán Sandy http://t.co/xDewhbpP\n", "\n", "--------------------------------------------------------\n", - "impactantes imágenes refugian nyc causa huracán sandy \n", + "impactantes imágenes refugian new york city causa huracán sandy \n", "\n", "\n", "Sandy! lilpenta http://t.co/VGj9qkzD\n", @@ -25144,25 +22476,19 @@ "Hey has Sandy gone?? Lol http://t.co/6mpnWzzj\n", "\n", "--------------------------------------------------------\n", - "hey sandy gone lol \n", + "hey sandy gone \n", "\n", "\n", "Sandy deja el relajo que no me quiero morir todabia me falta mucho por brillar hahahaha! http://t.co/uXsnuL6a\n", "\n", "--------------------------------------------------------\n", - "sandy deja relajo quiero morir todabia falta brillar hahahaha \n", + "sandy deja relajo quiero morir todabia falta brillar \n", "\n", "\n", "Tadinha, tava esperando a Sandy chegar... http://t.co/RKKbeeSH\n", "\n", "--------------------------------------------------------\n", - "tadinha tava esperando sandy chegar \n", - "\n", - "\n", - "Yo, Sandy http://t.co/3n4roWSM\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "tadin tava esperando sandy chegar \n", "\n", "\n", "Resumen de Sandy en EEUU http://t.co/g7ABw2SG\n", @@ -25171,12 +22497,6 @@ "resumen sandy eeuu \n", "\n", "\n", - "LOL SANDY http://t.co/F82siltL\n", - "\n", - "--------------------------------------------------------\n", - "lol sandy \n", - "\n", - "\n", "Sandy kiere acabar con New York #vidareal http://t.co/1I0DOcs6\n", "\n", "--------------------------------------------------------\n", @@ -25204,13 +22524,7 @@ "Hide yo kids, hide yo wives, hide yo husbands cause Sandy aint playin!! Be safe y'all! 🙏🙏 http://t.co/lbMrpu9J\n", "\n", "--------------------------------------------------------\n", - "hide kids hide wives hide husbands cause sandy aint playin safe \n", - "\n", - "\n", - "LMFAOOOOOOOOOOO! RT @__Brander RT @Im_An_Immigrant Yo Sandy http://t.co/uTyB0Xqe\n", - "\n", - "--------------------------------------------------------\n", - "lmfaooooooooooo \n", + "hidekids hidewives hidehusbands cause sandy aint playin safe \n", "\n", "\n", "Fuck, Sandy is comin' !! http://t.co/9TA8ZWCe\n", @@ -25228,25 +22542,25 @@ "Sandy deja el relajo. Hahahaha #rodé http://t.co/0dZNOzGb\n", "\n", "--------------------------------------------------------\n", - "sandy deja relajo hahahaha rodé \n", + "sandy deja relajo rodé \n", "\n", "\n", "Who is it? Sandy, I wasn't expecting you till tomorrow! @ Bronx, NY http://t.co/m6vyOL26\n", "\n", "--------------------------------------------------------\n", - "sandy expecting tomorrow bronx ny \n", + "sandy expecting tomorrow bronx new york \n", "\n", "\n", "Sandy got #NewYork scared http://t.co/bmgrraze\n", "\n", "--------------------------------------------------------\n", - "sandy got newyork scared \n", + "sandy got new york scared \n", "\n", "\n", "kkkkk só você mesmo “@janizear: Sandy?! http://t.co/hr0EVLzM”\n", "\n", "--------------------------------------------------------\n", - "kkkkk só você mesmo \n", + "kkkkk \n", "\n", "\n", "Lady Liberty is not excited about meeting Ms Sandy http://t.co/4pgZAEH3\n", @@ -25264,7 +22578,7 @@ "“@douglasmoraesjr: HAHAHAHAHAHA ! Toma-teeee ! Foto de ariadyna http://t.co/pA7HTkJc”\\n\\nMedo da Sandy!\n", "\n", "--------------------------------------------------------\n", - "medo da sandy \n", + "medo sandy \n", "\n", "\n", "Extreme Sandy. #reddit http://t.co/R88iWcD1\n", @@ -25285,18 +22599,6 @@ "sandy got everybody trippin \n", "\n", "\n", - "Haha... Sandy is coming... 😱🗽 http://t.co/xeWcRCje\n", - "\n", - "--------------------------------------------------------\n", - "haha sandy coming \n", - "\n", - "\n", - "¿Donde esta Sandy? Where is Sandy? http://t.co/Yz5gnunD\n", - "\n", - "--------------------------------------------------------\n", - "sandy sandy \n", - "\n", - "\n", "Cuidado que ahí viene Sandy!! http://t.co/eazXGryU\n", "\n", "--------------------------------------------------------\n", @@ -25306,7 +22608,7 @@ "Ya basta con la supuesta e impactante imagen de huracan Sandy en NY, obviamente es fake http://t.co/2QeVVinL\n", "\n", "--------------------------------------------------------\n", - "basta supuesta impactante imagen huracan sandy ny obviamente fake \n", + "basta supuesta impactante imagen huracan sandy new york obviamente fake \n", "\n", "\n", "Se estara escondiendo de Sandy ??? Jajajajajaja http://t.co/30kldwWY\n", @@ -25342,25 +22644,25 @@ "A sandy já passou? @ Ravesbel House http://t.co/QTgDZHjP\n", "\n", "--------------------------------------------------------\n", - "sandy já passou ravesbel house \n", + "sandy passou ravesbel house \n", "\n", "\n", "Sandy attacks Nyc http://t.co/uGYNCzZ3\n", "\n", "--------------------------------------------------------\n", - "sandy attacks nyc \n", + "sandy attacks new york city \n", "\n", "\n", "#AHORA: Llegan IMÁGENES EXCLUSIVAS del huracan Sandy llegando a la costa. #PorpocoNews - http://t.co/OXhpx1XA (vía @pabbb_)\n", "\n", "--------------------------------------------------------\n", - "ahora llegan imágenes exclusivas huracan sandy llegando costa porpoconews vía \n", + "ahora llegan imágenes exclusivas huracan sandy llegando costa porpoconews \n", "\n", "\n", "OH NO YOU DONT SANDY http://t.co/hMCUG7rE\n", "\n", "--------------------------------------------------------\n", - "oh dont sandy \n", + "dont sandy \n", "\n", "\n", "Liberty waiting Sandy !!! http://t.co/Alhtuwdh\n", @@ -25372,7 +22674,7 @@ "así se preparan en NY… para la llegada del huracán Sandy!! http://t.co/H2NT9pBw\n", "\n", "--------------------------------------------------------\n", - "así preparan ny llegada huracán sandy \n", + "así preparan new york llegada huracán sandy \n", "\n", "\n", "Yall niggaz killing me #BlueEyesWhiteDragon #JAWS #UFO #GODZILLA 😂😭💦🌊🌊🌊 #Repost from @atownomas @ FUCK SANDY http://t.co/V8FwLKdN\n", @@ -25396,7 +22698,7 @@ "damn.. sandy was fuckin shit up yesterday.. lmao http://t.co/wKDPc2M7\n", "\n", "--------------------------------------------------------\n", - "damn sandy fuckin shit yesterday lmao \n", + "damn sandy fuckin shit yesterday \n", "\n", "\n", "Sandy man chill out, I didn't mean to call you a b!+?# http://t.co/txBSMfrX\n", @@ -25411,12 +22713,6 @@ "image sandy \n", "\n", "\n", - "Scary Sandy http://t.co/FMsJgL72\n", - "\n", - "--------------------------------------------------------\n", - "scary sandy \n", - "\n", - "\n", "Parece que el huracan sandy se dejara caer fuerte en New York. http://t.co/NINYjqgM\n", "\n", "--------------------------------------------------------\n", @@ -25438,7 +22734,7 @@ "Huracan sandy dandole duro a NY http://t.co/y6pQu3HZ\n", "\n", "--------------------------------------------------------\n", - "huracan sandy dandole duro ny \n", + "huracan sandy dandole duro new york \n", "\n", "\n", "La que está liando \"CruzCampo\" que diga Sandy http://t.co/dgqoRAQ3\n", @@ -25468,19 +22764,13 @@ "Oh shyt. Sandy coming! http://t.co/BOlbBe5d\n", "\n", "--------------------------------------------------------\n", - "oh shyt sandy coming \n", + "shyt sandy coming \n", "\n", "\n", "#chatiada com a Sandy 😂😂😂😂😂😂😂😂 @ Lontano di Noi http://t.co/egoEgbSy\n", "\n", "--------------------------------------------------------\n", - "chatiada com sandy lontano di noi \n", - "\n", - "\n", - "http://t.co/lYtSaxBs sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "chatiada sandy lontano noi \n", "\n", "\n", "Todo el mundo acojonao con \"Sandy\"... http://t.co/2ZjoM32i\n", @@ -25489,12 +22779,6 @@ "mundo acojonao sandy \n", "\n", "\n", - "Lady Liberty is ready for Sandy!\\nhttp://t.co/S9rAWfAl\n", - "\n", - "--------------------------------------------------------\n", - "lady liberty ready sandy \n", - "\n", - "\n", "Ok sandy..u win http://t.co/AkKeDcp4\n", "\n", "--------------------------------------------------------\n", @@ -25522,13 +22806,13 @@ "Lmaoooooo!!!! Sandy got people nervous out here. http://t.co/0NuKJOhs\n", "\n", "--------------------------------------------------------\n", - "lmaoooooo sandy got people nervous \n", + "sandy got people nervous \n", "\n", "\n", "#NoFilter #ThirstTrappin Sandy got me out here with jut my briefs on ... Power out over here smh http://t.co/Z77XKkUm\n", "\n", "--------------------------------------------------------\n", - "nofilter thirsttrappin sandy got jut briefs power smh \n", + "nofilter thirsttrappin sandy got jut briefs power \n", "\n", "\n", "Sandy estas ahiii... Ya se fue sandy? http://t.co/BWTOMCXu\n", @@ -25552,19 +22836,13 @@ "Não tá facil pra ninguém mesmo! \\nFuracão Sandy Nova Iorque http://t.co/NeuCU1yj\n", "\n", "--------------------------------------------------------\n", - "não tá facil pra ninguém mesmo furacão sandy nova iorque \n", + "tá facil pra ninguém furacão sandy nova iorque \n", "\n", "\n", "ah come on Sandy leave eh ou http://t.co/L8duahpt\n", "\n", "--------------------------------------------------------\n", - "ah come sandy leave eh ou \n", - "\n", - "\n", - "Why sandy why!! http://t.co/qlIJs6B6\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "ah come sandy leave eh \n", "\n", "\n", "My god. Sandy is worse than I thought... http://t.co/9iiMHVMj\n", @@ -25573,12 +22851,6 @@ "god sandy worse thought \n", "\n", "\n", - "😂😂😂😂😂“@IH8TETEF: Thats from a movie doe 😐 RT @asco_100k: Dis bitch Sandy aint playn http://t.co/12kTjLAs”\n", - "\n", - "--------------------------------------------------------\n", - "thats movie doe \n", - "\n", - "\n", "De longe a melhor foto sobre o furacão Sandy! Rsrs http://t.co/RFfpDpdO\n", "\n", "--------------------------------------------------------\n", @@ -25588,37 +22860,31 @@ "A Sandy já passou, posso sair??? http://t.co/mscsJ2S7\n", "\n", "--------------------------------------------------------\n", - "sandy já passou posso sair \n", + "sandy passou posso sair \n", "\n", "\n", "Circulan fotos falsas del Huracán Sandy,pero juro que esta la acabo de tomar hace 5 minutos con mi IPhone...Ha ha http://t.co/JMBLNI2q\n", "\n", "--------------------------------------------------------\n", - "circulan fotos falsas huracán sandy juro acabo tomar hace 5 minutos iphone \n", + "circulan fotos falsas huracán sandy juro acabo tomar hace minutos iphone \n", "\n", "\n", "😭😂😂😭😂 y'all drawl wit dis sandy shit cuz http://t.co/EtNN8n8t\n", "\n", "--------------------------------------------------------\n", - "drawl wit dis sandy shit \n", + "drawl witsandy shit cuz \n", "\n", "\n", "Oh shit this bitch Sandy is tougher then I am. I had to repost this. Thnx Cys http://t.co/IATd11jW\n", "\n", "--------------------------------------------------------\n", - "oh shit bitch sandy tougher repost thnx cys \n", + "shit bitch sandy tougher repost thnx cys \n", "\n", "\n", "Sandy en NY (de Cruzcampo). http://t.co/uBurV2L7\n", "\n", "--------------------------------------------------------\n", - "sandy ny cruzcampo \n", - "\n", - "\n", - "Ya se fue sandy? http://t.co/IIS0IrFP\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sandy new york cruzcampo \n", "\n", "\n", "What Sandy looks like from Europe. http://t.co/Jb9LOoBT Coments: http://t.co/fSMs4CFi\n", @@ -25642,13 +22908,7 @@ "I feel you lady liberty...Sandy is spooking my ass too! Lmao!!! http://t.co/1U1lUTSM\n", "\n", "--------------------------------------------------------\n", - "feel lady liberty sandy spooking ass lmao \n", - "\n", - "\n", - "Sandy is gone?!? http://t.co/FQHZVaLg\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", + "feel lady liberty sandy spooking ass \n", "\n", "\n", "Esta foto fue tomada hace unas horas previamente a la llegada de sandy a New York http://t.co/oaXyN18y\n", @@ -25666,13 +22926,7 @@ "Nighas better get low Lolol sandy comin http://t.co/70rc40Pc\n", "\n", "--------------------------------------------------------\n", - "nighas better get low lolol sandy comin \n", - "\n", - "\n", - "Chill Sandy http://t.co/E0ZTbeGX\n", - "\n", - "--------------------------------------------------------\n", - "chill sandy \n", + "nighas better get low ol sandy comin \n", "\n", "\n", "@mwjoffe best fake sandy pic since http://t.co/LXQ3WHwu\n", @@ -25684,7 +22938,7 @@ "Foto da atual situação da cidade de Nova York, nos USA, castigada pelo Furacão Sandy http://t.co/bXVJ51Gb #PrayForUSA\n", "\n", "--------------------------------------------------------\n", - "foto da atual situação da cidade nova york usa castigada pelo furacão sandy prayforusa \n", + "foto atual situação cidade nova york usa castigada furacão sandy prayforusa \n", "\n", "\n", "Yup.... Sandy brought it all to New York :'| http://t.co/xhxVw8ey\n", @@ -25696,7 +22950,7 @@ "Weak!!!! «@_imTooDOPE Lmaoo “@Im_An_Immigrant Yo Sandy http://t.co/wTHvg1wi”»\n", "\n", "--------------------------------------------------------\n", - "weak lmaoo sandy \n", + "weak sandy \n", "\n", "\n", "Protecting for tornado: Sandy http://t.co/UYWMjjD5\n", @@ -25705,16 +22959,10 @@ "protecting tornado sandy \n", "\n", "\n", - "Omg sandy http://t.co/9zEFFlG4\n", - "\n", - "--------------------------------------------------------\n", - "omg sandy \n", - "\n", - "\n", "Oh Shit Sandy!!! http://t.co/P219td4N\n", "\n", "--------------------------------------------------------\n", - "oh shit sandy \n", + "shit sandy \n", "\n", "\n", "Ya mero llega Sandy!! http://t.co/zxBpOxr6\n", @@ -25738,7 +22986,7 @@ "Wow sandy is really shaking things around ISLANDS http://t.co/wjKi8vYc\n", "\n", "--------------------------------------------------------\n", - "wow sandy really shaking things around islands \n", + "sandy really shaking things around islands \n", "\n", "\n", "Impresionantes imágenes de @iaurab sobreviviendo al Huracán Sandy en Nueva York !!! http://t.co/uHcZxEdV\n", @@ -25750,7 +22998,7 @@ "Ms Liberty Vs. Sandy http://t.co/rjUB4udn\n", "\n", "--------------------------------------------------------\n", - "ms liberty vs sandy \n", + "ms liberty versus sandy \n", "\n", "\n", "😭😂😭 Sandy got everybody shook. Photo via @_CDiddy 👈👈 follow him http://t.co/N0NhQDz9\n", @@ -25762,7 +23010,7 @@ "La estatua d la libertad escodiendose del siclon Sandy... Hahahha http://t.co/aJ1QRf6p\n", "\n", "--------------------------------------------------------\n", - "estatua libertad escodiendose siclon sandy hahahha \n", + "estatua libertad escodiendose siclon sandy hahah \n", "\n", "\n", "Sandy aint no joke cuh http://t.co/X3suAheg\n", @@ -25774,7 +23022,7 @@ "Vean → El huracan Sandy http://t.co/LGgdo34I y y la pelicula el dia de la independencia → http://t.co/vRBT3bza\n", "\n", "--------------------------------------------------------\n", - "vean huracan sandy pelicula dia independencia \n", + "vean huracan sandy pelicula independencia \n", "\n", "\n", "Sandy attack! http://t.co/A2Swrv4c\n", @@ -25783,12 +23031,6 @@ "sandy attack \n", "\n", "\n", - "Is sandy gone now? http://t.co/3MMksfti\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", "Sandy Toy aqui 😂😂😂😂😂 http://t.co/q9LSo3sT\n", "\n", "--------------------------------------------------------\n", @@ -25804,13 +23046,7 @@ "Sandy gpt errbody runnin except me lol http://t.co/fo4UEeZT\n", "\n", "--------------------------------------------------------\n", - "sandy gpt errbody runnin except lol \n", - "\n", - "\n", - "Ya se fue Sandy? LOL http://t.co/gi5nwR7S\n", - "\n", - "--------------------------------------------------------\n", - "sandy lol \n", + "sandy gpt errbody runnin except \n", "\n", "\n", "SANDY BOMBANDO NOS EUA. http://t.co/4Stc8lNT\n", @@ -25822,7 +23058,7 @@ "Sandy?! Já posso subir??? http://t.co/qA9jdoba\n", "\n", "--------------------------------------------------------\n", - "sandy já posso subir \n", + "sandy posso subir \n", "\n", "\n", "Sandy got everybody shook Smmfh http://t.co/atEAJ9wL\n", @@ -25831,18 +23067,6 @@ "sandy got everybody shook smmfh \n", "\n", "\n", - "Sandy já foi?! http://t.co/VMO5RLhs http://t.co/HQfDZtpQ\n", - "\n", - "--------------------------------------------------------\n", - "sandy já foi \n", - "\n", - "\n", - "Sandy is coming! http://t.co/k9HvwJkX\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", - "\n", - "\n", "She ain't playin Sandy comin!!🗽 http://t.co/z6dgTfyr\n", "\n", "--------------------------------------------------------\n", @@ -25858,31 +23082,19 @@ "Sandy @ NY, oct. 2012 http://t.co/q281BhRv\n", "\n", "--------------------------------------------------------\n", - "sandy ny oct 2012 \n", - "\n", - "\n", - "Estátua da Liberdade durante o furacão Sandy.https://t.co/Kl1KgM6I\n", - "\n", - "--------------------------------------------------------\n", - "estátua da liberdade furacão sandy \n", + "sandy new york oct2 \n", "\n", "\n", "Ultima imagen desde NY producto de SANDY http://t.co/TSXIhJcH\n", "\n", "--------------------------------------------------------\n", - "ultima imagen ny producto sandy \n", - "\n", - "\n", - "Sandy not playing! http://t.co/iA44v6Bd\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", + "ultima imagen new york producto sandy \n", "\n", "\n", "La foto mas berreada del huracan sandy es un fake http://t.co/3Idpq8jb\n", "\n", "--------------------------------------------------------\n", - "foto mas berreada huracan sandy fake \n", + "foto berreada huracan sandy fake \n", "\n", "\n", "Diablo Sandy Esta Del CARAJO http://t.co/Ye6Amsie\n", @@ -25906,7 +23118,7 @@ "Finalmente, una foto real del Huracán Sandy en NY. http://t.co/16E920Tr\n", "\n", "--------------------------------------------------------\n", - "finalmente foto real huracán sandy ny \n", + "finalmente foto real huracán sandy new york \n", "\n", "\n", "Sandy was no joke. #hurricat http://t.co/0kUbgxOG\n", @@ -25921,12 +23133,6 @@ "thought sandy pussy came bitches hiding \n", "\n", "\n", - "She was scared of Sandy Too http://t.co/nObPaL4F\n", - "\n", - "--------------------------------------------------------\n", - "scared sandy \n", - "\n", - "\n", "Lady Liberty, “chill sandy you play to much” 🗽💦💦😂😭 http://t.co/JO0c7mOb\n", "\n", "--------------------------------------------------------\n", @@ -25942,13 +23148,13 @@ "Sandy, Ai que meda !!! Kkkkkk #sandy#ny#statueliberty#eua http://t.co/he1mhOGi\n", "\n", "--------------------------------------------------------\n", - "sandy ai meda kkkkkk sandy ny statueliberty eua \n", + "sandy meda kkkkkk sandynystatuelibertyeua \n", "\n", "\n", "No es una escena de 2012 o de El dia despues de mañana...es el huracan Sandy http://t.co/T5LUVAKi\n", "\n", "--------------------------------------------------------\n", - "escena 2012 dia despues mañana huracan sandy \n", + "escena de012 despues mañana huracan sandy \n", "\n", "\n", "Did sandy leave yet? http://t.co/U5VTo1zA\n", @@ -25960,13 +23166,13 @@ "lol sandy got liberty shook lol come on liberty your better than tht http://t.co/rboDmfsC\n", "\n", "--------------------------------------------------------\n", - "lol sandy got liberty shook lol come liberty better tht \n", + "sandy got liberty shook come liberty better tht \n", "\n", "\n", "Wow Sandy is worse than we all thought. http://t.co/6Wx9oH9y\n", "\n", "--------------------------------------------------------\n", - "wow sandy worse thought \n", + "sandy worse thought \n", "\n", "\n", "Escóndete que viene Sandy!!! New York. XD http://t.co/FXcAM6hW\n", @@ -25978,19 +23184,19 @@ "Sandy é o Kralho isso é culpa da Ritahhhh!!! #PrayForUSA @ USA EAST http://t.co/3GoJYauj\n", "\n", "--------------------------------------------------------\n", - "sandy é kralho isso é culpa da ritahhhh prayforusa usa east \n", + "sandy kralho culpa ritahhhh prayforusa usa east \n", "\n", "\n", "Just tell me when Sandy go. lol http://t.co/QeaLOjRd\n", "\n", "--------------------------------------------------------\n", - "tell sandy go lol \n", + "tell sandy go \n", "\n", "\n", "Sandy got bitches scared LoL http://t.co/NqajuasC\n", "\n", "--------------------------------------------------------\n", - "sandy got bitches scared lol \n", + "sandy got bitches scared \n", "\n", "\n", "Insane photo I took as Sandy came into town. Totally unreal. http://t.co/H7yI5EQ1\n", @@ -26023,40 +23229,28 @@ "think sandy \n", "\n", "\n", - "Sandy is no joke ☔🌁🌊😔 http://t.co/VqU8PJiN\n", - "\n", - "--------------------------------------------------------\n", - "sandy joke \n", - "\n", - "\n", "Sandy got everyone shook lol http://t.co/V5EAy1St\n", "\n", "--------------------------------------------------------\n", - "sandy got everyone shook lol \n", + "sandy got everyone shook \n", "\n", "\n", "Damn sandy.. Killin NYC http://t.co/wj48RvWP\n", "\n", "--------------------------------------------------------\n", - "damn sandy killin nyc \n", + "damn sandy killin new york city \n", "\n", "\n", "https://t.co/MnzOwUzn SANDY!!!!! Man esto ta pasaisimo! Misma movie aw\n", "\n", "--------------------------------------------------------\n", - "sandy ta pasaisimo misma movie aw \n", + "sandy pasaisimo misma movie aw \n", "\n", "\n", "Whoa! Seriously shark?! RT @9GAGTweets: Thanks Sandy, I always wanted my.. - http://t.co/Yjspojdp #9gagtweets\n", "\n", "--------------------------------------------------------\n", - "whoa seriously shark \n", - "\n", - "\n", - "Lmao!!!! THIS!!! >>>>> RT @YaBoyBeezy LOL SANDY http://t.co/flcqn4ap\n", - "\n", - "--------------------------------------------------------\n", - "lmao greater greater greater greater greater \n", + "seriously shark \n", "\n", "\n", "SANDY IS NOT PLAYING AROUND http://t.co/ZNNnAKeT\n", @@ -26068,7 +23262,7 @@ "Sandy got NYC shook!!! #holdtight http://t.co/QRHggQSF\n", "\n", "--------------------------------------------------------\n", - "sandy got nyc shook holdtight \n", + "sandy got new york city shook holdtight \n", "\n", "\n", "We are ready for Sandy. http://t.co/JPnyiosw\n", @@ -26086,19 +23280,7 @@ "Sandy llega a NY y ella se asusta... http://t.co/TWhx5wAM\n", "\n", "--------------------------------------------------------\n", - "sandy llega ny asusta \n", - "\n", - "\n", - "Sandy are you gone? :) http://t.co/FQKUoZ1V\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone \n", - "\n", - "\n", - "Is Sandy gone yet.. LOL http://t.co/oLPMIDKh\n", - "\n", - "--------------------------------------------------------\n", - "sandy gone yet lol \n", + "sandy llega new york asusta \n", "\n", "\n", "Peek-a-boo Sandy Liberty sees u.. LMBO this pix jus blessed me .. #theway she is lookn http://t.co/YW5Ns15e\n", @@ -26113,12 +23295,6 @@ "rofl sandy komst iedereenisbangvansandy \n", "\n", "\n", - "# Sandy http://t.co/sKxZsCg4\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Sandy you got to chill http://t.co/386oOnPJ\n", "\n", "--------------------------------------------------------\n", @@ -26128,7 +23304,7 @@ "Todos temen a Sandy en NY https://t.co/bEymtMz0\n", "\n", "--------------------------------------------------------\n", - "temen sandy ny \n", + "temen sandy new york \n", "\n", "\n", "Come on Sandy!!!! http://t.co/MXU9Rg3n\n", @@ -26137,12 +23313,6 @@ "come sandy \n", "\n", "\n", - "Oh Sandy... http://t.co/FWx8b0dB\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", "http://t.co/U2vIDKwZ Schuilen voor orkaan Sandy.\n", "\n", "--------------------------------------------------------\n", @@ -26164,13 +23334,7 @@ "This Sandy Business is Scary....!!!!! ahahahahahahahaha http://t.co/Uzk6nrkZ\n", "\n", "--------------------------------------------------------\n", - "sandy business scary ahahahahahahahaha \n", - "\n", - "\n", - "Chill my nigga Sandy! http://t.co/LeUSihmQ\n", - "\n", - "--------------------------------------------------------\n", - "chill nigga sandy \n", + "sandy business scary \n", "\n", "\n", "Impactante fotografía REAL de como el huracán Sandy desata el caos a su llegada http://t.co/4ZcibpuM\n", @@ -26179,28 +23343,16 @@ "impactante fotografía real huracán sandy desata caos llegada \n", "\n", "\n", - "No Sandy http://t.co/zDjTVMSG\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Sorprendente imagen de Nueva York ante el Huracán Sandy http://t.co/EFLVBa2W\n", "\n", "--------------------------------------------------------\n", "sorprendente imagen nueva york huracán sandy \n", "\n", "\n", - "Waiting 4 Sandy... http://t.co/fNu9uq3x\n", - "\n", - "--------------------------------------------------------\n", - "waiting 4 sandy \n", - "\n", - "\n", "Cuidado com a Sandy NY haha zecabordon http://t.co/Zy0DySEV\n", "\n", "--------------------------------------------------------\n", - "cuidado com sandy ny haha zecabordon \n", + "cuidado sandy new yorkzecabordon \n", "\n", "\n", "hasta amiguitos trajo Sandy http://t.co/akKmZ6E7\n", @@ -26209,30 +23361,12 @@ "amiguitos trajo sandy \n", "\n", "\n", - "Too funny «@TwinklesYO Lmfaooo Sandy http://t.co/gSQErDJK»\n", - "\n", - "--------------------------------------------------------\n", - "funny lmfaooo sandy \n", - "\n", - "\n", - "Lmfao. RT @R_0_N Lady Liberty is not excited about meeting Ms Sandy http://t.co/PEPNp3hH\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", "These Sandy Pics #Hilarious http://t.co/CbnTdBoH\n", "\n", "--------------------------------------------------------\n", "sandy pics hilarious \n", "\n", "\n", - "Sandy ya te fuiste? http://t.co/b2Ekj0RD\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Efeito Sandy!!rs http://t.co/mNDPlm6i\n", "\n", "--------------------------------------------------------\n", @@ -26248,19 +23382,13 @@ "Sandy got her shook hahahahaha hahahahaha http://t.co/4lkV9kgW\n", "\n", "--------------------------------------------------------\n", - "sandy got shook hahahahaha hahahahaha \n", - "\n", - "\n", - "YO..... YO.....SANDY http://t.co/1Zwydiq2\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sandy got shook \n", "\n", "\n", "Furacão Sandy nos EUA: https://t.co/WFWrpLYW e ainda vão dizer que é photoshop ¬¬'\n", "\n", "--------------------------------------------------------\n", - "furacão sandy eua ainda vão dizer é photoshop \n", + "furacão sandy eua ainda vão dizer photoshop \n", "\n", "\n", "Todos refugiados x Sandy...hasta Freedom :P http://t.co/XNo6N9xt\n", @@ -26272,49 +23400,43 @@ "YO SANDY, CHILL MA NIGGA!! \\nMuahahahahahahaha!!!\\nhttp://t.co/6mFfKGnN\n", "\n", "--------------------------------------------------------\n", - "sandy chill nigga muahahahahahahaha \n", + "sandy chill nigga mua \n", "\n", "\n", "@yessieli23 #repost hope sandy doesn't see me 😖 lol http://t.co/n4qmKuQs\n", "\n", "--------------------------------------------------------\n", - "repost hope sandy see lol \n", + "repost hope sandy see \n", "\n", "\n", "Stop playing sandy lol niggas be wallin http://t.co/YxVOuTia\n", "\n", "--------------------------------------------------------\n", - "stop playing sandy lol niggas wallin \n", + "stop playing sandy niggas wallin \n", "\n", "\n", "#NYC Is Sandy here yet? http://t.co/LP2lnqxz\n", "\n", "--------------------------------------------------------\n", - "nyc sandy yet \n", - "\n", - "\n", - "Sandy is coming RT @BarbyeTurica: Arriva Sandy... http://t.co/x2g9ZA5F\n", - "\n", - "--------------------------------------------------------\n", - "sandy coming \n", + "new york city sandy yet \n", "\n", "\n", "Dijeron q todos debían resguardares del huracán Sandy en New York... Es sorprendente la @ New York, NY. EUA http://t.co/rosOV1u3\n", "\n", "--------------------------------------------------------\n", - "dijeron q debían resguardares huracán sandy new york sorprendente new york ny eua \n", + "dijeron q debían resguardares huracán sandy new york sorprendente new york new york eua \n", "\n", "\n", "Sandy is coming to town ... #I❤NY http://t.co/y6RAyith\n", "\n", "--------------------------------------------------------\n", - "sandy coming town ny \n", + "sandy coming town new york \n", "\n", "\n", "These Sandy pics are jokes lol http://t.co/Me5HKe4E\n", "\n", "--------------------------------------------------------\n", - "sandy pics jokes lol \n", + "sandy pics jokes \n", "\n", "\n", "Lady Liberty ---\"Sandy is one mean B*tch ! You represent freedom I'm out !!! http://t.co/OaCtFzTj http://t.co/KuJATIQZ\n", @@ -26335,16 +23457,10 @@ "traten protegerce tormenta sandy viene bajando teke teke ahora \n", "\n", "\n", - "Lmaoo RT @MoneyPowerJUICE: Que poosie RT @COMMEdesJUAN: Sandy Mira lo que tu hiciste mmg http://t.co/yP1fSjHk\n", - "\n", - "--------------------------------------------------------\n", - "lmaoo \n", - "\n", - "\n", "La Etatua Dijo Llego Sandy Mktr3 De Aki Hahahaha http://t.co/Xy3ZBUOR\n", "\n", "--------------------------------------------------------\n", - "etatua dijo llego sandy mktr3 aki hahahaha \n", + "etatua dijo llego sandy mktr3 aki \n", "\n", "\n", "Hasta la estatua se quiero esconder de Sandy. 😂😱#repost http://t.co/yf2amGAA\n", @@ -26356,19 +23472,19 @@ "Impresionante imagen del huracan Sandy en pleno apogeo al llegar a NY...\\nhttp://t.co/ewfHyWwZ\n", "\n", "--------------------------------------------------------\n", - "impresionante imagen huracan sandy pleno apogeo llegar ny \n", + "impresionante imagen huracan sandy pleno apogeo llegar new york \n", "\n", "\n", "effectivement la meilleure photo de sandy à nyc c'est http://t.co/fpVUrsBV\n", "\n", "--------------------------------------------------------\n", - "effectivement meilleure photo sandy à nyc c est \n", + "effectivement meilleure photo sandynew york city \n", "\n", "\n", "Se viene otro huracán como Sandy? No! Sanata hará un informe en NY (La Libertad, aterrada!) http://t.co/0dnHMoeL\n", "\n", "--------------------------------------------------------\n", - "viene huracán sandy sanata hará informe ny libertad aterrada \n", + "viene huracán sandy sanata hará informe new york libertad aterrada \n", "\n", "\n", "http://t.co/1VzAUrXm Ist Sandy weg ???\n", @@ -26377,12 +23493,6 @@ "ist sandy weg \n", "\n", "\n", - "Inmiddels zoekt heel NYC dekking voor Sandy... via @toinevp http://t.co/ztubFBiX\n", - "\n", - "--------------------------------------------------------\n", - "inmiddels zoekt heel nyc dekking sandy \n", - "\n", - "\n", "Uy que viene Sandy http://t.co/qlRWqPhY\n", "\n", "--------------------------------------------------------\n", @@ -26416,7 +23526,7 @@ "funniest sandy picture lol http://t.co/YFlPu2qi\n", "\n", "--------------------------------------------------------\n", - "funniest sandy picture lol \n", + "funniest sandy picture \n", "\n", "\n", "Sandy is comin #besmart #stockup #besafe #haveadrink #illbewatchinupdatesonBBCNews http://t.co/OrPW8pAd\n", @@ -26428,19 +23538,13 @@ "La foto con referencia a como está Nueva York tiene fecha 2009 y no corresponde a Sandy http://t.co/EzwIrpuR via @GabbyOria\n", "\n", "--------------------------------------------------------\n", - "foto referencia nueva york fecha 2009 corresponde sandy \n", + "foto referencia nueva york fecha009 corresponde sandy \n", "\n", "\n", "Esta foto indica que lo peor del Sandy parece que ha pasado ya http://t.co/2PlAcUrN\n", "\n", "--------------------------------------------------------\n", - "foto indica peor sandy parece pasado \n", - "\n", - "\n", - "Sandy is here!!!!! http://t.co/BOoT5OKx\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "foto indica peor sandy parece quepasado \n", "\n", "\n", "Sandy no me encuentres http://t.co/cLQ3dfsm\n", @@ -26455,12 +23559,6 @@ "new york beeft orkaan sandy \n", "\n", "\n", - "New York beeft voor Orkaan Sandy. (@Mvan_Berkel) http://t.co/yjpEhC2t\n", - "\n", - "--------------------------------------------------------\n", - "new york beeft orkaan sandy \n", - "\n", - "\n", "Sandy spaventa davvero http://t.co/Mld74oGV\n", "\n", "--------------------------------------------------------\n", @@ -26470,7 +23568,7 @@ "Thanks Sandy, I always wanted my.. - http://t.co/Jcp0lB8b #9gagtweets\n", "\n", "--------------------------------------------------------\n", - "thanks sandy always wanted 9gagtweets \n", + "thanks sandy always wanted \n", "\n", "\n", "Has Sandy gone yet? @ new york http://t.co/YD04dPCO\n", @@ -26506,7 +23604,7 @@ "Latest satellite shot of hurricane Sandy wow crazy out there http://t.co/t4wr9pp7\n", "\n", "--------------------------------------------------------\n", - "latest satellite shot hurricane sandy wow crazy \n", + "latest satellite shot hurricane sandy crazy \n", "\n", "\n", "Dagg Hurricane Sandy a bad b*tch! Look! She done even mad this hoe back down! 😂😂😂😭😂😭😲 http://t.co/S3nOklKD\n", @@ -26521,12 +23619,6 @@ "waiting hurricane sandy \n", "\n", "\n", - "“@Mostafaa24: BEST HURRICANE SANDY PIC EVER!!!!!! #Lmaoo #Sany #SOL http://t.co/tNndjhXb” hahahahaha omggg😂😂😂😂😂\n", - "\n", - "--------------------------------------------------------\n", - "hahahahaha omggg \n", - "\n", - "\n", "Guys!!!! It's getting really bad out there now!!! Hope everyone @ Frankenstorm Apocalypse - Hurricane Sandy http://t.co/sRvSO8kj\n", "\n", "--------------------------------------------------------\n", @@ -26542,7 +23634,7 @@ "HURRICANE SANDY GOT EVERYBODY SHOOK!! #lol http://t.co/yS8OHMkK\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got everybody shook lol \n", + "hurricane sandy got everybody shook \n", "\n", "\n", "Is this from that movie Day after tomorrow? NO. Hurricane Sandy bitchh #mindblown http://t.co/vNgtgdpq\n", @@ -26554,7 +23646,7 @@ "Hurricane Sandy is coming!? #LooksLegit #StatueofLiberty #NewYork http://t.co/Awd5R74z\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy coming lookslegit statueofliberty newyork \n", + "hurricane sandy coming lookslegit statueofliberty new york \n", "\n", "\n", "this shit is fake. it's a year old photo “@ProperKidProbs: ...continues to stay guarded throughout Hurricane Sandy. I http://t.co/xQHSNyI6”\n", @@ -26566,13 +23658,13 @@ "The real story behind hurricane Sandy lol http://t.co/jsTqzfsh\n", "\n", "--------------------------------------------------------\n", - "real story behind hurricane sandy lol \n", + "real story behind hurricane sandy \n", "\n", "\n", "Ok, I'm being told this is a legitimate picture of Hurricane Sandy in NYC. Uh oh. -Dino http://t.co/AtZYwOvT\n", "\n", "--------------------------------------------------------\n", - "ok told legitimate picture hurricane sandy nyc uh oh dino \n", + "ok told legitimate picture hurricane sandy new york city uh dino \n", "\n", "\n", "Awesome photo of Lady Liberty's view of Hurricane Sandy. Be safe, my friends. http://t.co/73mZTWhR via @po_st\n", @@ -26593,16 +23685,10 @@ "hurricane sandy everyone going new york city \n", "\n", "\n", - "Hurricane sandy getting #real http://t.co/iirJ5gmc\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting real \n", - "\n", - "\n", "Niggas be like \"ZOMG HURRICANE SANDY MAN :(\" http://t.co/eOV5EhEh\n", "\n", "--------------------------------------------------------\n", - "niggas like zomg hurricane sandy \n", + "niggas like z hurricane sandy \n", "\n", "\n", "#sandy @ Frankenstorm Apocalypse - Hurricane Sandy http://t.co/el73dA4F\n", @@ -26614,13 +23700,7 @@ "I am pretty sure this is not a faked picture of Hurricane Sandy in NYC. http://t.co/wo7YmgpT\n", "\n", "--------------------------------------------------------\n", - "pretty sure faked picture hurricane sandy nyc \n", - "\n", - "\n", - "Hurricane Sandy : shit just got real! http://t.co/ExlEnVF5\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy shit got real \n", + "pretty sure faked picture hurricane sandy new york city \n", "\n", "\n", "Hurricane Sandy has taken over New York http://t.co/eXNKV8Hb\n", @@ -26644,7 +23724,7 @@ "Lmao Why Do People Believe That This Is Hurricane Sandy ??? http://t.co/QWQb7kS1\n", "\n", "--------------------------------------------------------\n", - "lmao people believe hurricane sandy \n", + "people believe hurricane sandy \n", "\n", "\n", "This is what those fake pics make Hurricane Sandy look like http://t.co/vtmbMMLb\n", @@ -26662,13 +23742,7 @@ "There you go gullible people. Hurricane Sandy brought her friends over. #hurricane #hurricanesandy #Marshmal http://t.co/6t0bP99V\n", "\n", "--------------------------------------------------------\n", - "go gullible people hurricane sandy brought friends hurricane hurricanesandy marshmal \n", - "\n", - "\n", - "«@shaundakin «@ninagarcia Please check out this -> 11 Viral Photos That AREN'T Hurricane Sandy http://t.co/5q2lthxi http://t.co/xMfRJi6H»»\n", - "\n", - "--------------------------------------------------------\n", - "please check 11 viral photos hurricane sandy \n", + "go gullible people hurricane sandy brought friends hurricane hurricane sandy marshmal \n", "\n", "\n", "Hurricane Sandy CHILL nigga! Prayers to everyone, stay safe! 🌊🌀❄ #repost @luisrmiami http://t.co/NY84CzsA\n", @@ -26677,12 +23751,6 @@ "hurricane sandy chill nigga prayers everyone stay safe repost \n", "\n", "\n", - "Where is Hurricane sandy?...... http://t.co/5FW7rDM2\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", "Hurricane Sandy in action http://t.co/DGDJDNH0 #superstorm\n", "\n", "--------------------------------------------------------\n", @@ -26698,13 +23766,13 @@ "Hurricane Sandy!! Foto di jerome_ds http://t.co/G9dP4vmy\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy foto di jerome ds \n", + "hurricane sandy foto jeromeds \n", "\n", "\n", "Latest update of Hurricane Sandy, NY. http://t.co/O7U0ZcQC\n", "\n", "--------------------------------------------------------\n", - "latest update hurricane sandy ny \n", + "latest update hurricane sandy new york \n", "\n", "\n", "Hurricane SANDY jejejej dont F*%*£$• up jajajajaja http://t.co/Bj0pVkwb\n", @@ -26716,13 +23784,13 @@ "Bahahahaha new york hurricane sandy http://t.co/1n3AfemL\n", "\n", "--------------------------------------------------------\n", - "bahahahaha new york hurricane sandy \n", + "banew york hurricane sandy \n", "\n", "\n", "Ms. Liberty Is Not Playing With Hurricane Sandy! #hurricanesandy #hurricane #statueofliberty #picoftheday #l http://t.co/u37xEpml\n", "\n", "--------------------------------------------------------\n", - "ms liberty playing hurricane sandy hurricanesandy hurricane statueofliberty picoftheday l \n", + "ms liberty playing hurricane sandy hurricane sandy hurricane statueofliberty picoftheday \n", "\n", "\n", "Make sure you do a google images search before you post others' pictures of Hurricane Sandy http://t.co/dthHF6hv\n", @@ -26734,37 +23802,25 @@ "Lmaoooo #death RT @noramoss: Hurricane sandy got you beotches scared! http://t.co/w3ErG58n\n", "\n", "--------------------------------------------------------\n", - "lmaoooo death \n", - "\n", - "\n", - "@PatrickLawlerDP Hurricane Sandy, a Purrr-fect storm http://t.co/BkUCWUrV\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy purrr fect storm \n", + "death \n", "\n", "\n", "THIS IS FUCKIN SCARY AF HURRICANE SANDY IS AH FUCKIN BEAST SMH http://t.co/AEzYIFpR\n", "\n", "--------------------------------------------------------\n", - "fuckin scary af hurricane sandy ah fuckin beast smh \n", + "fuckin scary af hurricane sandy ah fuckin beast \n", "\n", "\n", "Fake Hurricane Sandy Photos 7 http://t.co/SySTN8dG\n", "\n", "--------------------------------------------------------\n", - "fake hurricane sandy photos 7 \n", + "fake hurricane sandy photos \n", "\n", "\n", "Hurricane Sandy has everyone running scared lol http://t.co/WsiNRcRK\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy everyone running scared lol \n", - "\n", - "\n", - "Sandy Hurricane 🗽🇺🇸 http://t.co/F0Rv5ZlT\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane \n", + "hurricane sandy everyone running scared \n", "\n", "\n", "Hurricane Sandy according to the media... http://t.co/rBkd3SHa\n", @@ -26782,19 +23838,13 @@ "OMG: REAL HURRICANE SANDY PHOTO! http://t.co/cS8BujJt\n", "\n", "--------------------------------------------------------\n", - "omg real hurricane sandy photo \n", + "real hurricane sandy photo \n", "\n", "\n", "Omg look at this picture of hurricane sandy! Hope dey r ok! 🙏 http://t.co/fEjfUh92\n", "\n", "--------------------------------------------------------\n", - "omg look picture hurricane sandy hope dey r ok \n", - "\n", - "\n", - "WOW. Hurricane Sandy http://t.co/oBEVrkhe\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricane sandy \n", + "look picture hurricane sandy hope dey ok \n", "\n", "\n", "Hurricane Sandy Scares... http://t.co/TJH0i2s6\n", @@ -26806,7 +23856,7 @@ "Should probably go to usual news site b/c reading about Hurricane Sandy on Tumblr means stuff starts to look like this: http://t.co/Oaa5gF9C\n", "\n", "--------------------------------------------------------\n", - "probably go usual news site b c reading hurricane sandy tumblr means stuff starts look like \n", + "probably go usual news site b reading hurricane sandy tumblr means stuff starts look like \n", "\n", "\n", "someone is really afraid of Hurricane Sandy! i love this photo! 😂 --unknown source http://t.co/CqwjOHxu\n", @@ -26830,13 +23880,13 @@ "http://t.co/4leL8Ir8 people are commenting \"omg hurricane sandy, stay safe!\" when this is really from \"the day after tomorrow\" #icant #dfjsd\n", "\n", "--------------------------------------------------------\n", - "people commenting omg hurricane sandy stay safe really day tomorrow icant dfjsd \n", + "people commenting hurricane sandy stay safe really day tomorrow icant dfjsd \n", "\n", "\n", "Hurricane Sandy got everybody hiding. Lol hahaha http://t.co/3sPe7fWq\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got everybody hiding lol hahaha \n", + "hurricane sandy got everybody hiding \n", "\n", "\n", "I think this Hurricane Sandy image might be shopped... http://t.co/VVnL11yP\n", @@ -26854,7 +23904,7 @@ "Hurricane sandy #frankenstorm #shitsreal #hurricanesandy http://t.co/RYFZW5ef\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy frankenstorm shitsreal hurricanesandy \n", + "hurricane sandy frankenstorm shitsreal hurricane sandy \n", "\n", "\n", "Latest scenes from Hurricane Sandy http://t.co/ZojOwacQ\n", @@ -26863,16 +23913,10 @@ "latest scenes hurricane sandy \n", "\n", "\n", - "Hurricane Sandy In NYC 🌊☔☁ http://t.co/bDcpBp9i\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", "Why hide #statueofliberty ? Oh hurricane sandy is kind of scary http://t.co/o1htdhFA\n", "\n", "--------------------------------------------------------\n", - "hide statueofliberty oh hurricane sandy kind scary \n", + "hide statueofliberty hurricane sandy kind scary \n", "\n", "\n", "Hurricane Sandy is not the only thing coming out. http://t.co/YfSVGoST\n", @@ -26902,7 +23946,7 @@ "One of 6 fake hurricane Sandy photos circulating on social media right now. http://t.co/wiPvGJBl\n", "\n", "--------------------------------------------------------\n", - "one 6 fake hurricane sandy photos circulating social media right \n", + "one fake hurricane sandy photos circulating social media right \n", "\n", "\n", "Hurricane SANDY-CAT . 🐱 Meow ~ http://t.co/dj75YIvg\n", @@ -26950,7 +23994,7 @@ "Hurricane Sandy. #hurricanesandy http://t.co/kFWxkDrj\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy \n", + "hurricane sandy hurricane sandy \n", "\n", "\n", "They clearly think we're stupid, tryna say this is Hurricane Sandy. Uhhh clearly this is off the movie 'The http://t.co/BBx0X440\n", @@ -26959,12 +24003,6 @@ "clearly think stupid tryna say hurricane sandy uhhh clearly movie \n", "\n", "\n", - "Fake Hurricane Sandy Photos 1 http://t.co/YRuSbTdS\n", - "\n", - "--------------------------------------------------------\n", - "fake hurricane sandy photos 1 \n", - "\n", - "\n", "Newest photos of Hurricane Sandy hitting the web... http://t.co/a1JVQsay\n", "\n", "--------------------------------------------------------\n", @@ -26974,13 +24012,13 @@ "Unreal😱 hurricane Sandy over NY City!! 🙏☔⚡🗽 http://t.co/dhfwQdGt\n", "\n", "--------------------------------------------------------\n", - "unreal hurricane sandy ny city \n", + "unreal hurricane sandy new york city \n", "\n", "\n", "BREAKING: Hurricane Sandy is trolling the shit outta NYC http://t.co/BG2GdJyO\n", "\n", "--------------------------------------------------------\n", - "breaking hurricane sandy trolling shit outta nyc \n", + "breaking hurricane sandy trolling shit outta new york city \n", "\n", "\n", "SCREAAAAMMMSSS RT @dunksothersista: Lol cuz! RT @JimmieAllen: Hurricane Sandy got everybody hiding. Lol hahaha http://t.co/KMineOdE\n", @@ -26998,13 +24036,13 @@ "Lol cuz! RT @JimmieAllen: Hurricane Sandy got everybody hiding. Lol hahaha http://t.co/VPNdAiWG\n", "\n", "--------------------------------------------------------\n", - "lol \n", + "cuz \n", "\n", "\n", "Damn Hurricane Sandy aint fucking playing\\n\\n#LOL http://t.co/edjyfP1t\n", "\n", "--------------------------------------------------------\n", - "damn hurricane sandy aint fucking playing lol \n", + "damn hurricane sandy aint fucking playing \n", "\n", "\n", "Holy shit, Hurricane Sandy is getting intense :O http://t.co/RhIw84K1\n", @@ -27013,12 +24051,6 @@ "holy shit hurricane sandy getting intense \n", "\n", "\n", - "“@jasegunn: This ones doing the rounds but how about this outside yr front door? Thanks Hurricane Sandy! http://t.co/YFNlO0eu”\\n\\nPhotoshop\n", - "\n", - "--------------------------------------------------------\n", - "photoshop \n", - "\n", - "\n", "Ctfu!!!! Kmsl!!!! Shit just got real hurricane Sandy is holding no prisoners!!!!!! http://t.co/hYhWjAzi\n", "\n", "--------------------------------------------------------\n", @@ -27031,16 +24063,10 @@ "hahhahah hurricane sandy \n", "\n", "\n", - "#Not real... RT @collettevm: @FoxNews @CNC3TV @tv6tnt hurricane Sandy over New York...scary!!! http://t.co/Nj4m32jv\n", - "\n", - "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", "New York sandy hurricane over Freedom statue #NYC #Sandy http://t.co/pYfKoopX\n", "\n", "--------------------------------------------------------\n", - "new york sandy hurricane freedom statue nyc sandy \n", + "new york sandy hurricane freedom statue new york city sandy \n", "\n", "\n", "This bitch even scared of Hurricane Sandy! http://t.co/9ZTrGgck\n", @@ -27058,7 +24084,7 @@ "HURRICANE SANDY CHILL NIGGA ! All my friends in NYC and East Coast be safe out there! #HUMOR #NYC #LIBERTY # http://t.co/m1c5su9O\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy chill nigga friends nyc east coast safe humor nyc libe \n", + "hurricane sandy chill nigga friends new york city east coast safe humor new york city libe \n", "\n", "\n", "Looks like Hurricane Sandy is the least of New Yorks problems right now... http://t.co/QxVRXcFu\n", @@ -27082,7 +24108,7 @@ "What Sandy looks like from Europe. http://t.co/awUUHoLd\\nBwahaha. Seriously, clean that hurricane mess up before I get back mmkay?\n", "\n", "--------------------------------------------------------\n", - "sandy looks like europe bwahaha seriously clean hurricane mess get back mmkay \n", + "sandy looks like europe bwa seriously clean hurricane mess get back mmkay \n", "\n", "\n", "As hurricane Sandy approaches the Big Apple... http://t.co/TohO8GpG\n", @@ -27094,7 +24120,7 @@ "Hurricane sandy got lady liberty shook lmao http://t.co/a0Vo5dX0\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got lady liberty shook lmao \n", + "hurricane sandy got lady liberty shook \n", "\n", "\n", "THESE AREN'T PHOTOS FROM HURRICANE SANDY YOU GUYS STOP BEING SO GULLIBLE http://t.co/9BeJdyMv\n", @@ -27106,7 +24132,7 @@ "hahaha so wrong RT Oh shit. Hurricane Sandy is about to hit!!! http://t.co/b9TdlmZH\n", "\n", "--------------------------------------------------------\n", - "hahaha wrong \n", + "wrong \n", "\n", "\n", "Preparing for Hurricane Sandy http://t.co/6WB9Ajxk\n", @@ -27124,7 +24150,7 @@ "My twin bro is SMART! “@JasonCarrier1: Do a google images search before you post others' pictures of Hurricane Sandy http://t.co/0UarByZB”\n", "\n", "--------------------------------------------------------\n", - "twin bro smart \n", + "twinis smart \n", "\n", "\n", "Americans about the hurricane Sandy: http://t.co/kfjsVLxU Meanwhile Dominicans: http://t.co/3dqq4Zda\n", @@ -27136,13 +24162,13 @@ "Lmao People Dancing During Hurricane Sandy\\nhttp://t.co/6zwp6Bcj\\nhttp://t.co/KvCEHhCg\\nhttp://t.co/R5V4avFC\n", "\n", "--------------------------------------------------------\n", - "lmao people dancing hurricane sandy \n", + "people dancing hurricane sandy \n", "\n", "\n", "i am so done with the internet and hurricane sandy right now lol http://t.co/5l7JOwyx\n", "\n", "--------------------------------------------------------\n", - "done internet hurricane sandy right lol \n", + "done internet hurricane sandy right \n", "\n", "\n", "We PRAY everyone sought shelter last night that was affected by the wrath of Hurricane Sandy along the east http://t.co/WybUE6Wv\n", @@ -27232,7 +24258,7 @@ "BEST HURRICANE SANDY PIC EVER!!!!!! #Lmaoo #Sany #SOL http://t.co/yv8L4bwr\n", "\n", "--------------------------------------------------------\n", - "best hurricane sandy pic ever lmaoo sany sol \n", + "best hurricane sandy pic ever sany sol \n", "\n", "\n", "insane pic of hurricane sandy. not a fake http://t.co/TgptO4Tt\n", @@ -27256,73 +24282,67 @@ "Pre-hurricane Sandy! Lol. I hope everyone stayed safe. Bless! http://t.co/o66luErN\n", "\n", "--------------------------------------------------------\n", - "pre hurricane sandy lol hope everyone stayed safe bless \n", + "pre hurricane sandy hope everyone stayed safe bless \n", "\n", "\n", "@ore2two @LicMarkito viste como se embalo la estatua ahora no kiere ver a sandy lolxz :P http://t.co/u5y7rcjd\n", "\n", "--------------------------------------------------------\n", - "viste embalo estatua ahora kiere ver sandy lolxz p \n", - "\n", - "\n", - "Not real RT @ReaganGomez: Just saw this. Crazy picture of the Statue of Liberty right now. Stay safe! #HurricaneSandy http://t.co/xnvQUz1u\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "viste embalo estatua ahora kiere ver sandy xz p \n", "\n", "\n", "#hurricanesandy #scary thata no joke. Hope everyone is safe. http://t.co/kvQYKqsV\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy scary thata joke hope everyone safe \n", + "hurricane sandy scary thata joke hope everyone safe \n", "\n", "\n", "😂😂😂😂 #repost #apocalypse #hurricanesandy http://t.co/gurpMiY4\n", "\n", "--------------------------------------------------------\n", - "repost apocalypse hurricanesandy \n", + "repost apocalypse hurricane sandy \n", "\n", "\n", "Seems pretty legit to me. #HurricaneSandy http://t.co/FSoytTQm\n", "\n", "--------------------------------------------------------\n", - "seems pretty legit hurricanesandy \n", + "seems pretty legit hurricane sandy \n", "\n", "\n", "Oh no! Am I protected now? #HurricaneSandy http://t.co/7EvKyELl\n", "\n", "--------------------------------------------------------\n", - "oh protected hurricanesandy \n", + "protected hurricane sandy \n", "\n", "\n", "Essa vai pra vc @morenalaura #hurricanesandy #sandy #furacaosandy http://t.co/NiOfM9br\n", "\n", "--------------------------------------------------------\n", - "essa vai pra vc hurricanesandy sandy furacaosandy \n", + "vai pra vc hurricane sandy sandy furacaosandy \n", "\n", "\n", "It's getting real out here... #repost #facecrook #sandy #hurricanesandy #statueofliberty #ellisisland #hurri http://t.co/zPPXO1Pe\n", "\n", "--------------------------------------------------------\n", - "getting real repost facecrook sandy hurricanesandy statueofliberty ellisisland hurri \n", + "getting real repost facecrook sandy hurricane sandy statueofliberty ellisisland hurri \n", "\n", "\n", "Lol she's shook RT @LoBoehm: Stay Safe Lady Liberty! #hurricanesandy #nyc #staysafe http://t.co/nA6loOQe\n", "\n", "--------------------------------------------------------\n", - "lol shook \n", + "shook \n", "\n", "\n", "This looks about right. #hurricanesandy #truelife http://t.co/Q5g0Jkzz\n", "\n", "--------------------------------------------------------\n", - "looks right hurricanesandy truelife \n", + "looks right hurricane sandy truelife \n", "\n", "\n", "Found this picture on Facebook #hurricanesandy this has to be fake because this shit looks like the world is http://t.co/TOKuhaOt\n", "\n", "--------------------------------------------------------\n", - "found picture facebook hurricanesandy fake shit looks like world \n", + "found picture facebook hurricane sandy fake shit looks like world \n", "\n", "\n", "Sums it up. http://t.co/QrosNRTW\\n#sandy\n", @@ -27334,139 +24354,133 @@ "@jonspina http://t.co/7VhQgAMZ - It's got creativity written all over it. #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "got creativity written hurricanesandy \n", + "got creativity written hurricane sandy \n", "\n", "\n", "#hurricanesandy got everybody fucked up #chicaho #detroit #newyork #newjersey http://t.co/31UWX21v\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy got everybody fucked chicaho detroit newyork newjersey \n", + "hurricane sandy got everybody fucked chicaho detroit new york newjersey \n", "\n", "\n", "Yes it is exactly like this lol #hurricanesandy #frankenstorm @ Lexington, MA http://t.co/M24BdDwm\n", "\n", "--------------------------------------------------------\n", - "yes exactly like lol hurricanesandy frankenstorm lexington \n", + "yes exactly like hurricane sandy frankenstorm lexington \n", "\n", "\n", "#HurricaneSandy #doingthemost http://t.co/EaRWvpxA\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy doingthemost \n", + "hurricane sandy doingthemost \n", "\n", "\n", "Shit's getting serious in #NYC #hurricabe #hurricanesandy #sandy #eastcoast #statueofliberty #weather #nofil http://t.co/PKsVhJTL\n", "\n", "--------------------------------------------------------\n", - "shit getting serious nyc hurricabe hurricanesandy sandy eastcoast statueofliberty weather nofil \n", + "shit getting serious new york city hurricabe hurricane sandy sandy eastcoast statueofliberty weather nofil \n", "\n", "\n", "Ru-Roh #NYC is about to get thrashed. #hurricanesandy #dayaftertomorrow #mayGodbewiththem http://t.co/Ku8D9S03\n", "\n", "--------------------------------------------------------\n", - "ru roh nyc get thrashed hurricanesandy dayaftertomorrow maygodbewiththem \n", - "\n", - "\n", - "😂😂😂😂 #hurricanesandy http://t.co/uS922oHB\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "ru r new york city get thrashed hurricane sandy dayaftertomorrow maygodbewiththem \n", "\n", "\n", "Watching the news on #HurricaneSandy. That bitch is going HAM!! Can't wait for NYC next year!! http://t.co/8qqjYmzA\n", "\n", "--------------------------------------------------------\n", - "watching news hurricanesandy bitch going ham wait nyc next year \n", + "watching news hurricane sandy bitch going ham wait new york city next year \n", "\n", "\n", "If she's scared I'm scared #hurricanesandy #hurricane http://t.co/zAYSJ4Hp\n", "\n", "--------------------------------------------------------\n", - "scared scared hurricanesandy hurricane \n", + "scared scared hurricane sandy hurricane \n", "\n", "\n", "OMG NEW YORK CITY THO!!!!!!!!!! #hurricanesandy http://t.co/zML4U7GM\n", "\n", "--------------------------------------------------------\n", - "omg new york city tho hurricanesandy \n", + "new york city tho hurricane sandy \n", "\n", "\n", "#statueofliberty #frankenstorm #hurricanesandy #runandhide http://t.co/7gIiLxQd\n", "\n", "--------------------------------------------------------\n", - "statueofliberty frankenstorm hurricanesandy runandhide \n", + "statueofliberty frankenstorm hurricane sandy runandhide \n", "\n", "\n", "Damn Son! No Filter! #HurricaneSandy http://t.co/TLZGNFHu\n", "\n", "--------------------------------------------------------\n", - "damn filter hurricanesandy \n", + "damn filter hurricane sandy \n", "\n", "\n", "#hurricanesandy \\nexpect more natural diasters for not starting #tebow http://t.co/Yj6bAnR2\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy expect natural diasters starting tebow \n", + "hurricane sandy expect natural diasters starting tebow \n", "\n", "\n", "#armageddon #2012 #endoftheworld #statepuff #godzilla #cloverfield #jaws #hurricanesandy #newyork http://t.co/7eg07MYp\n", "\n", "--------------------------------------------------------\n", - "armageddon 2012 endoftheworld statepuff godzilla cloverfield jaws hurricanesandy newyork \n", + "armageddon012 endoftheworld statepuff godzilla cloverfield jaws hurricane sandy new york \n", "\n", "\n", "Ok last one lmao #hurricanesandy http://t.co/0tlmoRaE\n", "\n", "--------------------------------------------------------\n", - "ok last one lmao hurricanesandy \n", + "ok last one hurricane sandy \n", "\n", "\n", "Lmao....Hilarious #HurricaneSandy http://t.co/EDbFBQQ2\n", "\n", "--------------------------------------------------------\n", - "lmao hilarious hurricanesandy \n", + "hilarious hurricane sandy \n", "\n", "\n", "Now it's getting real. #nyc #hurricanesandy http://t.co/Bpu8fQ7A\n", "\n", "--------------------------------------------------------\n", - "getting real nyc hurricanesandy \n", + "getting real new york city hurricane sandy \n", "\n", "\n", "u scared? 🗽 #HurricaneSandy. #statueofliberty. http://t.co/OquF0JWN\n", "\n", "--------------------------------------------------------\n", - "scared hurricanesandy statueofliberty \n", + "scared hurricane sandy statueofliberty \n", "\n", "\n", "#LOL #StarrHumor #StatueOfLiberty #HurricaneSandy http://t.co/33aqV6pv http://t.co/31bR47Lo\n", "\n", "--------------------------------------------------------\n", - "lol starrhumor statueofliberty hurricanesandy \n", + "starrhumor statueofliberty hurricane sandy \n", "\n", "\n", "The situation in New York is getting really crazy holy crap please send help http://t.co/yaS2KJKQ #hurricanesandy #frankenstorm \n", "\n", "--------------------------------------------------------\n", - "situation new york getting really crazy holy crap please send help hurricanesandy frankenstorm \n", + "situation new york getting really crazy holy crap please send help hurricane sandy frankenstorm \n", "\n", "\n", "Nervous for Sandy 😩 #hurricanesandy #eastcost #sandy http://t.co/04ccvCPK\n", "\n", "--------------------------------------------------------\n", - "nervous sandy hurricanesandy eastcost sandy \n", + "nervous sandy hurricane sandy eastcost sandy \n", "\n", "\n", "#StatueOfLibertyIsAfraid #HurricaneSandy #Frankenstorm http://t.co/iOYn4LVf\n", "\n", "--------------------------------------------------------\n", - "statueoflibertyisafraid hurricanesandy frankenstorm \n", + "statueoflibertyisafraid hurricane sandy frankenstorm \n", "\n", "\n", "Lmao current situation in NYC #Godzilla #Jaws #aliens #ufos #marshmallowman and #hurricanesandy http://t.co/baNU3ljV\n", "\n", "--------------------------------------------------------\n", - "lmao current situation nyc godzilla jaws aliens ufos marshmallowman hurricanesandy \n", + "current situation new york city godzilla jaws aliens ufos marshmallowman hurricane sandy \n", "\n", "\n", "“@AntonioRosalesM: Is this the end of the world???? 😳😳😳 #HurricaneSandy http://t.co/BPeiHQ0E”\\nPhony picture. There's also one with a shark.\n", @@ -27475,292 +24489,274 @@ "phony picture also one shark \n", "\n", "\n", - "#hurricanesandy http://t.co/QbH6Dx9u\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", - "\n", - "\n", "#statueofliberty #hurricanesandy #funny #statue #iphonesia http://t.co/pthQSbr3\n", "\n", "--------------------------------------------------------\n", - "statueofliberty hurricanesandy funny statue iphonesia \n", + "statueofliberty hurricane sandy funny statue iphonesia \n", "\n", "\n", "sheʹs a tad bit scared #HurricaneSandy http://t.co/MObA3Nlm\n", "\n", "--------------------------------------------------------\n", - "sheʹs tad bit scared hurricanesandy \n", + "sheʹs tad bit scared hurricane sandy \n", "\n", "\n", "I don't care what they say, this picture is NOT photoshopped! #hurricanesandy http://t.co/h1B1ouVF\n", "\n", "--------------------------------------------------------\n", - "care say picture photoshopped hurricanesandy \n", + "care say picture photoshopped hurricane sandy \n", "\n", "\n", "t#sandy #dead #weak #lmfao http://t.co/8G92kvtp\n", "\n", "--------------------------------------------------------\n", - "sandy dead weak lmfao \n", + "tsandy dead weak \n", "\n", "\n", "LMAO!! This is too funny! #hurricanesandy #statueofliberty http://t.co/rdP3F0SY\n", "\n", "--------------------------------------------------------\n", - "lmao funny hurricanesandy statueofliberty \n", + "funny hurricane sandy statueofliberty \n", "\n", "\n", "Check Lady Liberty getting ready for #hurricanesandy haha #nyc #statueofliberty @ Statue of Liberty http://t.co/TJDaR7LI\n", "\n", "--------------------------------------------------------\n", - "check lady liberty getting ready hurricanesandy haha nyc statueofliberty statue liberty \n", + "check lady liberty getting ready hurricane sandynew york city statueofliberty statue liberty \n", "\n", "\n", "She's hiding from the hurricane. #ladyliberty #stateofliberty #hurricane #hurricanesandy #instapic #instasia http://t.co/A35peN80\n", "\n", "--------------------------------------------------------\n", - "hiding hurricane ladyliberty stateofliberty hurricane hurricanesandy instapic instasia \n", + "hiding hurricane ladyliberty stateofliberty hurricane hurricane sandy instapic instasia \n", "\n", "\n", "Shark swim pass homes in New Jeresy #hurricanesandy http://t.co/Yz0TsT5G\n", "\n", "--------------------------------------------------------\n", - "shark swim pass homes new jeresy hurricanesandy \n", + "shark swim pass homes new jeresy hurricane sandy \n", "\n", "\n", "Is the storm over yet? #hurricanesandy http://t.co/pLXEcgwe\n", "\n", "--------------------------------------------------------\n", - "storm yet hurricanesandy \n", - "\n", - "\n", - "#lmfao 😂😅 #hurricanesandy http://t.co/z6DLjxFk\n", - "\n", - "--------------------------------------------------------\n", - "lmfao hurricanesandy \n", + "storm yet hurricane sandy \n", "\n", "\n", "We were told of this day 8 yrs ago #2012 #nyc #hurricanesandy #dayaftertomorrow http://t.co/z3lGFv4e\n", "\n", "--------------------------------------------------------\n", - "told day 8 yrs ago 2012 nyc hurricanesandy dayaftertomorrow \n", + "told day yrs ago2 new york city hurricane sandy dayaftertomorrow \n", "\n", "\n", "I need to know who made this hahahahhh #HurricaneSandy http://t.co/r5UqCyzG\n", "\n", "--------------------------------------------------------\n", - "need know made hahahahhh hurricanesandy \n", - "\n", - "\n", - "Lmao #HurricaneSandy http://t.co/iFx4NSPG\n", - "\n", - "--------------------------------------------------------\n", - "lmao hurricanesandy \n", + "need know made hahahahhh hurricane sandy \n", "\n", "\n", "Poor Lady Liberty in NYC😂 #HurricaneSandy http://t.co/KCTzpCvf\n", "\n", "--------------------------------------------------------\n", - "poor lady liberty nyc hurricanesandy \n", + "poor lady liberty new york city hurricane sandy \n", "\n", "\n", "@DjArsonYea It's Serious Out There..... #hurricanesandy http://t.co/ISTR2JJm\n", "\n", "--------------------------------------------------------\n", - "serious hurricanesandy \n", + "serious hurricane sandy \n", "\n", "\n", "This looks like something out of the movie, the day after tomorrow #wild #2012 #hurricanesandy #crazy http://t.co/iDLOqIwJ\n", "\n", "--------------------------------------------------------\n", - "looks like something movie day tomorrow wild 2012 hurricanesandy crazy \n", + "looks like something movie day tomorrow wild012 hurricane sandy crazy \n", "\n", "\n", "Shit is going down in New York City right now. Repost from @irabrianmiller #hurricanesandy #hideyawife #seri http://t.co/z9Ls1Nso\n", "\n", "--------------------------------------------------------\n", - "shit going new york city right repost hurricanesandy hideyawife seri \n", + "shit going new york city right repost hurricane sandy hideyawife seri \n", "\n", "\n", "Lmao wuttttt #hurricanesandy http://t.co/VdMhQNTf\n", "\n", "--------------------------------------------------------\n", - "lmao wuttttt hurricanesandy \n", + "wuttttt hurricane sandy \n", "\n", "\n", "Brilliant. #hurricanesandy http://t.co/ICPF6kMB\n", "\n", "--------------------------------------------------------\n", - "brilliant hurricanesandy \n", + "brilliant hurricane sandy \n", "\n", "\n", "It dun got real. You know #sandy a threat when she hiding #hurricanesandy #statueofliberty http://t.co/yRd5W9f1\n", "\n", "--------------------------------------------------------\n", - "dun got real know sandy threat hiding hurricanesandy statueofliberty \n", + "dun got real know sandy threat hiding hurricane sandy statueofliberty \n", "\n", "\n", "I thought this was cute. Stay Safe everyone. Hugs and kisses. #HurricaneSandy http://t.co/vbCc78nN\n", "\n", "--------------------------------------------------------\n", - "thought cute stay safe everyone hugs kisses hurricanesandy \n", + "thought cute stay safe everyone hugs kisses hurricane sandy \n", "\n", "\n", "Word!? #hurricanesandy http://t.co/tSrMhztY\n", "\n", "--------------------------------------------------------\n", - "word hurricanesandy \n", + "word hurricane sandy \n", "\n", "\n", "She wasn't able to evacuate... #statueofliberty #hurricanesandy http://t.co/rF5Uwrng\n", "\n", "--------------------------------------------------------\n", - "able evacuate statueofliberty hurricanesandy \n", + "able evacuate statueofliberty hurricane sandy \n", "\n", "\n", "Thinking about all those on the east coast! #staysafe #takecover #hurricanesandy http://t.co/6jmTkMfg\n", "\n", "--------------------------------------------------------\n", - "thinking east coast staysafe takecover hurricanesandy \n", + "thinking east coast staysafe takecover hurricane sandy \n", "\n", "\n", "Ctfu #hurricanesandy http://t.co/hGVyjFrQ\n", "\n", "--------------------------------------------------------\n", - "ctfu hurricanesandy \n", + "ctfu hurricane sandy \n", "\n", "\n", "So this is whats really going on in the #EastCoast #HurricaneSandy #Liars #Haha http://t.co/xfTF0a2z\n", "\n", "--------------------------------------------------------\n", - "whats really going eastcoast hurricanesandy liars haha \n", + "whats really going eastcoast hurricane sandy liars \n", "\n", "\n", "Look at Lady Liberty hidin from me #HurricaneSandy bitch I will crush you lmfao http://t.co/1iMJhAps\n", "\n", "--------------------------------------------------------\n", - "look lady liberty hidin hurricanesandy bitch crush lmfao \n", + "look lady liberty hidin hurricane sandy bitch crush \n", "\n", "\n", "#superstorm #sandy #hurricanesandy #nyc #endoftheworld http://t.co/3eNAfqPo\n", "\n", "--------------------------------------------------------\n", - "superstorm sandy hurricanesandy nyc endoftheworld \n", + "superstorm sandy hurricane sandy new york city endoftheworld \n", "\n", "\n", "I kno #HurricaneSandy is not a joke, but this was funny... http://t.co/HNufdBuK\n", "\n", "--------------------------------------------------------\n", - "kno hurricanesandy joke funny \n", + "kno hurricane sandy joke funny \n", "\n", "\n", "#NY deserves it...lol #HurricaneSandy http://t.co/rDQfrGiJ\n", "\n", "--------------------------------------------------------\n", - "ny deserves lol hurricanesandy \n", + "new york deserves hurricane sandy \n", "\n", "\n", "Ayeeee hell naw! I ain't staying around for this BS!!! #AintNobodyGotTimeForThat #HurricaneSandy http://t.co/k9fo5TOh\n", "\n", "--------------------------------------------------------\n", - "ayeeee hell naw staying around bs aintnobodygottimeforthat hurricanesandy \n", + "ayeeee hell naw staying around bs aintnobodygottimeforthat hurricane sandy \n", "\n", "\n", "Even she got scared :/\\n\\n#hurricanesandy #nyc #ladyliberty #statueofliberty http://t.co/DLTZtbAK\n", "\n", "--------------------------------------------------------\n", - "even got scared hurricanesandy nyc ladyliberty statueofliberty \n", + "even got scared hurricane sandy new york city ladyliberty statueofliberty \n", "\n", "\n", "#nyc #hurricanesandy #newyork http://t.co/8EmeAqbN\n", "\n", "--------------------------------------------------------\n", - "nyc hurricanesandy newyork \n", + "new york city hurricane sandy new york \n", "\n", "\n", "At least them New Yorkers is smart... This Hurricane is no joke. #HurricaneSandy http://t.co/nz7oLHkP\n", "\n", "--------------------------------------------------------\n", - "least new yorkers smart hurricane joke hurricanesandy \n", + "least new yorkers smart hurricane joke hurricane sandy \n", "\n", "\n", "Ça va mal à New York ! LOL ! #lol #funny #sandy #hurricanesandy #frankenstorm http://t.co/KIXoKafC\n", "\n", "--------------------------------------------------------\n", - "ça va mal à new york lol lol funny sandy hurricanesandy frankenstorm \n", + "ça va malnew york funny sandy hurricane sandy frankenstorm \n", "\n", "\n", "Crazy shot of #newyork NOT photoshopped #hurricanesandy http://t.co/8Q8RT0lP\n", "\n", "--------------------------------------------------------\n", - "crazy shot newyork photoshopped hurricanesandy \n", + "crazy shot new york photoshopped hurricane sandy \n", "\n", "\n", "VA Medical Center is in total darkness. Apparent power loss just now. #hurricanesandy #n @ VA Medical Center http://t.co/wq2KLa9w\n", "\n", "--------------------------------------------------------\n", - "va medical center total darkness apparent power loss hurricanesandy n va medical center \n", + "va medical center total darkness apparent power loss hurricane sandy va medical center \n", "\n", "\n", "Long Hair Don't Care!! #nyc #hurricanesandy http://t.co/yPnnE4bl\n", "\n", "--------------------------------------------------------\n", - "long hair care nyc hurricanesandy \n", + "long hair care new york city hurricane sandy \n", "\n", "\n", "lol, i thought this was funny, probably funnier than it actually is lol. #newyork #hurricanesandy #puff #sha http://t.co/bVRVyd5p\n", "\n", "--------------------------------------------------------\n", - "lol thought funny probably funnier actually lol newyork hurricanesandy puff sha \n", + "thought funny probably funnier actually new york hurricane sandy puff \n", "\n", "\n", "Another \"real\" photo of #NY #hurricanesandy #cats http://t.co/LDfwsUxo\n", "\n", "--------------------------------------------------------\n", - "another real photo ny hurricanesandy cats \n", + "another real photo new york hurricane sandy cats \n", "\n", "\n", "#hurricanesandy #lol #gtfo @ home 😊 http://t.co/xGEvfELC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy lol gtfo home \n", + "hurricane sandy gtfo home \n", "\n", "\n", "“@foogol Embrace yourself.. #Sandy #hurricanesandy http://t.co/QoetS0sX”...LMAO\n", "\n", "--------------------------------------------------------\n", - "embrace sandy hurricanesandy lmao \n", + "embrace sandy hurricane sandy \n", "\n", "\n", "This picture made my night!!!! #Hurricanesandy #chillout http://t.co/cKsMTpwu\n", "\n", "--------------------------------------------------------\n", - "picture made night hurricanesandy chillout \n", + "picture made night hurricane sandy chillout \n", "\n", "\n", "Ahaha poor lady!! Lmao #ladyliberty #hurricanesandy http://t.co/BDfXzDlC\n", "\n", "--------------------------------------------------------\n", - "ahaha poor lady lmao ladyliberty hurricanesandy \n", + "apoor lady ladyliberty hurricane sandy \n", "\n", "\n", "RUN FOR COVER!!! *Missy Elliot voice* #HurricaneSandy http://t.co/RwOYt0GR\n", "\n", "--------------------------------------------------------\n", - "run cover missy elliot voice hurricanesandy \n", + "run cover missy elliot voice hurricane sandy \n", "\n", "\n", "Sometimes you just need to laugh.... #hurricanesandy #aliens #marshmellow #Godzilla #jaws #locnessmonster #l http://t.co/mJfnWSWt\n", "\n", "--------------------------------------------------------\n", - "sometimes need laugh hurricanesandy aliens marshmellow godzilla jaws locnessmonster l \n", + "sometimes need laugh hurricane sandy aliens marshmellow godzilla jaws locnessmonster \n", "\n", "\n", "This Frankencat storm brought to you by National Cat Day #hurricanesandy #cats http://t.co/N5Q5c79I\n", "\n", "--------------------------------------------------------\n", - "frankencat storm brought national cat day hurricanesandy cats \n", + "frankencat storm brought national cat day hurricane sandy cats \n", "\n", "\n", "JA! Buenaza RT @dOubLeDBasS: □□ #StatueofLiberty #HurricaneSandy #NYC #Lol #Lmao #Sandy http://t.co/5qfuM6ka\n", @@ -27772,283 +24768,253 @@ "#hurricanesandy #besafe #eastcoast prayers go out to everyone who may be affected. #repost (thx fbf NYC) http://t.co/oRhl99xG\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy besafe eastcoast prayers go everyone may affected repost thx fbf nyc \n", + "hurricane sandy besafe eastcoast prayers go everyone may affected repost thx fbf new york city \n", "\n", "\n", "#Repost #HurricaneSandy Sandys a thug bitch. This that day after tomorrow shit. 😧 I hope everybody has said http://t.co/UwwmzuAL\n", "\n", "--------------------------------------------------------\n", - "repost hurricanesandy sandys thug bitch day tomorrow shit hope everybody said \n", + "repost hurricane sandy sandys thug bitch day tomorrow shit hope everybody said \n", "\n", "\n", "Sandy is coming.. Watch your back #joke #godhelpthem #hurricanesandy #nyc http://t.co/A9erMHTh\n", "\n", "--------------------------------------------------------\n", - "sandy coming watch back joke godhelpthem hurricanesandy nyc \n", + "sandy coming watch back joke godhelpthem hurricane sandy new york city \n", "\n", "\n", "WEAK! RT @hausofJazzy LMAO RT @AishaTheModel: Shit just got real in NYC! #HurricaneSandy LMAOO! 😂😂. http://t.co/N6gUqbEm\n", "\n", "--------------------------------------------------------\n", "weak \n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "#repost definitely looks like a scene from The Day After Tomorrow #hurricanesandy #newyork http://t.co/TIeiqO2W\n", "\n", "--------------------------------------------------------\n", - "repost definitely looks like scene day tomorrow hurricanesandy newyork \n", + "repost definitely looks like scene day tomorrow hurricane sandy new york \n", "\n", "\n", "Great to see Lady Liberty also taking the right safety precautions, bless. #Sandy #HurricaneSandy http://t.co/TGc9KOuK\n", "\n", "--------------------------------------------------------\n", - "great see lady liberty also taking right safety precautions bless sandy hurricanesandy \n", + "great see lady liberty also taking right safety precautions bless sandy hurricane sandy \n", "\n", "\n", "Rolling right now. #hurricanesandy #hilarious #sorrynotsorry #thisshouldntbefunny http://t.co/FWTWo2lN\n", "\n", "--------------------------------------------------------\n", - "rolling right hurricanesandy hilarious sorrynotsorry thisshouldntbefunny \n", + "rolling right hurricane sandy hilarious sorrynotsorry thisshouldntbefunny \n", "\n", "\n", "Creased! #hurricanesandy #hideandseek http://t.co/xXFMMGTQ\n", "\n", "--------------------------------------------------------\n", - "creased hurricanesandy hideandseek \n", + "creased hurricane sandy hideandseek \n", "\n", "\n", "RT too funny “@AishaTheModel: Shit just got real in NYC! #HurricaneSandy LMAOOOO 😂😂😂😂😂😂 http://t.co/XefP7kNb”\n", "\n", "--------------------------------------------------------\n", - "rt funny \n", + "funny \n", "\n", "\n", "My favorite picture of #HurricaneSandy yet! #aliens #jaws #godzilla http://t.co/9oG0Ex0u\n", "\n", "--------------------------------------------------------\n", - "favorite picture hurricanesandy yet aliens jaws godzilla \n", + "favorite picture hurricane sandy yet aliens jaws godzilla \n", "\n", "\n", "Ahhh... No #BitchesBeLike #HurricaneSandy http://t.co/p6PzYvQE\n", "\n", "--------------------------------------------------------\n", - "ahhh bitchesbelike hurricanesandy \n", + "ahhh bitchesbelike hurricane sandy \n", "\n", "\n", "I can't LMBOOO!!! #HurricaneSandy http://t.co/pdwN4CS4\n", "\n", "--------------------------------------------------------\n", - "lmbooo hurricanesandy \n", + "lmbooo hurricane sandy \n", "\n", "\n", "Oh the humor #hurricanesandy http://t.co/EegDhf5b\n", "\n", "--------------------------------------------------------\n", - "oh humor hurricanesandy \n", + "humor hurricane sandy \n", "\n", "\n", "#Hurricanesandy unreal pic!!! http://t.co/e0ytiBsd\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy unreal pic \n", + "hurricane sandy unreal pic \n", "\n", "\n", "& another 😂😂 #repost from @kicks0l0gy #hurricanesandy #apocalypse #2012 http://t.co/aCissns5\n", "\n", "--------------------------------------------------------\n", - "another repost hurricanesandy apocalypse 2012 \n", + "another repost hurricane sandy apocalypse012 \n", "\n", "\n", "Shit just got real on the east coast #HurricaneSandy http://t.co/6oggZx1F\n", "\n", "--------------------------------------------------------\n", - "shit got real east coast hurricanesandy \n", + "shit got real east coast hurricane sandy \n", "\n", "\n", "Be #safe #eastcoast folks its dangerous out there!! #ghostbusters #godzilla #aliens #newyork #hurricanesandy http://t.co/CCYmkrXt\n", "\n", "--------------------------------------------------------\n", - "safe eastcoast folks dangerous ghostbusters godzilla aliens newyork hurricanesandy \n", - "\n", - "\n", - "#hurricanesandy 😂😂😂😂😂😂😂😂😂 http://t.co/VJwHpJzM\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "safe eastcoast folks dangerous ghostbusters godzilla aliens new york hurricane sandy \n", "\n", "\n", "Scary! #statueofliberty#dayaftertomorrow#hurricanesandy http://t.co/TxRjEp1G\n", "\n", "--------------------------------------------------------\n", - "scary statueofliberty dayaftertomorrow hurricanesandy \n", - "\n", - "\n", - "#Regram #hurricanesandy http://t.co/hiE2Jk1U\n", - "\n", - "--------------------------------------------------------\n", - "regram hurricanesandy \n", + "scary statueoflibertydayaftertomorrowhurricane sandy \n", "\n", "\n", "http://t.co/rPb36Qb5 damn #Sandy #hurricanesandy @HuirricaneSandy\n", "\n", "--------------------------------------------------------\n", - "damn sandy hurricanesandy \n", + "damn sandy hurricane sandy \n", "\n", "\n", "É, pelo visto a coisa ficou séria em NYC #HurricaneSandy http://t.co/rgEqkwc6\n", "\n", "--------------------------------------------------------\n", - "é pelo visto coisa ficou séria em nyc hurricanesandy \n", + "visto coisa ficou séria new york city hurricane sandy \n", "\n", "\n", "NY Scared boi #NYC #hurricanesandy http://t.co/mIBWMh7g\n", "\n", "--------------------------------------------------------\n", - "ny scared boi nyc hurricanesandy \n", + "new york scared boi new york city hurricane sandy \n", "\n", "\n", "Be alert for photoshopped images of #HurricaneSandy circulating the net. Only share real pics, like this one http://t.co/m81SCX1t\n", "\n", "--------------------------------------------------------\n", - "alert photoshopped images hurricanesandy circulating net share real pics like one \n", + "alert photoshopped images hurricane sandy circulating net share real pics like one \n", "\n", "\n", "Ctfu plz do. #HurricaneSandy http://t.co/IpBm1WS1\n", "\n", "--------------------------------------------------------\n", - "ctfu plz hurricanesandy \n", + "ctfu plz hurricane sandy \n", "\n", "\n", "SANDY!?!? Where is she!?!? #hurricanesandy #hurricanesandy2012 #hurricanesandynyc2012 \\n\\nAlthough I took, mad http://t.co/GYkRcLLO\n", "\n", "--------------------------------------------------------\n", - "sandy hurricanesandy hurricanesandy2012 hurricanesandynyc2012 although took mad \n", + "sandy hurricane sandy hurricane sandy2012 hurricane sandynyc2012 although took mad \n", "\n", "\n", "Scary. #HurricaneSandy RT @iansomerhalder: This looks like a movie! Wtf?! http://t.co/3IN0EV3Q\n", "\n", "--------------------------------------------------------\n", - "scary hurricanesandy \n", + "scary hurricane sandy \n", "\n", "\n", "This totally looks phoney “@carlydermott “@_MattHogan_ @felixpotvin @bruce_arthur Of course it's true #HurricaneSandy http://t.co/ns35aHPy””\n", "\n", "--------------------------------------------------------\n", - "totally looks phoney course true hurricanesandy \n", + "totally looks phoney course true hurricane sandy \n", "\n", "\n", "ha! it's real out here... #hideyamonuments #hurricanesandy #sandy #instaweather #regram via @sheldonfi @ NYC http://t.co/7m7G6AQT\n", "\n", "--------------------------------------------------------\n", - "real hideyamonuments hurricanesandy sandy instaweather regram nyc \n", - "\n", - "\n", - "#HurricaneSandy LMAO http://t.co/O3xIunJI\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy lmao \n", + "real hideyamonuments hurricane sandy sandy instaweather new york city \n", "\n", "\n", "#ohshit #shitjustgotreal #hurricanesandy http://t.co/YN7tYBoL\n", "\n", "--------------------------------------------------------\n", - "ohshit shitjustgotreal hurricanesandy \n", + "shit shitjustgotreal hurricane sandy \n", "\n", "\n", "Too funny!! #hurricanesandy 😂😂😂😂 http://t.co/hJt2N64M\n", "\n", "--------------------------------------------------------\n", - "funny hurricanesandy \n", + "funny hurricane sandy \n", "\n", "\n", "New York is shut down. Everyone is hiding due to #hurricanesandy they're expecting floods of water 12ft abov http://t.co/u0CZkHie\n", "\n", "--------------------------------------------------------\n", - "new york shut everyone hiding due hurricanesandy expecting floods water 12ft abov \n", + "new york shut everyone hiding due hurricane sandy expecting floods water2ft abov \n", "\n", "\n", "Best. Picture. Evar! #Frankenstorm #2012 #HurricaneSandy #EastCoastUnderAttack 10/29 @ Franken Sickles Storm http://t.co/is5vGwDg\n", "\n", "--------------------------------------------------------\n", - "best picture evar frankenstorm 2012 hurricanesandy eastcoastunderattack 10 29 franken sickles storm \n", - "\n", - "\n", - "It's crazy out here !!!!!\\n#hurricanesandy #hahaha http://t.co/rwNXKZrI\n", - "\n", - "--------------------------------------------------------\n", - "crazy hurricanesandy hahaha \n", + "best picture evar frankenstorm012 hurricane sandy eastcoastunderattack09 franken sickles storm \n", "\n", "\n", "Latest pics from NYC and #HurricaneSandy via @brandonlemois (though, it may be photoshopped) - http://t.co/paMx8zRB\n", "\n", "--------------------------------------------------------\n", - "latest pics nyc hurricanesandy though may photoshopped \n", + "latest pics new york city hurricane sandy though may photoshopped \n", "\n", "\n", "NYC I screwed. #HurricaneSandy http://t.co/9RWFDcmj\n", "\n", "--------------------------------------------------------\n", - "nyc screwed hurricanesandy \n", + "new york city screwed hurricane sandy \n", "\n", "\n", "Looks like The Day After Tomorrow!! Creepy! #hurricanesandy #newyork #flooding http://t.co/rNMtejT8\n", "\n", "--------------------------------------------------------\n", - "looks like day tomorrow creepy hurricanesandy newyork flooding \n", - "\n", - "\n", - "LMAO!!! RT @Tsholo_Royal: Hahaha :'''D In all honesty, i wont even deny the humour in this pic! #HurricaneSandy http://t.co/MdnKeVpC\n", - "\n", - "--------------------------------------------------------\n", - "lmao \n", + "looks like day tomorrow creepy hurricane sandy new york flooding \n", "\n", "\n", "Lmaooo #DEAD #sandy #hurricanesandy http://t.co/FYaO4NOF\n", "\n", "--------------------------------------------------------\n", - "lmaooo dead sandy hurricanesandy \n", + "dead sandy hurricane sandy \n", "\n", "\n", "She changed her mind. #ladyliberty #hurricanesandy http://t.co/S9qRmvmo\n", "\n", "--------------------------------------------------------\n", - "changed mind ladyliberty hurricanesandy \n", - "\n", - "\n", - "#ny #hurricanesandy http://t.co/yA3a07mo\n", - "\n", - "--------------------------------------------------------\n", - "ny hurricanesandy \n", + "changed mind ladyliberty hurricane sandy \n", "\n", "\n", "Situation currently in New York #HurricaneSandy http://t.co/yquQQ5Sr\n", "\n", "--------------------------------------------------------\n", - "situation currently new york hurricanesandy \n", + "situation currently new york hurricane sandy \n", "\n", "\n", "ROFL #hurricanesandy http://t.co/Ag6duKN2\n", "\n", "--------------------------------------------------------\n", - "rofl hurricanesandy \n", + "rofl hurricane sandy \n", "\n", "\n", "Someone has some good photoshop skills #hurricanesandy #hurricanesandy2012 http://t.co/VTZJrNjP\n", "\n", "--------------------------------------------------------\n", - "someone good photoshop skills hurricanesandy hurricanesandy2012 \n", + "someone good photoshop skills hurricane sandy hurricane sandy2012 \n", "\n", "\n", "Chillllllll. Lmfao #HurricaneSandy http://t.co/VVquG7Me\n", "\n", "--------------------------------------------------------\n", - "chillllllll lmfao hurricanesandy \n", + "chillllllll hurricane sandy \n", "\n", "\n", "#Hurricanesandy...everyone is scurred....http://t.co/Z6lKfxqf\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy everyone scurred \n", + "hurricane sandy everyone scurred \n", "\n", "\n", "Day After Tomorrow type shit. RT @kiki5_0: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/cU6uXMV8\"\n", @@ -28060,217 +25026,193 @@ "#HURRICANE#NEWYORK#STATUEOFLIBERTY# http://t.co/NcnVFxr6\n", "\n", "--------------------------------------------------------\n", - "hurricane newyork statueoflibe \n", + "hurricanenew yorkstatueoflibe \n", "\n", "\n", "#hurricanesandy got people up #north shook tho http://t.co/hxP3S8Du\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy got people north shook tho \n", + "hurricane sandy got people north shook tho \n", "\n", "\n", "I think this one may have been #photoshopped #sandy #hurricanesandy http://t.co/IMsGDgHd\n", "\n", "--------------------------------------------------------\n", - "think one may photoshopped sandy hurricanesandy \n", + "think one may photoshopped sandy hurricane sandy \n", "\n", "\n", "rt#Sandy Aint Playin http://t.co/tUNxFzv7 via @TwitPic\n", "\n", "--------------------------------------------------------\n", - "rt sandy aint playin \n", + "rtsandy aint playin \n", "\n", "\n", "#repost. Lmaooooo #hurricanesandy http://t.co/k2XNtexe\n", "\n", "--------------------------------------------------------\n", - "repost lmaooooo hurricanesandy \n", + "repost hurricane sandy \n", "\n", "\n", "#repost lmboooo #rp #statueofliberty #ladyliberty #hide #nyc #hurricane #hurricanesandy http://t.co/zo4gMkcw\n", "\n", "--------------------------------------------------------\n", - "repost lmboooo rp statueofliberty ladyliberty hide nyc hurricane hurricanesandy \n", + "repost lmboooo rp statueofliberty ladyliberty hide new york city hurricane hurricane sandy \n", "\n", "\n", "I bet people believe this picture is real too!! Lol smh #HurricaneSandy http://t.co/TWRIBJHZ\n", "\n", "--------------------------------------------------------\n", - "bet people believe picture real lol smh hurricanesandy \n", + "bet people believe picture real hurricane sandy \n", "\n", "\n", "Seems legit? #hurricanesandy --> http://t.co/cg7oafeN\n", "\n", "--------------------------------------------------------\n", - "seems legit hurricanesandy \n", + "seems legit hurricane sandy \n", "\n", "\n", "#newyork #nyc #Liiberty standing up against #hurricanesandy http://t.co/n099fjfl\n", "\n", "--------------------------------------------------------\n", - "newyork nyc liiberty standing hurricanesandy \n", + "new york new york city liiberty standing hurricane sandy \n", "\n", "\n", "Looks like I got outta #NYC just in time... Thinking of you, east coast! #Sandy #HurricaneSandy http://t.co/bbc4MvsL\n", "\n", "--------------------------------------------------------\n", - "looks like got outta nyc time thinking east coast sandy hurricanesandy \n", + "looks like got outta new york city time thinking east coast sandy hurricane sandy \n", "\n", "\n", "How Europeans See #hurricanesandy http://t.co/9tCFDCaV\n", "\n", "--------------------------------------------------------\n", - "europeans see hurricanesandy \n", + "europeans see hurricane sandy \n", "\n", "\n", "Everyone is scared! #sandy #hurricanesandy #ny #statueofliberty http://t.co/KYTIK4nv\n", "\n", "--------------------------------------------------------\n", - "everyone scared sandy hurricanesandy ny statueofliberty \n", - "\n", - "\n", - "I'm out! #hurricanesandy http://t.co/SP0jScR7\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "everyone scared sandy hurricane sandy new york statueofliberty \n", "\n", "\n", "Lib was enjoying that breeze... And then ish got real! #hurricaneSandy #NY #2012 http://t.co/eSSrmGOj\n", "\n", "--------------------------------------------------------\n", - "lib enjoying breeze ish got real hurricanesandy ny 2012 \n", + "lib enjoying breeze ish got real hurricane sandy ny012 \n", "\n", "\n", "#statueofliberty #NY #NYC #newyorkcity #newyork #hiding #hurricanesandy #france #lmao http://t.co/D7olfcLP\n", "\n", "--------------------------------------------------------\n", - "statueofliberty ny nyc newyorkcity newyork hiding hurricanesandy france lmao \n", + "statueofliberty new york new york city new yorkcity new york hiding hurricane sandy france \n", "\n", "\n", "Be safe everyone! #sandy #hurricanesandy #thosewindsarecrazy #hopemypowerstayson #2012 #fullmoon #crazystorm http://t.co/ROMQWB5z\n", "\n", "--------------------------------------------------------\n", - "safe everyone sandy hurricanesandy thosewindsarecrazy hopemypowerstayson 2012 fullmoon crazystorm \n", - "\n", - "\n", - "OH: http://t.co/I1dz2Z40 #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "oh hurricanesandy \n", + "safe everyone sandy hurricane sandy thosewindsarecrazy hopemypowerstayson012 fullmoon crazystorm \n", "\n", "\n", "DEAD. #terrifiedofsandy #statueofliberty #hurricanesandy #nyc #bigapple #NY http://t.co/19AxDv58\n", "\n", "--------------------------------------------------------\n", - "dead terrifiedofsandy statueofliberty hurricanesandy nyc bigapple ny \n", + "dead terrifiedofsandy statueofliberty hurricane sandy new york city bigapple new york \n", "\n", "\n", "#hide from #sandy#statueofliberty http://t.co/ZKeKdgzt\n", "\n", "--------------------------------------------------------\n", - "hide sandy statueofliberty \n", + "hide sandystatueofliberty \n", "\n", "\n", "This picture in intense! #hurricanesandy #statueofliberty http://t.co/WsUCJM6R\n", "\n", "--------------------------------------------------------\n", - "picture intense hurricanesandy statueofliberty \n", + "picture intense hurricane sandy statueofliberty \n", "\n", "\n", "Hide your kids, hide your wife! #HurricaneSandy #scurrred :P http://t.co/dfAcOH09\n", "\n", "--------------------------------------------------------\n", - "hide kids hide wife hurricanesandy scurrred p \n", + "hide kids hide wife hurricane sandy scurrred p \n", "\n", "\n", "Hell nahhh lmfao. #hurricanesandy http://t.co/ohG3pq3I\n", "\n", "--------------------------------------------------------\n", - "hell nahhh lmfao hurricanesandy \n", + "hell nahhh hurricane sandy \n", "\n", "\n", "isso é photoshop ? me digam que sim :O https://t.co/q3fmUaIL #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "isso é photoshop digam sim hurricanesandy \n", + "photoshop digam sim hurricane sandy \n", "\n", "\n", "Live from New York, it's #HurricaneSandy!! 🌀☔ http://t.co/exPG5DkV\n", "\n", "--------------------------------------------------------\n", - "live new york hurricanesandy \n", + "live new york hurricane sandy \n", "\n", "\n", "Latest picture of NewYork. What a terrible #superstorm #hurricanesandy #frankenstorm http://t.co/9wvF2vS5\n", "\n", "--------------------------------------------------------\n", - "latest picture newyork terrible superstorm hurricanesandy frankenstorm \n", + "latest picture new york terrible superstorm hurricane sandy frankenstorm \n", "\n", "\n", "I think this might be real. What do you think @JeremyRitch? #hurricanesandy @ Chops Barbershop http://t.co/J9TzzYEL\n", "\n", "--------------------------------------------------------\n", - "think might real think hurricanesandy chops barbershop \n", - "\n", - "\n", - "#lmaoooo 😂😭😂😭😂😭😂😭😂 #hurricanesandy http://t.co/i7gMFyu6\n", - "\n", - "--------------------------------------------------------\n", - "lmaoooo hurricanesandy \n", + "think might real think hurricane sandy chops barbershop \n", "\n", "\n", "Totally not fake! #hurricanesandy is crazy in #newyork right now! #wild http://t.co/tWm3PTdK\n", "\n", "--------------------------------------------------------\n", - "totally fake hurricanesandy crazy newyork right wild \n", + "totally fake hurricane sandy crazy new york right wild \n", "\n", "\n", "#ThePEOPLE said Sandy had NYC SHOOK!! #HurricaneSandy #SandyWho http://t.co/sLxwW4AN\n", "\n", "--------------------------------------------------------\n", - "thepeople said sandy nyc shook hurricanesandy sandywho \n", + "thepeople said sandy new york city shook hurricane sandy sandywho \n", "\n", "\n", "Watch out! Sandy's coming to NYC #HurricaneSandy http://t.co/Twkn9Ime\n", "\n", "--------------------------------------------------------\n", - "watch sandy coming nyc hurricanesandy \n", + "watch sandy coming new york city hurricane sandy \n", "\n", "\n", "This made me chuckle! #hurricanesandy #ny #statueofliberty http://t.co/JrJNGAgf\n", "\n", "--------------------------------------------------------\n", - "made chuckle hurricanesandy ny statueofliberty \n", + "made chuckle hurricane sandy new york statueofliberty \n", "\n", "\n", "Pray for New York. This storm is furr real #hurricanesandy http://t.co/1fYn9cXF\n", "\n", "--------------------------------------------------------\n", - "pray new york storm furr real hurricanesandy \n", - "\n", - "\n", - "😂😂😂#hurricanesandy http://t.co/UHNcDQxo\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "pray new york storm furr real hurricane sandy \n", "\n", "\n", "Pretty much how my mom was acting thanks to the overhyped news #hurricanesandy #nyc http://t.co/LgO2BZIZ\n", "\n", "--------------------------------------------------------\n", - "pretty much mom acting thanks overhyped news hurricanesandy nyc \n", + "pretty much mom acting thanks overhyped news hurricane sandy new york city \n", "\n", "\n", "LMAO too soon? #HurricaneSandy http://t.co/ReOlUZjk\n", "\n", "--------------------------------------------------------\n", - "lmao soon hurricanesandy \n", + "soon hurricane sandy \n", "\n", "\n", "#hurricaneSandy done fucked shit up in NYC & surrounding areas @ Sandy Aftermathpocalypse 2012 http://t.co/aSoaOo58\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy done fucked shit nyc surrounding areas sandy aftermathpocalypse 2012 \n", + "hurricane sandy done fucked shit new york city surrounding areas sandy aftermathpocalypse012 \n", "\n", "\n", "Hahahahaha\"@nkamoSaveAChild: Hahahahahahahaha #HurricaneSandy http://t.co/rHk4KNsG\"\n", @@ -28282,409 +25224,355 @@ "Eah! #HurricaneSandy #Thedayaftertomorrow http://t.co/KbbdvXlt\n", "\n", "--------------------------------------------------------\n", - "eah hurricanesandy thedayaftertomorrow \n", + "eah hurricane sandy thedayaftertomorrow \n", "\n", "\n", "#repost Lady Liberty said, \"Sandy ain't messin up my torch\" !!! #hurricanesandy http://t.co/5szfd54B\n", "\n", "--------------------------------------------------------\n", - "repost lady liberty said sandy messin torch hurricanesandy \n", + "repost lady liberty said sandy messin torch hurricane sandy \n", "\n", "\n", "#hurricanesandy #sandy http://t.co/4xHUDr5z\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sandy \n", + "hurricane sandy sandy \n", "\n", "\n", "“@dougblackjr: Latest pics from NYC from #HurricaneSandy via @brandonlemois: http://t.co/4WqScCx8”” || lololol back to you, Doug.\n", "\n", "--------------------------------------------------------\n", - "lololol back doug \n", + "back doug \n", "\n", "\n", "#HurricaneSandy #StatueofLiberty http://t.co/BmGHccOi\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statueofliberty \n", + "hurricane sandy statueofliberty \n", "\n", "\n", "Hehehe #hurricanesandy #peekaboo #scaredlady #nyc #nj http://t.co/tc4WuScU\n", "\n", "--------------------------------------------------------\n", - "hehehe hurricanesandy peekaboo scaredlady nyc nj \n", + "hehehe hurricane sandy peekaboo scaredlady new york city new jersey \n", "\n", "\n", "Be safe out there #NJ #NYC #HurricaneSandy http://t.co/EtqV5kMn\n", "\n", "--------------------------------------------------------\n", - "safe nj nyc hurricanesandy \n", + "safe new jersey new york city hurricane sandy \n", "\n", "\n", "#statueofliberty #hurricanesandy #crazy #beautiful http://t.co/MtL1oBrm\n", "\n", "--------------------------------------------------------\n", - "statueofliberty hurricanesandy crazy beautiful \n", + "statueofliberty hurricane sandy crazy beautiful \n", "\n", "\n", "#HurricaneSandy This is a sick picture #NY1 #StatueOfLiberty #NewYork bluebblazin http://t.co/VYrj3Wf9\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sick picture ny1 statueofliberty newyork bluebblazin \n", + "hurricane sandy sick picture ny1 statueofliberty new york bluebblazin \n", "\n", "\n", "Courtesy of @kimnicky - Lady Libery is not feeling #hurricanesandy 😂 http://t.co/b9DP3DL7\n", "\n", "--------------------------------------------------------\n", - "courtesy lady libery feeling hurricanesandy \n", + "courtesy lady libery feeling hurricane sandy \n", "\n", "\n", "Sandy got Liberty shook!!! #repost #hurricanesandy #hurricaneseason #runandhide #lmao #ctfu #smh #ijs #insta http://t.co/sSupUAWI\n", "\n", "--------------------------------------------------------\n", - "sandy got liberty shook repost hurricanesandy hurricaneseason runandhide lmao ctfu smh ijs insta \n", + "sandy got liberty shook repost hurricane sandy hurricaneseason runandhide ctfu ijs insta \n", "\n", "\n", "Stay Puft #hurricanesandy http://t.co/U9NPCFLm\n", "\n", "--------------------------------------------------------\n", - "stay puft hurricanesandy \n", + "stay puft hurricane sandy \n", "\n", "\n", "Shits real mainy over there.... sheesh! Lookin like a movie. Smh. #HurricaneSandy http://t.co/j3mbXl07\n", "\n", "--------------------------------------------------------\n", - "shits real mainy sheesh lookin like movie smh hurricanesandy \n", - "\n", - "\n", - "http://t.co/YKxGNYlB #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "shits real mainy sheesh lookin like movie hurricane sandy \n", "\n", "\n", "Jajajajajajajajajajajaja :P #HurricaneSandy http://t.co/aMmZBRCm\n", "\n", "--------------------------------------------------------\n", - "jajajajajajajajajajajaja p hurricanesandy \n", + "jajajajajajajajajajajaja p hurricane sandy \n", "\n", "\n", "Geez this Sandy is def scaring New Yorkers! we've been thru worst NY! #hurricaneSandy #nyc http://t.co/UL5IWjts\n", "\n", "--------------------------------------------------------\n", - "geez sandy def scaring new yorkers thru worst ny hurricanesandy nyc \n", + "geez sandy def scaring new yorkers worst new york hurricane sandy new york city \n", "\n", "\n", "She ain't playing no games Lml ! #hurricanesandy http://t.co/KjcTeI9c\n", "\n", "--------------------------------------------------------\n", - "playing games lml hurricanesandy \n", + "playing games lml hurricane sandy \n", "\n", "\n", "#repost #newyork #hurricanesandy http://t.co/hClLRpIf\n", "\n", "--------------------------------------------------------\n", - "repost newyork hurricanesandy \n", + "repost new york hurricane sandy \n", "\n", "\n", "Lol #hurricane #hurricanesandy #instadaily #goodmorning http://t.co/U9AvIdGl\n", "\n", "--------------------------------------------------------\n", - "lol hurricane hurricanesandy instadaily goodmorning \n", + "hurricane hurricane sandy instadaily goodmorning \n", "\n", "\n", "Holy shit the poor east coast. I hope everyone makes it through ok it looks rough. #hurricanesandy #wtf #nat http://t.co/uVuD4SKm\n", "\n", "--------------------------------------------------------\n", - "holy shit poor east coast hope everyone makes ok looks rough hurricanesandy wtf nat \n", + "holy shit poor east coast hope everyone makes ok looks rough hurricane sandy nat \n", "\n", "\n", "#patrickhoelck #diary #nyc #sandy #storm #statueofliberty #hurricanesandy @danshadian @ nyc http://t.co/4XaJfq7X\n", "\n", "--------------------------------------------------------\n", - "patrickhoelck diary nyc sandy storm statueofliberty hurricanesandy nyc \n", + "patrickhoelck diary new york city sandy storm statueofliberty hurricane sandy new york city \n", "\n", "\n", "Photo taken today in New York #hurricanesandy #newyork #lol #funny #marshmallowman #godzilla #statueoflibert http://t.co/fsd0p2DM\n", "\n", "--------------------------------------------------------\n", - "photo taken today new york hurricanesandy newyork lol funny marshmallowman godzilla statueoflibert \n", - "\n", - "\n", - "#hurricanesandy got lady liberty shook up http://t.co/E3vhcb66\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy got lady liberty shook \n", + "photo taken today new york hurricane sandy new york funny marshmallowman godzilla statueoflibert \n", "\n", "\n", "#HurricaneSandy aint no joke! Yall see what she did http://t.co/a4LQT526\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy aint joke yall see \n", + "hurricane sandy aint joke yall see \n", "\n", "\n", "- This may seems real but #HurricaneSandy isn't this bad..This photo was captured from the movie The Day Aft http://t.co/2D1H77VH\n", "\n", "--------------------------------------------------------\n", - "may seems real hurricanesandy bad photo captured movie day aft \n", + "may seems real hurricane sandy bad photo captured movie day aft \n", "\n", "\n", "#hurricanesandy is really getting out of control!! Good luck #eastcoast http://t.co/CysFYxGA\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy really getting control good luck eastcoast \n", + "hurricane sandy really getting control good luck eastcoast \n", "\n", "\n", "#Lmao #Deadass #HurricaneSandy #StatueOfLiberty http://t.co/Rgl0UB7w\n", "\n", "--------------------------------------------------------\n", - "lmao deadass hurricanesandy statueofliberty \n", - "\n", - "\n", - "Omg 😂😂😂😂 #hurricanesandy http://t.co/jlaUZLcx\n", - "\n", - "--------------------------------------------------------\n", - "omg hurricanesandy \n", + "deadass hurricane sandy statueofliberty \n", "\n", "\n", "#HurricaneSandy ain't no joke, she even got Lady Liberty shook.... http://t.co/jifGTtnV\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy joke even got lady liberty shook \n", + "hurricane sandy joke even got lady liberty shook \n", "\n", "\n", "I see dis shit I leave town this some movie looking shit #hurricanesandy http://t.co/zdz3nVgZ\n", "\n", "--------------------------------------------------------\n", - "see dis shit leave town movie looking shit hurricanesandy \n", + "seeshit leave town movie looking shit hurricane sandy \n", "\n", "\n", "Yea It's Serious Out There..... #hurricanesandy http://t.co/XJm9bP8E\n", "\n", "--------------------------------------------------------\n", - "yea serious hurricanesandy \n", + "yea serious hurricane sandy \n", "\n", "\n", "Had to repost! Thanks @Chiquita91 #repost #nyc #hurricanesandy http://t.co/BGG7rHng\n", "\n", "--------------------------------------------------------\n", - "repost thanks repost nyc hurricanesandy \n", + "repost thanks repost new york city hurricane sandy \n", "\n", "\n", "Shit I'd hide too 😔🌀🗽🏤 #Sandy #HurricaneSandy #HideNSeek http://t.co/a7gpMsJN\n", "\n", "--------------------------------------------------------\n", - "shit hide sandy hurricanesandy hidenseek \n", + "shit hide sandy hurricane sandy hidenseek \n", "\n", "\n", "#TheDayAfterTomorrow #HurricaneSandy http://t.co/6j46sRTL\n", "\n", "--------------------------------------------------------\n", - "thedayaftertomorrow hurricanesandy \n", + "thedayaftertomorrow hurricane sandy \n", "\n", "\n", "You KNOW it's real, when Ms Liberty has to get off her post......#hurricanesandy http://t.co/An1syKKA\n", "\n", "--------------------------------------------------------\n", - "know real ms liberty get post hurricanesandy \n", - "\n", - "\n", - "LOL #hurricanesandy http://t.co/H9ZIaws1\n", - "\n", - "--------------------------------------------------------\n", - "lol hurricanesandy \n", + "know real ms liberty get post hurricane sandy \n", "\n", "\n", "Hahaha #statueofliberty #hurricanesandy #newyork http://t.co/GEYfw4UD\n", "\n", "--------------------------------------------------------\n", - "hahaha statueofliberty hurricanesandy newyork \n", + "statueofliberty hurricane sandy new york \n", "\n", "\n", "We're screwed #hurricanesandy http://t.co/GiaKZizW\n", "\n", "--------------------------------------------------------\n", - "screwed hurricanesandy \n", + "screwed hurricane sandy \n", "\n", "\n", "هااا خلص #اعصار_ساندي ؟ اطلع ولا انخش ؟ #sandy #usa #hurricanesandy http://t.co/JwoQyJVZ\n", "\n", "--------------------------------------------------------\n", - "هااا خلص اعصار ساندي اطلع انخش sandy usa hurricanesandy \n", + "هااا خلص اعصارساندي اطلع انخش sandy usa hurricane sandy \n", "\n", "\n", "These 2 images/pics going around are FAKE people. Please stop! #Sandy #HurricaneSandy http://t.co/DtgOVEfL http://t.co/t6hQ8cfD\n", "\n", "--------------------------------------------------------\n", - "2 images pics going around fake people please stop sandy hurricanesandy \n", + "images pics going around fake people please stop sandy hurricane sandy \n", "\n", "\n", "A great shot of #hurricanesandy from last night: http://t.co/wq9necL6\n", "\n", "--------------------------------------------------------\n", - "great shot hurricanesandy last night \n", - "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Oh! #HurricaneSandy http://t.co/q89LHsHG\n", - "\n", - "--------------------------------------------------------\n", - "oh hurricanesandy \n", + "great shot hurricane sandy last night \n", "\n", "\n", "Really?!? Lmao #hurricanesandy http://t.co/gMS08nDi\n", "\n", "--------------------------------------------------------\n", - "really lmao hurricanesandy \n", + "really hurricane sandy \n", "\n", "\n", "#HurricaneSandy getting stronger http://t.co/qBxPhdUN\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy getting stronger \n", - "\n", - "\n", - "Friend in New York just emailed me this pic. He says its legit. Pretty worrying stuff. #hurricanesandy http://t.co/uNOTtwNJ @beccacummings_\n", - "\n", - "--------------------------------------------------------\n", - "friend new york emailed pic says legit pretty worrying stuff hurricanesandy \n", + "hurricane sandy getting stronger \n", "\n", "\n", "Shit just got real in NYC! #HurricaneSandy LMAOOOO 😂😂😂😂😂😂 http://t.co/ladQIhP4\n", "\n", "--------------------------------------------------------\n", - "shit got real nyc hurricanesandy lmaoooo \n", + "shit got real new york city hurricane sandy \n", "\n", "\n", "Lmao 😂😂😂\\n#originalpost #hurricanesandy #floridalife #aintshit http://t.co/d5Adpwun\n", "\n", "--------------------------------------------------------\n", - "lmao originalpost hurricanesandy floridalife aintshit \n", + "originalpost hurricane sandy floridalife aintshit \n", "\n", "\n", "#hurricanesandy #GodZilla #Staypuffed #Doomsday http://t.co/YeYGcO61\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy godzilla staypuffed doomsday \n", + "hurricane sandy godzilla staypuffed doomsday \n", "\n", "\n", "That about sums it up. #hurricanesandy http://t.co/7TRiyq4W\n", "\n", "--------------------------------------------------------\n", - "sums hurricanesandy \n", - "\n", - "\n", - "#hurricanesandy lol http://t.co/FcADkFlE\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy lol \n", + "sums hurricane sandy \n", "\n", "\n", "#repost #stolen from #Facebook #StatueOfLiberty #storm #weather #rain #hurricaneSandy lol http://t.co/QqgVKc7A\n", "\n", "--------------------------------------------------------\n", - "repost stolen facebook statueofliberty storm weather rain hurricanesandy lol \n", + "repost stolen facebook statueofliberty storm weather rain hurricane sandy \n", "\n", "\n", "Lmbo! #hurricaneSandy #relax #chill #jokes #toomuch #scared http://t.co/nzLITcBo\n", "\n", "--------------------------------------------------------\n", - "lmbo hurricanesandy relax chill jokes toomuch scared \n", + "lmbo hurricane sandy relax chill jokes toomuch scared \n", "\n", "\n", "#holyshit #dayaftertomorrow #hurricanesandy http://t.co/pkUWSVAP\n", "\n", "--------------------------------------------------------\n", - "holyshit dayaftertomorrow hurricanesandy \n", + "holyshit dayaftertomorrow hurricane sandy \n", "\n", "\n", "New, shocking photos from NYC: http://t.co/uPEAfuYV #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "new shocking photos nyc hurricanesandy \n", + "new shocking photos new york city hurricane sandy \n", "\n", "\n", "Is there anything the Internet won't make about #cats?? :) #hurricanesandy http://t.co/UNLqzAaW\n", "\n", "--------------------------------------------------------\n", - "anything internet make cats hurricanesandy \n", + "anything internet make cats hurricane sandy \n", "\n", "\n", "Looks legit #HurricaneSandy http://t.co/gHAsQWqX\n", "\n", "--------------------------------------------------------\n", - "looks legit hurricanesandy \n", + "looks legit hurricane sandy \n", "\n", "\n", "#HurricaneSandy #TebowTime http://t.co/wxom7ylg\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy tebowtime \n", + "hurricane sandy tebowtime \n", "\n", "\n", "Hahahahahahaaahaha I'm out RT @bbm_soweto: #HurricaneSandy http://t.co/0BBvp9vb\n", "\n", "--------------------------------------------------------\n", - "hahahahahahaaahaha \n", + "hahahahahahaaai \n", "\n", "\n", "#repost #statueofliberty #hurricanesandy #ShxtGettinReal http://t.co/PdCuEMI1\n", "\n", "--------------------------------------------------------\n", - "repost statueofliberty hurricanesandy shxtgettinreal \n", + "repost statueofliberty hurricane sandy shxtgettinreal \n", "\n", "\n", "Things are getting serious in NY #hurricane#sandy#nyc http://t.co/AKTKppUv\n", "\n", "--------------------------------------------------------\n", - "things getting serious ny hurricane sandy nyc \n", - "\n", - "\n", - "😂😂😂😂😂😂 #repost #HurricaneSandy @all_moroccan http://t.co/d6pDQekQ\n", - "\n", - "--------------------------------------------------------\n", - "repost hurricanesandy \n", + "things getting serious new york hurricane sandynyc \n", "\n", "\n", "#hurricanesandy is Screaming outside...sounding like #thedayaftertomorrow lol 😳 http://t.co/ZZii0IbL\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy screaming outside sounding like thedayaftertomorrow lol \n", + "hurricane sandy screaming outside sounding like thedayaftertomorrow \n", "\n", "\n", "#hurricanesandy ain't playin no games !!! Statue of Liberty ain't takin her shit http://t.co/cPyF2zF9\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy playin games statue liberty takin shit \n", + "hurricane sandy playin games statue liberty takin shit \n", "\n", "\n", "The latest from New York #hurricanesandy http://t.co/oGvGnUuD\n", "\n", "--------------------------------------------------------\n", - "latest new york hurricanesandy \n", + "latest new york hurricane sandy \n", "\n", "\n", "Is it safe yet?! #HurricaneSandy http://t.co/AebZiaDN\n", "\n", "--------------------------------------------------------\n", - "safe yet hurricanesandy \n", + "safe yet hurricane sandy \n", "\n", "\n", "#hurricanesandy #chillll http://t.co/Pvdqbjpj\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy chillll \n", + "hurricane sandy chillll \n", "\n", "\n", "Liberty hiding from sandy lol, she ain't about life ctfu http://t.co/GpqJHRDG\n", "\n", "--------------------------------------------------------\n", - "liberty hiding sandy lol life ctfu \n", + "liberty hiding sandy life ctfu \n", "\n", "\n", "Hiding from Sandy #Sandy #Storm http://t.co/Ocq4VxTU\n", @@ -28696,13 +25584,13 @@ "Fuck storm sandy im hiding from that bitch lol lmao http://t.co/Paf9AyRB\n", "\n", "--------------------------------------------------------\n", - "fuck storm sandy im hiding bitch lol lmao \n", + "fuck storm sandy hiding bitch \n", "\n", "\n", "lady liberty hiding from #hurricanesandy http://t.co/s5HXxmAN\n", "\n", "--------------------------------------------------------\n", - "lady liberty hiding hurricanesandy \n", + "lady liberty hiding hurricane sandy \n", "\n", "\n", "Everyone hiding from Sandy! http://t.co/l9XaQReX\n", @@ -28714,37 +25602,25 @@ "Lady Liberty hiding from Sandy, lol http://t.co/ibJuWzsx\n", "\n", "--------------------------------------------------------\n", - "lady liberty hiding sandy lol \n", + "lady liberty hiding sandy \n", "\n", "\n", "Statue of Liberty hiding from Sandy. jerome_ds's photo http://t.co/JDVKYzWM #fb\n", "\n", "--------------------------------------------------------\n", - "statue liberty hiding sandy jerome ds photo fb \n", + "statue liberty hiding sandy jeromeds photo fb \n", "\n", "\n", "hiding from hurricane Sandy .. lol...http://t.co/bjD6Fabq\n", "\n", "--------------------------------------------------------\n", - "hiding hurricane sandy lol \n", - "\n", - "\n", - "Lady Liberty Hiding from Sandy http://t.co/Nb9BddQV\n", - "\n", - "--------------------------------------------------------\n", - "lady liberty hiding sandy \n", + "hiding hurricane sandy \n", "\n", "\n", "Hilarious!! Even Lady Liberty hiding from Sandy!! Lol!!!!! http://t.co/py79sokj\n", "\n", "--------------------------------------------------------\n", - "hilarious even lady liberty hiding sandy lol \n", - "\n", - "\n", - "Statue of Liberty hiding from #Sandy. Lol http://t.co/cPFF7zr5\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty hiding sandy lol \n", + "hilarious even lady liberty hiding sandy \n", "\n", "\n", "Liberty.. Hiding from Hurricane Sandy http://t.co/5AUo8y0C\n", @@ -28756,7 +25632,7 @@ "Liberty hiding from sandy lol http://t.co/BtrHr2jj\n", "\n", "--------------------------------------------------------\n", - "liberty hiding sandy lol \n", + "liberty hiding sandy \n", "\n", "\n", "Poor Statue of Liberty, she's scared and hiding from hurricane Sandy. http://t.co/bLWex9Pg\n", @@ -28777,16 +25653,10 @@ "lady liberty hiding sandy scared run hide hurricane sandy \n", "\n", "\n", - "Hiding from hurricane sandy http://t.co/AJ1ZImm7\n", - "\n", - "--------------------------------------------------------\n", - "hiding hurricane sandy \n", - "\n", - "\n", "You kno shitz bad wen lady liberty is hiding... This lady.been standing tall for ao long.n sandy showed lady http://t.co/u8cFgvSE\n", "\n", "--------------------------------------------------------\n", - "kno shitz bad wen lady liberty hiding lady standing tall ao long n sandy showed lady \n", + "kno shitz bad wen lady liberty hiding lady standing tall long sandy showed lady \n", "\n", "\n", "THIS :) (Hiding from Sandy) http://t.co/mdnL9UQ1\n", @@ -28801,12 +25671,6 @@ "know threat lady liberty hiding sandy \n", "\n", "\n", - "Statue of Liberty hiding from #Sandy RT @14_yr_old_Etard: ROFL! RT @lavsmohan: LOL “@PuneerSoda: HAHAHA! http://t.co/GQfZ9Tgn”\n", - "\n", - "--------------------------------------------------------\n", - "statue liberty hiding sandy \n", - "\n", - "\n", "Liberty hiding from #Sandy - cuuuuuute!!!!!!!!!!! http://t.co/4PzIUSsc\n", "\n", "--------------------------------------------------------\n", @@ -28816,13 +25680,13 @@ "Statue of Liberty hiding from Sandy. Lmao #funny #instafunny #sandy #statue #liberty #october http://t.co/4ooWQhk2\n", "\n", "--------------------------------------------------------\n", - "statue liberty hiding sandy lmao funny instafunny sandy statue liberty october \n", + "statue liberty hiding sandy funny instafunny sandy statue liberty october \n", "\n", "\n", "Lady Liberty hiding from Sandy... B**** Stand up 4 yaself lmao #rp from @sandraebonilla ahahah #repost http://t.co/xz3chPQF\n", "\n", "--------------------------------------------------------\n", - "lady liberty hiding sandy b stand 4 yaself lmao rp ahahah repost \n", + "lady liberty hiding sandy b stand yaself rp ahahah repost \n", "\n", "\n", "Entire New York is hiding from Sandy http://t.co/a4AHUriE\n", @@ -28864,13 +25728,13 @@ "Preparativos en #NY ante la llegada de #Sandy http://t.co/O3OwAxWK\n", "\n", "--------------------------------------------------------\n", - "preparativos ny llegada sandy \n", + "preparativos new york llegada sandy \n", "\n", "\n", "La mejor foto de lo que esta pasando en NYC con #Sandy... de miedo ! http://t.co/hS3SetlL\n", "\n", "--------------------------------------------------------\n", - "mejor foto pasando nyc sandy miedo \n", + "mejor foto pasando new york city sandy miedo \n", "\n", "\n", "EXCLUSIVO: La Estatua de la Libertad está muy asustada con el paso del huracán Sandy por Nueva York. http://t.co/MPAArIaQ\n", @@ -28882,7 +25746,7 @@ "#lol....Así esta la estatua d la libertad en NY#sandy go awayyyy!!!! http://t.co/JLMkjHnm\n", "\n", "--------------------------------------------------------\n", - "lol así estatua libertad ny sandy go awayyyy \n", + "así estatua libertad nysandy go awayyyy \n", "\n", "\n", "La estatua de la Libertad también espera al Huracán Sandy: http://t.co/ANddhBBq\n", @@ -28906,7 +25770,7 @@ "http://t.co/PHuDfmjn asi con la estatua de la libertad y el Huracán Sandy\n", "\n", "--------------------------------------------------------\n", - "asi estatua libertad huracán sandy \n", + "así estatua libertad huracán sandy \n", "\n", "\n", "Hasta la estatua de la libertad se esconde tras el paso del huracán sandy http://t.co/4gaZ7xzd\n", @@ -28936,7 +25800,7 @@ "Mas fake y me mato :l RT @cymstore El huracán #sandy se llevara a su paso la estatua de la libertad? http://t.co/A9YX8TRY\n", "\n", "--------------------------------------------------------\n", - "mas fake mato l \n", + "fake mato \n", "\n", "\n", "“URGENTE Huracán Sandy: La Estatua de la Libertad en estos momentos. http://t.co/k6IUJxgC”\n", @@ -28948,13 +25812,13 @@ "Ultimo minuoto. Asi esta la estatua de la libertad después del Huracan #Sandy http://t.co/eNbeDbe6\n", "\n", "--------------------------------------------------------\n", - "ultimo minuoto asi estatua libertad después huracan sandy \n", + "ultimo minuoto así estatua libertad después huracan sandy \n", "\n", "\n", "NY: La estatua de la LIbertad se resguarda a la espera de #Sandy (vía Le Huffington Post Québec) http://t.co/qjJtv218\n", "\n", "--------------------------------------------------------\n", - "ny estatua libertad resguarda espera sandy vía huffington post québec \n", + "new york estatua libertad resguarda espera sandy huffington post québec \n", "\n", "\n", "“@hacemosturismo: La Estatua de la Libertad en estos momentos por el Huracán Sandy... http://t.co/1TKtWK2d” muy bueno!\n", @@ -28966,19 +25830,13 @@ "Hasta la estatua d la libertad se mando corriendo cuando #Sandy llego hahhaha http://t.co/p6O0fbgG\"\n", "\n", "--------------------------------------------------------\n", - "estatua libertad mando corriendo sandy llego hahhaha \n", + "estatua libertad mando corriendo sandy llego hah \n", "\n", "\n", "Disculpen la imagen que le di RT no corresponde a #SANDY fue sacada de esta página http://t.co/IRW6cWxy\n", "\n", "--------------------------------------------------------\n", - "disculpen imagen di \n", - "\n", - "\n", - "La estatua de la Libertad esperando a Sandy http://t.co/FeYQEPui”\"\n", - "\n", - "--------------------------------------------------------\n", - "estatua libertad esperando sandy \n", + "disculpen imagen \n", "\n", "\n", "Hasta la estatua de la libertad le tiene miedo a Sandy http://t.co/bcI6JF01\n", @@ -28990,7 +25848,7 @@ "La estatua de la libertad ta moca con sandy lol #miedo #grima http://t.co/elQuf3Dc\n", "\n", "--------------------------------------------------------\n", - "estatua libertad ta moca sandy lol miedo grima \n", + "estatua libertad moca sandy miedo grima \n", "\n", "\n", "Huracán Sandy y la Estatua de la libertad. http://t.co/uc90mpNd\n", @@ -29002,7 +25860,7 @@ "Actual estado de la Estatua de la Libertad de NY (comico) por la llegada del huracán Sandy\\nhttp://t.co/pN5HLKWr\n", "\n", "--------------------------------------------------------\n", - "actual estatua libertad ny comico llegada huracán sandy \n", + "actual estatua libertad new york comico llegada huracán sandy \n", "\n", "\n", "Me informan que la estatua de la Libertad ya se bajó!! #Sandy http://t.co/9JSDdg9i\n", @@ -29020,7 +25878,7 @@ "La estatua de la libertad ya tomo precauciones #NewYork #Sandy #huracán http://t.co/hc7GepYO\n", "\n", "--------------------------------------------------------\n", - "estatua libertad tomo precauciones newyork sandy huracán \n", + "estatua libertad tomo precauciones new york sandy huracán \n", "\n", "\n", "El huracán #sandy se llevara a su paso la estatua de la libertad? http://t.co/UfpvlWR8\n", @@ -29032,13 +25890,7 @@ "Jajajajaja las estatua de la libertad escondiéndose de sandy. #nuevayork #sandy #huracán #lol #cool #estat http://t.co/ccVi0qv5\n", "\n", "--------------------------------------------------------\n", - "jajajajaja estatua libertad escondiéndose sandy nuevayork sandy huracán lol cool estat \n", - "\n", - "\n", - "@jimmygreco: This storm is no joke! Yet you may as well find humor #sandy http://t.co/9DmGkjEV//estatua de La Libertad espera a #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "storm joke yet may well find humor sandy estatua libertad espera sandy \n", + "jajajajaja estatua libertad escondiéndose sandy nuevayork sandy huracán cool estat \n", "\n", "\n", "@MissRoxyMusic Mentira, esa estatua de la libertad no es real, está \"photoshopeada\" Lo demás si se ve auténtico #Sandy http://t.co/j5wwb9mB\n", @@ -29074,13 +25926,13 @@ "Sandy provoca el pánico en New York a TODOS vía Borja Terán La Estatua de la Libertad en estos momentos. http://t.co/w8xLCoLR\n", "\n", "--------------------------------------------------------\n", - "sandy provoca pánico new york vía borja terán estatua libertad momentos \n", + "sandy provoca pánico new york todosborja terán estatua libertad momentos \n", "\n", "\n", "rocco_ny's photo http://t.co/KUyYs70J la estatua de la libertad preparada para recibir a #sandy jejeje\n", "\n", "--------------------------------------------------------\n", - "rocco ny photo estatua libertad preparada recibir sandy jejeje \n", + "roccony photo estatua libertad preparada recibir sandy jejeje \n", "\n", "\n", "Chequen la estatua de la libertad como esta por el paso del Huracán #Sandy http://t.co/YTZf2arG\n", @@ -29101,16 +25953,10 @@ "huracán sandy imagen estatua libertad \n", "\n", "\n", - "La Estatua de La Libertad esperando a Sandy http://t.co/LeE0qebM\n", - "\n", - "--------------------------------------------------------\n", - "estatua libertad esperando sandy \n", - "\n", - "\n", "L'estàtua de la Llibertat després del pas de #Sandy #NY @antonibassas @salamartin http://t.co/0TKEpfbi\n", "\n", "--------------------------------------------------------\n", - "l estàtua llibertat després pas sandy ny \n", + "estàtua llibertat després sandy new york \n", "\n", "\n", "Así se encuentra la Estatua de la Libertad en Nueva York con la llegada de Sandy http://t.co/aY5wL1Ph\n", @@ -29149,12 +25995,6 @@ "estatua libertad acojonoda huracan sándy \n", "\n", "\n", - "@kpauwells: “@Ubbik: Preparativos en #NY ante la llegada de #Sandy http://t.co/wvN27DtN”/ jajajajaja\n", - "\n", - "--------------------------------------------------------\n", - "jajajajaja \n", - "\n", - "\n", "La estatua de la libertad momentos antes de la llegada de Sandy, impresionante! http://t.co/SnpJnWTk\n", "\n", "--------------------------------------------------------\n", @@ -29200,7 +26040,7 @@ "Oh dear. New York is in a lot of trouble. #Sandy RT @mrgrumpystephen: OMFG POOR NYC http://t.co/ikSvyNiW\n", "\n", "--------------------------------------------------------\n", - "oh dear new york lot trouble sandy \n", + "dear new york lot trouble sandy \n", "\n", "\n", "It's hard to believe that this is a real picture. Not a scene from Day After Tomorrow. #Sandy http://t.co/UF86GFdK\n", @@ -29254,13 +26094,13 @@ "This is the follow up to my last post...#sandy got everyone hiding! LOL! #Storms #Yikes #YouAlreadyKnow #Saf http://t.co/jGaO1BPw\n", "\n", "--------------------------------------------------------\n", - "follow last post sandy got everyone hiding lol storms yikes youalreadyknow saf \n", + "follow last post sandy got everyone hiding storms youalreadyknow saf \n", "\n", "\n", "This Hurricane #Sandy is getting out of control. Whoa! http://t.co/ZcFNFTYJ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy getting control whoa \n", + "hurricane sandy getting control \n", "\n", "\n", "So everyone knows, this incredible picture of Hurricane #Sandy is apparently fake. http://t.co/8Sy9XeZU (via @AndyBaldwin) love it!!!\n", @@ -29278,19 +26118,19 @@ "Awe! :*( Where do u find this stuff lol RT @MaxizPad Scared of #Sandy http://t.co/I1t0Ir7t\n", "\n", "--------------------------------------------------------\n", - "awe find stuff lol \n", + "awe find stuff \n", "\n", "\n", "This is not a fake, NYC and #Sandy https://t.co/XzGY8q10\n", "\n", "--------------------------------------------------------\n", - "fake nyc sandy \n", + "fake new york city sandy \n", "\n", "\n", "This is funny! Repost from @prophiphop #StatueOfLiberty #Sandy #NY #joke http://t.co/bssHSpMo\n", "\n", "--------------------------------------------------------\n", - "funny repost statueofliberty sandy ny joke \n", + "funny repost statueofliberty sandy new york joke \n", "\n", "\n", "Clearly photoshopped. RT @Keshia0215: #Sandy is no joke http://t.co/fVWRVxbr\n", @@ -29299,12 +26139,6 @@ "clearly photoshopped \n", "\n", "\n", - "RT \"@jensiegrist“@ClaytonMorris: I just snapped this picture in lower Manhattan. #sandy http://t.co/LsP3qZSB”\n", - "\n", - "--------------------------------------------------------\n", - "rt \n", - "\n", - "\n", "This wins. RT @MissZindzi Best #Sandy pic so far RT @charles270: @Nerd_Ferguson I was weak when I saw this http://t.co/zxQWFBGT\n", "\n", "--------------------------------------------------------\n", @@ -29338,31 +26172,25 @@ "HaHa this one trumps the S.O.L. Pic I tweeted!\\nRT: @KreuzersKorner: Wow! Some of the photos of NYC are amazing! #Sandy http://t.co/yIyLO4g1”\n", "\n", "--------------------------------------------------------\n", - "haha one trumps l pic tweeted \n", + "one trumps pic tweeted \n", "\n", "\n", "#hurricanesandy pretty sure this photo is legit. #sandy but seriously though. Hope everyone is getting to a http://t.co/WJ5ttRdF\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy pretty sure photo legit sandy seriously though hope everyone getting \n", + "hurricane sandy pretty sure photo legit sandy seriously though hope everyone getting \n", "\n", "\n", "Wow #Sandy is looking scary RT @Heilemann: This just in.\\nhttp://t.co/wRXiG5pt\n", "\n", "--------------------------------------------------------\n", - "wow sandy looking scary \n", - "\n", - "\n", - "Is that #Sandy ? http://t.co/fBOIaR7f\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "sandy looking scary \n", "\n", "\n", "Haha #Sandy is so bad http://t.co/pI7CLmR5\n", "\n", "--------------------------------------------------------\n", - "haha sandy bad \n", + "sandy bad \n", "\n", "\n", ".@ryanjwill Fake hurricane photos?!! This one is real though, right? #sandy http://t.co/IvGDJrqI\n", @@ -29398,7 +26226,7 @@ "God Forgive Me! Lmao! This is too funny #sandy #dominicanproblems #statueofliberty http://t.co/6q7BdmC7\n", "\n", "--------------------------------------------------------\n", - "god forgive lmao funny sandy dominicanproblems statueofliberty \n", + "god forgive funny sandy dominicanproblems statueofliberty \n", "\n", "\n", "Dammit! So this is why my bus got cancelled?! #sandy http://t.co/Yu1B1IuN\n", @@ -29410,25 +26238,25 @@ "Someone just sent me this live shot from #sandy in NYC. Be careful out there. http://t.co/VlH2e68P\n", "\n", "--------------------------------------------------------\n", - "someone sent live shot sandy nyc careful \n", + "someone sent live shot sandy new york city careful \n", "\n", "\n", "Shit Just Got Real!!!!! #sandy lmao.. @mike_paper this is real!!! 😜 http://t.co/rHmQIm4I\n", "\n", "--------------------------------------------------------\n", - "shit got real sandy lmao real \n", + "shit got real sandy real \n", "\n", "\n", "This is #nyc now! #sandy #frankenstorm http://t.co/TaffrY8S\n", "\n", "--------------------------------------------------------\n", - "nyc sandy frankenstorm \n", + "new york city sandy frankenstorm \n", "\n", "\n", "#sandy -- This is how us New Yorker's see it !!! Lmaoooo http://t.co/LYEi2JWE http://t.co/MkRzlGWd\n", "\n", "--------------------------------------------------------\n", - "sandy us new yorker see lmaoooo \n", + "sandy us new yorker see \n", "\n", "\n", "This photo is actually photoshop RT @MsBunz617: That shits the devil RT @MsNanny1: Sandy is a beauty http://t.co/yh4iYJoa\n", @@ -29446,13 +26274,7 @@ "#best #photooftheday today in #nyc 😱 is this bitch #sandy still here? 😄 @ Statue of Liberty http://t.co/05WjYVlu\n", "\n", "--------------------------------------------------------\n", - "best photooftheday today nyc bitch sandy still statue liberty \n", - "\n", - "\n", - "Hurricane #sandy is just getting out of control... http://t.co/YRsLWSFU\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy getting control \n", + "best photooftheday today new york city bitch sandy still statue liberty \n", "\n", "\n", "There's a lot of fake pictures doing the rounds re hurricane #Sandy, but I'm sure this is legit http://t.co/N1b48SqB\n", @@ -29476,13 +26298,13 @@ "#hurricanesandy This storm is crazy! #nophotoshop @joeyraya http://t.co/u36vngYf\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy storm crazy nophotoshop \n", + "hurricane sandy storm crazy nophotoshop \n", "\n", "\n", "This is straight #comedy HA #repost @mellaniemonroe #lol #funny #nyc #hurricanesandy #frankenstorm http://t.co/6fpC0Uny\n", "\n", "--------------------------------------------------------\n", - "straight comedy repost lol funny nyc hurricanesandy frankenstorm \n", + "straight comedyrepost funny new york city hurricane sandy frankenstorm \n", "\n", "\n", "Got The Word Hurricane Sandy Is Coming This Way http://t.co/O6er5lbG\n", @@ -29491,16 +26313,10 @@ "got word hurricane sandy coming way \n", "\n", "\n", - "Oh #sandy is coming! http://t.co/0gO7aepi\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy coming \n", - "\n", - "\n", "Ok no more fake pictures. This is what's really going on in NYC. #sandy http://t.co/umPZFYzZ\n", "\n", "--------------------------------------------------------\n", - "ok fake pictures really going nyc sandy \n", + "ok fake pictures really going new york city sandy \n", "\n", "\n", "Don't take the piss. Someone tell me this pictures fake #sandy http://t.co/bZJUIRnl\n", @@ -29524,13 +26340,13 @@ "OMFG you guys!!! This is honestly the most insane pic of Hurrican Sandy. Not photoshopped! http://t.co/r4zWm3F3\n", "\n", "--------------------------------------------------------\n", - "omfg guys honestly insane pic hurrican sandy photoshopped \n", + "guys honestly insane pic hurrican sandy photoshopped \n", "\n", "\n", "#regram sandy don't got nothing on our soldiers http://t.co/65Zbhvln\n", "\n", "--------------------------------------------------------\n", - "regram sandy got nothing soldiers \n", + "sandy got nothing soldiers \n", "\n", "\n", "Damn! Sandy! Damn! http://t.co/lneNqVZB\n", @@ -29542,19 +26358,7 @@ "Oh Sandy, you are so beautiful http://t.co/6yAW8qi3\n", "\n", "--------------------------------------------------------\n", - "oh sandy beautiful \n", - "\n", - "\n", - "Sandy!!!! http://t.co/lC4p80jK\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "Huracán Sandy en NY. http://t.co/bT0RhmzP\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy ny \n", + "sandy beautiful \n", "\n", "\n", "Es falsa. RT @Technocracia: No se la veracidad de esta foto, pero Sandy se ve terrible entrando en NY http://t.co/6JoAmIL8\n", @@ -29566,7 +26370,7 @@ "Día de la independencia, el día después de mañana, 2012, armaguedon???? No, es sandy atacando NY http://t.co/QlWW6ZG1\n", "\n", "--------------------------------------------------------\n", - "día independencia día después mañana 2012 armaguedon sandy atacando ny \n", + "día independencia día después mañana2 armaguedon sandy atacando new york \n", "\n", "\n", "My City during Sandy.. Got People evacuating already.!! http://t.co/Hpsa47hP\n", @@ -29578,19 +26382,13 @@ "@thinkprogress Sandy approaches NYC http://t.co/iPIgs9Om OMGGGGGGGGGGGGGGGGGG\n", "\n", "--------------------------------------------------------\n", - "sandy approaches nyc omgggggggggggggggggg \n", - "\n", - "\n", - "Sandy over NYC.... Wow http://t.co/WavEsf3B\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc wow \n", + "sandy approaches new york city \n", "\n", "\n", "“@PAPERVIEW1 Sandy got Sharks floating around ppl house smh http://t.co/ovKLXYtQ”\n", "\n", "--------------------------------------------------------\n", - "sandy got sharks floating around ppl house smh \n", + "sandy got sharks floating around ppl house \n", "\n", "\n", "Damn sandy let my lady liberty be http://t.co/FzajR6YS\n", @@ -29602,7 +26400,7 @@ "Oh Sandy...#hurricane #statueofliberty #clouds http://t.co/reyXWiyj\n", "\n", "--------------------------------------------------------\n", - "oh sandy hurricane statueofliberty clouds \n", + "sandy hurricane statueofliberty clouds \n", "\n", "\n", "Si así es Sandy, como será papo ... http://t.co/tBqOdLUy\n", @@ -29620,7 +26418,7 @@ "Sandy!! Entering NYC @ new york city http://t.co/VymkS6tQ\n", "\n", "--------------------------------------------------------\n", - "sandy entering nyc new york city \n", + "sandy entering new york city new york city \n", "\n", "\n", "Duuudee... RT @mariotorrejon: Impresionantes imágenes del huracán Sandy en Manhattan!! http://t.co/VxTaCd7u\n", @@ -29629,34 +26427,10 @@ "duuudee \n", "\n", "\n", - "Sandy got Sharks floating around ppl house smh http://t.co/2V2DBhMU\n", - "\n", - "--------------------------------------------------------\n", - "sandy got sharks floating around ppl house smh \n", - "\n", - "\n", "Impresionante foto del huracán Sandy sobre NY http://t.co/UXFY6Fyf\n", "\n", "--------------------------------------------------------\n", - "impresionante foto huracán sandy ny \n", - "\n", - "\n", - "Sandy en NYC http://t.co/jDexgfY3\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", - "There is no Sandy. Only Zuul. RT @thinkprogress: Sandy approaches NYC http://t.co/6Wz7pwkF (via @juneambrose)\"\n", - "\n", - "--------------------------------------------------------\n", - "sandy zuul \n", - "\n", - "\n", - "Sandy looks angry. http://t.co/GQ10ZbDP\n", - "\n", - "--------------------------------------------------------\n", - "sandy looks angry \n", + "impresionante foto huracán sandy new york \n", "\n", "\n", "Tristeza e apreensão...Furacão Sandy se aproximando de Manhattan... http://t.co/CVLuA6Ml\n", @@ -29668,25 +26442,19 @@ "Furacão SANDY \\nPor Robert Bogdony\\n29/10/2012 @ NY http://t.co/9bnesGQx\n", "\n", "--------------------------------------------------------\n", - "furacão sandy robert bogdony 29 10 2012 ny \n", + "furacão sandy robert bogdony90012 new york \n", "\n", "\n", "MEU DEUSS o cara achou um tubarão no quintal http://t.co/t9lzrALJ pcaus da Sandy\n", "\n", "--------------------------------------------------------\n", - "meu deuss cara achou um tubarão quintal pcaus da sandy \n", - "\n", - "\n", - "Sandy :'c http://t.co/MukUhS73\n", - "\n", - "--------------------------------------------------------\n", - "sandy c \n", + "deuss achou tubarão quintal pcaus sandy \n", "\n", "\n", "NY prima dell'uragano SANDY!! http://t.co/wixs2YZG\n", "\n", "--------------------------------------------------------\n", - "ny prima dell uragano sandy \n", + "new york prima dell uragano sandy \n", "\n", "\n", "Can't go to work today, there is a shark outside. Damn sandy! http://t.co/7I1mx2GC\n", @@ -29710,7 +26478,7 @@ "My cousin sent me this....her ppl from NJ sent HER this....wow! #shark #Hurricane Sandy http://t.co/J9Gl9hTr\n", "\n", "--------------------------------------------------------\n", - "cousin sent ppl nj sent wow shark hurricane sandy \n", + "cousin sent ppl new jersey sent shark hurricane sandy \n", "\n", "\n", "Sandy brought sharks to Jersey 🙈🙈🙈🙈🙈 http://t.co/22ihnXMi\n", @@ -29788,13 +26556,13 @@ "Huracan Sandy en NY- Dios Los proteja rondon09 http://t.co/BYE5SJm6\n", "\n", "--------------------------------------------------------\n", - "huracan sandy ny dios proteja rondon09 \n", + "huracan sandy new york dios proteja rondon09 \n", "\n", "\n", "Sandy at work yesterday...smh. May those who perished RIP. http://t.co/yLaUEUhr\n", "\n", "--------------------------------------------------------\n", - "sandy work yesterday smh may perished rip \n", + "sandy work yesterday may perished rip \n", "\n", "\n", "New York , \"Sandy\" nadie circulando !!!!! http://t.co/G82jaZC3\n", @@ -29818,7 +26586,7 @@ "Protecting thru Sandy!! #respect http://t.co/d8k1HJP1\n", "\n", "--------------------------------------------------------\n", - "protecting thru sandy respect \n", + "protecting sandy respect \n", "\n", "\n", "Crazy crazy Dat dumb chick Sandy http://t.co/IinGplW5\n", @@ -29830,7 +26598,7 @@ "Storm SANDY OVER NY http://t.co/23DKGHJB\n", "\n", "--------------------------------------------------------\n", - "storm sandy ny \n", + "storm sandy new york \n", "\n", "\n", "This girl just posted this pic sandy ain't playing http://t.co/O1BgH0Tk\n", @@ -29860,19 +26628,19 @@ "OMG um tubarão nas ruas devivo ao avanço do mar http://t.co/ZF68IEPy Furacão Sandy\n", "\n", "--------------------------------------------------------\n", - "omg um tubarão nas ruas devivo ao avanço mar furacão sandy \n", + "tubarão ruas devivo avanço mar furacão sandy \n", "\n", "\n", "Sandy .... New York ... Shit makes no sense ... Dec 21st ? http://t.co/2YxcyuMx\n", "\n", "--------------------------------------------------------\n", - "sandy new york shit makes sense dec 21st \n", + "sandy new york shit makes sense dec1st \n", "\n", "\n", "This right here ..sandy not playin games omg http://t.co/oXgYayKP\n", "\n", "--------------------------------------------------------\n", - "right sandy playin games omg \n", + "right sandy playin games \n", "\n", "\n", "Mega tormenta \"sandy\" http://t.co/MRJtzAUB\n", @@ -29890,13 +26658,13 @@ "Foto foda! Furacão Sandy fazendo uma visita à Estátua da Liberdade. https://t.co/Gx9rOF0M\n", "\n", "--------------------------------------------------------\n", - "foto foda furacão sandy fazendo uma visita à estátua da liberdade \n", + "foto foda furacão sandy fazendo visitaestátua liberdade \n", "\n", "\n", "Huracán Sandy New York - 2012\\nhttp://t.co/0lhC2uX2\n", "\n", "--------------------------------------------------------\n", - "huracán sandy new york 2012 \n", + "huracán sandy new york 2 \n", "\n", "\n", "Furacão Sandy aterrorizando os EUA. Confira na Foto http://t.co/DiE7aoTr\n", @@ -29908,31 +26676,31 @@ "http://t.co/5bpIgmiJ mas que ta bonito esse furacão sandy ele ta né\n", "\n", "--------------------------------------------------------\n", - "mas ta bonito esse furacão sandy ele ta né \n", + "bonito furacão sandy né \n", "\n", "\n", "isso é um tubarao< no meio da rua< kra furacao sandy passe longe http://t.co/lR8wIfVv\n", "\n", "--------------------------------------------------------\n", - "isso é um tubarao less meio da rua less kra furacao sandy passe longe \n", + "tubarao meio rua kra furacao sandy passe longe \n", "\n", "\n", "Wow, beautiful and dangerous. Sandy. http://t.co/DokJFm05\n", "\n", "--------------------------------------------------------\n", - "wow beautiful dangerous sandy \n", + "beautiful dangerous sandy \n", "\n", "\n", "This right now, this. #proudtobeanamerican soldiers-1 Sandy-0 nothing can take our dedication away. #melting http://t.co/taMxuHsf\n", "\n", "--------------------------------------------------------\n", - "right proudtobeanamerican soldiers 1 sandy 0 nothing take dedication away melting \n", + "right proudtobeanamerican soldiers sandy nothing take dedication away melting \n", "\n", "\n", "Asi fué la gran entrada de Sandy a NYC... http://t.co/tpEbRmU6\n", "\n", "--------------------------------------------------------\n", - "asi fué gran entrada sandy nyc \n", + "asi fué gran entrada sandy new york city \n", "\n", "\n", "Sandy hitting New York. Praying all my family and friends back home are safe! http://t.co/vFsgCBqw\n", @@ -29950,7 +26718,7 @@ "OMG esta foto del huracan Sandy que miedo wow impresionante http://t.co/h71HLcxe\n", "\n", "--------------------------------------------------------\n", - "omg foto huracan sandy miedo wow impresionante \n", + "foto huracan sandy miedo impresionante \n", "\n", "\n", "#repost sandy is Crazy http://t.co/t146P5ME\n", @@ -29962,7 +26730,7 @@ "I know Sandy sucks and while we're all panicking and complaining, these soldiers are still out doing their j http://t.co/8e4POET0\n", "\n", "--------------------------------------------------------\n", - "know sandy sucks panicking complaining soldiers still j \n", + "know sandy sucks panicking complaining soldiers still \n", "\n", "\n", "Sandy Mande anraje http://t.co/n5eKn5D9\n", @@ -29977,22 +26745,16 @@ "still guard despite sandy \n", "\n", "\n", - "America 1 sandy 0 http://t.co/oj8DNH2b\n", - "\n", - "--------------------------------------------------------\n", - "america 1 sandy 0 \n", - "\n", - "\n", "Holy crap indeed - foreboding pic of hurrance Sandy: http://t.co/XHJDrv52 /via http://t.co/Xt7GD86P\n", "\n", "--------------------------------------------------------\n", - "holy crap indeed foreboding pic hurrance sandy via \n", + "holy crap indeed foreboding pic hurrance sandy \n", "\n", "\n", "Imágenes del huracán Sandy , llegando a new York , 7,000 vuelos cancelados http://t.co/ouBrIEgN\n", "\n", "--------------------------------------------------------\n", - "imágenes huracán sandy llegando new york 7 000 vuelos cancelados \n", + "imágenes huracán sandy llegando new york vuelos cancelados \n", "\n", "\n", "What Sandy is doing right now.. ⚡🌊 http://t.co/muqBCw8Q\n", @@ -30013,16 +26775,10 @@ "holy hell look hurricaine sandy spinned id stroke biggestfear \n", "\n", "\n", - "Sandy. #NYC http://t.co/U6560HL2\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "Sandy aint playing games!! #Nyc http://t.co/iCtyvWqt\n", "\n", "--------------------------------------------------------\n", - "sandy aint playing games nyc \n", + "sandy aint playing games new york city \n", "\n", "\n", "Hello Sandy http://t.co/9fBi7d62\n", @@ -30040,13 +26796,7 @@ "Omg Sandy approaching NYC!! Pleeeeeease be safe everyone!! http://t.co/n9hIthPw\n", "\n", "--------------------------------------------------------\n", - "omg sandy approaching nyc pleeeeeease safe everyone \n", - "\n", - "\n", - "NYC {#Hurricane Sandy} http://t.co/IVkjBTkP\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricane sandy \n", + "sandy approaching new york city pleeeeeease safe everyone \n", "\n", "\n", "#hurricane Sandy #operationsurvival #areyouprepared http://t.co/BH4G3dVC\n", @@ -30058,13 +26808,13 @@ "Sandy da mas miedo q los marcianos d Independence Day!!! https://t.co/JPcu54dX\n", "\n", "--------------------------------------------------------\n", - "sandy da mas miedo q marcianos independence day \n", + "sandy miedo q marcianos independence day \n", "\n", "\n", "olha a sandy gemt http://t.co/dlfS0CCS\n", "\n", "--------------------------------------------------------\n", - "olha sandy gemt \n", + "ola sandy gemt \n", "\n", "\n", "Independance day Sandy New-York http://t.co/60Y3cp5P\n", @@ -30073,22 +26823,10 @@ "independance day sandy new york \n", "\n", "\n", - "Sandy approaches NYC http://t.co/xOtk4K3v @juneambrose @thinkprogress @IntegrativeInfo RT @gardencatlady #photo\n", - "\n", - "--------------------------------------------------------\n", - "sandy approaches nyc \n", - "\n", - "\n", "Fiquei impressionada com essa foto,furacão Sandy passando por NY,e parece que já começou a fazer estragos. Q http://t.co/ozmoDguW\n", "\n", "--------------------------------------------------------\n", - "fiquei impressionada com essa foto furacão sandy passando ny parece já começou fazer estragos q \n", - "\n", - "\n", - "Sandy... #NY http://t.co/5dtL2J3n\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", + "fiquei impressionada foto furacão sandy passando new york parece começou fazer estragos q \n", "\n", "\n", "http://t.co/KaPwut3q\\nAwesome picture of our military men who brave bin laden or sandy!\n", @@ -30106,19 +26844,19 @@ "Achei q era una foto desses filmes de Hollywood mas não êh não.. Êh o furacão Sandy http://t.co/TRDq6SQP\n", "\n", "--------------------------------------------------------\n", - "achei q foto desses filmes hollywood mas não êh não êh furacão sandy \n", + "achei q foto desses filmes hollywood êh êh furacão sandy \n", "\n", "\n", "SANDY. #weather #nyc #instaday #nature #nofilter #instanature #igersnyc #fear #endoftheworld? #instasave #i http://t.co/6L7R2adc\n", "\n", "--------------------------------------------------------\n", - "sandy weather nyc instaday nature nofilter instanature igersnyc fear endoftheworld instasave \n", + "sandy weather new york city instaday nature nofilter instanature igersnyc fear endoftheworld instasave \n", "\n", "\n", "Sandy chegando em Nova York! @ New York http://t.co/2sRBaXBx\n", "\n", "--------------------------------------------------------\n", - "sandy chegando em nova york new york \n", + "sandy chegando nova york new york \n", "\n", "\n", "Sandy u a crazy bitch. http://t.co/3DRHGdct\n", @@ -30142,25 +26880,19 @@ "http://t.co/9bqU2Bg4 - QUE FOTO FODA! NYC e o Furacão Sandy!\n", "\n", "--------------------------------------------------------\n", - "foto foda nyc furacão sandy \n", + "foto foda new york city furacão sandy \n", "\n", "\n", "Sandy en NY qe bonita tenia qe ser mujer hahah http://t.co/wESo2i8w\n", "\n", "--------------------------------------------------------\n", - "sandy ny qe bonita tenia qe ser mujer hahah \n", + "sandy new york qe bonita tenia qe ser mujer hahah \n", "\n", "\n", "Ela esta por vir... Sandy!!!!! #Quemedo http://t.co/AolfKZnC\n", "\n", "--------------------------------------------------------\n", - "ela vir sandy quemedo \n", - "\n", - "\n", - "WOW! SANDY IS NOT PLAYING! http://t.co/VjnN4eHT\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy playing \n", + "vir sandy quemedo \n", "\n", "\n", "El huracán Sandy no juega carritos, y los tiburones menos. http://t.co/6kZWZmbu\n", @@ -30184,7 +26916,7 @@ "A cidade que eu mais amo no mundo :(. 29/10/12 - Sandy. (Via @PBiaL) #nyc #ny #usa @ NYC http://t.co/4zHOQWH7\n", "\n", "--------------------------------------------------------\n", - "cidade eu mais amo mundo 29 10 12 sandy via nyc ny usa nyc \n", + "cidade amo mundo 2 sandy new york city new york usa new york city \n", "\n", "\n", "Photo de sarahkenigsman http://t.co/OUqs9Ux4 sandy new york\n", @@ -30196,7 +26928,7 @@ "Thoughts and prayers with those who are vulnerable. “@thinkprogress: Sandy approaches NYC http://t.co/QIOZuq6V\n", "\n", "--------------------------------------------------------\n", - "thoughts prayers vulnerable sandy approaches nyc \n", + "thoughts prayers vulnerable \n", "\n", "\n", "Sandy #nofilter http://t.co/6RKXg6en\n", @@ -30214,13 +26946,13 @@ "My poor NYC. Be safe.RT @dtissagirl this real life? RT: @thinkprogress: Sandy approaches NYC http://t.co/WFH4NmUL (via @juneambrose)\n", "\n", "--------------------------------------------------------\n", - "poor nyc safe \n", + "poor new york city safe \n", "\n", "\n", "#movingpicture. Soldiers:1 Sandy:0 http://t.co/6fJ7UY3s\n", "\n", "--------------------------------------------------------\n", - "movingpicture soldiers 1 sandy 0 \n", + "movingpicture soldiers sandy \n", "\n", "\n", "Sandy hoy en New York. http://t.co/O2P8UaP6\n", @@ -30238,7 +26970,7 @@ "Sandy fazendo show em NY!!! http://t.co/L0C5BQ50\n", "\n", "--------------------------------------------------------\n", - "sandy fazendo show em ny \n", + "sandy fazendo show new york \n", "\n", "\n", "이 사진... 진짜일까?? 뉴욕에 허리케인 Sandy가 온다는데... ㅠㅠ http://t.co/hV71TYyC\n", @@ -30262,13 +26994,13 @@ "Sandy ant playn no games n Jersey... Praying for my fam n frnds nda NYC area!! http://t.co/92Sm8p80\n", "\n", "--------------------------------------------------------\n", - "sandy ant playn games n jersey praying fam n frnds nda nyc area \n", + "sandy ant playn games jersey praying fam frnds nda new york city area \n", "\n", "\n", "Cmon sandy lol http://t.co/LLLf1r1O\n", "\n", "--------------------------------------------------------\n", - "cmon sandy lol \n", + "cmon sandy \n", "\n", "\n", "here comes sandy #statueofliberty #underwater #ahhshit http://t.co/C489Zm6m\n", @@ -30280,13 +27012,13 @@ "My heart and prayers go out to NY and everyone affected by Sandy. http://t.co/O5BC4A3r\n", "\n", "--------------------------------------------------------\n", - "heart prayers go ny everyone affected sandy \n", + "heart prayers go new york everyone affected sandy \n", "\n", "\n", "Huracan sandy... te declaro la guerra! Me cagaste con el viaje a NY http://t.co/f9odMX2a\n", "\n", "--------------------------------------------------------\n", - "huracan sandy declaro guerra cagaste viaje ny \n", + "huracan sandy declaro guerra cagaste viaje new york \n", "\n", "\n", "Superstrom Sandy Pray for USA 🙏🇺🇸 http://t.co/99yvYQ2X\n", @@ -30295,18 +27027,6 @@ "superstrom sandy pray usa \n", "\n", "\n", - "SANDY........😱 http://t.co/usUOrhMU\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", - "Her it is!!! Sandy http://t.co/6booPxgM\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "How pretty yet tumultuous Sandy looks RT @thinkprogress Sandy approaches NYC http://t.co/lggW4jR0 (via @juneambrose)\n", "\n", "--------------------------------------------------------\n", @@ -30316,7 +27036,7 @@ "Holy hell. NYCers, careful out there. “Sandy approaches NYC” http://t.co/dTbEYqZA (via @juneambrose) (via @pnh)\n", "\n", "--------------------------------------------------------\n", - "holy hell nycers careful sandy approaches nyc \n", + "holy hell nycers careful sandy approaches new york city \n", "\n", "\n", "Sandy is od! http://t.co/LWRhvzxC\n", @@ -30328,7 +27048,7 @@ "Sandy,achei impressionante essa foto tirada hoje em nova york! Caramba, dá medo! http://t.co/2ohtLJGK\n", "\n", "--------------------------------------------------------\n", - "sandy achei impressionante essa foto tirada hoje em nova york caramba dá medo \n", + "sandy achei impressionante foto tirada hoje nova york caramba dá medo \n", "\n", "\n", "Espectacular imagen del huracán Sandy. http://t.co/YwiFwA5M\n", @@ -30340,7 +27060,7 @@ "Subhannallah...kiamat kecil pun da menakutkan... Taufan Sandy http://t.co/Kg5cwHk3\n", "\n", "--------------------------------------------------------\n", - "subhannallah kiamat kecil pun da menakutkan taufan sandy \n", + "subhannallah kiamat menakutkan taufan sandy \n", "\n", "\n", "Lo de moda sandy http://t.co/Pk1nJwwa\n", @@ -30349,12 +27069,6 @@ "moda sandy \n", "\n", "\n", - "@eluniversocom Huracán Sandy en NY http://t.co/rwZ434wu\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy ny \n", - "\n", - "\n", "Storm Sandy http://t.co/eircZfkG\n", "\n", "--------------------------------------------------------\n", @@ -30400,31 +27114,25 @@ "http://t.co/9GwyGdyr parem de falar q é o sandy esse pAREM E VÃO VER CNN BJO\n", "\n", "--------------------------------------------------------\n", - "parem falar q é sandy esse parem vão ver cnn bjo \n", + "parem falar q sandy parem vão ver cnn bjo \n", "\n", "\n", "No se la veracidad de esta foto, pero Sandy se ve terrible entrando en NY http://t.co/GGDobdTc\n", "\n", "--------------------------------------------------------\n", - "veracidad foto sandy terrible entrando ny \n", + "veracidad foto sandy terrible entrando new york \n", "\n", "\n", "Oh my !! sandy what damage are you doing !!!! http://t.co/tKxJs958\n", "\n", "--------------------------------------------------------\n", - "oh sandy damage \n", - "\n", - "\n", - "New york before Sandy! http://t.co/z9OlJVEh\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", + "sandy damage \n", "\n", "\n", "Tiburones en las calles inundadas de #NJ # SANDY http://t.co/s2d0Qqmg\n", "\n", "--------------------------------------------------------\n", - "tiburones calles inundadas nj sandy \n", + "tiburones calles inundadas new jersey sandy \n", "\n", "\n", "Sandy is bringing wildlife on niggas front steps nd shit! 😱 http://t.co/eilvShl8\n", @@ -30433,22 +27141,10 @@ "sandy bringing wildlife niggas front steps nd shit \n", "\n", "\n", - "#WOW Sandy. http://t.co/UlAkKo1L\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", - "\n", - "\n", - "Espectacular imagen del huracán sandy http://t.co/6BUcBSKi\n", - "\n", - "--------------------------------------------------------\n", - "espectacular imagen huracán sandy \n", - "\n", - "\n", "Waaaaat a shark tho!! Swimmin thru somebody jersey yard!! Sandy ain't playin!!! http://t.co/HkEAU3gh\n", "\n", "--------------------------------------------------------\n", - "waaaaat shark tho swimmin thru somebody jersey yard sandy playin \n", + "waaaaat shark tho swimmin somebody jersey yard sandy playin \n", "\n", "\n", "Glad this ain't my neighborhood. Sandy don't got crabs she got sharks!! http://t.co/Qp4bux9e\n", @@ -30472,7 +27168,7 @@ "Impresionante Imagen De La Llegada De Sandy A N. Y. http://t.co/lHlpFpCk\n", "\n", "--------------------------------------------------------\n", - "impresionante imagen llegada sandy n \n", + "impresionante imagen llegada sandy \n", "\n", "\n", "Sandy is next http://t.co/lG8B1dUZ\n", @@ -30481,12 +27177,6 @@ "sandy next \n", "\n", "\n", - "“@Peepsqueak: Sandy approaches NYC http://t.co/F3ZBiFME @juneambrose @thinkprogress @IntegrativeInfo RT @gardencatlady #photo”\n", - "\n", - "--------------------------------------------------------\n", - "sandy approaches nyc \n", - "\n", - "\n", "Hurricaine Sandy. 🇺🇸🗽🌊 http://t.co/3MwBOpKY\n", "\n", "--------------------------------------------------------\n", @@ -30526,7 +27216,7 @@ "La vecina se atormenta en NY. SANDY http://t.co/C1fnThSK\n", "\n", "--------------------------------------------------------\n", - "vecina atormenta ny sandy \n", + "vecina atormenta new york sandy \n", "\n", "\n", "New York + Sandy #HuricaneSandy http://t.co/Pz2z2dRx\n", @@ -30544,13 +27234,7 @@ "Photo de srscott11 http://t.co/ar3i7R21 impressionnantes les images qu'on commence à voir de Sandy approchant New-York.\n", "\n", "--------------------------------------------------------\n", - "photo srscott11 impressionnantes images qu commence à voir sandy approchant new york \n", - "\n", - "\n", - "Scare of Sandy 😭😭😭😭😬😬😬😬 http://t.co/M5D6OeTV\n", - "\n", - "--------------------------------------------------------\n", - "scare sandy \n", + "photo srscott11 impressionnantes images commencevoir sandy approchant new york \n", "\n", "\n", "I AIN'T SLEEPING ON THIS BITCH SANDY MAN! 😱😣😔🙏 http://t.co/cMLbQ4Ce\n", @@ -30562,7 +27246,7 @@ "http://t.co/zqaOE2Ur Foto del huracán Sandy en NY :|\n", "\n", "--------------------------------------------------------\n", - "foto huracán sandy ny \n", + "foto huracán sandy new york \n", "\n", "\n", "Sandy aint no joke! http://t.co/payDBbJk\n", @@ -30586,13 +27270,13 @@ "Furacão Sandy chegando em Nova York!!!! Que medo!!!! @ Edf. La Vivance http://t.co/H2BM3mzW\n", "\n", "--------------------------------------------------------\n", - "furacão sandy chegando em nova york medo edf vivance \n", + "furacão sandy chegando nova york medo edf vivance \n", "\n", "\n", "O_O https://t.co/gZSEMNrJ This is Sandy .-.\n", "\n", "--------------------------------------------------------\n", - "sandy \n", + "oo sandy \n", "\n", "\n", "Terrible catástrofe del huracán Sandy de su paso por NEW YORK. http://t.co/IC292pAS\n", @@ -30604,7 +27288,7 @@ "Isso foi só a SANDY....Agora imagina se o Junior viesse junto...Coitada da Estátua da Liberdade http://t.co/LLY177th\n", "\n", "--------------------------------------------------------\n", - "isso foi só sandy agora imagina junior viesse junto coitada da estátua da liberdade \n", + "sandy agora imagina junior viesse junto coitada estátua liberdade \n", "\n", "\n", "Sandy better leave my people alone! http://t.co/0teyGSm6\n", @@ -30622,7 +27306,7 @@ "Foto de Nova Iorque indagorinha... http://t.co/0VLdm8j1 Sandy depois que liberou o verbo, tá pegando geral.\n", "\n", "--------------------------------------------------------\n", - "foto nova iorque indagorinha sandy depois liberou verbo tá pegando geral \n", + "foto nova iorque indagorin sandy liberou verbo tá pegando geral \n", "\n", "\n", "If You Were Sandy @ Be Careful http://t.co/D2KLvbss\n", @@ -30634,25 +27318,25 @@ "#liberty taking it like a champ!!! Sandy ain't strong enough to knock her down!! #NYC #StatueOfLiberty http://t.co/ZgdqIiFx\n", "\n", "--------------------------------------------------------\n", - "liberty taking like champ sandy strong enough knock nyc statueofliberty \n", + "liberty taking like champ sandy strong enough knock new york city statueofliberty \n", "\n", "\n", "A Sandy ta ficando nervosa!!!! @ Midtown Manhattan http://t.co/oUyCVdRL\n", "\n", "--------------------------------------------------------\n", - "sandy ta ficando nervosa midtown manhattan \n", + "sandy ficando nervosa midtown manhattan \n", "\n", "\n", "Sandy llego a NY http://t.co/hqBke2Pn\n", "\n", "--------------------------------------------------------\n", - "sandy llego ny \n", + "sandy llego new york \n", "\n", "\n", "Sandy nos ha querido quitar la libertad http://t.co/it13fJ0x\n", "\n", "--------------------------------------------------------\n", - "sandy querido quitar libertad \n", + "sandy nosquerido quitar libertad \n", "\n", "\n", "Be Safe from Sandy http://t.co/CWw4C4rO\n", @@ -30661,12 +27345,6 @@ "safe sandy \n", "\n", "\n", - "Sandy was here http://t.co/8kJZhgMN\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Not gonna lie, Sandy is pretty hot. 😂 http://t.co/gfVJUxbV\n", "\n", "--------------------------------------------------------\n", @@ -30676,7 +27354,7 @@ "“@thinkprogress Sandy approaches NYC http://t.co/7YFSfKxC (via @juneAmbrose)” my word\n", "\n", "--------------------------------------------------------\n", - "sandy approaches nyc word \n", + "sandy approaches new york city word \n", "\n", "\n", "Crazy sandy http://t.co/nU8hJVjC\n", @@ -30688,7 +27366,7 @@ "Here is a shot of NYC as Sandy makes her way. http://t.co/x0txzrnj\n", "\n", "--------------------------------------------------------\n", - "shot nyc sandy makes way \n", + "shot new york city sandy makes way \n", "\n", "\n", "Photo de breakingnewschile http://t.co/GQiULTsW lady Liberty is waiting Sandy\n", @@ -30706,31 +27384,25 @@ "still going even through sandy #repost #highestrespect #unknownsoldier http://t.co/8cgzn9NR\n", "\n", "--------------------------------------------------------\n", - "still going even sandy repost highestrespect unknownsoldier \n", + "still going even sandy repost highestrespect unknown soldier \n", "\n", "\n", "Imagens do show da Sandy em NY\\nhttp://t.co/FY6FNcbS\n", "\n", "--------------------------------------------------------\n", - "imagens show da sandy em ny \n", + "imagens show sandy new york \n", "\n", "\n", "Impresionante la foto del huracán Sandy sobre NY. Parece de película. http://t.co/eKGv0bmU vía @TwitPic\n", "\n", "--------------------------------------------------------\n", - "impresionante foto huracán sandy ny parece película vía \n", + "impresionante foto huracán sandy new york parece película vía \n", "\n", "\n", "Brigantine Nj had this visitor. Thanks sandy now we are food. http://t.co/Uf6345tr\n", "\n", "--------------------------------------------------------\n", - "brigantine nj visitor thanks sandy food \n", - "\n", - "\n", - "Damn sandy http://t.co/bRQS5eLk\n", - "\n", - "--------------------------------------------------------\n", - "damn sandy \n", + "brigantine new jersey visitor thanks sandy food \n", "\n", "\n", "Huracán Sandy. Imagen real @riperbaa @ruben__ponce http://t.co/ZuURqOfD\n", @@ -30742,13 +27414,7 @@ "La siguiente imagen no es 1 invasión extraterrestre, ni mucho menos Chávez visitando a New York en helicoptero,es Sandy http://t.co/ewk23WSP\n", "\n", "--------------------------------------------------------\n", - "siguiente imagen 1 invasión extraterrestre menos chávez visitando new york helicoptero sandy \n", - "\n", - "\n", - "Huracan Sandy en NY http://t.co/gY3gZ1wM\n", - "\n", - "--------------------------------------------------------\n", - "huracan sandy ny \n", + "siguiente imagen invasión extraterrestre menos chávez visitando new york helicoptero sandy \n", "\n", "\n", "I think we are fine .. Sandy ain't got nothin on us. http://t.co/3UHlJg1P\n", @@ -30769,24 +27435,12 @@ "sandy fucking shit yea thats damn shark \n", "\n", "\n", - "Sandy por @pedrobial http://t.co/c4C3Krlh\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Praying for everyone affected by #hurricane sandy.. http://t.co/5I8RfXBU\n", "\n", "--------------------------------------------------------\n", "praying everyone affected hurricane sandy \n", "\n", "\n", - "http://t.co/IUNQ7OCB Sandy ;0\n", - "\n", - "--------------------------------------------------------\n", - "sandy 0 \n", - "\n", - "\n", "Hoax RT “@DuarteJr_: Imagens do Furacão Sandy passando por New York! Impressionante como somos vulneráveis by @rodlago http://t.co/6eVgSeWa”\n", "\n", "--------------------------------------------------------\n", @@ -30805,16 +27459,10 @@ "bitch sandy \n", "\n", "\n", - "Huracán Sandy en NY!!! http://t.co/30OX56ua\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy ny \n", - "\n", - "\n", "Para tomar en cuenta! Huracán Sandy en NY http://t.co/44PZZP36\n", "\n", "--------------------------------------------------------\n", - "tomar cuenta huracán sandy ny \n", + "tomar cuenta huracán sandy new york \n", "\n", "\n", "Fuuuuuuuuuuuuuuuuu sandy http://t.co/Z472E7XE\n", @@ -30859,12 +27507,6 @@ "sandy work \n", "\n", "\n", - "Huracán Sandy : ( http://t.co/uaPiRVIt\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy \n", - "\n", - "\n", "“@talybcn17: @Alerguez Has visto la foto del huracán Sandy? http://t.co/N8VJiSEY” #pacagarse\n", "\n", "--------------------------------------------------------\n", @@ -30904,7 +27546,7 @@ "El huracán Sandy llegar a NY #LikeAMovie http://t.co/teJ1LWgv\n", "\n", "--------------------------------------------------------\n", - "huracán sandy llegar ny likeamovie \n", + "huracán sandy llegar new york likeamovie \n", "\n", "\n", "@Alerguez Has visto la foto del huracán Sandy? http://t.co/6N3FQiAV\n", @@ -30916,13 +27558,13 @@ "NYC vs sandy http://t.co/uIZkVPhk\n", "\n", "--------------------------------------------------------\n", - "nyc vs sandy \n", + "new york city versus sandy \n", "\n", "\n", "IMPRESIONANTE LLEGADA DEL HURACÁN SANDY A NY! http://t.co/fUUrn67B\n", "\n", "--------------------------------------------------------\n", - "impresionante llegada huracán sandy ny \n", + "impresionante llegada huracán sandy new york \n", "\n", "\n", "Regardless of sandy. http://t.co/zLN2ymcL\n", @@ -30946,25 +27588,19 @@ "OMG fuck this! Sandy is scary #scary #hurricane #newyork #weather #2012 http://t.co/UvjEFgru\n", "\n", "--------------------------------------------------------\n", - "omg fuck sandy scary scary hurricane newyork weather 2012 \n", + "fuck sandy scary scary hurricane new york weather012 \n", "\n", "\n", "NYC looking crazy for sandy http://t.co/zD8DFH14\n", "\n", "--------------------------------------------------------\n", - "nyc looking crazy sandy \n", - "\n", - "\n", - "Sandy :0 http://t.co/DsrdTHpY\n", - "\n", - "--------------------------------------------------------\n", - "sandy 0 \n", + "new york city looking crazy sandy \n", "\n", "\n", "Huracán Sandy, haciendo de las suyas en NY!!!!!!!!!!! http://t.co/gLYjAqBs\n", "\n", "--------------------------------------------------------\n", - "huracán sandy haciendo ny \n", + "huracán sandy haciendo new york \n", "\n", "\n", "Jaws and sandy http://t.co/cWpOwniY\n", @@ -30973,18 +27609,6 @@ "jaws sandy \n", "\n", "\n", - "Here comes sandy 😳 http://t.co/1uPlzcmR\n", - "\n", - "--------------------------------------------------------\n", - "comes sandy \n", - "\n", - "\n", - "http://t.co/GErhjOXn FURACÃO SANDY <3\n", - "\n", - "--------------------------------------------------------\n", - "furacão sandy less 3 \n", - "\n", - "\n", "Repost SANDY aint playing http://t.co/a8ia95x8\n", "\n", "--------------------------------------------------------\n", @@ -30994,19 +27618,13 @@ "Sup Sandy. #repost #hurricane #NYC http://t.co/R2ckzziI\n", "\n", "--------------------------------------------------------\n", - "sup sandy repost hurricane nyc \n", - "\n", - "\n", - "NY During Sandy http://t.co/iT2xHU5b\n", - "\n", - "--------------------------------------------------------\n", - "ny sandy \n", + "sup sandy repost hurricane new york city \n", "\n", "\n", "This is amazing. Since 1937, Soldiers have been guarding this tomb. And Sandy will be no exception. http://t.co/6ep48Lqv\n", "\n", "--------------------------------------------------------\n", - "amazing since 1937 soldiers guarding tomb sandy exception \n", + "amazing since937 soldiers guarding tomb sandy exception \n", "\n", "\n", "Lady liberty meets sandy #amazing http://t.co/M1Rz0BdZ\n", @@ -31018,13 +27636,13 @@ "Sandy hits NY http://t.co/I0CWGdxF\n", "\n", "--------------------------------------------------------\n", - "sandy hits ny \n", + "sandy hits new york \n", "\n", "\n", "No sé si està manipulada, però és una imatge brutal: el Sandy sobre NY https://t.co/8dZXZbyF\n", "\n", "--------------------------------------------------------\n", - "sé si està manipulada però és imatge brutal sandy ny \n", + "sé si està manipulada però és imatge brutal sandy new york \n", "\n", "\n", "Sandy on its way to new york...:( http://t.co/PyBNAXGG\n", @@ -31036,7 +27654,7 @@ "@_tomate Imagina se fosse Sandy e Junior #FuraçãoSandy http://t.co/59mBRwss\n", "\n", "--------------------------------------------------------\n", - "imagina fosse sandy junior furaçãosandy \n", + "imagina sandy junior furaçãosandy \n", "\n", "\n", "Eita.... sinistro!!! Furacão Sandy!! Foto de Tomate!! http://t.co/lutBiWg0\n", @@ -31048,13 +27666,13 @@ "Tormenta Sandy en NY >>> http://t.co/kVthtTgW”\n", "\n", "--------------------------------------------------------\n", - "tormenta sandy ny greater greater greater \n", + "tormenta sandy new york \n", "\n", "\n", "resultados da sandy: http://t.co/gI0ulRBT 1 tubarão em new jersey q\n", "\n", "--------------------------------------------------------\n", - "resultados da sandy 1 tubarão em new jersey q \n", + "resultados sandy tubarão new jersey q \n", "\n", "\n", "http://t.co/fwYkEBSd Furacão Sandy, fóda *---*\n", @@ -31084,13 +27702,13 @@ "Até tubarão nas ruas de New Jersey http://t.co/6byFiEG7 (Furacão Sandy)\n", "\n", "--------------------------------------------------------\n", - "até tubarão nas ruas new jersey furacão sandy \n", + "tubarão ruas new jersey furacão sandy \n", "\n", "\n", "Furacão Sandy chegando em NY O.O http://t.co/onlWisHb\n", "\n", "--------------------------------------------------------\n", - "furacão sandy chegando em ny \n", + "furacão sandy chegando new york \n", "\n", "\n", "la foto de neojpx http://t.co/C9kDZqv5 HURACÁN SANDY. El metro!\n", @@ -31098,7 +27716,13 @@ "--------------------------------------------------------\n", "foto neojpx huracán sandy metro \n", "\n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "gente, que foto perfeita/assustadora do furacão Sandy http://t.co/y0F8fKIN :O\n", "\n", "--------------------------------------------------------\n", @@ -31126,13 +27750,13 @@ "Hurracan sandy NY 2012 http://t.co/jzYNUYY6\n", "\n", "--------------------------------------------------------\n", - "hurracan sandy ny 2012 \n", + "hurracan sandy ny012 \n", "\n", "\n", "NYC meet Sandy... Sandy do work #welcometothejungle http://t.co/ncUzbIVp\n", "\n", "--------------------------------------------------------\n", - "nyc meet sandy sandy work welcometothejungle \n", + "new york city meet sandy sandy work welcometothejungle \n", "\n", "\n", "Sandy wasnt playin http://t.co/EVEsmaUP\n", @@ -31144,7 +27768,7 @@ "Sandy too... banyak jalan dinaiki air.. pandulah berhati-hati... http://t.co/bPPCjCIn\n", "\n", "--------------------------------------------------------\n", - "sandy banyak jalan dinaiki air pandulah berhati hati \n", + "sandy jalan dinaiki air pandulah berhati hati \n", "\n", "\n", "New York today.. damn sandy go back to bikini bottom http://t.co/ZKjTEqGN\n", @@ -31183,16 +27807,10 @@ "sandy puso loca help yameasuste \n", "\n", "\n", - "Sandy :o RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/OMv5eBuA\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Foto di illypocket http://t.co/qdz9CQlR foto dagli USA dell'uragano Sandy prese da Instagram\n", "\n", "--------------------------------------------------------\n", - "foto di illypocket foto dagli usa dell uragano sandy prese da instagram \n", + "foto illypocket foto dagli usa dell uragano sandy prese instagram \n", "\n", "\n", "Oke dit geloof ik dus weer niet RT @SwagxPube door de orkaan sandy zwemmen er zelf haaien door de straten. http://t.co/2V8KYHnb\n", @@ -31210,13 +27828,13 @@ "#ForeverFunny this is Category 1 Sandy http://t.co/pPZBnLYn\n", "\n", "--------------------------------------------------------\n", - "foreverfunny category 1 sandy \n", + "foreverfunny category sandy \n", "\n", "\n", "Sandy coming for #NYC http://t.co/pLaSNfYP\n", "\n", "--------------------------------------------------------\n", - "sandy coming nyc \n", + "sandy coming new york city \n", "\n", "\n", "Is Sandy coming to a town near you? http://t.co/Axj5KQ9S\n", @@ -31228,7 +27846,7 @@ "Sandy at her finest ... #Masterpiece #Beautiful #NYC #Hurricane http://t.co/HVLJuqGQ\n", "\n", "--------------------------------------------------------\n", - "sandy finest masterpiece beautiful nyc hurricane \n", + "sandy finest masterpiece beautiful new york city hurricane \n", "\n", "\n", "Sandy..que foto! http://t.co/Snb6EEYT\n", @@ -31246,7 +27864,7 @@ "Hope my city is goin to be ok afta dis sandy bitch #ny😱😢😢😢 http://t.co/UVNXU5LT\n", "\n", "--------------------------------------------------------\n", - "hope city goin ok afta dis sandy bitch ny \n", + "hope city going ok aftasandy bitch new york \n", "\n", "\n", "Sandy turntup http://t.co/vk4PslnK\n", @@ -31258,25 +27876,19 @@ "U see sandy? #hurricane #NewYork http://t.co/yga1X3NV\n", "\n", "--------------------------------------------------------\n", - "see sandy hurricane newyork \n", - "\n", - "\n", - "Oh sandy http://t.co/TEnuHSH1\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", + "see sandy hurricane new york \n", "\n", "\n", "NY fantasma por Sandy cavb1977 http://t.co/HtUCloTK\n", "\n", "--------------------------------------------------------\n", - "ny fantasma sandy cavb1977 \n", + "new york fantasma sandy cavb1977 \n", "\n", "\n", "Foto di edwardngzh http://t.co/banl3Oc8 foto dagli USA dell'uragano Sandy prese da Instagram\n", "\n", "--------------------------------------------------------\n", - "foto di edwardngzh foto dagli usa dell uragano sandy prese da instagram \n", + "foto edwardngzh foto dagli usa dell uragano sandy prese instagram \n", "\n", "\n", "Se impone ante sandy http://t.co/VXaLlmR2\n", @@ -31300,7 +27912,7 @@ "Não é cena de filme, é furacão Sandy - chegando em New York #Oremos http://t.co/cuepRDKq\n", "\n", "--------------------------------------------------------\n", - "não é cena filme é furacão sandy chegando em new york oremos \n", + "cena filme furacão sandy chegando new york oremos \n", "\n", "\n", "Sandy is definitely making an EPIC appearance!!! http://t.co/16TvEf58\n", @@ -31312,7 +27924,7 @@ "No es ninguna película de Hollywood, sólo es el Huracán Sandy llegando a NY http://t.co/4CjrluNk\n", "\n", "--------------------------------------------------------\n", - "ninguna película hollywood sólo huracán sandy llegando ny \n", + "ninguna película hollywood sólo huracán sandy llegando new york \n", "\n", "\n", "Sandy be good http://t.co/MJGvx710\n", @@ -31324,13 +27936,13 @@ "Increible sandy trae tiburon a las calles de nj 😳 http://t.co/0ppoWlaq\n", "\n", "--------------------------------------------------------\n", - "increible sandy trae tiburon calles nj \n", + "increible sandy trae tiburon calles new jersey \n", "\n", "\n", "Le prochain Roland Emmerich ? oh wait… RT @bertrand_k Sandy approaches NYC http://t.co/8BCk2ttj via @juneambrose @iznogoodgood\n", "\n", "--------------------------------------------------------\n", - "prochain roland emmerich oh wait \n", + "prochain roland emmerich wait \n", "\n", "\n", "Sandy en Nueva York :D http://t.co/2KE2cARr\n", @@ -31351,16 +27963,10 @@ "new york skyline sandy approaches \n", "\n", "\n", - "Sandy en NY >>> http://t.co/USYKPHVA\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny greater greater greater \n", - "\n", - "\n", "'Merica-1. Sandy-0. Fuck yeah. http://t.co/XMIEntMw\n", "\n", "--------------------------------------------------------\n", - "merica 1 sandy 0 fuck yeah \n", + "merica sandy fuck yeah \n", "\n", "\n", "Aquí esta la foro de Sandy sobre new york http://t.co/QZLooHS0\n", @@ -31396,7 +28002,7 @@ "WELCOME TO NYC SANDY.!! http://t.co/Ksj80hQO\n", "\n", "--------------------------------------------------------\n", - "welcome nyc sandy \n", + "welcome new york city sandy \n", "\n", "\n", "Joder.... RT @Fernybg7: MPRESIONANTE¡¡¡¡¡ Imagen de Nueva York con la llegada del huracán Sandy... http://t.co/RJMgGMSY\"\n", @@ -31408,13 +28014,13 @@ "Furacão Sandy está acabando com os Estados Unidos http://t.co/IRKfgbDh\n", "\n", "--------------------------------------------------------\n", - "furacão sandy acabando com unidos \n", + "furacão sandy acabando unidos \n", "\n", "\n", "Tormenta Sandy , NYC ... Impresionante imagen ... http://t.co/eh8lBDP3\n", "\n", "--------------------------------------------------------\n", - "tormenta sandy nyc impresionante imagen \n", + "tormenta sandy new york city impresionante imagen \n", "\n", "\n", "I named this shark Sandy. http://t.co/wSxLZBg3\n", @@ -31432,7 +28038,7 @@ "Sandy al momento de llegar a NY☔⚡🗽 http://t.co/XYENcmXd\n", "\n", "--------------------------------------------------------\n", - "sandy momento llegar ny \n", + "sandy momento llegar new york \n", "\n", "\n", "Furacão Sandy @ Taguatinga http://t.co/g9Z6pjti\n", @@ -31444,13 +28050,7 @@ "Sandy Storm kayak di film2 Hollywood ...\\nhttp://t.co/nFMoFjt6\n", "\n", "--------------------------------------------------------\n", - "sandy storm kayak di film2 hollywood \n", - "\n", - "\n", - "@MonsieurJacob: Saw this picture of sandy on Facebook, daaaaaang http://t.co/5oiM6hMi 😳\n", - "\n", - "--------------------------------------------------------\n", - "saw picture sandy facebook daaaaaang \n", + "sandy storm kayak film2 hollywood \n", "\n", "\n", "https://t.co/ZUStjAjv tendeu sandy....\n", @@ -31462,7 +28062,7 @@ "Sandy just wants to say HI. #hurricane #omg #panjc http://t.co/6MWYoRUR\n", "\n", "--------------------------------------------------------\n", - "sandy wants say hi hurricane omg panjc \n", + "sandy wants say hi hurricane panjc \n", "\n", "\n", "Furacao Sandy! Voo cancelado! http://t.co/2JvPF132\n", @@ -31495,12 +28095,6 @@ "times square tras evacuación apocalipsis zomb err huracán sandy \n", "\n", "\n", - "“@_pushaC: Sandy http://t.co/E0e4PKJM” crazy\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", - "\n", - "\n", "Man sandy Foreal?? ⚡⚡⚡☔☔⚡🌊🌊☁🚣⛵💡🔌🚬🚬🚬🔫🔫🔒🔒🔐🔑🔒🚪🚪🚪🔨🔨🔨🏊🏊🏊🏊🎣🎣🎣😱😰😖😫😩😤💨💨💨💨💦💦💦💧💦💥💥💥👽💩🙌🙌🙌🙌🙌🏃🏃🏃🏃🏃👫👭💏👪👪👬👭💑🙇🌕🌕🌕🌎 http://t.co/vEWVXy10\n", "\n", "--------------------------------------------------------\n", @@ -31513,16 +28107,10 @@ "sandy fucking around \n", "\n", "\n", - "Sandy aint no joke http://t.co/i6BcM3bm\n", - "\n", - "--------------------------------------------------------\n", - "sandy aint joke \n", - "\n", - "\n", "la imagen impantante del dia son los tiburones en las calles de N.Y por el hurracan sandy http://t.co/mp0wBWnD\n", "\n", "--------------------------------------------------------\n", - "imagen impantante dia tiburones calles n hurracan sandy \n", + "imagen impantante tiburones calles hurracan sandy \n", "\n", "\n", "O.M.G!!!! RT @thinkprogress: Sandy approaches NYC http://t.co/lF6IAzE3 (via @juneambrose) ll @JALpalyul\n", @@ -31540,19 +28128,19 @@ "Sandy by @JasonOtts #NY #Liberty #Photography http://t.co/nNrOn5Hu\n", "\n", "--------------------------------------------------------\n", - "sandy ny liberty photography \n", + "sandy new york liberty photography \n", "\n", "\n", "New Yorks skyline Sandy is forming smh http://t.co/i6qkS6GF\n", "\n", "--------------------------------------------------------\n", - "new yorks skyline sandy forming smh \n", + "new yorks skyline sandy forming \n", "\n", "\n", "“@thinkprogress: Sandy approaches NYC http://t.co/cQGeRxuN (via @juneambrose)” stay safe NYC 💜\n", "\n", "--------------------------------------------------------\n", - "stay safe nyc \n", + "stay safe new york city \n", "\n", "\n", "Una imagen de la llegada de Sandy, la tormenta perfecta a Cuidad Gotica, New York\\nhttp://t.co/d1R4cpBP\n", @@ -31564,13 +28152,13 @@ "De todas as imagens que eu vi do furacão Sandy, essa foi a mais impressionante: http://t.co/7lI45nHd\n", "\n", "--------------------------------------------------------\n", - "todas imagens eu furacão sandy essa foi mais impressionante \n", + "todas imagens furacão sandy impressionante \n", "\n", "\n", "Sandy over NYC #hurricane #statueofliberty #hurricane #storm #amazing #Love #instagood #photooftheday #iphon http://t.co/cjzYAJmM\n", "\n", "--------------------------------------------------------\n", - "sandy nyc hurricane statueofliberty hurricane storm amazing love instagood photooftheday iphon \n", + "sandy new york city hurricane statueofliberty hurricane storm amazing love instagood photooftheday iphon \n", "\n", "\n", "Sandy is a bad bitch... http://t.co/O8RWeLJB\n", @@ -31582,7 +28170,7 @@ "foto de la tormenta sandy en NY http://t.co/dyhXQSUW\n", "\n", "--------------------------------------------------------\n", - "foto tormenta sandy ny \n", + "foto tormenta sandy new york \n", "\n", "\n", "Sandy has nothing on America 🇺🇸 http://t.co/dOs2Rx7s\n", @@ -31594,25 +28182,19 @@ "Tem até tubarão em NY por causa do Sandy http://t.co/OBf8ZQXn #2012\n", "\n", "--------------------------------------------------------\n", - "tem até tubarão em ny causa sandy 2012 \n", - "\n", - "\n", - "“@Nleland4: Sandy at her finest! http://t.co/q2OvgBTL” fake pic lol\n", - "\n", - "--------------------------------------------------------\n", - "fake pic lol \n", + "tubarão new york causa sandy2 \n", "\n", "\n", "Slutty Sandy over NYC today. Crazy. http://t.co/GP7ev24J\n", "\n", "--------------------------------------------------------\n", - "slutty sandy nyc today crazy \n", + "slutty sandy new york city today crazy \n", "\n", "\n", "Wow, amazing photo! RT @IndScene Sandy arriving to New York City http://t.co/X33GCq0L\n", "\n", "--------------------------------------------------------\n", - "wow amazing photo \n", + "amazing photo \n", "\n", "\n", "Esto tambien lo trajo SANDY a New Jersey http://t.co/tOyBDboX …un tiburón!\n", @@ -31645,12 +28227,6 @@ "sandy repost \n", "\n", "\n", - "Sandy over NYC http://t.co/oh4H8rrx\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "Sandy http://t.co/VXNsRH4x 😰 #staysafe\n", "\n", "--------------------------------------------------------\n", @@ -31666,31 +28242,25 @@ "Sandy, non distruggere la mia NYC.... ❤ http://t.co/vcLo11Pi\n", "\n", "--------------------------------------------------------\n", - "sandy non distruggere mia nyc \n", + "sandy non distruggere mia new york city \n", "\n", "\n", "Sandy approaching NYC. http://t.co/7IMn40M0\n", "\n", "--------------------------------------------------------\n", - "sandy approaching nyc \n", + "sandy approaching new york city \n", "\n", "\n", "Increible imagen del huracan \"Sandy\" sobre NYC http://t.co/GjAXMIU9\n", "\n", "--------------------------------------------------------\n", - "increible imagen huracan sandy nyc \n", - "\n", - "\n", - "Sandy isn't playing. http://t.co/qD4nymXp\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", + "increible imagen huracan sandy new york city \n", "\n", "\n", "Day after tomorrow? Nah Sandy #probstoFrank http://t.co/fBEoMUym\n", "\n", "--------------------------------------------------------\n", - "day tomorrow nah sandy probstofrank \n", + "day tomorrow sandy probstofrank \n", "\n", "\n", "puta madre !!! SANDY ... http://t.co/KObIkP7P\n", @@ -31702,7 +28272,7 @@ "Sandy llega u NY !!!! ☁⚡🌀🌊 http://t.co/qavh9vPZ\n", "\n", "--------------------------------------------------------\n", - "sandy llega ny \n", + "sandy llega new york \n", "\n", "\n", "sandy e jr se formando http://t.co/De2rwuzy\n", @@ -31714,19 +28284,13 @@ "Bellos los efectos de el huran sandy en NY aun q los q estan ahi no ah de pensar lo mismo http://t.co/D6Kag1uA\n", "\n", "--------------------------------------------------------\n", - "bellos efectos huran sandy ny aun q q estan ahi ah pensar mismo \n", + "bellos efectos huran sandy new york aun q q estan ahi ah pensar mismo \n", "\n", "\n", "2012 smh Sandy got shit lookin crazy http://t.co/Zpk5qE6w\n", "\n", "--------------------------------------------------------\n", - "2012 smh sandy got shit lookin crazy \n", - "\n", - "\n", - "29/10 - Sandy! http://t.co/FHSsHr3d\n", - "\n", - "--------------------------------------------------------\n", - "29 10 sandy \n", + "2 sandy got shit lookin crazy \n", "\n", "\n", "Corre que Sandy chegou. #ig #instapic #instagram #instameet #instahub #instagood #instalove #instadaily #fol http://t.co/AbcecfSq\n", @@ -31762,25 +28326,19 @@ "Awesome: http://t.co/CZetcgdT Soldiers 1, Sandy 0\n", "\n", "--------------------------------------------------------\n", - "awesome soldiers 1 sandy 0 \n", - "\n", - "\n", - "Huracán Sandy... http://t.co/PPJvEgZN\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy \n", + "awesome soldiers sandy \n", "\n", "\n", "Honor Duty Country Not even Sandy can stop our 3rd Infantry http://t.co/04g0N0MW\n", "\n", "--------------------------------------------------------\n", - "honor duty country even sandy stop 3rd infantry \n", + "honor duty country even sandy stop infantry \n", "\n", "\n", "WTF.. Sandy Ain't Playing...Shyt Just Got Real http://t.co/JFUeAzzC\n", "\n", "--------------------------------------------------------\n", - "wtf sandy playing shyt got real \n", + "sandy playing shyt got real \n", "\n", "\n", "Calm down 'Sandy', take it easy. http://t.co/FAed6ZoI\n", @@ -31792,7 +28350,7 @@ "http://t.co/u0aP3QFl alucinante foto del huracan sandy en NY #cagatemanolo\n", "\n", "--------------------------------------------------------\n", - "alucinante foto huracan sandy ny cagatemanolo \n", + "alucinante foto huracan sandy new york cagatemanolo \n", "\n", "\n", "JODER CON \"SANDY\"....... http://t.co/ncb1kQPa\n", @@ -31809,14 +28367,8 @@ "\n", "Aí caramba dezembro esta chegando com o furacão Sandy http://t.co/3ymiWFyV\n", "\n", - "--------------------------------------------------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "aí caramba dezembro chegando com furacão sandy \n", + "--------------------------------------------------------\n", + "aí caramba dezembro chegando furacão sandy \n", "\n", "\n", "Flipando con las fotos del huracán Sandy!! Ha llevado tiburones alas calles de Nueva Jersey !! #PRAYFOREEU http://t.co/OuMTwYbp\n", @@ -31831,12 +28383,6 @@ "espeluznante foto huracán sandy \n", "\n", "\n", - "@edaldus en hier is Sandy 2.. http://t.co/jPy90IpC\n", - "\n", - "--------------------------------------------------------\n", - "sandy 2 \n", - "\n", - "\n", "Llego sandy http://t.co/IUR10Poj\n", "\n", "--------------------------------------------------------\n", @@ -31852,13 +28398,7 @@ "Sandy gonna wipe NYC out http://t.co/XP5rTKic\n", "\n", "--------------------------------------------------------\n", - "sandy gonna wipe nyc \n", - "\n", - "\n", - "Whoa! «@davesurber SANDY FRANKENSTORMY KRUEGER FTW! http://t.co/Z0EwTvMB»\n", - "\n", - "--------------------------------------------------------\n", - "whoa sandy frankenstormy krueger ftw \n", + "sandy gonna wipe new york city \n", "\n", "\n", "Sandy is making its way over, stay safe everybody. http://t.co/geiv702O\n", @@ -31867,34 +28407,16 @@ "sandy making way stay safe everybody \n", "\n", "\n", - "@os_fretes: que postal mas impresionante!! http://t.co/KsA4Ocsx que loco! Como está el paso de sandy por ahí?\n", - "\n", - "--------------------------------------------------------\n", - "postal mas impresionante loco paso sandy ahí \n", - "\n", - "\n", - "Hey Sandy. http://t.co/D60i5sPr\n", - "\n", - "--------------------------------------------------------\n", - "hey sandy \n", - "\n", - "\n", "Prayers to those up north going thru \"Sandy\" http://t.co/dBEAZiLk\n", "\n", "--------------------------------------------------------\n", - "prayers north going thru sandy \n", + "prayers north going sandy \n", "\n", "\n", "http://t.co/Kkz20smq crazy picture of Sandy coming to NEWYORK.\n", "\n", "--------------------------------------------------------\n", - "crazy picture sandy coming newyork \n", - "\n", - "\n", - "Sandy ain't playing around... http://t.co/ZRgVkeaY\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing around \n", + "crazy picture sandy coming new york \n", "\n", "\n", "Thats some Day After tomorrow type ish RT @TouchMeTEEzeMe: Sandy.. http://t.co/8iSynM35\n", @@ -31912,7 +28434,7 @@ "TUBARÃO nas ruas http://t.co/qtRRVmtw isso é só uma previa do furacão sandy ?? ou\n", "\n", "--------------------------------------------------------\n", - "tubarão nas ruas isso é só uma previa furacão sandy ou \n", + "tubarão ruas predo furacão sandy \n", "\n", "\n", "stay safe everyone. RT @byo0shi: New York meeting sandy .. #hurricane http://t.co/dbx90q4Q\n", @@ -31924,13 +28446,13 @@ "NYC. This morning. Sandy quedate por alla y no te acerques mas x aqui :) http://t.co/dXW7h1bN\n", "\n", "--------------------------------------------------------\n", - "nyc morning sandy quedate acerques mas x aqui \n", + "new york city morning sandy quedate acerques x aqui \n", "\n", "\n", "NYC with sandy approaching http://t.co/6p1h8x8i\n", "\n", "--------------------------------------------------------\n", - "nyc sandy approaching \n", + "new york city sandy approaching \n", "\n", "\n", "Día después de mañana?? noo es new York con el paso de sandy http://t.co/XUozP0hf\n", @@ -31942,13 +28464,13 @@ "NYC Storm!!! Sandy is on her way!!! http://t.co/DfcXfsb0\n", "\n", "--------------------------------------------------------\n", - "nyc storm sandy way \n", + "new york city storm sandy way \n", "\n", "\n", "Alucinante foto del huracán Sandy en NY...una pena.... http://t.co/Ri2kCPrf\n", "\n", "--------------------------------------------------------\n", - "alucinante foto huracán sandy ny pena \n", + "alucinante foto huracán sandy new york pena \n", "\n", "\n", "Soldiers - Sandy come get sum ! Thank you for protecting our unknown http://t.co/L1Sruu86\n", @@ -31960,7 +28482,7 @@ "Já pensou vc ta lá esperando o Sandy na varanda de casa e vê isso http://t.co/LBB1drvY\n", "\n", "--------------------------------------------------------\n", - "já pensou vc ta lá esperando sandy varanda casa vê isso \n", + "pensou vc lá esperando sandy varanda casa vê \n", "\n", "\n", "Huracán sandy en new York. Dios cuida a todas las personas http://t.co/X2uHfnfu\n", @@ -31978,7 +28500,7 @@ "ouvir dizer que isso aqui é o furacão sandy https://t.co/Y7lbuFFo\n", "\n", "--------------------------------------------------------\n", - "ouvir dizer isso aqui é furacão sandy \n", + "ouvir dizer aqui furacão sandy \n", "\n", "\n", "https://t.co/wjia7njt O Furacão Sandy a chegar a New York #PrayForUSA\n", @@ -31996,13 +28518,13 @@ "Uragano Sandy 🗽 #NYC #newyorkcity #newyork #america #USA #uragani #uraganosandy #statodicalamità #obama #all http://t.co/o3cy7egg\n", "\n", "--------------------------------------------------------\n", - "uragano sandy nyc newyorkcity newyork america usa uragani uraganosandy statodicalamità obama \n", + "uragano sandy new york city new yorkcity new york america usa uragani uraganosandy statodicalamità obama \n", "\n", "\n", "Sandy ....... Parece até cena de filme , chega a dar medo http://t.co/5UpwfyPk\n", "\n", "--------------------------------------------------------\n", - "sandy parece até cena filme chega dar medo \n", + "sandy parece cena filme chega dar medo \n", "\n", "\n", "JESUS CHRIST! Sandy... Y u so ratchet?!!! http://t.co/0jTDuWdz\n", @@ -32020,25 +28542,7 @@ "29/10/12. Sandy. http://t.co/zZgvDJjF\n", "\n", "--------------------------------------------------------\n", - "29 10 12 sandy \n", - "\n", - "\n", - "@lovacti0ner Furacão Sandy https://t.co/6SBGGz6R https://t.co/Cz3rb4JA :'O\n", - "\n", - "--------------------------------------------------------\n", - "furacão sandy \n", - "\n", - "\n", - "Impresionante fotografía del Huracán Sandy en New York - via @Joselito17RBB http://t.co/4QgwwwEe\n", - "\n", - "--------------------------------------------------------\n", - "impresionante fotografía huracán sandy new york \n", - "\n", - "\n", - "OMFG RT @thinkprogress Sandy approaches NYC http://t.co/QXSbe7Do (via @juneambrose)\n", - "\n", - "--------------------------------------------------------\n", - "omfg \n", + "2 sandy \n", "\n", "\n", "shot from weather channel of Sandy http://t.co/mpm6GeNC\n", @@ -32047,30 +28551,12 @@ "shot weather channel sandy \n", "\n", "\n", - "Holy shit Sandy http://t.co/oEfbxRuq\n", - "\n", - "--------------------------------------------------------\n", - "holy shit sandy \n", - "\n", - "\n", "While Sandy disrupts so much, some things go on without a glitch http://t.co/YFroG4i1\n", "\n", "--------------------------------------------------------\n", "sandy disrupts much things go without glitch \n", "\n", "\n", - "EL HURACÁN SANDY, OMGGGG. http://t.co/Exq5Lyv1\n", - "\n", - "--------------------------------------------------------\n", - "huracán sandy omgggg \n", - "\n", - "\n", - "Sandy you bitch! http://t.co/Zc3gL7ZT\n", - "\n", - "--------------------------------------------------------\n", - "sandy bitch \n", - "\n", - "\n", "Sandy just got real 😱😱 http://t.co/gxWnmbiX\n", "\n", "--------------------------------------------------------\n", @@ -32089,28 +28575,22 @@ "nyまじ sandyこわすぎやん \n", "\n", "\n", - "@CatStaggs: Wow!! RT @thinkprogress: Sandy approaches NYC http://t.co/5SnDVIhy (via @juneambrose) HOLY FUCK\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "New York sepi dan tergenang air akibat badai Sandy atau Frankenstorm http://t.co/TTjYdres\n", "\n", "--------------------------------------------------------\n", - "new york sepi tergenang air akibat badai sandy atau frankenstorm \n", + "new york sepi tergenang air akibat badai sandy frankenstorm \n", "\n", "\n", "Sandy overtaking NYC!!! http://t.co/dD2AVdSh\n", "\n", "--------------------------------------------------------\n", - "sandy overtaking nyc \n", + "sandy overtaking new york city \n", "\n", "\n", "#repost ...these are real men #guardingunknownsoldier stop complaining about sandy! http://t.co/GmSC0Eq6\n", "\n", "--------------------------------------------------------\n", - "repost real guardingunknownsoldier stop complaining sandy \n", + "repost real guardingunknown soldier stop complaining sandy \n", "\n", "\n", "Huracán Sandy en Nueva York, impresionante! http://t.co/7GLZW2eQ\n", @@ -32128,13 +28608,13 @@ "A foto do Sandy que mais rola no Instagram: um possível tubarão nas ruas de New Jersey http://t.co/SySbIUPv\n", "\n", "--------------------------------------------------------\n", - "foto sandy mais rola instagram um possível tubarão nas ruas new jersey \n", + "foto sandy rola instagram possível tubarão ruas new jersey \n", "\n", "\n", "Sandy vs. #NewYork http://t.co/LErHv9BX\n", "\n", "--------------------------------------------------------\n", - "sandy vs newyork \n", + "sandy versus new york \n", "\n", "\n", "“@PeterYoungLive: NEW YORK NOW....SANDY IS COMING STRONGER.! http://t.co/sUgz12wT”\\n\\nBe carefull.... 😱😘\n", @@ -32164,7 +28644,7 @@ "NYC vs Sandy... #REPOST http://t.co/yGmM0YIX\n", "\n", "--------------------------------------------------------\n", - "nyc vs sandy repost \n", + "new york city versus sandy repost \n", "\n", "\n", "America unphased by sandy #America http://t.co/hsadvyLZ\n", @@ -32176,7 +28656,7 @@ "huracan sandy llegando a nueva york (dicen que el q va en la lancha es chileno) http://t.co/eYsm1OKH\n", "\n", "--------------------------------------------------------\n", - "huracan sandy llegando nueva york dicen q va lancha chileno \n", + "huracan sandy llegando nueva york dicen q va lances chileno \n", "\n", "\n", "Huracan Sandy llegando a Nueva York http://t.co/7NcmHuov\n", @@ -32194,7 +28674,7 @@ "esse furacão sandy ein, q isso http://t.co/pAeJYndo olha os tubarão no meio da rua\n", "\n", "--------------------------------------------------------\n", - "esse furacão sandy ein q isso olha tubarão meio da rua \n", + "furacão sandy ein q olos tubarão meio rua \n", "\n", "\n", "Impresionante foto del huracán Sandy https://t.co/PgQb8szs\n", @@ -32203,12 +28683,6 @@ "impresionante foto huracán sandy \n", "\n", "\n", - "You don't scare me Sandy!! http://t.co/AFKQW5fR\n", - "\n", - "--------------------------------------------------------\n", - "scare sandy \n", - "\n", - "\n", "#EEUU impresionante imagen del huracán Sandy sobre Nueva York http://t.co/XrO1Snxi\n", "\n", "--------------------------------------------------------\n", @@ -32218,7 +28692,7 @@ "Espectacular toma de Sandy sobre NY. http://t.co/xkluCRDu\n", "\n", "--------------------------------------------------------\n", - "espectacular toma sandy ny \n", + "espectacular toma sandy new york \n", "\n", "\n", "Sandy sacó a este tiburon a la calle #SandyHuracán http://t.co/csKfVWeb\n", @@ -32230,13 +28704,13 @@ "Sandy ha hecho que ir por la calle y encontrarte esto sea lo mas normal del mundo en New Jersey. http://t.co/mmcuhBCw\n", "\n", "--------------------------------------------------------\n", - "sandy hecho ir calle encontrarte mas normal mundo new jersey \n", + "sandyhecho ir calle encontrarte normal mundo new jersey \n", "\n", "\n", "OLHA O FURACÃO SANDY EM NY http://t.co/YZgQnZoO que medo cara\n", "\n", "--------------------------------------------------------\n", - "olha furacão sandy em ny medo cara \n", + "olo furacão sandy new york medo \n", "\n", "\n", "Awww “@whiteboytatted: Hurricane sandy be thankful for what you have id save my dog also http://t.co/lPiAIncc”\n", @@ -32254,7 +28728,7 @@ "oh God, kindly save people there RT @MrAcconci: Amazing picture of Hurricane Sandy http://t.co/31wNUvGl\n", "\n", "--------------------------------------------------------\n", - "oh god kindly save people \n", + "god kindly save people \n", "\n", "\n", "“@_NICH_ Our prayers got out to everyone effected by this hurricane Sandy.. These are guards still holding there post http://t.co/gNQgfir6”\n", @@ -32272,7 +28746,7 @@ "Crazy Shot of NYC w/ Hurricane Sandy on the Move http://t.co/nMDashvh\n", "\n", "--------------------------------------------------------\n", - "crazy shot nyc w hurricane sandy move \n", + "crazy shot new york city w hurricane sandy move \n", "\n", "\n", "God's creations are beautiful. Please pray for those being affected by hurricane sandy. #havefaith #pray #go http://t.co/lCPLgbW8\n", @@ -32290,7 +28764,7 @@ "You know Hurricane Sandy is angry when sharks show up by your porch mhm *not my photo* #hurricanesandy #shar http://t.co/AA1qUdOo\n", "\n", "--------------------------------------------------------\n", - "know hurricane sandy angry sharks show porch mhm photo hurricanesandy shar \n", + "know hurricane sandy angry sharks show porch mhm photo hurricane sandy shar \n", "\n", "\n", "I hope that everyone in New York are safe from hurricane sandy. Property can be replaced but lives can't! ❤ http://t.co/nku8J4yx\n", @@ -32302,13 +28776,13 @@ "Hurricane Sandy about to hit NYC via @sirgutz http://t.co/wiz5FC3f\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hit nyc \n", + "hurricane sandy hit new york city \n", "\n", "\n", "Essential personnel reported to work for Hurricane Sandy #TombOfTheUnknownSoldier #ArlingtonNationalCemetery http://t.co/0Tl0aGj0\n", "\n", "--------------------------------------------------------\n", - "essential personnel reported work hurricane sandy tomboftheunknownsoldier arlingtonnationalcemetery \n", + "essential personnel reported work hurricane sandy tomboftheunknown soldier arlingtonnationalcemetery \n", "\n", "\n", "이거 멋지다 해야 하나? ㅎㄷㄷ\\n\\nRT @estima7 초현실적인 사진... RT @woosungahn: Hurricane Sandy http://t.co/1IpSWech unbelievable..\n", @@ -32320,19 +28794,13 @@ "Insane pic of Hurricane Sandy approaching NYC. http://t.co/INZISIjh\n", "\n", "--------------------------------------------------------\n", - "insane pic hurricane sandy approaching nyc \n", + "insane pic hurricane sandy approaching new york city \n", "\n", "\n", "“@Kellie_Kellz Hurricane Sandy coming in over NY....look like something out of a movie! Stay safe! http://t.co/ngwI1iga” o woww\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy coming ny look like something movie stay safe woww \n", - "\n", - "\n", - "@thegame: Damn, Hurricane Sandy got sharks swimming thru the neighborhood !!!! #ShitJustGotReal http://t.co/ORbTzwVX\n", - "\n", - "--------------------------------------------------------\n", - "damn hurricane sandy got sharks swimming thru neighborhood shitjustgotreal \n", + "hurricane sandy coming new york look like something movie stay safe w \n", "\n", "\n", "Prayers going out to everyone that is affected by Hurricane Sandy 🙏🙏🙏 http://t.co/pY5ZRpPL\n", @@ -32344,7 +28812,7 @@ "Hurricane Sandy shit.... Smh http://t.co/YkzUEg5h\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy shit smh \n", + "hurricane sandy shit \n", "\n", "\n", "http://t.co/u8LyfBg5 Hurricane Sandy...... miedazo\n", @@ -32356,7 +28824,7 @@ "Hurricane Sandy over NYC #nofilter http://t.co/gwY9zJGA\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc nofilter \n", + "hurricane sandy new york city nofilter \n", "\n", "\n", "These guys don't even stop for hurricane sandy. Major respect #tombguards #respect http://t.co/QKipFe4X\n", @@ -32368,13 +28836,13 @@ "Hurricane Sandy approaching Ny City...!!!!! 😱😱😱😱😱 http://t.co/cPfiSDiA\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy approaching ny city \n", + "hurricane sandy approaching new york city \n", "\n", "\n", "Hiu sampe ke tgh kota gitu?@irtif: *hah* #sandy \"@thegame: Damn, Hurricane Sandy got sharks swimming #ShitJustGotReal http://t.co/nITxQu1l\n", "\n", "--------------------------------------------------------\n", - "hiu sampe ke tgh kota gitu hah sandy damn hurricane sandy got sharks swimming shitjustgotreal \n", + "hiu sampe tgh kota gitu \n", "\n", "\n", "Even during hurricane sandy the Marines are There guarding! http://t.co/m8ebEpWe\n", @@ -32392,7 +28860,7 @@ "Hurricane Sandy got sharks swimming infront of peoples houses!!!!! Omg http://t.co/pMNFhWUT\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy got sharks swimming infront peoples houses omg \n", + "hurricane sandy got sharks swimming infront peoples houses \n", "\n", "\n", "HURRICANE SANDY #reggaeton #ps3 #pimp #puertorican #prettyboyswag #swagga #dembow #flow #hiphop #hurricanesa http://t.co/ayuadzxd\n", @@ -32422,7 +28890,7 @@ "Hurricane \"Frankenstorm\" Sandy. Incredible. #hurricane #NewYork #amazing #disaster http://t.co/NBVF82Uh\n", "\n", "--------------------------------------------------------\n", - "hurricane frankenstorm sandy incredible hurricane newyork amazing disaster \n", + "hurricane frankenstorm sandy incredible hurricane new york amazing disaster \n", "\n", "\n", "Sandy Hurricane is coming... http://t.co/NzIuiveD\n", @@ -32431,16 +28899,10 @@ "sandy hurricane coming \n", "\n", "\n", - "Hurricane Sandy. Wow http://t.co/ykIdq5Op\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy wow \n", - "\n", - "\n", "Hurricane sandy looks immense over NY http://t.co/xUKjmfcv\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy looks immense ny \n", + "hurricane sandy looks immense new york \n", "\n", "\n", "Hurricane Sandy over New York. #Armageddon #DarknessIsbreaking #WindowsAreShaking #IthasBegun #HurricaneSand http://t.co/NUkUP5Fm\n", @@ -32452,7 +28914,7 @@ "hurricane sandy😱 #shitscrazy #realphoto #nofilter #statueofliberty #newyork http://t.co/y6nmCmXt\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy shitscrazy realphoto nofilter statueofliberty newyork \n", + "hurricane sandy shitscrazy realphoto nofilter statueofliberty new york \n", "\n", "\n", "Hurricane Sandy in New York! Beautiful but scary! Stay safe familial http://t.co/8AD3IQ0R\n", @@ -32467,12 +28929,6 @@ "real hurricane sandy \n", "\n", "\n", - "wow, amazing photo RT @I_FlyPlanez: Pretty sick photo of Hurricane Sandy approaching NYC 🗽 http://t.co/zANapt54\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing photo \n", - "\n", - "\n", "Picture someone took during hurricane Sandy! #crazy #sharktank #hirricanesandy #praying http://t.co/WipZOtDV\n", "\n", "--------------------------------------------------------\n", @@ -32482,25 +28938,19 @@ "Hurricane Sandy #sandy #hurricanesandy #nofilter http://t.co/qfED0PWv\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy sandy hurricanesandy nofilter \n", + "hurricane sandy sandy hurricane sandy nofilter \n", "\n", "\n", "Awe, I'd do the same!!! 🐶❤ RT“@whiteboytatted: Hurricane sandy be thankful for what you have id save my dog also http://t.co/V2paLlNT”\n", "\n", "--------------------------------------------------------\n", - "awe \n", - "\n", - "\n", - "Our prayers got out to everyone effected by this hurricane Sandy.. These are guards still holding there post http://t.co/KvXrmuuE\n", - "\n", - "--------------------------------------------------------\n", - "prayers got everyone effected hurricane sandy guards still holding post \n", + "awe rt \n", "\n", "\n", "Ummm hurricane sandy aint no joke smh http://t.co/z98B5eXA\n", "\n", "--------------------------------------------------------\n", - "ummm hurricane sandy aint joke smh \n", + "ummm hurricane sandy aint joke \n", "\n", "\n", "even through hurricane sandy... #tomb #of #unknown #soldier #honor #dc http://t.co/whw9tVdZ\n", @@ -32524,7 +28974,7 @@ "Wow crazy photo of Hurricane Sandy, NYC. (via mini324 ) http://t.co/lJpVl37I\n", "\n", "--------------------------------------------------------\n", - "wow crazy photo hurricane sandy nyc via mini324 \n", + "crazy photo hurricane sandy new york city mini324 \n", "\n", "\n", "Hurricane Sandy over New York #amazingpicture http://t.co/HKwfHksA\n", @@ -32548,13 +28998,7 @@ "Hurricane Sandy bring sharks to New Jersey \\355\\240\\275\\355\\270\\261 #hurricanesandy #sandy #sandyhurricane #huracan #huracansandy # http://t.co/sSvR2YsZ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy bring sharks new jersey 355 240 275 355 270 261 hurricanesandy sandy sandyhurricane huracan huracansandy \n", - "\n", - "\n", - "Hurricane Sandy... New York. http://t.co/vHymBIVZ\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", + "hurricane sandy bring sharks new jersey4075557061 hurricane sandy sandy sandyhurricane huracan huracansandy \n", "\n", "\n", "You have to admit Hurricane Sandy looks beautiful. http://t.co/cjB0IWFF\n", @@ -32572,19 +29016,13 @@ "Hurricane Sandy Hitting NYC, this looks like some The Day After Tomorrow type shit http://t.co/a7s2aObG\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hitting nyc looks like day tomorrow type shit \n", + "hurricane sandy hitting new york city looks like day tomorrow type shit \n", "\n", "\n", "I'm not sure if this picture a friend sent me of Hurricane Sandy approaching NYC is real or not (unfortunately I... http://t.co/AkTvVbnQ\n", "\n", "--------------------------------------------------------\n", - "sure picture friend sent hurricane sandy approaching nyc real unfortunately \n", - "\n", - "\n", - "Hurricane Sandy ;A;; http://t.co/TxkunEIx\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "sure picture friend sent hurricane sandy approaching new york city real unfortunately \n", "\n", "\n", "Hurricane Sandy. #pray http://t.co/ez1Net5b\n", @@ -32605,22 +29043,10 @@ "stand guard hurricane sandy ppl cant even quiet formation \n", "\n", "\n", - "Whoa! Is this real? “@lesegoworld: New York, hurricane sandy is here...real pic taken today via Scooter http://t.co/pDdj18Gd”\n", - "\n", - "--------------------------------------------------------\n", - "whoa real \n", - "\n", - "\n", - "Hurricane sandy wow http://t.co/Ng0m03qr\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy wow \n", - "\n", - "\n", "Hurricane Sandy over NYC #clouds #NYC http://t.co/lw3aW4Zt\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc clouds nyc \n", + "hurricane sandy new york city clouds new york city \n", "\n", "\n", "so crazy..that is literally a shark swimming in someones front yard in new jersey. hurricane Sandy is destro http://t.co/rPbmijoN\n", @@ -32644,13 +29070,7 @@ "Holy hurricane! Just saw this pic of Hurricane Sandy approaching NYC. Praying for all of the amazing people http://t.co/oOlbgH0x\n", "\n", "--------------------------------------------------------\n", - "holy hurricane saw pic hurricane sandy approaching nyc praying amazing people \n", - "\n", - "\n", - "Hurricane Sandy>>> http://t.co/QuEoomNS\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy greater greater greater \n", + "holy hurricane saw pic hurricane sandy approaching new york city praying amazing people \n", "\n", "\n", "Even during Hurricane Sandy http://t.co/rrX1KePo\n", @@ -32659,12 +29079,6 @@ "even hurricane sandy \n", "\n", "\n", - "@TayIsMySunshine: OMFG OMFG OMFG HURRICANE SANDY I HOPE EVERYONE IN NEW YORK STAY SAFE OMG THIS IS INSANE. http://t.co/xY8XucmA WHOA!!!!\n", - "\n", - "--------------------------------------------------------\n", - "omfg omfg omfg hurricane sandy hope everyone new york stay safe omg insane whoa \n", - "\n", - "\n", "looks so damn fresh RT @Khanvict24: Hurricane Sandy around Lady Liberty 🗽 http://t.co/NYiJQqDZ\n", "\n", "--------------------------------------------------------\n", @@ -32695,12 +29109,6 @@ "hurricane sandy approaching new york scary \n", "\n", "\n", - "http://t.co/MtefDg4m New York with hurricane sandy!\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricane sandy \n", - "\n", - "\n", "Ok, now the Hurricane Sandy pics are getting outrageously unbelievable! http://t.co/G8bxTfYi\n", "\n", "--------------------------------------------------------\n", @@ -32710,13 +29118,13 @@ "Siick picture, NYC & Hurricane Sandy http://t.co/aXBnS95Y\n", "\n", "--------------------------------------------------------\n", - "siick picture nyc hurricane sandy \n", + "siick picture new york city hurricane sandy \n", "\n", "\n", "This is a dope pic. Hurricane Sandy approaching NY http://t.co/vXFg4KaY\n", "\n", "--------------------------------------------------------\n", - "dope pic hurricane sandy approaching ny \n", + "dope pic hurricane sandy approaching new york \n", "\n", "\n", "This makes me so sad. 😔 These poor soldiers have to stay out during hurricane sandy http://t.co/39U8j7zy\n", @@ -32728,13 +29136,13 @@ "Since 1937, the tomb guards have never left their post. Hurricane Sandy will be no exception. Keep these sol http://t.co/scLK1MdD\n", "\n", "--------------------------------------------------------\n", - "since 1937 tomb guards never left post hurricane sandy exception keep sol \n", + "since937 tomb guards never left post hurricane sandy exception keep sol \n", "\n", "\n", "Hurricane Sandy is visiting New York. Yikes. http://t.co/R00jWB4r\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy visiting new york yikes \n", + "hurricane sandy visiting new york \n", "\n", "\n", "A side pic of Hurricane Sandy in New York... This is amazing http://t.co/Q3J6QSRU\n", @@ -32758,7 +29166,7 @@ "Hurricane Sandy over NYC! 💨💧☁☔🌊 Omg #scared #hurricanesandy #wtf http://t.co/PCAUeYkO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc omg scared hurricanesandy wtf \n", + "hurricane sandy new york city scared hurricane sandy \n", "\n", "\n", "As hurricane sandy hits the east coast, we wish the best for our east coast viewers. Stay safe every body http://t.co/A48slQ3q\n", @@ -32767,40 +29175,28 @@ "hurricane sandy hits east coast wish best east coast viewers stay safe every body \n", "\n", "\n", - "@lovesKlaine: Is this real?! The hurricane sandy? http://t.co/DSQgwXRv omg\n", - "\n", - "--------------------------------------------------------\n", - "real hurricane sandy omg \n", - "\n", - "\n", - "Hurricane sandy #Nyc http://t.co/M5PWG8M0\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", "hurricane Sandy on NY are you kIDDING me IF THERE WERE A HURRICANE I'M PRETTY SURE NO ONE WOULD BE ON A BOAT http://t.co/6xxUvH9E\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy ny kidding hurricane pretty sure one would boat \n", + "hurricane sandy new york kidding hurricane pretty sure one would boat \n", "\n", "\n", "@silversalted komt mooi aan. Hurricane Sandy approaching NYC photo: http://t.co/v53FbpFA http://t.co/jDsztgBr\n", "\n", "--------------------------------------------------------\n", - "komt mooi hurricane sandy approaching nyc photo \n", + "komt mooi hurricane sandy approaching new york city photo \n", "\n", "\n", "There are some things Hurricane Sandy can't stop. This is POWERFUL! #USA #regram @rickilikelake http://t.co/70VwkalS\n", "\n", "--------------------------------------------------------\n", - "things hurricane sandy stop powerful usa regram \n", + "things hurricane sandy stop powerful usa \n", "\n", "\n", "Hurricane sandy in New York Diri sa L.A earthquake unsa namani sa Pinas safe kaayo http://t.co/CgfJ1JAa\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy new york diri sa l earthquake unsa namani sa pinas safe kaayo \n", + "hurricane sandy new york earthquake unsa namani pinas safe kaa \n", "\n", "\n", "An insane picture of hurricane sandy approaching new York #myprayersgoouttothem #staysafe http://t.co/WzrrvZEs\n", @@ -32815,12 +29211,6 @@ "almost everyone east coast taken refuge hurricane sandy almost soldiers guarding \n", "\n", "\n", - "Hurricane Sandy #sandy http://t.co/YguIy9rv\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy sandy \n", - "\n", - "\n", "Amazing yet terrifying image of New York Yesterday when Hurricane Sandy hit. #Amazing #Terrifying #Scary #Ph http://t.co/ZU2Dr898\n", "\n", "--------------------------------------------------------\n", @@ -32836,13 +29226,13 @@ "This is supposed to be an actual photo of NYC with hurricane sandy brewing above it. :o hope everyone there http://t.co/06FaMIxn\n", "\n", "--------------------------------------------------------\n", - "supposed actual photo nyc hurricane sandy brewing hope everyone \n", + "supposed actual photo new york city hurricane sandy brewing hope everyone \n", "\n", "\n", "The Hurricane Sandy is good active 145-185KM per uur http://t.co/kEYceZF9\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy good active 145 185km per uur \n", + "hurricane sandy good active4585km uur \n", "\n", "\n", "Loyalty, Duty, Respect, Selfless Service, Honor, Integrity & Personal Courage!!! Not even Hurricane Sandy ca http://t.co/IFuKGoDt\n", @@ -32863,22 +29253,10 @@ "hurricane sandy take care friends east ciast side pls safe sandy repost \n", "\n", "\n", - "Hurricane Sandy by Lady Liberty. http://t.co/MtCXqsNf\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy lady liberty \n", - "\n", - "\n", "Va. Beach - Hurricane Sandy Date: October 29, 2012 06:35AM\\n\\nNo Egg McMuffin for you this morning ... Smh http://t.co/39eI6ztc\n", "\n", "--------------------------------------------------------\n", - "va beach hurricane sandy date october 29 2012 06 35am egg mcmuffin morning smh \n", - "\n", - "\n", - "wow! God bless... RT @toxinews: New York today with Hurricane Sandy bearing down https://t.co/f1kmoEjj\n", - "\n", - "--------------------------------------------------------\n", - "wow god bless \n", + "va beach hurricane sandy date october9265am egg mcmuffin morning \n", "\n", "\n", "So much respect for these guys guarding this tomb through hurricane sandy. This has been continuously guarde http://t.co/x7ljtKOu\n", @@ -32890,61 +29268,31 @@ "🚷Holyshit🐟🌊Hurricane Sandy. Finding nemo. LOL http://t.co/SRMFff4H\n", "\n", "--------------------------------------------------------\n", - "holyshit hurricane sandy finding nemo lol \n", - "\n", - "\n", - "Hurricane Sandy ...!!! http://t.co/xyOGzjow\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "holyshit hurricane sandy finding nemo \n", "\n", "\n", "القروش تسبح في شوارع نيوجرسي والإعصار لم يصل بعد !!! الله يستر ):\\n#إعصار_ساندي Hurricane Sandy http://t.co/qrJH5i2l”\n", "\n", "--------------------------------------------------------\n", - "القروش تسبح شوارع نيوجرسي والإعصار يصل الله يستر إعصار ساندي hurricane sandy \n", + "القروش تسبح شوارع نيوجرسي والإعصار يصل الله يستر إعصارساندي hurricane sandy \n", "\n", "\n", "Damn, Hurricane Sandy got sharks swimming thru the neighborhood !!!! #ShitJustGotReal http://t.co/DMXUw33E\n", "\n", "--------------------------------------------------------\n", - "damn hurricane sandy got sharks swimming thru neighborhood shitjustgotreal \n", + "damn hurricane sandy got sharks swimming neighborhood shitjustgotreal \n", "\n", "\n", "The power of nature, view of Hurricane sandy NY http://t.co/uv6yBogx\n", "\n", "--------------------------------------------------------\n", - "power nature view hurricane sandy ny \n", - "\n", - "\n", - "Hurricane Sandy in New York. http://t.co/R88kylRG\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", - "\n", - "\n", - "Hurricane Sandy in New York City now: http://t.co/LZOOKy2F\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york city \n", + "power nature view hurricane sandy new york \n", "\n", "\n", "Everyone in Washington D.C. Has boarded up or evacuated as hurricane Sandy @ Brigham Young University-Idaho http://t.co/Eq6VnHyo\n", "\n", "--------------------------------------------------------\n", - "everyone washington c boarded evacuated hurricane sandy brigham young university idaho \n", - "\n", - "\n", - "Before the sandy hurricane http://t.co/dXY1jzDN\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane \n", - "\n", - "\n", - "NYC hurricane Sandy http://t.co/Ysd7G8i6\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricane sandy \n", + "everyone washington boarded evacuated hurricane sandy brigham young university idaho \n", "\n", "\n", "Thoughts and prayer going out to those who were victim to Hurricane Sandy!! #hurr @ Worlds Largest Pine Cone http://t.co/aJhRR7HN\n", @@ -32956,19 +29304,13 @@ "Omfg Hurricane Sandy brought up some sharks.. http://t.co/SkSfhFtS\n", "\n", "--------------------------------------------------------\n", - "omfg hurricane sandy brought sharks \n", - "\n", - "\n", - "Hurricane Sandy in New York http://t.co/77z3jKzk\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", + "hurricane sandy brought sharks \n", "\n", "\n", "Wow!!! What an amazing shot of Hurricane Sandy entering New York. http://t.co/QIp0q4Il\n", "\n", "--------------------------------------------------------\n", - "wow amazing shot hurricane sandy entering new york \n", + "amazing shot hurricane sandy entering new york \n", "\n", "\n", "Time to rethink those plans to fly in/out of LaGuardia. Jetblue @ Frankenstorm Apocalypse - Hurricane Sandy http://t.co/M8stAmIn\n", @@ -32992,7 +29334,7 @@ "Picture of hurricane sandy in NYC #hurricanesandy #nyc #amazing #ohshit #newyork http://t.co/ei5lldgJ\n", "\n", "--------------------------------------------------------\n", - "picture hurricane sandy nyc hurricanesandy nyc amazing ohshit newyork \n", + "picture hurricane sandy new york city hurricane sandy new york city amazing shit new york \n", "\n", "\n", "Sandy hurricane in #US #America #California # http://t.co/5KyZJOyN\n", @@ -33001,12 +29343,6 @@ "sandy hurricane us america california \n", "\n", "\n", - "New York during Hurricane Sandy! http://t.co/YBw0RpbE\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricane sandy \n", - "\n", - "\n", "Very cool picture of Hurricane Sandy as it approaches New York this afternoon http://t.co/5K1CqRlg\n", "\n", "--------------------------------------------------------\n", @@ -33016,7 +29352,7 @@ "OMG NO MY BABY SEAL :(((\"@glorybieber: Look what hurricane sandy did omg http://t.co/A1mmlRLn\"\n", "\n", "--------------------------------------------------------\n", - "omg baby seal \n", + "baby seal \n", "\n", "\n", "Some really insane images and reports regarding Hurricane Sandy. http://t.co/UULwZq6u #besafe\n", @@ -33028,7 +29364,7 @@ "Pretty sick photo of Hurricane Sandy approaching NYC 🗽 http://t.co/3nyD8wyL\n", "\n", "--------------------------------------------------------\n", - "pretty sick photo hurricane sandy approaching nyc \n", + "pretty sick photo hurricane sandy approaching new york city \n", "\n", "\n", "Hurricane sandy is legit as fuck. http://t.co/8icSBwyj\n", @@ -33037,12 +29373,6 @@ "hurricane sandy legit fuck \n", "\n", "\n", - "Hurricane Sandy #newyork http://t.co/SOHbdIlV\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy newyork \n", - "\n", - "\n", "Picture that has been going around today from Hurricane sandy....True Respect http://t.co/gS4uQ7dr\n", "\n", "--------------------------------------------------------\n", @@ -33052,7 +29382,7 @@ "The Day After Tomorrow.. Hurricane Sandy! Weird! #sandy #newyork http://t.co/MLVoEkvr\n", "\n", "--------------------------------------------------------\n", - "day tomorrow hurricane sandy weird sandy newyork \n", + "day tomorrow hurricane sandy weird sandy new york \n", "\n", "\n", "“@Adam93Villegas: Picture someone took during hurricane Sandy! #crazy #sharktank #hirricanesandy #praying http://t.co/nOvrPqKr” hell no dude\n", @@ -33070,7 +29400,7 @@ "Hurricane Sandy doesn't stop these men from protecting the #tomboftheunknownsoldier http://t.co/eay0OARE\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy stop protecting tomboftheunknownsoldier \n", + "hurricane sandy stop protecting tomboftheunknown soldier \n", "\n", "\n", "Shit is real!!! @ Hurricane Sandy http://t.co/U7pBz4PJ\n", @@ -33088,13 +29418,13 @@ "MAAAANNNN GTFOH HURRICANE SANDY!!! #mothernature #scaryshit http://t.co/J5DJ8RAw\n", "\n", "--------------------------------------------------------\n", - "maaaannnn gtfoh hurricane sandy mothernature scaryshit \n", + "maaaannnn gtf hurricane sandy mothernature scaryshit \n", "\n", "\n", "Ladies n Gentlemen. LIVE photo of Hurricane Sandy! Looks like that Will Smith Independence Day ish!!!! http://t.co/b9EwI5I5\n", "\n", "--------------------------------------------------------\n", - "ladies n gentlemen live photo hurricane sandy looks like smith independence day ish \n", + "ladies gentlemen live photo hurricane sandy looks like smith independence day ish \n", "\n", "\n", "Hurricane Sandy is here. Praying really hard for everyone on the east coast! Please stay safe! 💜 http://t.co/TLgptL04\n", @@ -33106,7 +29436,7 @@ "Hurricane Sandy Vs. The Day After Tomorrow..... SO FREAKY. http://t.co/X8l8kRC3\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy vs day tomorrow freaky \n", + "hurricane sandy versus day tomorrow freaky \n", "\n", "\n", "From Hurricane Sandy. Yes, that IS what you see! http://t.co/oB5tfrlw\n", @@ -33133,16 +29463,10 @@ "damn girl \n", "\n", "\n", - "O damn RT @ballergirl34: Hurricane Sandy @ NYC... Jesus #yikes http://t.co/gL0RYm4E\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", - "\n", - "\n", "Hurricane Sandy this morning in New York City! #hurricanesandy #nyc #yyc #storms http://t.co/W2auZRxP\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy morning new york city hurricanesandy nyc yyc storms \n", + "hurricane sandy morning new york city hurricane sandy new york city yyc storms \n", "\n", "\n", "Hurricane Sandy building up in New York. http://t.co/ATWaqHaF\n", @@ -33154,7 +29478,7 @@ "Creepy/Crazy picture of NYC currently....praying for the east coast. My goodness. Hurricane Sandy, you crazy http://t.co/TS0vW22c\n", "\n", "--------------------------------------------------------\n", - "creepy crazy picture nyc currently praying east coast goodness hurricane sandy crazy \n", + "creepy crazy picture new york city currently praying east coast goodness hurricane sandy crazy \n", "\n", "\n", "New York & Hurricane Sandy #nofilter http://t.co/qrRlSnlw\n", @@ -33193,12 +29517,6 @@ "winner funniest hurricane sandy pic \n", "\n", "\n", - "Hurricane Sandy over New York City http://t.co/hSKeosma\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york city \n", - "\n", - "\n", "Hurricane Sandy... Quickly approaching... ☁☁☁☁☁ http://t.co/CQFm25G9\n", "\n", "--------------------------------------------------------\n", @@ -33208,7 +29526,7 @@ "Hurricane Sandy over NYC! https://t.co/cGv3Utes #terrifying\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc terrifying \n", + "hurricane sandy new york city terrifying \n", "\n", "\n", "Hurricane Sandy brought sharks to a fellow New Jersey porches. http://t.co/SapR6xqP\n", @@ -33226,7 +29544,7 @@ "Hahahaha! Not that Hurricane Sandy brought a Walrus to shore ... Or is this a seal ? IDK ! LMFAO http://t.co/wNaBZUfu\n", "\n", "--------------------------------------------------------\n", - "hahahaha hurricane sandy brought walrus shore seal idk lmfao \n", + "hurricane sandy brought walrus shore seal idk \n", "\n", "\n", "So sad! Hurricane Sandy is hitting the East Coast. http://t.co/3UBXJlhP\n", @@ -33238,7 +29556,7 @@ "Hurricane Sandy looks like the movie 2012 http://t.co/1JMOVmMX\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy looks like movie 2012 \n", + "hurricane sandy looks like movie012 \n", "\n", "\n", "Welcome Hurricane sandy #ny1 http://t.co/VTuyfyaP\n", @@ -33250,13 +29568,7 @@ "An amazing photograph taking by photographer Jason Otts of Hurricane Sandy hovering over NYC!!!! Lets pray f http://t.co/M8vXcSEn\n", "\n", "--------------------------------------------------------\n", - "amazing photograph taking photographer jason otts hurricane sandy hovering nyc lets pray f \n", - "\n", - "\n", - "For real?? \"@AlexYudelson: WOW. Photo of Hurricane Sandy approaching NYC: http://t.co/iZ1rN7dV (via @juneambrose)\"\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "amazing photograph taking photographer jason otts hurricane sandy hovering new york city lets pray f \n", "\n", "\n", "Honestly, those three men have heart. They stood there during the whole hurricane sandy storm. They did not http://t.co/H9akFkBL\n", @@ -33301,12 +29613,6 @@ "hurricane sandy looks like mothership independence day \n", "\n", "\n", - "Hurricane Sandy over NYC. #wow http://t.co/jAbOOXGR\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc wow \n", - "\n", - "\n", "Holy Mother..... RT @becklynn: WOW. 🙏🇺🇸💕 RT @NateBruckschen: Holy Hurricane Sandy http://t.co/Yc5cDwGM\n", "\n", "--------------------------------------------------------\n", @@ -33328,7 +29634,7 @@ "Shark swimming on the streets of NJ due to Hurricane Sandy: photo by Kevin P McCarty http://t.co/W4qoUNe9 http://t.co/wvABPjmE\n", "\n", "--------------------------------------------------------\n", - "shark swimming streets nj due hurricane sandy photo kevin p mccarty \n", + "shark swimming streets new jersey due hurricane sandy photo kevin p mccarty \n", "\n", "\n", "Hurricane Sandy brought friends with her. \"New Jersey\" http://t.co/v82o3DwD\n", @@ -33352,13 +29658,7 @@ "@_Patricia_B_ Hurricane Sandy #2012 Ish http://t.co/gJv4nAGn\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy 2012 ish \n", - "\n", - "\n", - "Wow!!!! Hurricane Sandy in New York!!!! http://t.co/n9ijrZtJ\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricane sandy new york \n", + "hurricane sandy012 ish \n", "\n", "\n", "Hurricane sandy. Scary shit http://t.co/FOYgdDoV\n", @@ -33367,42 +29667,18 @@ "hurricane sandy scary shit \n", "\n", "\n", - "A Shark swims in a New Jersey yard that has been flooded by Hurricane Sandy... http://t.co/zcZJV03I\n", - "\n", - "--------------------------------------------------------\n", - "shark swims new jersey yard flooded hurricane sandy \n", - "\n", - "\n", - "Wow Hurricane Sandy http://t.co/Rd9FfF78\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricane sandy \n", - "\n", - "\n", "crazy but awsome pic of hurricane sandy in New York http://t.co/6iKLU8uz\n", "\n", "--------------------------------------------------------\n", "crazy awsome pic hurricane sandy new york \n", "\n", "\n", - "Sandy hurricane. OMG!! http://t.co/6rCLfrV8\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane omg \n", - "\n", - "\n", "Praying for everyone experiencing effects of Hurricane Sandy. Stay safe east coast! http://t.co/jRwJWxGG\n", "\n", "--------------------------------------------------------\n", "praying everyone experiencing effects hurricane sandy stay safe east coast \n", "\n", "\n", - "sandy hurricane over NY http://t.co/14ilB5rQ\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane ny \n", - "\n", - "\n", "swillivision -- hurricane Sandy #whata'Bitch http://t.co/xIUJ9JoL\n", "\n", "--------------------------------------------------------\n", @@ -33418,13 +29694,13 @@ "Hurricane Sandy in NYC. O___O http://t.co/Dcrg0Jn4\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc \n", + "hurricane sandy new york city oo \n", "\n", "\n", "Hurricane Sandy update: floods in NY Subway #sandy #newyork http://t.co/QIAjqQNV via Jeremy\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy update floods ny subway sandy newyork via jeremy \n", + "hurricane sandy update floods new york subway sandy new york jeremy \n", "\n", "\n", "Day After Tomorrow in New York starring Hurricane Sandy http://t.co/XIDSTUM8\n", @@ -33442,7 +29718,7 @@ "Shot of NY during Hurricane Sandy #NewYork #Sandy #Nature #Beautiful http://t.co/GEQDZFfa\n", "\n", "--------------------------------------------------------\n", - "shot ny hurricane sandy newyork sandy nature beautiful \n", + "shot new york hurricane sandy new york sandy nature beautiful \n", "\n", "\n", "The US Army old guard still protecting #TheTombOfTheUnkownSoldier during hurricane sandy! #Respect #Military http://t.co/4NjodYMT\n", @@ -33520,19 +29796,13 @@ "Hurricane Sandy. amazing shot! | johntanjohnny's photo http://t.co/nIyRr7hP\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy amazing shot johntanjohnny photo \n", - "\n", - "\n", - "Sandy Hurricane @ New York http://t.co/AgfkiF3d\n", - "\n", - "--------------------------------------------------------\n", - "sandy hurricane new york \n", + "hurricane sandy amazing shot jntanjnny photo \n", "\n", "\n", "Hurricane Sandy hovers over NYC http://t.co/3esLKLWl\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hovers nyc \n", + "hurricane sandy hovers new york city \n", "\n", "\n", "Hurricane Sandy officially retreats into the ocean, with all his friends of destruction. Thoughts go out to http://t.co/no4ur0Fw\n", @@ -33544,7 +29814,7 @@ "#Repost Hurricane Sandy @msebony1987 #NY http://t.co/aN3fijkA\n", "\n", "--------------------------------------------------------\n", - "repost hurricane sandy ny \n", + "repost hurricane sandy new york \n", "\n", "\n", "Hurricane sandy this is a real photo http://t.co/YMMpw6Ps\n", @@ -33556,7 +29826,7 @@ "Omfg, I hope all my followers that may be affected by Hurricane Sandy are all safe. Take care guys <}3 x http://t.co/k0psFBp1\n", "\n", "--------------------------------------------------------\n", - "omfg hope followers may affected hurricane sandy safe take care guys less 3 x \n", + "hope followers may affected hurricane sandy safe take care guys x \n", "\n", "\n", "My prayers are goes out to New York right now... Be safe through hurricane sandy. Picture was taken this mor http://t.co/MX7WI9T8\n", @@ -33577,28 +29847,22 @@ "crazy ass picture hoping hurricane sandy wont cause deaths damages \n", "\n", "\n", - "Damn Hurricane Sandy 😱 http://t.co/n36QqCIo\n", - "\n", - "--------------------------------------------------------\n", - "damn hurricane sandy \n", - "\n", - "\n", "Hurricane Sandy. Unbelievable image. Hold on NY cause I'll be there soon! Stay strong. #ny #hurricane #2012 http://t.co/xa7RbNns\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy unbelievable image hold ny cause soon stay strong ny hurricane 2012 \n", + "hurricane sandy unbelievable image hold new york cause soon stay strong new york hurricane012 \n", "\n", "\n", "NYC today... Hurricane Sandy has shut down so much. Wow. Looks like ghost town. http://t.co/oEmZ7QTp\n", "\n", "--------------------------------------------------------\n", - "nyc today hurricane sandy shut much wow looks like ghost town \n", + "new york city today hurricane sandy shut much looks like ghost town \n", "\n", "\n", "Wow hurricane Sandy is really doing a number! http://t.co/XUGkcPue\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy really number \n", + "hurricane sandy really number \n", "\n", "\n", "New York! Hurricane Sandy\\n#Crazy #Weather http://t.co/BaZLWDn7\n", @@ -33613,16 +29877,10 @@ "holy shit look hurricane sandy \n", "\n", "\n", - "@AlexYudelson: WOW. Photo of Hurricane Sandy approaching NYC: http://t.co/NuaDdqqR (via @juneambrose) @SassMonstre\n", - "\n", - "--------------------------------------------------------\n", - "wow photo hurricane sandy approaching nyc \n", - "\n", - "\n", "#NYC#hurricane#sandy#EllisIsland @ Hurricane Sandy http://t.co/xhMQuqnc\n", "\n", "--------------------------------------------------------\n", - "nyc hurricane sandy ellisisland hurricane sandy \n", + "nychurricane sandyellisisland hurricane sandy \n", "\n", "\n", "Hurricane Sandy isn't messing around. http://t.co/8rBr5QaJ\n", @@ -33640,13 +29898,7 @@ "As Hurricane Sandy Entered NYC earlier. #Crazy http://t.co/pmRBDc6G\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy entered nyc earlier crazy \n", - "\n", - "\n", - "“@hannahh_daviss: Is it true that Hurricane Sandy washed sharks into the streets? http://t.co/JT0VoJhU” that is terrifying!\n", - "\n", - "--------------------------------------------------------\n", - "terrifying \n", + "hurricane sandy entered new york city earlier crazy \n", "\n", "\n", "Hoping that Hurricane Sandy is going to take it easy on New York City! ...and Long Island 😫 #scary #storm #f http://t.co/yUqjtN6Y\n", @@ -33664,7 +29916,7 @@ "NYC welcomes hurricane Sandy!! Have fun with that. http://t.co/xoMdVOgu\n", "\n", "--------------------------------------------------------\n", - "nyc welcomes hurricane sandy fun \n", + "new york city welcomes hurricane sandy fun \n", "\n", "\n", "Someone's picture from hurricane sandy! http://t.co/KeX5QhiB\n", @@ -33691,12 +29943,6 @@ "hurricane sandy scary \n", "\n", "\n", - "Hurricane Sandy. We are coming for you. http://t.co/WLWJ8krG\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy coming \n", - "\n", - "\n", "Thats bad ass RT @BuckerrShnaperr: Hurricane sandy ain't stopping them #RESPECT http://t.co/GXSLYfDc\n", "\n", "--------------------------------------------------------\n", @@ -33709,12 +29955,6 @@ "hurricane sandy playin games games \n", "\n", "\n", - "Hurricane Sandy 🙏 #NYC 😳 http://t.co/n4ACJJJy\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", "“@whiteboytatted Hurricane sandy be thankful for what you have id save my dog also http://t.co/BJz6qGPs”\n", "\n", "--------------------------------------------------------\n", @@ -33724,7 +29964,7 @@ "와우!!! @woosungahn: Hurricane Sandy http://t.co/5pOzJ9vx unbelievable..\"\n", "\n", "--------------------------------------------------------\n", - "와우 hurricane sandy unbelievable \n", + "와우 \n", "\n", "\n", "Shark swimming through streets from hurricane sandy!!! http://t.co/uvSMUrLA\n", @@ -33760,7 +30000,7 @@ "Hurricane Sandy no joke... Keep prayers goin http://t.co/6H7vBLJh\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy joke keep prayers goin \n", + "hurricane sandy joke keep prayers going \n", "\n", "\n", "Holy cow hurricane Sandy!! http://t.co/artuOQ95\n", @@ -33778,7 +30018,7 @@ "NYC looks like this right now! Hurricane sandy you truly are something! http://t.co/zin8Anjs\n", "\n", "--------------------------------------------------------\n", - "nyc looks like right hurricane sandy truly something \n", + "new york city looks like right hurricane sandy truly something \n", "\n", "\n", "No words to explain this sight during hurricane sandy. \\nhttp://t.co/eVuvIyeb\n", @@ -33790,7 +30030,7 @@ "Crazy pic of Hurricane Sandy, hope people in NY are ok #BeSafe http://t.co/3W0h6g7b\n", "\n", "--------------------------------------------------------\n", - "crazy pic hurricane sandy hope people ny ok besafe \n", + "crazy pic hurricane sandy hope people new york ok besafe \n", "\n", "\n", "Respectable beyond belief. Hurricane Sandy has no effect. http://t.co/Odo1cTgm\n", @@ -33802,19 +30042,13 @@ "Hurricane Sandy edging towards New York... Stay safe everyone! ❤ #hurricanesandy http://t.co/Ci0RCetO\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy edging towards new york stay safe everyone hurricanesandy \n", - "\n", - "\n", - "Hurricane Sandy at New York. http://t.co/wkekGqz5\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", + "hurricane sandy edging towards new york stay safe everyone hurricane sandy \n", "\n", "\n", "Hurricane Sandy approaches NYC. #BeSafeEastCoast http://t.co/zpUPRiNs http://t.co/myypP0op\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy approaches nyc besafeeastcoast \n", + "hurricane sandy approaches new york city besafeeastcoast \n", "\n", "\n", "Hurricane Sandy http://t.co/tsSJLDvN unbelievable..\n", @@ -33847,18 +30081,6 @@ "may god people leave east coast hurricane sandy joke \n", "\n", "\n", - "Hurricane sandy be thankful for what you have id save my dog also http://t.co/6rWQxHom\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy thankful id save dog also \n", - "\n", - "\n", - "@JaimeP6: Hurricane Sandy .. #Sharks Everywhere #cnnireport #googlepics #sharks #omg 😱💨💧🚣☔💦 http://t.co/7ZRjCLGf real?!\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy sharks everywhere cnnireport googlepics sharks omg real \n", - "\n", - "\n", "Let's all take a moment to see this picture, just to understand a bit about the Sandy Hurricane. http://t.co/uU4qwjih\n", "\n", "--------------------------------------------------------\n", @@ -33901,12 +30123,6 @@ "天啦 \n", "\n", "\n", - "Hurricane sandy New York http://t.co/R9H2FqMz\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", - "\n", - "\n", "Hurricane Sandy u got to chill a shark in somebody from yard http://t.co/Jl4WxIsJ\n", "\n", "--------------------------------------------------------\n", @@ -33928,7 +30144,7 @@ "Wow! Photo of Hurricane Sandy approaching NYC. Please pray for residents. http://t.co/UkK9eCL4\n", "\n", "--------------------------------------------------------\n", - "wow photo hurricane sandy approaching nyc please pray residents \n", + "photo hurricane sandy approaching new york city please pray residents \n", "\n", "\n", "Hurricane sandy flooding neighborhoods with sharks thats my girl http://t.co/4YBRNCWg\n", @@ -33937,22 +30153,16 @@ "hurricane sandy flooding neighborhoods sharks thats girl \n", "\n", "\n", - "even through hurricane Sandy ❤ http://t.co/yeVR6XTT\n", - "\n", - "--------------------------------------------------------\n", - "even hurricane sandy \n", - "\n", - "\n", "SHARKS ARE BEING WASHED UP THOSE AFFECTED BY HURRICANE SANDY IM PRAYIN FOR Y'ALL http://t.co/RJUDGehM\n", "\n", "--------------------------------------------------------\n", - "sharks washed affected hurricane sandy im prayin \n", + "sharks washed affected hurricane sandy prayin \n", "\n", "\n", "Pray for these men today as Hurricane Sandy goes through DC. They stand guard 24/7 🇺🇸 http://t.co/sDdP1roR\n", "\n", "--------------------------------------------------------\n", - "pray today hurricane sandy goes dc stand guard 24 7 \n", + "pray today hurricane sandy goes dc stand guard4 \n", "\n", "\n", "One of the Bronx zoo escapees!!!! Thanks #SANDY #PRISONBREAK!! 😹😹😹😹😹🐾 http://t.co/NjySGnqy\n", @@ -33964,7 +30174,7 @@ "#timesquare #sandy #hurricanesandy http://t.co/eRVJMWSX\n", "\n", "--------------------------------------------------------\n", - "timesquare sandy hurricanesandy \n", + "timesquare sandy hurricane sandy \n", "\n", "\n", "#Sandy looks like footage out of a movie. My office stares right at the statue of liberty. #zone A http://t.co/ORNfNg9O\n", @@ -33976,7 +30186,7 @@ "Awesome picture. @NewYorkPost: Watch duty at Tomb of the Unknowns during #sandy http://t.co/YadsJwMp}\n", "\n", "--------------------------------------------------------\n", - "awesome picture watch duty tomb unknowns sandy \n", + "awesome picture \n", "\n", "\n", "Good men “@NewYorkPost: Watch duty at Tomb of the Unknowns during #sandy http://t.co/Fp8n0Zo0”\n", @@ -33985,6 +30195,12 @@ "good \n", "\n", "\n", + "MT \"RT @samir: OMG at this pic of soldiers currently at the Tomb of the Unknowns in DC. http://t.co/lDefWYS0” #HurricaneSandy 🌊☔⚡💨💦\n", + "\n", + "--------------------------------------------------------\n", + "mt \n", + "\n", + "\n", "Look at this RT @NewYorkPost: Watch duty at Tomb of the Unknowns during #sandy http://t.co/iFiKgAKs\n", "\n", "--------------------------------------------------------\n", @@ -34009,22 +30225,16 @@ "watch duty tomb unknowns hurricane sandy proudtobeamerican \n", "\n", "\n", - "“@J7mster OMG at this pic of soldiers currently at the Tomb of the Unknowns in DC. #Sandy http://t.co/eUnuYpZk”\n", - "\n", - "--------------------------------------------------------\n", - "omg pic soldiers currently tomb unknowns dc sandy \n", - "\n", - "\n", "I love this country! Watch duty at Tomb of the Unknowns during #HurricaneSandy. This is Incredible. http://t.co/lyfF5L1T\n", "\n", "--------------------------------------------------------\n", - "love country watch duty tomb unknowns hurricanesandy incredible \n", + "love country watch duty tomb unknowns hurricane sandy incredible \n", "\n", "\n", "OMG at this pic of soldiers currently at the Tomb of the Unknowns in DC. http://t.co/MRQn0IaK via @samir #hurricane #sandy\n", "\n", "--------------------------------------------------------\n", - "omg pic soldiers currently tomb unknowns dc hurricane sandy \n", + "pic soldiers currently tomb unknowns dc hurricane sandy \n", "\n", "\n", "Watch duty at Tomb of the Unknowns during #sandy http://t.co/F1nqe29B\n", @@ -34033,286 +30243,232 @@ "watch duty tomb unknowns sandy \n", "\n", "\n", - "Watch duty at Tomb of the Unknowns during #sandy. This is America. http://t.co/Uz2e5aAi\n", - "\n", - "--------------------------------------------------------\n", - "watch duty tomb unknowns sandy america \n", - "\n", - "\n", "Just saw this online. Crazy picture of the Statue of Liberty right now. Stay safe! #HurricaneSandy http://t.co/vI9ZbDty\n", "\n", "--------------------------------------------------------\n", - "saw online crazy picture statue liberty right stay safe hurricanesandy \n", + "saw online crazy picture statue liberty right stay safe hurricane sandy \n", "\n", "\n", "#HurricaneSandy #NewYork not my photo but beautiful & deadly so had to share! http://t.co/WbMiYyCk\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork photo beautiful deadly share \n", + "hurricane sandy new york photo beautiful deadly share \n", "\n", "\n", "A bit scary but so beautiful. Stay safe everyone. #hurricanesandy #statueofliberty #nyc http://t.co/rnSAuYcZ\n", "\n", "--------------------------------------------------------\n", - "bit scary beautiful stay safe everyone hurricanesandy statueofliberty nyc \n", + "bit scary beautiful stay safe everyone hurricane sandy statueofliberty new york city \n", "\n", "\n", "NYC this afternoon... Nature is something else... #stolen #picture #facebook #hurricanesandy http://t.co/lxPtySxA\n", "\n", "--------------------------------------------------------\n", - "nyc afternoon nature something else stolen picture facebook hurricanesandy \n", + "new york city afternoon nature something else stolen picture facebook hurricane sandy \n", "\n", "\n", "mmora93's photo http://t.co/cTi7W3WX that hurricane cray #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "mmora93 photo hurricane cray hurricanesandy \n", + "mmora93 photo hurricane cray hurricane sandy \n", "\n", "\n", "Wow ... incredible pic of #hurricanesandy >> @tylersookochoff's photo http://t.co/8cJ2Q8Mf\n", "\n", "--------------------------------------------------------\n", - "wow incredible pic hurricanesandy greater greater photo \n", - "\n", - "\n", - "#hurricanesandy #omg http://t.co/aClI4XpY\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy omg \n", + "incredible pic hurricane sandy photo \n", "\n", "\n", "New York hot pic #hurricanesandy stay safe http://t.co/HofQwnJy ... stolen from @adelamusic\n", "\n", "--------------------------------------------------------\n", - "new york hot pic hurricanesandy stay safe stolen \n", + "new york hot pic hurricane sandy stay safe stolen \n", "\n", "\n", "Someone post this from this hurricane shyts crazy #Sharks #Water #hurricanesandy http://t.co/4Y1ehK90\n", "\n", "--------------------------------------------------------\n", - "someone post hurricane shyts crazy sharks water hurricanesandy \n", + "someone post hurricane shyts crazy sharks water hurricane sandy \n", "\n", "\n", "a SHARK swam up to brigantine.. \\n#hurricanesandy #shitjustgotreal http://t.co/jX1MfrDO\n", "\n", "--------------------------------------------------------\n", - "shark swam brigantine hurricanesandy shitjustgotreal \n", + "shark swam brigantine hurricane sandy shitjustgotreal \n", "\n", "\n", "Hmmmmm i'm supposed to be there in 4 days 😳😕 #HurricaneSandy #NYC http://t.co/7LX0uG8t\n", "\n", "--------------------------------------------------------\n", - "hmmmmm supposed 4 days hurricanesandy nyc \n", - "\n", - "\n", - "#hurricanesandy #NYC #wow http://t.co/SLlothY9\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nyc wow \n", + "hmmmmm supposed days hurricane sandy new york city \n", "\n", "\n", "“@OhMrWonka “@itsWillyFerrell An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/9VTR8q4H””\n", "\n", "--------------------------------------------------------\n", - "insane picture taken today hurricanesandy approaching nyc \n", + "insane picture taken today hurricane sandy approaching new york city \n", "\n", "\n", "All my #NY fam Be safe out there so u can find power o watch my #Heat play #LetsGoHeat #HurricaneSandy #Perf http://t.co/NC5IQNep\n", "\n", "--------------------------------------------------------\n", - "ny fam safe find power watch heat play letsgoheat hurricanesandy perf \n", + "new york fam safe find power watch heat play letsgeat hurricane sandy perf \n", "\n", "\n", "This has to be a chop...can't be real can it. #statueofliberty #hurricanesandy http://t.co/VpckSMkG\n", "\n", "--------------------------------------------------------\n", - "chop real statueofliberty hurricanesandy \n", - "\n", - "\n", - "Even through it all! 🇺🇸 #hurricanesandy http://t.co/hVwFgXg0\n", - "\n", - "--------------------------------------------------------\n", - "even hurricanesandy \n", + "chop real statueofliberty hurricane sandy \n", "\n", "\n", "Sharks swimming around the streets in Brigantine #myhome #crazy #hurricanesandy🌀🌊 http://t.co/Pv7F2udD\n", "\n", "--------------------------------------------------------\n", - "sharks swimming around streets brigantine myhome crazy hurricanesandy \n", - "\n", - "\n", - "Damn #hurricanesandy http://t.co/3QvB0oNy\n", - "\n", - "--------------------------------------------------------\n", - "damn hurricanesandy \n", + "sharks swimming around streets brigantine myhome crazy hurricane sandy \n", "\n", "\n", "Holy shit! That looks scary and bizarre. #HurricaneSandy #NewYork #besafe #prayers http://t.co/v1Cnwfo6\n", "\n", "--------------------------------------------------------\n", - "holy shit looks scary bizarre hurricanesandy newyork besafe prayers \n", - "\n", - "\n", - "http://t.co/EWRbq0Vj look at #HurricaneSandy SMH\n", - "\n", - "--------------------------------------------------------\n", - "look hurricanesandy smh \n", + "holy shit looks scary bizarre hurricane sandy new york besafe prayers \n", "\n", "\n", "#sandy #nyc #jerseycity #nj #hurricanesandy #ibotv http://t.co/WRZiP2bX\n", "\n", "--------------------------------------------------------\n", - "sandy nyc jerseycity nj hurricanesandy ibotv \n", - "\n", - "\n", - "Wow thats insane ! RT @Shelbz92: #HurricaneSandy #NYC http://t.co/W781YkWf\n", - "\n", - "--------------------------------------------------------\n", - "wow thats insane \n", + "sandy new york city jerseycity new jersey hurricane sandy ibotv \n", "\n", "\n", "Cool pic of #hurricanesandy over NYC http://t.co/OeioXwls\n", "\n", "--------------------------------------------------------\n", - "cool pic hurricanesandy nyc \n", + "cool pic hurricane sandy new york city \n", "\n", "\n", "Good luck everyone in NYC #NYC #USA #America #Sandy #HurricaneSandy #StatueOfLiberty #wow #igers #picoftheda http://t.co/MfpzGJ7O\n", "\n", "--------------------------------------------------------\n", - "good luck everyone nyc nyc usa america sandy hurricanesandy statueofliberty wow igers picoftheda \n", + "good luck everyone new york city nyc usa america sandy hurricane sandy statueofliberty igers picoftheda \n", "\n", "\n", "Holy cow. #NYC #HurricaneSandy http://t.co/caBy6Yea\n", "\n", "--------------------------------------------------------\n", - "holy cow nyc hurricanesandy \n", + "holy cow new york city hurricane sandy \n", "\n", "\n", "#holyshit #nyc #newyork #hurricanesandy #crazy http://t.co/jg6IFXgl\n", "\n", "--------------------------------------------------------\n", - "holyshit nyc newyork hurricanesandy crazy \n", + "holyshit new york city new york hurricane sandy crazy \n", "\n", "\n", "No kiddin!!! Look at this pic from the storm in NY! #HurricaneSandy http://t.co/5bIOm2SK\n", "\n", "--------------------------------------------------------\n", - "kiddin look pic storm ny hurricanesandy \n", + "kiddin look pic storm new york hurricane sandy \n", "\n", "\n", "Sharks in the street? Only at the jersey shore. #hurricane #hurricanesandy #shark #streets #nature #hilariou http://t.co/zv7pBQui\n", "\n", "--------------------------------------------------------\n", - "sharks street jersey shore hurricane hurricanesandy shark streets nature hilariou \n", + "sharks street jersey shore hurricane hurricane sandy shark streets nature hilariou \n", "\n", "\n", "#hurricanesandy about to hit dc http://t.co/eryKdMCA\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy hit dc \n", + "hurricane sandy hit dc \n", "\n", "\n", "WOW. SubhanAllah. Amazing photo. #HurricaneSandy http://t.co/WhDdBWKo\n", "\n", "--------------------------------------------------------\n", - "wow subhanallah amazing photo hurricanesandy \n", + "subhanallah amazing photo hurricane sandy \n", "\n", "\n", "Holy shit #sandy #hurricanesandy #statueofliberty #stolen http://t.co/ypqmGvA8\n", "\n", "--------------------------------------------------------\n", - "holy shit sandy hurricanesandy statueofliberty stolen \n", + "holy shit sandy hurricane sandy statueofliberty stolen \n", "\n", "\n", "Holy shiiiiit! #HurricaneSandy http://t.co/FMgGDSsp\n", "\n", "--------------------------------------------------------\n", - "holy shiiiiit hurricanesandy \n", + "holy shiiiiit hurricane sandy \n", "\n", "\n", "Damn #hurricaneSandy is cleaning up that dirty French whore up in #nyc http://t.co/irEXUXLv\n", "\n", "--------------------------------------------------------\n", - "damn hurricanesandy cleaning dirty french whore nyc \n", + "damn hurricane sandy cleaning dirty french whore new york city \n", "\n", "\n", "Da hilft auch kein raketenabwehrschild!! #Hurricanesandy #derzornallahs http://t.co/rBS5qKX4\n", "\n", "--------------------------------------------------------\n", - "da hilft auch kein raketenabwehrschild hurricanesandy derzornallahs \n", + "hilft auch kein raketenabwehrschild hurricane sandy derzornallahs \n", "\n", "\n", "#fFankenstorm is making its way into #NewYorkCity. #sandy #hurricanesandy http://t.co/NZbpCdwm\n", "\n", "--------------------------------------------------------\n", - "ffankenstorm making way newyorkcity sandy hurricanesandy \n", + "ffankenstorm making way new yorkcity sandy hurricane sandy \n", "\n", "\n", "Scary stuff! #HurricaneSandy http://t.co/lq1XJ8I9\n", "\n", "--------------------------------------------------------\n", - "scary stuff hurricanesandy \n", + "scary stuff hurricane sandy \n", "\n", "\n", "This photo terrifies me! #HurricaneSandy #NewYork #HalloweenWeather http://t.co/Ao1RklPU\n", "\n", "--------------------------------------------------------\n", - "photo terrifies hurricanesandy newyork halloweenweather \n", + "photo terrifies hurricane sandy new york halloweenweather \n", "\n", "\n", "No filter needed #hurricanesandy #nyc http://t.co/PhaKFmWN\n", "\n", "--------------------------------------------------------\n", - "filter needed hurricanesandy nyc \n", - "\n", - "\n", - "This is crazy... #hurricanesandy http://t.co/0ZrhMzyO\n", - "\n", - "--------------------------------------------------------\n", - "crazy hurricanesandy \n", + "filter needed hurricane sandy new york city \n", "\n", "\n", "#nyc #hurricanesandy #USA #igers #igdaily #iphone5 #ig_nesia #instalol #instausa #iphonesia #iphonesia #ins http://t.co/0iTjC9O9\n", "\n", "--------------------------------------------------------\n", - "nyc hurricanesandy usa igers igdaily iphone5 ig nesia instalol instausa iphonesia iphonesia ins \n", + "new york city hurricane sandy usa igers igdaily iphone5 ignesia insta instausa iphonesia iphonesia ins \n", "\n", "\n", "Foto de niccccwitttt http://t.co/0XObcLOT #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto niccccwitttt hurricanesandy \n", + "foto niccccwitttt hurricane sandy \n", "\n", "\n", "Sandy has officially introduced herself to Lady Liberty. #hurricanesandy #statueoflibery #nyc http://t.co/QiMDazkr\n", "\n", "--------------------------------------------------------\n", - "sandy officially introduced lady liberty hurricanesandy statueoflibery nyc \n", - "\n", - "\n", - "Shit Just Got Real. #HurricaneSandy http://t.co/4lmGQqcU\n", - "\n", - "--------------------------------------------------------\n", - "shit got real hurricanesandy \n", + "sandy officially introduced lady liberty hurricane sandy statueoflibery new york city \n", "\n", "\n", "My heart and prayers to everyone on the east coast be safe everyone🙏#hurricanesandy #hurricane#sandy#safe#pr http://t.co/WSK56IZp\n", "\n", "--------------------------------------------------------\n", - "heart prayers everyone east coast safe everyone hurricanesandy hurricane sandy safe pr \n", + "heart prayers everyone east coast safe everyone hurricane sandy hurricane sandysafepr \n", "\n", "\n", "Ummmmm, yeah! Deep sea diving in the #TimesSquare train station! #TooReal #hurricanesandy #nyc http://t.co/pQcstBhH\n", "\n", "--------------------------------------------------------\n", - "ummmmm yeah deep diving timessquare train station tooreal hurricanesandy nyc \n", + "ummmmm yeah deep diving timessquare train station tooreal hurricane sandy new york city \n", "\n", "\n", "#sharing #pics #hurricanesandy BE SAFE PEOPLE! #oiga #oigaevents @ http://t.co/MUQK9WvK http://t.co/xSghYzBS\n", "\n", "--------------------------------------------------------\n", - "sharing pics hurricanesandy safe people oiga oigaevents \n", + "sharing pics hurricane sandy safe people oiga oigaevents \n", "\n", "\n", "The world is coming to a end for real o.o RT @kissmyasshleey: #hurricaneSandy just got real http://t.co/jqbyv0M3\n", @@ -34324,235 +30480,217 @@ "#Scary 😱#hurricane #hurricanesandy #statueofliberty http://t.co/QVTT4QgE\n", "\n", "--------------------------------------------------------\n", - "scary hurricane hurricanesandy statueofliberty \n", + "scary hurricane hurricane sandy statueofliberty \n", "\n", "\n", "Supposedly #HurricaneSandy on the east coast looks like #TheDayAfterTomorrow #fact http://t.co/b9Khm2RV\n", "\n", "--------------------------------------------------------\n", - "supposedly hurricanesandy east coast looks like thedayaftertomorrow fact \n", + "supposedly hurricane sandy east coast looks like thedayaftertomorrow fact \n", "\n", "\n", "Just a shark in someone's front yard #hurricanesandy 😖😖 http://t.co/2poNoAzP\n", "\n", "--------------------------------------------------------\n", - "shark someone front yard hurricanesandy \n", + "shark someone front yard hurricane sandy \n", "\n", "\n", "#Amazing picture of #HurricaneSandy approaching #NewYorkCity today ! #Awesome 🌀🌊💨 http://t.co/AKo8HqyZ\n", "\n", "--------------------------------------------------------\n", - "amazing picture hurricanesandy approaching newyorkcity today awesome \n", + "amazing picture hurricane sandy approaching new yorkcity today awesome \n", "\n", "\n", "Nature is so powerful, yet so beautiful... #Sandy #HurricaneSandy http://t.co/FmyyRPhB\n", "\n", "--------------------------------------------------------\n", - "nature powerful yet beautiful sandy hurricanesandy \n", + "nature powerful yet beautiful sandy hurricane sandy \n", "\n", "\n", "A shark swimming in someone's front yard in Brigantine, NJ ! #shark #hurricanesandy http://t.co/4o6e0BKn\n", "\n", "--------------------------------------------------------\n", - "shark swimming someone front yard brigantine nj shark hurricanesandy \n", + "shark swimming someone front yard brigantine new jersey shark hurricane sandy \n", "\n", "\n", "Street sharks?! Hope my Virginia family is safe! 🚣 #hurricanesandy http://t.co/nQQNtLwV\n", "\n", "--------------------------------------------------------\n", - "street sharks hope virginia family safe hurricanesandy \n", + "street sharks hope virginia family safe hurricane sandy \n", "\n", "\n", "Another shark in someone's yard. #HurricaneSandy #CrazyShit http://t.co/EhoK4gf5\n", "\n", "--------------------------------------------------------\n", - "another shark someone yard hurricanesandy crazyshit \n", + "another shark someone yard hurricane sandy crazyshit \n", "\n", "\n", "#HurricaneSandy #SuperStorm New Jersey http://t.co/XZOpzlaR\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy superstorm new jersey \n", + "hurricane sandy superstorm new jersey \n", "\n", "\n", "#hurricanesandy or the end of the world..... Like in a movie http://t.co/SkB7SJa8\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy end world like movie \n", + "hurricane sandy end world like movie \n", "\n", "\n", "Taken this morning of the storm..I can't! I didn't come to New York for this crap #repost #hurricanesandy http://t.co/rG2vOk16\n", "\n", "--------------------------------------------------------\n", - "taken morning storm come new york crap repost hurricanesandy \n", + "taken morning storm come new york crap repost hurricane sandy \n", "\n", "\n", "#tagstagram @tagstagram fabshots #fabshots #beautiful #view of #hurricanesandy & #statuteofliberty http://t.co/K4jce4pz\n", "\n", "--------------------------------------------------------\n", - "tagstagram fabshots fabshots beautiful view hurricanesandy statuteofliberty \n", + "tagstagram fabshots fabshots beautiful view hurricane sandy statuteofliberty \n", "\n", "\n", "This seal was found washed up on the streets of NY #HurricaneSandy http://t.co/I5DxWvNi\n", "\n", "--------------------------------------------------------\n", - "seal found washed streets ny hurricanesandy \n", + "seal found washed streets new york hurricane sandy \n", "\n", "\n", "#hurricanesandy over New York yesterday #scarystuff #endoftheworldshit http://t.co/hPGVDOf6\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy new york yesterday scarystuff endoftheworldshit \n", + "hurricane sandy new york yesterday scarystuff endoftheworldshit \n", "\n", "\n", "Wow the FRONT of #HurricaneSandy heading over NY!! INCREDIBLE\\nhttp://t.co/rjmNb15f\n", "\n", "--------------------------------------------------------\n", - "wow front hurricanesandy heading ny incredible \n", + "front hurricane sandy heading new york incredible \n", "\n", "\n", "From Facebook , #hurricanesandy #repost and pray http://t.co/SCpVUokU\n", "\n", "--------------------------------------------------------\n", - "facebook hurricanesandy repost pray \n", + "facebook hurricane sandy repost pray \n", "\n", "\n", "This picture is seriously amazing. 💙 #TombOfTheUnkown #hurricanesandy http://t.co/7YtJZmHf\n", "\n", "--------------------------------------------------------\n", - "picture seriously amazing tomboftheunkown hurricanesandy \n", + "picture seriously amazing tomboftheunkown hurricane sandy \n", "\n", "\n", "That's awesome. So much #respect . #hurricanesandy #sandy #praying http://t.co/dRcSBNNu\n", "\n", "--------------------------------------------------------\n", - "awesome much respect hurricanesandy sandy praying \n", + "awesome much respect hurricane sandy sandy praying \n", "\n", "\n", "Look at her!!! Isn't she a sight to see #hurricanesandy http://t.co/6Rc5jTRX\n", "\n", "--------------------------------------------------------\n", - "look sight see hurricanesandy \n", + "look sight see hurricane sandy \n", "\n", "\n", "😳 Yes, that is indeed a #shark swimming in some New Jersian's lawn 🌀 #hurricanesandy #craziness #goaway http://t.co/N63BdRdT\n", "\n", "--------------------------------------------------------\n", - "yes indeed shark swimming new jersian lawn hurricanesandy craziness goaway \n", + "yes indeed shark swimming new jersian lawn hurricane sandy craziness goaway \n", "\n", "\n", "Dear Lord, subdue #HurricaneSandy, help the homeless, restore electricity, secure senior citizens & be a she http://t.co/5koMTTOV\n", "\n", "--------------------------------------------------------\n", - "dear lord subdue hurricanesandy help homeless restore electricity secure senior citizens \n", - "\n", - "\n", - "OMG @#HurricaneSandy http://t.co/VkBWFoMw\n", - "\n", - "--------------------------------------------------------\n", - "omg hurricanesandy \n", + "dear lord subdue hurricane sandy help homeless restore electricity secure senior citizens \n", "\n", "\n", "#realpic #noeffects #hurricanesandy http://t.co/9M1ebEgF\n", "\n", "--------------------------------------------------------\n", - "realpic noeffects hurricanesandy \n", + "realpic noeffects hurricane sandy \n", "\n", "\n", "Sandy's coming for us. #HurricaneSandy #NY http://t.co/lBwA5U4c\n", "\n", "--------------------------------------------------------\n", - "sandy coming us hurricanesandy ny \n", + "sandy coming us hurricane sandy new york \n", "\n", "\n", "Bloody hell!!! Scary shit!!! #hurricanesandy http://t.co/whc7li67\n", "\n", "--------------------------------------------------------\n", - "bloody hell scary shit hurricanesandy \n", + "bloody hell scary shit hurricane sandy \n", "\n", "\n", "it looks crazy!!........ #NY #Sandy #hurricanesandy http://t.co/mE8l58r6\n", "\n", "--------------------------------------------------------\n", - "looks crazy ny sandy hurricanesandy \n", + "looks crazy new york sandy hurricane sandy \n", "\n", "\n", "New York City #newyorkcity #cool #hurricanesandy http://t.co/NHNJ8EvD\n", "\n", "--------------------------------------------------------\n", - "new york city newyorkcity cool hurricanesandy \n", + "new york city new yorkcity cool hurricane sandy \n", "\n", "\n", "out for a swim. bbl. #timessq #reportinglive #hurricanesandy #mta #subway #underwater http://t.co/Zl0FvxXG\n", "\n", "--------------------------------------------------------\n", - "swim bbl timessq reportinglive hurricanesandy mta subway underwater \n", + "swim bbl timessq reportinglive hurricane sandy mta subway underwater \n", "\n", "\n", "Epic ! #hurricanesandy http://t.co/U75PiP9e\n", "\n", "--------------------------------------------------------\n", - "epic hurricanesandy \n", + "epic hurricane sandy \n", "\n", "\n", "HOLY. SHIT. #HurricaneSandy http://t.co/QGNS0REe\n", "\n", "--------------------------------------------------------\n", - "holy shit hurricanesandy \n", - "\n", - "\n", - "Scary stuff #HurricaneSandy http://t.co/freTrWY8\n", - "\n", - "--------------------------------------------------------\n", - "scary stuff hurricanesandy \n", + "holy shit hurricane sandy \n", "\n", "\n", "New York this morning #beautifulbutscary #hurricanesandy #frankenstorm http://t.co/sndp2X78\n", "\n", "--------------------------------------------------------\n", - "new york morning beautifulbutscary hurricanesandy frankenstorm \n", + "new york morning beautifulbutscary hurricane sandy frankenstorm \n", "\n", "\n", "Shark in front of someone's house! Holy crap! This is my town...#LongBeach after #HurricaneSandy http://t.co/BPLweAGd\n", "\n", "--------------------------------------------------------\n", - "shark front someone house holy crap town longbeach hurricanesandy \n", + "shark front someone house holy crap town longbeach hurricane sandy \n", "\n", "\n", "A menancing storm - http://t.co/WmUmsm83 #HurricaneSandy via @photoprob\n", "\n", "--------------------------------------------------------\n", - "menancing storm hurricanesandy \n", + "menancing storm hurricane sandy \n", "\n", "\n", "#hurricanesandy the beginning of the end of the world 😳😧 http://t.co/LiEB8QwJ\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy beginning end world \n", + "hurricane sandy beginning end world \n", "\n", "\n", "Some crazy shit #hurricanesandy http://t.co/HoNhdStl\n", "\n", "--------------------------------------------------------\n", - "crazy shit hurricanesandy \n", + "crazy shit hurricane sandy \n", "\n", "\n", "HAD to repost this from my man @darendixon. #HurricaneSandy has brought SHARKS to the New Jersey streets!!! http://t.co/L2wZKSV1\n", "\n", "--------------------------------------------------------\n", - "repost hurricanesandy brought sharks new jersey streets \n", + "repost hurricane sandy brought sharks new jersey streets \n", "\n", "\n", "Drawlin #HurricaneSandy http://t.co/Iam6wxKD\n", "\n", "--------------------------------------------------------\n", - "drawlin hurricanesandy \n", - "\n", - "\n", - "#HurricaneSandy #NewYork http://t.co/i6QA0cvz\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy newyork \n", + "drawlin hurricane sandy \n", "\n", "\n", "Aah RT @byebye__blondie: Thinking of all those affected by #hurricaneSandy you and your families remain in our prayers! http://t.co/6F3DuFWU\n", @@ -34564,61 +30702,61 @@ "#hurricanesandy #newyork #nyc http://t.co/ceYAJh0v\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork nyc \n", + "hurricane sandy new york new york city \n", "\n", "\n", "Praying for my brother during this #repost #hurricanesandy #fuckmothernature http://t.co/JxeZzEbm\n", "\n", "--------------------------------------------------------\n", - "praying brother repost hurricanesandy fuckmothernature \n", + "praying brother repost hurricane sandy fuckmothernature \n", "\n", "\n", "Even #hurricanesandy cant stop #teammerica http://t.co/lWEcA59K\n", "\n", "--------------------------------------------------------\n", - "even hurricanesandy cant stop teammerica \n", + "even hurricane sandy cant stop teammerica \n", "\n", "\n", "Espetacular!!! #hurricanesandy #ny #thehuffingtonpost http://t.co/l9YP7MuV\n", "\n", "--------------------------------------------------------\n", - "espetacular hurricanesandy ny thehuffingtonpost \n", + "espetacular hurricane sandy new york thehuffingtonpost \n", "\n", "\n", "Shit jus got real... #hurricanesandy http://t.co/n2PzbA98\n", "\n", "--------------------------------------------------------\n", - "shit jus got real hurricanesandy \n", + "shit jus got real hurricane sandy \n", "\n", "\n", "No Way in or Out of Manhattan NY! #HurricaneSandy http://t.co/WYp4WHWL\n", "\n", "--------------------------------------------------------\n", - "way manhattan ny hurricanesandy \n", + "way manhattan new york hurricane sandy \n", "\n", "\n", "Somebody let their shark out #HurricaneSandy #Frankenstorm #obx http://t.co/lEz1rvsi\n", "\n", "--------------------------------------------------------\n", - "somebody let shark hurricanesandy frankenstorm obx \n", + "somebody let shark hurricane sandy frankenstorm obx \n", "\n", "\n", "“@Ghost_noSwag “@freshIife Is that a fucking shark? Smfh #HurricaneSandy http://t.co/huUppJg2””\n", "\n", "--------------------------------------------------------\n", - "fucking shark smfh hurricanesandy \n", + "fucking shark smfh hurricane sandy \n", "\n", "\n", "I don't know if this is real but if it is its awesome. #hurricanesandy http://t.co/NStajCE6\n", "\n", "--------------------------------------------------------\n", - "know real awesome hurricanesandy \n", + "know real awesome hurricane sandy \n", "\n", "\n", "If this is real... some day after tomorrow ish right hur. #HurricaneSandy http://t.co/Qx5Hpnmn\n", "\n", "--------------------------------------------------------\n", - "real day tomorrow ish right hurricanesandy \n", + "real day tomorrow ish right hurricane sandy \n", "\n", "\n", "Tf RT @Cash19320: Died RT @ShesASweetheart: Meanwhile on 202....#HurricaneSandy #ItsREALOutHere 😳 http://t.co/iNo45fZP\n", @@ -34630,205 +30768,199 @@ "I'd do the same thing for my dog. #hurricanesandy http://t.co/UcnzJH7H\n", "\n", "--------------------------------------------------------\n", - "thing dog hurricanesandy \n", + "thing dog hurricane sandy \n", "\n", "\n", "Stay safe @jamimong and for all those staying in the east coast. #godblessamerica #hurricanesandy #newyork # http://t.co/Qt8IRuEz\n", "\n", "--------------------------------------------------------\n", - "stay safe staying east coast godblessamerica hurricanesandy newyork \n", + "stay safe staying east coast godblessamerica hurricane sandy new york \n", "\n", "\n", "Atlantic City Road, New Jersey Got Sharks. #HurricaneSandy http://t.co/k3CilkLo\n", "\n", "--------------------------------------------------------\n", - "atlantic city road new jersey got sharks hurricanesandy \n", + "atlantic city road new jersey got sharks hurricane sandy \n", "\n", "\n", "Omg ! Imagine seeing this in nyc!!! #hurricanesandy http://t.co/Yo4Joppm\n", "\n", "--------------------------------------------------------\n", - "omg imagine seeing nyc hurricanesandy \n", + "imagine seeing new york city hurricane sandy \n", "\n", "\n", "Mother Nature, don't destroy the Iron Jungle. #HurricaneSandy #NYC http://t.co/pwm7EvFs\n", "\n", "--------------------------------------------------------\n", - "mother nature destroy iron jungle hurricanesandy nyc \n", + "mother nature destroy iron jungle hurricane sandy new york city \n", "\n", "\n", "Better think twice before walking through a flooded street if you live near the beach #hurricanesandy #thech http://t.co/UdRxlVXm\n", "\n", "--------------------------------------------------------\n", - "better think twice walking flooded street live near beach hurricanesandy thech \n", + "better think twice walking flooded street live near beach hurricane sandy thech \n", "\n", "\n", "Keep the dogs upstairs! #newjersey #hurricanesandy http://t.co/OeyzwW6K\n", "\n", "--------------------------------------------------------\n", - "keep dogs upstairs newjersey hurricanesandy \n", - "\n", - "\n", - "Whoa!!! #HurricaneSandy http://t.co/FpqyjnIh\n", - "\n", - "--------------------------------------------------------\n", - "whoa hurricanesandy \n", + "keep dogs upstairs newjersey hurricane sandy \n", "\n", "\n", "frankenstorm over NYC #HurricaneSandy http://t.co/oeadmHvd\n", "\n", "--------------------------------------------------------\n", - "frankenstorm nyc hurricanesandy \n", + "frankenstorm new york city hurricane sandy \n", "\n", "\n", "#HurricaneSandy Be safe niggaz http://t.co/CwdeLBSd\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy safe niggaz \n", + "hurricane sandy safe niggaz \n", "\n", "\n", "Storm is brewing! Stay strong New York! #HurricaneSandy #eerie #instagrampics #photooftheday http://t.co/0OTUBwgS\n", "\n", "--------------------------------------------------------\n", - "storm brewing stay strong new york hurricanesandy eerie instagrampics photooftheday \n", + "storm brewing stay strong new york hurricane sandy eerie instagrampics photooftheday \n", "\n", "\n", "#hurricanesandy で検索してみたら…なんだこれ! jddabarberoさんの写真 http://t.co/PAa42j9j\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy で検索してみたら なんだこれ jddabarberoさんの写真 \n", + "hurricane sandy で検索してみたら なんだこれ jddabarberoさんの写真 \n", "\n", "\n", "#TheDayAfterTomorrow in #NewJersey - #HurricaneSandy http://t.co/hDZ966QR\n", "\n", "--------------------------------------------------------\n", - "thedayaftertomorrow newjersey hurricanesandy \n", + "thedayaftertomorrow newjersey hurricane sandy \n", "\n", "\n", "#sharks, #hurricanesandy #borrow http://t.co/MUB3eefq\n", "\n", "--------------------------------------------------------\n", - "sharks hurricanesandy borrow \n", + "sharks hurricane sandy borrow \n", "\n", "\n", "Wow #libertyisland #hurricanesandy http://t.co/Npe2Jo8U\n", "\n", "--------------------------------------------------------\n", - "wow libertyisland hurricanesandy \n", + "libertyisland hurricane sandy \n", "\n", "\n", "Photo of #HurricaneSandy approaching NYC #tight http://t.co/TPNRZ49L\n", "\n", "--------------------------------------------------------\n", - "photo hurricanesandy approaching nyc tight \n", + "photo hurricane sandy approaching new york city tight \n", "\n", "\n", "Aaaayo, this ish is scary but cool. I'm screwed if we have to swim LOL #hurricanesandy #newyork #besafe #201 http://t.co/kVqjeI1v\n", "\n", "--------------------------------------------------------\n", - "aaaayo ish scary cool screwed swim lol hurricanesandy newyork besafe 201 \n", + "aaaa ish scary cool screwed swim hurricane sandy new york besafe01 \n", "\n", "\n", "An insane picture of #hurricanesandy approaching New York! http://t.co/PBAdcOpy\n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "--------------------------------------------------------\n", - "insane picture hurricanesandy approaching new york \n", + "insane picture hurricane sandy approaching new york \n", "\n", "\n", "Craaaazy!! 😱 #HurricaneSandy http://t.co/3shNQNv9\n", "\n", "--------------------------------------------------------\n", - "craaaazy hurricanesandy \n", - "\n", - "\n", - "An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/dGADvnQi””\n", - "\n", - "--------------------------------------------------------\n", - "insane picture taken today hurricanesandy approaching nyc \n", + "craaaazy hurricane sandy \n", "\n", "\n", "Praying for everyone on the east cost. #hurricanesandy #pray #love http://t.co/PQVml5AA\n", "\n", "--------------------------------------------------------\n", - "praying everyone east cost hurricanesandy pray love \n", + "praying everyone east cost hurricane sandy pray love \n", "\n", "\n", "#HurricaneSandy #TheWorldIsEnding http://t.co/Kl8qKLTR\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy theworldisending \n", + "hurricane sandy theworldisending \n", "\n", "\n", "#hurricanesandy #NYC #2012 #pray #mothernature http://t.co/61xmLz9i\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc 2012 pray mothernature \n", + "hurricane sandy nyc012 pray mothernature \n", "\n", "\n", "That is just crazy scary.. #Hurricane #HurricaneSandy #Frankenstorm #Swag #Scary #creepy #omg http://t.co/iy8oJqVR\n", "\n", "--------------------------------------------------------\n", - "crazy scary hurricane hurricanesandy frankenstorm swag scary creepy omg \n", + "crazy scary hurricane hurricane sandy frankenstorm swag scary creepy \n", "\n", "\n", "Next time you're talking about how your job sucks think about these guys. #hurricanesandy #tomboftheunknowns http://t.co/Mm2FeFBv\n", "\n", "--------------------------------------------------------\n", - "next time talking job sucks think guys hurricanesandy tomboftheunknowns \n", + "next time talking job sucks think guys hurricane sandy tomboftheunknowns \n", "\n", "\n", "This shit crazy !! #newyork #subway #flooded##hurricanesandy #timessquare http://t.co/BYOGNWUN\n", "\n", "--------------------------------------------------------\n", - "shit crazy newyork subway flooded hurricanesandy timessquare \n", + "shit crazy new york subway floodedhurricane sandy timessquare \n", "\n", "\n", "ok...now I'm scared. pls be safe everyone!!! #hurricanesandy #frankenstorm http://t.co/MVYjxAIT\n", "\n", "--------------------------------------------------------\n", - "ok scared pls safe everyone hurricanesandy frankenstorm \n", + "ok scared pls safe everyone hurricane sandy frankenstorm \n", "\n", "\n", "What a pic! #HurricaneSandy http://t.co/fth3Tseu\n", "\n", "--------------------------------------------------------\n", - "pic hurricanesandy \n", + "pic hurricane sandy \n", "\n", "\n", "Stole this from a girl in #jersey !! #shark #swimming #jerseystreets #insane only #hurricanesandy http://t.co/ssEf42zC\n", "\n", "--------------------------------------------------------\n", - "stole girl jersey shark swimming jerseystreets insane hurricanesandy \n", + "stole girl jersey shark swimming jerseystreets insane hurricane sandy \n", "\n", "\n", "Flooded streets, shark swimming by. No biggie 😯😳 #HurricaneSandy Wtf man.. http://t.co/XU3dyi3P\n", "\n", "--------------------------------------------------------\n", - "flooded streets shark swimming biggie hurricanesandy wtf \n", + "flooded streets shark swimming biggie hurricane sandy \n", "\n", "\n", "Oh. My. God. :| #hurricanesandy #NY http://t.co/N5S2IYGo\n", "\n", "--------------------------------------------------------\n", - "oh god hurricanesandy ny \n", + "god hurricane sandy new york \n", "\n", "\n", "Impressionnant cette photos de NEW YORK aujourd'hui #HurricaneSandy http://t.co/ratUZnLx\n", "\n", "--------------------------------------------------------\n", - "impressionnant cette photos new york aujourd hui hurricanesandy \n", + "impressionnant cette photos new york aujourd hui hurricane sandy \n", "\n", "\n", "This sight though?!?!? So dope! 😱💦🌊☔🗽🚣 #ny #hurricanesandy #mothernature #ladyliberty http://t.co/Tzuyelhi\n", "\n", "--------------------------------------------------------\n", - "sight though dope ny hurricanesandy mothernature ladyliberty \n", + "sight though dope new york hurricane sandy mothernature ladyliberty \n", "\n", "\n", "Storm picture. #hurricanesandy #speechless http://t.co/wu2P2wjS\n", "\n", "--------------------------------------------------------\n", - "storm picture hurricanesandy speechless \n", + "storm picture hurricane sandy speechless \n", "\n", "\n", "“@FrankBertelle: #HurricaneSandy #StatueOfLiberty #NYC http://t.co/lGzwr8xc” that picture is so sick!\n", @@ -34837,652 +30969,616 @@ "picture sick \n", "\n", "\n", - "#HurricaneSandy is here http://t.co/Rc2cvkvZ\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", - "\n", - "\n", "Shark swims up to someone's house #hurricaneSandy http://t.co/YbkVUHUU\n", "\n", "--------------------------------------------------------\n", - "shark swims someone house hurricanesandy \n", + "shark swims someone house hurricane sandy \n", "\n", "\n", "Its serious outside #sandy#wild http://t.co/miRBzjU3\n", "\n", "--------------------------------------------------------\n", - "serious outside sandy wild \n", + "serious outside sandywild \n", "\n", "\n", "For real! Smfh #hurricanesandy #aftermath #bosses #fools http://t.co/ufw497gm\n", "\n", "--------------------------------------------------------\n", - "real smfh hurricanesandy aftermath bosses fools \n", + "real smfh hurricane sandy aftermath bosses fools \n", "\n", "\n", "Had to share this pic of NYC this morning. #didnttakethis #natureispowerful #hurricanesandy #nofilter 🌀🌊 http://t.co/z7mqZCSv\n", "\n", "--------------------------------------------------------\n", - "share pic nyc morning didnttakethis natureispowerful hurricanesandy nofilter \n", - "\n", - "\n", - "Yikes. RT @QueenReesa: #HurricaneSandy RT @bellametaphor: juneambrose's photo http://t.co/1ufztaMf\n", - "\n", - "--------------------------------------------------------\n", - "yikes \n", + "share pic new york city morning didnttakethis natureispowerful hurricane sandy nofilter \n", "\n", "\n", "This is an amazing pic, but I am so glad I got out of there!!! #nyc #hurricanesandy http://t.co/FM2d2Ysc\n", "\n", "--------------------------------------------------------\n", - "amazing pic glad got nyc hurricanesandy \n", + "amazing pic glad got new york city hurricane sandy \n", "\n", "\n", "#hurricaneSandy #libertyisland http://t.co/Vq9lMshU\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy libertyisland \n", + "hurricane sandy libertyisland \n", "\n", "\n", "so much respect for this. #soldiers #unknown #guarding #hurricanesandy http://t.co/JUzAB22D\n", "\n", "--------------------------------------------------------\n", - "much respect soldiers unknown guarding hurricanesandy \n", + "much respect soldiers unknown guarding hurricane sandy \n", "\n", "\n", "#hurricanesandy oh GOD http://t.co/SpuuUMAa\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy oh god \n", + "hurricane sandygod \n", "\n", "\n", "Mark saw this photo posted to twitter! Whoa! #HurricaneSandy http://t.co/fJi2JPOx\n", "\n", "--------------------------------------------------------\n", - "mark saw photo posted twitter whoa hurricanesandy \n", + "mark saw photo posted twitter hurricane sandy \n", "\n", "\n", "Is this real life?! #HurricaneSandy #NewYork http://t.co/m8nRb18q\n", "\n", "--------------------------------------------------------\n", - "real life hurricanesandy newyork \n", + "real life hurricane sandy new york \n", "\n", "\n", "Say a pray for these brave soldiers today! #proud #american #soldiers #hurricanesandy #brave #usa http://t.co/F3hWuz7M\n", "\n", "--------------------------------------------------------\n", - "say pray brave soldiers today proud american soldiers hurricanesandy brave usa \n", + "say pray brave soldiers today proud american soldiers hurricane sandy brave usa \n", "\n", "\n", "#damn #hurricanesandy #storm #statueofliberty #crazy #waves http://t.co/A4F91Ag8\n", "\n", "--------------------------------------------------------\n", - "damn hurricanesandy storm statueofliberty crazy waves \n", + "damn hurricane sandy storm statueofliberty crazy waves \n", "\n", "\n", "#hurricanesandy done brought the #sharks to shore 🐟 http://t.co/BFbLCxbb\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy done brought sharks shore \n", + "hurricane sandy done brought sharks shore \n", "\n", "\n", "#theNewJerseyShark#Sandy http://t.co/5hD1JpUc\n", "\n", "--------------------------------------------------------\n", - "thenewjerseyshark sandy \n", + "thenewjerseysharksandy \n", "\n", "\n", "#hurricanesandy reporting from my car. #NoPower #CarChargers #ItsADisaster #Repost http://t.co/x2VkE3HO\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy reporting car nopower carchargers itsadisaster repost \n", + "hurricane sandy reporting car nopower carchargers itsadisaster repost \n", "\n", "\n", "#sandy moving into #nyc this morning #hurricanesandy #2012 http://t.co/X4ko1K0X\n", "\n", "--------------------------------------------------------\n", - "sandy moving nyc morning hurricanesandy 2012 \n", - "\n", - "\n", - "WOW at this pic of soldiers currently at the Tomb of the Unknowns in DC. http://t.co/OmwYKgYx #HurricaneSandy who?\n", - "\n", - "--------------------------------------------------------\n", - "wow pic soldiers currently tomb unknowns dc hurricanesandy \n", + "sandy moving new york city morning hurricane sandy012 \n", "\n", "\n", "Holy crap! #Hurricanesandy http://t.co/Dw7brniF\n", "\n", "--------------------------------------------------------\n", - "holy crap hurricanesandy \n", + "holy crap hurricane sandy \n", "\n", "\n", "#HurricaneSandy #Insane #SweetPhoto http://t.co/gP6VpFrK\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy insane sweetphoto \n", + "hurricane sandy insane sweetphoto \n", "\n", "\n", "Mad love to my US Fam. Praying for you all. Be safe. X #hurricanesandy #hurricane #nyc #usa http://t.co/ehln0ugz\n", "\n", "--------------------------------------------------------\n", - "mad love us fam praying safe x hurricanesandy hurricane nyc usa \n", + "mad love us fam praying safe x hurricane sandy hurricane new york city usa \n", "\n", "\n", "#Hurricanesandy marvis5555's photo http://t.co/D81R2KYH\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy marvis5555 photo \n", + "hurricane sandy marvis5555 photo \n", "\n", "\n", "beccabear1994's photo http://t.co/ZBIlpLnv shark swimming down the street! #hurricanesandy #sharks #cantevenimagine #isthisreal\n", "\n", "--------------------------------------------------------\n", - "beccabear1994 photo shark swimming street hurricanesandy sharks cantevenimagine isthisreal \n", + "beccabear1994 photo shark swimming street hurricane sandy sharks cantevenimagine isthisreal \n", "\n", "\n", "Not my photo obviously, but just amazed by their dedication. God bless them. #hurricanesandy #america http://t.co/MkYmunzA\n", "\n", "--------------------------------------------------------\n", - "photo obviously amazed dedication god bless hurricanesandy america \n", + "photo obviously amazed dedication god bless hurricane sandy america \n", "\n", "\n", "#newyorkcity #hurricanesandy http://t.co/tzpYcjhK\n", "\n", "--------------------------------------------------------\n", - "newyorkcity hurricanesandy \n", + "new yorkcity hurricane sandy \n", "\n", "\n", "Hurricane and sharks go hand and hand I guess. #hurricanesandy #sealifetoland http://t.co/vpSE5hXc\n", "\n", "--------------------------------------------------------\n", - "hurricane sharks go hand hand guess hurricanesandy sealifetoland \n", + "hurricane sharks go hand hand guess hurricane sandy sealifetoland \n", "\n", "\n", "Now thats awesome. #HurricaneSandy #NewYork #StatueOfLiberty http://t.co/bKEmA0GU\n", "\n", "--------------------------------------------------------\n", - "thats awesome hurricanesandy newyork statueofliberty \n", + "thats awesome hurricane sandy new york statueofliberty \n", "\n", "\n", "#HurricaneSandy Over NYC :/. #Prepared #PrayForUs 🙏🙏😞🗽🌊🌊 http://t.co/SwyzLzyY\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc prepared prayforus \n", + "hurricane sandy new york city prepared prayforus \n", "\n", "\n", "Day 29 wind, prayers go out to the families on the east coast. #photoadayoctober #hurricanesandy http://t.co/kgMbkFvW\n", "\n", "--------------------------------------------------------\n", - "day 29 wind prayers go families east coast photoadayoctober hurricanesandy \n", + "day9 wind prayers go families east coast photoadayoctober hurricane sandy \n", "\n", "\n", "#hurricane #hurricanesandy #sharks #shark #sharkweek #damnnatureyouscary #outifplace #devistation #lookout # http://t.co/5gkW8RgQ\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy sharks shark sharkweek damnnatureyouscary outifplace devistation lookout \n", + "hurricane hurricane sandy sharks shark sharkweek damnnatureyouscary outifplace devistation lookout \n", "\n", "\n", "Praying for all of my family members out in New York. #hurricanesandy #PowerOfPrayer http://t.co/o3vWEyco\n", "\n", "--------------------------------------------------------\n", - "praying family members new york hurricanesandy powerofprayer \n", + "praying family members new york hurricane sandy powerofprayer \n", "\n", "\n", "#HurricaneSandy #Liberty #NewYork #scary #Storm #SandySucks #igersmanila #igers #instagramers #instaphoto #B http://t.co/N54bxLAC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy liberty newyork scary storm sandysucks igersmanila igers instagramers instaphoto b \n", - "\n", - "\n", - "@rarelydull: #repost from my buddy kord, #hurricaneSandy washing #shark up to the front door! #wow http://t.co/KlG2MKNM\n", - "\n", - "--------------------------------------------------------\n", - "repost buddy kord hurricanesandy washing shark front wow \n", + "hurricane sandy liberty new york scary storm sandysucks igersmanila igers instagramers instaphoto b \n", "\n", "\n", "Amazing photo from NY Frankenstorm.... Stay safe East coast... we pray 🙏🙏🙏🙏 #hurricanesandy http://t.co/MNLtzkH6\n", "\n", "--------------------------------------------------------\n", - "amazing photo ny frankenstorm stay safe east coast pray hurricanesandy \n", + "amazing photo new york frankenstorm stay safe east coast pray hurricane sandy \n", "\n", "\n", "Sharks in the street... #HurricaneSandy http://t.co/AEuhCNbC\n", "\n", "--------------------------------------------------------\n", - "sharks street hurricanesandy \n", + "sharks street hurricane sandy \n", "\n", "\n", "This picture of #hurricaneSandy is incredible. http://t.co/DBW0CfVr\n", "\n", "--------------------------------------------------------\n", - "picture hurricanesandy incredible \n", + "picture hurricane sandy incredible \n", "\n", "\n", "Oh my bad... You thought Sandy was bullshittin'!?!?!?!.... TAKE COVER BITCHESSS!!!... #Sandy #HurricaneSandy http://t.co/hkbbggDA\n", "\n", "--------------------------------------------------------\n", - "oh bad thought sandy bullshittin take cover bitchesss sandy hurricanesandy \n", + "bad thought sandy bullshittin take cover bitchesss sandy hurricane sandy \n", "\n", "\n", "Sad sorry. Amazing picture. #hurricanesandy http://t.co/9F75jS5q\n", "\n", "--------------------------------------------------------\n", - "sad sorry amazing picture hurricanesandy \n", + "sad sorry amazing picture hurricane sandy \n", "\n", "\n", "Forget zombie attacks were dealing with jaws! #doomed #hurricanesandy http://t.co/JXFYCLrE\n", "\n", "--------------------------------------------------------\n", - "forget zombie attacks dealing jaws doomed hurricanesandy \n", + "forget zombie attacks dealing jaws doomed hurricane sandy \n", "\n", "\n", "This is #CRAY , I'm praying for the east coast , #hurricanesandy . http://t.co/sLg8MBjl\n", "\n", "--------------------------------------------------------\n", - "cray praying east coast hurricanesandy \n", + "cray praying east coast hurricane sandy \n", "\n", "\n", "Oh naw sharks in the streets #HurricaneSandy... http://t.co/mqFdrHcH\n", "\n", "--------------------------------------------------------\n", - "oh naw sharks streets hurricanesandy \n", + "naw sharks streets hurricane sandy \n", "\n", "\n", "Lord continue to let lady liberty stand tall #HurricaneSandy #StatueOfLiberty #NewYork #GodBless #Thoughts & http://t.co/sf0dirSB\n", "\n", "--------------------------------------------------------\n", - "lord continue let lady liberty stand tall hurricanesandy statueofliberty newyork godbless thoughts \n", + "lord continue let lady liberty stand tall hurricane sandy statueofliberty new york godbless thoughts \n", "\n", "\n", "Someone put this on facebook. This was an actual picture of #hurricanesandy before it hit. That's ridiculous http://t.co/7rhUQrYP\n", "\n", "--------------------------------------------------------\n", - "someone put facebook actual picture hurricanesandy hit ridiculous \n", + "someone put facebook actual picture hurricane sandy hit ridiculous \n", "\n", "\n", "#respect #hurricanesandy #usa http://t.co/MCuVStPa\n", "\n", "--------------------------------------------------------\n", - "respect hurricanesandy usa \n", + "respect hurricane sandy usa \n", "\n", "\n", "Shark In Jersey Water... #HurricaneSandy http://t.co/edK5Wx6o\n", "\n", "--------------------------------------------------------\n", - "shark jersey water hurricanesandy \n", + "shark jersey water hurricane sandy \n", "\n", "\n", "#HurricaneSandy #FuracãoSandy #LibertyState http://t.co/9fn7qLE6\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy furacãosandy libertystate \n", + "hurricane sandy furacãosandy libertystate \n", "\n", "\n", "Not everything on the east coast is shut down. #hurricanesandy #tomboftheunknownsoldier #arlington http://t.co/uuLMs4od\n", "\n", "--------------------------------------------------------\n", - "everything east coast shut hurricanesandy tomboftheunknownsoldier arlington \n", + "everything east coast shut hurricane sandy tomboftheunknown soldier arlington \n", "\n", "\n", "#hurricanesandy #crazy #statuteofliberty http://t.co/QHZoqWjv\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy crazy statuteofliberty \n", + "hurricane sandy crazy statuteofliberty \n", "\n", "\n", "This is f*cking nuts! #hurricanesandy #instagood #theendisnear #newyork http://t.co/eRRirlYD\n", "\n", "--------------------------------------------------------\n", - "f cking nuts hurricanesandy instagood theendisnear newyork \n", + "f cking nuts hurricane sandy instagood theendisnear new york \n", "\n", "\n", "New York city meets Sandy #HurricaneSandy http://t.co/RVGn0ri2\n", "\n", "--------------------------------------------------------\n", - "new york city meets sandy hurricanesandy \n", + "new york city meets sandy hurricane sandy \n", "\n", "\n", "#hurricanesandy #nyc #statueofliberty http://t.co/pEWoW7Cs\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc statueofliberty \n", + "hurricane sandy new york city statueofliberty \n", "\n", "\n", "Apparently this is a real picture of New York earlier....some scary shit! #hurricanesandy http://t.co/sOWXaHyq\n", "\n", "--------------------------------------------------------\n", - "apparently real picture new york earlier scary shit hurricanesandy \n", + "apparently real picture new york earlier scary shit hurricane sandy \n", "\n", "\n", "I'd save my dog too #hurricanesandy http://t.co/QFt5VOwg\n", "\n", "--------------------------------------------------------\n", - "save dog hurricanesandy \n", + "save dog hurricane sandy \n", "\n", "\n", "This speaks volumes about this country that I am so blessed to live in. #GodblesstheUSA #hurricanesandy #ame http://t.co/n8CoAJdh\n", "\n", "--------------------------------------------------------\n", - "speaks volumes country blessed live godblesstheusa hurricanesandy ame \n", + "speaks volumes country blessed live godblesstheusa hurricane sandy ame \n", "\n", "\n", "Crazy beautiful #HurricaneSandy http://t.co/QPOTzdaC\n", "\n", "--------------------------------------------------------\n", - "crazy beautiful hurricanesandy \n", + "crazy beautiful hurricane sandy \n", "\n", "\n", "So this is #hurricanesandy over #newyorkcity? You can't fool me, I've seen #independenceday 👽 http://t.co/zvyVrvjd\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyorkcity fool seen independenceday \n", + "hurricane sandy new yorkcity fool seen independenceday \n", "\n", "\n", "Um yea that's awesome. Not the death and destruction though.. #HurricaneSandy #StatueOfLiberty #NewYork S/O http://t.co/cypKDelj\n", "\n", "--------------------------------------------------------\n", - "um yea awesome death destruction though hurricanesandy statueofliberty newyork \n", + "yea awesome death destruction though hurricane sandy statueofliberty new york \n", "\n", "\n", "SHEz COMING.\\n#HURRICANESANDY\\n#LIBERTYISLAND \\n#NYBRACEYASELF http://t.co/jTURMNO3\n", "\n", "--------------------------------------------------------\n", - "shez coming hurricanesandy libe \n", + "shez coming hurricane sandy libe \n", "\n", "\n", "This was taken the morning before the storm in New York. Does this picture look edited? #HurricaneSandy @Adel_Bibi http://t.co/hBetvIY0\n", "\n", "--------------------------------------------------------\n", - "taken morning storm new york picture look edited hurricanesandy \n", + "taken morning storm new york picture look edited hurricane sandy \n", "\n", "\n", "This is some End of Days type Shit!!! Mannnn #hurricanesandy http://t.co/oUXSuf5j\n", "\n", "--------------------------------------------------------\n", - "end days type shit mannnn hurricanesandy \n", + "end days type shit mannnn hurricane sandy \n", "\n", "\n", "Just saw this on my twitter feed. Sharks in people's front yards in Brigantine ! #hurricanesandy #sandynj http://t.co/bDtqVXtF\n", "\n", "--------------------------------------------------------\n", - "saw twitter feed sharks people front yards brigantine hurricanesandy sandynj \n", + "saw twitter feed sharks people front yards brigantine hurricane sandy sandynj \n", "\n", "\n", "Praying For Them #HurricaneSandy http://t.co/wrN3rV30\n", "\n", "--------------------------------------------------------\n", - "praying hurricanesandy \n", + "praying hurricane sandy \n", "\n", "\n", "Sandy of NYC #hurricanesandy http://t.co/97lhNSZx\n", "\n", "--------------------------------------------------------\n", - "sandy nyc hurricanesandy \n", + "sandy new york city hurricane sandy \n", "\n", "\n", "Praying for NY and east coast... #hurricanesandy http://t.co/WqN2yetG\n", "\n", "--------------------------------------------------------\n", - "praying ny east coast hurricanesandy \n", - "\n", - "\n", - "«@DoubleHTown: There's really a SHARK in the flooded waters caused by #HurricaneSandy http://t.co/32M7CSsm»» ( see look @Hannahkazik )!!\n", - "\n", - "--------------------------------------------------------\n", - "really shark flooded waters caused hurricanesandy see look \n", + "praying new york east coast hurricane sandy \n", "\n", "\n", "That's when shit gets real when sharks are swimming in the street! #hurricanesandy http://t.co/isLX7Kjj\n", "\n", "--------------------------------------------------------\n", - "shit gets real sharks swimming street hurricanesandy \n", + "shit gets real sharks swimming street hurricane sandy \n", "\n", "\n", "Dedication ❤🇺🇸 #hurricaneSandy http://t.co/gpcsfDCl\n", "\n", "--------------------------------------------------------\n", - "dedication hurricanesandy \n", + "dedication hurricane sandy \n", "\n", "\n", "Atlantic City #hurricanesandy http://t.co/niIwfNvo\n", "\n", "--------------------------------------------------------\n", - "atlantic city hurricanesandy \n", + "atlantic city hurricane sandy \n", "\n", "\n", "Times Square underwater!!! #hurricanesandy http://t.co/O9gYQcYz\n", "\n", "--------------------------------------------------------\n", - "times square underwater hurricanesandy \n", + "times square underwater hurricane sandy \n", "\n", "\n", "NYC subways are flooded! Oh my gosh! That's not good! #notgood #nyc #hurricanesandy #damage #water #subway http://t.co/ySJgCxR0\n", "\n", "--------------------------------------------------------\n", - "nyc subways flooded oh gosh good notgood nyc hurricanesandy damage water subway \n", + "new york city subways flooded gosh good notgood new york city hurricane sandy damage water subway \n", "\n", "\n", "#repost this is CRAY! #hurricanesandy http://t.co/gkFn0jGS\n", "\n", "--------------------------------------------------------\n", - "repost cray hurricanesandy \n", + "repost cray hurricane sandy \n", "\n", "\n", "#HurricaneSandy tryna compete w/her sister #Katrina! #NYC #StatueOfLiberty...this storm aint got nothing on http://t.co/B3k2YsTM\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy tryna compete w sister katrina nyc statueofliberty storm aint got nothing \n", + "hurricane sandy tryna compete w sister katrina new york city statueofliberty storm aint got nothing \n", "\n", "\n", "😳😳😳😳😳😳😳 glad I decided to visit my mom in Atlanta this week #hurricanesandy you got it ✌ , everybody in the http://t.co/7zWRcUpg\n", "\n", "--------------------------------------------------------\n", - "glad decided visit mom atlanta week hurricanesandy got everybody \n", + "glad decided visit mom atlanta week hurricane sandy got everybody \n", "\n", "\n", "Still praying! #HurricaneSandy http://t.co/D8MrzLuo\n", "\n", "--------------------------------------------------------\n", - "still praying hurricanesandy \n", + "still praying hurricane sandy \n", "\n", "\n", "Sharks swimming through a neighborhood street in jersey. 🐋🐋 #hurricaneSandy #realitypictureOftheDay http://t.co/B1AeET5i\n", "\n", "--------------------------------------------------------\n", - "sharks swimming neighborhood street jersey hurricanesandy realitypictureoftheday \n", + "sharks swimming neighborhood street jersey hurricane sandy realitypictureoftheday \n", "\n", "\n", "#HurricaneSandy how can something so horrible look so nice http://t.co/fQy9c6no\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy something horrible look nice \n", + "hurricane sandy something horrible look nice \n", "\n", "\n", "This is crazy #repost #hurricanesandy http://t.co/dDSrPpFk\n", "\n", "--------------------------------------------------------\n", - "crazy repost hurricanesandy \n", + "crazy repost hurricane sandy \n", "\n", "\n", "There's just sharks swimmin through neighborhoods and shit in New Jersey. #HurricaneSandy http://t.co/fd9k5y45\n", "\n", "--------------------------------------------------------\n", - "sharks swimmin neighborhoods shit new jersey hurricanesandy \n", + "sharks swimmin neighborhoods shit new jersey hurricane sandy \n", "\n", "\n", "شوارع نيوجرسي الآن! \\nSharks in New Jersy streets \\n\\n\\n#إعصار_ساندي \\n\\n#HurricaneSandy \\n#Sandy http://t.co/N8ptDR04 http://t.co/mo7W1emg\n", "\n", "--------------------------------------------------------\n", - "شوارع نيوجرسي الآن sharks new jersy streets إعصار ساندي hurricanesandy sandy \n", + "شوارع نيوجرسي الآن sharks new jersy streets إعصارساندي hurricane sandy sandy \n", "\n", "\n", "My Godfather sent me this pic of the soldiers guarding the #TomboftheUnknowns during #HurricaneSandy Tuesday http://t.co/mfoQ56cU\n", "\n", "--------------------------------------------------------\n", - "godfather sent pic soldiers guarding tomboftheunknowns hurricanesandy tuesday \n", + "godfather sent pic soldiers guarding tomboftheunknowns hurricane sandy tuesday \n", "\n", "\n", "What my mom showed me #NYC #Ladyliberty #Repost #hurricane #HurricaneSandy #Scary http://t.co/XxzNhzn1\n", "\n", "--------------------------------------------------------\n", - "mom showed nyc ladyliberty repost hurricane hurricanesandy scary \n", + "mom showed new york city ladyliberty repost hurricane hurricane sandy scary \n", "\n", "\n", "Woah.... #HurricaneSandy http://t.co/j32Fza9z\n", "\n", "--------------------------------------------------------\n", - "woah hurricanesandy \n", + "woah hurricane sandy \n", "\n", "\n", "Horrible things happen to this world. #newyork #hurricanesandy #myfavouriteplace http://t.co/SAEsUugN\n", "\n", "--------------------------------------------------------\n", - "horrible things happen world newyork hurricanesandy myfavouriteplace \n", + "horrible things happen world new york hurricane sandy myfavouriteplace \n", "\n", "\n", "The world is gunna end cuhhh!!! #HurricaneSandy http://t.co/xt7MHt9y\n", "\n", "--------------------------------------------------------\n", - "world gunna end cuhhh hurricanesandy \n", + "world gunna end cuhhh hurricane sandy \n", "\n", "\n", "Praying for all of those going to be hit or going to be touched by #HurricaneSandy #mayGodBless you and your http://t.co/nuQINdBF\n", "\n", "--------------------------------------------------------\n", - "praying going hit going touched hurricanesandy maygodbless \n", + "praying going hit going touched hurricane sandy maygodbless \n", "\n", "\n", "#Damnthissucks ...A shark in the water in New York #HurricaneSandy http://t.co/nOIYMopH\n", "\n", "--------------------------------------------------------\n", - "damnthissucks shark water new york hurricanesandy \n", + "damnthissucks shark water new york hurricane sandy \n", "\n", "\n", "#NYC today #hurricanesandy http://t.co/MDz9BLBl\n", "\n", "--------------------------------------------------------\n", - "nyc today hurricanesandy \n", + "new york city today hurricane sandy \n", "\n", "\n", "Jesus this #hurricanesandy looks mean! hope everyone in #newyork is safe! http://t.co/vxNz1AzM\n", "\n", "--------------------------------------------------------\n", - "jesus hurricanesandy looks mean hope everyone newyork safe \n", + "jesus hurricane sandy looks mean hope everyone new york safe \n", "\n", "\n", "#hurricanesandy #pray Thoughts and prayers out to those who have been and will be affected by hurricane sand http://t.co/YKu2XdDx\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy pray thoughts prayers affected hurricane sand \n", + "hurricane sandy pray thoughts prayers affected hurricane sand \n", "\n", "\n", "mkldeleo's photo http://t.co/9CcM7Gga #hurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "mkldeleo photo hurricanesandy \n", + "mkldeleo photo hurricane sandy \n", "\n", "\n", "Incredible. #HurricaneSandy 🌊 http://t.co/rkJWe64l\n", "\n", "--------------------------------------------------------\n", - "incredible hurricanesandy \n", + "incredible hurricane sandy \n", "\n", "\n", "Crazy picture of how nature works! #hurricanesandy #prayers #nyc #storm http://t.co/doNT1097\n", "\n", "--------------------------------------------------------\n", - "crazy picture nature works hurricanesandy prayers nyc storm \n", + "crazy picture nature works hurricane sandy prayers new york city storm \n", "\n", "\n", "#shark #chillin #hurricanesandy http://t.co/XS97cYbM\n", "\n", "--------------------------------------------------------\n", - "shark chillin hurricanesandy \n", + "shark chillin hurricane sandy \n", "\n", "\n", "Sharks ? #HurricaneSandy http://t.co/pJBqtRdj\n", "\n", "--------------------------------------------------------\n", - "sharks hurricanesandy \n", + "sharks hurricane sandy \n", "\n", "\n", "#hurricanesandy i jus wanna kno whos in that boat, they need a beatin smh http://t.co/XI0VkIJm\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy jus wanna kno whos boat need beatin smh \n", + "hurricane sandy jus wanna kno whos boat need beatin \n", "\n", "\n", "Holy shit #hurricanesandy #staysafe #scary http://t.co/prL4S658\n", "\n", "--------------------------------------------------------\n", - "holy shit hurricanesandy staysafe scary \n", + "holy shit hurricane sandy staysafe scary \n", "\n", "\n", "True Heros! MT @jeff_emt: We forget tomb unknown soldier is guard 24/7 365 ! #hurricanesandy #frankenstorm http://t.co/qZZtq9Et\n", "\n", "--------------------------------------------------------\n", - "true heros forget tomb unknown soldier guard 24 7 365 hurricanesandy frankenstorm \n", + "true heros \n", "\n", "\n", "Holy shit street sharks?! Thanks #hurricanesandy #rad I prefer dolphins though.. http://t.co/699lBiBA\n", "\n", "--------------------------------------------------------\n", - "holy shit street sharks thanks hurricanesandy rad prefer dolphins though \n", + "holy shit street sharks thanks hurricane sandy rad prefer dolphins though \n", "\n", "\n", "Feel bad for the neighbors who gotta deal with this guy lol #HurricaneSandy http://t.co/yKHAL6O4\n", "\n", "--------------------------------------------------------\n", - "feel bad neighbors gotta deal guy lol hurricanesandy \n", + "feel bad neighbors gotta deal guy hurricane sandy \n", "\n", "\n", "Reposting. Wishing everyone to stay safe on the east. #hurricanesandy #statueofliberty http://t.co/1b45yX8Q\n", "\n", "--------------------------------------------------------\n", - "reposting wishing everyone stay safe east hurricanesandy statueofliberty \n", + "reposting wishing everyone stay safe east hurricane sandy statueofliberty \n", "\n", "\n", "Jeepers...... #NYC #HurricaneSandy http://t.co/K5AAiSka\n", "\n", "--------------------------------------------------------\n", - "jeepers nyc hurricanesandy \n", + "jeepers new york city hurricane sandy \n", "\n", "\n", "This is New York right now...wtf\\nI'm praying for yall #HurricaneSandy #Crazy http://t.co/QYYCqxWt\n", "\n", "--------------------------------------------------------\n", - "new york right wtf praying yall hurricanesandy crazy \n", + "new york right praying yall hurricane sandy crazy \n", "\n", "\n", "#shark #hurricanesandy2012 #hurricanesandy #twitter when I saw this on twitter I had to repost it! Crazyyyy http://t.co/cPoviL7w\n", "\n", "--------------------------------------------------------\n", - "shark hurricanesandy2012 hurricanesandy twitter saw twitter repost crazyyyy \n", + "shark hurricane sandy2012 hurricane sandy twitter saw twitter repost crazyyyy \n", "\n", "\n", "Shark Week on the roads thanks to #HurricaneSandy ? http://t.co/NctKKiU3\n", "\n", "--------------------------------------------------------\n", - "shark week roads thanks hurricanesandy \n", + "shark week roads thanks hurricane sandy \n", "\n", "\n", "Beautiful picture, bad storm #hurricanesandy http://t.co/M98bSp7r\n", "\n", "--------------------------------------------------------\n", - "beautiful picture bad storm hurricanesandy \n", - "\n", - "\n", - "Wait. “@NYLA247: Sharks roaming around #newjersey streets #sandy #hurricanesandy http://t.co/NrFVW75y”\n", - "\n", - "--------------------------------------------------------\n", - "wait \n", + "beautiful picture bad storm hurricane sandy \n", "\n", "\n", "#HurricaneSandy #6ABCSANDY #StatueOfLiberty @ New York City, NY http://t.co/QVCrFxvH\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy 6abcsandy statueofliberty new york city ny \n", + "hurricane sandy statueofliberty new york city new york \n", "\n", "\n", "Is that a gator?? RT @PSwaze84: The most endearing pic of #HURRICANESANDY thus far http://t.co/0urbXywP\n", @@ -35494,361 +31590,307 @@ "#HurricaneSandy! Jesusss http://t.co/LHYSbMhD\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy jesusss \n", + "hurricane sandy jesusss \n", "\n", "\n", "Independence day in real life. Sending my thoughts and prayer out to the ppl in east coast. #hurricanesandy http://t.co/u5N3uKz0\n", "\n", "--------------------------------------------------------\n", - "independence day real life sending thoughts prayer ppl east coast hurricanesandy \n", + "independence day real life sending thoughts prayer ppl east coast hurricane sandy \n", "\n", "\n", "Looks like the day after tomorrow #hurricanesandy http://t.co/3gMcWCmv\n", "\n", "--------------------------------------------------------\n", - "looks like day tomorrow hurricanesandy \n", + "looks like day tomorrow hurricane sandy \n", "\n", "\n", "Nature So Powerful. Yet So Beautiful! #hurricaneSandy #NewYork #Bautiful #MyPrayersToThemTho #Harmful #Power http://t.co/2IatWpeM\n", "\n", "--------------------------------------------------------\n", - "nature powerful yet beautiful hurricanesandy newyork bautiful myprayerstothemtho harmful power \n", + "nature powerful yet beautiful hurricane sandy new york bautiful myprayerstothemtho harmful power \n", "\n", "\n", "#hurricanesandy and I just complained I was cold #sorry stay safe, good luck X http://t.co/nPZ4lnLC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy complained cold sorry stay safe good luck x \n", + "hurricane sandy complained cold sorry stay safe good luck x \n", "\n", "\n", "Baddass thunderstorm over Statue of Liberty. #HurricaneSandy #violentnature #beauty what a #paradox #instap http://t.co/yPlwikOS\n", "\n", "--------------------------------------------------------\n", - "baddass thunderstorm statue liberty hurricanesandy violentnature beauty paradox instap \n", + "baddass thunderstorm statue liberty hurricane sandy violentnature beauty paradox instap \n", "\n", "\n", "Sharks swimming in my hood! FAMILY BE SAFE #HURRICANESANDY #SHARKS #NEWJERSEY http://t.co/TJhn7MmT\n", "\n", "--------------------------------------------------------\n", - "sharks swimming hood family safe hurricanesandy sharks newjersey \n", + "sharks swimming hood family safe hurricane sandy sharks newjersey \n", "\n", "\n", "Kicking off in New York #NYC #HurricaneSandy http://t.co/jym8Orwr\n", "\n", "--------------------------------------------------------\n", - "kicking new york nyc hurricanesandy \n", - "\n", - "\n", - "#hurricanesandy #newyork #statueofliberty http://t.co/Su4hJzuM\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy newyork statueofliberty \n", - "\n", - "\n", - "Woah #HurricaneSandy http://t.co/n9CVijd8\n", - "\n", - "--------------------------------------------------------\n", - "woah hurricanesandy \n", + "kicking new york new york city hurricane sandy \n", "\n", "\n", "#hurricane# sandy#nyc http://t.co/FUO8BO2A\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", - "#hurricanesandy #crazy http://t.co/fhEYLwLw\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy crazy \n", + "hurricane sandynyc \n", "\n", "\n", "Okay, this is probably the most #Amazing picture of #HurricaneSandy I've seen yet. #Wow #Awesome http://t.co/aYGMCNHr\n", "\n", "--------------------------------------------------------\n", - "okay probably amazing picture hurricanesandy seen yet wow awesome \n", - "\n", - "\n", - "New York #hurricanesandy http://t.co/VkZ58kkr\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricanesandy \n", - "\n", - "\n", - "#hurricaneSandy #shark http://t.co/EAnK80Um\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy shark \n", + "okay probably amazing picture hurricane sandy seen yet awesome \n", "\n", "\n", "Crazy picture. It'd look like a picture from a movie. #HurricaneSandy http://t.co/d96VLEta\n", "\n", "--------------------------------------------------------\n", - "crazy picture look like picture movie hurricanesandy \n", + "crazy picture look like picture movie hurricane sandy \n", "\n", "\n", "Crazy shot of NYC! #hurricanesandy http://t.co/6QyZTPQr\n", "\n", "--------------------------------------------------------\n", - "crazy shot nyc hurricanesandy \n", + "crazy shot new york city hurricane sandy \n", "\n", "\n", "#hurricanesandy was just like \"fade into darkness, bitches\" http://t.co/0bxAhMeT\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy like fade darkness bitches \n", + "hurricane sandy like fade darkness bitches \n", "\n", "\n", "#NewYork #HurricaneSandy This Shit Is Trippy! http://t.co/5IP1ybB4\n", "\n", "--------------------------------------------------------\n", - "newyork hurricanesandy shit trippy \n", + "new york hurricane sandy shit trippy \n", "\n", "\n", "Shit just got REAL! #HurricaneSandy #NYC #StatueOfLiberty #NoFilter http://t.co/GLIHNTrf\n", "\n", "--------------------------------------------------------\n", - "shit got real hurricanesandy nyc statueofliberty nofilter \n", + "shit got real hurricane sandy new york city statueofliberty nofilter \n", "\n", "\n", "Out of everything I'm seeing about #hurricanesandy this is what I respect.. People are making fun of it but http://t.co/4LTNK756\n", "\n", "--------------------------------------------------------\n", - "everything seeing hurricanesandy respect people making fun \n", + "everything seeing hurricane sandy respect people making fun \n", "\n", "\n", "More sharks in #newjersey #sandy #hurricanesandy from http://t.co/M57TywVE http://t.co/MdlP2E1q\n", "\n", "--------------------------------------------------------\n", - "sharks newjersey sandy hurricanesandy \n", + "sharks newjersey sandy hurricane sandy \n", "\n", "\n", "#dope #hurricanesandy http://t.co/qZIqkZHy\n", "\n", "--------------------------------------------------------\n", - "dope hurricanesandy \n", + "dope hurricane sandy \n", "\n", "\n", "#NewYork #HurricaneSandy #MotherNature #BeautifulYetDangerous http://t.co/j7dfZOsZ\n", "\n", "--------------------------------------------------------\n", - "newyork hurricanesandy mothernature beautifulyetdangerous \n", + "new york hurricane sandy mothernature beautifulyetdangerous \n", "\n", "\n", "https://t.co/atyJhXsM damn it... shark in New Jersey ... #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "damn shark new jersey hurricanesandy \n", + "damn shark new jersey hurricane sandy \n", "\n", "\n", "Meanwhile on #Manhattan's 42nd st... #Subway #Sandy #HurricaneSandy #diver http://t.co/6rv8Jnab\n", "\n", "--------------------------------------------------------\n", - "meanwhile manhattan 42nd st subway sandy hurricanesandy diver \n", + "meanwhile manhattan s2nd st subway sandy hurricane sandy diver \n", "\n", "\n", "#hurricanesandy #statuteofliberty #hightides #highwinds http://t.co/XCIbZDf1\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statuteofliberty hightides highwinds \n", + "hurricane sandy statuteofliberty hightides highwinds \n", "\n", "\n", "so much respect for these guys ❤ #tomboftheunknownsoldier #DC #guarding #24/7 #hurricanesandy http://t.co/B8QtuwFd\n", "\n", "--------------------------------------------------------\n", - "much respect guys tomboftheunknownsoldier dc guarding 24 7 hurricanesandy \n", + "much respect guys tomboftheunknown soldier dc guarding4 hurricane sandy \n", "\n", "\n", "A new Jersey street...sharks swimming around like its the ocean....smh #hurricanesandy http://t.co/4v9u4mF2\n", "\n", "--------------------------------------------------------\n", - "new jersey street sharks swimming around like ocean smh hurricanesandy \n", + "new jersey street sharks swimming around like ocean hurricane sandy \n", "\n", "\n", "😥😱😫😲😵🌀 #hurricanesandy2012 #hurricanesandy #prayforNY #NYC http://t.co/Hwnil53w\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy2012 hurricanesandy prayforny nyc \n", - "\n", - "\n", - "😳 #hurricanesandy http://t.co/Rmhyyv9l\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "hurricane sandy2012 hurricane sandy prayforny new york city \n", "\n", "\n", "#HurricaneSandy #beautiful http://t.co/mwN8dnw2\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy beautiful \n", + "hurricane sandy beautiful \n", "\n", "\n", "Shit looks fake almost #hurricanesandy sandidaboss http://t.co/rv3zTGf6\n", "\n", "--------------------------------------------------------\n", - "shit looks fake almost hurricanesandy sandidaboss \n", + "shit looks fake almost hurricane sandy sandidaboss \n", "\n", "\n", "This is all sorts if crazy #hurricaneSandy http://t.co/4tjYoP67\n", "\n", "--------------------------------------------------------\n", - "sorts crazy hurricanesandy \n", - "\n", - "\n", - "Woah... #hurricanesandy http://t.co/cRpLEeGp\n", - "\n", - "--------------------------------------------------------\n", - "woah hurricanesandy \n", + "sorts crazy hurricane sandy \n", "\n", "\n", "#hurricanesandy needs to chill out!!!!! It was never that serious. http://t.co/ePwnVZqL\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy needs chill never serious \n", + "hurricane sandy needs chill never serious \n", "\n", "\n", "Here comes #HurricaneSandy http://t.co/ivP8SL1o\n", "\n", "--------------------------------------------------------\n", - "comes hurricanesandy \n", + "comes hurricane sandy \n", "\n", "\n", "#HurricaneSandy no filters needed #nature #beauty #powerful #Cyclone #NewYork http://t.co/ZZ1QRvn3\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy filters needed nature beauty powerful cyclone newyork \n", + "hurricane sandy filters needed nature beauty powerful cyclone new york \n", "\n", "\n", "“We don’t have a dog to protect our front yard. We have a SHARK!” http://t.co/KU1ryFYx #HurricaneSandy #NotMyPic\n", "\n", "--------------------------------------------------------\n", - "dog protect front yard shark hurricanesandy notmypic \n", + "dog protect front yard shark hurricane sandy notmypic \n", "\n", "\n", "the day after tomorrow is really happening #hurricanesandy http://t.co/wtnjuet7\n", "\n", "--------------------------------------------------------\n", - "day tomorrow really happening hurricanesandy \n", + "day tomorrow really happening hurricane sandy \n", "\n", "\n", "Good luck to the New Yorkers! #hurricanesandy #hurricane #storm #hanginthere #brave http://t.co/scM14chR\n", "\n", "--------------------------------------------------------\n", - "good luck new yorkers hurricanesandy hurricane storm hanginthere brave \n", + "good luck new yorkers hurricane sandy hurricane storm hanginthere brave \n", "\n", "\n", "Oh naw.....#hurricanesandy #sharktale #findingnemo http://t.co/Doaeuti3\n", "\n", "--------------------------------------------------------\n", - "oh naw hurricanesandy sharktale findingnemo \n", + "naw hurricane sandy sharktale findingnemo \n", "\n", "\n", "#Stolenpic #hurricaneSandy over #NewYork ...#amazing http://t.co/7PFAuXXP\n", "\n", "--------------------------------------------------------\n", - "stolenpic hurricanesandy newyork amazing \n", - "\n", - "\n", - "epic! #hurricanesandy http://t.co/KUC65mur\n", - "\n", - "--------------------------------------------------------\n", - "epic hurricanesandy \n", + "stolenpic hurricane sandy new york amazing \n", "\n", "\n", "well that's not good #hurricanesandy http://t.co/FBfvDeA3\n", "\n", "--------------------------------------------------------\n", - "well good hurricanesandy \n", + "well good hurricane sandy \n", "\n", "\n", "Honor, Courage, Commitment. #TombOfTheUnknowns #HurricaneSandy http://t.co/6yijwD9O\n", "\n", "--------------------------------------------------------\n", - "honor courage commitment tomboftheunknowns hurricanesandy \n", + "honor courage commitment tomboftheunknowns hurricane sandy \n", "\n", "\n", "What would you do if a shark showed up? #hurricanesandy #shark #disaster #regram cc: @Officialcoolkid http://t.co/boymezkK\n", "\n", "--------------------------------------------------------\n", - "would shark showed hurricanesandy shark disaster regram cc \n", + "would shark showed hurricane sandy shark disaster cc \n", "\n", "\n", "Live shot from NY. Praying for Maddie's family! #StatueOfLiberty #hurricanesandy http://t.co/35YMYwmf\n", "\n", "--------------------------------------------------------\n", - "live shot ny praying maddie family statueofliberty hurricanesandy \n", + "live shot new york praying maddie family statueofliberty hurricane sandy \n", "\n", "\n", "Shit is so real in NJ #shark #hurricanesandy #wow saw this on fb http://t.co/XOMuw2Se\n", "\n", "--------------------------------------------------------\n", - "shit real nj shark hurricanesandy wow saw fb \n", + "shit real new jersey shark hurricane sandy saw fb \n", "\n", "\n", "“@J1970K “@vin_nolan Ok this is fucked up a shark in someone's yard in jersey? #HurricaneSandy http://t.co/PqxLYLmD”” that's weird\n", "\n", "--------------------------------------------------------\n", - "ok fucked shark someone yard jersey hurricanesandy weird \n", + "ok fucked shark someone yard jersey hurricane sandy weird \n", "\n", "\n", "#StatueOfLiberty #HurricaneSandy #98MPHStorm #CaliDontKnowAnythingAboutStorm #NYC #NOSCHOOL!!! #LetsHopeILiv http://t.co/nvluTaHq\n", "\n", "--------------------------------------------------------\n", - "statueofliberty hurricanesandy 98mphstorm calidontknowanythingaboutstorm nyc noschool letshopeiliv \n", + "statueofliberty hurricane sandy8mphstorm calidontknowanythingaboutstorm new york city noschool letshopeiliv \n", "\n", "\n", "Re-post! #HurricaneSandy #NYC #Frankinstorm http://t.co/cWddwJw8\n", "\n", "--------------------------------------------------------\n", - "post hurricanesandy nyc frankinstorm \n", + "post hurricane sandy new york city frankinstorm \n", "\n", "\n", "#storm #newyork #hurricanesandy Scary but beautiful http://t.co/LMhU4W76\n", "\n", "--------------------------------------------------------\n", - "storm newyork hurricanesandy scary beautiful \n", - "\n", - "\n", - "Whoa. RT @jenbshoemaker: wow. JUST WOW. #HURRICANESANDY Shits gettin real!! http://t.co/dLv5dNI7\n", - "\n", - "--------------------------------------------------------\n", - "whoa \n", + "storm new york hurricane sandy scary beautiful \n", "\n", "\n", "Picture of #HurricaneSandy \\nLord I pray for those on the East Coast. May you hold them in your arms and keep http://t.co/5f0fMrej\n", "\n", "--------------------------------------------------------\n", - "picture hurricanesandy lord pray east coast may hold arms keep \n", + "picture hurricane sandy lord pray east coast may hold arms keep \n", "\n", "\n", "Y'all be safe up there. My brother just sent me this pic of #hurricanesandy and it doesn't look pretty http://t.co/ka781Rwz\n", "\n", "--------------------------------------------------------\n", - "safe brother sent pic hurricanesandy look pretty \n", + "safe brother sent pic hurricane sandy look pretty \n", "\n", "\n", "Ok now this shit looks scary . #hurricane#sandy#newyork#scary#shit#liberty http://t.co/Cyc0JTwr\n", "\n", "--------------------------------------------------------\n", - "ok shit looks scary hurricane sandy newyork scary shit liberty \n", + "ok shit looks scary hurricane sandynew yorkscaryshitliberty \n", "\n", "\n", "Crazy pic.\\n#hurricanesandy #hurricane #NY #statueofliberty #statue #nyc #dope #crazy #US http://t.co/nlAo1z0B\n", "\n", "--------------------------------------------------------\n", - "crazy pic hurricanesandy hurricane ny statueofliberty statue nyc dope crazy us \n", + "crazy pic hurricane sandy hurricane new york statueofliberty statue new york city dope crazy us \n", "\n", "\n", "@TristonBell1 «@itsWillyFerrell An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/26fcvAkB CRAZY\n", "\n", "--------------------------------------------------------\n", - "insane picture taken today hurricanesandy approaching nyc crazy \n", + "insane picture taken today hurricane sandy approaching new york city crazy \n", "\n", "\n", "sharks in #AlanticCity #hurricanesandy http://t.co/NiwZD770\n", "\n", "--------------------------------------------------------\n", - "sharks alanticcity hurricanesandy \n", + "sharks alanticcity hurricane sandy \n", "\n", "\n", "Insane RT @itsWillyFerrell: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/Ay1L3Bud\n", @@ -35860,25 +31902,25 @@ "#hurricanesandy #newyork #madpersoninboat #lovelydayout http://t.co/NwRpxhZC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork madpersoninboat lovelydayout \n", + "hurricane sandy new york madpersoninboat lovelydayout \n", "\n", "\n", "These soldiers protected the Monument of the Unknown Soldier\" through #hurricanesandy despite risks to their http://t.co/Ac1tAfZF\n", "\n", "--------------------------------------------------------\n", - "soldiers protected monument unknown soldier hurricanesandy despite risks \n", + "soldiers protected monument unknown soldier hurricane sandy despite risks \n", "\n", "\n", "Wow crazy #hurricanesandy #newyork #statueofliberty http://t.co/n3LaJeSH\n", "\n", "--------------------------------------------------------\n", - "wow crazy hurricanesandy newyork statueofliberty \n", + "crazy hurricane sandy new york statueofliberty \n", "\n", "\n", "Shiiiiiiit... #HurricaneSandy http://t.co/W0E8dgnZ\n", "\n", "--------------------------------------------------------\n", - "shiiiiiiit hurricanesandy \n", + "shiiiiiiit hurricane sandy \n", "\n", "\n", "Yeah, it's pretty bad @gamercore RT @a_vargas 😳 #hurricanesandy that shit cray http://t.co/K6Ou5lXl\n", @@ -35887,52 +31929,34 @@ "yeah pretty bad \n", "\n", "\n", - "Thanks #hurricanesandy now we have sharks swimming in our front yards. http://t.co/ZM64XZbK\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "Thanks #hurricanesandy now we have sharks swimming in our front yards. http://t.co/ZM64XZbK\n", "\n", "--------------------------------------------------------\n", - "thanks hurricanesandy sharks swimming front yards \n", + "thanks hurricane sandy sharks swimming front yards \n", "\n", "\n", "#TimeSquare#Sandy http://t.co/delDK0fI\n", "\n", "--------------------------------------------------------\n", - "timesquare sandy \n", + "timesquaresandy \n", "\n", "\n", "Seriously one of the sweetest pictures I've ever seen. #HurricaneSandy #hurricane http://t.co/D87Cz4gQ\n", "\n", "--------------------------------------------------------\n", - "seriously one sweetest pictures ever seen hurricanesandy hurricane \n", + "seriously one sweetest pictures ever seen hurricane sandy hurricane \n", "\n", "\n", "Repost !!! NYC as of Today !!! #HurricaneSandy #GodBless http://t.co/H8s3WZWM\n", "\n", "--------------------------------------------------------\n", - "repost nyc today hurricanesandy godbless \n", - "\n", - "\n", - "Crazy! #HurricaneSandy http://t.co/VfA3fqRI\n", - "\n", - "--------------------------------------------------------\n", - "crazy hurricanesandy \n", - "\n", - "\n", - "#HurricaneSandy #Praying http://t.co/IFfWGEjN\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy praying \n", + "repost new york city today hurricane sandy godbless \n", "\n", "\n", "Wow. This is photo I found searching #HurricaneSandy and I am totally speechless. Prayers up to those that a http://t.co/6RYziPEX\n", "\n", "--------------------------------------------------------\n", - "wow photo found searching hurricanesandy totally speechless prayers \n", + "photo found searching hurricane sandy totally speechless prayers \n", "\n", "\n", "holy!!! RT @DJCharles91: Shit just got real in NYC #HurricaneSandy http://t.co/jVkEqJ8u\n", @@ -35944,31 +31968,31 @@ "Just to put into perspective this is literally in view from my neighborhood #hurricanesandy #eatadick #ET #p http://t.co/yvNrYweb\n", "\n", "--------------------------------------------------------\n", - "put perspective literally view neighborhood hurricanesandy eatadick et p \n", + "put perspective literally view neighborhood hurricane sandy eatadick p \n", "\n", "\n", "This was taken #3hrs ago #godbless all the #eastcoast #people #hurricanesandy #real #life #shit http://t.co/ZkCP4ij4\n", "\n", "--------------------------------------------------------\n", - "taken 3hrs ago godbless eastcoast people hurricanesandy real life shit \n", + "taken ago godbless eastcoast people hurricane sandy real life shit \n", "\n", "\n", "#sharks #hurricanesandy #newjersey Sharks swimming up the roads next to cars?!?🐟🚗🐋🚙 http://t.co/Cp3ssV0Y\n", "\n", "--------------------------------------------------------\n", - "sharks hurricanesandy newjersey sharks swimming roads next cars \n", + "sharks hurricane sandy newjersey sharks swimming roads next cars \n", "\n", "\n", "What outside is looking like #nofilter #hurricaneSandy http://t.co/sr9kEsln\n", "\n", "--------------------------------------------------------\n", - "outside looking like nofilter hurricanesandy \n", + "outside looking like nofilter hurricane sandy \n", "\n", "\n", "Now that's dedication. #usarmy #tomboftheunknowns #sandy #hurricanesandy http://t.co/WDeAF8Gx\n", "\n", "--------------------------------------------------------\n", - "dedication usarmy tomboftheunknowns sandy hurricanesandy \n", + "dedication usarmy tomboftheunknowns sandy hurricane sandy \n", "\n", "\n", "Looks like aliens are approachinRT @itsWillyFerrell: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/kQYArsfx\n", @@ -35977,46 +32001,34 @@ "looks like aliens approachin \n", "\n", "\n", - "“@VII_XV_MMXI WOW! “@Lucky20747: #repost #NewYork #HurricaneSandy http://t.co/9lb3Pq6c””\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "This is why we are America. #dedication #hurricanesandy http://t.co/oBnNVXuB\n", "\n", "--------------------------------------------------------\n", - "america dedication hurricanesandy \n", + "america dedication hurricane sandy \n", "\n", "\n", "praying, praying, praying #Godwillprovide #hurricaneSandy #Godisable http://t.co/MNNqybvg\n", "\n", "--------------------------------------------------------\n", - "praying praying praying godwillprovide hurricanesandy godisable \n", + "praying praying praying godwillprovide hurricane sandy godisable \n", "\n", "\n", "just a crazy thought... #hurricanesandy http://t.co/uGoa7itw\n", "\n", "--------------------------------------------------------\n", - "crazy thought hurricanesandy \n", + "crazy thought hurricane sandy \n", "\n", "\n", "OOMMGG!!! #HurricaneSandy “@Anjeebaby: brandonascott1's photo http://t.co/h3VclOXS <<<<<WOW”\n", "\n", "--------------------------------------------------------\n", - "oommgg hurricanesandy \n", + "oommgg hurricane sandy \n", "\n", "\n", "Lol #repost shit just got real #hurricanesandy http://t.co/Ebh8dQLE\n", "\n", "--------------------------------------------------------\n", - "lol repost shit got real hurricanesandy \n", - "\n", - "\n", - "#hurricanesandy #New York http://t.co/MYQqaHqU\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy new york \n", + "repost shit got real hurricane sandy \n", "\n", "\n", "AW HELL NAW! #NOTINTHESOUTH! RT @kissmyasshleey: #hurricaneSandy just got real http://t.co/dCES86H3\n", @@ -36028,169 +32040,157 @@ "Sweet ! Isto além de arrepiaste é lindoo ! #hurricane#sandy#EUA http://t.co/AZIldz8p\n", "\n", "--------------------------------------------------------\n", - "sweet isto além arrepiaste é lindoo hurricane sandy eua \n", + "sweet além arrepiaste lindoo hurricane sandyeua \n", "\n", "\n", "A real picture someone took today of #hurricanesandy from Brooklyn.... http://t.co/D1vwfu24\n", "\n", "--------------------------------------------------------\n", - "real picture someone took today hurricanesandy brooklyn \n", + "real picture someone took today hurricane sandy brooklyn \n", "\n", "\n", "#help #HurricaneSandy I should have bought floaties http://t.co/dFJ1z9Ge\n", "\n", "--------------------------------------------------------\n", - "help hurricanesandy bought floaties \n", + "help hurricane sandy bought floaties \n", "\n", "\n", "#HurricaneSandy versus #LadyLiberty http://t.co/vHKdIRsK\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy versus ladyliberty \n", - "\n", - "\n", - "Damn RT @ChrisHarris34: \"@DaRealNiecey: \"#HurricaneSandy http://t.co/WffH89IS\"\" - Holy shit\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", + "hurricane sandy versus ladyliberty \n", "\n", "\n", "That's so crazy! #HurricaneSandy #NY http://t.co/zTPSYYZZ\n", "\n", "--------------------------------------------------------\n", - "crazy hurricanesandy ny \n", + "crazy hurricane sandy new york \n", "\n", "\n", "This is Dedication! #Proud #HurricaneSandy #TombOfTheUnknownSoldiers http://t.co/gAuvMzfM\n", "\n", "--------------------------------------------------------\n", - "dedication proud hurricanesandy tomboftheunknownsoldiers \n", + "dedication proud hurricane sandy tomboftheunknown soldiers \n", "\n", "\n", "#hurricanesandy on her way to #NYC. http://t.co/yMtcHXI7\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy way nyc \n", + "hurricane sandy way new york city \n", "\n", "\n", "Crazy photo of New York #hurricanesandy http://t.co/lW1HBqwZ\n", "\n", "--------------------------------------------------------\n", - "crazy photo new york hurricanesandy \n", + "crazy photo new york hurricane sandy \n", "\n", "\n", "Nature is both scary and beautiful #hurricanesandy #newyork http://t.co/6wFFjA1f\n", "\n", "--------------------------------------------------------\n", - "nature scary beautiful hurricanesandy newyork \n", + "nature scary beautiful hurricane sandy new york \n", "\n", "\n", "I hope that everyone on the east coast is okay. You're in my prayers 🙏 #HurricaneSandy http://t.co/eVRUQXQU\n", "\n", "--------------------------------------------------------\n", - "hope everyone east coast okay prayers hurricanesandy \n", + "hope everyone east coast okay prayers hurricane sandy \n", "\n", "\n", "Ok maybe were fucked after all #NYC #hurricanesandy http://t.co/DJzYHGze\n", "\n", "--------------------------------------------------------\n", - "ok maybe fucked nyc hurricanesandy \n", + "ok maybe fucked new york city hurricane sandy \n", "\n", "\n", "Pretty sick shot of Sandy and Liberty. Like something out of a movie. #hurricanesandy http://t.co/KORV0h1H\n", "\n", "--------------------------------------------------------\n", - "pretty sick shot sandy liberty like something movie hurricanesandy \n", + "pretty sick shot sandy liberty like something movie hurricane sandy \n", "\n", "\n", "Jersey is like a scene from Jaws #HurricaneSandy #NJ #NewJersey http://t.co/w5CxYGKx\n", "\n", "--------------------------------------------------------\n", - "jersey like scene jaws hurricanesandy nj newjersey \n", + "jersey like scene jaws hurricane sandy new jersey newjersey \n", "\n", "\n", "This shit aint no joke! We bout to get this work! #StatueofLiberty #NYC #HurricaneSandy http://t.co/nal1xGdx\n", "\n", "--------------------------------------------------------\n", - "shit aint joke bout get work statueofliberty nyc hurricanesandy \n", + "shit aint joke bout get work statueofliberty new york city hurricane sandy \n", "\n", "\n", "Sandy ain't bullshiting all my east coast be safe out there #hurricanesandy http://t.co/qAAcithE\n", "\n", "--------------------------------------------------------\n", - "sandy bullshiting east coast safe hurricanesandy \n", + "sandy bullshiting east coast safe hurricane sandy \n", "\n", "\n", "SHITS GETTIN REAL #HurricaneSandy http://t.co/uENPGCpB\n", "\n", "--------------------------------------------------------\n", - "shits gettin real hurricanesandy \n", + "shits gettin real hurricane sandy \n", "\n", "\n", "This picture shocks me #gottabefake #crazythough #hurricanesandy http://t.co/HhF93seS\n", "\n", "--------------------------------------------------------\n", - "picture shocks gottabefake crazythough hurricanesandy \n", + "picture shocks gottabefake crazythough hurricane sandy \n", "\n", "\n", "Damn ya'll about to get it /“@Yes_Its_WayneG Not a Good look yall it's about to goo down #NYC #hurricanesandy http://t.co/MrAFXxZD”\n", "\n", "--------------------------------------------------------\n", - "damn get good look yall goo nyc hurricanesandy \n", + "damn get good look yall goo new york city hurricane sandy \n", "\n", "\n", "It's real folks #hurricanesandy #sandy http://t.co/2DM71y5i\n", "\n", "--------------------------------------------------------\n", - "real folks hurricanesandy sandy \n", + "real folks hurricane sandy sandy \n", "\n", "\n", "#hurricanesandy so powerful yet so beautiful http://t.co/iNeyO10F\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy powerful yet beautiful \n", + "hurricane sandy powerful yet beautiful \n", "\n", "\n", "https://t.co/8hVL7gd1 Don't no if that's Photoshopped but if its not what the hell! #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "photoshopped hell hurricanesandy \n", + "photoshopped hell hurricane sandy \n", "\n", "\n", "#itsreal#sandy http://t.co/caDTmyan\n", "\n", "--------------------------------------------------------\n", - "itsreal sandy \n", + "itsrealsandy \n", "\n", "\n", "Street Sharks!!! Sickkk!! 😍🌀🌊 #hurricanesandy http://t.co/iajNlw2j\n", "\n", "--------------------------------------------------------\n", - "street sharks sickkk hurricanesandy \n", + "street sharks sickkk hurricane sandy \n", "\n", "\n", "Wow. I would hate to be in NYNY right now! #HurricaneSandy ☔⚡🌀☁ http://t.co/KwUn6dSb\n", "\n", "--------------------------------------------------------\n", - "wow would hate nyny right hurricanesandy \n", + "would hate nyny right hurricane sandy \n", "\n", "\n", "This morning!!! #hurricanesandy #beauty #powerful #nature 🌊☁☔🗽 http://t.co/WHOldAAX\n", "\n", "--------------------------------------------------------\n", - "morning hurricanesandy beauty powerful nature \n", + "morning hurricane sandy beauty powerful nature \n", "\n", "\n", "Thinking of all those affected by #hurricaneSandy you and your families remain in our prayers! http://t.co/NpupFKOK\n", "\n", "--------------------------------------------------------\n", - "thinking affected hurricanesandy families remain prayers \n", - "\n", - "\n", - "OMFG! #hurricanesandy http://t.co/JLdzQIb9\n", - "\n", - "--------------------------------------------------------\n", - "omfg hurricanesandy \n", + "thinking affected hurricane sandy families remain prayers \n", "\n", "\n", "“@e_BEHR25: So crazy scary. #Frankenstorm #HurricaneSandy http://t.co/C0gk73F3” dear boat, what are you thinking?!\n", @@ -36202,241 +32202,223 @@ "#hurricanesandy #sandy http://t.co/fVQ0wMiD Who is faster mmhh ? 😄 Hope no one is hurt even\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sandy faster mmhh hope one hurt even \n", + "hurricane sandy sandy faster mmhh hope one hurt even \n", "\n", "\n", "#wow #amazing #pic of #hurricanesandy #storm in #nyc. #statueofliberty #rain #winds #weather #hurricane #cra http://t.co/Jq9btLxo\n", "\n", "--------------------------------------------------------\n", - "wow amazing pic hurricanesandy storm nyc statueofliberty rain winds weather hurricane cra \n", + "amazing pic hurricane sandy storm new york city statueofliberty rain winds weather hurricane cra \n", "\n", "\n", "And not a single fuck was given that day. #HurricaneSandy http://t.co/gVs7jygk\n", "\n", "--------------------------------------------------------\n", - "single fuck given day hurricanesandy \n", + "single fuck given day hurricane sandy \n", "\n", "\n", "God please watch over and bless all friends, family and everyone in New York City #hurricanesandy #sandy http://t.co/CVXZ6NhE\n", "\n", "--------------------------------------------------------\n", - "god please watch bless friends family everyone new york city hurricanesandy sandy \n", + "god please watch bless friends family everyone new york city hurricane sandy sandy \n", "\n", "\n", "If this is a real photo...that's sum scary shit. #prayforNYC #hurricanesandy #stormwatch #staysafe #toronto http://t.co/H8yF7ndY\n", "\n", "--------------------------------------------------------\n", - "real photo sum scary shit prayfornyc hurricanesandy stormwatch staysafe toronto \n", + "real photo sum scary shit prayfornyc hurricane sandy stormwatch staysafe toronto \n", "\n", "\n", "#HurricaneSandy #Update #ThatsWild 😱 http://t.co/mHmtgX1x\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy update thatswild \n", + "hurricane sandy update thatswild \n", "\n", "\n", "#HurricaneSandy #NewYork #Praying http://t.co/F59q0QnP\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork praying \n", + "hurricane sandy new york praying \n", "\n", "\n", "Not a Good look yall it's about to goo down #NYC #hurricanesandy http://t.co/VpLnEtMd\n", "\n", "--------------------------------------------------------\n", - "good look yall goo nyc hurricanesandy \n", - "\n", - "\n", - "New York!! #hurricanesandy http://t.co/1OBrpLQW\n", - "\n", - "--------------------------------------------------------\n", - "new york hurricanesandy \n", + "good look yall goo new york city hurricane sandy \n", "\n", "\n", "Seems legit!! #hurricanesandy #america #usa #staysafe #funnypics #fake #humour http://t.co/rMcgB5TU\n", "\n", "--------------------------------------------------------\n", - "seems legit hurricanesandy america usa staysafe funnypics fake humour \n", + "seems legit hurricane sandy america usa staysafe funnypics fake humour \n", "\n", "\n", "This picture is scary. #hurricaneSandy http://t.co/KPiTld97\n", "\n", "--------------------------------------------------------\n", - "picture scary hurricanesandy \n", + "picture scary hurricane sandy \n", "\n", "\n", "#HurricaneSandy pray for those affected...that The Lord guides them and let's them know that the storm can't http://t.co/DawIr9BQ\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy pray affected lord guides let know storm \n", + "hurricane sandy pray affected lord guides let know storm \n", "\n", "\n", "Lets say a Prayer for all our friends and family in East Coast. #HurricaneSandy http://t.co/oVcfpxII\n", "\n", "--------------------------------------------------------\n", - "lets say prayer friends family east coast hurricanesandy \n", + "lets say prayer friends family east coast hurricane sandy \n", "\n", "\n", "Due to #hurricanesandy rena REBORN will be closed today. We apologize for any inconvience. Stay Safe #NYC http://t.co/qg3ydwcw\n", "\n", "--------------------------------------------------------\n", - "due hurricanesandy rena reborn closed today apologize inconvience stay safe nyc \n", + "due hurricane sandy rena reborn closed today apologize inconvience stay safe new york city \n", "\n", "\n", "Another pic of Sharks swimming down the street #repost #hurricanesandy http://t.co/8eaNSOj0\n", "\n", "--------------------------------------------------------\n", - "another pic sharks swimming street repost hurricanesandy \n", + "another pic sharks swimming street repost hurricane sandy \n", "\n", "\n", "Live in NYC #hurricanesandy http://t.co/zXveCg8B\"\n", "\n", "--------------------------------------------------------\n", - "live nyc hurricanesandy \n", + "live new york city hurricane sandy \n", "\n", "\n", "Saw this on Facebook, shared by Rebecca King Cortez. #HurricaneSandy http://t.co/cxf3D4vE\n", "\n", "--------------------------------------------------------\n", - "saw facebook shared rebecca king cortez hurricanesandy \n", + "saw facebook shared rebecca king cortez hurricane sandy \n", "\n", "\n", "Who knew a hurricane could look so beautiful #hurricanesandy 🌀🌊☔ http://t.co/mvMfCvsP\n", "\n", "--------------------------------------------------------\n", - "knew hurricane could look beautiful hurricanesandy \n", - "\n", - "\n", - "@LMAO_TWITPICS: #HurricaneSandyJustGotReal http://t.co/VLDI2x8U fuuuuuck that dude! #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandyjustgotreal fuuuuuck dude hurricanesandy \n", - "\n", - "\n", - "Wow... #hurricanesandy http://t.co/LS3OzsE8\n", - "\n", - "--------------------------------------------------------\n", - "wow hurricanesandy \n", + "knew hurricane could look beautiful hurricane sandy \n", "\n", "\n", "Had to #repost incredible #tomboftheunkownsoldiers #honor #hurricanesandy http://t.co/zNeXQ6xy\n", "\n", "--------------------------------------------------------\n", - "repost incredible tomboftheunkownsoldiers honor hurricanesandy \n", + "repost incredible tomboftheunkownsoldiers honor hurricane sandy \n", "\n", "\n", "#nofilter #NY #NYC #newyork #newyorkcity #hurricanesandy #clouds #scary #wtf #empirestate http://t.co/yAoJqCmy\n", "\n", "--------------------------------------------------------\n", - "nofilter ny nyc newyork newyorkcity hurricanesandy clouds scary wtf empirestate \n", + "nofilter new york new york city new york new yorkcity hurricane sandy clouds scary empirestate \n", "\n", "\n", "New york looks nice #HurricaneSandy http://t.co/KfVrUrFI\n", "\n", "--------------------------------------------------------\n", - "new york looks nice hurricanesandy \n", + "new york looks nice hurricane sandy \n", "\n", "\n", "Still guarding #tomboftheunknown even through #hurricanesandy http://t.co/DyqMU2sV\n", "\n", "--------------------------------------------------------\n", - "still guarding tomboftheunknown even hurricanesandy \n", + "still guarding tomboftheunknown even hurricane sandy \n", "\n", "\n", "So shyt is gettin Real real in NY!! Shark on da highway!! YALL B CAREFUL!! #PRAYERS #NY #NJ #HurricaneSandy http://t.co/pdM3qzbI\n", "\n", "--------------------------------------------------------\n", - "shyt gettin real real ny shark da highway yall b careful prayers ny nj hurricanesandy \n", + "shyt gettin real real new york shark highway yall b careful prayers new york new jersey hurricane sandy \n", "\n", "\n", "Perfect Combination of #mothernature & #nyc #hurricanesandy #sandy #satueofliberty #manhattan #hurrica @ nyc http://t.co/ZnMYzEhG\n", "\n", "--------------------------------------------------------\n", - "perfect combination mothernature nyc hurricanesandy sandy satueofliberty manhattan hurrica nyc \n", + "perfect combination mothernature new york city hurricane sandy sandy satueofliberty manhattan hurrica new york city \n", "\n", "\n", "#hurricanesandy #statue #of #liberty #sick #wtf sandyy ain't playin.she for real. http://t.co/Gac9I4Iy\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statue liberty sick wtf sandyy playin real \n", + "hurricane sandy statue liberty sick sandyy playin real \n", "\n", "\n", "No freaking way. 😳 #hurricanesandy http://t.co/NEay2cN3\n", "\n", "--------------------------------------------------------\n", - "freaking way hurricanesandy \n", + "freaking way hurricane sandy \n", "\n", "\n", "#frankenstorm #hurricanesandy #Eastcoast praying for my friends and others on the East Coast..... #coolpic http://t.co/Hd2JmImL\n", "\n", "--------------------------------------------------------\n", - "frankenstorm hurricanesandy eastcoast praying friends others east coast coolpic \n", + "frankenstorm hurricane sandy eastcoast praying friends others east coast coolpic \n", "\n", "\n", "Oh shit “@FashionFwd2010 “@Super_Negra NJ pic: shark shows up in someone's yard. WOW!!!! #HurricaneSandy crazy!!! http://t.co/JedvUzAs””\n", "\n", "--------------------------------------------------------\n", - "oh shit nj pic shark shows someone yard wow hurricanesandy crazy \n", + "shit new jersey pic shark shows someone yard hurricane sandy crazy \n", "\n", "\n", "Dang that looks crazy, but dope at the same time!! #HurricaneSandy http://t.co/KInuKFjC\n", "\n", "--------------------------------------------------------\n", - "dang looks crazy dope time hurricanesandy \n", + "dang looks crazy dope time hurricane sandy \n", "\n", "\n", "OMG That's wild RT @MarlowOnline Notice the #SHARK swimming in my friend's driveway in Ocean City, NJ! #HurricaneSandy http://t.co/2VckUtLZ\n", "\n", "--------------------------------------------------------\n", - "omg wild \n", + "wild \n", "\n", "\n", "Foto de amparo_n_roll http://t.co/D5yToJEq #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto amparo n roll hurricanesandy \n", + "foto amparonroll hurricane sandy \n", "\n", "\n", "Just the end of the world 😱 #HurricaneSandy #Regram http://t.co/F01NozbI\n", "\n", "--------------------------------------------------------\n", - "end world hurricanesandy regram \n", + "end world hurricane sandy \n", "\n", "\n", "#EllisIsland 10.29.12 #nyc #sandy #hurricanesandy #wavy #statueofliberty http://t.co/mWK2Tej0\n", "\n", "--------------------------------------------------------\n", - "ellisisland 10 29 12 nyc sandy hurricanesandy wavy statueofliberty \n", + "ellisisland092 new york city sandy hurricane sandy wavy statueofliberty \n", "\n", "\n", "#hurricanesandy #StatueOfLiberty #NY #pray http://t.co/kBWyRB1v\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statueofliberty ny pray \n", + "hurricane sandy statueofliberty new york pray \n", "\n", "\n", "Amazing picture of Servant #Leadership!! I am humbled by this! #HurricaneSandy #TombOfUnknownSoldier #nofilt http://t.co/HqtqmmTc\n", "\n", "--------------------------------------------------------\n", - "amazing picture servant leadership humbled hurricanesandy tombofunknownsoldier nofilt \n", + "amazing picture servant leadership humbled hurricane sandy tombofunknown soldier nofilt \n", "\n", "\n", "اسماك القرش تتجول في نيويورك بعد اعصار سنادي ،،، #newyork #USA #hurricanesandy @i7sawy http://t.co/NvmUvPVH\n", "\n", "--------------------------------------------------------\n", - "اسماك القرش تتجول نيويورك اعصار سنادي newyork usa hurricanesandy \n", + "اسماك القرش تتجول نيويورك اعصار سنادي new york usa hurricane sandy \n", "\n", "\n", "Shit. Just. Got. Real. 🏊 #hurricanesandy #shark #ohno #shitjustgotreal #damn #flood #yolo http://t.co/FsyFOjzI\n", "\n", "--------------------------------------------------------\n", - "shit got real hurricanesandy shark ohno shitjustgotreal damn flood yolo \n", + "shit got real hurricane sandy shark shitjustgotreal damn flood yolo \n", "\n", "\n", "Well shoot. #HurricaneSandy #Frankstorm #NewYork http://t.co/ZSwIyQRl\n", "\n", "--------------------------------------------------------\n", - "well shoot hurricanesandy frankstorm newyork \n", + "well shoot hurricane sandy frankstorm new york \n", "\n", "\n", "ยังกะในหนัง bless you RT @FuegYou: @itsWillyFerrell: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/M7OK65Bx\n", @@ -36445,28 +32427,22 @@ "ย งกะในหน ง bless \n", "\n", "\n", - "#HurricaneSandy #FuracãoSandy #LibertyState http://t.co/GxmPqEBp\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy furacãosandy libertystate \n", - "\n", - "\n", "OH FUCK NO #CantSwim #HelpMe #HurricaneSandy #YouWin http://t.co/r7jJa7Ja\n", "\n", "--------------------------------------------------------\n", - "oh fuck cantswim helpme hurricanesandy youwin \n", + "fuck cantswim helpme hurricane sandy youwin \n", "\n", "\n", "This picture is so cool #HurricaneSandy #StatueOfLiberty http://t.co/QXWsucRK\n", "\n", "--------------------------------------------------------\n", - "picture cool hurricanesandy statueofliberty \n", + "picture cool hurricane sandy statueofliberty \n", "\n", "\n", "Thats just crazy #hurricanesandy http://t.co/AXbLve5Y\n", "\n", "--------------------------------------------------------\n", - "thats crazy hurricanesandy \n", + "thats crazy hurricane sandy \n", "\n", "\n", "“@TJCarpenterWHB:Sharks in New Jersey!! http://t.co/ebFkmY2A” @TJCarpenterWHB they are looking for dinner! #jaws was shot in MA! #Sandy\n", @@ -36478,337 +32454,313 @@ "New York, Sandy. Sandy, New York. #hurricanesandy http://t.co/gQWBZ6Ep\n", "\n", "--------------------------------------------------------\n", - "new york sandy sandy new york hurricanesandy \n", + "new york sandy sandy new york hurricane sandy \n", "\n", "\n", "Incredible but scary picture of #HurricaneSandy ready to chew up #NewYork. Hope everyone on the #EastCoast i http://t.co/icT2OleD\n", "\n", "--------------------------------------------------------\n", - "incredible scary picture hurricanesandy ready chew newyork hope everyone eastcoast \n", + "incredible scary picture hurricane sandy ready chew new york hope everyone eastcoast \n", "\n", "\n", "Sandy is here... Everyone stay safe and dry and my God be with u all ❤ #sandy #hurricanesandy #NYC #statueof http://t.co/xaHDT2uC\n", "\n", "--------------------------------------------------------\n", - "sandy everyone stay safe dry god sandy hurricanesandy nyc statueof \n", + "sandy everyone stay safe dry god sandy hurricane sandy new york city statueof \n", "\n", "\n", "#LooksSoScary #Incredible #HurricaneSandy http://t.co/hCwreh58\n", "\n", "--------------------------------------------------------\n", - "lookssoscary incredible hurricanesandy \n", + "lookssoscary incredible hurricane sandy \n", "\n", "\n", "What a photo!!! Nature will always be one step ahead! #sandy #hurricanesandy http://t.co/kR62TgO7\n", "\n", "--------------------------------------------------------\n", - "photo nature always one step ahead sandy hurricanesandy \n", + "photo nature always one step ahead sandy hurricane sandy \n", "\n", "\n", "#NYC #hurricanesandy #crazy #beautiful #weather #mothernature http://t.co/eQBFSXzr\n", "\n", "--------------------------------------------------------\n", - "nyc hurricanesandy crazy beautiful weather mothernature \n", + "new york city hurricane sandy crazy beautiful weather mothernature \n", "\n", "\n", "Omg there are sharks in the streets of Atlantic City😳😱 #hurricanesandy http://t.co/SDN8VTql\n", "\n", "--------------------------------------------------------\n", - "omg sharks streets atlantic city hurricanesandy \n", + "sharks streets atlantic city hurricane sandy \n", "\n", "\n", "It feels damn great to be a Texan right about now! #NYC #HurricaneSandy http://t.co/b3WhmtOj\n", "\n", "--------------------------------------------------------\n", - "feels damn great texan right nyc hurricanesandy \n", + "feels damn great texan right new york city hurricane sandy \n", "\n", "\n", "Imagine looking out your window and seeing this #scary #hurricanesandy http://t.co/4RITz7W7\n", "\n", "--------------------------------------------------------\n", - "imagine looking window seeing scary hurricanesandy \n", + "imagine looking window seeing scary hurricane sandy \n", "\n", "\n", "Ssssooo #hurricanesandy #nyc #subway #flooding no this is just an artist rendition. Though the NYC subway IS http://t.co/Mb2Js5ck\n", "\n", "--------------------------------------------------------\n", - "ssssooo hurricanesandy nyc subway flooding artist rendition though nyc subway \n", + "ssssooo hurricane sandy new york city subway flooding artist rendition though new york city subway \n", "\n", "\n", "Nature is cruel....#hurricanesandy http://t.co/EemuEJyK\n", "\n", "--------------------------------------------------------\n", - "nature cruel hurricanesandy \n", + "nature cruel hurricane sandy \n", "\n", "\n", "Baby there's a shark in the water!!! #hurricanesandy http://t.co/ym9HAFPX\n", "\n", "--------------------------------------------------------\n", - "baby shark water hurricanesandy \n", + "baby shark water hurricane sandy \n", "\n", "\n", "#hurricaneSandy You can take the girl out of Florida, but can't take Florida out of the girl http://t.co/FVVBLnW4\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy take girl florida take florida girl \n", + "hurricane sandy take girl florida take florida girl \n", "\n", "\n", "Warms my heart... My prayers are with you <3 #HurricaneSandy #GodblessYou http://t.co/XO0CHAOt\n", "\n", "--------------------------------------------------------\n", - "warms heart prayers less 3 hurricanesandy godblessyou \n", + "warms heart prayers hurricane sandy godblessyou \n", "\n", "\n", "A crap situation but what a beautiful picture! #HurricaneSandy @ New York, USA http://t.co/Vri1noIX\n", "\n", "--------------------------------------------------------\n", - "crap situation beautiful picture hurricanesandy new york usa \n", + "crap situation beautiful picture hurricane sandy new york usa \n", "\n", "\n", "Escape from New York. #HurricaneSandy http://t.co/YHhXN3LC\n", "\n", "--------------------------------------------------------\n", - "escape new york hurricanesandy \n", + "escape new york hurricane sandy \n", "\n", "\n", "Imagine driving home and seeing that #shark #hurricanesandy http://t.co/dcohN6mb\n", "\n", "--------------------------------------------------------\n", - "imagine driving home seeing shark hurricanesandy \n", + "imagine driving home seeing shark hurricane sandy \n", "\n", "\n", "#HurricaneSandy creeping in NYC http://t.co/qKwL1hnZ\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy creeping nyc \n", + "hurricane sandy creeping new york city \n", "\n", "\n", "Idk if this is real or not but damn #hurricanesandy #itscoming #besafe http://t.co/Zq1eOo3v\n", "\n", "--------------------------------------------------------\n", - "idk real damn hurricanesandy itscoming besafe \n", + "idk real damn hurricane sandy itscoming besafe \n", "\n", "\n", "Wishing all my #EastCoast friends good luck with #HurricaneSandy\\nI love you guys! http://t.co/WaDHD83u\n", "\n", "--------------------------------------------------------\n", - "wishing eastcoast friends good luck hurricanesandy love guys \n", + "wishing eastcoast friends good luck hurricane sandy love guys \n", "\n", "\n", "that shit #cray #hurricanesandy looks like something from a movie http://t.co/ZZfuXXzC\n", "\n", "--------------------------------------------------------\n", - "shit cray hurricanesandy looks like something movie \n", + "shit cray hurricane sandy looks like something movie \n", "\n", "\n", "Impresionante foto de chaseponder del #hurricanesandy #huracansandy. Siempre se puede estar peor http://t.co/PvKvKPum\n", "\n", "--------------------------------------------------------\n", - "impresionante foto chaseponder hurricanesandy huracansandy siempre puede peor \n", - "\n", - "\n", - "“@thinkprogress: Sandy approaches NYC http://t.co/yGpiQdxZ (via @juneambrose)”\\n\\nWow #scary #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "wow scary hurricanesandy \n", - "\n", - "\n", - "#newyork #hurricanesandy http://t.co/ghIDPxzd\n", - "\n", - "--------------------------------------------------------\n", - "newyork hurricanesandy \n", + "impresionante foto chaseponder hurricane sandy huracansandy siempre puede peor \n", "\n", "\n", "Sharks just chillin in the streets of NY - no biggie. #HurricaneSandy http://t.co/ZUe2dbAI\n", "\n", "--------------------------------------------------------\n", - "sharks chillin streets ny biggie hurricanesandy \n", + "sharks chillin streets new york biggie hurricane sandy \n", "\n", "\n", "Sentinels at the Tomb of the Unknowns in Arlington National Cemetery brave the #HurricaneSandy in D.C http://t.co/xH3q9nt1\n", "\n", "--------------------------------------------------------\n", - "sentinels tomb unknowns arlington national cemetery brave hurricanesandy c \n", + "sentinels tomb unknowns arlington national cemetery brave hurricane sandy \n", "\n", "\n", "Insane. #hurricanesandy #nyc http://t.co/rFjEQpZe\n", "\n", "--------------------------------------------------------\n", - "insane hurricanesandy nyc \n", + "insane hurricane sandy new york city \n", "\n", "\n", "#repost @juneambrose #nyc #hurricanesandy #hurricanesandy2012 looks like a movie http://t.co/c9PMm4sc\n", "\n", "--------------------------------------------------------\n", - "repost nyc hurricanesandy hurricanesandy2012 looks like movie \n", + "repost new york city hurricane sandy hurricane sandy2012 looks like movie \n", "\n", "\n", "A Shark in ac chilling next to a house awkkk.. #sandy #storm #hurricanesandy #hightide #ac #atlanticcity http://t.co/59hT0301\n", "\n", "--------------------------------------------------------\n", - "shark ac chilling next house awkkk sandy storm hurricanesandy hightide ac atlanticcity \n", + "shark ac chilling next house awkkk sandy storm hurricane sandy hightide ac atlanticcity \n", "\n", "\n", "Nature and all it's wrath.... #hurricane #hurricanesandy http://t.co/u2bdlHzd\n", "\n", "--------------------------------------------------------\n", - "nature wrath hurricane hurricanesandy \n", + "nature wrath hurricane hurricane sandy \n", "\n", "\n", "#StatueofLiberty #HurricaneSandy #nyc #nofilter 🗽 http://t.co/ISo5T5J4\n", "\n", "--------------------------------------------------------\n", - "statueofliberty hurricanesandy nyc nofilter \n", + "statueofliberty hurricane sandy new york city nofilter \n", "\n", "\n", "#NY #hurricanesandy #sandy #StatueofLiberty #sky #horror 🌊🗽 http://t.co/jVqWr3Rm\n", "\n", "--------------------------------------------------------\n", - "ny hurricanesandy sandy statueofliberty sky horror \n", + "new york hurricane sandy sandy statueofliberty sky horror \n", "\n", "\n", "A house in New Jersey after #HurricaneSandy http://t.co/pBVDvZIj\n", "\n", "--------------------------------------------------------\n", - "house new jersey hurricanesandy \n", + "house new jersey hurricane sandy \n", "\n", "\n", "Times Square empty. #hurricanesandy http://t.co/ZDTxJ6z7\n", "\n", "--------------------------------------------------------\n", - "times square empty hurricanesandy \n", + "times square empty hurricane sandy \n", "\n", "\n", "As if flooding wasn't bad enough #hurricanesandy http://t.co/ZeU56K9R\n", "\n", "--------------------------------------------------------\n", - "flooding bad enough hurricanesandy \n", + "flooding bad enough hurricane sandy \n", "\n", "\n", "“@Super_Negra NJ pic: shark shows up in someone's yard. WOW!!!! #HurricaneSandy crazy!!! http://t.co/D1zmLxck”\n", "\n", "--------------------------------------------------------\n", - "nj pic shark shows someone yard wow hurricanesandy crazy \n", + "new jersey pic shark shows someone yard hurricane sandy crazy \n", "\n", "\n", "I stole this from suaz187 this would be so insane!!!!!!! #HurricaneSandy #NyC #TimesSquare #ScoobaDive http://t.co/wxWMuxqq\n", "\n", "--------------------------------------------------------\n", - "stole suaz187 would insane hurricanesandy nyc timessquare scoobadive \n", + "stole suaz187 would insane hurricane sandy new york city timessquare scoobadive \n", "\n", "\n", "Nature is so powerful, yet so beautiful. #HurricaneSandy #LadyLiberty #Beauty http://t.co/8XdP7NwH\n", "\n", "--------------------------------------------------------\n", - "nature powerful yet beautiful hurricanesandy ladyliberty beauty \n", + "nature powerful yet beautiful hurricane sandy ladyliberty beauty \n", "\n", "\n", "Tchê tubarões ja são encontrados nas ruas de Nova Jersey devido ao #hurricanesandy http://t.co/golh6a8q\n", "\n", "--------------------------------------------------------\n", - "tchê tubarões são encontrados nas ruas nova jersey devido ao hurricanesandy \n", - "\n", - "\n", - "Ooh my! RT @enhlembali: #hurricaneSandy #shark http://t.co/fFWDsb6N\n", - "\n", - "--------------------------------------------------------\n", - "ooh \n", + "tchê tubarões encontrados ruas nova jersey devido hurricane sandy \n", "\n", "\n", "OMG This was taken today! I had to steal this pic! #HurricaneSandy #NYC #NewYorker 🗽 http://t.co/7wclVBc5\n", "\n", "--------------------------------------------------------\n", - "omg taken today steal pic hurricanesandy nyc newyorker \n", + "taken today steal pic hurricane sandy new york city new yorker \n", "\n", "\n", "Shark swimming in somebody's yard in Jersey #Brutal #HurricaneSandy #Aftermath http://t.co/fqpt0oi1\n", "\n", "--------------------------------------------------------\n", - "shark swimming somebody yard jersey brutal hurricanesandy aftermath \n", + "shark swimming somebody yard jersey brutal hurricane sandy aftermath \n", "\n", "\n", "Shot of NYC today! Praying for everyone on the east coast! #hurricanesandy #frankenstorm http://t.co/oKp9QNj2\n", "\n", "--------------------------------------------------------\n", - "shot nyc today praying everyone east coast hurricanesandy frankenstorm \n", + "shot new york city today praying everyone east coast hurricane sandy frankenstorm \n", "\n", "\n", "#HurricaneSandy #Frankenstorm #NYC http://t.co/opbZ7fc5\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy frankenstorm nyc \n", + "hurricane sandy frankenstorm new york city \n", "\n", "\n", "Simply amazing #GodBlessAmerica #HurricaneSandy #ChangingOfTheGuard #WashingtonDC http://t.co/bnggFRfs\n", "\n", "--------------------------------------------------------\n", - "simply amazing godblessamerica hurricanesandy changingoftheguard washingtondc \n", - "\n", - "\n", - "Sharks on the street #hurricanesandy http://t.co/p7o2MPPD\n", - "\n", - "--------------------------------------------------------\n", - "sharks street hurricanesandy \n", + "simply amazing godblessamerica hurricane sandy changingoftheguard washingtondc \n", "\n", "\n", "eriklevier's photo http://t.co/TNOlNnkh #hurricanesandy #statueofliberty\n", "\n", "--------------------------------------------------------\n", - "eriklevier photo hurricanesandy statueofliberty \n", + "eriklevier photo hurricane sandy statueofliberty \n", "\n", "\n", "#SharksInTheWater #HurricaneSandy http://t.co/AErcgWDj\n", "\n", "--------------------------------------------------------\n", - "sharksinthewater hurricanesandy \n", + "sharksinthewater hurricane sandy \n", "\n", "\n", "Thinking of you guys in New York and USA. Be safe!! #hurricanesandy #newyork #usa #likeforlike #like4like http://t.co/QGMydHp3\n", "\n", "--------------------------------------------------------\n", - "thinking guys new york usa safe hurricanesandy newyork usa likeforlike like4like \n", + "thinking guys new york usa safe hurricane sandy new york usa likeforlike like4like \n", "\n", "\n", "Hopefully I see one swimming to Scranton! 😱🐟 #sharkobsession #hurricanesandy http://t.co/L4SNlaKK\n", "\n", "--------------------------------------------------------\n", - "hopefully see one swimming scranton sharkobsession hurricanesandy \n", + "hopefully see one swimming scranton sharkobsession hurricane sandy \n", "\n", "\n", "Gotta respect these Soldiers, still standing out there in that rain during #HurricaneSandy http://t.co/09o6nH71\n", "\n", "--------------------------------------------------------\n", - "gotta respect soldiers still standing rain hurricanesandy \n", + "gotta respect soldiers still standing rain hurricane sandy \n", "\n", "\n", "Sea Lion on the street in NY. My prayers go out to the people up North. #hurricanesandy #love #prayer #hurri http://t.co/oi4mDdGt\n", "\n", "--------------------------------------------------------\n", - "lion street ny prayers go people north hurricanesandy love prayer hurri \n", + "lion street new york prayers go people north hurricane sandy love prayer hurri \n", "\n", "\n", "Sh*t just got real... Crazy . #HurricaneSandy http://t.co/21yo93xd\n", "\n", "--------------------------------------------------------\n", - "sh got real crazy hurricanesandy \n", + "sh got real crazy hurricane sandy \n", "\n", "\n", "Ahhhhh, it's coming for us!!! #hurricanesandy http://t.co/7yPAxDWp\n", "\n", "--------------------------------------------------------\n", - "ahhhhh coming us hurricanesandy \n", + "ahhhhh coming us hurricane sandy \n", "\n", "\n", "This is why I love out troops. Still standing guard in #hurricanesandy. #respect #repost http://t.co/JnQxln1c\n", "\n", "--------------------------------------------------------\n", - "love troops still standing guard hurricanesandy respect repost \n", + "love troops still standing guard hurricane sandy respect repost \n", "\n", "\n", "Hope everyone's ok in NYC #hurricanesandy http://t.co/w5XqWpPr\n", "\n", "--------------------------------------------------------\n", - "hope everyone ok nyc hurricanesandy \n", + "hope everyone ok new york city hurricane sandy \n", "\n", "\n", "LMFFAAOO @ whale RT @B_tchsLoveJoeyK: is that fucking whale O.o RT @kissmyasshleey: #hurricaneSandy just got real http://t.co/vumSri9j\n", @@ -36817,16 +32769,10 @@ "lmffaaoo whale \n", "\n", "\n", - "Is this the end of the world???? 😳😳😳 #HurricaneSandy http://t.co/ppH96wF3\n", - "\n", - "--------------------------------------------------------\n", - "end world hurricanesandy \n", - "\n", - "\n", "#crazy pic of #hurricanesandy #sandy #statueofliberty #nyc #storm #damn #wow #rain #instago #photooftheday # http://t.co/6tY6oVa5\n", "\n", "--------------------------------------------------------\n", - "crazy pic hurricanesandy sandy statueofliberty nyc storm damn wow rain instago photooftheday \n", + "crazy pic hurricane sandy sandy statueofliberty new york city storm damn rain instago photooftheday \n", "\n", "\n", "Thats Crazy “@Lazardi: #hurricanesandy #huracansandy http://t.co/gg8Cqt51”\n", @@ -36838,7 +32784,7 @@ "Shark swimming in front yard. #NBD #insta #hurricanesandy #hurricaneproblems #crazy http://t.co/OB9xEQlE\n", "\n", "--------------------------------------------------------\n", - "shark swimming front yard nbd insta hurricanesandy hurricaneproblems crazy \n", + "shark swimming front yard nbd insta hurricane sandy hurricaneproblems crazy \n", "\n", "\n", "Damn is that a sharkRT @EdgarCano13: RT @ItsSabrinna: Didn't think it was that crucial... Be careful. #hurricanesandy http://t.co/vQpj5yvR\n", @@ -36850,37 +32796,37 @@ "#NYC #NJ #NC #EastCoasters our prayers are with you all to make it past this safely! #HurricaneSandy #Weather http://t.co/kP70I6fD\n", "\n", "--------------------------------------------------------\n", - "nyc nj nc eastcoasters prayers make past safely hurricanesandy weather \n", + "new york city new jersey nc eastcoasters prayers make past safely hurricane sandy weather \n", "\n", "\n", "Swim Gear out da_realtae lol #nyc #hurricanesandy http://t.co/47hPKg6Z\n", "\n", "--------------------------------------------------------\n", - "swim gear da realtae lol nyc hurricanesandy \n", + "swim gear darealtae new york city hurricane sandy \n", "\n", "\n", "My heart goes out! #hurricanesandy #relentless #prayer http://t.co/MyovbKrC\n", "\n", "--------------------------------------------------------\n", - "heart goes hurricanesandy relentless prayer \n", + "heart goes hurricane sandy relentless prayer \n", "\n", "\n", "Crazy pic #HurricaneSandy http://t.co/Xmrb624X\n", "\n", "--------------------------------------------------------\n", - "crazy pic hurricanesandy \n", + "crazy pic hurricane sandy \n", "\n", "\n", "…その一方で、こう言うジョーク画像もハッシュタグ付いてる…(´ω`) >Instagramで「 #HurricaneSandy 」 aj69uranusさんの写真 http://t.co/qoZl47fF\n", "\n", "--------------------------------------------------------\n", - "その一方で こう言うジョーク画像もハッシュタグ付いてる ω instagramで hurricanesandy aj69uranusさんの写真 \n", + "その一方で こう言うジョーク画像もハッシュタグ付いてる ω instagramで hurricane sandy aj69uranusさんの写真 \n", "\n", "\n", "This is crazy... Sharks at the front porch #hurricanesandy http://t.co/99ni2cpr\n", "\n", "--------------------------------------------------------\n", - "crazy sharks front porch hurricanesandy \n", + "crazy sharks front porch hurricane sandy \n", "\n", "\n", "Ctfu huh!?! RT @ShesASweetheart: Meanwhile on 202....#HurricaneSandy #ItsREALOutHere ?? http://t.co/YAEQkaMf\n", @@ -36892,37 +32838,37 @@ "A seal lookin so scared on these city streets of manhattan looks so scared. 😱😢#sandy #hurricanesandy #seal # http://t.co/Oje21n6u\n", "\n", "--------------------------------------------------------\n", - "seal lookin scared city streets manhattan looks scared sandy hurricanesandy seal \n", + "seal lookin scared city streets manhattan looks scared sandy hurricane sandy seal \n", "\n", "\n", "Is this real life ?#HurricaneSandy #NYC http://t.co/9GUjMT5U\n", "\n", "--------------------------------------------------------\n", - "real life hurricanesandy nyc \n", + "real life hurricane sandy new york city \n", "\n", "\n", "This shit tho #unreal #hurricanesandy hoping my cousin mwaite11 all gucci :D http://t.co/bBHFmndc\n", "\n", "--------------------------------------------------------\n", - "shit tho unreal hurricanesandy hoping cousin mwaite11 gucci \n", + "shit tho unreal hurricane sandy hoping cousin mwaite11 gucci \n", "\n", "\n", "Is this for real??? ⚡🌀🌀🌀⚡ #hurricanesandy #nyc #picstitch #instagramhub\\n#webstagram #instadaily #newyork #ne http://t.co/30tsAp8y\n", "\n", "--------------------------------------------------------\n", - "real hurricanesandy nyc picstitch instagramhub webstagram instadaily newyork ne \n", + "real hurricane sandy new york city picstitch instagramhub webstagram instadaily new york \n", "\n", "\n", "#hurricanesandy \\n#rns wet wet http://t.co/bVmuBcqv\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy rns wet wet \n", + "hurricane sandy rns wet wet \n", "\n", "\n", "Well crap. #hurricanesandy 😳🌀🌊 http://t.co/lfCFqkal\n", "\n", "--------------------------------------------------------\n", - "well crap hurricanesandy \n", + "well crap hurricane sandy \n", "\n", "\n", "“@Zgood_: No filter... & yes this is real life 😳💨🌑🌊 #hurricanesandy http://t.co/9FKZnaad”why the fuck Is there a boat in the water!!!\n", @@ -36934,19 +32880,19 @@ "Destroyed! Statue of Liberty! #hurricanesandy #omg #wow http://t.co/7WX4lbV3\n", "\n", "--------------------------------------------------------\n", - "destroyed statue liberty hurricanesandy omg wow \n", + "destroyed statue liberty hurricane sandy \n", "\n", "\n", "Omg!!! There's a shark in someone's yard in NJ bcuz of #hurricanesandy !!!! #crazy!!!!! I'd die!!! #dead #fb http://t.co/Jk4QP2QH\n", "\n", "--------------------------------------------------------\n", - "omg shark someone yard nj hurricanesandy crazy dead fb \n", + "shark someone yard new jersey hurricane sandy crazy dead fb \n", "\n", "\n", "How beautiful yet dangerous nature can be. Stay strong for those in New York. #HurricaneSandy http://t.co/egyHBkM3\n", "\n", "--------------------------------------------------------\n", - "beautiful yet dangerous nature stay strong new york hurricanesandy \n", + "beautiful yet dangerous nature stay strong new york hurricane sandy \n", "\n", "\n", "Lets keep on praying people. RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/CgUzNSC8 #HurricaneSandy\n", @@ -36958,217 +32904,205 @@ "#HurricaneSandy over #NYC nature is a powerful thing.... http://t.co/6JuvHm6B\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc nature powerful thing \n", + "hurricane sandy new york city nature powerful thing \n", "\n", "\n", "Jersey got hit baddd #hurricanesandy #gotsandy http://t.co/fQ4hAOV7\n", "\n", "--------------------------------------------------------\n", - "jersey got hit baddd hurricanesandy gotsandy \n", + "jersey got hit baddd hurricane sandy gotsandy \n", "\n", "\n", "#Respect #America #HurricaneSandy #Soldiers #Prayers http://t.co/kNcvCsB3\n", "\n", "--------------------------------------------------------\n", - "respect america hurricanesandy soldiers prayers \n", + "respect america hurricane sandy soldiers prayers \n", "\n", "\n", "#HurricaneSandy #real #nofilter #epic http://t.co/ILnx6Yxp\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy real nofilter epic \n", + "hurricane sandy real nofilter epic \n", "\n", "\n", "Another Shark Pic #HurricaneSandy smh... http://t.co/IZZXrj3C\n", "\n", "--------------------------------------------------------\n", - "another shark pic hurricanesandy smh \n", + "another shark pic hurricane sandy \n", "\n", "\n", "Real or fake? #hurricanesandy http://t.co/0ZZHh7pd\n", "\n", "--------------------------------------------------------\n", - "real fake hurricanesandy \n", + "real fake hurricane sandy \n", "\n", "\n", "This picture is mad! #hurricanesandy #newyork http://t.co/iDC9S1Ja\n", "\n", "--------------------------------------------------------\n", - "picture mad hurricanesandy newyork \n", + "picture mad hurricane sandy new york \n", "\n", "\n", "#hurricanesandy #NY this shit scary. we pray http://t.co/xvCcnJQ6\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy ny shit scary pray \n", + "hurricane sandy new york shit scary pray \n", "\n", "\n", "#StatueOfLiberty #NYC #HurricaneSandy #Frankenstorm http://t.co/KxHsoPsu\n", "\n", "--------------------------------------------------------\n", - "statueofliberty nyc hurricanesandy frankenstorm \n", + "statueofliberty new york city hurricane sandy frankenstorm \n", "\n", "\n", "That's dedication <3 #hurricanesandy #proudamerican #standtall #alittlerainneverhurtanyone #unknowntomb #mil http://t.co/2k0WdMx2\n", "\n", "--------------------------------------------------------\n", - "dedication less 3 hurricanesandy proudamerican standtall alittlerainneverhurtanyone unknowntomb mil \n", + "dedication hurricane sandy proudamerican standtall alittlerainneverhurtanyone unknowntomb mil \n", "\n", "\n", "Holy fucking shit. #HurricaneSandy http://t.co/nz9TUun3\n", "\n", "--------------------------------------------------------\n", - "holy fucking shit hurricanesandy \n", + "holy fucking shit hurricane sandy \n", "\n", "\n", "Whoa. Incredibly awesome picture. Be safe, NYC and the rest of east coast. #HurricaneSandy\\nhttp://t.co/9tBmhJv8\n", "\n", "--------------------------------------------------------\n", - "whoa incredibly awesome picture safe nyc rest east coast hurricanesandy \n", + "incredibly awesome picture safe new york city rest east coast hurricane sandy \n", "\n", "\n", "#HurricaneSandy #Shark swims by someone's home in #NewJersey http://t.co/AY9FpLBU\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy shark swims someone home newjersey \n", + "hurricane sandy shark swims someone home newjersey \n", "\n", "\n", "Sandy beefin with tha Statue aof Liberty must be personal..#SourRow #GlassFull #HurricaneSandy #Millay http://t.co/JIrJ1Hv1\n", "\n", "--------------------------------------------------------\n", - "sandy beefin tha statue aof liberty must personal sourrow glassfull hurricanesandy millay \n", + "sandy beefin tstatue aof liberty must personal sourrow glassfull hurricane sandy millay \n", "\n", "\n", "Shark in somebody's yard. Lol #HurricaneSandy http://t.co/LMBR2wbW\n", "\n", "--------------------------------------------------------\n", - "shark somebody yard lol hurricanesandy \n", + "shark somebody yard hurricane sandy \n", "\n", "\n", "#HurricaneSandy ain't playing. Sharks and shit swimming in the streets. Smfh http://t.co/N0nEaOMl\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy playing sharks shit swimming streets smfh \n", + "hurricane sandy playing sharks shit swimming streets smfh \n", "\n", "\n", "😱😱😱😨😨😨 I pray for my family and friends in #newyork as #hurricanesandy is about to hit #statueofliberty http://t.co/gYL61t9a\n", "\n", "--------------------------------------------------------\n", - "pray family friends newyork hurricanesandy hit statueofliberty \n", + "pray family friends new york hurricane sandy hit statueofliberty \n", "\n", "\n", "stay safe #hurricanesandy http://t.co/cAyjRLlE\n", "\n", "--------------------------------------------------------\n", - "stay safe hurricanesandy \n", + "stay safe hurricane sandy \n", "\n", "\n", "#Hurricanesandy.. Shits gettin real yo.. Drivin with sharks? http://t.co/gXhuFvMO\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy shits gettin real drivin sharks \n", + "hurricane sandy shits gettin real drivin sharks \n", "\n", "\n", "FUCK THAT. #hurricanesandy http://t.co/LKzAAjsa\n", "\n", "--------------------------------------------------------\n", - "fuck hurricanesandy \n", - "\n", - "\n", - "@KellyRipa stay safe #hurricanesandy http://t.co/7QdhMpFF\n", - "\n", - "--------------------------------------------------------\n", - "stay safe hurricanesandy \n", + "fuck hurricane sandy \n", "\n", "\n", "That's crazy, sharks on your front yard #hurricanesandy http://t.co/IJag4x8h\n", "\n", "--------------------------------------------------------\n", - "crazy sharks front yard hurricanesandy \n", + "crazy sharks front yard hurricane sandy \n", "\n", "\n", "#CrazyShit #HurricaneSandy http://t.co/kYdDCZPQ\n", "\n", "--------------------------------------------------------\n", - "crazyshit hurricanesandy \n", + "crazyshit hurricane sandy \n", "\n", "\n", "@LiaMarieJohnson lol look at this pic i found #HurricaneSandy http://t.co/BUGIwe8E\n", "\n", "--------------------------------------------------------\n", - "lol look pic found hurricanesandy \n", + "look pic found hurricane sandy \n", "\n", "\n", "Cool photo of #hurricaneSandy ... stay safe family and friends! http://t.co/vd8yUbSb\n", "\n", "--------------------------------------------------------\n", - "cool photo hurricanesandy stay safe family friends \n", + "cool photo hurricane sandy stay safe family friends \n", "\n", "\n", "So crazy looking! #hurricanesandy #NYC #NewYorkCity #statueofliberty http://t.co/zqK3wnGb\n", "\n", "--------------------------------------------------------\n", - "crazy looking hurricanesandy nyc newyorkcity statueofliberty \n", - "\n", - "\n", - "«@DoubleHTown: There's really a SHARK in the flooded waters caused by #HurricaneSandy http://t.co/32M7CSsm»\n", - "\n", - "--------------------------------------------------------\n", - "really shark flooded waters caused hurricanesandy \n", + "crazy looking hurricane sandy new york city new yorkcity statueofliberty \n", "\n", "\n", "Foto de katiehoran7 http://t.co/Gvo2S3xI #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto katiehoran7 hurricanesandy \n", + "foto katiehoran7 hurricane sandy \n", "\n", "\n", "#jaws havin a paddle in #NYC #hurricanesandy http://t.co/IH2RjgJ6\n", "\n", "--------------------------------------------------------\n", - "jaws havin paddle nyc hurricanesandy \n", + "jaws havin paddle new york city hurricane sandy \n", "\n", "\n", "Wow look at the #statueofliberty . #hurricanesandy is #crazy http://t.co/i9F4IRTP\n", "\n", "--------------------------------------------------------\n", - "wow look statueofliberty hurricanesandy crazy \n", + "look statueofliberty hurricane sandy crazy \n", "\n", "\n", "Wow!! Nature! #HurricaneSandy\\n#Repost http://t.co/O3oiTwkk\n", "\n", "--------------------------------------------------------\n", - "wow nature hurricanesandy repost \n", + "nature hurricane sandy repost \n", "\n", "\n", "Wow... Just.. Wow... #prayers #hurricanesandy http://t.co/bI7Bbud4\n", "\n", "--------------------------------------------------------\n", - "wow wow prayers hurricanesandy \n", + "prayers hurricane sandy \n", "\n", "\n", "«@979beat This is what NYC woke up to this morning!! #HurricaneSandy #Prayers http://t.co/0k0wi19F»\n", "\n", "--------------------------------------------------------\n", - "nyc woke morning hurricanesandy prayers \n", + "new york city woke morning hurricane sandy prayers \n", "\n", "\n", "Fuck around and get eaten on the streets up in the east coast #HurricaneSandy http://t.co/auIwaN5J\n", "\n", "--------------------------------------------------------\n", - "fuck around get eaten streets east coast hurricanesandy \n", + "fuck around get eaten streets east coast hurricane sandy \n", "\n", "\n", "GOD BLESS 🙏 #EastCoast #HurricaneSandy#clouds #storms#mothernature #instapic#igers#igdaily#all_shots#gang_fa http://t.co/FLygH3wr\n", "\n", "--------------------------------------------------------\n", - "god bless eastcoast hurricanesandy clouds storms mothernature instapic igers igdaily shots gang fa \n", + "god bless eastcoast hurricane sandyclouds stormsmothernature instapicigersigdailyallshotsgangfa \n", "\n", "\n", "Cant believe this is real...#omg #hurricanesandy #wow #insane #NYC #statueofliberty http://t.co/ITMnooCI\n", "\n", "--------------------------------------------------------\n", - "cant believe real omg hurricanesandy wow insane nyc statueofliberty \n", + "cant believe real hurricane sandy insane new york city statueofliberty \n", "\n", "\n", "صورة دخول اعصار ساندي على مدينة نيويورك ..سبحان الله . \\n\\n[http://t.co/svD0irPo]\\n\\n#Sandy\n", @@ -37180,55 +33114,49 @@ "We gon' die. #hurricanesandy http://t.co/KX1FCPLD\n", "\n", "--------------------------------------------------------\n", - "gon hurricanesandy \n", + "gon hurricane sandy \n", "\n", "\n", "Absolutely amazing! Stay Strong East Coast. #tomboftheunkownsoldier #hurricanesandy http://t.co/vmiqrS96\n", "\n", "--------------------------------------------------------\n", - "absolutely amazing stay strong east coast tomboftheunkownsoldier hurricanesandy \n", + "absolutely amazing stay strong east coast tomboftheunkownsoldier hurricane sandy \n", "\n", "\n", "This nyc rite now!! “#HurricaneSandy #NYC #StatueOfLiberty #NewYork http://t.co/gEh0DmSn”\n", "\n", "--------------------------------------------------------\n", - "nyc rite hurricanesandy nyc statueofliberty newyork \n", + "new york city rite hurricane sandy new york city statueofliberty new york \n", "\n", "\n", "Gorgeous photography #notmine #hurricanesandy #nyc #nycphotography #statueofliberty #photography http://t.co/LpMKBw2z\n", "\n", "--------------------------------------------------------\n", - "gorgeous photography notmine hurricanesandy nyc nycphotography statueofliberty photography \n", + "gorgeous photography notmine hurricane sandy new york city nycphotography statueofliberty photography \n", "\n", "\n", "Are they #serious a damn #shark damn u #hurricanesandy http://t.co/llXquinH\n", "\n", "--------------------------------------------------------\n", - "serious damn shark damn hurricanesandy \n", + "serious damn shark damn hurricane sandy \n", "\n", "\n", "Much #respect their out there even in #hurricaneSandy #GodBlessThem http://t.co/niQqFG1h\n", "\n", "--------------------------------------------------------\n", - "much respect even hurricanesandy godblessthem \n", - "\n", - "\n", - "#HurricaneSandy SmH http://t.co/QepjSOXC\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy smh \n", + "much respect even hurricane sandy godblessthem \n", "\n", "\n", "This is beautiful yet scary... Praying for my #NYC fam. #hurricanesandy http://t.co/YVHikdmS\n", "\n", "--------------------------------------------------------\n", - "beautiful yet scary praying nyc fam hurricanesandy \n", + "beautiful yet scary praying new york city fam hurricane sandy \n", "\n", "\n", "New York City better prepare. #hurricanesandy http://t.co/yfguCCyh\n", "\n", "--------------------------------------------------------\n", - "new york city better prepare hurricanesandy \n", + "new york city better prepare hurricane sandy \n", "\n", "\n", "“@HShakeee: Hello, Sandy... http://t.co/nSniadkk #HurricaneSandy” AHH ! BE SAFE !\n", @@ -37240,31 +33168,31 @@ "Shit just got real whn u step out side n c thz shit #hurricanesandy http://t.co/XTNgvoJt\n", "\n", "--------------------------------------------------------\n", - "shit got real whn step side n c thz shit hurricanesandy \n", + "shit got real whn step side thz shit hurricane sandy \n", "\n", "\n", "This is real... Not edited. Hope the family in NYC is safe. #hurricanesandy http://t.co/uv5HqJTy\n", "\n", "--------------------------------------------------------\n", - "real edited hope family nyc safe hurricanesandy \n", + "real edited hope family new york city safe hurricane sandy \n", "\n", "\n", "Real Life Street Sharks! #HurricaneSandy #jerseyshore #finpumping #newjawsy #landshark #crazy #weaintsafenow http://t.co/d245bygU\n", "\n", "--------------------------------------------------------\n", - "real life street sharks hurricanesandy jerseyshore finpumping newjawsy landshark crazy weaintsafenow \n", + "real life street sharks hurricane sandy jerseyshore finpumping newjawsy landshark crazy weaintsafenow \n", "\n", "\n", "Cuuuud #hurricaneSandy http://t.co/9KNAlURD\n", "\n", "--------------------------------------------------------\n", - "cuuuud hurricanesandy \n", + "cuuuud hurricane sandy \n", "\n", "\n", "Sooo insane!! 😁 #hurricanesandy http://t.co/QSHb60ti\n", "\n", "--------------------------------------------------------\n", - "sooo insane hurricanesandy \n", + "sooo insane hurricane sandy \n", "\n", "\n", "From not the brightest card in the deck RT @IAMRUBY: Wow incredible pic of #hurricanesandy >> @tylersookochoff's photo http://t.co/74l7siKJ\n", @@ -37273,466 +33201,424 @@ "brightest card deck \n", "\n", "\n", - "“@iansomerhalder: This looks like a movie!Wtf?! http://t.co/XwgncslA” whoa! #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "whoa hurricanesandy \n", - "\n", - "\n", "Love this picture #HurricaneSandy http://t.co/LZDgbIvX\n", "\n", "--------------------------------------------------------\n", - "love picture hurricanesandy \n", + "love picture hurricane sandy \n", "\n", "\n", "Lmao LIES lol RT @itsWillyFerrell: An insane picture taken today of #HurricaneSandy approaching NYC. http://t.co/6kqvWbsW\n", "\n", "--------------------------------------------------------\n", - "lmao lies lol \n", + "lies \n", "\n", "\n", "Even through the hurricane the unnamed soldiers rest easy.. #respect #military #heros #hurricanesandy #usa # http://t.co/oLQexX2P\n", "\n", "--------------------------------------------------------\n", - "even hurricane unnamed soldiers rest easy respect military heros hurricanesandy usa \n", + "even hurricane unnamed soldiers rest easy respect military heros hurricane sandy usa \n", "\n", "\n", "Standing tall in the face of adversity #hurricanesandy #NYC @ Anjou http://t.co/KWUvsXGb\n", "\n", "--------------------------------------------------------\n", - "standing tall face adversity hurricanesandy nyc anjou \n", + "standing tall face adversity hurricane sandy new york city anjou \n", "\n", "\n", "Wow... #hurricanesandy. Stay safe NYC! http://t.co/QQfJvAn6\n", "\n", "--------------------------------------------------------\n", - "wow hurricanesandy stay safe nyc \n", + "hurricane sandy stay safe new york city \n", "\n", "\n", "#Merica #HurricaneSandy 🇺🇸 http://t.co/eOmDfw0G\n", "\n", "--------------------------------------------------------\n", - "merica hurricanesandy \n", - "\n", - "\n", - "#HurricaneSandy over #NYC http://t.co/GipzsO3A\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nyc \n", + "merica hurricane sandy \n", "\n", "\n", "You know shits craycray when there's a shark on your front lawn #Nj by Atlantic City #hurricanesandy http://t.co/dESAImK4\n", "\n", "--------------------------------------------------------\n", - "know shits craycray shark front lawn nj atlantic city hurricanesandy \n", + "know shits craycray shark front lawn new jersey atlantic city hurricane sandy \n", "\n", "\n", "major respect for these 3 dudes. #UnknownSoldier #America #GuardingTomb #HurricaneSandy http://t.co/NotSSaVb\n", "\n", "--------------------------------------------------------\n", - "major respect 3 dudes unknownsoldier america guardingtomb hurricanesandy \n", + "major respect dudes unknown soldier america guardingtomb hurricane sandy \n", "\n", "\n", "Omg dude! 😰😱 “@salbeast23: #hurricanesandy http://t.co/cZy1BNoP”\n", "\n", "--------------------------------------------------------\n", - "omg dude \n", + "dude \n", "\n", "\n", "#HurricaneSandy #Just #Got #Real #In #NYC #SHARKS #SWIMMING #IN #THE #ROAD http://t.co/sfBhABvD\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy got real nyc sharks swimming road \n", + "hurricane sandy got real new york city sharks swimming road \n", "\n", "\n", "Lord keep everyone safe Especially my family!!!! #HurricaneSandy #Nyc #Repost http://t.co/arhBXJYp\n", "\n", "--------------------------------------------------------\n", - "lord keep everyone safe especially family hurricanesandy nyc repost \n", + "lord keep everyone safe especially family hurricane sandy new york city repost \n", "\n", "\n", "My bitch Liberty aint going nowhere Sandy!!! #hurricanesandy #StatueOfLiberty #Eyecandy #NY #ImSoNY http://t.co/8RHJ5oXg\n", "\n", "--------------------------------------------------------\n", - "bitch liberty aint going nowhere sandy hurricanesandy statueofliberty eyecandy ny imsony \n", + "bitch liberty aint going nowhere sandy hurricane sandy statueofliberty eyecandy new york imsony \n", "\n", "\n", "New York today! #hurricaneSandy #incredible http://t.co/KbavFruo\n", "\n", "--------------------------------------------------------\n", - "new york today hurricanesandy incredible \n", + "new york today hurricane sandy incredible \n", "\n", "\n", "Talk about commitment!!! #RespectForTheUknownSoildier #HurricaneSandy http://t.co/hhCMQ9k4\n", "\n", "--------------------------------------------------------\n", - "talk commitment respectfortheuknownsoildier hurricanesandy \n", + "talk commitment respectfortheuknownsoildier hurricane sandy \n", "\n", "\n", "Be thankful this isn't you #hurricanesandy http://t.co/sxmOofyO\n", "\n", "--------------------------------------------------------\n", - "thankful hurricanesandy \n", + "thankful hurricane sandy \n", "\n", "\n", "Sharks are swimming up highways and shit.. #HurricaneSandy http://t.co/5S3ryZqy\n", "\n", "--------------------------------------------------------\n", - "sharks swimming highways shit hurricanesandy \n", + "sharks swimming highways shit hurricane sandy \n", "\n", "\n", "WOW! #hurricanesandy #usa #america #newyorkcity #manhattan #libertyisland #storm #flood http://t.co/vxlLwwIF\n", "\n", "--------------------------------------------------------\n", - "wow hurricanesandy usa america newyorkcity manhattan libertyisland storm flood \n", + "hurricane sandy usa america new yorkcity manhattan libertyisland storm flood \n", "\n", "\n", "Nature is Crazy #HurricaneSandy http://t.co/s9zfWzcY\n", "\n", "--------------------------------------------------------\n", - "nature crazy hurricanesandy \n", + "nature crazy hurricane sandy \n", "\n", "\n", "http://t.co/gtsdGD2g My thoughts and prayers are with you. Be Safe guys. God be with y'all. All love. #PrayForUSA #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "thoughts prayers safe guys god love prayforusa hurricanesandy \n", + "thoughts prayers safe guys god love prayforusa hurricane sandy \n", "\n", "\n", "Pray for New York and the whole eastern seaboard 🙏 ☔🌊 #hurricanesandy http://t.co/cU5n4twy\n", "\n", "--------------------------------------------------------\n", - "pray new york whole eastern seaboard hurricanesandy \n", + "pray new york whole eastern seaboard hurricane sandy \n", "\n", "\n", "Ummmm.... A SHARK in front of your house due to a hurricane!? No, thanks! #NJ #hurricanesandy #notfunny http://t.co/rkZ0PNIz\n", "\n", "--------------------------------------------------------\n", - "ummmm shark front house due hurricane thanks nj hurricanesandy notfunny \n", + "ummmm shark front house due hurricane thanks new jersey hurricane sandy notfunny \n", "\n", "\n", "#hurricanesandy is here folks http://t.co/gRmZJrLr\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy folks \n", - "\n", - "\n", - "🇺🇸 #merica #hurricanesandy http://t.co/k9gZtzKk\n", - "\n", - "--------------------------------------------------------\n", - "merica hurricanesandy \n", - "\n", - "\n", - "#WTF #HurricaneSandy http://t.co/7Dxoe63t\n", - "\n", - "--------------------------------------------------------\n", - "wtf hurricanesandy \n", + "hurricane sandy folks \n", "\n", "\n", "That shit crayy!!! #NewYork #HurricaneSandy #Frankenstorm #Nature http://t.co/IIrqFoCz\n", "\n", "--------------------------------------------------------\n", - "shit crayy newyork hurricanesandy frankenstorm nature \n", + "shit crayy new york hurricane sandy frankenstorm nature \n", "\n", "\n", "So crazy scary. #Frankenstorm #HurricaneSandy http://t.co/QZOVEJxn\n", "\n", "--------------------------------------------------------\n", - "crazy scary frankenstorm hurricanesandy \n", + "crazy scary frankenstorm hurricane sandy \n", "\n", "\n", "Shark ended up on a New Jersey Doorstep... #HurricaneSandy http://t.co/Em00qDBF\n", "\n", "--------------------------------------------------------\n", - "shark ended new jersey doorstep hurricanesandy \n", + "shark ended new jersey doorstep hurricane sandy \n", "\n", "\n", "We don't even have it bad... #HurricaneSandy http://t.co/0GpYj8ch\n", "\n", "--------------------------------------------------------\n", - "even bad hurricanesandy \n", + "even bad hurricane sandy \n", "\n", "\n", "Huge respect for them 💜 #hurricanesandy #unknownsoldier #protect http://t.co/XFZx4FGQ\n", "\n", "--------------------------------------------------------\n", - "huge respect hurricanesandy unknownsoldier protect \n", + "huge respect hurricane sandy unknown soldier protect \n", "\n", "\n", "Lol ain't no way «@kissmyasshleey #hurricaneSandy just got real http://t.co/0zlI6Ns5»\n", "\n", "--------------------------------------------------------\n", - "lol way hurricanesandy got real \n", + "way hurricane sandy got real \n", "\n", "\n", "Rain or shine us soldiers stand together #hurricanesandy http://t.co/VSqsKnfS\n", "\n", "--------------------------------------------------------\n", - "rain shine us soldiers stand together hurricanesandy \n", - "\n", - "\n", - "Yikes! #HurricaneSandy #NY http://t.co/ySZRoRhU\n", - "\n", - "--------------------------------------------------------\n", - "yikes hurricanesandy ny \n", + "rain shine us soldiers stand together hurricane sandy \n", "\n", "\n", "The respect I have for them is beyond extraordinary. #HurricaneSandy #ThreeUnknownSoldiers #DC http://t.co/LWZUTL6w\n", "\n", "--------------------------------------------------------\n", - "respect beyond extraordinary hurricanesandy threeunknownsoldiers dc \n", + "respect beyond extraordinary hurricane sandy threeunknown soldiers dc \n", "\n", "\n", "So there's a shark in the street... #lbi #hurricanesandy http://t.co/wzW9RoQv\n", "\n", "--------------------------------------------------------\n", - "shark street lbi hurricanesandy \n", + "shark street lbi hurricane sandy \n", "\n", "\n", "#repost from my buddy kord, but damn #hurricaneSandy washing #shark up to the front door! #wow http://t.co/ZEdApooN\n", "\n", "--------------------------------------------------------\n", - "repost buddy kord damn hurricanesandy washing shark front wow \n", + "repost buddy kord damn hurricane sandy washing shark front \n", "\n", "\n", "Sharks just swimming through the neighborhood.. #hurricanesandy http://t.co/kVHkoIEy\n", "\n", "--------------------------------------------------------\n", - "sharks swimming neighborhood hurricanesandy \n", + "sharks swimming neighborhood hurricane sandy \n", "\n", "\n", "I've never had more respect for someone. #tomboftheunknownsoldier #hurricanesandy #dedication http://t.co/KKn6jKX2\n", "\n", "--------------------------------------------------------\n", - "never respect someone tomboftheunknownsoldier hurricanesandy dedication \n", + "never respect someone tomboftheunknown soldier hurricane sandy dedication \n", "\n", "\n", "#TomboftheUnknownSoldier#nevernotguarded #commitment #pride #hurricanesandy http://t.co/rkmcFAfw\n", "\n", "--------------------------------------------------------\n", - "tomboftheunknownsoldier nevernotguarded commitment pride hurricanesandy \n", + "tomboftheunknown soldiernevernotguarded commitment pride hurricane sandy \n", "\n", "\n", "wow #repost #dedication #TombofTheUnknown #hurricanesandy #arlingtonnationalcemetary http://t.co/RdfcLsU7\n", "\n", "--------------------------------------------------------\n", - "wow repost dedication tomboftheunknown hurricanesandy arlingtonnationalcemetary \n", + "repost dedication tomboftheunknown hurricane sandy arlingtonnationalcemetary \n", "\n", "\n", "An empty Times Square, something I never expected to see. #stillmissyounyc #hurricanesandy #nyc http://t.co/HtcoqQXM\n", "\n", "--------------------------------------------------------\n", - "empty times square something never expected see stillmissyounyc hurricanesandy nyc \n", + "empty times square something never expected see stillmissyounyc hurricane sandy new york city \n", "\n", "\n", "Honey, there's a #shark in the front yard! #hurricanesandy #NewJersy http://t.co/hHjhdZ6t\n", "\n", "--------------------------------------------------------\n", - "honey shark front yard hurricanesandy newjersy \n", + "honey shark front yard hurricane sandy newjersy \n", "\n", "\n", "#respect #TombOfTheUnknownSoldier #HurricaneSandy #military #USA #Proud http://t.co/K6zZQo9t\n", "\n", "--------------------------------------------------------\n", - "respect tomboftheunknownsoldier hurricanesandy military usa proud \n", + "respect tomboftheunknown soldier hurricane sandy military usa proud \n", "\n", "\n", "Whoaaaa! =/ Some \"2012\" shit #Scary #HurricaneSandy #NYisFucked http://t.co/SNYE26Go\n", "\n", "--------------------------------------------------------\n", - "whoaaaa 2012 shit scary hurricanesandy nyisfucked \n", + "some2 shit scary hurricane sandy nyisfucked \n", "\n", "\n", "Shark by someone's front door #hurricanesandy http://t.co/qiY9Jcxl\n", "\n", "--------------------------------------------------------\n", - "shark someone front hurricanesandy \n", + "shark someone front hurricane sandy \n", "\n", "\n", "Times Square train station looking mint.. #timessquare #hurricanesandy http://t.co/vGL6RMFe\n", "\n", "--------------------------------------------------------\n", - "times square train station looking mint timessquare hurricanesandy \n", + "times square train station looking mint timessquare hurricane sandy \n", "\n", "\n", "#NY #newyork #statueofliberty #hurricanesandy #theworldisending http://t.co/KlXTJsFG\n", "\n", "--------------------------------------------------------\n", - "ny newyork statueofliberty hurricanesandy theworldisending \n", + "new york new york statueofliberty hurricane sandy theworldisending \n", "\n", "\n", "free scuba lessons in Times Square! thanks sandy! #hurricanesandy #hurricanenyc #flood http://t.co/8XaojqEV\n", "\n", "--------------------------------------------------------\n", - "free scuba lessons times square thanks sandy hurricanesandy hurricanenyc flood \n", + "free scuba lessons times square thanks sandy hurricane sandy hurricanenyc flood \n", "\n", "\n", "#hurricanesandy hits nyc http://t.co/eybWHWMc\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy hits nyc \n", + "hurricane sandy hits new york city \n", "\n", "\n", "#tomboftheunknownsoldier #hurricanesandy #MERICA #supportourtroops http://t.co/fELeUfSo\n", "\n", "--------------------------------------------------------\n", - "tomboftheunknownsoldier hurricanesandy merica supportourtroops \n", + "tomboftheunknown soldier hurricane sandy merica supportourtroops \n", "\n", "\n", "Washed up on Rutland.... #9oz #90s #sandy #hurricanesandy http://t.co/JnwsgLh8\n", "\n", "--------------------------------------------------------\n", - "washed rutland 9oz 90s sandy hurricanesandy \n", - "\n", - "\n", - "Omg. #repost #hurricanesandy http://t.co/2hOWbIai\n", - "\n", - "--------------------------------------------------------\n", - "omg repost hurricanesandy \n", + "washed rutland 0s sandy hurricane sandy \n", "\n", "\n", "What #sandy looks like in New York . #dope #hurricanesandy #statueofliberty http://t.co/LFogA7D2\n", "\n", "--------------------------------------------------------\n", - "sandy looks like new york dope hurricanesandy statueofliberty \n", + "sandy looks like new york dope hurricane sandy statueofliberty \n", "\n", "\n", "#dedication #honor #heroes #america #hurricanesandy #TombOfTheUnknownSoldier http://t.co/XbIEp9Ls\n", "\n", "--------------------------------------------------------\n", - "dedication honor heroes america hurricanesandy tomboftheunknownsoldier \n", + "dedication honor heroes america hurricane sandy tomboftheunknown soldier \n", "\n", "\n", "#HurricaneSandy #StatueOfLiberty #NYC http://t.co/4SO0XN3W\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy statueofliberty nyc \n", + "hurricane sandy statueofliberty new york city \n", "\n", "\n", "Forgot to post this last night #hurricanesandy http://t.co/6pe5aHlC\n", "\n", "--------------------------------------------------------\n", - "forgot post last night hurricanesandy \n", + "forgot post last night hurricane sandy \n", "\n", "\n", "This should keep the Kids from playing in the water!!! #Hurricane #HurricaneSandy http://t.co/3gzs9GaU\n", "\n", "--------------------------------------------------------\n", - "keep kids playing water hurricane hurricanesandy \n", + "keep kids playing water hurricane hurricane sandy \n", "\n", "\n", "Nature in its deadliest form!! #hurricanesandy #amazingpic http://t.co/lBr9rCvU\n", "\n", "--------------------------------------------------------\n", - "nature deadliest form hurricanesandy amazingpic \n", + "nature deadliest form hurricane sandy amazingpic \n", "\n", "\n", "This display of dedication makes me proud to be an American #unknownsoldier #guards #hurricaneSandy http://t.co/QtbIEA4k\n", "\n", "--------------------------------------------------------\n", - "display dedication makes proud american unknownsoldier guards hurricanesandy \n", + "display dedication makes proud american unknown soldier guards hurricane sandy \n", "\n", "\n", "O que estão vendo são apenas tubarões nadando pelas ruas de #nyc #hurricanesandy http://t.co/mRzUKMAl\n", "\n", "--------------------------------------------------------\n", - "estão vendo são apenas tubarões nadando pelas ruas nyc hurricanesandy \n", + "vendo apenas tubarões nadando ruas new york city hurricane sandy \n", "\n", "\n", "Lord bless them. Still standing during #HurricaneSandy http://t.co/shozTrfG\n", "\n", "--------------------------------------------------------\n", - "lord bless still standing hurricanesandy \n", + "lord bless still standing hurricane sandy \n", "\n", "\n", "That's hilarious.... #hurricanesandy #sandy #shark #flood http://t.co/nfEYaIMT\n", "\n", "--------------------------------------------------------\n", - "hilarious hurricanesandy sandy shark flood \n", + "hilarious hurricane sandy sandy shark flood \n", "\n", "\n", "Umm, this isn't okay. #nyc #frankenstorm #hurricanesandy http://t.co/yDxgUlOX\n", "\n", "--------------------------------------------------------\n", - "umm okay nyc frankenstorm hurricanesandy \n", - "\n", - "\n", - "«@shreyaghoshal “@Jeffreyiqbal: Flooding so bad the sharks are out to play! #HurricaneSandy http://t.co/8wfCwes2” is it real!!!!»\n", - "\n", - "--------------------------------------------------------\n", - "real \n", + "umm okay new york city frankenstorm hurricane sandy \n", "\n", "\n", "Wowzers #hurricanesandy #2012 http://t.co/kVzi9H4J\n", "\n", "--------------------------------------------------------\n", - "wowzers hurricanesandy 2012 \n", + "zers hurricane sandy012 \n", "\n", "\n", "Holy crap that looks awesome! #hurricanesandy #hurricanesandynj #hurricanesandyny http://t.co/ZfVo8F6l\n", "\n", "--------------------------------------------------------\n", - "holy crap looks awesome hurricanesandy hurricanesandynj hurricanesandyny \n", + "holy crap looks awesome hurricane sandy hurricane sandynj hurricane sandyny \n", "\n", "\n", "New York has a way of making everything look amazing, even #hurricanesandy stay safe loves 🗽 http://t.co/69sPP6kz\n", "\n", "--------------------------------------------------------\n", - "new york way making everything look amazing even hurricanesandy stay safe loves \n", + "new york way making everything look amazing even hurricane sandy stay safe loves \n", "\n", "\n", "Major respect #hurricanesandy #tomboftheinknownsoldier http://t.co/9pDOS03o\n", "\n", "--------------------------------------------------------\n", - "major respect hurricanesandy tomboftheinknownsoldier \n", + "major respect hurricane sandy tomboftheinknownsoldier \n", "\n", "\n", "#HurricaneSandy I wish everyone to be safe out there. http://t.co/D4G8usqe\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy wish everyone safe \n", + "hurricane sandy wish everyone safe \n", "\n", "\n", "A house in New Jersey. Pretty crazy #HurricaneSandy http://t.co/pNWi2Z5z\n", "\n", "--------------------------------------------------------\n", - "house new jersey pretty crazy hurricanesandy \n", + "house new jersey pretty crazy hurricane sandy \n", "\n", "\n", "أوكي جاك العلم .. يريور يقز بشوارع نيوجيرسي - a shark in wondering in NJ streets! #sandy #hurricanesandy http://t.co/MT2mhgZK\n", "\n", "--------------------------------------------------------\n", - "أوكي جاك العلم يريور يقز بشوارع نيوجيرسي shark wondering nj streets sandy hurricanesandy \n", + "أوكي جاك العلم يريور يقز بشوارع نيوجيرسي shark wondering new jersey streets sandy hurricane sandy \n", "\n", "\n", "#heroes #HurricaneSandy http://t.co/isOUo8lk\n", "\n", "--------------------------------------------------------\n", - "heroes hurricanesandy \n", + "heroes hurricane sandy \n", "\n", "\n", "Sharks on the FDR tho.... #hurricaneSandy http://t.co/Yja7ugTM\n", "\n", "--------------------------------------------------------\n", - "sharks fdr tho hurricanesandy \n", + "sharks fdr tho hurricane sandy \n", "\n", "\n", "Tony Soprano replaced by new sharks in New Jersey neighbourhoods. #HurricaneSandy http://t.co/sU6e4ZwW\n", "\n", "--------------------------------------------------------\n", - "tony soprano replaced new sharks new jersey neighbourhoods hurricanesandy \n", + "tony soprano replaced new sharks new jersey neighbourhoods hurricane sandy \n", "\n", "\n", "Looks like its off a film #hurricanesandy http://t.co/RNQs4zKv\n", "\n", "--------------------------------------------------------\n", - "looks like film hurricanesandy \n", + "looks like film hurricane sandy \n", "\n", "\n", "#repost #supportourtroops #usa #soldier #militarylove #hurricanesandy ❤❤❤❤💙💙💙💙🇺🇸 http://t.co/fiXKDJR2\n", "\n", "--------------------------------------------------------\n", - "repost supportourtroops usa soldier militarylove hurricanesandy \n", + "repost supportourtroops usa soldier militarylove hurricane sandy \n", "\n", "\n", "Liberty y u fuck wit Sandy and now u hiding #repost #comedy http://t.co/fJvH46bA\n", @@ -37753,16 +33639,10 @@ "joder tiburinos lado casas gente sandy \n", "\n", "\n", - "@milenagimon:#Sandy en NY! Tremenda imagen del huracán. Parece el \"Día de la Independencia 2\" http://t.co/41jUweux SOBRECOGEDOR! RT.\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny tremenda imagen huracán parece día independencia 2 sobrecogedor rt \n", - "\n", - "\n", "La Estatua de La Libertad vs. Sandy. http://t.co/J6qDWzLP\n", "\n", "--------------------------------------------------------\n", - "estatua libertad vs sandy \n", + "estatua libertad versus sandy \n", "\n", "\n", "Hayyyy nanita!!!! EN VIVO #SANDY / ESTATUA DE LA LIBERTAD #NEWYORK #USA http://t.co/I0pdTfsk” / impresionante :0\n", @@ -37786,13 +33666,7 @@ "Espectacular foto de l'estatua de la llibertat amb l'huracá #sandy a sobre!! http://t.co/pGA2Xfyw\n", "\n", "--------------------------------------------------------\n", - "espectacular foto l estatua llibertat amb l huracá sandy \n", - "\n", - "\n", - "@ToneItUp: Okay this is crazy... #Sandy http://t.co/rgOzmxtt omggg lol\n", - "\n", - "--------------------------------------------------------\n", - "okay crazy sandy omggg lol \n", + "espectacular foto estatua llibertat amb huracá sandy \n", "\n", "\n", "Just for the record, this picture is so shopped it hurts my brain that people think it's real: http://t.co/f5GERSSJ #sandy\n", @@ -37804,25 +33678,19 @@ "I'm not sure if this is real or not but this is insane #Sandy #NY #2012 http://t.co/DsEgYtxs\n", "\n", "--------------------------------------------------------\n", - "sure real insane sandy ny 2012 \n", + "sure real insane sandy ny012 \n", "\n", "\n", "This is no movie!!! #Sandy #HurricaneSandy #Praying #NYC #NJ #USA 🙏😞🙏 http://t.co/8nCnqg0C\n", "\n", "--------------------------------------------------------\n", - "movie sandy hurricanesandy praying nyc nj usa \n", - "\n", - "\n", - "WOW \\n#SANDY\\n\\nRT:\"@CHUCKIELOVE: SHE IS ARRIVING! \"..And So I says, COME ON..\"\\nhttp://t.co/1v9ZyvbW”\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", + "movie sandy hurricane sandy praying new york city new jersey usa \n", "\n", "\n", "Not sure if this is real, but if it is... Wow. #Sandy http://t.co/cf1lyvY0\n", "\n", "--------------------------------------------------------\n", - "sure real wow sandy \n", + "sure real sandy \n", "\n", "\n", "Woa, is this legit? RT @psimadethis: #UnderwaterSubway #Sandy http://t.co/978MRnyX\n", @@ -37837,18 +33705,6 @@ "shark swimming road new jersey freaking sandy \n", "\n", "\n", - "this real?!RT \\n“@MarlowNYC: Holy Shit Alert: shark swimmin in strts of Brigantine, N.J., during #Sandy (via @sista71) http://t.co/OBtUKseB”\n", - "\n", - "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", - "wow! for real? hurricane #sandy? RT @mizzliann: \"@iansomerhalder: This looks like a movie!Wtf?! http://t.co/2mWZPxcE\" omg\n", - "\n", - "--------------------------------------------------------\n", - "wow real hurricane sandy \n", - "\n", - "\n", "Amazing pic RT @elenaquiros9: RT @damnitstrue: This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/vaQBex3i\n", "\n", "--------------------------------------------------------\n", @@ -37858,13 +33714,13 @@ "This picture is #amazing. #Hurricane #Sandy #HurricaneSandy #Weather #Storm #Cool http://t.co/1UulCV9N\n", "\n", "--------------------------------------------------------\n", - "picture amazing hurricane sandy hurricanesandy weather storm cool \n", + "picture amazing hurricane sandy hurricane sandy weather storm cool \n", "\n", "\n", "Dear #Sandy, this is real ironic how you washed up a #Shark on a #NJ #Highway. Did @ Perth Amboy Waterfront http://t.co/IBTFfdzg\n", "\n", "--------------------------------------------------------\n", - "dear sandy real ironic washed shark nj highway perth amboy waterfront \n", + "dear sandy real ironic washed shark new jersey highway perth amboy waterfront \n", "\n", "\n", "That is an unsettling image:( RT @RSHotel: A very #empty Times Square (via Reddit) #nyc #sandy http://t.co/tnW4JfkG\n", @@ -37888,25 +33744,13 @@ "#Sandy #nyc #statueofliberty this is an astonishing picture http://t.co/ZZhAXGb2\n", "\n", "--------------------------------------------------------\n", - "sandy nyc statueofliberty astonishing picture \n", - "\n", - "\n", - "Is that real?? Whoa RT @pablogarabito: #Sandy http://t.co/4tV3y1Jo\n", - "\n", - "--------------------------------------------------------\n", - "real whoa \n", - "\n", - "\n", - "Is this 4 real? #sandy http://t.co/Vc04VcMh\n", - "\n", - "--------------------------------------------------------\n", - "4 real sandy \n", + "sandy new york city statueofliberty astonishing picture \n", "\n", "\n", "No ways lol RT @BlackheartViper: RT @ToneItUp: Okay this is crazy... #Sandy http://t.co/kGw9DDmU\n", "\n", "--------------------------------------------------------\n", - "ways lol \n", + "ways \n", "\n", "\n", "These guards are why America is so amazing. #Military #Merica #Sandy http://t.co/8mDjrb0L\n", @@ -37933,12 +33777,6 @@ "repost kinda scary sandy \n", "\n", "\n", - "Crazy RT @Mr__2DamnRaw: This is insane! New York with #hurricanesandy! http://t.co/rL6kpxcb\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", - "\n", - "\n", "This shit is deep #SANDY SHARKS IN THE FLOODED STREETS OF NEW JERSEY http://t.co/VSsP07md\n", "\n", "--------------------------------------------------------\n", @@ -37948,13 +33786,13 @@ "this is what NYC looked like #sandy http://t.co/D9EnTpAZ\n", "\n", "--------------------------------------------------------\n", - "nyc looked like sandy \n", + "new york city looked like sandy \n", "\n", "\n", "This is awesome. #NYC #Sandy http://t.co/XO94KQsJ\n", "\n", "--------------------------------------------------------\n", - "awesome nyc sandy \n", + "awesome new york city sandy \n", "\n", "\n", "#sandy looks hella crazy, but this photo is amazing. #beautiful even. Stay safe, east coast!! 🙏 #statueoflib http://t.co/GwpEiIz3\n", @@ -37975,16 +33813,10 @@ "nuts sharks streetsharks newjersey besafe boattime sidemirror sandy flooding igna \n", "\n", "\n", - "Is this real? RT @FawazJ7 New York sandy hurricane over Freedom statue #NYC #Sandy http://t.co/MrzPahU8\n", - "\n", - "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", "This is going to be one hell of a storm! Hope you guys will get through this one safe!#NYC #Sandy http://t.co/X3G7diwk\n", "\n", "--------------------------------------------------------\n", - "going one hell storm hope guys get one safe nyc sandy \n", + "going one hell storm hope guys get one safe new york city sandy \n", "\n", "\n", "Where's Will Smith!? RT @Pykaso_: Dope & Scary RT @OvATyME: This is a dope pic. Hurricane Sandy approaching NY http://t.co/kfRTCYWY\n", @@ -37996,25 +33828,19 @@ "This is terrifying #HurricaneSandy#SuperStormSandy #NewYork http://t.co/7LGj5Auf\n", "\n", "--------------------------------------------------------\n", - "terrifying hurricanesandy superstormsandy newyork \n", + "terrifying hurricane sandysuperstormsandy new york \n", "\n", "\n", "This is not fake or an album cover its #NYC #sandy Nature is a bitch @ GPR http://t.co/64Qq5B2I\n", "\n", "--------------------------------------------------------\n", - "fake album cover nyc sandy nature bitch gpr \n", + "fake album cover new york city sandy nature bitch gpr \n", "\n", "\n", "Is that real? RT“@ikeepsit_1hunid: OMG Prayers & Stay Safe!! RT @NuJerzeyDevil: Shit is real on the east coast! #Sandy http://t.co/eLnD1dPf”\n", "\n", "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", - "Holy...RT @ohiheartquotes: This shark was found in front of someone's house in New Jersey. #ohmygod #Sandy http://t.co/YwYBJTM4\n", - "\n", - "--------------------------------------------------------\n", - "holy \n", + "real rt \n", "\n", "\n", "Allahu Akbar!! RT @damnitstrue: This photo of #Sandy looks straight from \"The Day After Tomorrow\" http://t.co/l2pZk0t2\n", @@ -38023,34 +33849,16 @@ "allahu akbar \n", "\n", "\n", - "WTF ???!! RT @J_BoMb10: RT @cait_grave: Is this real life!? #shark in the streets of #rehoboth #Sandy ahhhhhhh !!!! http://t.co/9zsZKhNw\n", - "\n", - "--------------------------------------------------------\n", - "wtf \n", - "\n", - "\n", - "@ToneItUp: Okay this is crazy... #Sandy http://t.co/On5KrPd5 wow that's crazy.\n", - "\n", - "--------------------------------------------------------\n", - "okay crazy sandy wow crazy \n", - "\n", - "\n", "#Repost. Saying this is an extremely rare sight would be an understatement. #NewYork #Sandy @ Times Square http://t.co/hLYdgW6l\n", "\n", "--------------------------------------------------------\n", - "repost saying extremely rare sight would understatement newyork sandy times square \n", + "repost saying extremely rare sight would understatement new york sandy times square \n", "\n", "\n", "Un requin à New York ! RT @andrewjo52: This is creepy. Sharks swimming in downtown New Jersey ?????? #Sandy http://t.co/RyeUFQe1\n", "\n", "--------------------------------------------------------\n", - "requin à new york \n", - "\n", - "\n", - "#repost this is crazy!! #Sandy http://t.co/Q8bgoE9P\n", - "\n", - "--------------------------------------------------------\n", - "repost crazy sandy \n", + "requinnew york \n", "\n", "\n", "#sandy #USA ??? This is a false picture !!!!! http://t.co/6nxzomUr\n", @@ -38068,7 +33876,7 @@ "Hoping this is fake... #WTF #Sandy http://t.co/t4frvHmr\n", "\n", "--------------------------------------------------------\n", - "hoping fake wtf sandy \n", + "hoping fake sandy \n", "\n", "\n", "“@alksmorgan: Is this supposed to be scary? Sharks in the streets #sandy http://t.co/ABY8xbCn” no way! That's messed up\n", @@ -38092,13 +33900,7 @@ "Is it weird that I think this picture is beautiful?...like wow #sandy #newyork #statueofliberty http://t.co/tuPTGjr2\n", "\n", "--------------------------------------------------------\n", - "weird think picture beautiful like wow sandy newyork statueofliberty \n", - "\n", - "\n", - "Whoaaaaa. #Sandy RT @iansomerhalder: This looks like a movie!Wtf?! http://t.co/LlhdCQVO\n", - "\n", - "--------------------------------------------------------\n", - "whoaaaaa sandy \n", + "weird think picture beautiful like sandy new york statueofliberty \n", "\n", "\n", "Salute to the Marines. Strong Statement in this pic. RT @SteveMHII: #Sandy who? http://t.co/ylQojGMp\n", @@ -38131,16 +33933,10 @@ "prayers continue dealing w sandy situations like pic shark photo shopped \n", "\n", "\n", - "@WHODATLIFEGUARD: #SANDY got sharks swimming in the road , This is not a fake. Photo was sent by a friend in NY http://t.co/jqmgJz4D\n", - "\n", - "--------------------------------------------------------\n", - "sandy got sharks swimming road fake photo sent friend ny \n", - "\n", - "\n", "Is this photo of NYC real? #Sandy :( http://t.co/krZ2dwku\n", "\n", "--------------------------------------------------------\n", - "photo nyc real sandy \n", + "photo new york city real sandy \n", "\n", "\n", "Swag RT @Every1HatesQue: Crazy RT @Mr__2DamnRaw: This is insane! New York with #hurricanesandy! http://t.co/zWNrNpNk\n", @@ -38149,12 +33945,6 @@ "swag \n", "\n", "\n", - "@SirSchueler: “@ToneItUp: Okay this is crazy... #Sandy http://t.co/SUHArxJa” #Shark #إعصار_ساندي\n", - "\n", - "--------------------------------------------------------\n", - "shark إعصار ساندي \n", - "\n", - "\n", "This is Scary, taken from somebody stuck in hurricane sandy. #sandy #shark #flood http://t.co/GSQhrble\n", "\n", "--------------------------------------------------------\n", @@ -38164,19 +33954,19 @@ "OMG which movie is it?? RT @DddDominguez: RT @danaybg: You must see this… Another Shark on the street! #Sandy http://t.co/bk2fMQgM\n", "\n", "--------------------------------------------------------\n", - "omg movie \n", + "movie \n", "\n", "\n", "Yup“@SeanEatsAtlaNta: Is this real? RT @FawazJ7 New York sandy hurricane over Freedom statue #NYC #Sandy http://t.co/pYfKoopX”\n", "\n", "--------------------------------------------------------\n", - "yup real \n", + "yup \n", "\n", "\n", "#Sharks swimming in the streets of #NewJersey. Lol this is #nuts. Damn you #sandy! \\nThank you kemonutz for http://t.co/sLh0bWhU\n", "\n", "--------------------------------------------------------\n", - "sharks swimming streets newjersey lol nuts damn sandy thank kemonutz \n", + "sharks swimming streets newjersey nuts damn sandy thank kemonutz \n", "\n", "\n", "Is this supposed to be scary? Sharks in the streets #sandy http://t.co/sFw6bkhn\n", @@ -38188,13 +33978,13 @@ "Is this from Independence Day or Hurricane Sandy!? #Sandy #Armageddon #omg http://t.co/uH67Kbep\n", "\n", "--------------------------------------------------------\n", - "independence day hurricane sandy sandy armageddon omg \n", + "independence day hurricane sandy sandy armageddon \n", "\n", "\n", "Omg this is so 2012. #sandy #hurricanesandy @ New York City, NY http://t.co/TUUrlLlq\n", "\n", "--------------------------------------------------------\n", - "omg 2012 sandy hurricanesandy new york city ny \n", + "so012 sandy hurricane sandy new york city new york \n", "\n", "\n", "This shit is crazy... #sandy is a real bitch... http://t.co/3WxvHfzM\n", @@ -38203,46 +33993,40 @@ "shit crazy sandy real bitch \n", "\n", "\n", - "Is that real?? RT @LaurieMeisel: I am there everyday! #NYC subway system UNDERWATER! via @SeanMalarkey #Sandy http://t.co/WbjVgpT8\n", - "\n", - "--------------------------------------------------------\n", - "real \n", - "\n", - "\n", "My prayers to the #eastcoast right now. Especially #ny cause this bitch #sandy is no joke. http://t.co/6TJBCyzn\n", "\n", "--------------------------------------------------------\n", - "prayers eastcoast right especially ny cause bitch sandy joke \n", + "prayers eastcoast right especially new york cause bitch sandy joke \n", "\n", "\n", "This pic is for real. Holy Sh@t #Sandy http://t.co/dU0CYUtV\n", "\n", "--------------------------------------------------------\n", - "pic real holy sh sandy \n", + "pic real holysandy \n", "\n", "\n", "Whoah, is this for real?? > Porch fishing for sharks #Sandy > http://t.co/Qjxe8fPW\n", "\n", "--------------------------------------------------------\n", - "whoah real greater porch fishing sharks sandy greater \n", + "real porch fishing sharks sandy \n", "\n", "\n", "This is awesome #TombOfTheUnknownSoldier #DC #Sandy #HurricaneSandy http://t.co/GFkgVJk4\n", "\n", "--------------------------------------------------------\n", - "awesome tomboftheunknownsoldier dc sandy hurricanesandy \n", + "awesome tomboftheunknown soldier dc sandy hurricane sandy \n", "\n", "\n", "Is this real life? #sandy #hurricanesandy #storm #cray http://t.co/mxh90FLq\n", "\n", "--------------------------------------------------------\n", - "real life sandy hurricanesandy storm cray \n", + "real life sandy hurricane sandy storm cray \n", "\n", "\n", "This pic is so freaking American “@bri_j_amos: #Sandy doesn't stop Soldiers protecting the Tomb of the Unknown Soldier. http://t.co/xKrWQUv1\n", "\n", "--------------------------------------------------------\n", - "pic freaking american sandy stop soldiers protecting tomb unknown soldier \n", + "pic freaking american \n", "\n", "\n", "Soldiers still guarding the Tomb of the Unknowns...this picture is from this morning. #Sandy http://t.co/R1WVKqRD via @TwitPic\n", @@ -38257,16 +34041,10 @@ "times square legend style earlier evening sandy \n", "\n", "\n", - "Lmfao RT @StyleOnEleven: This is Times Square #Sandy http://t.co/zNuc5ZwT\n", - "\n", - "--------------------------------------------------------\n", - "lmfao \n", - "\n", - "\n", "Being told this one is real. Wow. RT @Franke609: @AtlanticCity911 Shark in the street in #Brigantine, New Jersey #Sandy http://t.co/Xu7Cxnr1\n", "\n", "--------------------------------------------------------\n", - "told one real wow \n", + "told one real \n", "\n", "\n", "It's also not of this storm! RT @KomalMinhas: Well that's an insane image! #sandy http://t.co/pIW1lkCc\n", @@ -38278,7 +34056,7 @@ "This is real? Shark in New Jersey #BraziliansPrayForUSA #PrayForUSA #HurricaneSandy #Sandy http://t.co/zBI8O44l\n", "\n", "--------------------------------------------------------\n", - "real shark new jersey braziliansprayforusa prayforusa hurricanesandy sandy \n", + "real shark new jersey braziliansprayforusa prayforusa hurricane sandy sandy \n", "\n", "\n", "https://t.co/VPTI3ffn #sandy....this is some day after tomorrow type ish\n", @@ -38290,13 +34068,13 @@ "Omg!! This is huge RT @Gidi_Traffic: #PHOTO @Ogaugust451: Hurricane Sandy gaining momentum. #sm4cc @Gidi_Traffic http://t.co/0AR2G9Vj\n", "\n", "--------------------------------------------------------\n", - "omg huge \n", + "huge \n", "\n", "\n", "This is by far the craziest thing I've seen in all these #storm #sandy #pics #sharks in #flood in #NJ #yikes http://t.co/zXn2uArj\n", "\n", "--------------------------------------------------------\n", - "far craziest thing seen storm sandy pics sharks flood nj yikes \n", + "far craziest thing seen storm sandy pics sharks flood new jersey \n", "\n", "\n", "“@kennybelvin: How very, ominous. #sandy http://t.co/Z7bLhY5d” is that legit real?\n", @@ -38314,13 +34092,13 @@ "This is not a movie .. This is #NewYork city yesterday !! #Sandy http://t.co/XXYqWQee\n", "\n", "--------------------------------------------------------\n", - "movie newyork city yesterday sandy \n", + "movie new york city yesterday sandy \n", "\n", "\n", "This is an actual picture of #Sandy as it was coming into NYC today...My prayers are with the people in her http://t.co/8crq1Em6\n", "\n", "--------------------------------------------------------\n", - "actual picture sandy coming nyc today prayers people \n", + "actual picture sandy coming new york city today prayers people \n", "\n", "\n", "This looks like War of the Worlds. Cue space invasion. #Frankenstorm RT @_amber_b: Wow!! #sandy http://t.co/OyMauTVL\n", @@ -38332,7 +34110,7 @@ "Wilding for respect lol RT @BoBBiLLz: Lmfao RT @StyleOnEleven: This is Times Square #Sandy http://t.co/2ZodxMNh\n", "\n", "--------------------------------------------------------\n", - "wilding respect lol \n", + "wilding respect \n", "\n", "\n", "The calm before the storm. This is an amazing photograph! #sandy #scaryshot http://t.co/P2N4SxHs\n", @@ -38350,19 +34128,13 @@ "And this is why I will always live in California 😳🎣 #HurricaneSandy http://t.co/xEHGzcaX\n", "\n", "--------------------------------------------------------\n", - "always live california hurricanesandy \n", - "\n", - "\n", - "That is a shark. . #sandy RT @ToneItUp: Okay this is crazy... #Sandy http://t.co/cPOCo5eR\n", - "\n", - "--------------------------------------------------------\n", - "shark sandy \n", + "always live california hurricane sandy \n", "\n", "\n", "#Sandy #Superstorm This is a picture of a shark on 142nd street in OC!!!! !!! http://t.co/LJSWKcy1\n", "\n", "--------------------------------------------------------\n", - "sandy superstorm picture shark 142nd street oc \n", + "sandy superstorm picture shark on42nd street oc \n", "\n", "\n", "You must see this... Another Shark on the street! #Sandy http://t.co/YXwTOtNX”\n", @@ -38380,7 +34152,7 @@ "Whoa! This is the Statue of Liberty right now - http://t.co/X3q8yTC5 #sandy via cam @cnn @weatherchannel\n", "\n", "--------------------------------------------------------\n", - "whoa statue liberty right sandy via cam \n", + "statue liberty right sandycam \n", "\n", "\n", "This is the real day after tomorrow! #sandy #hurricane #eastcoast http://t.co/i6my04Gm まるで、リアル「デイ・アフター・トゥモロー」状態。ニューヨークはえらい事になってます。\n", @@ -38404,25 +34176,25 @@ "Craziest pic this is #surreal #subway #nyc #timesquare #flood #flooding #sandy #crazy #nofilter http://t.co/RcfmVwUs\n", "\n", "--------------------------------------------------------\n", - "craziest pic surreal subway nyc timesquare flood flooding sandy crazy nofilter \n", + "craziest pic surreal subway new york city timesquare flood flooding sandy crazy nofilter \n", "\n", "\n", "#regram this picture is sweet! #sandy🌊🌀 http://t.co/RmBtUWIX\n", "\n", "--------------------------------------------------------\n", - "regram picture sweet sandy \n", + "picture sweet sandy \n", "\n", "\n", "Can someone verify if this seal is real? #HurricaneSandy http://t.co/MJwngA6F\n", "\n", "--------------------------------------------------------\n", - "someone verify seal real hurricanesandy \n", + "someone verify seal real hurricane sandy \n", "\n", "\n", "Hurricane Sandy. Wow. This is crazy. #sandy http://t.co/EIhXUe01\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy wow crazy sandy \n", + "hurricane sandy crazy sandy \n", "\n", "\n", "This photo is phenomenal. Army soldiers guard The Tomb of the Unknowns as Sandy begins to rage. http://t.co/83aQwcdO\n", @@ -38449,36 +34221,18 @@ "unbelievable sandy \n", "\n", "\n", - "#sandy #staysafe RT @billmckibben: Boardwalk floating in sections through the flooded streets of Atlantic City http://t.co/QMcqLQss #sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy staysafe \n", - "\n", - "\n", "Ground Zero #Sandy http://t.co/KA1jNv3I\n", "\n", "--------------------------------------------------------\n", "ground zero sandy \n", "\n", "\n", - "scary: “@jfporchez: Ground zero http://t.co/wn8wZzHk #sandy”\n", - "\n", - "--------------------------------------------------------\n", - "scary \n", - "\n", - "\n", "#SANDY IMPACT: Ground Zero http://t.co/qGbk7voa (via @BuzzFeedAndrew) (attn: @ShafaqHasan)\n", "\n", "--------------------------------------------------------\n", "sandy impact ground zero attn \n", "\n", "\n", - "Amazing photo RT @WGRZ: Flooding has turned Ground Zero into a waterfall. @AP photo #NYC #Sandy http://t.co/UoQwHmZX\n", - "\n", - "--------------------------------------------------------\n", - "amazing photo \n", - "\n", - "\n", "Water pouring into Ground Zero http://t.co/XAJPgpsL #Sandy\n", "\n", "--------------------------------------------------------\n", @@ -38494,25 +34248,25 @@ "whoa... ground zero is flooded. #Sandy http://t.co/eU8vr72z\n", "\n", "--------------------------------------------------------\n", - "whoa ground zero flooded sandy \n", + "ground zero flooded sandy \n", "\n", "\n", "#Sandy, l'acqua a cascata nel cantiere di Ground Zero http://t.co/5VfDnIZ3\n", "\n", "--------------------------------------------------------\n", - "sandy l acqua cascata nel cantiere di ground zero \n", + "sandy acqua cascata nel cantiere ground zero \n", "\n", "\n", "Incredible picture of water filling the construction site at ground zero. #NYC #flooding #sandy http://t.co/51hFjoNt\n", "\n", "--------------------------------------------------------\n", - "incredible picture water filling construction site ground zero nyc flooding sandy \n", + "incredible picture water filling construction site ground zero new york city flooding sandy \n", "\n", "\n", "Ground Zero Under Water is pretty sad :( #frankenstorm #hurricane #sandy #newyork #nyc #storm #floodings #fl http://t.co/Z4gf6kJ6\n", "\n", "--------------------------------------------------------\n", - "ground zero water pretty sad frankenstorm hurricane sandy newyork nyc storm floodings fl \n", + "ground zero water pretty sad frankenstorm hurricane sandy new york new york city storm floodings fl \n", "\n", "\n", "Woah RT @theJFord: This photo from Ground Zero in #NYC says it all on #Sandy there. (Credit: @GettyImages) http://t.co/OHTy5IHP\n", @@ -38536,13 +34290,7 @@ "Ground zero flooded today in #NYC. I am speechless! #Sandy #WTC #Flooding #GroundZero #HurricaneSandy #Fran http://t.co/KvYsSI9R\n", "\n", "--------------------------------------------------------\n", - "ground zero flooded today nyc speechless sandy wtc flooding groundzero hurricanesandy fran \n", - "\n", - "\n", - "Man.....Ground zero #sandy RT @AmayaRR: jasminesolano's photo http://t.co/t9tx0IiW\n", - "\n", - "--------------------------------------------------------\n", - "ground zero sandy \n", + "ground zero flooded today new york city speechless sandy wtc flooding groundzero hurricane sandy fran \n", "\n", "\n", "Ground zero construction site = giant waterfall #sandy ☔ http://t.co/JukOLMN1\n", @@ -38584,13 +34332,19 @@ "Il cantiere di Ground Zero è totalmente allagato #sandy #ny #newyork http://t.co/UUi1h4Tv\n", "\n", "--------------------------------------------------------\n", - "il cantiere di ground zero è totalmente allagato sandy ny newyork \n", - "\n", + "cantiere ground zero è totalmente allagato sandy new york new york \n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "NYC getting pounded by #sandy Rt \"@ethanklapper: Ground Zero = Flooded (AP Photo/John Minchillo) http://t.co/xkABQWhJ\"\n", "\n", "--------------------------------------------------------\n", - "nyc getting pounded sandy \n", + "new york city getting pounded sandy \n", "\n", "\n", "#sandy at the #wtc ground zero construction site. Still unsure exactly where this is. http://t.co/aKncC1qn\n", @@ -38614,19 +34368,19 @@ "INSANE pics: 1)Ground Zero inundated: http://t.co/KJykc8x8 2)#Sandy busting thru Hoboken PATH station: http://t.co/bAp02AJX\n", "\n", "--------------------------------------------------------\n", - "insane pics 1 ground zero inundated 2 sandy busting thru hoboken path station \n", + "insane pics ground zero inundated sandy busting hoboken path station \n", "\n", "\n", "Via 60minutes - Ground Zero site flooding. Mother Nature is not playin right now. #Sandy #NYC http://t.co/ouYqIOzt”\n", "\n", "--------------------------------------------------------\n", - "via 60minutes ground zero site flooding mother nature playin right sandy nyc \n", + "via0minutes ground zero site flooding mother nature playin right sandy new york city \n", "\n", "\n", "Allagata Ground Zero, la foto è impressionante https://t.co/mbkj6ReK (via @NewYorkPost) #sandy #newyork\n", "\n", "--------------------------------------------------------\n", - "allagata ground zero foto è impressionante sandy newyork \n", + "allagata ground zero foto è impressionante sandy new york \n", "\n", "\n", "Water floods Ground Zero construction site #silenthill #sandy http://t.co/XIRFlhql\n", @@ -38638,19 +34392,13 @@ "Ground zero, flooded (via ap) #HurricaneSandy #sandy #Hurricane #GodBless #flooding #flood #horrible #sandy http://t.co/HXUX2TMW\n", "\n", "--------------------------------------------------------\n", - "ground zero flooded via ap hurricanesandy sandy hurricane godbless flooding flood horrible sandy \n", + "ground zero flooded ap hurricane sandy sandy hurricane godbless flooding flood horrible sandy \n", "\n", "\n", "Ground Zero #Ground #Zero #NYC #New #York #City #Hurricane #Sandy #Sea #Hudson http://t.co/lxrRYXJ5\n", "\n", "--------------------------------------------------------\n", - "ground zero ground zero nyc new york city hurricane sandy hudson \n", - "\n", - "\n", - "Wow!!! RT @CatchMeOnTour: Ground Zero being bombarded with water :( #HurricaneSandy #NYC #Storm #Flooding http://t.co/pBhMkFfH\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", + "ground zero ground zero new york city new york city hurricane sandy hudson \n", "\n", "\n", "#ManhattanNY Ground Zero construction site flooded. #Sandy #BREAKING http://t.co/WututGQ4\n", @@ -38662,115 +34410,109 @@ "Ground Zero is #flooded. #sandy #nyc http://t.co/yNmpwPWV\n", "\n", "--------------------------------------------------------\n", - "ground zero flooded sandy nyc \n", - "\n", - "\n", - "@hunterwalk: Amazing pic of Ground Zero flooding in NYC #Sandy http://t.co/UXLZD7Bl\\nShared via TweetCaster\n", - "\n", - "--------------------------------------------------------\n", - "amazing pic ground zero flooding nyc sandy shared via tweetcaster \n", + "ground zero flooded sandy new york city \n", "\n", "\n", "Ground zero lastnight! #hurricanesandy #nyc @_ilovehazza_ http://t.co/721leIAA\n", "\n", "--------------------------------------------------------\n", - "ground zero lastnight hurricanesandy nyc \n", + "ground zero lastnight hurricane sandy new york city \n", "\n", "\n", "Ground zero .... Omfg😰 #hurricanesandy http://t.co/LZoC2Yuz\n", "\n", "--------------------------------------------------------\n", - "ground zero omfg hurricanesandy \n", + "ground zero hurricane sandy \n", "\n", "\n", "Ground Zero Construction site ..NewYork #HurricaneSandy http://t.co/sJo5b0v4\n", "\n", "--------------------------------------------------------\n", - "ground zero construction site newyork hurricanesandy \n", + "ground zero construction site new york hurricane sandy \n", "\n", "\n", "Ground Zero construction area http://t.co/98sZiSuB #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "ground zero construction area hurricanesandy \n", + "ground zero construction area hurricane sandy \n", "\n", "\n", "Ground Zero NYC flooded. #hurricanesandy http://t.co/4xPwjRg7\n", "\n", "--------------------------------------------------------\n", - "ground zero nyc flooded hurricanesandy \n", + "ground zero new york city flooded hurricane sandy \n", "\n", "\n", "Ground Zero. #pray #hurricanesandy #nyc http://t.co/756QRvEL\n", "\n", "--------------------------------------------------------\n", - "ground zero pray hurricanesandy nyc \n", + "ground zero pray hurricane sandy new york city \n", "\n", "\n", "Ground Zero 😣 #prayers for all those effected by #HurricaneSandy!!! Heartbreaking!! 💔 http://t.co/gVtHAtYF\n", "\n", "--------------------------------------------------------\n", - "ground zero prayers effected hurricanesandy heartbreaking \n", + "ground zero prayers effected hurricane sandy heartbreaking \n", "\n", "\n", "Ground zero New York #hurricanesandy http://t.co/MqgkLgmF\n", "\n", "--------------------------------------------------------\n", - "ground zero new york hurricanesandy \n", + "ground zero new york hurricane sandy \n", "\n", "\n", "💔 So sad, Praying for NYC & The Whole East Coast #hurricanesandy #groundzero #Pray http://t.co/qqbccRiW\n", "\n", "--------------------------------------------------------\n", - "sad praying nyc whole east coast hurricanesandy groundzero pray \n", + "sad praying new york city whole east coast hurricane sandy groundzero pray \n", "\n", "\n", "#groundzero #ny #hurricanesandy http://t.co/eqFdFGKi\n", "\n", "--------------------------------------------------------\n", - "groundzero ny hurricanesandy \n", + "groundzero new york hurricane sandy \n", "\n", "\n", "#hurricane #hurricanesandy #groundzero #flood http://t.co/vrhdzHIB\n", "\n", "--------------------------------------------------------\n", - "hurricane hurricanesandy groundzero flood \n", + "hurricane hurricane sandy groundzero flood \n", "\n", "\n", "#groundzero #hurricanesandy #newyork #storm #sandy #crazy #speachless http://t.co/Xh3hTKai\n", "\n", "--------------------------------------------------------\n", - "groundzero hurricanesandy newyork storm sandy crazy speachless \n", + "groundzero hurricane sandy new york storm sandy crazy speachless \n", "\n", "\n", "#GroundZero #hurricanesandy #nofilter #notmyphoto http://t.co/t57kyglh\n", "\n", "--------------------------------------------------------\n", - "groundzero hurricanesandy nofilter notmyphoto \n", + "groundzero hurricane sandy nofilter notmyphoto \n", "\n", "\n", "Wow check out groundZero #hurricanesandy #sandy #911 #groundZero #currentsituation http://t.co/otIozM8m\n", "\n", "--------------------------------------------------------\n", - "wow check groundzero hurricanesandy sandy 911 groundzero currentsituation \n", + "check groundzero hurricane sandy sandy11 groundzero currentsituation \n", "\n", "\n", "Pray for New York!!!! 🙏🙏🙏 #NewYork #HurricaneSandy #GroundZero #GoodTimes #Me #True #Instamood #Instagood #I http://t.co/DnGiySgP\n", "\n", "--------------------------------------------------------\n", - "pray new york newyork hurricanesandy groundzero goodtimes true instamood instagood \n", + "pray new york new york hurricane sandy groundzero goodtimes true instagood \n", "\n", "\n", "#Groundzero #nyc #hurricanesandy #instagram #wow #mothernature http://t.co/lzzqJkc4\n", "\n", "--------------------------------------------------------\n", - "groundzero nyc hurricanesandy instagram wow mothernature \n", + "groundzero new york city hurricane sandy instagram mothernature \n", "\n", "\n", "#groundzero #freedomtower #flooding #nyc #sandy http://t.co/5cAfARlk\n", "\n", "--------------------------------------------------------\n", - "groundzero freedomtower flooding nyc sandy \n", + "groundzero freedomtower flooding new york city sandy \n", "\n", "\n", "#GroundZero #Sandy http://t.co/xEAVv7Vr\n", @@ -38782,31 +34524,31 @@ "sonjabee's photo http://t.co/HUQkxeoj #groundzero #nyc #superstorm #sandy\n", "\n", "--------------------------------------------------------\n", - "sonjabee photo groundzero nyc superstorm sandy \n", + "sonjabee photo groundzero new york city superstorm sandy \n", "\n", "\n", "#surreal #image #sandy #storm #ny #groundzero http://t.co/vHjsq2qF\n", "\n", "--------------------------------------------------------\n", - "surreal image sandy storm ny groundzero \n", + "surreal image sandy storm new york groundzero \n", "\n", "\n", "“@nynewsn: Waterfalls of #GroundZero\\nhttp://t.co/rcG40ZyC #nyc #newyork #sandy” @OzgeMemisoglu bak gecen gun oldugun yer ne halde!\n", "\n", "--------------------------------------------------------\n", - "bak gecen gun oldugun yer ne halde \n", + "bak gecen gun oldugun yer halde \n", "\n", "\n", "Dam #mothernature you #scary #groundzero #nyc #sandy #worldgoingtoshit http://t.co/PZqayJd9\n", "\n", "--------------------------------------------------------\n", - "dam mothernature scary groundzero nyc sandy worldgoingtoshit \n", + "dam mothernature scary groundzero new york city sandy worldgoingtoshit \n", "\n", "\n", "#groundzero flooding. Crazy #nyc #sandy http://t.co/nB1Q4aTl\n", "\n", "--------------------------------------------------------\n", - "groundzero flooding crazy nyc sandy \n", + "groundzero flooding crazy new york city sandy \n", "\n", "\n", "#groundzero #sandy #cityunderwater pray for these people. God help them🙏 http://t.co/ffjYAy0d\n", @@ -38836,19 +34578,19 @@ "Water gushing into the #GroundZero construction site #NY #Sandy http://t.co/JZzKwTjB\n", "\n", "--------------------------------------------------------\n", - "water gushing groundzero construction site ny sandy \n", + "water gushing groundzero construction site new york sandy \n", "\n", "\n", "#sea #water #floods #ground #zero #construction #site #NY #sandy http://t.co/LslUl4cd\n", "\n", "--------------------------------------------------------\n", - "water floods ground zero construction site ny sandy \n", + "water floods ground zero construction site new york sandy \n", "\n", "\n", "#groundzero in #nyc during #sandy stay safe east coast friends! http://t.co/Z1jixJBE\n", "\n", "--------------------------------------------------------\n", - "groundzero nyc sandy stay safe east coast friends \n", + "groundzero new york city sandy stay safe east coast friends \n", "\n", "\n", "Powerful images streaming in from #Sandy's arrival #groundzero\\nhttp://t.co/Epd4jqsG http://t.co/PM126nCe\n", @@ -38860,37 +34602,31 @@ "Because of #sandy this is what #groundzero looks like in #newyork!! #godbless http://t.co/bv0NOdZA\n", "\n", "--------------------------------------------------------\n", - "sandy groundzero looks like newyork godbless \n", + "sandy groundzero looks like new york godbless \n", "\n", "\n", "Took this from #hurricanesandy fb page. This is the #groundzero construction site. #nyc #hurricane #sandy http://t.co/3ANYiZMt\n", "\n", "--------------------------------------------------------\n", - "took hurricanesandy fb page groundzero construction site nyc hurricane sandy \n", + "took hurricane sandy fb page groundzero construction site new york city hurricane sandy \n", "\n", "\n", "Ground Zero. -_- #hurricanesandy #nyc http://t.co/gTmugNIS\n", "\n", "--------------------------------------------------------\n", - "ground zero hurricanesandy nyc \n", - "\n", - "\n", - "Ground Zero. #hurricanesandy http://t.co/4OPbVkBJ\n", - "\n", - "--------------------------------------------------------\n", - "ground zero hurricanesandy \n", + "ground zero hurricane sandy new york city \n", "\n", "\n", "L'immagine simbolo di NY oggi è l'acqua a cascata nel cantiere di Ground Zero #Sandy\\nhttp://t.co/x7GINJe6 (via @Maumol)\\n#staystrongAmerica\n", "\n", "--------------------------------------------------------\n", - "l immagine simbolo di ny oggi è l acqua cascata nel cantiere di ground zero sandy staystrongamerica \n", + "immagine simbolo new york oggi è acqua cascata nel cantiere ground zero sandy staystrongamerica \n", "\n", "\n", "Ground Zero looks like Niagara Falls! (Image via ap) #sandy #NYC @ Ground Zero http://t.co/3LfVRcUk\n", "\n", "--------------------------------------------------------\n", - "ground zero looks like niagara falls image via ap sandy nyc ground zero \n", + "ground zero looks like niagara falls imageap sandy new york city ground zero \n", "\n", "\n", "Pray for our east coast brothers and sisters. Ground zero is flooded... #Sandy http://t.co/FY4KajML\n", @@ -38902,13 +34638,13 @@ "This photo of sea water flooding Ground Zero in #NYC is heartbreaking. #Sandy (via AP/John Minchillo) http://t.co/gARvHZhW\n", "\n", "--------------------------------------------------------\n", - "photo water flooding ground zero nyc heartbreaking sandy via ap john minchillo \n", + "photo water flooding ground zero new york city heartbreaking sandy ap jn minchillo \n", "\n", "\n", "cascata nel cantiere di Ground Zero #Sandy\\nhttp://t.co/D69zMitw\n", "\n", "--------------------------------------------------------\n", - "cascata nel cantiere di ground zero sandy \n", + "cascata nel cantiere ground zero sandy \n", "\n", "\n", "Flood waters are currently inundating the Ground Zero construction site in New York City. http://t.co/XJ0zH6UH #Sandy\n", @@ -38920,13 +34656,13 @@ "“@wkyc Flooding has turned Ground Zero into a waterfall. @AP photo #NYC #Sandy http://t.co/gLKipCUQ”\n", "\n", "--------------------------------------------------------\n", - "flooding turned ground zero waterfall photo nyc sandy \n", + "flooding turned ground zero waterfall photo new york city sandy \n", "\n", "\n", "Ground zero flooding #nyc #sandy #superstorm #frankenstorm #hurricane http://t.co/dc5RF6Ng\n", "\n", "--------------------------------------------------------\n", - "ground zero flooding nyc sandy superstorm frankenstorm hurricane \n", + "ground zero flooding new york city sandy superstorm frankenstorm hurricane \n", "\n", "\n", "Flood waters at Ground Zero. #prayfortheeastcoast #sandy http://t.co/5B6Gn4J7\n", @@ -38938,7 +34674,7 @@ "Ground zero...#hurricanesandy, #groundzero, #flood http://t.co/gb4WytZX\n", "\n", "--------------------------------------------------------\n", - "ground zero hurricanesandy groundzero flood \n", + "ground zero hurricane sandy groundzero flood \n", "\n", "\n", "Now Ground Zero site flooding (AP) http://t.co/bAccYsYU #sandy\n", @@ -38950,19 +34686,19 @@ "Ground Zero flooded. #HurricaneSandy http://t.co/UW0oWKaw\n", "\n", "--------------------------------------------------------\n", - "ground zero flooded hurricanesandy \n", + "ground zero flooded hurricane sandy \n", "\n", "\n", "Water rushing at Ground Zero construction site. #hurricane #hurricanesandy #praying #staysafenyc http://t.co/gp3wWEDX\n", "\n", "--------------------------------------------------------\n", - "water rushing ground zero construction site hurricane hurricanesandy praying staysafenyc \n", + "water rushing ground zero construction site hurricane hurricane sandy praying staysafenyc \n", "\n", "\n", "Flood waters at Ground Zero. #hurricanesandy #speechless http://t.co/R7xRUHD0\n", "\n", "--------------------------------------------------------\n", - "flood waters ground zero hurricanesandy speechless \n", + "flood waters ground zero hurricane sandy speechless \n", "\n", "\n", "GroundZero has even flooded...#sandy is not playing.... http://t.co/Ism1A8OB\n", @@ -38974,13 +34710,13 @@ "#repost damn... #NY #HurricaneSandy http://t.co/apf21LUB\n", "\n", "--------------------------------------------------------\n", - "repost damn ny hurricanesandy \n", + "repost damn new york hurricane sandy \n", "\n", "\n", "Damn #prayers #hurricanesandy #repost http://t.co/TssN4bha\n", "\n", "--------------------------------------------------------\n", - "damn prayers hurricanesandy repost \n", + "damn prayers hurricane sandy repost \n", "\n", "\n", "“@THEREAL_McMandi: #repost damn... #NY #HurricaneSandy http://t.co/xbPObQjG” | MOTHER NATURE AIN'T PLAYING!! LOOK. REPOST. PRAY #Sandy 😱🙏🙏\n", @@ -38992,37 +34728,31 @@ "7PM. Plymouth St & lower park areas flooded, water now breaching carousel. #dumbo #brooklyn #sandy http://t.co/jnxDlF34\n", "\n", "--------------------------------------------------------\n", - "7pm plymouth st lower park areas flooded water breaching carousel dumbo brooklyn sandy \n", + "plymouth st lower park areas flooded water breaching carousel dumbo brooklyn sandy \n", + "\n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ "Inundación en la Zona Cero de Nueva York por huracán #Sandy.#NewYork http://t.co/f7MraGSv\n", "\n", "--------------------------------------------------------\n", - "inundación zona cero nueva york huracán sandy newyork \n", + "inundación zona cero nueva york huracán sandy new york \n", "\n", "\n", "Inundación en la Zona Cero de Nueva York por huracán #Sandy. Foto: AP #GroundZero #NewYork http://t.co/f5QswEAX\n", "\n", "--------------------------------------------------------\n", - "inundación zona cero nueva york huracán sandy foto ap groundzero newyork \n", + "inundación zona cero nueva york huracán sandy foto ap groundzero new york \n", "\n", "\n", "Front facade of a building on 92nd ripped off! #nyc #sandy #hell http://t.co/XnSq4ZOT\n", "\n", "--------------------------------------------------------\n", - "front facade building 92nd ripped nyc sandy hell \n", + "front facade building on2nd ripped new york city sandy hell \n", "\n", "\n", "Front of building falls off in Chelsea. #sandy #frankenstorm #nyc http://t.co/N1jR4qeM\n", "\n", "--------------------------------------------------------\n", - "front building falls chelsea sandy frankenstorm nyc \n", + "front building falls chelsea sandy frankenstorm new york city \n", "\n", "\n", "La Zona Cero de Nueva York transformada en una cascada por la súpertormenta #Sandy http://t.co/TnE5Tp0v\n", @@ -39040,31 +34770,25 @@ "Damn. World Trade Center right now. #Flooded #WaterFall #HurricaneSandy http://t.co/oHVij5s5\n", "\n", "--------------------------------------------------------\n", - "damn world trade center right flooded waterfall hurricanesandy \n", + "damn world trade center right flooded waterfall hurricane sandy \n", "\n", "\n", "FDR Manhattan #34thStreet #Washout #HurricaneSandy #FrankenStorm http://t.co/Scf5P0d4\n", "\n", "--------------------------------------------------------\n", - "fdr manhattan 34thstreet washout hurricanesandy frankenstorm \n", - "\n", - "\n", - "@InmaNaBel: Impresionante imagen de la zona del World Trade Center inundándose #Sandy http://t.co/EBgpk61h (vía @BreakingNewsChi)\n", - "\n", - "--------------------------------------------------------\n", - "impresionante imagen zona world trade center inundándose sandy vía \n", + "fdr manhattan4thstreet washout hurricane sandy frankenstorm \n", "\n", "\n", "#Sandy Le site de la reconstruction du World Trade Center à New York est inondé. https://t.co/g7hFYqj1\n", "\n", "--------------------------------------------------------\n", - "sandy site reconstruction world trade center à new york est inondé \n", + "sandy site reconstruction world trade centernew york inondé \n", "\n", "\n", "La foto más difundida de los destrozos de #Sandy en #NY es esta de la \"Zona cero\" del WTC http://t.co/LXmMt0ax\n", "\n", "--------------------------------------------------------\n", - "foto difundida destrozos sandy ny zona cero wtc \n", + "foto difundida destrozos sandy new york zona cero wtc \n", "\n", "\n", "Imagen: La zona del World Trade Center comienza a inundarse #Sandy http://t.co/mgBBqUXr\n", @@ -39076,13 +34800,13 @@ "Impresionante imagen de la zona del World Trade Center inundándose #Sandy http://t.co/xpaXSDvS (vía @BreakingNewsChi)\n", "\n", "--------------------------------------------------------\n", - "impresionante imagen zona world trade center inundándose sandy vía \n", + "impresionante imagen zona world trade center inundándose sandy \n", "\n", "\n", "Wow. #Sandy sure did destroy some things. http://t.co/SROwv09j\n", "\n", "--------------------------------------------------------\n", - "wow sandy sure destroy things \n", + "sandy sure destroy things \n", "\n", "\n", "Esto es Seaside Heights, donde se grabó Jersey Shore, después del huracán Sandy http://t.co/zjOYQfck\n", @@ -39094,43 +34818,37 @@ "Hurrican Sandy At Fucking Around... #lmao #funny #shit #dying #hilarious #wow #insane #crazy #trampoline #wi http://t.co/2hVeHqPW\n", "\n", "--------------------------------------------------------\n", - "hurrican sandy fucking around lmao funny shit dying hilarious wow insane crazy trampoline wi \n", + "hurrican sandy fucking around funny shit dying hilarious insane crazy trampoline wi \n", "\n", "\n", "Hurricane Sandy is killing redhook and it's only about 9hrs away from starting. http://t.co/X3TpnF1N\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy killing redhook 9hrs away starting \n", + "hurricane sandy killing redhook away starting \n", "\n", "\n", "Lower East Side manhattan. Hurricane Sandy. #hurricanesandy http://t.co/PT2qgKL7\n", "\n", "--------------------------------------------------------\n", - "lower east side manhattan hurricane sandy hurricanesandy \n", + "lower east side manhattan hurricane sandy hurricane sandy \n", "\n", "\n", "Sandy ain't no Irene, this is Red Hook now. If you live in Zone 1 evacuate!! Take heed to the warning. http://t.co/2eeFwcO9\n", "\n", "--------------------------------------------------------\n", - "sandy irene red hook live zone 1 evacuate take heed warning \n", - "\n", - "\n", - "Sandy is not playing! http://t.co/CuzIOX1s\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", + "sandy irene red hook live zone evacuate take heed warning \n", "\n", "\n", "Sandy doing damage... Manhattan, Ny http://t.co/pnbGBk9H\n", "\n", "--------------------------------------------------------\n", - "sandy damage manhattan ny \n", + "sandy damage manhattan new york \n", "\n", "\n", "Oh hell noooo!! Sandy ain't playing !! http://t.co/P7HHf81a\n", "\n", "--------------------------------------------------------\n", - "oh hell noooo sandy playing \n", + "hell noooo sandy playing \n", "\n", "\n", "Prayers go out to all those that are/will be affected by Hurricane Sandy. http://t.co/q4B0jUCU\n", @@ -39142,7 +34860,7 @@ "Another amazing Sandy photo — a flooded parking lot filled with taxi cabs in Hoboken, N.J. http://t.co/uYHGpUFc\n", "\n", "--------------------------------------------------------\n", - "another amazing sandy photo flooded parking lot filled taxi cabs hoboken n j \n", + "another amazing sandy photo flooded parking lot filled taxi cabs hoboken \n", "\n", "\n", "This is not that fun, Sandy overcame the expectations http://t.co/QvTi2n1Y\n", @@ -39184,7 +34902,7 @@ "#Sandy laid the smack down on a building on 15th and 8th ave. @ Frankenstorm Apocalypse - Hurricane Sandy http://t.co/JlhgaWfm\n", "\n", "--------------------------------------------------------\n", - "sandy laid smack building 15th 8th ave frankenstorm apocalypse hurricane sandy \n", + "sandy laid smack building on5th ave frankenstorm apocalypse hurricane sandy \n", "\n", "\n", "Sandy is going off right now!! http://t.co/SUX3V29F\n", @@ -39199,16 +34917,10 @@ "ready branches sandy bring \n", "\n", "\n", - "Sandy not playing http://t.co/3SS6prnS\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", - "\n", - "\n", "foto de un parque alla en NY afectado por Sandy → http://t.co/GHiTDnx6\n", "\n", "--------------------------------------------------------\n", - "foto parque ny afectado sandy \n", + "foto parque new york afectado sandy \n", "\n", "\n", "Latest full disk image of Earth puts Hurricane Sandy into perspective. http://t.co/XYCh10VU\n", @@ -39232,13 +34944,13 @@ "Wow, look what #sandy threw on shore!!...sandy aint playin. Stay safe people http://t.co/RXwF9vAt\n", "\n", "--------------------------------------------------------\n", - "wow look sandy threw shore sandy aint playin stay safe people \n", + "look sandy threw shore sandy aint playin stay safe people \n", "\n", "\n", "Subway station in NY... Sandy showed her ass! http://t.co/8YqvAnwc\n", "\n", "--------------------------------------------------------\n", - "subway station ny sandy showed ass \n", + "subway station new york sandy showed ass \n", "\n", "\n", "This is what happen to east coast after the devastating hurricane named \"sandy\" strikes .. Let's #pray for t http://t.co/zckSM7t6\n", @@ -39256,7 +34968,7 @@ "Super Storm Sandy\\nAt least 33 dead and more than 7m without power after Sandy brought punishing winds and severe f http://t.co/789py8ZR\n", "\n", "--------------------------------------------------------\n", - "super storm sandy least 33 dead 7m without power sandy brought punishing winds severe f \n", + "super storm sandy least3 dead without power sandy brought punishing winds severe f \n", "\n", "\n", "You wanna play sandy?? http://t.co/LuVToBjd\n", @@ -39280,13 +34992,13 @@ "A fantastic NASA photo of Sandy... Pretty horrific. ☁☔🌊🍃⚡🌀 #hurricanesandy #frankenstorm @ Cockeysville, MD http://t.co/ODYEVBPI\n", "\n", "--------------------------------------------------------\n", - "fantastic nasa photo sandy pretty horrific hurricanesandy frankenstorm cockeysville md \n", + "fantastic nasa photo sandy pretty horrific hurricane sandy frankenstorm cockeysville md \n", "\n", "\n", "Hurricane Sandy as seen from space. 😳💨🌎🌌 #hurricanesandy #earth #itgonrain #frankenstorm http://t.co/AbCCwiy8\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy seen space hurricanesandy earth itgonrain frankenstorm \n", + "hurricane sandy seen space hurricane sandy earth itgonrain frankenstorm \n", "\n", "\n", "The wrath of Sandy http://t.co/kEDSs5XV\n", @@ -39322,7 +35034,7 @@ "Nueva York 29/10/12 huracán Sandy #huracánSandy #Frakenstorm foto 2 http://t.co/OnLdr6xX\n", "\n", "--------------------------------------------------------\n", - "nueva york 29 10 12 huracán sandy huracánsandy frakenstorm foto 2 \n", + "nueva york902 huracán sandy huracánsandy frakenstorm foto \n", "\n", "\n", "dwm1212's photo http://t.co/zOMC1oTY saying prayers for all of those effected by hurricane Sandy.\n", @@ -39340,7 +35052,7 @@ "Sandy is a little angryy! Ooohhh ! http://t.co/vdoxuJc0\n", "\n", "--------------------------------------------------------\n", - "sandy little angryy ooohhh \n", + "sandy little angryy \n", "\n", "\n", "This is what Hurricane Sandy is doing to Ground Zero! http://t.co/o7Cg8GXZ\n", @@ -39349,12 +35061,6 @@ "hurricane sandy ground zero \n", "\n", "\n", - "da fuck Sandy...... http://t.co/Z8bqPDVF\n", - "\n", - "--------------------------------------------------------\n", - "da fuck sandy \n", - "\n", - "\n", "I don't think sandy wants another season of jersey shore either.. http://t.co/pY08B7Tf\n", "\n", "--------------------------------------------------------\n", @@ -39364,7 +35070,7 @@ "#Re-post Photo of Hurricane Sandy destruction in midtown NYC http://t.co/3CKn8yoQ\n", "\n", "--------------------------------------------------------\n", - "post photo hurricane sandy destruction midtown nyc \n", + "post photo hurricane sandy destruction midtown new york city \n", "\n", "\n", "Satellite image of hurricane Sandy. Everyone, please pray for those affected along the East coast down throu http://t.co/UXVpegLX\n", @@ -39388,13 +35094,7 @@ "Trampoline tangled in power lines. Hurricane Sandy. #hurricanesandy http://t.co/VspIboL5\n", "\n", "--------------------------------------------------------\n", - "trampoline tangled power lines hurricane sandy hurricanesandy \n", - "\n", - "\n", - "Hurricane Sandy 2012. http://t.co/96EBIahs\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy 2012 \n", + "trampoline tangled power lines hurricane sandy hurricane sandy \n", "\n", "\n", "An aerial on the devestation occuring over night in #USA sandy has destroyed so many yellow cabs.. Pray for http://t.co/FX3N4cYH\n", @@ -39403,12 +35103,6 @@ "aerial devestation occuring night usa sandy destroyed many yellow cabs pray \n", "\n", "\n", - "Hurricane Sandy! New York.. http://t.co/capeHhIn\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york \n", - "\n", - "\n", "Sandy is@North Carolina http://t.co/IBAJa7HB\n", "\n", "--------------------------------------------------------\n", @@ -39418,13 +35112,13 @@ "Really tho lmao @ hurricane sandy http://t.co/JVC2dOiq\n", "\n", "--------------------------------------------------------\n", - "really tho lmao hurricane sandy \n", + "really tho hurricane sandy \n", "\n", "\n", "Hurricane Sandy. #hurricanesandy Follow me for more photos!!!! http://t.co/6f3tZ322\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy follow photos \n", + "hurricane sandy hurricane sandy follow photos \n", "\n", "\n", "ประมวลภาพ Herricane Sandy http://t.co/CtHX4k65\n", @@ -39433,12 +35127,6 @@ "ประมวลภาพ herricane sandy \n", "\n", "\n", - "SANDY...:-( http://t.co/gh7LbPez\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "Look what Sandy did to Seaside... http://t.co/oeaDgEet\n", "\n", "--------------------------------------------------------\n", @@ -39460,7 +35148,7 @@ "To those that were/are ignorant by saying that the northeast coast was being \"over dramatic\" about Sandy...j http://t.co/hQedjYUj\n", "\n", "--------------------------------------------------------\n", - "ignorant saying northeast coast dramatic sandy j \n", + "ignorant saying northeast coast dramatic sandy \n", "\n", "\n", "Wait a min! Now she throwing shit at people! Sandy go in a corner you have a attitude problem & I don't like http://t.co/EpcfNRVj\n", @@ -39478,7 +35166,7 @@ "What a beautiful reminder to NYC of God's promises! My prayers go out to all the victims of Hurricane Sandy! http://t.co/SnwLlFls\n", "\n", "--------------------------------------------------------\n", - "beautiful reminder nyc god promises prayers go victims hurricane sandy \n", + "beautiful reminder new york city god promises prayers go victims hurricane sandy \n", "\n", "\n", "A pic of hurricane sandy from space http://t.co/0YuIR1VJ\n", @@ -39490,19 +35178,19 @@ "The streets of NYC Sandy is mad at somebody #Prayers http://t.co/bfpJyIFQ\n", "\n", "--------------------------------------------------------\n", - "streets nyc sandy mad somebody prayers \n", + "streets new york city sandy mad somebody prayers \n", "\n", "\n", "Hurricane Sandy in NYC. 💦💦💧💧💨💨 #hurricanesandy #sandy http://t.co/prrq53ds\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy nyc hurricanesandy sandy \n", + "hurricane sandy new york city hurricane sandy sandy \n", "\n", "\n", "Oh Sandy Sandy Sandy _thecoolhunter_'s photo http://t.co/j7tO3Wcl\n", "\n", "--------------------------------------------------------\n", - "oh sandy sandy sandy thecoolhunter photo \n", + "sandy sandy sandy thecoolhunter photo \n", "\n", "\n", "The effects of hurricane sandy in Harlem New York @ Memorial Dr http://t.co/6LhuNhsH\n", @@ -39514,7 +35202,7 @@ "Wow Sandy in the City wrecking havoc...repost from @swaggga_right http://t.co/Sdh4r8M1\n", "\n", "--------------------------------------------------------\n", - "wow sandy city wrecking havoc repost \n", + "sandy city wrecking havoc repost \n", "\n", "\n", "This image of Jane's carousel is going to haunt me. Sandy's Seahorses: http://t.co/ftIbq4GK (via @Instagram andjelicaaa)\n", @@ -39544,13 +35232,13 @@ "Omg :( dark days. Sandy needs to stop! http://t.co/rI2KpwDT\n", "\n", "--------------------------------------------------------\n", - "omg dark days sandy needs stop \n", + "dark days sandy needs stop \n", "\n", "\n", "Fleet in the floods : Yellow Cabs stranded after Superstorm Sandy via Daily Mail http://t.co/XvVigV3P\n", "\n", "--------------------------------------------------------\n", - "fleet floods yellow cabs stranded superstorm sandy via daily mail \n", + "fleet floods yellow cabs stranded superstorm sandydaily mail \n", "\n", "\n", "Hurricane Sandy #NASA http://t.co/3YlITIF0\n", @@ -39568,19 +35256,19 @@ "HURRICANE DESTRUCTION: fellow IGers shared this...I have reason to believe this is actually around 14th stre http://t.co/9283RQgf\n", "\n", "--------------------------------------------------------\n", - "hurricane destruction fellow igers shared reason believe actually around 14th stre \n", + "hurricane destruction fellow igers shared reason believe actually around4th stre \n", "\n", "\n", "Assez énorme cette photo en une de @lemondefr à propos du cyclone Sandy. http://t.co/3MCWufCJ\n", "\n", "--------------------------------------------------------\n", - "assez énorme cette photo une à propos cyclone sandy \n", + "assez énorme cette photo depropos cyclone sandy \n", "\n", "\n", "Wow ! Sandy booked most of the cabs. #NYC http://t.co/G4uO5SVG\n", "\n", "--------------------------------------------------------\n", - "wow sandy booked cabs nyc \n", + "sandy booked cabs new york city \n", "\n", "\n", "Who doesn't secure a trampoline in a hurricane? Really??? http://t.co/AsUSx9Bs\n", @@ -39598,7 +35286,7 @@ "Oh that how you feel sandy!! http://t.co/qZUTopAn\n", "\n", "--------------------------------------------------------\n", - "oh feel sandy \n", + "feel sandy \n", "\n", "\n", "NASA satellite photo of Hurricane Sandy! Cool!\\nnasagoddard's photo http://t.co/ioOREqIC\n", @@ -39610,25 +35298,25 @@ "Damn so many memories smh RT @Chrissy_Momo: Goodbye dumbo 😢😨 ... SCARY SANDY #brooklyn @ Brooklyn http://t.co/RXjVlM8z\n", "\n", "--------------------------------------------------------\n", - "damn many memories smh \n", + "damn many memories \n", "\n", "\n", "Sandy Taxis in New York @ NYC http://t.co/G00AXab2\n", "\n", "--------------------------------------------------------\n", - "sandy taxis new york nyc \n", + "sandy taxis new york new york city \n", "\n", "\n", "Hurricane Sandy aftermath!\\n#NYC will always come back stronger! http://t.co/FpN6aFVW\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy aftermath nyc always come back stronger \n", + "hurricane sandy aftermath new york city always come back stronger \n", "\n", "\n", "Hurricane Sandy in relation to the Earth (via Nasa Goddard) http://t.co/nappWBWJ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy relation earth via nasa goddard \n", + "hurricane sandy relation earth nasa goddard \n", "\n", "\n", "Sandy is pissed http://t.co/ZUh8jRL9\n", @@ -39640,7 +35328,7 @@ "SANDY Wants to play lmao that shit crazy... http://t.co/cXaPJZOg\n", "\n", "--------------------------------------------------------\n", - "sandy wants play lmao shit crazy \n", + "sandy wants play shit crazy \n", "\n", "\n", "Sandy going HAM http://t.co/xaNm8t5n\n", @@ -39652,13 +35340,13 @@ "Sandy's like who da fuck was Irene?! I fuck up shit here!! Lol http://t.co/TJIRqEYq\n", "\n", "--------------------------------------------------------\n", - "sandy like da fuck irene fuck shit lol \n", + "sandy like fuck irene fuck shit \n", "\n", "\n", "Sandy fucking up the crib smh #hurricane #NYC http://t.co/98MkiXlJ\n", "\n", "--------------------------------------------------------\n", - "sandy fucking crib smh hurricane nyc \n", + "sandy fucking crib hurricane new york city \n", "\n", "\n", "Hurricane impacting Ocean City, Maryland http://t.co/YIW4Gikl\n", @@ -39694,7 +35382,7 @@ "New York après le passage du cyclone Sandy ? Un marécage. Ne manquent plus que les alligators.... http://t.co/wkVRYE7u\n", "\n", "--------------------------------------------------------\n", - "new york après passage cyclone sandy marécage ne manquent plus alligators \n", + "new york après passage cyclone sandy marécage manquent plus alligators \n", "\n", "\n", "Sandy needs to calm the fuck down ! http://t.co/nidk8tRS\n", @@ -39712,31 +35400,31 @@ "#repost post-Sandy in NYC from @Capricorn_MiMi 🌈 -- Genesis 9:12-13 📖 Then God said, “I am giving you a sig http://t.co/paA6V3VA\n", "\n", "--------------------------------------------------------\n", - "repost post sandy nyc genesis 9 12 13 god said giving \n", + "repost post sandy new york city genesis23 god said giving \n", "\n", "\n", "Hurricane Sandy!! Smh... #Repost http://t.co/h2JeoM0M\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy smh repost \n", + "hurricane sandy repost \n", "\n", "\n", "Love this photo. \\nTaken after Sandy left NYC. God's goodness continues.\\n💙🗽🇺🇸💙 http://t.co/HfsIR7Am\n", "\n", "--------------------------------------------------------\n", - "love photo taken sandy left nyc god goodness continues \n", + "love photo taken sandy left new york city god goodness continues \n", "\n", "\n", "Sandy haciendo daños en NYC http://t.co/kBPdqooU\n", "\n", "--------------------------------------------------------\n", - "sandy haciendo daños nyc \n", + "sandy haciendo daños new york city \n", "\n", "\n", "Hurricane Sandy ain't messing around. Ugh this bitch. #hurricanesandy #hurricane #imdead #goodbyeworld #putt http://t.co/bPEPuSkw\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy messing around ugh bitch hurricanesandy hurricane imdead goodbyeworld putt \n", + "hurricane sandy messing around ugh bitch hurricane sandy hurricane imdead goodbyeworld putt \n", "\n", "\n", "InstaSnopes: factchecking Twitter's photos of Hurricane Sandy. http://t.co/S9tQsyVv (This one http://t.co/WJazFpcr is amazing and real.)\n", @@ -39751,12 +35439,6 @@ "dang sandy \n", "\n", "\n", - "This sums up hurricane sandy http://t.co/SSz960kG\n", - "\n", - "--------------------------------------------------------\n", - "sums hurricane sandy \n", - "\n", - "\n", "Sandy is acting up http://t.co/OfAp6KGH\n", "\n", "--------------------------------------------------------\n", @@ -39778,7 +35460,7 @@ "Sandy is fucked up but I fucks with Sandy bcuz Sandy b like F*€k da Police http://t.co/KXaLJSei\n", "\n", "--------------------------------------------------------\n", - "sandy fucked fucks sandy sandy b like f k da police \n", + "sandy fucked fucks sandy sandy b like f k police \n", "\n", "\n", "Sandy got us.. This is the LES morning!! http://t.co/DhXvDRMt\n", @@ -39790,7 +35472,7 @@ "Most impactful image of Sandy's affect on NYC. http://t.co/TrXT4uvU\n", "\n", "--------------------------------------------------------\n", - "impactful image sandy affect nyc \n", + "impactful image sandy affect new york city \n", "\n", "\n", "Seaside after the hurricane Sandy #prayforUSA http://t.co/TkrQB6GQ\n", @@ -39799,12 +35481,6 @@ "seaside hurricane sandy prayforusa \n", "\n", "\n", - "Crazy sandy! http://t.co/xGzorFZk\n", - "\n", - "--------------------------------------------------------\n", - "crazy sandy \n", - "\n", - "\n", "Post-Sandy rainbow in Manhattan. http://t.co/AfJoNflQ\n", "\n", "--------------------------------------------------------\n", @@ -39826,7 +35502,7 @@ "Watch out newyorkers! Sandy is comin'. #sandy http://t.co/rqG6FH1E\n", "\n", "--------------------------------------------------------\n", - "watch newyorkers sandy comin sandy \n", + "watch new yorkers sandy comin sandy \n", "\n", "\n", "Woaw Sandy is knocking down buildings in Chelsea http://t.co/3gih2AP4\n", @@ -39850,7 +35526,7 @@ "Seaside Heights, NJ #JerseyShore My prayers go out to all the people affected by Sandy http://t.co/iX7dWPSq\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj jerseyshore prayers go people affected sandy \n", + "seaside heights new jersey jerseyshore prayers go people affected sandy \n", "\n", "\n", "Hurricane Sandy is no joke people 😫😧😦🙉👎🙆🙅 #hurricane #sandy #trampoline #connecticut #sad #nojoke http://t.co/r9fBKZed\n", @@ -39868,7 +35544,7 @@ "Lower Manhattan goes dark during hurricane Sandy, as seen from Brooklyn, N.Y. Sandy continued on its path.#f http://t.co/D4iefUBL\n", "\n", "--------------------------------------------------------\n", - "lower manhattan goes dark hurricane sandy seen brooklyn n sandy continued path f \n", + "lower manhattan goes dark hurricane sandy seen brooklyn sandy continued path f \n", "\n", "\n", "Sandy's flooding Brooklyn... http://t.co/oJp0fy3z via @doorsixteen\n", @@ -39892,13 +35568,13 @@ "Photo de nationalpost http://t.co/5zfp1heu Taxis sit in a flooded lot from Hurricane Sandy on Oct. 30.\n", "\n", "--------------------------------------------------------\n", - "photo nationalpost taxis sit flooded lot hurricane sandy oct 30 \n", + "photo nationalpost taxis sit flooded lot hurricane sandy oct 0 \n", "\n", "\n", "“@aterkel: Whoa http://t.co/g0UgituE” OMG! Prayers & Positive Chi 2 NYC; anyone impacted by Sandy!\n", "\n", "--------------------------------------------------------\n", - "omg prayers positive chi 2 nyc anyone impacted sandy \n", + "prayers positive chi new york city anyone impacted sandy \n", "\n", "\n", "Got this pic from ABC and prayers and thoughts are going to all those affected by Sandy. http://t.co/3nCMnVAq\n", @@ -39940,7 +35616,7 @@ "Hurricane Sandy said \"FUCK YO TRAMPOLINE!!\" http://t.co/XIrbqRCG\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy said fuck trampoline \n", + "hurricane sandy said fucktrampoline \n", "\n", "\n", "andjelicaaa's photo http://t.co/U1PI0vtE Beautiful and haunting photograph from the effects of Sandy\n", @@ -39970,13 +35646,13 @@ "Shot of 1926 carousel in Brooklyn by @andjelicaaa has to be the image of Sandy, a metaphor for us all? http://t.co/fD2ZKrea\n", "\n", "--------------------------------------------------------\n", - "shot 1926 carousel brooklyn image sandy metaphor us \n", + "shot of926 carousel brooklyn image sandy metaphor us \n", "\n", "\n", "Hurricane sandy is not a joke! My prayers go out to the families in newyork http://t.co/IEenSQfz\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy joke prayers go families newyork \n", + "hurricane sandy joke prayers go families new york \n", "\n", "\n", "Sandy got Jokes. Ctfu http://t.co/PpwcOAsz\n", @@ -39988,13 +35664,7 @@ "Just to give you an idea of how bad sandy really is... #Sandy #NYC http://t.co/gFp2thdZ\n", "\n", "--------------------------------------------------------\n", - "give idea bad sandy really sandy nyc \n", - "\n", - "\n", - "@nasa hurricane!!! http://t.co/Np5H3T3k\n", - "\n", - "--------------------------------------------------------\n", - "hurricane \n", + "give idea bad sandy really sandy new york city \n", "\n", "\n", "DUMBO carousel during Sandy http://t.co/Y6avi2K6\n", @@ -40024,7 +35694,7 @@ "@Ryan_DuToit lolzzz!! Check this out. Hurricane Sandy mad. http://t.co/05v5Mh2N\n", "\n", "--------------------------------------------------------\n", - "lolzzz check hurricane sandy mad \n", + "zzz check hurricane sandy mad \n", "\n", "\n", "New Jersey after Sandy Storm \\nنيوجيرسي بعد عاصفة ساندي http://t.co/oa9Ao3iv\n", @@ -40048,13 +35718,13 @@ "Wow! This is just mind blowing! New York ATM.....all due to Hurricane Sandy; this is becoming very serious http://t.co/2joWUVqj\n", "\n", "--------------------------------------------------------\n", - "wow mind blowing new york atm due hurricane sandy becoming serious \n", + "mind blowing new york atm due hurricane sandy becoming serious \n", "\n", "\n", "Rainbow over NYC today after this horrible superstorm sandy. Oct 30, 2012 http://t.co/yvlmIxip\n", "\n", "--------------------------------------------------------\n", - "rainbow nyc today horrible superstorm sandy oct 30 2012 \n", + "rainbow new york city today horrible superstorm sandy oct02 \n", "\n", "\n", "Sandoso sandy http://t.co/AGvqTXGO\n", @@ -40090,7 +35760,7 @@ "Foto fantástica da Terra, mostrando o furacão Sandy.\\nFoto de nasagoddard (NASA) on Instagram) http://t.co/zZdT6Mvz\n", "\n", "--------------------------------------------------------\n", - "foto fantástica da terra mostrando furacão sandy foto nasagoddard nasa instagram \n", + "foto fantástica terra mostrando furacão sandy foto nasagoddard nasa instagram \n", "\n", "\n", "Sandy go away! http://t.co/8TqFSSHj\n", @@ -40108,13 +35778,13 @@ "Sandy gets artsy RT - @BuzzFeed: A carousel in Brooklyn, now in the East River http://t.co/ZUTtch4M\n", "\n", "--------------------------------------------------------\n", - "sandy gets artsy rt carousel brooklyn east river \n", + "sandy gets artsy \n", "\n", "\n", "Lmfao sandy is not chilling - ericgoldie's photo http://t.co/myB3KTNk\n", "\n", "--------------------------------------------------------\n", - "lmfao sandy chilling ericgoldie photo \n", + "sandy chilling ericgoldie photo \n", "\n", "\n", "Hurricane Sandy is huge bra http://t.co/D2ZdNK7p\n", @@ -40126,7 +35796,7 @@ "She's a wild one, oh sandy is. http://t.co/lxqzp5nO\n", "\n", "--------------------------------------------------------\n", - "wild one oh sandy \n", + "wild one sandy \n", "\n", "\n", "HURRICANE SANDY FROM SPACE #sandy #hurricane #space #image #noaa #nasa #earth http://t.co/NVvKatNx\n", @@ -40138,19 +35808,13 @@ "Manhattan alagada pela Sandy! http://t.co/e3GqU8xX (Foto de @davidhunterjr)\n", "\n", "--------------------------------------------------------\n", - "manhattan alagada pela sandy foto \n", - "\n", - "\n", - "Ground zero after hurricane Sandy http://t.co/m3UxAGJM\n", - "\n", - "--------------------------------------------------------\n", - "ground zero hurricane sandy \n", + "manhattan alagada sandy foto \n", "\n", "\n", "My prayers are with everyone who has been effected by the hurricane #NYC #bad#weather #God#bless#all#thank#g http://t.co/HGsFp0L9\n", "\n", "--------------------------------------------------------\n", - "prayers everyone effected hurricane nyc bad weather god bless thank g \n", + "prayers everyone effected hurricane new york city badweather godblessallthankg \n", "\n", "\n", "Inundación de la zona cero por Sandy http://t.co/NGCJ8GS8\n", @@ -40192,7 +35856,7 @@ "Former WTC location... prayers to #NYC # Sandy http://t.co/vxU2gS83\n", "\n", "--------------------------------------------------------\n", - "former wtc location prayers nyc sandy \n", + "former wtc location prayers new york city sandy \n", "\n", "\n", "@laultimahora aki les djo.algunas imagenes de lo q se vive en nueva york #huracan sandy http://t.co/1lUibCGq\n", @@ -40204,25 +35868,19 @@ "Hurricane Sandy picked up strength and turned toward New York City and the U.S. East Coast's other largest c http://t.co/THNul3gf\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy picked strength turned toward new york city east coast largest c \n", + "hurricane sandy picked strength turned toward new york city east coast largest \n", "\n", "\n", "Hoekom as ek die Fotos so sien van Hurricane Sandy laat dit my dink aan die flieks \"2012\" en \"The day after tomorrow??? http://t.co/JtcBOtVB\n", "\n", "--------------------------------------------------------\n", - "hoekom ek fotos sien hurricane sandy laat dink flieks 2012 day tomorrow \n", - "\n", - "\n", - "Hurricane. http://t.co/6qZEZNA7\n", - "\n", - "--------------------------------------------------------\n", - "hurricane \n", + "hoekom ek fotos sien hurricane sandy laat dink flieks2 day tomorrow \n", "\n", "\n", "Satellite imagery of Hurricane Sandy. #Satellite #Image #NewYork #Manhattan #America #Hurricane #HurricaneSa http://t.co/x2umbqAG\n", "\n", "--------------------------------------------------------\n", - "satellite imagery hurricane sandy satellite image newyork manhattan america hurricane hurricanesa \n", + "satellite imagery hurricane sandy satellite image new york manhattan america hurricane hurricanesa \n", "\n", "\n", "Now Sandy bring with you together with Halloween away all the winds of the crises and people fears http://t.co/7AAZlpjw\n", @@ -40234,13 +35892,13 @@ "Foto de loq sandy esta hasiendo!! En NY!.. oremos !. http://t.co/LxEMz5JC\n", "\n", "--------------------------------------------------------\n", - "foto loq sandy hasiendo ny oremos \n", + "foto loq sandy hasiendo new york oremos \n", "\n", "\n", "Oh okay, Sandy....I see you.... http://t.co/z7eHfPE5\n", "\n", "--------------------------------------------------------\n", - "oh okay sandy see \n", + "okay sandy see \n", "\n", "\n", "Taxi cabs after Sandy... http://t.co/Mksq1rsJ\n", @@ -40252,13 +35910,13 @@ "Seaside Heights, NJ - after Hurricane Sandy http://t.co/mx85aqmW\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj hurricane sandy \n", + "seaside heights new jersey hurricane sandy \n", "\n", "\n", "Jersey Shore....dam sandy... chase_landreth http://t.co/hvEg7w0J\n", "\n", "--------------------------------------------------------\n", - "jersey shore dam sandy chase landreth \n", + "jersey shore dam sandy chaselandreth \n", "\n", "\n", "Hurricane Sandy #hurricane #sandy #eastern #coast #us #pray http://t.co/1UBZjBOJ\n", @@ -40300,7 +35958,7 @@ "Leave Long Island alone Sandy! #hurricanesandy #destruction #longisland http://t.co/dUSp7GfR\n", "\n", "--------------------------------------------------------\n", - "leave long island alone sandy hurricanesandy destruction longisland \n", + "leave long island alone sandy hurricane sandy destruction longisland \n", "\n", "\n", "Damn now we have to endure a Sandy compilation song RT @WillyDope: My cousin sent me this picture from lower manhattan http://t.co/waLUXliY\n", @@ -40324,7 +35982,7 @@ "Wow.... Ground Zero being engulfed by Sandy #superstorm #superstormsandy #2012 #nyc #worldtradecenter #natur http://t.co/ACvwhtoH\n", "\n", "--------------------------------------------------------\n", - "wow ground zero engulfed sandy superstorm superstormsandy 2012 nyc worldtradecenter natur \n", + "ground zero engulfed sandy superstorm superstormsandy012 new york city worldtradecenter natur \n", "\n", "\n", "Ground zero flooding tonight from sandy... http://t.co/CzzZVeyS\n", @@ -40336,19 +35994,19 @@ "Wow. Sandy is here to steal all the kids' outdoor toys. RT @KidFury Who's gonna get that shit down? http://t.co/0pvngOsU\n", "\n", "--------------------------------------------------------\n", - "wow sandy steal kids outdoor toys \n", + "sandy steal kids outdoor toys \n", "\n", "\n", "Damn sandy fuccd seaside heights up smh http://t.co/yegh4x4S\n", "\n", "--------------------------------------------------------\n", - "damn sandy fuccd seaside heights smh \n", + "damn sandy fuccd seaside heights \n", "\n", "\n", "Hurricane Sandy Foto di nasagoddard http://t.co/zfcfNz78\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy foto di nasagoddard \n", + "hurricane sandy foto nasagoddard \n", "\n", "\n", "Atleast sandy cleansed the streets of seaside... #scumland http://t.co/Lulcqknm\n", @@ -40366,13 +36024,13 @@ "Hurricane Sandy Foto di usatoday http://t.co/rT030jHT\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy foto di usatoday \n", + "hurricane sandy foto usatoday \n", "\n", "\n", "Sandy says these big yellow taxi's submerged in a NY parking lot ain't taking no-one away today. http://t.co/YQdAjuPY\n", "\n", "--------------------------------------------------------\n", - "sandy says big yellow taxi submerged ny parking lot taking one away today \n", + "sandy says big yellow taxi submerged new york parking lot taking one away today \n", "\n", "\n", "Atlantic City now sleeping with Death after SANDY http://t.co/lqIu6FHV\n", @@ -40393,16 +36051,10 @@ "city new york felt sandy pain western new york feel pain well get read \n", "\n", "\n", - "Sandy *nyc* http://t.co/hZ7vJRLL\n", - "\n", - "--------------------------------------------------------\n", - "sandy nyc \n", - "\n", - "\n", "Hurricane Sandy from space. Yikes! http://t.co/zFuQSimM\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy space yikes \n", + "hurricane sandy space \n", "\n", "\n", "Definitely glad I don't have to mess with that chick Sandy http://t.co/E7K8Nooo\n", @@ -40414,7 +36066,7 @@ "Lol Sandy wins this one http://t.co/Tz62UH3s\n", "\n", "--------------------------------------------------------\n", - "lol sandy wins one \n", + "sandy wins one \n", "\n", "\n", "This is unreal: Hurricane Sandy flooding at Ground Zero in Manhattan, New York http://t.co/N92s0JZr\n", @@ -40432,7 +36084,7 @@ "So they said Hurricane Sandy brought this trampoline from 2 towns over.. 😳 http://t.co/kMKXKrGc\n", "\n", "--------------------------------------------------------\n", - "said hurricane sandy brought trampoline 2 towns \n", + "said hurricane sandy brought trampoline towns \n", "\n", "\n", "Esto hiso Sandy en Jersey Shore! :O http://t.co/JmJPV0C9\n", @@ -40444,7 +36096,7 @@ "Hurricane Sandy!!! #hurricanesandy #hurricane #windy #trampoline #storm @ VFP Gym http://t.co/hRItryyU\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy hurricane windy trampoline storm vfp gym \n", + "hurricane sandy hurricane sandy hurricane windy trampoline storm vfp gym \n", "\n", "\n", "Dicen que despues de la tormenta llega la calma! Rainbow after Sandy #Beautiful http://t.co/ais7L8L1\n", @@ -40468,13 +36120,13 @@ "Wow look what sandy did http://t.co/RRKig3jN\n", "\n", "--------------------------------------------------------\n", - "wow look sandy \n", + "look sandy \n", "\n", "\n", "it's unreal to see one of my most favorite brooklyn spots surrounded by water. . . ✨🎠✨ ny @ 💨 sandy's wrath http://t.co/Clq605AM\n", "\n", "--------------------------------------------------------\n", - "unreal see one favorite brooklyn spots surrounded water ny sandy wrath \n", + "unreal see one favorite brooklyn spots surrounded water new york sandy wrath \n", "\n", "\n", "Seaside .. Fuck you sandy http://t.co/niqdqueO\n", @@ -40486,19 +36138,19 @@ "Had to delete my last Hurricane Sandy Post after I seen this ... Dam a category 1 doing this to NYC. Shit cr http://t.co/NL6O2Yhy\n", "\n", "--------------------------------------------------------\n", - "delete last hurricane sandy post seen dam category 1 nyc shit cr \n", + "delete last hurricane sandy post seen dam category new york city shit cr \n", "\n", "\n", "Ahahaha sandy is fucking shit up #dirty #whore http://t.co/2octYB9z\n", "\n", "--------------------------------------------------------\n", - "ahahaha sandy fucking shit dirty whore \n", + "asandy fucking shit dirty whore \n", "\n", "\n", "lol fuckin sandy http://t.co/X0KJw5PX\n", "\n", "--------------------------------------------------------\n", - "lol fuckin sandy \n", + "fuckin sandy \n", "\n", "\n", "For real though Sandy Wildin like this? http://t.co/9AUCXMLl\n", @@ -40516,7 +36168,7 @@ "Whoa!! And if Sandy stayed a hurricane..? @Time pic of firemen searching for ppl trapped in cars, 15h & Ave C http://t.co/eQKtExUx\n", "\n", "--------------------------------------------------------\n", - "whoa sandy stayed hurricane pic firemen searching ppl trapped cars 15h ave c \n", + "sandy stayed hurricane pic firemen searching ppl trapped cars 5h ave \n", "\n", "\n", "For my fellow Floridians who think the Northerners are overreacting about the hurricane... #keepquiet #thisi http://t.co/PZy4uY41\n", @@ -40552,7 +36204,7 @@ "The devastation of hurricane sandy on the lower east side #nyc #sandy http://t.co/bppHglui\n", "\n", "--------------------------------------------------------\n", - "devastation hurricane sandy lower east side nyc sandy \n", + "devastation hurricane sandy lower east side new york city sandy \n", "\n", "\n", "Последствия урагана Sandy\\n https://t.co/T5L5513n\\nhttps://t.co/9NTnBgx9\\nhttps://t.co/seHgbdX8\\nhttps://t.co/CY2ihGFy\n", @@ -40564,13 +36216,7 @@ "Atlantic City vs Sandy photo http://t.co/ZJ47bbie\n", "\n", "--------------------------------------------------------\n", - "atlantic city vs sandy photo \n", - "\n", - "\n", - "Sandy Par @nasagoddard http://t.co/CAcvMTNn\n", - "\n", - "--------------------------------------------------------\n", - "sandy par \n", + "atlantic city versus sandy photo \n", "\n", "\n", "liked Hurricane Sandy over the Bahamas The Moderate Resolution Imaging Spectroradiometer (MODIS) on NASA’... http://t.co/iX3AHta9\n", @@ -40582,7 +36228,7 @@ "Woooow the Hurricane hit Brooklyn pretty hard man! Smh http://t.co/ya105Epq\n", "\n", "--------------------------------------------------------\n", - "woooow hurricane hit brooklyn pretty hard smh \n", + "woooow hurricane hit brooklyn pretty hard \n", "\n", "\n", "Praying for all those cleaning up after Hurricane Sandy today. http://t.co/JdKNvrf8\n", @@ -40594,7 +36240,7 @@ "I know it's not a car,but hurricane sandy is going hard!\\n#hurricane #hurricanesandy #storm #lol # @ Scranton http://t.co/tgOxquXJ\n", "\n", "--------------------------------------------------------\n", - "know car hurricane sandy going hard hurricane hurricanesandy storm lol scranton \n", + "know car hurricane sandy going hard hurricane hurricane sandy storm scranton \n", "\n", "\n", "Superstorm #Sandy finally# receded, but only after carving a #trailSuperstorm Sandy finally receded, but onl http://t.co/Wl78DjSA\n", @@ -40606,7 +36252,7 @@ "Sandy said oops lol http://t.co/UdgWQy5a\n", "\n", "--------------------------------------------------------\n", - "sandy said oops lol \n", + "sandy said oops \n", "\n", "\n", "Sandy is serious. Lower Man flooding! http://t.co/ewDQE8cs\n", @@ -40618,19 +36264,19 @@ "Photo from the Goes 13 satellite. Pray for those in Sandy's path. http://t.co/FlmK3jau\n", "\n", "--------------------------------------------------------\n", - "photo goes 13 satellite pray sandy path \n", + "photo goes3 satellite pray sandy path \n", "\n", "\n", "nasagoddard's photo http://t.co/U9uMXtGv Whoa, Sandy. Stay safe, East coasters.\n", "\n", "--------------------------------------------------------\n", - "nasagoddard photo whoa sandy stay safe east coasters \n", + "nasagoddard photo sandy stay safe east coasters \n", "\n", "\n", "Real classy Sandy #Omg http://t.co/bJa2dHjT\n", "\n", "--------------------------------------------------------\n", - "real classy sandy omg \n", + "real classy sandy \n", "\n", "\n", "Please keep praying! These are the taxis of my sister Sandy's town Hoboken. Relief and restoration! #hudson http://t.co/23Tq9LNz\n", @@ -40648,7 +36294,7 @@ "Casino Pier - Seaside Heights, NJ - 10/30/12 after Hurricane Sandy! http://t.co/Mb1XSIHQ\n", "\n", "--------------------------------------------------------\n", - "casino pier seaside heights nj 10 30 12 hurricane sandy \n", + "casino pier seaside heights new jersey 2 hurricane sandy \n", "\n", "\n", "Sandy y no precisamente con Papo. http://t.co/itRc7LIv\n", @@ -40660,7 +36306,7 @@ "Hep taxi !!! Photos de Sandy sur le site Instacane http://t.co/SSDvRarI\n", "\n", "--------------------------------------------------------\n", - "hep taxi photos sandy sur site instacane \n", + "hep taxi photos sandy site instacane \n", "\n", "\n", "How sandy looks from space http://t.co/8upLGDan\n", @@ -40672,13 +36318,13 @@ "#repost that ish is real... Praying for tha hurricane sandy victims 🙏 http://t.co/oZY8IFQA\n", "\n", "--------------------------------------------------------\n", - "repost ish real praying tha hurricane sandy victims \n", + "repost ish real praying thurricane sandy victims \n", "\n", "\n", "For those of you who don't think Hurricane Sandy is affecting anyone and think that e @ Technology Commons 1 http://t.co/fm2iCMqL\n", "\n", "--------------------------------------------------------\n", - "think hurricane sandy affecting anyone think technology commons 1 \n", + "think hurricane sandy affecting anyone think technology commons \n", "\n", "\n", "I guess this hurricane is for real, shit http://t.co/EkfRbcoK\n", @@ -40690,31 +36336,19 @@ "Wishing NYC a swift recovery from Sandy. This picture is shocking. Poor little horses. http://t.co/oeiYu0ve\n", "\n", "--------------------------------------------------------\n", - "wishing nyc swift recovery sandy picture shocking poor little horses \n", + "wishing new york city swift recovery sandy picture shocking poor little horses \n", "\n", "\n", "Noooooo.....our transplanted Idora Park Carousel is under water...c'mon Sandy...have a heart! http://t.co/MfMtzq0E\n", "\n", "--------------------------------------------------------\n", - "noooooo transplanted idora park carousel water c mon sandy heart \n", + "noooooo transplanted idora park carousel water sandy heart \n", "\n", "\n", "#repost I see that hurricane sandy wasn't playing no games #nyc #praying for y'all #hopeyallok http://t.co/YIPBVDVb\n", "\n", "--------------------------------------------------------\n", - "repost see hurricane sandy playing games nyc praying hopeyallok \n", - "\n", - "\n", - "HURRICANE SANDY...... http://t.co/Kg0xC7SN\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", - "\n", - "\n", - "Sandy doing work!!! http://t.co/yQt7AOuM\n", - "\n", - "--------------------------------------------------------\n", - "sandy work \n", + "repost see hurricane sandy playing games new york city praying hopeyallok \n", "\n", "\n", "Yoo sandy chill I loved that trampoline http://t.co/UjZbse36\n", @@ -40738,7 +36372,7 @@ "Sandy's destruction vol 2 - BBG #Hurricane http://t.co/0KQ1FyuA\n", "\n", "--------------------------------------------------------\n", - "sandy destruction vol 2 bbg hurricane \n", + "sandy destruction vol bbg hurricane \n", "\n", "\n", "The Sandy aftermath http://t.co/Bd2CoJDq\n", @@ -40762,7 +36396,7 @@ "Sandy! Wow! Ah BIG GIRL!!! http://t.co/2Wi9kR8o\n", "\n", "--------------------------------------------------------\n", - "sandy wow ah big girl \n", + "sandy ah big girl \n", "\n", "\n", "#Hurricane #Sandy How dare you! @ 💨Hurricane Sandy💦 http://t.co/GtsutGri\n", @@ -40780,7 +36414,7 @@ "Seaside Heights, NJ- thanks to Hurricane Sandy 10/29/12. This place has been a part of my life for the past http://t.co/HigjTDzT\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj thanks hurricane sandy 10 29 12 place part life past \n", + "seaside heights new jersey thanks hurricane sandy092 place part life past \n", "\n", "\n", "It's real out here Sandy ain't playin http://t.co/EdaeB9Yh\n", @@ -40804,13 +36438,13 @@ "Sandy tryin to grip my neighbors trampoline lol #bitch #fail #sandy #funny #storm #wind #crazy #instagood #i http://t.co/bcp3QlDz\n", "\n", "--------------------------------------------------------\n", - "sandy tryin grip neighbors trampoline lol bitch fail sandy funny storm wind crazy instagood \n", + "sandy tryin grip neighbors trampoline bitch fail sandy funny storm wind crazy instagood \n", "\n", "\n", "This huge pier amusement park in NJ was destroyed. That's crazy! Sandy meant business! http://t.co/tsHrR2Xw\n", "\n", "--------------------------------------------------------\n", - "huge pier amusement park nj destroyed crazy sandy meant business \n", + "huge pier amusement park new jersey destroyed crazy sandy meant business \n", "\n", "\n", "Praying for everyone affected by Hurricane Sandy #sandy #hurricane #prayers #hurricansandy #eastcoast #weath http://t.co/TmTM31Vr\n", @@ -40822,13 +36456,7 @@ "Hurricane Sandy really did a job on New York sandy #sandy #hurricane #newyork #rain #damage #disaster #sto http://t.co/gK3gCjPX\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy really job new york sandy sandy hurricane newyork rain damage disaster sto \n", - "\n", - "\n", - "Some of Sandy's damage http://t.co/YEds0GTN\n", - "\n", - "--------------------------------------------------------\n", - "sandy damage \n", + "hurricane sandy really job new york sandy sandy hurricane new york rain damage disaster sto \n", "\n", "\n", "Miss Sandy in New Jersey http://t.co/opIUFP84\n", @@ -40840,19 +36468,7 @@ "LES looking CRAZY!! Dam Sandy WTF U DOIN TO NY!!😡🙈👎😵 http://t.co/qruO8c18\n", "\n", "--------------------------------------------------------\n", - "looking crazy dam sandy wtf doin ny \n", - "\n", - "\n", - "Sandy, oh Sandy! http://t.co/K9iDgEY1\n", - "\n", - "--------------------------------------------------------\n", - "sandy oh sandy \n", - "\n", - "\n", - "Sandy effects ... http://t.co/7XrR1jyq\n", - "\n", - "--------------------------------------------------------\n", - "sandy effects \n", + "looking crazy dam sandy doin new york \n", "\n", "\n", "Hurricane Sandy is insane. Praying for everyone in the East Coast. Especially my brother and his wife #besaf http://t.co/koC4svzN\n", @@ -40870,7 +36486,7 @@ "Sandy leaves death, damp and darkness in wake.\\n\\nOn October 25 I wrote:Before Obama become a president, I had a dre http://t.co/n9Y38Ptn\n", "\n", "--------------------------------------------------------\n", - "sandy leaves death damp darkness wake october 25 wrote obama become president dre \n", + "sandy leaves death damp darkness wake october5 wrote obama become president dre \n", "\n", "\n", "http://t.co/WSQffF04 hurricane sandy surreal carousel\n", @@ -40906,7 +36522,7 @@ "That's fair,after creepy sandy hurricane. The rainbow finally touchdown in NY :) http://t.co/FiMU26J3\n", "\n", "--------------------------------------------------------\n", - "fair creepy sandy hurricane rainbow finally touchdown ny \n", + "fair creepy sandy hurricane rainbow finally touchdown new york \n", "\n", "\n", "Sandy is not playing. Stay safe. #sandy #liveinpeace http://t.co/B9S2yKfS\n", @@ -40924,25 +36540,25 @@ "Taxis in New Jersey after hurricane Sandy #repost #hurricane #Sandy #taxis #newjersey #NJ #flood #insane http://t.co/PsmToUYX\n", "\n", "--------------------------------------------------------\n", - "taxis new jersey hurricane sandy repost hurricane sandy taxis newjersey nj flood insane \n", + "taxis new jersey hurricane sandy repost hurricane sandy taxis newjersey new jersey flood insane \n", "\n", "\n", "bwebb_two's photo http://t.co/R87S71Ft Ground zero suffers from Hurricane Sandy\n", "\n", "--------------------------------------------------------\n", - "bwebb two photo ground zero suffers hurricane sandy \n", + "bwebbtwo photo ground zero suffers hurricane sandy \n", "\n", "\n", "Lmaoo hurricane sandy playing games http://t.co/KkaPpyLN\n", "\n", "--------------------------------------------------------\n", - "lmaoo hurricane sandy playing games \n", + "hurricane sandy playing games \n", "\n", "\n", "Great Find @Kat_Bk! Pray For All The Cabs In NYC! #Cabaholics! Post Your Hurricane Sandy Cabaholic Photo http://t.co/oUm1JXKH\n", "\n", "--------------------------------------------------------\n", - "great find pray cabs nyc cabaholics post hurricane sandy cabaholic photo \n", + "great find pray cabs new york city cabaholics post hurricane sandy cabaholic photo \n", "\n", "\n", "Red Hook, Brooklyn. Hurricane Sandy http://t.co/AVT2HY0O\n", @@ -40966,7 +36582,7 @@ "DAMN SANDY!!! iHOPE MY COUSINS @vice_verse2 && justcallmelee ARE OKAY!! && charlycharles_suge http://t.co/3DOiZRju\n", "\n", "--------------------------------------------------------\n", - "damn sandy ihope cousins andand justcallmelee okay andand charlycharles suge \n", + "damn sandy ihope cousins andand justcallmelee okay andand charlycharlessuge \n", "\n", "\n", "sandy #thisisreal 😳 http://t.co/NDZRBQyZ\n", @@ -40978,7 +36594,7 @@ "Wowww....Ground Zero in NY 🗽🏦🌊after Hurricane Sandy!!! http://t.co/RjQHDmTp\n", "\n", "--------------------------------------------------------\n", - "wowww ground zero ny hurricane sandy \n", + "ww ground zero new york hurricane sandy \n", "\n", "\n", "Sandy's comin! 😳 #scurred http://t.co/CalaEWlg\n", @@ -41044,7 +36660,7 @@ "@ninagarcia WoW! Please stay safe->The Most Unbelievable but Real Pictures of Sandy's Destruction http://t.co/n7HdHkEY http://t.co/58w0w8Kc\n", "\n", "--------------------------------------------------------\n", - "wow please stay safethe unbelievable real pictures sandy destruction \n", + "please stay safe unbelievable real pictures sandy destruction \n", "\n", "\n", "Sandy took my trampoline... http://t.co/s6rQ6H0J\n", @@ -41068,7 +36684,7 @@ "“@CriticaPa Copa ha suspendido 11 vuelos a EU debido a tormenta Sandy. #Panamá http://t.co/rKddXTD0”\n", "\n", "--------------------------------------------------------\n", - "copa suspendido 11 vuelos eu debido tormenta sandy panamá \n", + "copasuspendido1 vuelos debido tormenta sandy panamá \n", "\n", "\n", "Dammit Sandy... Right when I wanted to go jump on my trampoline. http://t.co/ZNbkL5bk\n", @@ -41086,7 +36702,7 @@ "hurricane is still 100 miles offshore, and Atlantic City’s boardwalk is already under water. pic:\\nhttp://t.co/Ktp30wxa\n", "\n", "--------------------------------------------------------\n", - "hurricane still 100 miles offshore atlantic city boardwalk already water pic \n", + "hurricane still00 miles offshore atlantic city boardwalk already water pic \n", "\n", "\n", "Great full disc Sandy still takes up most of eastern North America can you see Rosa? #sandy @abc7news http://t.co/3t7eOvqT\n", @@ -41104,7 +36720,7 @@ "Surreal image of Hurricane Sandy infiltrating Ground Zero NYC http://t.co/lMoWSIZk\n", "\n", "--------------------------------------------------------\n", - "surreal image hurricane sandy infiltrating ground zero nyc \n", + "surreal image hurricane sandy infiltrating ground zero new york city \n", "\n", "\n", "The latest full disk image of Earth puts Hurricane Sandy into perspective...it's massive.#sandy #frankenstorm http://t.co/4oGYBrAK\n", @@ -41116,7 +36732,7 @@ "Hurricane Sandy is on a rampage. Top picture is the Carolina coast. Bottom pic is in NYC. http://t.co/cOCC5ppE\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy rampage top picture carolina coast bottom pic nyc \n", + "hurricane sandy rampage top picture carolina coast bottom pic new york city \n", "\n", "\n", "Another crazy Sandy pic. RT @michaelhayes: Roller coaster swept out to sea (Seaside Heights, NJ) http://t.co/JUS2BjXX\n", @@ -41146,7 +36762,7 @@ "Wow, Sandy you're the worst! http://t.co/ijlAHRzq\n", "\n", "--------------------------------------------------------\n", - "wow sandy worst \n", + "sandy worst \n", "\n", "\n", "A bitch Sandy is showing out! http://t.co/oksMEk5F\n", @@ -41155,22 +36771,10 @@ "bitch sandy showing \n", "\n", "\n", - "Sandy in NY http://t.co/miZoDZgE\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", - "Well damn sandy http://t.co/0nmESlm8\n", - "\n", - "--------------------------------------------------------\n", - "well damn sandy \n", - "\n", - "\n", "Sandy fait danser les trampollinnes des enfants Photo de asap_paulie http://t.co/m7A3VE70\n", "\n", "--------------------------------------------------------\n", - "sandy fait danser trampollinnes des enfants photo asap paulie \n", + "sandy fait danser trampollinnes enfants photo asappaulie \n", "\n", "\n", "Uhm yeah... Sandy is not fucking around... #Milford http://t.co/ultyVnYo\n", @@ -41182,19 +36786,13 @@ "Hurricane Sandy years through \"Sea Side Pier\" in NJ! Good thoughts to those affected by the storm! http://t.co/XD9hPo8X\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy years side pier nj good thoughts affected storm \n", - "\n", - "\n", - "Wat bitch sandy does!! http://t.co/v9PUH7ko\n", - "\n", - "--------------------------------------------------------\n", - "bitch sandy \n", + "hurricane sandy years side pier new jersey good thoughts affected storm \n", "\n", "\n", "Sandy vs. The Roller Coaster. Guess who won? http://t.co/WW4cUL01 (from Seaside Heights, N.J.) #sandy\n", "\n", "--------------------------------------------------------\n", - "sandy vs roller coaster guess seaside heights n j sandy \n", + "sandy versus roller coaster guess seaside heights sandy \n", "\n", "\n", "Sandy Relief: on http://t.co/TemvqZ1q http://t.co/AfurdTxt\n", @@ -41206,13 +36804,13 @@ "GOOD MORNING...IS THIS #NYC OR IS IT NEW ORLEANS DAM SANDY PUT THE SMACK DOWN ANOCHE ON US !! http://t.co/bAbFegdG\n", "\n", "--------------------------------------------------------\n", - "good morning nyc new orleans dam sandy put smack anoche us \n", + "good morning new york city new orleans dam sandy put smack anoche us \n", "\n", "\n", "Hurricane Sandy . Live from NYC: Across the street from 92 8th Avenue where building facade collapse just no http://t.co/8ot03sV6\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy live nyc across street 92 8th avenue building facade collapse \n", + "hurricane sandy live new york city across street from2 avenue building facade collapse \n", "\n", "\n", "Sandy photo of LES right now. http://t.co/Zv6i3Stg\n", @@ -41248,7 +36846,7 @@ "Wow! Hurricane \"Sandy\" is huge. Cool view. http://t.co/MOwPlcUB\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy huge cool view \n", + "hurricane sandy huge cool view \n", "\n", "\n", "Sandy Not Fucking Playing Wit Yall Dawg ! http://t.co/ajgERqXr\n", @@ -41272,7 +36870,7 @@ "Crazy pic my cousin just sent me from NY....Everyone say a prayer for everyone experiencing Sandy http://t.co/Z8tKRwve\n", "\n", "--------------------------------------------------------\n", - "crazy pic cousin sent ny everyone say prayer everyone experiencing sandy \n", + "crazy pic cousin sent new york everyone say prayer everyone experiencing sandy \n", "\n", "\n", "Sandy floods http://t.co/rf7eoh46\n", @@ -41284,7 +36882,7 @@ "After a hurricane, comes a rainbow.. NYC after Sandy hit last night.. 🙏 http://t.co/lZ3dDVts\n", "\n", "--------------------------------------------------------\n", - "hurricane comes rainbow nyc sandy hit last night \n", + "hurricane comes rainbow new york city sandy hit last night \n", "\n", "\n", "instacnvs's photo http://t.co/v6kUdNGH Check out Sandy from space!\n", @@ -41296,7 +36894,7 @@ "Dam sandy doin work in NYC. http://t.co/tQB1MsPr\n", "\n", "--------------------------------------------------------\n", - "dam sandy doin work nyc \n", + "dam sandy doin work new york city \n", "\n", "\n", "Sandy Cabs http://t.co/VO5JA6oY\n", @@ -41314,13 +36912,13 @@ "full disk image from #nasa shows how massive Hurricane Sandy; wow -- http://t.co/vWH0z7lZ\n", "\n", "--------------------------------------------------------\n", - "full disk image nasa shows massive hurricane sandy wow \n", + "full disk image nasa shows massive hurricane sandy \n", "\n", "\n", "Hurricane Sandy 2012: Satellite Image http://t.co/tS8rt6aD\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy 2012 satellite image \n", + "hurricane sandy012 satellite image \n", "\n", "\n", "Sandy doing werk http://t.co/wirz9es2\n", @@ -41334,7 +36932,13 @@ "--------------------------------------------------------\n", "ground zero please pray everyone affected hurricane sandy \n", "\n", - "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "A pic of manhattan, sandy is no joke hope everyone is safe http://t.co/gowL8YBA\n", "\n", "--------------------------------------------------------\n", @@ -41350,19 +36954,19 @@ "Hurricane Sandy flooded Manhattan NY. Many in NY and NJ have lost power. #prayersplease http://t.co/2GUyQzTU\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy flooded manhattan ny many ny nj lost power prayersplease \n", + "hurricane sandy flooded manhattan new york many new york new jersey lost power prayersplease \n", "\n", "\n", "#AstroPicture Badai Sandy difoto dari luar angkasa: http://t.co/5rSgjRof\n", "\n", "--------------------------------------------------------\n", - "astropicture badai sandy difoto dari luar angkasa \n", + "astropicture badai sandy difoto angkasa \n", "\n", "\n", "Sandy already fucking up 9 year olds days. This is in Milford #suckstosuck http://t.co/RpMqbost\n", "\n", "--------------------------------------------------------\n", - "sandy already fucking 9 year olds days milford suckstosuck \n", + "sandy already fucking year olds days milford suckstosuck \n", "\n", "\n", "The Atlantic City boardwalk is a different kind of Sandy today. http://t.co/xwJeiYEL\n", @@ -41380,13 +36984,13 @@ "Taxis sit in a flooded lot after Hurricane Sandy Oct. 30, 2012 in Hoboken, New Jersey. http://t.co/AVjQi4e3\n", "\n", "--------------------------------------------------------\n", - "taxis sit flooded lot hurricane sandy oct 30 2012 hoboken new jersey \n", + "taxis sit flooded lot hurricane sandy oct 02 hoboken new jersey \n", "\n", "\n", "Sandy- 1 Trampoline- 0 http://t.co/kZ1jEB5E\n", "\n", "--------------------------------------------------------\n", - "sandy 1 trampoline 0 \n", + "sandy trampoline \n", "\n", "\n", "Hola says Hurricane Sandy http://t.co/4RjQXbsw\n", @@ -41431,18 +37035,6 @@ "okay sandy right \n", "\n", "\n", - "Sandy aint playin.... http://t.co/VwMV6GSL\n", - "\n", - "--------------------------------------------------------\n", - "sandy aint playin \n", - "\n", - "\n", - "Sandy ain't playing http://t.co/Ax48JKQm\n", - "\n", - "--------------------------------------------------------\n", - "sandy playing \n", - "\n", - "\n", "Imponerende Sandy-billede andjelicaaa's photo http://t.co/QWhCygG8\n", "\n", "--------------------------------------------------------\n", @@ -41485,12 +37077,6 @@ "brooklyn sandy arrived \n", "\n", "\n", - "Hurricane sandy's damage http://t.co/rQKquxmE\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy damage \n", - "\n", - "\n", "Prayers go out to all who have been effected by sandy #seasidepier destroyed #memories #sosad http://t.co/mdIYCQh5\n", "\n", "--------------------------------------------------------\n", @@ -41500,19 +37086,13 @@ "Bomberos en NY. http://t.co/raLDYbOy # sandy\n", "\n", "--------------------------------------------------------\n", - "bomberos ny sandy \n", - "\n", - "\n", - "Holy shit! @ashley2426: @MikeFrancisWX: AMAZING PIC!! Water in NYC at record levels! 14th st &Ave C: http://t.co/1Z99ebeh #news #sandy\n", - "\n", - "--------------------------------------------------------\n", - "holy shit amazing pic water nyc record levels 14th st andave c news sandy \n", + "bomberos new york sandy \n", "\n", "\n", "Would suggest the kids not play on this for now # wtnh #hurricanesandy http://t.co/4bIxAPVa\n", "\n", "--------------------------------------------------------\n", - "would suggest kids play wtnh hurricanesandy \n", + "would suggest kids play wtnh hurricane sandy \n", "\n", "\n", "Seaside after Sandy 😳😢😭💔 #seaside #boardwalk #sandy #hurricane #depressing http://t.co/nvuGbQqi\n", @@ -41548,7 +37128,7 @@ "A Double Rainbow touches down in #NYC as Hurricane #Sandy passes - via Kurt Wilberding http://t.co/1bSYkFYG (via @NYC)\n", "\n", "--------------------------------------------------------\n", - "double rainbow touches nyc hurricane sandy passes via kurt wilberding \n", + "double rainbow touches new york city hurricane sandy passes kurt wilberding \n", "\n", "\n", "the doublest rainbow of them all, captured by @kurtdietrich, touches down in lower Manhattan after #sandy http://t.co/bHgQDgc8\n", @@ -41560,7 +37140,7 @@ "RT! A rainbow after Sandy via @kurtdietrich Rainbow touches down in lower Manhattan #hurricane #sandy\\nhttp://t.co/1WIy9Qn4\n", "\n", "--------------------------------------------------------\n", - "rt rainbow sandy rainbow touches lower manhattan hurricane sandy \n", + "rainbow sandy rainbow touches lower manhattan hurricane sandy \n", "\n", "\n", "Rainbow touches down in Manhattan after #Sandy passed. A real rainbow. A ray of hope. http://t.co/yVu5O0tA via @kurtdietrich | cc @YOlivia28\n", @@ -41587,48 +37167,18 @@ "sandy通過したのかな やっとww ダブルレインボー \n", "\n", "\n", - "@kurtdietrich: Rainbow touches down in NYC #sandy http://t.co/4yvER9Fj God promises, \"I will never flood NYC again, until next year.\"\n", - "\n", - "--------------------------------------------------------\n", - "rainbow touches nyc sandy god promises never flood nyc next year \n", - "\n", - "\n", - "Rainbow touches down in lower Manhattan #hurricane #sandy http://t.co/mV32jXji\n", - "\n", - "--------------------------------------------------------\n", - "rainbow touches lower manhattan hurricane sandy \n", - "\n", - "\n", "The morning after RT @kurtdietrich Rainbow touches down in lower Manhattan #hurricane #sandy http://t.co/B0yFdI1O\n", "\n", "--------------------------------------------------------\n", "morning \n", "\n", "\n", - "Rainbow touches down in lower Manhattan #hurricane #sandy http://t.co/RSb5SvDq via @kurtdietrich RT @NewYorkPost\n", - "\n", - "--------------------------------------------------------\n", - "rainbow touches lower manhattan hurricane sandy \n", - "\n", - "\n", - "A Double Rainbow touches down in #NYC as Hurricane #Sandy passes - via Kurt Wilberding http://t.co/ZFuIrZiC\n", - "\n", - "--------------------------------------------------------\n", - "double rainbow touches nyc hurricane sandy passes via kurt wilberding \n", - "\n", - "\n", "The morning after #Sandy. Rainbow touches down in lower Manhattan. http://t.co/MUW0GOlR\n", "\n", "--------------------------------------------------------\n", "morning sandy rainbow touches lower manhattan \n", "\n", "\n", - "@toppscards Rainbow touches down in lower Manhattan #hurricane #sandy http://t.co/kMpHdkNK\n", - "\n", - "--------------------------------------------------------\n", - "rainbow touches lower manhattan hurricane sandy \n", - "\n", - "\n", "Great photo of rainbow touching down in lower Manhattan after #Sandy http://t.co/Qf14EkZf via @kurtdietrich @NewYorkPost\n", "\n", "--------------------------------------------------------\n", @@ -41644,13 +37194,13 @@ "Ok this is #&@#king incredible O_o Rt @Chadisms \" My friend's sister's Trampoline in Long Island. #HurricaneSandy http://t.co/NdUItEti \"\n", "\n", "--------------------------------------------------------\n", - "ok king incredible \n", + "ok king incredible oo \n", "\n", "\n", "My friend's sister's Trampolene in Long Island. #HurricaneSandy http://t.co/sroRwHhV\n", "\n", "--------------------------------------------------------\n", - "friend sister trampolene long island hurricanesandy \n", + "friend sister trampolene long island hurricane sandy \n", "\n", "\n", "#SANDY #Queens #BreezyPoint aftermath http://t.co/UOuYYFcn\n", @@ -41686,7 +37236,7 @@ "ภาพคุ้นๆ A parking lot full of yellow cabs is flooded as a result of Hurricane Sandy on Oct 30,2012 in Hoboken, NJ. http://t.co/Sju6YsZQ\n", "\n", "--------------------------------------------------------\n", - "ภาพค นๆ parking lot full yellow cabs flooded result hurricane sandy oct 30 2012 hoboken nj \n", + "ภาพค นๆ parking lot full yellow cabs flooded result hurricane sandy oct0012 hoboken new jersey \n", "\n", "\n", "Fantastic pic RT @thecoolhunter A parking lot full of yellow cabs flooded in Hoboken. #Sandy http://t.co/vruQkvy0\n", @@ -41698,7 +37248,7 @@ "A parking lot full of yellow cabs is flooded as a result of #Sandy 30 Oct Hoboken, NJ http://t.co/v3rhvrIi (AP Photo/Charles Sykes)\n", "\n", "--------------------------------------------------------\n", - "parking lot full yellow cabs flooded result sandy 30 oct hoboken nj ap photo charles sykes \n", + "parking lot full yellow cabs flooded result sandy0 oct hoboken new jersey ap photo charles sykes \n", "\n", "\n", "A parking lot full of yellow cabs is flooded as a result of Hurricane Sandy in Hoboken. - http://t.co/NwoXpUJX\n", @@ -41710,37 +37260,31 @@ "Photo: Flooded parking lot full of yellow taxis in Hoboken, NJ. (Charles Sykes / AP) #Sandy http://t.co/9GqfzJRo\n", "\n", "--------------------------------------------------------\n", - "photo flooded parking lot full yellow taxis hoboken nj charles sykes ap sandy \n", + "photo flooded parking lot full yellow taxis hoboken new jersey charles sykes ap sandy \n", "\n", "\n", "A parking lot full of yellow cabs sits flooded as a result of Hurricane Sandy on Tuesday, October 30, 2012 in Hobo http://t.co/dL7aX45L\n", "\n", "--------------------------------------------------------\n", - "parking lot full yellow cabs sits flooded result hurricane sandy tuesday october 30 2012 hobo \n", + "parking lot full yellow cabs sits flooded result hurricane sandy tuesday october02 hobo \n", "\n", "\n", "A parking lot of flooded yellow cabs brought to you by #HurricaneSandy http://t.co/MvTlnaOX #insane http://t.co/geuyiJC7\n", "\n", "--------------------------------------------------------\n", - "parking lot flooded yellow cabs brought hurricanesandy insane \n", + "parking lot flooded yellow cabs brought hurricane sandy insane \n", "\n", "\n", "Wow, here's a parking lot of flooded yellow cabs. #sandy http://t.co/4ksyg1DH\n", "\n", "--------------------------------------------------------\n", - "wow parking lot flooded yellow cabs sandy \n", - "\n", - "\n", - "A parking lot of flooded yellow cabs brought to you by Hurricane #Sandy http://t.co/xl34dLne #SU\n", - "\n", - "--------------------------------------------------------\n", - "parking lot flooded yellow cabs brought hurricane sandy \n", + "parking lot flooded yellow cabs sandy \n", "\n", "\n", "Empire State Building shines in the dark.... #Sandy #HurricaneSandy http://t.co/ZJsGNS94\n", "\n", "--------------------------------------------------------\n", - "empire state building shines dark sandy hurricanesandy \n", + "empire state building shines dark sandy hurricane sandy \n", "\n", "\n", "This is just nuts. -> abnieves27's photo #sandy http://t.co/Cr1UNeT7\n", @@ -41749,12 +37293,6 @@ "nuts abnieves27 photo sandy \n", "\n", "\n", - "@alexpriest: Woah. RT @mikemadden: This photo by NASA is just absurd: http://t.co/p1iEKp33 #sandy\n", - "\n", - "--------------------------------------------------------\n", - "woah \n", - "\n", - "\n", "Taxis inundados en New Jersey por el huracán #Sandy http://t.co/CAJASOfx\n", "\n", "--------------------------------------------------------\n", @@ -41770,13 +37308,13 @@ "El frente de un edificio en Nueva York se vino abajo > http://t.co/WjFuPZ9e < New Jersey Huracán Sandy .\n", "\n", "--------------------------------------------------------\n", - "frente edificio nueva york vino abajo greater less new jersey huracán sandy \n", + "frente edificio nueva york vino abajo new jersey huracán sandy \n", "\n", "\n", "Manhattan, EEUU. Después de la tormenta, llega la calma.. #eeuu #sandy #ny #beautiful #building #tower #clou http://t.co/9V4aqiFa\n", "\n", "--------------------------------------------------------\n", - "manhattan eeuu después tormenta llega calma eeuu sandy ny beautiful building tower clou \n", + "manhattan eeuu después tormenta llega calma eeuu sandy new york beautiful building tower clou \n", "\n", "\n", "Vista del huracán Sandy desde satélite de la NASA en el espacio http://t.co/nCy262Qs\n", @@ -41788,7 +37326,7 @@ "Regresamos con más imágenes de #Sandy donde han confirmado la muerte de 11 personas en este momento. http://t.co/73tN8cNd\n", "\n", "--------------------------------------------------------\n", - "regresamos imágenes sandy confirmado muerte 11 personas momento \n", + "regresamos imágenes sandy confirmado muerte de1 personas momento \n", "\n", "\n", "El agua en las obras de la zona cero de Nueva York http://t.co/xI8FhTyl #Sandy #foto\n", @@ -41824,13 +37362,13 @@ "La otra cara de #Sandy. La espectaculares imágenes que se pueden hacer. Los taxis de NY hundidos. http://t.co/YmiHWMgr\n", "\n", "--------------------------------------------------------\n", - "cara sandy espectaculares imágenes pueden hacer taxis ny hundidos \n", + "sandy espectaculares imágenes pueden hacer taxis new york hundidos \n", "\n", "\n", "#Sandy el monstruo! Dios misericordia pa'l noroeste!🙏🙏 ,Dios cuide mi gente de Boston y NY / nasagoddard's photo http://t.co/bC9HfQ5F\n", "\n", "--------------------------------------------------------\n", - "sandy monstruo dios misericordia pa l noroeste dios cuide gente boston ny nasagoddard photo \n", + "sandy monstruo dios misericordia pa noroeste dios cuide gente boston new york nasagoddard photo \n", "\n", "\n", "El HMS Bounty devorado x las aguas del Atlántico al paso de la tormenta #sandy http://t.co/2pv6yiJd\n", @@ -41854,7 +37392,7 @@ "Huracan Sandy lleva mas de una semana haciendo estragos desde el caribe hasta canada http://t.co/DHaGkn36\n", "\n", "--------------------------------------------------------\n", - "huracan sandy lleva mas semana haciendo estragos caribe canada \n", + "huracan sandy lleva semana haciendo estragos caribe canada \n", "\n", "\n", "Y fuera bromas, ahora una foto real de lo sucedido por el huracán Sandy (Zona Cero, memorial) http://t.co/whzoE0By\n", @@ -41866,7 +37404,7 @@ "#NewYork la Virgen Milagrosa En Perfectas Condiciones en medio del desastre causado por #sandy http://t.co/zNtAt0s0\n", "\n", "--------------------------------------------------------\n", - "newyork virgen milagrosa perfectas condiciones medio desastre causado sandy \n", + "new york virgen milagrosa perfectas condiciones medio desastre causado sandy \n", "\n", "\n", "Imagen reciente de la #NASA demuestra que sigue escondida la costa de #E.U.A. por #sandy http://t.co/oReWY7Os\n", @@ -41884,31 +37422,31 @@ "la foto de femmedarmes http://t.co/ExRRW5Em #sandy #nyc #storn\n", "\n", "--------------------------------------------------------\n", - "foto femmedarmes sandy nyc storn \n", + "foto femmedarmes sandy new york city storn \n", "\n", "\n", "Después de la tormenta, dos arcoiris. Alguien ha activado algo en alguna parte... #sandy #harwitum http://t.co/sEiniLBy\n", "\n", "--------------------------------------------------------\n", - "después tormenta dos arcoiris alguien activado alguna parte sandy harwitum \n", + "después tormenta arcoiris alguienactivado alguna parte sandy harwitum \n", "\n", "\n", "#SANDY: O que se ver neste momento no céu de Nov York é o arco-iris. Será um bom sinal? Vamos aguardar as próximas hrs http://t.co/q2HEoYSr\n", "\n", "--------------------------------------------------------\n", - "sandy ver neste momento céu nov york é arco iris um bom sinal vamos aguardar próximas hrs \n", + "sandy ver neste momento céu nov york arco iris bom sinal vamos aguardar próximas hrs \n", "\n", "\n", "#Ríos de #agua en un #parking de #NuevaYork #NewYork por el #Huracán #Sandy http://t.co/YhST8DOQ\n", "\n", "--------------------------------------------------------\n", - "ríos agua parking nuevayork newyork huracán sandy \n", + "ríos agua parking nuevayork new york huracán sandy \n", "\n", "\n", "Crazy shit este building se de grano en 8ave #sandy http://t.co/1SMqBTA0\n", "\n", "--------------------------------------------------------\n", - "crazy shit building grano 8ave sandy \n", + "crazy shit building grano sandy \n", "\n", "\n", "la foto de jacobsantiago #Sandy http://t.co/5sKCUfzx\n", @@ -41920,19 +37458,19 @@ "La obra de la zona zero (donde estaban las Torres Gemelas) quedó inundado. #Sandy vía facebook de @FDNY http://t.co/R1UTDUqa\n", "\n", "--------------------------------------------------------\n", - "obra zona zero torres gemelas quedó inundado sandy vía facebook \n", + "obra zona zero torres gemelas quedó inundado sandyfacebook \n", "\n", "\n", "Despues de la tormenta, siempre llega la calma #NY #Manhattan #Sandy http://t.co/kecqqbRd\n", "\n", "--------------------------------------------------------\n", - "despues tormenta siempre llega calma ny manhattan sandy \n", + "despues tormenta siempre llega calma new york manhattan sandy \n", "\n", "\n", "Después de la tormenta siempre llega la calma. #NewYork #Sandy http://t.co/z4BcuhbA\n", "\n", "--------------------------------------------------------\n", - "después tormenta siempre llega calma newyork sandy \n", + "después tormenta siempre llega calma new york sandy \n", "\n", "\n", "Otra buena de #sandy ( foto de librattus http://t.co/Kl7qfKDR )\n", @@ -41962,7 +37500,7 @@ "Terminal de #taxi en Hoboken, New Jersey Via @nbcnewyork #Sandy #NYC http://t.co/KIzk7vFr\n", "\n", "--------------------------------------------------------\n", - "terminal taxi hoboken new jersey via sandy nyc \n", + "terminal taxi hoboken new jersey sandy new york city \n", "\n", "\n", "Midtown Tun Aquí les compartimos unas imágenes de el huracán #sandy http://t.co/OqHqZdot\n", @@ -41980,7 +37518,7 @@ "la foto de johnnyluca http://t.co/ODUnY9Lb #nyc #sandy\n", "\n", "--------------------------------------------------------\n", - "foto johnnyluca nyc sandy \n", + "foto jnnyluca new york city sandy \n", "\n", "\n", "It looks like surfing is out 🏄\\n#hurricane http://t.co/geb24Dul\n", @@ -41992,199 +37530,187 @@ "#hurricanesandy doing work http://t.co/VUEqdtdj\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy work \n", + "hurricane sandy work \n", "\n", "\n", "#AtlanticCity #NewJersey #HurricaneSandy http://t.co/j5F73lik\n", "\n", "--------------------------------------------------------\n", - "atlanticcity newjersey hurricanesandy \n", + "atlanticcity newjersey hurricane sandy \n", "\n", "\n", "#NoFilter Shiid just got REAL #HurricaneSandy🙈🙀💦🏃💨 http://t.co/w2RfYQIG\n", "\n", "--------------------------------------------------------\n", - "nofilter shiid got real hurricanesandy \n", + "nofilter shiid got real hurricane sandy \n", "\n", "\n", "Wow! Flooded yellow cabs. \\n\\n#nyc #hurricanesandy #yellowcab #taxi http://t.co/eYx3oAir\n", "\n", "--------------------------------------------------------\n", - "wow flooded yellow cabs nyc hurricanesandy yellowcab taxi \n", + "flooded yellow cabs new york city hurricane sandy yellowcab taxi \n", "\n", "\n", "Seaside Heights Casino Pier roller coaster in the ocean!!! #hurricanesandy http://t.co/tbPxCOGK\n", "\n", "--------------------------------------------------------\n", - "seaside heights casino pier roller coaster ocean hurricanesandy \n", + "seaside heights casino pier roller coaster ocean hurricane sandy \n", "\n", "\n", "Seaside Heights Pier NO MORE!! #seaside #heights #nj #hurricane #hurricanesandy #funtime #rollercoaster #oc http://t.co/u04576s1\n", "\n", "--------------------------------------------------------\n", - "seaside heights pier seaside heights nj hurricane hurricanesandy funtime rollercoaster oc \n", + "seaside heights pier seaside heights new jersey hurricane hurricane sandy funtime rollercoaster oc \n", "\n", "\n", "20th Street and Avenue C #NewYork #HurricaneSandy http://t.co/ZqLA3KS6\n", "\n", "--------------------------------------------------------\n", - "20th street avenue c newyork hurricanesandy \n", + "0th street avenue new york hurricane sandy \n", "\n", "\n", "hide yo kids, hide yo wife #sandy #hurricanesandy #milford #ct #connecticut #yolo http://t.co/0HRl4ptM\n", "\n", "--------------------------------------------------------\n", - "hide kids hide wife sandy hurricanesandy milford ct connecticut yolo \n", + "hidekids hidewife sandy hurricane sandy milford ct connecticut yolo \n", "\n", "\n", "Avenue C & 8th Street #NYC #HurricaneSandy http://t.co/FwJOVSVd\n", "\n", "--------------------------------------------------------\n", - "avenue c 8th street nyc hurricanesandy \n", + "avenue street new york city hurricane sandy \n", "\n", "\n", "Corner of Avenue C & 8th St, Anonymous Photo #nyc #Flood #Sandy #Frankenstorm #APSuperstorm #HPSandy\\nhttp://t.co/dpuNbuhM\n", "\n", "--------------------------------------------------------\n", - "corner avenue c 8th st anonymous photo nyc flood sandy frankenstorm apsuperstorm hpsandy \n", + "corner avenue st anonymous photo new york city flood sandy frankenstorm apsuperstorm hpsandy \n", "\n", "\n", "Prayers & blessings go to everybody on the East coast! #hurricanesandy #besafe #naturaldisaster ☁💨💦💧🌊🌀👏🙏 http://t.co/TuUJ0208\n", "\n", "--------------------------------------------------------\n", - "prayers blessings go everybody east coast hurricanesandy besafe naturaldisaster \n", + "prayers blessings go everybody east coast hurricane sandy besafe naturaldisaster \n", "\n", "\n", "#frankenstorm as seen from #outerspace . #hurricane #hurricanesandy http://t.co/0PKcknRE\n", "\n", "--------------------------------------------------------\n", - "frankenstorm seen outerspace hurricane hurricanesandy \n", + "frankenstorm seen outerspace hurricane hurricane sandy \n", "\n", "\n", "What the hell am I seeing happen in NYC man?! #HURRICANESANDY http://t.co/nYWLddO8\n", "\n", "--------------------------------------------------------\n", - "hell seeing happen nyc hurricanesandy \n", + "hell seeing happen new york city hurricane sandy \n", "\n", "\n", "Trampoline go home, you're drunk. #hurricanesandy #trampoline #crazy. #hurricane #sandy #longisland (phildi http://t.co/18LAlVil\n", "\n", "--------------------------------------------------------\n", - "trampoline go home drunk hurricanesandy trampoline crazy hurricane sandy longisland phildi \n", + "trampoline go home drunk hurricane sandy trampoline crazy hurricane sandy longisland phildi \n", "\n", "\n", "Firefighters going car to car on Avenue C to check for trapped motorists. Godspeed. #sandy http://t.co/CVaM5HGF\n", "\n", "--------------------------------------------------------\n", - "firefighters going car car avenue c check trapped motorists godspeed sandy \n", + "firefighters going car car avenue check trapped motorists godspeed sandy \n", "\n", "\n", "Repost from das_schulze Avenue C & 8th #hurricane #sandy #eastvillage http://t.co/qpHIGKW7\n", "\n", "--------------------------------------------------------\n", - "repost das schulze avenue c 8th hurricane sandy eastvillage \n", + "repost dasschulze avenue hurricane sandy eastvillage \n", "\n", "\n", "Nypd cars under water at avenue C east village #silenthill #sandy http://t.co/o4N4dgnI\n", "\n", "--------------------------------------------------------\n", - "nypd cars water avenue c east village silenthill sandy \n", + "nypd cars water avenue east village silenthill sandy \n", "\n", "\n", "14th Street & Avenue C, NYC #sandy http://t.co/2bI7EvMW -- HONEY GERMAN @vafatboy @kittyboo2121\n", "\n", "--------------------------------------------------------\n", - "14th street avenue c nyc sandy honey german \n", + "4th street avenue new york city sandy honey german \n", "\n", "\n", "One word: WOW!\\n#taxi #underwater #NYC after the #hurricane http://t.co/ecYuxC7M\n", "\n", "--------------------------------------------------------\n", - "one word wow taxi underwater nyc hurricane \n", - "\n", - "\n", - "#hurricanesandy http://t.co/Nki0KD7f\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy \n", + "one word taxi underwater new york city hurricane \n", "\n", "\n", "#AtlanticCity #HurricaneSandy #Newjersey http://t.co/vpQUEFN7\n", "\n", "--------------------------------------------------------\n", - "atlanticcity hurricanesandy newjersey \n", + "atlanticcity hurricane sandy newjersey \n", "\n", "\n", "nasagoddardさんの写真 http://t.co/DKiEVceV\\n16時間前のSandy\n", "\n", "--------------------------------------------------------\n", - "nasagoddardさんの写真 16時間前のsandy \n", + "nasagoddardさんの写真 6時間前のsandy \n", "\n", "\n", "nasagoddard's photo http://t.co/7BP2VB3M wow! #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "nasagoddard photo wow hurricanesandy \n", + "nasagoddard photo hurricane sandy \n", "\n", "\n", "Near my job. Not for nothing I'm a little nervous now. #LES lower east side #hurricaneSandy this wind is nut http://t.co/0LzAFL1M\n", "\n", "--------------------------------------------------------\n", - "near job nothing little nervous lower east side hurricanesandy wind nut \n", - "\n", - "\n", - "#HurricaneSandy. Wow!! http://t.co/cx7i04kd\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy wow \n", + "near job nothing little nervous lower east side hurricane sandy wind nut \n", "\n", "\n", "Manhattan... Pray for New Yorkers #hurricaneSandy #repost http://t.co/kYGniItG\n", "\n", "--------------------------------------------------------\n", - "manhattan pray new yorkers hurricanesandy repost \n", + "manhattan pray new yorkers hurricane sandy repost \n", "\n", "\n", "no more jersey shore #SeaSideHeights #hurricanesandy http://t.co/bCUrfxYh\n", "\n", "--------------------------------------------------------\n", - "jersey shore seasideheights hurricanesandy \n", + "jersey shore seasideheights hurricane sandy \n", "\n", "\n", "We live to see another day. #hurricanesandy #rainbow #nyc #dayafter #survivor @ NYC http://t.co/VAeoAWGG\n", "\n", "--------------------------------------------------------\n", - "live see another day hurricanesandy rainbow nyc dayafter survivor nyc \n", + "live see another day hurricane sandy rainbow new york city dayafter survivor new york city \n", "\n", "\n", "PATH station in Hoboken :( my city is underwater. Praying for those who endured destruction. #hurricanesandy http://t.co/owVDqdXz\n", "\n", "--------------------------------------------------------\n", - "path station hoboken city underwater praying endured destruction hurricanesandy \n", + "path station hoboken city underwater praying endured destruction hurricane sandy \n", "\n", "\n", "#hurricanesandy Hoboken, NJ http://t.co/fzjYWF9e\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy hoboken nj \n", + "hurricane sandy hoboken new jersey \n", "\n", "\n", "Hoboken path station flood. #NewJersey #flood #hurricanesandy. #hurricane. #sandy http://t.co/MXj5Cvdn\n", "\n", "--------------------------------------------------------\n", - "hoboken path station flood newjersey flood hurricanesandy hurricane sandy \n", + "hoboken path station flood newjersey flood hurricane sandy hurricane sandy \n", "\n", "\n", "#Hoboken #NJ - #YellowCabs #HurricaneSandy #NY http://t.co/JNeQah1Q http://t.co/rSFGOXpU\n", "\n", "--------------------------------------------------------\n", - "hoboken nj yellowcabs hurricanesandy ny \n", + "hoboken new jersey yellowcabs hurricane sandy new york \n", "\n", "\n", "wow...this is so scary. #sandy#path#hoboken http://t.co/erjlYh9v\n", "\n", "--------------------------------------------------------\n", - "wow scary sandy path hoboken \n", + "scary sandypathhoboken \n", "\n", "\n", "Bonkers! RT @weeddude: RT @reedtimmerTVN: An AP photo coming out of Hoboken, NJ of taxis under water! #HurricaneSandy http://t.co/AHGPMj6v\n", @@ -42196,43 +37722,43 @@ "#hoboken #underwater #hurricanesandy @ Hoboken http://t.co/tXDttAmG\n", "\n", "--------------------------------------------------------\n", - "hoboken underwater hurricanesandy hoboken \n", + "hoboken underwater hurricane sandy hoboken \n", "\n", "\n", "Brand new cabs ruined north of 14th Street RT @MistaChubbz: #Hoboken #NJ - #YellowCabs #HurricaneSandy #NY http://t.co/AaZaC88O\n", "\n", "--------------------------------------------------------\n", - "brand new cabs ruined north 14th street \n", + "brand new cabs ruined north of4th street \n", "\n", "\n", "So this is lower #manhattan right about #meow\\n\\n#hurricane #sandy #hurricanesandy #2012 #nyc #iloveny #werefu http://t.co/xNOakLyK\n", "\n", "--------------------------------------------------------\n", - "lower manhattan right meow hurricane sandy hurricanesandy 2012 nyc iloveny werefu \n", + "lower manhattan right meow hurricane sandy hurricane sandy012 new york city iloveny werefu \n", "\n", "\n", "Craziness!!! #hurricanesandy http://t.co/3klZq7Dz\n", "\n", "--------------------------------------------------------\n", - "craziness hurricanesandy \n", + "craziness hurricane sandy \n", "\n", "\n", "Lowkey glad I'm in Fla for the time being... But I'm praying for my hometown 😭😱 #nyc #hurricanesandy #disast http://t.co/0FVS56ES\n", "\n", "--------------------------------------------------------\n", - "lowkey glad fla time praying hometown nyc hurricanesandy disast \n", + "lowkey glad fla time praying hometown new york city hurricane sandy disast \n", "\n", "\n", "#NYC Streets! #HurricaneSandy #Manhattan http://t.co/fHSLGH9L\n", "\n", "--------------------------------------------------------\n", - "nyc streets hurricanesandy manhattan \n", + "new york city streets hurricane sandy manhattan \n", "\n", "\n", "Brooklyn, NY #HurricaneSandy http://t.co/gpM5XyaI\n", "\n", "--------------------------------------------------------\n", - "brooklyn ny hurricanesandy \n", + "brooklyn new york hurricane sandy \n", "\n", "\n", "My homie DJKARTEL posted this outta #Manhatten #hurricanesandy http://t.co/Lj7COvXY\n", @@ -42244,137 +37770,107 @@ "That's a big ol' storm. #hurricanesandy #frankenstorm http://t.co/ZbxX5JZf\n", "\n", "--------------------------------------------------------\n", - "big ol storm hurricanesandy frankenstorm \n", + "big ol storm hurricane sandy frankenstorm \n", "\n", "\n", "Lol #hurricanesandy #sandy #milford #trampoline http://t.co/0I4dKr5g\n", "\n", "--------------------------------------------------------\n", - "lol hurricanesandy sandy milford trampoline \n", + "hurricane sandy sandy milford trampoline \n", "\n", "\n", "#hurricanesandy #shitjustgotreal I guess she didn't like the way it was looking at her lol http://t.co/Scxmve44\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy shitjustgotreal guess like way looking lol \n", + "hurricane sandy shitjustgotreal guess like way looking \n", "\n", "\n", "You want to play game #hurricanesandy http://t.co/CgZgToUa\n", "\n", "--------------------------------------------------------\n", - "play game hurricanesandy \n", - "\n", - "\n", - "Atlantic City... #hurricanesandy http://t.co/Ns1mWzCD\n", - "\n", - "--------------------------------------------------------\n", - "atlantic city hurricanesandy \n", - "\n", - "\n", - "Atlantic City. http://t.co/5Trzinwt #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "atlantic city hurricanesandy \n", + "play game hurricane sandy \n", "\n", "\n", "This is real life. Lower Manhattan, as we speak!! 😱😱😱😱 #HurricaneSandy #NYC #Manhattan #Queens http://t.co/IPzBGOyz\n", "\n", "--------------------------------------------------------\n", - "real life lower manhattan speak hurricanesandy nyc manhattan queens \n", + "real life lower manhattan speak hurricane sandy new york city manhattan queens \n", "\n", "\n", "#eastvillage #hurricanesandy #cyclone #newyorkcity #newyork #flood #nature #wow #instamood #igers #instagram http://t.co/38KtFWRm\n", "\n", "--------------------------------------------------------\n", - "eastvillage hurricanesandy cyclone newyorkcity newyork flood nature wow instamood igers instagram \n", - "\n", - "\n", - "Omg NYC.... #hurricanesandy http://t.co/soyFBWJn\n", - "\n", - "--------------------------------------------------------\n", - "omg nyc hurricanesandy \n", + "eastvillage hurricane sandy cyclone new yorkcity new york flood nature igers instagram \n", "\n", "\n", "R.I.P so many memories :( #seasideheights #sad #fuck #hurricanesandy #dumbbitch http://t.co/XNGmivZH\n", "\n", "--------------------------------------------------------\n", - "r p many memories seasideheights sad fuck hurricanesandy dumbbitch \n", + "r p many memories seasideheights sad fuck hurricane sandy dumbbitch \n", "\n", "\n", "lmao😂😂😂😂 #hurricane #hurricanesandy #sandy http://t.co/7XkY3SUx\n", "\n", "--------------------------------------------------------\n", - "lmao hurricane hurricanesandy sandy \n", + "hurricane hurricane sandy sandy \n", "\n", "\n", "Funny!! But not funny!! I think this is someplace in NJ. #regram originaltandan #hurricanesandy http://t.co/dMbZpZHz\n", "\n", "--------------------------------------------------------\n", - "funny funny think someplace nj regram originaltandan hurricanesandy \n", + "funny funny think someplace new jersey originaltandan hurricane sandy \n", "\n", "\n", "Cabs In Water #usatoday #coverstory #hurricanesandy #newjersey http://t.co/p3qdIs0w\n", "\n", "--------------------------------------------------------\n", - "cabs water usatoday coverstory hurricanesandy newjersey \n", + "cabs water usatoday coverstory hurricane sandy newjersey \n", "\n", "\n", "#usa #hurricanesandy #ny #sandy @ My Home http://t.co/ziqQ3UVL\n", "\n", "--------------------------------------------------------\n", - "usa hurricanesandy ny sandy home \n", + "usa hurricane sandy new york sandy home \n", "\n", "\n", "RIP seaside pier 😢🎢 #seaside #jerseyshore #hurricanesandy http://t.co/HyguNdup\n", "\n", "--------------------------------------------------------\n", - "rip seaside pier seaside jerseyshore hurricanesandy \n", - "\n", - "\n", - "Damn this is from #hurricaneSandy http://t.co/TlJZDxmZ\n", - "\n", - "--------------------------------------------------------\n", - "damn hurricanesandy \n", + "rip seaside pier seaside jerseyshore hurricane sandy \n", "\n", "\n", "Foto de kaylamaria http://t.co/CtnePmP2 #hurricanesandy #NYC\n", "\n", "--------------------------------------------------------\n", - "foto kaylamaria hurricanesandy nyc \n", + "foto kaylamaria hurricane sandy nyc \n", "\n", "\n", "Yup so #newyork is almost completely underwater now...#hurricanesandy http://t.co/xnwH6XFK\n", "\n", "--------------------------------------------------------\n", - "yup newyork almost completely underwater hurricanesandy \n", + "yup new york almost completely underwater hurricane sandy \n", "\n", "\n", "#nyc #fdr #sandy #hurricane #hurricanesandy #photograph #photography #staysafe #flooding http://t.co/KzFSIMmD\n", "\n", "--------------------------------------------------------\n", - "nyc fdr sandy hurricane hurricanesandy photograph photography staysafe flooding \n", + "new york city fdr sandy hurricane hurricane sandy photograph photography staysafe flooding \n", "\n", "\n", "According to Facebook, this supposedly happened in Lorain. I'm skeptical. #hurricanesandy #highwind #windy # http://t.co/tW4lQKWv\n", "\n", "--------------------------------------------------------\n", - "according facebook supposedly happened lorain skeptical hurricanesandy highwind windy \n", + "according facebook supposedly happened lorain skeptical hurricane sandy highwind windy \n", "\n", "\n", "#hurricanesandy #nyc #newyork #bigapple #water #floods #instashit #streetphotography #instagram #photography http://t.co/Zxen5yQl\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy nyc newyork bigapple water floods instashit streetphotography instagram photography \n", + "hurricane sandy new york city new york bigapple water floods instashit streetphotography instagram photography \n", "\n", "\n", "Damn heights RT @Cyn_Santana: Seaside heights after #hurricanesandy http://t.co/rxJGz9r4\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "--------------------------------------------------------\n", "damn heights \n", "\n", @@ -42382,661 +37878,649 @@ "lochobags's photo - #HurricaneSandy http://t.co/ooAs7ha0\n", "\n", "--------------------------------------------------------\n", - "lochobags photo hurricanesandy \n", + "lochobags photo hurricane sandy \n", "\n", "\n", "Flooded in #NewYorkCity because #HurricaneSandy. Photo from @stumbleupon http://t.co/Pj3cjgs9\n", "\n", "--------------------------------------------------------\n", - "flooded newyorkcity hurricanesandy photo \n", + "flooded new yorkcity hurricane sandy photo \n", "\n", "\n", "Whoaaaa.... U kno its real when that shit jumping all over the place #HurricaneSandy http://t.co/lySlaHX0\n", "\n", "--------------------------------------------------------\n", - "whoaaaa kno real shit jumping place hurricanesandy \n", + "kno real shit jumping place hurricane sandy \n", "\n", "\n", "Seaside pier omg #hurricanesandy did some really bad damage that bitch!!! http://t.co/G5vYyUHC\n", "\n", "--------------------------------------------------------\n", - "seaside pier omg hurricanesandy really bad damage bitch \n", + "seaside pier hurricane sandy really bad damage bitch \n", "\n", "\n", "R.I.P seaside #hurricanesandy #aftermath http://t.co/qaphNhHP\n", "\n", "--------------------------------------------------------\n", - "r p seaside hurricanesandy aftermath \n", + "r p seaside hurricane sandy aftermath \n", "\n", "\n", "That swirl is #hurricanesandy!!! It is real out there!!! #besafe people. http://t.co/1ppXwmJs\n", "\n", "--------------------------------------------------------\n", - "swirl hurricanesandy real besafe people \n", + "swirl hurricane sandy real besafe people \n", "\n", "\n", "Damn I can't believe this is #nyc right now #hurricanesandy http://t.co/qeaKu20r\n", "\n", "--------------------------------------------------------\n", - "damn believe nyc right hurricanesandy \n", + "damn believe new york city right hurricane sandy \n", "\n", "\n", "Seaside Heights, NJ grew up going here as a kid #HurricaneSandy #PrayersToEveryoneThere http://t.co/0g14J920\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj grew going kid hurricanesandy prayerstoeveryonethere \n", + "seaside heights new jersey grew going kid hurricane sandy prayerstoeveryonethere \n", "\n", "\n", "Earth showing #HurricaneSandy :-o http://t.co/PWtSM5dK\n", "\n", "--------------------------------------------------------\n", - "earth showing hurricanesandy \n", + "earth showing hurricane sandy \n", "\n", "\n", "WOW, sad. World Trade Center construction area being taken over by flood waters! #nywx #hurricanesandy http://t.co/7LIKeZnJ\n", "\n", "--------------------------------------------------------\n", - "wow sad world trade center construction area taken flood waters nywx hurricanesandy \n", + "sad world trade center construction area taken flood waters nywx hurricane sandy \n", "\n", "\n", "#hurricanesandy trying to catch a cab in #nyc think again? http://t.co/CaYxPf9P\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy trying catch cab nyc think \n", + "hurricane sandy trying catch cab new york city think \n", "\n", "\n", "#East8th Street and Ave E in #LowerManhattan...crazzzy a$$ storm! #HurricaneSandy http://t.co/l34evgs6\n", "\n", "--------------------------------------------------------\n", - "east8th street ave lowermanhattan crazzzy storm hurricanesandy \n", + "east8th street ave lowermanhattan crazzzy storm hurricane sandy \n", "\n", "\n", "That is not suppose to be there....😨 #seaside #nofilter #hurricanesandy #sad #rollercoaster #ocean http://t.co/9GhUd8q2\n", "\n", "--------------------------------------------------------\n", - "suppose seaside nofilter hurricanesandy sad rollercoaster ocean \n", + "suppose seaside nofilter hurricane sandy sad rollercoaster ocean \n", "\n", "\n", "Manhattans view 2 hours ago! Damnnn!!! #hurricanesandy http://t.co/H16h6UNE\n", "\n", "--------------------------------------------------------\n", - "manhattans view 2 hours ago damnnn hurricanesandy \n", + "manhattans view hours ago damnnn hurricane sandy \n", "\n", "\n", "#seasideheights #aka #jerseyshore #hurricane #hurricanesandy #damaged #gone #beach #boardwalk http://t.co/3rsob04K\n", "\n", "--------------------------------------------------------\n", - "seasideheights aka jerseyshore hurricane hurricanesandy damaged gone beach boardwalk \n", + "seasideheights aka jerseyshore hurricane hurricane sandy damaged gone beach boardwalk \n", "\n", "\n", "This is where I book shows and I'm not ready to say bye yet :( #atlanticcity #hurricanesandy #goodbye http://t.co/XTKMaUfD\n", "\n", "--------------------------------------------------------\n", - "book shows ready say bye yet atlanticcity hurricanesandy goodbye \n", + "book shows ready say bye yet atlanticcity hurricane sandy goodbye \n", "\n", "\n", "NASA's Latest Image of #HurricaneSandy ... THIS STORM IS BIG AS SHIT!!!! #BreathTaking http://t.co/PXtzh27m\n", "\n", "--------------------------------------------------------\n", - "nasa latest image hurricanesandy storm big shit breathtaking \n", + "nasa latest image hurricane sandy storm big shit breathtaking \n", "\n", "\n", "&& people think this shits funny, fucking shame on yall. #hurricanesandy if you think this is funny I CAN'T http://t.co/VN0VBTqP\n", "\n", "--------------------------------------------------------\n", - "andand people think shits funny fucking shame yall hurricanesandy think funny \n", + "andand people think shits funny fucking shame yall hurricane sandy think funny \n", "\n", "\n", "RIP seaside heights and bored walk #jerseyshore #hurricanesandy http://t.co/nKeUgpjP\n", "\n", "--------------------------------------------------------\n", - "rip seaside heights bored walk jerseyshore hurricanesandy \n", + "rip seaside heights bored walk jerseyshore hurricane sandy \n", "\n", "\n", "This is incredible. #seaside #rollercoaster #ocean #done #upset #hurricanesandy #disaster 😰😿😟 http://t.co/3qgHRGKz\n", "\n", "--------------------------------------------------------\n", - "incredible seaside rollercoaster ocean done upset hurricanesandy disaster \n", + "incredible seaside rollercoaster ocean done upset hurricane sandy disaster \n", "\n", "\n", "And you thought it was hard to get a cab in #CoMo @thisistumtum. #hurricanesandy http://t.co/2NdxPY0L\n", "\n", "--------------------------------------------------------\n", - "thought hard get cab hurricanesandy \n", + "thought hard get cab hurricane sandy \n", "\n", "\n", "How will i ever get home?! #midtowntunnel #newyork #longisland #home #hurricanesandy http://t.co/yR6Wk6OT\n", "\n", "--------------------------------------------------------\n", - "ever get home midtowntunnel newyork longisland home hurricanesandy \n", + "ever get home midtowntunnel new york longisland home hurricane sandy \n", "\n", "\n", "The Hudson River has made this one cab lot an underwater parking lot!!! #hurricanesandy aftermath!!! http://t.co/M2OrPI2w\n", "\n", "--------------------------------------------------------\n", - "hudson river made one cab lot underwater parking lot hurricanesandy aftermath \n", + "hudson river made one cab lot underwater parking lot hurricane sandy aftermath \n", "\n", "\n", "A birds eye view AC #HurricaneSandy http://t.co/G3034lyq\n", "\n", "--------------------------------------------------------\n", - "birds eye view ac hurricanesandy \n", - "\n", - "\n", - "“@skymarkwhite: Another pic of serious flooding in Atlantic City, NJ - courtesy @Hoeboma: http://t.co/LsZ0roOx” omg #HurricaneSandy 🙏🇺🇸\n", - "\n", - "--------------------------------------------------------\n", - "omg hurricanesandy \n", + "birds eye view ac hurricane sandy \n", "\n", "\n", "#hurricanesandy #milfordproblems this is actually hilarious that this happened in milford http://t.co/uSwCBeWf\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy milfordproblems actually hilarious happened milford \n", + "hurricane sandy milfordproblems actually hilarious happened milford \n", "\n", "\n", "Rainbow in manhattan. #hurricanesandy Follow me for more photos!!!! http://t.co/vZJQhM1c\n", "\n", "--------------------------------------------------------\n", - "rainbow manhattan hurricanesandy follow photos \n", + "rainbow manhattan hurricane sandy follow photos \n", "\n", "\n", "OMG lol (Bohemia, NY) Darn #hurricanesandy #hurricane #sandy #instadaily #scary http://t.co/cgKV7iEq\n", "\n", "--------------------------------------------------------\n", - "omg lol bohemia ny darn hurricanesandy hurricane sandy instadaily scary \n", + "bemia new york darn hurricane sandy hurricane sandy instadaily scary \n", "\n", "\n", "#hurricane #sandy #hurricanesandy #hurricaneseason #weathet #earth #planets #storm http://t.co/24Wdduca\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy hurricanesandy hurricaneseason weathet earth planets storm \n", + "hurricane sandy hurricane sandy hurricaneseason weathet earth planets storm \n", "\n", "\n", "#unreal #atlanticcity #newjersey #storm #hurricanesandy from #wboc. #boardwalk #flood http://t.co/KlOtA1ty\n", "\n", "--------------------------------------------------------\n", - "unreal atlanticcity newjersey storm hurricanesandy wboc boardwalk flood \n", + "unreal atlanticcity newjersey storm hurricane sandy wboc boardwalk flood \n", "\n", "\n", "Lower Manhattan Flooded... #HurricaneSandy http://t.co/4bTcYeVS\n", "\n", "--------------------------------------------------------\n", - "lower manhattan flooded hurricanesandy \n", + "lower manhattan flooded hurricane sandy \n", "\n", "\n", "Bye #seaside #nj #hurricanesandy http://t.co/Vyddsqqb\n", "\n", "--------------------------------------------------------\n", - "bye seaside nj hurricanesandy \n", + "bye seaside new jersey hurricane sandy \n", "\n", "\n", "The east village #haarp #hurricanesandy http://t.co/txDNqFih\n", "\n", "--------------------------------------------------------\n", - "east village haarp hurricanesandy \n", + "east village haarp hurricane sandy \n", "\n", "\n", "Trampoline trapped in the powerlines #hurricanesandy http://t.co/Pyw1Zg7O\n", "\n", "--------------------------------------------------------\n", - "trampoline trapped powerlines hurricanesandy \n", + "trampoline trapped powerlines hurricane sandy \n", "\n", "\n", "AFTER: casino pier Seaside Heights New Jersey #hurricanesandy. #hurricane. #sandy. #NewJersey. #storm. http://t.co/QtYNsYHi\n", "\n", "--------------------------------------------------------\n", - "casino pier seaside heights new jersey hurricanesandy hurricane sandy newjersey storm \n", + "casino pier seaside heights new jersey hurricane sandy hurricane sandy newjersey storm \n", "\n", "\n", "je_nnaleigh's photo http://t.co/1qkvJ0V4 #hurricanesandy #sandy\n", "\n", "--------------------------------------------------------\n", - "nnaleigh photo hurricanesandy sandy \n", + "jennaleigh photo hurricane sandy sandy \n", "\n", "\n", "Trampoline caught in power lines in Connecticut #hurricanesandy http://t.co/M8RtrKXc\n", "\n", "--------------------------------------------------------\n", - "trampoline caught power lines connecticut hurricanesandy \n", + "trampoline caught power lines connecticut hurricane sandy \n", "\n", "\n", "#lowermanhatten #hurricanesandy http://t.co/XE7v91aT\n", "\n", "--------------------------------------------------------\n", - "lowermanhatten hurricanesandy \n", + "lowermanhatten hurricane sandy \n", "\n", "\n", "#Casinopier out to sea #nj #hurricanesandy #seaside http://t.co/ULqDmOwf\n", "\n", "--------------------------------------------------------\n", - "casinopier nj hurricanesandy seaside \n", + "casinopier new jersey hurricane sandy seaside \n", "\n", "\n", "Damn, son. #hurricanesandy. #hurricane2012. #ripseaside. #byebyeguid0z! #newjersey. http://t.co/dg5kkKpQ\n", "\n", "--------------------------------------------------------\n", - "damn hurricanesandy hurricane2012 ripseaside byebyeguid0z newjersey \n", + "damn hurricane sandy hurricane2012 ripseaside byebyeguid0z newjersey \n", "\n", "\n", "Sandy! You can blow over my house, but don't take my trampoline #hurricanesandy #staysafe http://t.co/hKwyRMlk\n", "\n", "--------------------------------------------------------\n", - "sandy blow house take trampoline hurricanesandy staysafe \n", + "sandy blow house take trampoline hurricane sandy staysafe \n", "\n", "\n", "#LowerManhattan #nyc #hurricaneSandy http://t.co/MsSeQ8lD\n", "\n", "--------------------------------------------------------\n", - "lowermanhattan nyc hurricanesandy \n", + "lowermanhattan new york city hurricane sandy \n", "\n", "\n", "Sandy is the destroyer #hurricanesandy #NYC http://t.co/Bn2tUjlR\n", "\n", "--------------------------------------------------------\n", - "sandy destroyer hurricanesandy nyc \n", + "sandy destroyer hurricane sandy new york city \n", "\n", "\n", "Lower east side NYC...WOW. #hurricanesandy http://t.co/yxsAIW7X\n", "\n", "--------------------------------------------------------\n", - "lower east side nyc wow hurricanesandy \n", + "lower east side new york city hurricane sandy \n", "\n", "\n", "#HurricaneSandy #SeaSide #NJ #JerseyShore #Sandy http://t.co/FqaZLAud\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy seaside nj jerseyshore sandy \n", + "hurricane sandy seaside new jersey jerseyshore sandy \n", "\n", "\n", "So sad... #starjet #casinopier #hurricanesandy #newjersey #heights #jerseyshore #rollercoaster #flooded me # http://t.co/zJrvfusZ\n", "\n", "--------------------------------------------------------\n", - "sad starjet casinopier hurricanesandy newjersey heights jerseyshore rollercoaster flooded \n", + "sad starjet casinopier hurricane sandy newjersey heights jerseyshore rollercoaster flooded \n", "\n", "\n", "I had to share @djchaserfe photo. This is The jersey Shore, AKA Seaside Heights, NJ #hurricanesandy http://t.co/HumM8suB\n", "\n", "--------------------------------------------------------\n", - "share photo jersey shore aka seaside heights nj hurricanesandy \n", + "share photo jersey shore aka seaside heights new jersey hurricane sandy \n", "\n", "\n", "Taken from George Tekei Facebook.. Double rainbow, recovery begins #NYC #HurricaneSandy .. Stay safe everyon http://t.co/47V2DfNA\n", "\n", "--------------------------------------------------------\n", - "taken george tekei facebook double rainbow recovery begins nyc hurricanesandy stay safe everyon \n", + "taken george tekei facebook double rainbow recovery begins new york city hurricane sandy stay safe everyon \n", "\n", "\n", "Foto de the_e21_workshop http://t.co/vZjY7MVH #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto e21 workshop hurricanesandy \n", + "foto thee21workshop hurricane sandy \n", "\n", "\n", "The Morning After The Storm. #HurricaneSandy #NewYork #Manhattan #Rainbow http://t.co/1cDQn4QD\n", "\n", "--------------------------------------------------------\n", - "morning storm hurricanesandy newyork manhattan rainbow \n", + "morning storm hurricane sandy new york manhattan rainbow \n", "\n", "\n", "Wow. The Roller coaster at seaside is done :( #Jersey #JerseyShore #RollerCoaster #HurricaneSandy http://t.co/sSAzn1De\n", "\n", "--------------------------------------------------------\n", - "wow roller coaster seaside done jersey jerseyshore rollercoaster hurricanesandy \n", + "roller coaster seaside done jersey jerseyshore rollercoaster hurricane sandy \n", "\n", "\n", "Jersey Shore :( #hurricaneSandy #JerseyShore #NJ #Jersey #PenguinsProductions http://t.co/ua8miekM\n", "\n", "--------------------------------------------------------\n", - "jersey shore hurricanesandy jerseyshore nj jersey penguinsproductions \n", + "jersey shore hurricane sandy jerseyshore new jersey jersey penguinsproductions \n", "\n", "\n", "#HurricaneSandy will me you #JumpJump flying trampoline in Ma #OffTheWire http://t.co/7pTwI8VQ\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy jumpjump flying trampoline offthewire \n", + "hurricane sandy jumpjump flying trampoline offthewire \n", "\n", "\n", "A car right now in the LES Manhattan #hurricanesandy http://t.co/NUqv7dsq\n", "\n", "--------------------------------------------------------\n", - "car right manhattan hurricanesandy \n", + "car right manhattan hurricane sandy \n", "\n", "\n", "Brooklyn #flooding #hurricanesandy !! Prayers for my family and friends in the northeast http://t.co/PamXZyDX\n", "\n", "--------------------------------------------------------\n", - "brooklyn flooding hurricanesandy prayers family friends northeast \n", + "brooklyn flooding hurricane sandy prayers family friends northeast \n", "\n", "\n", "good luck east village #sandy #hurricanesandy #eastvillage http://t.co/xJnShW26\n", "\n", "--------------------------------------------------------\n", - "good luck east village sandy hurricanesandy eastvillage \n", + "good luck east village sandy hurricane sandy eastvillage \n", "\n", "\n", "Trampoline on wires from sandy #omg #flood #fuckthisshit #hightide #hurricanesandy #sandy #storm #shitjus http://t.co/t0MPCalu\n", "\n", "--------------------------------------------------------\n", - "trampoline wires sandy omg flood fuckthisshit hightide hurricanesandy sandy storm shitjus \n", + "trampoline wires sandy flood fuckthisshit hightide hurricane sandy sandy storm shitjus \n", "\n", "\n", "Baby don't worry about a thing. Cause every little thing's gonna be alright! #hurricanesandy #nyc #longislan http://t.co/53xsrPim\n", "\n", "--------------------------------------------------------\n", - "baby worry thing cause every little thing gonna alright hurricanesandy nyc longislan \n", + "baby worry thing cause every little thing gonna alright hurricane sandy new york city longislan \n", "\n", "\n", "Cabs #yellow #huracan #hurricanesandy #cab #taxi #newyork #ny #newjersey #jersey #eeuu #sandy #water #manhat http://t.co/zrxLESvH\n", "\n", "--------------------------------------------------------\n", - "cabs yellow huracan hurricanesandy cab taxi newyork ny newjersey jersey eeuu sandy water manhat \n", + "cabs yellow huracan hurricane sandy cab taxi new york new york newjersey jersey eeuu sandy water manhat \n", "\n", "\n", "Guess im not going this summer...No more jersey shore... #jerseyshore #hurricanesandy #hurricanemadness #dam http://t.co/QGwfFvnm\n", "\n", "--------------------------------------------------------\n", - "guess im going summer jersey shore jerseyshore hurricanesandy hurricanemadness dam \n", + "guess going summer jersey shore jerseyshore hurricane sandy hurricanemadness dam \n", "\n", "\n", "#lol #hurricane #sandy #hurricanesandy #wires #trampoline #trampolineunwires #flying #flyaway #stu http://t.co/5IhMI2XB\n", "\n", "--------------------------------------------------------\n", - "lol hurricane sandy hurricanesandy wires trampoline trampolineunwires flying flyaway stu \n", - "\n", - "\n", - "#hurricanesandy #nasa http://t.co/BmbzBRgb\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nasa \n", + "hurricane sandy hurricane sandy wires trampoline trampolineunwires flying flyaway stu \n", "\n", "\n", "#hurricanesandy manhattan 4got where tho talk bout a facelift smh but no1 got Hurt Thanx goodness http://t.co/e39cPrye\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy manhattan 4got tho talk bout facelift smh no1 got hurt thanx goodness \n", + "hurricane sandy manhattan tho talk bout facelift no1 got hurt thanx goodness \n", "\n", "\n", "Daaamnn #repost @TLR_FBS #hurricanesandy http://t.co/2ckd7BUa\n", "\n", "--------------------------------------------------------\n", - "daaamnn repost hurricanesandy \n", + "daaamnn repost hurricane sandy \n", "\n", "\n", "Taken from @Miss_Mickey of ave C and 8th st. #crazy #hurricanesandy #nyc #flood #nofilter #hurricane #alphab http://t.co/mvXirvy0\n", "\n", "--------------------------------------------------------\n", - "taken ave c 8th st crazy hurricanesandy nyc flood nofilter hurricane alphab \n", + "taken ave st crazy hurricane sandy new york city flood nofilter hurricane alphab \n", "\n", "\n", "and the boardwalk washes away... Atlantic City NJ #hurricanesandy http://t.co/LA6PUvAD\n", "\n", "--------------------------------------------------------\n", - "boardwalk washes away atlantic city nj hurricanesandy \n", + "boardwalk washes away atlantic city new jersey hurricane sandy \n", "\n", "\n", "It's getting REAL real over here in West Virginia! 😂 #hurricane #hurricanesandy #playingintherain #woah #tra http://t.co/kCvXYDN3\n", "\n", "--------------------------------------------------------\n", - "getting real real west virginia hurricane hurricanesandy playingintherain woah tra \n", + "getting real real west virginia hurricane hurricane sandy playingintherain woah tra \n", "\n", "\n", "#HurricaneSandy with her foot all up in #LES 's ass! Unreal! http://t.co/za5d6HWC\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy foot ass unreal \n", + "hurricane sandy foot ass unreal \n", "\n", "\n", "Firemen searched for people trapped in car #hurricanesandy http://t.co/RWaAncJA\n", "\n", "--------------------------------------------------------\n", - "firemen searched people trapped car hurricanesandy \n", + "firemen searched people trapped car hurricane sandy \n", "\n", "\n", "#seaside #hurricanesandy http://t.co/m1whYLBw\n", "\n", "--------------------------------------------------------\n", - "seaside hurricanesandy \n", + "seaside hurricane sandy \n", "\n", "\n", "Manhattan's East Village #nyc #hurricanesandy #home :( http://t.co/NuYUzLsl\n", "\n", "--------------------------------------------------------\n", - "manhattan east village nyc hurricanesandy home \n", + "manhattan east village new york city hurricane sandy home \n", "\n", "\n", "#flooding in Lower Manhattan!! Omg! #HurricaneSandy http://t.co/AgIu58bh\n", "\n", "--------------------------------------------------------\n", - "flooding lower manhattan omg hurricanesandy \n", + "flooding lower manhattan hurricane sandy \n", "\n", "\n", "#holy #shit #out in #Connecticut #hurricanesandy #eastcoast #trampoline on #powerlines ##everyone #be #safe http://t.co/BiVZA3GF\n", "\n", "--------------------------------------------------------\n", - "holy shit connecticut hurricanesandy eastcoast trampoline powerlines everyone safe \n", + "holy shit connecticut hurricane sandy eastcoast trampoline powerlines everyone safe \n", "\n", "\n", "CTHUUUUUUU 😂😂😂😂 #TrampolineFail #HurricaneSandy this is crazyyyyy lol http://t.co/Y9i0vgSv\n", "\n", "--------------------------------------------------------\n", - "cthuuuuuuu trampolinefail hurricanesandy crazyyyyy lol \n", + "cthuuuuuuu trampolinefail hurricane sandy crazyyyyy \n", "\n", "\n", "The images from #HurricaneSandy are blowing my mind Totally insane. Stay safe. Image via @BuzzFeed jesseandgreg's photo http://t.co/Jboqz9Ta\n", "\n", "--------------------------------------------------------\n", - "images hurricanesandy blowing mind totally insane stay safe image jesseandgreg photo \n", + "images hurricane sandy blowing mind totally insane stay safe image jesseandgreg photo \n", "\n", "\n", "Atlantic City! Completely flooded #HurricaneSandy http://t.co/U7fk1NyM\n", "\n", "--------------------------------------------------------\n", - "atlantic city completely flooded hurricanesandy \n", + "atlantic city completely flooded hurricane sandy \n", "\n", "\n", "I grew up going to #Seaside damn... #hurricanesandy http://t.co/yABSCg3k\n", "\n", "--------------------------------------------------------\n", - "grew going seaside damn hurricanesandy \n", + "grew going seaside damn hurricane sandy \n", "\n", "\n", "cabs are here!! #newjersey #hurricanesandy http://t.co/xCmkzSnF #fb\n", "\n", "--------------------------------------------------------\n", - "cabs newjersey hurricanesandy fb \n", + "cabs newjersey hurricane sandy fb \n", "\n", "\n", "What's left of the jersey shore. #hurricanesandy #hurricane #jerseyshore http://t.co/87TBe8pX\n", "\n", "--------------------------------------------------------\n", - "left jersey shore hurricanesandy hurricane jerseyshore \n", + "left jersey shore hurricane sandy hurricane jerseyshore \n", "\n", "\n", ".@CarreonFrank's pix North end of #AtlanticCity #hurricanesandy #noreastersandypants #sandy #Flood #devastat http://t.co/ySF1dgLH\n", "\n", "--------------------------------------------------------\n", - "pix north end atlanticcity hurricanesandy noreastersandypants sandy flood devastat \n", + "pix north end atlanticcity hurricane sandy noreastersandypants sandy flood devastat \n", "\n", "\n", "Instagramの「 #HurricaneSandy 」で、俄かに信じられない光景(写真)が…。本当にひどいのかぁ? triple_ekohn14さんの写真 http://t.co/L3gaSS2n frogscottさんの写真 http://t.co/YocAv3vr\n", "\n", "--------------------------------------------------------\n", - "instagramの hurricanesandy で 俄かに信じられない光景 写真 が 本当にひどいのかぁ triple ekohn14さんの写真 frogscottさんの写真 \n", + "instagramの hurricane sandy で 俄かに信じられない光景 写真 が 本当にひどいのかぁ tripleekn14さんの写真 frogscottさんの写真 \n", "\n", "\n", "Bay street thats so scary #HurricaneSandy http://t.co/smo8Xbcs\n", "\n", "--------------------------------------------------------\n", - "bay street thats scary hurricanesandy \n", + "bay street thats scary hurricane sandy \n", "\n", "\n", "This melted my heart! #hurricanesandy #prayingforeveryone #sosweet http://t.co/8yjWT06F\n", "\n", "--------------------------------------------------------\n", - "melted heart hurricanesandy prayingforeveryone sosweet \n", + "melted heart hurricane sandy prayingforeveryone sosweet \n", "\n", "\n", "Wow New York is in deep #HurricaneSandy http://t.co/c1zWW7Nc\n", "\n", "--------------------------------------------------------\n", - "wow new york deep hurricanesandy \n", + "new york deep hurricane sandy \n", "\n", "\n", "http://t.co/lHWUV8Ct #HurricaneSandy #DoubleRainbow #WhatDoesItMean\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy doublerainbow whatdoesitmean \n", + "hurricane sandy doublerainbow whatdoesitmean \n", "\n", "\n", "Who wants to go jump on the tramp? #hurricanesandy http://t.co/uY4iUIZV\n", "\n", "--------------------------------------------------------\n", - "wants go jump tramp hurricanesandy \n", + "wants go jump tramp hurricane sandy \n", "\n", "\n", "Atlantic city boardwalk is gone :( http://t.co/MuGLpZ4Y #hurricanesandy #frankenstorm\n", "\n", "--------------------------------------------------------\n", - "atlantic city boardwalk gone hurricanesandy frankenstorm \n", + "atlantic city boardwalk gone hurricane sandy frankenstorm \n", "\n", "\n", "May god be with you New Yorkers http://t.co/eqKIPxTO\\n#newyork #HurricaneSandy #Sandy\n", "\n", "--------------------------------------------------------\n", - "may god new yorkers newyork hurricanesandy sandy \n", + "may god new yorkers new york hurricane sandy sandy \n", "\n", "\n", "LES during the storm, pic that's going around. Insane. #hurricane #hurricanesandy #sandy #frankenstorm http://t.co/XOQDcMCH\n", "\n", "--------------------------------------------------------\n", - "storm pic going around insane hurricane hurricanesandy sandy frankenstorm \n", + "storm pic going around insane hurricane hurricane sandy sandy frankenstorm \n", "\n", "\n", "WTC construction site, NY #hurricanesandy http://t.co/DgLbJZ3d\n", "\n", "--------------------------------------------------------\n", - "wtc construction site ny hurricanesandy \n", + "wtc construction site new york hurricane sandy \n", "\n", "\n", "What hurricane Sandra done #ohshit #onthenews #sandy #sandyhurricane #hurricanesandy #legit http://t.co/W7b6hjp6\n", "\n", "--------------------------------------------------------\n", - "hurricane sandra done ohshit onthenews sandy sandyhurricane hurricanesandy legit \n", + "hurricane sandra done shit onthenews sandy sandyhurricane hurricane sandy legit \n", "\n", "\n", "#hurricanesandy #jerseyshore http://t.co/29aJUVJz\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy jerseyshore \n", + "hurricane sandy jerseyshore \n", "\n", "\n", "Classy damage #hurricanesandy #hurricane #hurricanenyc #blackout #blackoutnyc #scarry #apocalypse #igdaily # http://t.co/joO0igDW\n", "\n", "--------------------------------------------------------\n", - "classy damage hurricanesandy hurricane hurricanenyc blackout blackoutnyc scarry apocalypse igdaily \n", + "classy damage hurricane sandy hurricane hurricanenyc blackout blackoutnyc scarry apocalypse igdaily \n", "\n", "\n", "Eerie photo #hurricanesandy http://t.co/HTUqZj0q\n", "\n", "--------------------------------------------------------\n", - "eerie photo hurricanesandy \n", + "eerie photo hurricane sandy \n", "\n", "\n", "Free trampoline anyone... #hurricanesandy #usa #trampoline #ohcrap http://t.co/KLI2xXGI\n", "\n", "--------------------------------------------------------\n", - "free trampoline anyone hurricanesandy usa trampoline ohcrap \n", + "free trampoline anyone hurricane sandy usa trampoline crap \n", "\n", "\n", "Get em sandy! #hurricanesandy #hurricane #sandy http://t.co/QI8BByXw\n", "\n", "--------------------------------------------------------\n", - "get em sandy hurricanesandy hurricane sandy \n", + "get sandy hurricane sandy hurricane sandy \n", "\n", "\n", "Shits Real!!! #HurricaneSandy http://t.co/WyKXo8JS\n", "\n", "--------------------------------------------------------\n", - "shits real hurricanesandy \n", + "shits real hurricane sandy \n", "\n", "\n", "Prayers for my Yankee friends and Fam! #hurricanesandy #NJ #NY #VA #prayers http://t.co/POXAp1is\n", "\n", "--------------------------------------------------------\n", - "prayers yankee friends fam hurricanesandy nj ny va prayers \n", + "prayers yankee friends fam hurricane sandy new jersey new york va prayers \n", "\n", "\n", "Don't believe me here's your you go. 14st and Ave C. #hurricanesandy #nyc http://t.co/vFATdavm\n", "\n", "--------------------------------------------------------\n", - "believe go 14st ave c hurricanesandy nyc \n", + "believe go 4st ave hurricane sandy new york city \n", "\n", "\n", "View from red hook, bk earlier today. #hurricanesandy #sandy http://t.co/QTCmEJlZ\n", "\n", "--------------------------------------------------------\n", - "view red hook bk earlier today hurricanesandy sandy \n", + "view red hook bk earlier today hurricane sandy sandy \n", "\n", "\n", "Now thas cray cray! #hurricanesandy #weather #craycray #hurricanes #trampoline #sky #house #trees #clouds #b http://t.co/rxuhil28\n", "\n", "--------------------------------------------------------\n", - "thas cray cray hurricanesandy weather craycray hurricanes trampoline sky house trees clouds b \n", + "thas cray cray hurricane sandy weather craycray hurricanes trampoline sky house trees clouds b \n", "\n", "\n", "Downtown, Manhattan #Manhattan #hurricanesandy #iphonesia #iphoneonly #iphonegraphy #instagood #instamood #H http://t.co/5lrksb9U\n", "\n", "--------------------------------------------------------\n", - "downtown manhattan manhattan hurricanesandy iphonesia iphoneonly iphonegraphy instagood instamood h \n", + "downtown manhattan manhattan hurricane sandy iphonesia iphoneonly iphonegraphy instagood h \n", "\n", "\n", "See you later taxi cabs #nyc #hurricanesandy http://t.co/wiYypKUF\n", "\n", "--------------------------------------------------------\n", - "see later taxi cabs nyc hurricanesandy \n", + "see later taxi cabs new york city hurricane sandy \n", "\n", "\n", "We are Keeping those affected by #HurricaneSandy in our prayers http://t.co/gLh7tkbE\n", "\n", "--------------------------------------------------------\n", - "keeping affected hurricanesandy prayers \n", + "keeping affected hurricane sandy prayers \n", "\n", "\n", "After a hurricane, comes a rainbow* maybe some light will shine on NYC #hurricane #sandy #hurricanesandy #r http://t.co/by4dVhO8\n", "\n", "--------------------------------------------------------\n", - "hurricane comes rainbow maybe light shine nyc hurricane sandy hurricanesandy r \n", + "hurricane comes rainbow maybe light shine new york city hurricane sandy hurricane sandy \n", "\n", "\n", "Present day New York 😨 Prayers up 🙏 \"But our God is a merciful God\" #HurricaneSandy #DonateToRedCross http://t.co/PCDz68iH\n", "\n", "--------------------------------------------------------\n", - "present day new york prayers god merciful god hurricanesandy donatetoredcross \n", + "present day new york prayers god merciful god hurricane sandy donatetoredcross \n", "\n", "\n", "#Seaside 😢 #hurricanesandy #Sandy #JerseyShore #NJ http://t.co/EdyyXO28\n", "\n", "--------------------------------------------------------\n", - "seaside hurricanesandy sandy jerseyshore nj \n", + "seaside hurricane sandy sandy jerseyshore new jersey \n", "\n", "\n", "Hunkered down. Waiting on #hurricanesandy. Hoping we all stay safe! http://t.co/4HvTzwuD\n", "\n", "--------------------------------------------------------\n", - "hunkered waiting hurricanesandy hoping stay safe \n", + "hunkered waiting hurricane sandy hoping stay safe \n", "\n", "\n", "#NYC WOW Im Speechless !! #HurricaneSandy #Sandy #Hurricane #Flooding #NewYorkCity #Danger # @ New York City http://t.co/7325Jt9F\n", "\n", "--------------------------------------------------------\n", - "nyc wow im speechless hurricanesandy sandy hurricane flooding newyorkcity danger new york city \n", + "new york city speechless hurricane sandy sandy hurricane flooding new yorkcity danger new york city \n", "\n", "\n", "I mean wow.. #seaside #hurricanesandy #new jersey #jerseystrong http://t.co/2cASpjMC\n", "\n", "--------------------------------------------------------\n", - "mean wow seaside hurricanesandy new jersey jerseystrong \n", + "mean seaside hurricane sandy new jersey jerseystrong \n", "\n", "\n", "I'd be scared it'd fall...“@Urban_Foodie14: Whoaaaaaaaaaaaa! 😱😱😱 #hurricanesandy http://t.co/CHplgmWo”\n", @@ -43048,139 +38532,133 @@ "Need NYC Yellow Cab? Anyone? ;) #NYC #HurricaneSandy #Instagrammers http://t.co/kclt08gi\n", "\n", "--------------------------------------------------------\n", - "need nyc yellow cab anyone nyc hurricanesandy instagrammers \n", + "need new york city yellow cab anyone new york city hurricane sandy instagrammers \n", "\n", "\n", "Building collapse on 92nd & 8th avenue. #hurricanesandy, #flood, #newyork, #92ndstreet http://t.co/5Plv6jBm\n", "\n", "--------------------------------------------------------\n", - "building collapse 92nd 8th avenue hurricanesandy flood newyork 92ndstreet \n", + "building collapse on2nd avenue hurricane sandy flood new york 2ndstreet \n", "\n", "\n", "Lol nice going #sandy #trampoline #hurricanesandy http://t.co/tqPzm5Yy\n", "\n", "--------------------------------------------------------\n", - "lol nice going sandy trampoline hurricanesandy \n", + "nice going sandy trampoline hurricane sandy \n", "\n", "\n", "#shitcrazy #hurricanesandy http://t.co/IoppI70B\n", "\n", "--------------------------------------------------------\n", - "shitcrazy hurricanesandy \n", + "shitcrazy hurricane sandy \n", "\n", "\n", "#Pray for #Protection 😱🙏#HurricaneSandy http://t.co/J9V9UoMF\n", "\n", "--------------------------------------------------------\n", - "pray protection hurricanesandy \n", + "pray protection hurricane sandy \n", "\n", "\n", "Double Rainbow this AM over NYC! Sandy# http://t.co/lk7z14uR\n", "\n", "--------------------------------------------------------\n", - "double rainbow nyc sandy \n", + "double rainbow new york city sandy \n", "\n", "\n", "Foto di time http://t.co/nMRbC4Yt #newtork #hurricane\n", "\n", "--------------------------------------------------------\n", - "foto di time newtork hurricane \n", + "foto time newtork hurricane \n", "\n", "\n", "#FDNY at it's finest! #nyc #hurricane #hurricanesandy #destruction #tudorcity #nyc @ Tudor City Park South http://t.co/JEXuhMxc\n", "\n", "--------------------------------------------------------\n", - "fdny finest nyc hurricane hurricanesandy destruction tudorcity nyc tudor city park south \n", + "fdny finest new york city hurricane hurricane sandy destruction tudorcity new york city tudor city park south \n", "\n", "\n", "nikkilarmer's photo #hurricanesandy http://t.co/MjOvOhaJ\n", "\n", "--------------------------------------------------------\n", - "nikkilarmer photo hurricanesandy \n", - "\n", - "\n", - "#HurricaneSandy. #NASA. http://t.co/AKP3MrBF\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nasa \n", + "nikkilarmer photo hurricane sandy \n", "\n", "\n", "Shit. This is right output my building #sandy #hurricane #hurricanesandy #flooding #fuck http://t.co/UcDFeZjt\n", "\n", "--------------------------------------------------------\n", - "shit right output building sandy hurricane hurricanesandy flooding fuck \n", + "shit right output building sandy hurricane hurricane sandy flooding fuck \n", "\n", "\n", "After the storm! #NYC #Sandy #HurricaneSandy We S2 NY http://t.co/J26ebwyl\n", "\n", "--------------------------------------------------------\n", - "storm nyc sandy hurricanesandy s2 ny \n", + "storm new york city sandy hurricane sandy s2 new york \n", "\n", "\n", "This is so sad. Just thinking I was just here last summer #JerseyShore #SeasideHeights #NJ #HurricaneSandy http://t.co/YFSTvSwn\n", "\n", "--------------------------------------------------------\n", - "sad thinking last summer jerseyshore seasideheights nj hurricanesandy \n", + "sad thinking last summer jerseyshore seasideheights new jersey hurricane sandy \n", "\n", "\n", "DAAAMMMN!!!!!😱😱😱😱💦💦💨💨💨#hurricanesandy is not playing. http://t.co/TqU6KN7f\n", "\n", "--------------------------------------------------------\n", - "daaammmn hurricanesandy playing \n", + "daaammmn hurricane sandy playing \n", "\n", "\n", "Shits getting real on Long Island! #hurricanesandy http://t.co/A3yBywBR\n", "\n", "--------------------------------------------------------\n", - "shits getting real long island hurricanesandy \n", + "shits getting real long island hurricane sandy \n", "\n", "\n", "#Wow #hurricanesandy #newyork #flooding http://t.co/57dZhcvk\n", "\n", "--------------------------------------------------------\n", - "wow hurricanesandy newyork flooding \n", + "hurricane sandy new york flooding \n", "\n", "\n", "Meanwhile....in Red Hook #Brooklyn #HurricaneSandy #FloodedLikeAMuhhFucka http://t.co/4gNtOFLf\n", "\n", "--------------------------------------------------------\n", - "meanwhile red hook brooklyn hurricanesandy floodedlikeamuhhfucka \n", + "meanwhile red hook brooklyn hurricane sandy floodedlikeamuhhfucka \n", "\n", "\n", "Atlantic City boardwalk. #insane #boardwalk #atlanticcity #nj #hurricanesandy #destroyed #aftermath http://t.co/ErZpFiME\n", "\n", "--------------------------------------------------------\n", - "atlantic city boardwalk insane boardwalk atlanticcity nj hurricanesandy destroyed aftermath \n", + "atlantic city boardwalk insane boardwalk atlanticcity new jersey hurricane sandy destroyed aftermath \n", "\n", "\n", "Manhattan #HurricaneSandy http://t.co/DDflu1Kw\n", "\n", "--------------------------------------------------------\n", - "manhattan hurricanesandy \n", + "manhattan hurricane sandy \n", "\n", "\n", "a higher view of #AC #NJ #hurricane #sandy #hurricanesandy #flooded #craziness #nobueno http://t.co/EXMzQHQR\n", "\n", "--------------------------------------------------------\n", - "higher view ac nj hurricane sandy hurricanesandy flooded craziness nobueno \n", + "higher view ac new jersey hurricane sandy hurricane sandy flooded craziness nobueno \n", "\n", "\n", "O ish @eliwasserman 😳😳😳 #hurricanesandy showed her ass. http://t.co/GU47Fdx8\n", "\n", "--------------------------------------------------------\n", - "ish hurricanesandy showed ass \n", + "ish hurricane sandy showed ass \n", "\n", "\n", "Yellow Cabs Afloat. #hurricanesandy, #yellowcabs, #flood, #nyc, #taxi http://t.co/kQi7QOoi\n", "\n", "--------------------------------------------------------\n", - "yellow cabs afloat hurricanesandy yellowcabs flood nyc taxi \n", + "yellow cabs afloat hurricane sandy yellowcabs flood new york city taxi \n", "\n", "\n", "we under water!!!! Ave c & East 8th #hurricanesandy #nyc http://t.co/VV9M0jix\n", "\n", "--------------------------------------------------------\n", - "water ave c east 8th hurricanesandy nyc \n", + "water ave east hurricane sandy new york city \n", "\n", "\n", "The East Village got swamped last nite. http://t.co/RuaCfwOu\\n#Sandy\n", @@ -43192,655 +38670,607 @@ "#HurricaneSandy She's not a Joke with the Water 💦💧All this Cabs Wiped Out 👎 http://t.co/kZxlR9aj\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy joke water cabs wiped \n", + "hurricane sandy joke water cabs wiped \n", "\n", "\n", "#Repost YOU \"GOT\" TO BE KIDDING ME!? #HurricaneSandy in Manhattan!!!???? WTF!!! I Can't! 😱😳😳😳😳😱 http://t.co/78cmnxAn\n", "\n", "--------------------------------------------------------\n", - "repost got kidding hurricanesandy manhattan wtf \n", + "repost got kidding hurricane sandy manhattan \n", "\n", "\n", "#BREAKINGnews! #HurricaneSandy: It's easy to get a #taxi in #NewYork now but not so easy to go anywhere http://t.co/8p6GVsxx\n", "\n", "--------------------------------------------------------\n", - "breakingnews hurricanesandy easy get taxi newyork easy go anywhere \n", - "\n", - "\n", - "This Is In Manhattan #HurricaneSandy http://t.co/FqPJwvkp\n", - "\n", - "--------------------------------------------------------\n", - "manhattan hurricanesandy \n", + "breakingnews hurricane sandy easy get taxi new york easy go anywhere \n", "\n", "\n", "Foto de yang_ku http://t.co/wmUsuZsQ #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto yang ku hurricanesandy \n", + "foto yangku hurricane sandy \n", "\n", "\n", "Okay. She gotta go!!!!! #hurricane #hurricanesandy #crazy #storm #badstorm #trampoline #wires #dangerous http://t.co/84rghsWK\n", "\n", "--------------------------------------------------------\n", - "okay gotta go hurricane hurricanesandy crazy storm badstorm trampoline wires dangerous \n", + "okay gotta go hurricane hurricane sandy crazy storm badstorm trampoline wires dangerous \n", "\n", "\n", "seaside is officially under water smdh #hurricanesandy 😔 http://t.co/uXd8hxrU\n", "\n", "--------------------------------------------------------\n", - "seaside officially water smdh hurricanesandy \n", + "seaside officially water smdh hurricane sandy \n", "\n", "\n", "Found this on the web #hurricanesandy http://t.co/goBnQenQ\n", "\n", "--------------------------------------------------------\n", - "found web hurricanesandy \n", - "\n", - "\n", - "@Occuweather: Wow..it will be hard to even get a cab in the city http://t.co/IsY8MpF4 #HurricaneSandy\n", - "\n", - "--------------------------------------------------------\n", - "wow hard even get cab city hurricanesandy \n", + "found web hurricane sandy \n", "\n", "\n", "Starting to rise. Get the fuck out! #HurricaneSandy #NewYork #Brooklyn http://t.co/f12UPQAc\n", "\n", "--------------------------------------------------------\n", - "starting rise get fuck hurricanesandy newyork brooklyn \n", + "starting rise get fuck hurricane sandy new york brooklyn \n", "\n", "\n", "#repost of #hurricanesandy wrath from the news http://t.co/U46vzSqR\n", "\n", "--------------------------------------------------------\n", - "repost hurricanesandy wrath news \n", + "repost hurricane sandy wrath news \n", "\n", "\n", "But Forreal it's gettin serious in #Manhatten #prayfornewyork #hurricaneSandy http://t.co/xpW05jUf\n", "\n", "--------------------------------------------------------\n", - "forreal gettin serious manhatten prayfornewyork hurricanesandy \n", + "forreal gettin serious manhatten prayfornew york hurricane sandy \n", "\n", "\n", "Dang Manhattan smh My Prayers Are With My Peeps Out There. #Hurricane #HurricaneSandy #Storm #Prayers #CNN W http://t.co/ZJmfc5Hl\n", "\n", "--------------------------------------------------------\n", - "dang manhattan smh prayers peeps hurricane hurricanesandy storm prayers cnn w \n", + "dang manhattan prayers peeps hurricane hurricane sandy storm prayers cnn w \n", "\n", "\n", "#hurricanesandy @ Kroger http://t.co/qi1ChpjE\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy kroger \n", + "hurricane sandy kroger \n", "\n", "\n", "AC under water: #atlanticcity #hurricane #sandy #flood #flooding #hurricanesandy #casinos #boardwalk http://t.co/ctI1WAZh\n", "\n", "--------------------------------------------------------\n", - "ac water atlanticcity hurricane sandy flood flooding hurricanesandy casinos boardwalk \n", + "ac water atlanticcity hurricane sandy flood flooding hurricane sandy casinos boardwalk \n", "\n", "\n", "#seasideboardwalk so sad.... #seaside#hurricane#hurricanesandy#sad#depressing http://t.co/GJzXfd5D\n", "\n", "--------------------------------------------------------\n", - "seasideboardwalk sad seaside hurricane hurricanesandy sad depressing \n", + "seasideboardwalk sad seasidehurricanehurricane sandysaddepressing \n", "\n", "\n", "catastrophic devastation... #hurricanesandy http://t.co/uThvmHoJ\n", "\n", "--------------------------------------------------------\n", - "catastrophic devastation hurricanesandy \n", + "catastrophic devastation hurricane sandy \n", "\n", "\n", "Seaside heights. That's the pier the jersey shore cast roamed creeping on girls. Damn #hurricanesandy http://t.co/PPTBmdp2\n", "\n", "--------------------------------------------------------\n", - "seaside heights pier jersey shore cast roamed creeping girls damn hurricanesandy \n", + "seaside heights pier jersey shore cast roamed creeping girls damn hurricane sandy \n", "\n", "\n", "Thinking of you NYC! #hurricanesandy http://t.co/cgq8tOQd\n", "\n", "--------------------------------------------------------\n", - "thinking nyc hurricanesandy \n", + "thinking new york city hurricane sandy \n", "\n", "\n", "Silly Trampoline what are you doing ? Stop it. Get down from there. #hurricane #ohlord http://t.co/DX5Jd4Fi\n", "\n", "--------------------------------------------------------\n", - "silly trampoline stop get hurricane ohlord \n", + "silly trampoline stop get hurricane lord \n", "\n", "\n", "World Trade Center construction site in New York City. #hurricanesandy #WTC #NYC #Sandy http://t.co/xF4GopwQ\n", "\n", "--------------------------------------------------------\n", - "world trade center construction site new york city hurricanesandy wtc nyc sandy \n", + "world trade center construction site new york city hurricane sandy wtc new york city sandy \n", "\n", "\n", "#LowerEastsideManhattan #NYC #HurricaneSandy http://t.co/cLyur0jU\n", "\n", "--------------------------------------------------------\n", - "lowereastsidemanhattan nyc hurricanesandy \n", + "lowereastsidemanhattan new york city hurricane sandy \n", "\n", "\n", "The pier at seaside heights collapsed .. Roller coaster is in the waterr #hurricanesandy http://t.co/OziiD5kZ\n", "\n", "--------------------------------------------------------\n", - "pier seaside heights collapsed roller coaster waterr hurricanesandy \n", + "pier seaside heights collapsed roller coaster waterr hurricane sandy \n", "\n", "\n", "#HurricaneSandy #Powerlines #House #Grass #Street #Mailbox #Trampoline http://t.co/1ifsdKLP\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy powerlines house grass street mailbox trampoline \n", + "hurricane sandy powerlines house grass street mailbox trampoline \n", "\n", "\n", "Trampoline #hurricanesandy #sandy http://t.co/Jt4ahAt9\n", "\n", "--------------------------------------------------------\n", - "trampoline hurricanesandy sandy \n", + "trampoline hurricane sandy sandy \n", "\n", "\n", "#aerial view of #Earth. #hurricanesandy #birdseye #clouds http://t.co/AjbR2At8\n", "\n", "--------------------------------------------------------\n", - "aerial view earth hurricanesandy birdseye clouds \n", + "aerial view earth hurricane sandy birdseye clouds \n", "\n", "\n", "So sad #hurricaneSandy http://t.co/853uZrgl #nyflooding #carousel\n", "\n", "--------------------------------------------------------\n", - "sad hurricanesandy nyflooding carousel \n", + "sad hurricane sandy nyflooding carousel \n", "\n", "\n", "at a complete loss of words right now #hurricanesandy #seasideheights #boardwalk http://t.co/pXgI4nkW\n", "\n", "--------------------------------------------------------\n", - "complete loss words right hurricanesandy seasideheights boardwalk \n", + "complete loss words right hurricane sandy seasideheights boardwalk \n", "\n", "\n", "This is how Atlantic City looks now. #hurricanesandy #sandy #ac #atlanticcity #picoftheday #pictureoftheday http://t.co/Nr0XrCJl\n", "\n", "--------------------------------------------------------\n", - "atlantic city looks hurricanesandy sandy ac atlanticcity picoftheday pictureoftheday \n", + "atlantic city looks hurricane sandy sandy ac atlanticcity picoftheday pictureoftheday \n", "\n", "\n", "#Manhatten #NYC #hurricane holy shit http://t.co/A7srezAg\n", "\n", "--------------------------------------------------------\n", - "manhatten nyc hurricane holy shit \n", + "manhatten new york city hurricane holy shit \n", "\n", "\n", "NYC underwater !!!!!!\\n#hurricanesandy http://t.co/pbdG2m7E\n", "\n", "--------------------------------------------------------\n", - "nyc underwater hurricanesandy \n", + "new york city underwater hurricane sandy \n", "\n", "\n", "#SeasideHeights #NewJersey #HurricaneSandy No more rollercoaster Destroyed Pier , Now in the #Atlantic Ocean !!! http://t.co/pUW4zCfR\n", "\n", "--------------------------------------------------------\n", - "seasideheights newjersey hurricanesandy rollercoaster destroyed pier atlantic ocean \n", - "\n", - "\n", - "#hurricanesandy #hurricane #sandy http://t.co/96VcTitS\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy hurricane sandy \n", + "seasideheights newjersey hurricane sandy rollercoaster destroyed pier atlantic ocean \n", "\n", "\n", "Just got sent this Smh some house on 92nd (i think) in NYC #hurricanesandy ain't playinnnn http://t.co/QdZw8XOv\n", "\n", "--------------------------------------------------------\n", - "got sent smh house 92nd think nyc hurricanesandy playinnnn \n", + "got sent house on2nd think new york city hurricane sandy playinnnn \n", "\n", "\n", "Bye-Bye Jersey Shore #Hurricane #HurricaneSandy #Sad #MemoriesDestroyed http://t.co/CU1zBPc9\n", "\n", "--------------------------------------------------------\n", - "bye bye jersey shore hurricane hurricanesandy sad memoriesdestroyed \n", + "bye bye jersey shore hurricane hurricane sandy sad memoriesdestroyed \n", "\n", "\n", "East village awesomeness. #SandyIsASlut #hurricanesandy http://t.co/ChdlrfV4\n", "\n", "--------------------------------------------------------\n", - "east village awesomeness sandyisaslut hurricanesandy \n", + "east village awesomeness sandyisaslut hurricane sandy \n", "\n", "\n", "So how does shit like this happen? 😳 Crazy. #HurricaneSandy http://t.co/qek2QxAh\n", "\n", "--------------------------------------------------------\n", - "shit like happen crazy hurricanesandy \n", + "shit like happen crazy hurricane sandy \n", "\n", "\n", "#shit #sandy #hurricane #hurricanesandy http://t.co/HQk4JMDp\n", "\n", "--------------------------------------------------------\n", - "shit sandy hurricane hurricanesandy \n", + "shit sandy hurricane hurricane sandy \n", "\n", "\n", "#hurricanesandy manhattan 34st http://t.co/4kEgRkGS\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy manhattan 34st \n", + "hurricane sandy manhattan4st \n", "\n", "\n", "Please secure all potential flying objects!! #HurricaneSandy http://t.co/0lwwT3B7\n", "\n", "--------------------------------------------------------\n", - "please secure potential flying objects hurricanesandy \n", + "please secure potential flying objects hurricane sandy \n", "\n", "\n", "East Village, NYC #sandy #hurricane #woowoo #flood #hurricanesandy http://t.co/RQz2Akff\n", "\n", "--------------------------------------------------------\n", - "east village nyc sandy hurricane woowoo flood hurricanesandy \n", + "east village new york city sandy hurricane woowoo flood hurricane sandy \n", "\n", "\n", "Casino pier#sandy http://t.co/Kkf39iiw\n", "\n", "--------------------------------------------------------\n", - "casino pier sandy \n", + "casino piersandy \n", "\n", "\n", "RIP seaside and its amusement park 😫😰😵 #hurricanesandy http://t.co/mLS9v9VN\n", "\n", "--------------------------------------------------------\n", - "rip seaside amusement park hurricanesandy \n", + "rip seaside amusement park hurricane sandy \n", "\n", "\n", "#crazy#shit#sandy http://t.co/i0v1twBa\n", "\n", "--------------------------------------------------------\n", - "crazy shit sandy \n", + "crazyshitsandy \n", "\n", "\n", "Send chills through my body. World Trade Center construction area being taken over by flood waters! #hurricanesandy http://t.co/x8tKQqHT\n", "\n", "--------------------------------------------------------\n", - "send chills body world trade center construction area taken flood waters hurricanesandy \n", + "send chills body world trade center construction area taken flood waters hurricane sandy \n", "\n", "\n", "Hoping that #hurricanesandy takes it easy on my friends and family on the #eastcoast. We will be missing the http://t.co/XZbyslY6\n", "\n", "--------------------------------------------------------\n", - "hoping hurricanesandy takes easy friends family eastcoast missing \n", + "hoping hurricane sandy takes easy friends family eastcoast missing \n", "\n", "\n", "😱😳Wow. #NYC #HURRICANESANDY #taxis ..Smh. http://t.co/oBOHjAkT\n", "\n", "--------------------------------------------------------\n", - "wow nyc hurricanesandy taxis smh \n", + "new york city hurricane sandy taxis \n", "\n", "\n", "#repost #seasideheights #rip #jerseyshore #sad #hurricanesandy http://t.co/EE4khPGP\n", "\n", "--------------------------------------------------------\n", - "repost seasideheights rip jerseyshore sad hurricanesandy \n", + "repost seasideheights rip jerseyshore sad hurricane sandy \n", "\n", "\n", "Cleanest cabs on the East Coast! #sandy #hurricanesandy #nyc #newyorkcity #manhattan http://t.co/XpJAxP0V\n", "\n", "--------------------------------------------------------\n", - "cleanest cabs east coast sandy hurricanesandy nyc newyorkcity manhattan \n", + "cleanest cabs east coast sandy hurricane sandy new york city new yorkcity manhattan \n", "\n", "\n", "if this is seaside I don't even want to know what my beach house looks like 😭😰 #hurricanesandy http://t.co/9hqebaxj\n", "\n", "--------------------------------------------------------\n", - "seaside even know beach house looks like hurricanesandy \n", + "seaside even know beach house looks like hurricane sandy \n", "\n", "\n", "Someone just took my childhood and stabbed it ... RIP seaside ❤ #hurricanesandy http://t.co/n4UD7uu1\n", "\n", "--------------------------------------------------------\n", - "someone took childhood stabbed rip seaside hurricanesandy \n", + "someone took childhood stabbed rip seaside hurricane sandy \n", "\n", "\n", "oh my god .. the rollercoaster at casino pier 😦😩😭💔 #hurricanesandy #seasideheights #boardwalk http://t.co/JFI7qVm3\n", "\n", "--------------------------------------------------------\n", - "oh god rollercoaster casino pier hurricanesandy seasideheights boardwalk \n", - "\n", - "\n", - "Crazy #HurricaneSandy http://t.co/v4kgqz13\n", - "\n", - "--------------------------------------------------------\n", - "crazy hurricanesandy \n", + "god rollercoaster casino pier hurricane sandy seasideheights boardwalk \n", "\n", "\n", "Looks like a movie but its #hurricanesandy #sandy #hurricane #blackout #scarry #apocalypse #igdaily #beauti http://t.co/22bXmVAZ\n", "\n", "--------------------------------------------------------\n", - "looks like movie hurricanesandy sandy hurricane blackout scarry apocalypse igdaily beauti \n", + "looks like movie hurricane sandy sandy hurricane blackout scarry apocalypse igdaily beauti \n", "\n", "\n", "#HurricaneSandy #newyork #Sandy #Hurricane http://t.co/lOdKEUjh\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy newyork sandy hurricane \n", - "\n", - "\n", - "#nyc #hurricanesandy http://t.co/i1gZ09lO\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricanesandy \n", + "hurricane sandy new york sandy hurricane \n", "\n", "\n", "#praying4peopleaffected #hurricanesandy http://t.co/CPjoQkDd\n", "\n", "--------------------------------------------------------\n", - "praying4peopleaffected hurricanesandy \n", + "praying4peopleaffected hurricane sandy \n", "\n", "\n", "“@NewYorkPost: Lower Manhattan #HurricaneSandy http://t.co/KhAyU8YF via @kurtdietrich” Daar is 'n reenboog na elke storm. Hoop na ellende.\n", "\n", "--------------------------------------------------------\n", - "n reenboog elke storm hoop ellende \n", + "reenboog elke storm hoop ellende \n", "\n", "\n", "Welp.... Shit on our dicks.. #hurricanesandy http://t.co/L5QB4nR0\n", "\n", "--------------------------------------------------------\n", - "welp shit dicks hurricanesandy \n", - "\n", - "\n", - "http://t.co/JrsYn95l #nyc #hurricane\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricane \n", + "welp shit dicks hurricane sandy \n", "\n", "\n", "8:30 pm. Still waiting for the other shoe to drop... #nyc #sandy #hurricanesandy @ 65th And Park http://t.co/KHSrL41J\n", "\n", "--------------------------------------------------------\n", - "8 30 pm still waiting shoe drop nyc sandy hurricanesandy 65th park \n", + "0 pm still waiting shoe drop new york city sandy hurricane sandy 5th park \n", "\n", "\n", "street cleaning. sandy was fo real last night! #hurricanesandy #flood http://t.co/Bfnp2gRC\n", "\n", "--------------------------------------------------------\n", - "street cleaning sandy fo real last night hurricanesandy flood \n", + "street cleaning sandy fo real last night hurricane sandy flood \n", "\n", "\n", "#seasideboardwalk Wow 😮😮😮 #hurricaneSandy http://t.co/dmpnoipk\n", "\n", "--------------------------------------------------------\n", - "seasideboardwalk wow hurricanesandy \n", + "seasideboardwalk hurricane sandy \n", "\n", "\n", "Red Hook, Brooklyn NYC the day after #hurricanesandy #hurricane #hurricanenyc #blackout #blackoutnyc #scarr http://t.co/REtOFL8H\n", "\n", "--------------------------------------------------------\n", - "red hook brooklyn nyc day hurricanesandy hurricane hurricanenyc blackout blackoutnyc scarr \n", + "red hook brooklyn new york city day hurricane sandy hurricane hurricanenyc blackout blackoutnyc scarr \n", "\n", "\n", "#hurricanesandy Not my picture but... http://t.co/ZYT7VJn6\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy picture \n", + "hurricane sandy picture \n", "\n", "\n", "Wow!! PrayN 4 East Coast.. flashback 2 last yr! RT @NewYorkPost: Flood WTC Construction Site #hurricanesandy #nyc #wtc http://t.co/c4YIkCEn\n", "\n", "--------------------------------------------------------\n", - "wow prayn 4 east coast flashback 2 last yr \n", + "prayn east coast flashback last yr \n", "\n", "\n", "Sandy, where did you put the trampoline this time? #youbadbitch #hurricanesandy http://t.co/qgcNy0rz\n", "\n", "--------------------------------------------------------\n", - "sandy put trampoline time youbadbitch hurricanesandy \n", + "sandy put trampoline time youbadbitch hurricane sandy \n", "\n", "\n", "😳 wow! the jersey shore! #seaside #hurricanesandy http://t.co/cc8bjkCx\n", "\n", "--------------------------------------------------------\n", - "wow jersey shore seaside hurricanesandy \n", + "jersey shore seaside hurricane sandy \n", "\n", "\n", "#Nyc#taxi#Sandy#hurricane#hurricanesandy#newyork#instagramphotos#instagramania#instapopular#instanewyork#ins http://t.co/eJvH5dAl\n", "\n", "--------------------------------------------------------\n", - "nyc taxi sandy hurricane hurricanesandy newyork instagramphotos instagramania instapopular instanewyork ins \n", + "nyctaxisandyhurricanehurricane sandynew yorkinstagramphotosinstagramaniainstapopularinstanew yorkins \n", "\n", "\n", "#WorldTradeCentersite last night #hurricanesandy http://t.co/zxYQDxyY\n", "\n", "--------------------------------------------------------\n", - "worldtradecentersite last night hurricanesandy \n", + "worldtradecentersite last night hurricane sandy \n", "\n", "\n", "These pics are incredible. #HurricaneSandy -- 60minutes's photo http://t.co/knG72aAq\n", "\n", "--------------------------------------------------------\n", - "pics incredible hurricanesandy 60minutes photo \n", + "pics incredible hurricane sandy 0minutes photo \n", "\n", "\n", "I don't know where this is but it's crazy! #hurricanesandy http://t.co/lIRLHpyc\n", "\n", "--------------------------------------------------------\n", - "know crazy hurricanesandy \n", + "know crazy hurricane sandy \n", "\n", "\n", "There is a rainbow after every storm. We hope everyone is safe. #hurricanesandy http://t.co/VgXVkIad\n", "\n", "--------------------------------------------------------\n", - "rainbow every storm hope everyone safe hurricanesandy \n", + "rainbow every storm hope everyone safe hurricane sandy \n", "\n", "\n", "Mind=blown ... Hi #HurricaneSandy #EastCoast #scared http://t.co/6xfzOWGj\n", "\n", "--------------------------------------------------------\n", - "mind blown hi hurricanesandy eastcoast scared \n", + "mind blown hi hurricane sandy eastcoast scared \n", "\n", "\n", "Dumbo Flooded #brooklyncarousel #hurricanesandy http://t.co/JxZlk7tj\n", "\n", "--------------------------------------------------------\n", - "dumbo flooded brooklyncarousel hurricanesandy \n", + "dumbo flooded brooklyncarousel hurricane sandy \n", "\n", "\n", "#newyorkcity #hurricanesandy Follow me, ill follow back!!! #Android #htc #tagsforlikes #instagood #tweegram http://t.co/WYDjQkm8\n", "\n", "--------------------------------------------------------\n", - "newyorkcity hurricanesandy follow ill follow back android htc tagsforlikes instagood tweegram \n", + "new yorkcity hurricane sandy follow ill follow back android htc tagsforlikes instagood tweegram \n", "\n", "\n", "#WTF #hurricane #hurricanesandy #sandy #nyc #eastcoast #newyorkcity #newyork #flooding #prayersfortheeastcoa http://t.co/fyDc8y3c\n", "\n", "--------------------------------------------------------\n", - "wtf hurricane hurricanesandy sandy nyc eastcoast newyorkcity newyork flooding prayersfortheeastcoa \n", + "hurricane hurricane sandy sandy new york city eastcoast new yorkcity new york flooding prayersfortheeastcoa \n", "\n", "\n", "#SayaPrayer #HurricaneSandy http://t.co/dtbEAW91\n", "\n", "--------------------------------------------------------\n", - "sayaprayer hurricanesandy \n", + "sayaprayer hurricane sandy \n", "\n", "\n", "Thats insane #HurricaneSandy http://t.co/a2qGSzxi\n", "\n", "--------------------------------------------------------\n", - "thats insane hurricanesandy \n", + "thats insane hurricane sandy \n", "\n", "\n", "Thaaaat sucks #hurricanesandy http://t.co/OZLRDD5T\n", "\n", "--------------------------------------------------------\n", - "thaaaat sucks hurricanesandy \n", + "thaaaat sucks hurricane sandy \n", "\n", "\n", "Acts of #hurricaneSandy :) #weyyyyy http://t.co/HsYJomrG\n", "\n", "--------------------------------------------------------\n", - "acts hurricanesandy weyyyyy \n", + "acts hurricane sandy weyyyyy \n", "\n", "\n", "RIP to my childhood and summer vacations 💔💔💔 #sleazeside #seasideheights #hurricanesandy http://t.co/breHfHiC\n", "\n", "--------------------------------------------------------\n", - "rip childhood summer vacations sleazeside seasideheights hurricanesandy \n", - "\n", + "rip childhood summer vacations sleazeside seasideheights hurricane sandy \n", "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "#hurricanesandy #sandy #perfectstorm #superstorm #cnn #nyc #ny #اعصار_ساندي #usa #unitedstate #new @ My Home http://t.co/s97EchLH\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy sandy perfectstorm superstorm cnn nyc ny اعصار ساندي usa unitedstate new home \n", + "hurricane sandy sandy perfectstorm superstorm cnn new york city new york اعصارساندي usa unitedstate new home \n", "\n", "\n", "This is crazy ... #Seaside #NewJersey #HurricaneSandy http://t.co/28PjU208\n", "\n", "--------------------------------------------------------\n", - "crazy seaside newjersey hurricanesandy \n", + "crazy seaside newjersey hurricane sandy \n", "\n", "\n", "Shit just got real with this \"super storm\" #repost #HurricaneSandy http://t.co/GGONIwwK\n", "\n", "--------------------------------------------------------\n", - "shit got real super storm repost hurricanesandy \n", + "shit got real super storm repost hurricane sandy \n", "\n", "\n", "#FDR #Eastside #NYC #hurricanesandy #Sandy http://t.co/fTRnPP7k\n", "\n", "--------------------------------------------------------\n", - "fdr eastside nyc hurricanesandy sandy \n", + "fdr eastside new york city hurricane sandy sandy \n", "\n", "\n", "stay safe east coast friends. #hurricanesandy http://t.co/NQbPkteu\n", "\n", "--------------------------------------------------------\n", - "stay safe east coast friends hurricanesandy \n", + "stay safe east coast friends hurricane sandy \n", "\n", "\n", "Omfg 20th street & ave C is looking crazyyyyyy\\n#HURRICANESANDY #OMG #crazy #rp #repost #reposted http://t.co/4Xhx5toM\n", "\n", "--------------------------------------------------------\n", - "omfg 20th street ave c looking crazyyyyyy hurricanesandy omg crazy rp repost reposted \n", + "0th street ave looking crazyyyyyy hurricane sandy crazy rp repost reposted \n", "\n", "\n", "times like this make NY and NYers feel helpless: http://t.co/sTiyCBlT #Sandy #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "times like make ny nyers feel helpless sandy hurricanesandy \n", + "times like make new york nyers feel helpless sandy hurricane sandy \n", "\n", "\n", "News 12 NJ #HURRICANESANDY ew, why did I write in caps? http://t.co/uTgSJFuY\n", "\n", "--------------------------------------------------------\n", - "news 12 nj hurricanesandy ew write caps \n", + "news2 new jersey hurricane sandy ew write caps \n", "\n", "\n", "The FDR Drive is now the FDR harbor. 😳☔🌃 #hurricanesandy #fdr @ FDR Drive http://t.co/IPqQOrzo\n", "\n", "--------------------------------------------------------\n", - "fdr drive fdr harbor hurricanesandy fdr fdr drive \n", + "fdr drive fdr harbor hurricane sandy fdr fdr drive \n", "\n", "\n", "MY LAWD #NYC is #UnderWater #HurricaneSandy #Flood #LowerEastSide #Rain #Pouring #BlackOut #StaySafe http://t.co/Men0G8Wx\n", "\n", "--------------------------------------------------------\n", - "lawd nyc underwater hurricanesandy flood lowereastside rain pouring blackout staysafe \n", + "lawd new york city underwater hurricane sandy flood lowereastside rain pouring blackout staysafe \n", "\n", "\n", "Ahhh! #hurricanesandy Flooded NYC! http://t.co/xSUiSTlB\n", "\n", "--------------------------------------------------------\n", - "ahhh hurricanesandy flooded nyc \n", + "ahhh hurricane sandy flooded new york city \n", "\n", "\n", "Someone forgot to secure their trampoline during #hurricanesandy http://t.co/wSjGT0nG\n", "\n", "--------------------------------------------------------\n", - "someone forgot secure trampoline hurricanesandy \n", - "\n", - "\n", - "Is this real?? #hurricanesandy http://t.co/t3cQuir7\n", - "\n", - "--------------------------------------------------------\n", - "real hurricanesandy \n", + "someone forgot secure trampoline hurricane sandy \n", "\n", "\n", "#NYC cabs submerged after #hurricanesandy :( http://t.co/s5hjh0DY\n", "\n", "--------------------------------------------------------\n", - "nyc cabs submerged hurricanesandy \n", + "new york city cabs submerged hurricane sandy \n", "\n", "\n", "http://t.co/cU6YQELl Brooklyn carousel #Sandy#hurricane#nyc\n", "\n", "--------------------------------------------------------\n", - "brooklyn carousel sandy hurricane nyc \n", + "brooklyn carousel sandyhurricanenyc \n", "\n", "\n", "Da fuhhh? #hurricanesandy http://t.co/STRPjlSq\n", "\n", "--------------------------------------------------------\n", - "da fuhhh hurricanesandy \n", + "fuhhh hurricane sandy \n", "\n", "\n", "Avenue C!! By FDR Bridge NYC!! #Sandy!! http://t.co/7k89GivE\n", "\n", "--------------------------------------------------------\n", - "avenue c fdr bridge nyc sandy \n", + "avenue fdr bridge new york city sandy \n", "\n", "\n", "Avenue C. Lower east side. #sandy http://t.co/pK26r9ew\n", "\n", "--------------------------------------------------------\n", - "avenue c lower east side sandy \n", + "avenue lower east side sandy \n", "\n", "\n", "Roller coaster in the ocean in Seaside Heights, NJ. #craziness #hurricanesandy http://t.co/PqwQDGJr\n", "\n", "--------------------------------------------------------\n", - "roller coaster ocean seaside heights nj craziness hurricanesandy \n", + "roller coaster ocean seaside heights new jersey craziness hurricane sandy \n", "\n", "\n", "@KellyRipa here is more WOW! Avenue C and east 8th street WOW #sandy #hurricanesandy #nyc http://t.co/JXBholpG\n", "\n", "--------------------------------------------------------\n", - "wow avenue c east 8th street wow sandy hurricanesandy nyc \n", + "avenue east street sandy hurricane sandy new york city \n", "\n", "\n", "14th Street & Avenue C, NYC #sandy http://t.co/kIQsf6jT\n", "\n", "--------------------------------------------------------\n", - "14th street avenue c nyc sandy \n", + "4th street avenue new york city sandy \n", "\n", "\n", "Brooklyn is flooding like crazy right now!! #HurricaneSandy #scary @ Greenpoint Waterfront http://t.co/Ed1I5Nln\n", "\n", "--------------------------------------------------------\n", - "brooklyn flooding like crazy right hurricanesandy scary greenpoint waterfront \n", - "\n", - "\n", - "#wtf? #hurricanesandy http://t.co/RSj91BA4\n", - "\n", - "--------------------------------------------------------\n", - "wtf hurricanesandy \n", - "\n", - "\n", - ".. #NYC .. #hurricanesandy http://t.co/xIgKBcjn\n", - "\n", - "--------------------------------------------------------\n", - "nyc hurricanesandy \n", + "brooklyn flooding like crazy right hurricane sandy scary greenpoint waterfront \n", "\n", "\n", "Holy crap!!! (Not my picture) #hurricanesandy #hurricane #wth http://t.co/g525udOB\n", "\n", "--------------------------------------------------------\n", - "holy crap picture hurricanesandy hurricane wth \n", + "holy crap picture hurricane sandy hurricane wth \n", "\n", "\n", "Connecticut trampoline problems #hurricanesandy http://t.co/vtzNwNiv\n", "\n", "--------------------------------------------------------\n", - "connecticut trampoline problems hurricanesandy \n", + "connecticut trampoline problems hurricane sandy \n", "\n", "\n", "#nyc #hurricanesandy #hoboken http://t.co/y8Ny8jdO\n", "\n", "--------------------------------------------------------\n", - "nyc hurricanesandy hoboken \n", + "new york city hurricane sandy hoboken \n", "\n", "\n", "#jerseyshore #seaside #hurricane http://t.co/JpuNs9qe\n", @@ -43852,133 +39282,115 @@ "http://t.co/snILmWCB 23rd St NYC #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "23rd st nyc hurricanesandy \n", + "3rd st new york city hurricane sandy \n", "\n", "\n", "Craziest #hurricanesandy pic on @instagram mike_lopez_732's photo http://t.co/HEGFsCoY\n", "\n", "--------------------------------------------------------\n", - "craziest hurricanesandy pic mike lopez 732 photo \n", + "craziest hurricane sandy pic mikelopez732 photo \n", "\n", "\n", "Pray for New York #hurricanesandy http://t.co/JOELObqG\n", "\n", "--------------------------------------------------------\n", - "pray new york hurricanesandy \n", + "pray new york hurricane sandy \n", "\n", "\n", "NYC streets... #hurricanesandy http://t.co/Ao4owMZb\n", "\n", "--------------------------------------------------------\n", - "nyc streets hurricanesandy \n", + "new york city streets hurricane sandy \n", "\n", "\n", "Manhattan holy shit #hurricanesandy http://t.co/hzu4Xp6r\n", "\n", "--------------------------------------------------------\n", - "manhattan holy shit hurricanesandy \n", + "manhattan holy shit hurricane sandy \n", "\n", "\n", "Seaside heights after #hurricanesandy http://t.co/w1sEzSXs\n", "\n", "--------------------------------------------------------\n", - "seaside heights hurricanesandy \n", + "seaside heights hurricane sandy \n", "\n", "\n", "Foto de jsnell1024 http://t.co/andJV6xS #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "foto jsnell1024 hurricanesandy \n", + "foto jsnell1024 hurricane sandy \n", "\n", "\n", "That shit cray... #hurricane #hurricanesandy #trampoline #windy #storm #wtf #lol http://t.co/S8bNcnuM\n", "\n", "--------------------------------------------------------\n", - "shit cray hurricane hurricanesandy trampoline windy storm wtf lol \n", + "shit cray hurricane hurricane sandy trampoline windy storm \n", "\n", "\n", "That's Lake Erie and the little lighthouse downtown Cleveland!!! #crazy #hurricanesandy http://t.co/X05qEWCy\n", "\n", "--------------------------------------------------------\n", - "lake erie little lighthouse downtown cleveland crazy hurricanesandy \n", + "lake erie little lighthouse downtown cleveland crazy hurricane sandy \n", "\n", "\n", "God bless those that are suffering in #HurricaneSandy 🙏👼😇😩 http://t.co/rdtROLdy\n", "\n", "--------------------------------------------------------\n", - "god bless suffering hurricanesandy \n", + "god bless suffering hurricane sandy \n", "\n", "\n", "Atlantic City is already under water ! #hurricanesandy http://t.co/xzEoZZSb\n", "\n", "--------------------------------------------------------\n", - "atlantic city already water hurricanesandy \n", + "atlantic city already water hurricane sandy \n", "\n", "\n", "Wow.. Roller coaster is in the ocean. #seaside #casinopier #hurricanesandy #news12nj http://t.co/Pe6YQVdz\n", "\n", "--------------------------------------------------------\n", - "wow roller coaster ocean seaside casinopier hurricanesandy news12nj \n", - "\n", - "\n", - "#hurricanesandy #NYC http://t.co/uSLH8dpx\n", - "\n", - "--------------------------------------------------------\n", - "hurricanesandy nyc \n", + "roller coaster ocean seaside casinopier hurricane sandy news12nj \n", "\n", "\n", "Woah. #wtnh #hurricanesandy 💨💦 http://t.co/2U83bbaR\n", "\n", "--------------------------------------------------------\n", - "woah wtnh hurricanesandy \n", + "woah wtnh hurricane sandy \n", "\n", "\n", "#Brooklyn underwater and mad deep #HurricaneSandy #FDNY http://t.co/hWNTCzAH\n", "\n", "--------------------------------------------------------\n", - "brooklyn underwater mad deep hurricanesandy fdny \n", - "\n", - "\n", - "“@TonyTriumph10: 23rd street repost from @wendybarton #hurricanesandy #nyc http://t.co/wopgjRan”---OMG!\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", + "brooklyn underwater mad deep hurricane sandy fdny \n", "\n", "\n", "OMG! Yall pray for our family & friends in NYC!!!! #Pray #HurricaneSandy http://t.co/pD60BTOy\n", "\n", "--------------------------------------------------------\n", - "omg yall pray family friends nyc pray hurricanesandy \n", + "yall pray family friends new york city pray hurricane sandy \n", "\n", "\n", "#hurricanesandy truue. http://t.co/DxJYeIRR\n", "\n", "--------------------------------------------------------\n", - "hurricanesandy truue \n", + "hurricane sandy truue \n", "\n", "\n", "World Trade Center flooded with water!! #smh #hurricanesandy http://t.co/QfaLkkD1\n", "\n", "--------------------------------------------------------\n", - "world trade center flooded water smh hurricanesandy \n", - "\n", - "\n", - "WTF!!!! RT @tjuantrel87 Really? #HurricaneSandy http://t.co/pBPix6Bj\n", - "\n", - "--------------------------------------------------------\n", - "wtf \n", + "world trade center flooded water hurricane sandy \n", "\n", "\n", "Firemen searching for folks trapped in cars @14th & Ave C. #hurricanesandy http://t.co/9sukln9I\n", "\n", "--------------------------------------------------------\n", - "firemen searching folks trapped cars ave c hurricanesandy \n", + "firemen searching folks trapped cars ave hurricane sandy \n", "\n", "\n", "...currently the east villiage #nyc #sandy http://t.co/eFj5ez8z\n", "\n", "--------------------------------------------------------\n", - "currently east villiage nyc sandy \n", + "currently east villiage new york city sandy \n", "\n", "\n", "Casino pier 😣😢 #seaside #sandy http://t.co/5ImJ66RG\n", @@ -43996,7 +39408,7 @@ "Foto di babyblue1974 http://t.co/VKeZbiqa #sandy su instagram\n", "\n", "--------------------------------------------------------\n", - "foto di babyblue1974 sandy instagram \n", + "foto babyblue1974 sandy instagram \n", "\n", "\n", "Water cabs! #sandy http://t.co/yZnAC0yd\n", @@ -44014,7 +39426,7 @@ "RIP Seaside Heights, NJ. #boardwalk #amusementpark #jerseyshore #demolished #hurricane #sandy http://t.co/eczp5vB4\n", "\n", "--------------------------------------------------------\n", - "rip seaside heights nj boardwalk amusementpark jerseyshore demolished hurricane sandy \n", + "rip seaside heights new jersey boardwalk amusementpark jerseyshore demolished hurricane sandy \n", "\n", "\n", "Damn..looks nice tho :) colors and shit! RT @NadiyaaAnd East Village NYC #Sandy #Hurricane http://t.co/YYLMgaGN\n", @@ -44026,19 +39438,19 @@ "#amazing #picture os #sandy's #destruction #on #nyc #sandy http://t.co/ddApkG20\n", "\n", "--------------------------------------------------------\n", - "amazing picture sandy destruction nyc sandy \n", + "amazing picture sandy destruction new york city sandy \n", "\n", "\n", "afirmkickinthepants's photo http://t.co/cXy6o6V7 lowest est side #nyc #newyork #sandy\n", "\n", "--------------------------------------------------------\n", - "afirmkickinthepants photo lowest est side nyc newyork sandy \n", + "afirmkickinthepants photo lowest side new york city new york sandy \n", "\n", "\n", "NYC cabs underwater 😱😨 feels like a movie 😣 #jw #nyc #ny #hurricane #sandy #disaster #flooded #destruction http://t.co/fgLsbf1N\n", "\n", "--------------------------------------------------------\n", - "nyc cabs underwater feels like movie jw nyc ny hurricane sandy disaster flooded destruction \n", + "new york city cabs underwater feels like movie jw new york city new york hurricane sandy disaster flooded destruction \n", "\n", "\n", "djkillakal's photo #sandy http://t.co/qF7vVsJh\n", @@ -44068,7 +39480,7 @@ "#SANDY: Imagens de uma obra em Manhattan destruída com a força dos ventos e da água. #RenanLima http://t.co/WoFdVdbx\n", "\n", "--------------------------------------------------------\n", - "sandy imagens uma obra em manhattan destruída com força dos ventos da água renanlima \n", + "sandy imagens obra manhattan destruída força ventos água renanlima \n", "\n", "\n", "louis2caunes's photo http://t.co/VSHrLhkI. #sandy\n", @@ -44092,19 +39504,19 @@ "anya_bern's photo of hurricane #Sandy aftermath http://t.co/ulkYrfm1\n", "\n", "--------------------------------------------------------\n", - "anya bern photo hurricane sandy aftermath \n", + "anyabern photo hurricane sandy aftermath \n", "\n", "\n", "doorsixteen's photo http://t.co/NiZGQZey\\n\\nWow... #sandy #hurricane #stop\n", "\n", "--------------------------------------------------------\n", - "doorsixteen photo wow sandy hurricane stop \n", + "doorsixteen photo sandy hurricane stop \n", "\n", "\n", "West and kent st #greenpoint #nyc #sandy http://t.co/f2lOrCh4\n", "\n", "--------------------------------------------------------\n", - "west kent st greenpoint nyc sandy \n", + "west kent st greenpoint new york city sandy \n", "\n", "\n", "#Sandy so crazy... filthygoods's photo http://t.co/clHGgriI\n", @@ -44122,7 +39534,7 @@ "#nyc #sandy #newyork #hurracaine #storm #emergency #instagram #street #flood http://t.co/5uIw2zDO\n", "\n", "--------------------------------------------------------\n", - "nyc sandy newyork hurracaine storm emergency instagram street flood \n", + "new york city sandy new york hurracaine storm emergency instagram street flood \n", "\n", "\n", "Tell us again how union firefighters are overpaid, Republicans. http://t.co/vg4400SN #Sandy #p2\n", @@ -44134,7 +39546,7 @@ "Taxi sommersi #NYC #sandy RT \"@JasmineSolano: Hoboken, NJ. photo - Michael Bochieri // http://t.co/zO4gRr1x\"\n", "\n", "--------------------------------------------------------\n", - "taxi sommersi nyc sandy \n", + "taxi sommersi new york city sandy \n", "\n", "\n", "“@JasmineSolano: Hoboken, NJ. photo - Michael Bochieri // #Sandy http://t.co/4cNJkqup” is this for real ? Damn\n", @@ -44146,13 +39558,13 @@ "Hoboken, NJ. photo - Michael Bochieri // #Sandy http://t.co/w7oOYjZ0\n", "\n", "--------------------------------------------------------\n", - "hoboken nj photo michael bochieri sandy \n", + "hoboken new jersey photo michael bochieri sandy \n", "\n", "\n", "Photo by Truth Beckons #sandy#nyc#hurricane#storm#flood#water#nypd#2012#picoftheday#photooftheday#tropicalst http://t.co/M8XW9y1T\n", "\n", "--------------------------------------------------------\n", - "photo truth beckons sandy nyc hurricane storm flood water nypd 2012 picoftheday photooftheday tropicalst \n", + "photo truth beckons sandynychurricanestormfloodwaternypd2012picofthedayphotoofthedaytropicalst \n", "\n", "\n", "Everyone be safe #Sandy http://t.co/qNsZkEra\n", @@ -44167,12 +39579,6 @@ "holy sandy photos \n", "\n", "\n", - "Wow, incredible->RT @ringuette: Psst - this guy totally deserves healthcare and a pension: http://t.co/NksDRRns #sandy #publicworkers\n", - "\n", - "--------------------------------------------------------\n", - "wow incredible \n", - "\n", - "\n", "Segura que SANDY vai arrebentar! Boa sorte USA. #sandy #hurricane #storm #nasa #runtothehills http://t.co/FFDTaCOH\n", "\n", "--------------------------------------------------------\n", @@ -44200,7 +39606,7 @@ "Sandy aftermath 😱 #repost #sandy be strong NYC 🙏😇 http://t.co/I0ikiYpE\n", "\n", "--------------------------------------------------------\n", - "sandy aftermath repost sandy strong nyc \n", + "sandy aftermath repost sandy strong new york city \n", "\n", "\n", "That is just devistating 😔 #rip #sea #side #hurricane #sandy http://t.co/hAxoz0wI\n", @@ -44218,25 +39624,25 @@ "#hoboken #nj #sandy @ Hoboken http://t.co/ewNECeUG\n", "\n", "--------------------------------------------------------\n", - "hoboken nj sandy hoboken \n", + "hoboken new jersey sandy hoboken \n", "\n", "\n", "seaside pier underwater 😱 #rollercoaster #seaside #nj #hurricane #sandy #crazy http://t.co/aVBpzs7L\n", "\n", "--------------------------------------------------------\n", - "seaside pier underwater rollercoaster seaside nj hurricane sandy crazy \n", + "seaside pier underwater rollercoaster seaside new jersey hurricane sandy crazy \n", "\n", "\n", "Impresionante...#sandy #ny http://t.co/q9LwRW1l\n", "\n", "--------------------------------------------------------\n", - "impresionante sandy ny \n", + "impresionante sandy new york \n", "\n", "\n", "Noo ;( el trampoline se lo lo llevo #sandy @ So.Plfd, NJ http://t.co/D2CWtIIE\n", "\n", "--------------------------------------------------------\n", - "noo trampoline llevo sandy plfd nj \n", + "noo trampoline llevo sandy plfd new jersey \n", "\n", "\n", "#sandy #seasideheights #disbitchsandy #sandy this is unbelievable. http://t.co/6m0WjAHV\n", @@ -44248,13 +39654,13 @@ "#Hurricane #Sandy #LongIsland #NY I wonder which part of \"secure or bring inside outside objects\" they didn' http://t.co/TZNQoMXd\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy longisland ny wonder part secure bring inside outside objects \n", + "hurricane sandy longisland new york wonder part secure bring inside outside objects \n", "\n", "\n", "Wow, a crazy #Sandy photo from NYC. #TaxiCabs #ABCNews http://t.co/Ve9IOvg8\n", "\n", "--------------------------------------------------------\n", - "wow crazy sandy photo nyc taxicabs abcnews \n", + "crazy sandy photo new york city taxicabs abcnews \n", "\n", "\n", "Holy Moley 😱😳😁 #sandy http://t.co/zSmUdx8l\n", @@ -44263,12 +39669,6 @@ "holy moley sandy \n", "\n", "\n", - "“@mariejoelle: Taxis sous l'eau à Hoboken au New Jersey. http://t.co/SB3XEv7m photo via @davepell” #sandy #After\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", - "\n", - "\n", "dmb41marcario's photo http://t.co/fZQ0WVzd Jersey Shore Boardwalk #Sandy\n", "\n", "--------------------------------------------------------\n", @@ -44278,19 +39678,13 @@ "#newyork #newjersey #ny #nyc #carros #cars #nj #sandy #usa #eeuu #agua #water #storm #tormenta #hurancan #F http://t.co/ayVgQcTB\n", "\n", "--------------------------------------------------------\n", - "newyork newjersey ny nyc carros cars nj sandy usa eeuu agua water storm tormenta hurancan f \n", - "\n", - "\n", - "@PatriciaHeaton http://t.co/FeskhYcw #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "new york newjersey new york new york city carros cars new jersey sandy usa eeuu agua water storm tormenta hurancan f \n", "\n", "\n", "#34th #nyc #flood #hurricane #sandy http://t.co/wKdSJF1f\n", "\n", "--------------------------------------------------------\n", - "34th nyc flood hurricane sandy \n", + "4th new york city flood hurricane sandy \n", "\n", "\n", "R.I.P. #for #the #people #who #have #died #by #that #crazy #orcaan #SANDY http://t.co/yZ9vVXzL\n", @@ -44308,7 +39702,7 @@ "Omg ny post pics are amazing \"@NewYorkPost: Breaking: Water Floods WTC Construction Site #hurricane #sandy #nyc #wtc http://t.co/5f2iInQi\"\n", "\n", "--------------------------------------------------------\n", - "omg ny post pics amazing \n", + "new york post pics amazing \n", "\n", "\n", "New York City Taxi Cabs after #Sandy http://t.co/6FFH9dul - New York City Taxi Cabs after #Sandy http://t.co/Huib2AM......\n", @@ -44320,19 +39714,19 @@ "camilo_labrador's photo http://t.co/vXfCoqzc #sandy\n", "\n", "--------------------------------------------------------\n", - "camilo labrador photo sandy \n", + "camiabrador photo sandy \n", "\n", "\n", "Il faut sauver ces canaris... #Sandy http://t.co/pcLawzYn\n", "\n", "--------------------------------------------------------\n", - "il faut sauver ces canaris sandy \n", + "faut sauver canaris sandy \n", "\n", "\n", "NYC got hit bad #nyc #sandy #signsofthetimes http://t.co/fEHSlPL5\n", "\n", "--------------------------------------------------------\n", - "nyc got hit bad nyc sandy signsofthetimes \n", + "new york city got hit bad new york city sandy signsofthetimes \n", "\n", "\n", "Crazy! #disbitchsandy #sandy http://t.co/LAcgEa41\n", @@ -44341,12 +39735,6 @@ "crazy disbitchsandy sandy \n", "\n", "\n", - "Wow! RT @LauraLoo23: Taxis underwater- Hoboken #Sandy http://t.co/SZE5ky65\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "nasagoddard's photo of #Sandy http://t.co/0af90Wgl\n", "\n", "--------------------------------------------------------\n", @@ -44356,7 +39744,7 @@ "Oh #shit #hurricane #sandy http://t.co/MqnwOka8\n", "\n", "--------------------------------------------------------\n", - "oh shit hurricane sandy \n", + "shit hurricane sandy \n", "\n", "\n", "“@b3st1ntheworld: Oh #shit #hurricane #sandy http://t.co/dqgsL5gy” which state?\n", @@ -44368,7 +39756,7 @@ "Huracan #Sandy en Nueva York. (Photo by @LassanaDiarra_) #NewYork #night #storm #street #hurricane http://t.co/wyRVJGPV\n", "\n", "--------------------------------------------------------\n", - "huracan sandy nueva york photo newyork night storm street hurricane \n", + "huracan sandy nueva york photo new york night storm street hurricane \n", "\n", "\n", "Scary pic of #hurricane #sandy http://t.co/UZgTvmSw\n", @@ -44434,7 +39822,7 @@ "Очень жаль нью-йоркцев. 😦 Don't give up! Hold on! #NY #usa #sandy http://t.co/AfZBB09W\n", "\n", "--------------------------------------------------------\n", - "очень жаль нью йоркцев give hold ny usa sandy \n", + "очень жаль нью йоркцев give hold new york usa sandy \n", "\n", "\n", "well there goes my summers and my childhood 😥💔 #fuckyou #sandy #rip #seaside #boardwalk http://t.co/wM3audnE\n", @@ -44458,25 +39846,25 @@ "#repostage Yeah right! Haha oh mann. #Sandy is just wrong. How do you get down? #trampolineproblems #hurric http://t.co/fANRt75J\n", "\n", "--------------------------------------------------------\n", - "repostage yeah right haha oh mann sandy wrong get trampolineproblems hurric \n", + "repostage yeah right hahamann sandy wrong get trampolineproblems hurric \n", "\n", "\n", "You a big bitch, #Sandy. #Hurricane #Frankenstorm #NYC #SandyIsABitch @ New York City http://t.co/PNfwxflu\n", "\n", "--------------------------------------------------------\n", - "big bitch sandy hurricane frankenstorm nyc sandyisabitch new york city \n", + "big bitch sandy hurricane frankenstorm new york city sandyisabitch new york city \n", "\n", "\n", "Bohemia, NY #hurricane #sandy #longisland #newyork http://t.co/aOv9dSR0\n", "\n", "--------------------------------------------------------\n", - "bohemia ny hurricane sandy longisland newyork \n", + "bemia new york hurricane sandy longisland new york \n", "\n", "\n", "not so much a concrete jungle any more were dreams of made of? #newyork #sandy http://t.co/hPgppbmh\n", "\n", "--------------------------------------------------------\n", - "much concrete jungle dreams made newyork sandy \n", + "much concrete jungle dreams made new york sandy \n", "\n", "\n", "Cabs under water #Sandy #picoftheday #NewJersey #photooftheday #resilience #storm http://t.co/V9iuQ1Q7\n", @@ -44494,7 +39882,7 @@ "Oh the humanity! http://t.co/3fkmZXu0 #Sandy\n", "\n", "--------------------------------------------------------\n", - "oh humanity sandy \n", + "humanity sandy \n", "\n", "\n", "#Sandy from #space http://t.co/CORzusFD\n", @@ -44509,12 +39897,6 @@ "pergh tenggelam \n", "\n", "\n", - "@HOT1079: NYC cabs under water. #Sandy http://t.co/rIt8y4ag Wah so sad!\n", - "\n", - "--------------------------------------------------------\n", - "nyc cabs water sandy wah sad \n", - "\n", - "\n", "Go #sandy , being a total d-bag. http://t.co/3xZrPQ9R\n", "\n", "--------------------------------------------------------\n", @@ -44536,13 +39918,13 @@ "Photo taken by Kurt Wildenburg, the morning after the #storm. Via @MashableHQ #sandy #hurricane #newyork #ra http://t.co/9Om4D3R9\n", "\n", "--------------------------------------------------------\n", - "photo taken kurt wildenburg morning storm via sandy hurricane newyork ra \n", + "photo taken kurt wildenburg morning storm sandy hurricane new york ra \n", "\n", "\n", "Ein fast schon apokalyptisches Bild... #hurrican #sandy #mary #instapic #instamood #instaphoto #apocalyptic http://t.co/zxqY6x87\n", "\n", "--------------------------------------------------------\n", - "ein fast schon apokalyptisches bild hurrican sandy mary instapic instamood instaphoto apocalyptic \n", + "ein fast schon apokalyptisches bild hurrican sandy mary instapic instaphoto apocalyptic \n", "\n", "\n", "This shits just fucking sickening... #Crazy #shit #sandy http://t.co/eNchhjzm\n", @@ -44554,7 +39936,7 @@ "Hoboken, NJ #sandy http://t.co/DVxU8970\n", "\n", "--------------------------------------------------------\n", - "hoboken nj sandy \n", + "hoboken new jersey sandy \n", "\n", "\n", "Seaside heights destroyed roller coaster :( #sandy http://t.co/jkxFP9L6\n", @@ -44584,13 +39966,13 @@ "#yellowCabs #cabs #yellow #hoboken #nj #newjersey #taxi #underwater #water #usa #sandy #instacane #amazing # http://t.co/OZiFSfmf\n", "\n", "--------------------------------------------------------\n", - "yellowcabs cabs yellow hoboken nj newjersey taxi underwater water usa sandy instacane amazing \n", + "yellowcabs cabs yellow hoboken new jersey newjersey taxi underwater water usa sandy instacane amazing \n", "\n", "\n", "#sandy #nyc @ NYC Taxi Cab http://t.co/hPPSbY35\n", "\n", "--------------------------------------------------------\n", - "sandy nyc nyc taxi cab \n", + "sandy new york city new york city taxi cab \n", "\n", "\n", "Siempre impresiona más cuando son sitios tan conocidos: Zona0. #Sandy http://t.co/VLxZhDiY\n", @@ -44608,7 +39990,7 @@ "Oh this isn't fun #sandy wish I started on that ark earlier now http://t.co/Sg1BrwVu\n", "\n", "--------------------------------------------------------\n", - "oh fun sandy wish started ark earlier \n", + "fun sandy wish started ark earlier \n", "\n", "\n", "nasagoddard's photo of the Earth, showing Hurricane #Sandy http://t.co/j3gT3MUO\n", @@ -44620,7 +40002,7 @@ "Lo imperfecto de lo perfecto #NY #NewYork #hurricane #sandy http://t.co/mny0Zvyu\n", "\n", "--------------------------------------------------------\n", - "imperfecto perfecto ny newyork hurricane sandy \n", + "imperfecto perfecto new york new york hurricane sandy \n", "\n", "\n", "#Sandy #nocomment http://t.co/DcvdhZb8\n", @@ -44650,25 +40032,19 @@ "Wow #sandy #manhattan http://t.co/u6uh1uvH\n", "\n", "--------------------------------------------------------\n", - "wow sandy manhattan \n", - "\n", - "\n", - "@Alex_Ogle: @TheMatthewKeys this looks like wider angle of that shot http://t.co/FlUzbsZS #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "looks like wider angle shot sandy \n", + "sandy manhattan \n", "\n", "\n", "Building collapse #hurricane #huracan #sandy #NYC http://t.co/5RRq0pE3\n", "\n", "--------------------------------------------------------\n", - "building collapse hurricane huracan sandy nyc \n", + "building collapse hurricane huracan sandy new york city \n", "\n", "\n", "#sandy veta ah 5 dios cuidanos ah todos rresemos 🙏🙏🙏 http://t.co/GuC1tqgr\n", "\n", "--------------------------------------------------------\n", - "sandy veta ah 5 dios cuidanos ah rresemos \n", + "sandy veta ah dios cuidanos ah rresemos \n", "\n", "\n", "Before sunrise, Before the storm #hurricane #sandy @ Times Square http://t.co/jdSeOkoh\n", @@ -44680,13 +40056,7 @@ "#tums #newyork #rain #storm #sandy #cars #swimming #classic #hurricane #leaves #leaf #besafe http://t.co/tY6GqzyS\n", "\n", "--------------------------------------------------------\n", - "tums newyork rain storm sandy cars swimming classic hurricane leaves leaf besafe \n", - "\n", - "\n", - "#Sandy. :O http://t.co/QOzebOxb\n", - "\n", - "--------------------------------------------------------\n", - "sandy \n", + "tums new york rain storm sandy cars swimming classic hurricane leaves leaf besafe \n", "\n", "\n", "Milford, CT Hurricane #Sandy http://t.co/rwyytbyy\n", @@ -44704,19 +40074,19 @@ "Isso é o furacão #Sandy em NYC! Parece muito a Imbiribeira... Em Recife, todo inverno sofremos com o \"furacã http://t.co/LK09sjsh\n", "\n", "--------------------------------------------------------\n", - "isso é furacão sandy em nyc parece muito imbiribeira em recife inverno sofremos com furacã \n", + "furacão sandy new york city parece imbiribeira recife inverno sofremos furacã \n", "\n", "\n", "#repost #sandy #aftermath #nyc http://t.co/bzdoaYJD\n", "\n", "--------------------------------------------------------\n", - "repost sandy aftermath nyc \n", + "repost sandy aftermath new york city \n", "\n", "\n", "Dramatic photo. East Village swamped http://t.co/Xkyg7khA #NYC #sandy #sandyNYC / Pic from @JesseandGreg\n", "\n", "--------------------------------------------------------\n", - "dramatic photo east village swamped nyc sandy sandynyc pic \n", + "dramatic photo east village swamped new york city sandy sandynyc pic \n", "\n", "\n", "#sandy #badbitch http://t.co/IsTSfW1w\n", @@ -44728,7 +40098,7 @@ "#sandy #newyork #USA #taxi #parking #hurricane #2012 http://t.co/YPM1YVeg\n", "\n", "--------------------------------------------------------\n", - "sandy newyork usa taxi parking hurricane 2012 \n", + "sandy new york usa taxi parking hurricane012 \n", "\n", "\n", "#hoboken. #sandy we hate you 😡😤 http://t.co/eDvr62Kj\n", @@ -44740,7 +40110,7 @@ "East Village NYC #Sandy #Hurricane http://t.co/rZk05fhG\n", "\n", "--------------------------------------------------------\n", - "east village nyc sandy hurricane \n", + "east village new york city sandy hurricane \n", "\n", "\n", "Hope after #sandy RT @peoplesrev: Rainbow over NYC. http://t.co/0GUQAFvX\n", @@ -44752,19 +40122,19 @@ "#hurricane #sandy #aftermath #nj #hoboken http://t.co/IoobRTBs\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy aftermath nj hoboken \n", + "hurricane sandy aftermath new jersey hoboken \n", "\n", "\n", "#NJSANDY #sandy #casinopier #nj #newjersey #njallday #surf #rip http://t.co/kAwcTK7N\n", "\n", "--------------------------------------------------------\n", - "njsandy sandy casinopier nj newjersey njallday surf rip \n", + "njsandy sandy casinopier new jersey newjersey njallday surf rip \n", "\n", "\n", "Shockin'! #newyork #sandy #hurricane #taxi #usa #unitedstates #nyc #newyorkcity http://t.co/hBWpVLTT\n", "\n", "--------------------------------------------------------\n", - "shockin newyork sandy hurricane taxi usa unitedstates nyc newyorkcity \n", + "shockin new york sandy hurricane taxi usa unitedstates new york city new yorkcity \n", "\n", "\n", "#Sandy #PrayForUSA http://t.co/sDv0gbHp\n", @@ -44776,7 +40146,7 @@ "Lower side of manhattan at 10pm #Sandy 🙏 for everybody http://t.co/AUftGtsY\n", "\n", "--------------------------------------------------------\n", - "lower side manhattan 10pm sandy everybody \n", + "lower side manhattan at0pm sandy everybody \n", "\n", "\n", "#Sandy devastates roller coaster: http://t.co/OofGPE1B via @TwitPic\n", @@ -44788,7 +40158,7 @@ "#hurricane #Sandy #NewYork #QueBolas #Iphonesia http://t.co/45dDecxq\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy newyork quebolas iphonesia \n", + "hurricane sandy new york quebolas iphonesia \n", "\n", "\n", "Mental picture “@JacquesRunaway: #yellowcab #sandy #repost http://t.co/HpHypbgY”\n", @@ -44800,7 +40170,7 @@ "#hurricane #sandy #staysafe moga dilindungi Allah #instadaily #instamood #instamalaysia http://t.co/xWLeD5Hb\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy staysafe moga dilindungi allah instadaily instamood instamalaysia \n", + "hurricane sandy staysafe moga dilindungi allah instadaily instamalaysia \n", "\n", "\n", "#SANDY is TEARING SHIT UP!!!! http://t.co/LvCCHV6j\n", @@ -44812,7 +40182,7 @@ "erinmarie716's photo #seaside#newjersey#sandy http://t.co/Aoag3BOp\n", "\n", "--------------------------------------------------------\n", - "erinmarie716 photo seaside newjersey sandy \n", + "erinmarie716 photo seasidenewjerseysandy \n", "\n", "\n", "#njpath #sandy scary. Don't plan on commuting any time soon http://t.co/Q4BANySO\n", @@ -44824,13 +40194,7 @@ "Atlantic City flooding >> RT @Hoeboma: Damn the boardwalk gone uptown. http://t.co/kplYqAJY #Sandy\n", "\n", "--------------------------------------------------------\n", - "atlantic city flooding greater greater \n", - "\n", - "\n", - "nasagoddard's photo of #hurricane #sandy http://t.co/niVAtwKZ\n", - "\n", - "--------------------------------------------------------\n", - "nasagoddard photo hurricane sandy \n", + "atlantic city flooding \n", "\n", "\n", "Brooklyn Bridge Park, submerged. #prayfortheeastcoast #sandy http://t.co/nVRhnx2q\n", @@ -44842,7 +40206,7 @@ "AP Image Downtown Manhattan Flooded...WOWZERS!!!❗🚫❗#Sandy http://t.co/LndgbVdU\n", "\n", "--------------------------------------------------------\n", - "ap image downtown manhattan flooded wowzers sandy \n", + "ap image downtown manhattan flooded zers sandy \n", "\n", "\n", "#sandy... this how you feel!!!? http://t.co/t6ETHQ72\n", @@ -44866,19 +40230,19 @@ "#unbelievable #Seaside #NJ #Sandy http://t.co/WIbe7WB8\n", "\n", "--------------------------------------------------------\n", - "unbelievable seaside nj sandy \n", + "unbelievable seaside new jersey sandy \n", "\n", "\n", "Flooded taxi #sandy #america #usa #ny #storm #water #sea #taxi #car #yellow http://t.co/j19VkLSf\n", "\n", "--------------------------------------------------------\n", - "flooded taxi sandy america usa ny storm water taxi car yellow \n", + "flooded taxi sandy america usa new york storm water taxi car yellow \n", "\n", "\n", "#nyc #sandy #aftermath http://t.co/lqm55f4w\n", "\n", "--------------------------------------------------------\n", - "nyc sandy aftermath \n", + "new york city sandy aftermath \n", "\n", "\n", "Seaside :( #Sandy http://t.co/xHuIjot5\n", @@ -44890,25 +40254,25 @@ "msgood's photo http://t.co/ArrBZjYj WOW #hurricane #sandy #flooding\n", "\n", "--------------------------------------------------------\n", - "msgood photo wow hurricane sandy flooding \n", + "msgood photo hurricane sandy flooding \n", "\n", "\n", "Be safe you all on NY RT @ConspiracyWATCH: RT @joepas914: #34th #nyc #flood #hurricane #sandy http://t.co/RAZBvR2m\n", "\n", "--------------------------------------------------------\n", - "safe ny \n", + "safe new york \n", "\n", "\n", "Stay safe east coast #NewYorkCity #sandy #NOFILTER http://t.co/oPnuOy4u\n", "\n", "--------------------------------------------------------\n", - "stay safe east coast newyorkcity sandy nofilter \n", + "stay safe east coast new yorkcity sandy nofilter \n", "\n", "\n", "#ac #sandy #huricanesandy #wow #OLABOLATV news http://t.co/A8QUEJfT\n", "\n", "--------------------------------------------------------\n", - "ac sandy huricanesandy wow olabolatv news \n", + "ac sandy huricanesandy olabolatv news \n", "\n", "\n", "#Sandy #WTC #Sad #Advertsing #Agency #webagency #marketing #mobile #italy #Tagstagram #instalove #instabeaut http://t.co/VQK9ioTE\n", @@ -44926,7 +40290,7 @@ "Damn #sandy #hudsonriver #flood #newyork http://t.co/w0RJ49NK\n", "\n", "--------------------------------------------------------\n", - "damn sandy hudsonriver flood newyork \n", + "damn sandy hudsonriver flood new york \n", "\n", "\n", "Atlantic City boardwalk floating uptown earlier today! http://t.co/ngUb5hTN #Sandy\n", @@ -44944,13 +40308,13 @@ "@leilanibishopxo #patrickhoelck #diary #nyc #sandy #loveandlight http://t.co/smcHQixz\n", "\n", "--------------------------------------------------------\n", - "patrickhoelck diary nyc sandy loveandlight \n", + "patrickhoelck diary new york city sandy loveandlight \n", "\n", "\n", "I call it ... The Drowning Bee Hive #Sandy #Hurricane #NYC http://t.co/wPqCLzni\n", "\n", "--------------------------------------------------------\n", - "call drowning bee hive sandy hurricane nyc \n", + "call drowning bee hive sandy hurricane new york city \n", "\n", "\n", "#sandy es algo terrorifico!! http://t.co/Y5FAHHe7\n", @@ -44974,7 +40338,7 @@ "#Sandy Foto di _thecoolhunter_ http://t.co/qQ6LpAvJ\n", "\n", "--------------------------------------------------------\n", - "sandy foto di thecoolhunter \n", + "sandy foto thecoolhunter \n", "\n", "\n", "#sandy #hurricane #flood #problems http://t.co/5Z2E6Ekn\n", @@ -44992,7 +40356,7 @@ "Taxi's te water. #ny #sandy http://t.co/vUDPM4sc\n", "\n", "--------------------------------------------------------\n", - "taxi water ny sandy \n", + "taxi water new york sandy \n", "\n", "\n", "seaside pier #sandy http://t.co/iKoMG8b3\n", @@ -45022,13 +40386,13 @@ "#sandy #nyc #OLABOLATV #flood http://t.co/AV0daJy9\n", "\n", "--------------------------------------------------------\n", - "sandy nyc olabolatv flood \n", + "sandy new york city olabolatv flood \n", "\n", "\n", "http://t.co/thhhOfae la zona del WTC inundandose #sandy #newyork\n", "\n", "--------------------------------------------------------\n", - "zona wtc inundandose sandy newyork \n", + "zona wtc inundandose sandy new york \n", "\n", "\n", "This was on a news channel #crazy #hurricane #sandy #nojoke #trampoline http://t.co/SvJiqyxE #hurricane\n", @@ -45058,7 +40422,7 @@ "Lower east side NY #sandy http://t.co/5JapBwT8\n", "\n", "--------------------------------------------------------\n", - "lower east side ny sandy \n", + "lower east side new york sandy \n", "\n", "\n", "Alphabet City's turning into Alphabet Soup 😱 #Hurricane #Sandy http://t.co/rT4dmNN5\n", @@ -45070,19 +40434,13 @@ "oomackattackoo's photo http://t.co/xMKwrwpn Wow, 34th St. and aroun 1st. ave, under water #sandy\n", "\n", "--------------------------------------------------------\n", - "oomackattackoo photo wow 34th st aroun first ave water sandy \n", + "oomackattackoo photo 4th st aroun first ave water sandy \n", "\n", "\n", "#NYC #Sandy #Aftermath \\n#kneedeep #CleanUp http://t.co/gqEoXOQN\n", "\n", "--------------------------------------------------------\n", - "nyc sandy aftermath kneedeep cleanup \n", - "\n", - "\n", - "Wow. NYC #Sandy http://t.co/KrFx8ONO\n", - "\n", - "--------------------------------------------------------\n", - "wow nyc sandy \n", + "new york city sandy aftermath kneedeep cleanup \n", "\n", "\n", "Lower Manhattan! #sandy #hurricane #fml http://t.co/yK1scesC\n", @@ -45094,19 +40452,19 @@ "#صور #غرد_بصورة #Instagram #Bahrain #Instagood #ksa #UAE #Usa #Hurricane #Sandy #Qatar #Oman #italy #Franc http://t.co/iw4kcscK\n", "\n", "--------------------------------------------------------\n", - "صور غرد بصورة instagram bahrain instagood ksa uae usa hurricane sandy qatar oman italy franc \n", + "صور غردبصورة instagram bahrain instagood ksa uae usa hurricane sandy qatar oman italy franc \n", "\n", "\n", "princetrey_dc's photo http://t.co/FPC93u5h #Sandy\n", "\n", "--------------------------------------------------------\n", - "princetrey dc photo sandy \n", + "princetreydc photo sandy \n", "\n", "\n", "This Morning #NYC #Sandy http://t.co/K9R1GyqA\n", "\n", "--------------------------------------------------------\n", - "morning nyc sandy \n", + "morning new york city sandy \n", "\n", "\n", "#sandy #damn http://t.co/hk3dQtD8\n", @@ -45124,7 +40482,7 @@ "Lower #Manhattan under water. Found this on Facebook - Northern NJ Weather Authority. #Sandy #weather #storm http://t.co/sCKo0cpJ\n", "\n", "--------------------------------------------------------\n", - "lower manhattan water found facebook northern nj weather authority sandy weather storm \n", + "lower manhattan water found facebook northern new jersey weather authority sandy weather storm \n", "\n", "\n", "Seaside is ruined 😿 so sad. And my favorite log flume is gone #sandy http://t.co/caLfSu1S\n", @@ -45136,7 +40494,7 @@ "#manhattan #14thStreet #AvenueC #hurricane #sandy #October #2012 #haarp #government #coincidence #election # http://t.co/j2nxrlMM\n", "\n", "--------------------------------------------------------\n", - "manhattan 14thstreet avenuec hurricane sandy october 2012 haarp government coincidence election \n", + "manhattan4thstreet avenuec hurricane sandy october012 haarp government coincidence election \n", "\n", "\n", "#sandy #frankenstorm @Kat_Bk @ Taxi http://t.co/wO7lRDs6\n", @@ -45160,7 +40518,7 @@ "I can't believe how bad New York City got😳😞\\n#NYC🗽#Hurricane☁⚡☔#Sandy http://t.co/10CPC0Wc\n", "\n", "--------------------------------------------------------\n", - "believe bad new york city got nyc hurricane sandy \n", + "believe bad new york city got new york city hurricane sandy \n", "\n", "\n", "cambumbito's photo http://t.co/vr29aqLu #Sandy\n", @@ -45196,13 +40554,13 @@ "Huracan #Sandy #manhathan #NYC http://t.co/OIMddLvS\n", "\n", "--------------------------------------------------------\n", - "huracan sandy manhathan nyc \n", + "huracan sandy manhathan new york city \n", "\n", "\n", "Много удивительного модно увидеть ,введя в писке тег - \" #sandy \" #sandy #ny #taxi #newyork http://t.co/zhtee9c0\n", "\n", "--------------------------------------------------------\n", - "удивительного модно увидеть введя писке тег sandy sandy ny taxi newyork \n", + "удивительного модно увидеть введя писке тег sandy sandy new york taxi new york \n", "\n", "\n", "#sandy basically wrecked my childhood memories hah http://t.co/R2mhIQRC\n", @@ -45220,7 +40578,7 @@ "East Village (NYC) swamped. dobesedno. -- http://t.co/GInGtHCZ #sandy\n", "\n", "--------------------------------------------------------\n", - "east village nyc swamped dobesedno sandy \n", + "east village new york city swamped dobesedno sandy \n", "\n", "\n", "The most heartbreaking shot of the boardwalk yet. #seaside #sleazeside #boardwalk #jersey #sandy #home http://t.co/GLmzEuDV\n", @@ -45232,19 +40590,13 @@ "A comforting view from work #cranecollapse #57thand7th #sandy http://t.co/cX463PIx\n", "\n", "--------------------------------------------------------\n", - "comforting view work cranecollapse 57thand7th sandy \n", + "comforting view work cranecollapse7thand7th sandy \n", "\n", "\n", "Oh snap! #hurricane #sandy http://t.co/MdYpO4zI\n", "\n", "--------------------------------------------------------\n", - "oh snap hurricane sandy \n", - "\n", - "\n", - "#sandy wow! http://t.co/PsCHeAI6\n", - "\n", - "--------------------------------------------------------\n", - "sandy wow \n", + "snap hurricane sandy \n", "\n", "\n", "Be safe. #be #safe #besafe #east #eastcoast #sandy #hurricane #wind #winds #rains #flood #flooding #powerout http://t.co/Jfv4Itxq\n", @@ -45256,7 +40608,7 @@ "NJ boardwalk #photo - all over #Instagram http://t.co/vHwTaGC1 #Sandy\n", "\n", "--------------------------------------------------------\n", - "nj boardwalk photo instagram sandy \n", + "new jersey boardwalk photo instagram sandy \n", "\n", "\n", "Asi esta manhattan !! #sandy #huracan #instagram http://t.co/yblBajCa\n", @@ -45280,7 +40632,7 @@ "Sandy em: VAMOS PULAR! #hurricane #Sandy #storm #massachusetts http://t.co/WVt1hDCT\n", "\n", "--------------------------------------------------------\n", - "sandy em vamos pular hurricane sandy storm massachusetts \n", + "sandy vamos pular hurricane sandy storm massachusetts \n", "\n", "\n", "#Sandy FDR Dr right now. Never seen anything like it. @ Serendipity3 http://t.co/7TB2Mt15\n", @@ -45292,7 +40644,7 @@ "jaimerai pas #sandy http://t.co/ewQHMIvK\n", "\n", "--------------------------------------------------------\n", - "jaimerai pas sandy \n", + "jaimerai sandy \n", "\n", "\n", "Hasn't even hit yet and its this bad! #sandy http://t.co/C2UHTQ8M\n", @@ -45328,25 +40680,25 @@ "#newyork #taxi #parking #water #sandy #godbless #america http://t.co/il9cdmfY\n", "\n", "--------------------------------------------------------\n", - "newyork taxi parking water sandy godbless america \n", + "new york taxi parking water sandy godbless america \n", "\n", "\n", "Nyc #instacane #sandy http://t.co/qgmAkg0N\n", "\n", "--------------------------------------------------------\n", - "nyc instacane sandy \n", + "new york city instacane sandy \n", "\n", "\n", "Just looks like a crazy artist stunt. Unbelievable. #Sandy #NYC http://t.co/GdpUcOh9\n", "\n", "--------------------------------------------------------\n", - "looks like crazy artist stunt unbelievable sandy nyc \n", + "looks like crazy artist stunt unbelievable sandy new york city \n", "\n", "\n", "#wb #sandy #waves #surf @ Wrightsville Beach Access 16 http://t.co/J6ItKhuO\n", "\n", "--------------------------------------------------------\n", - "wb sandy waves surf wrightsville beach access 16 \n", + "wb sandy waves surf wrightsville beach access6 \n", "\n", "\n", "Lower manhattan... #sandy #hurricane #aftermath http://t.co/jdscPGYC\n", @@ -45361,22 +40713,10 @@ "strange photo sandy \n", "\n", "\n", - "#hurricane #sandy #lol http://t.co/PL9H37cr\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy lol \n", - "\n", - "\n", "“bbcworld @bdsilverman photo of #Bounty hit by storm #Sandy. 1 crew member was found \"unresponsive\", a 2nd i http://t.co/Y6qlN8JK\n", "\n", "--------------------------------------------------------\n", - "bbcworld photo bounty hit storm sandy 1 crew member found unresponsive second \n", - "\n", - "\n", - "Wow. O_o #Sandy “@jwomack: Well, we can always take a Oh never mind: http://t.co/PQTL2yT4”\n", - "\n", - "--------------------------------------------------------\n", - "wow sandy \n", + "bbcworld photo bounty hit storm sandy crew member found unresponsive second \n", "\n", "\n", "Atlantic City boardwalk http://t.co/IM7JcfA9 #Sandy RT @Cutelovekat\n", @@ -45388,7 +40728,7 @@ "Манхеттен #Sandy #NY\\n\\nantonioonline's photo http://t.co/lfrVjqMX\n", "\n", "--------------------------------------------------------\n", - "манхеттен sandy ny antonioonline photo \n", + "манхеттен sandy new york antonioonline photo \n", "\n", "\n", "captured by @kurtdietrich, lower Manhattan after #sandy http://t.co/t5ysuG61” Good reminder of an old covenant involving water and mercy.\n", @@ -45418,7 +40758,7 @@ "Ayudemen a bajar mi trampolin. Este viento esta muy fuerte. #sandy. dj_zarco @elsanto137 @juaness @jbalvin http://t.co/N9FSXUDR\n", "\n", "--------------------------------------------------------\n", - "ayudemen bajar trampolin viento fuerte sandy dj zarco \n", + "ayudemen bajar trampolin viento fuerte sandy djzarco \n", "\n", "\n", "Our thoughts and prayers go out to everyone effected by Hurricane #Sandy please be safe. #staystrong #jersey http://t.co/cUlUoVRc\n", @@ -45436,13 +40776,13 @@ "briannaa_ryann's photo http://t.co/zOpWxeX9 #sandy\n", "\n", "--------------------------------------------------------\n", - "briannaa ryann photo sandy \n", + "briannaaryann photo sandy \n", "\n", "\n", "Damn #nyc #like4like #sandy #instagood #sad #igers #ignation #instalike http://t.co/w852Cmju\n", "\n", "--------------------------------------------------------\n", - "damn nyc like4like sandy instagood sad igers ignation instalike \n", + "damn new york city like4like sandy instagood sad igers ignation instalike \n", "\n", "\n", "That shit Cray #sandy #CT #hurricane #iDontWantToLosePower http://t.co/obWcctjh\n", @@ -45460,13 +40800,13 @@ "If your car is on Ave C, I'm sorry. #sandy http://t.co/es3EWDh1\n", "\n", "--------------------------------------------------------\n", - "car ave c sorry sandy \n", + "car ave sorry sandy \n", "\n", "\n", "Si hoy esta asi no me quiero imaginar mañana #Sandy #NYC #Ciclon http://t.co/eGGjM3ns\n", "\n", "--------------------------------------------------------\n", - "si hoy asi quiero imaginar mañana sandy nyc ciclon \n", + "si hoy así quiero imaginar mañana sandy new york city ciclon \n", "\n", "\n", "The East Village y'all. #Sandy http://t.co/i9o2MupF\n", @@ -45487,18 +40827,6 @@ "need cab nypost hurricane sandy insanity \n", "\n", "\n", - "Unreal #Sandy http://t.co/Ca16jSWn\n", - "\n", - "--------------------------------------------------------\n", - "unreal sandy \n", - "\n", - "\n", - "@reedtimmerTVN: WOW, sad. World Trade Center construction area being taken over by flood waters! http://t.co/UMMiGwmH / WTC #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "wow sad world trade center construction area taken flood waters wtc sandy \n", - "\n", - "\n", "flooded taxi parking http://t.co/I3LyTbxt #sandy\n", "\n", "--------------------------------------------------------\n", @@ -45508,7 +40836,7 @@ "This is UNREAL #NYC #Sandy http://t.co/SAuG9TI3\n", "\n", "--------------------------------------------------------\n", - "unreal nyc sandy \n", + "unreal new york city sandy \n", "\n", "\n", "No lights. But strangely I have Internet. #sandy http://t.co/mjmqwQ4W\n", @@ -45526,19 +40854,19 @@ "Sandy hits manhattan! One pizza party these poor people won't forget very soon... #nyc #sandy #buildingfail http://t.co/FP1YEzo5\n", "\n", "--------------------------------------------------------\n", - "sandy hits manhattan one pizza party poor people forget soon nyc sandy buildingfail \n", + "sandy hits manhattan one pizza party poor people forget soon new york city sandy buildingfail \n", "\n", "\n", "Hoboken NJ #Sandy #fucksandy #Damage http://t.co/aa05Rwuw\n", "\n", "--------------------------------------------------------\n", - "hoboken nj sandy fucksandy damage \n", + "hoboken new jersey sandy fucksandy damage \n", "\n", "\n", "Desde NYC World Trade Center #nyc #wtc #sandy http://t.co/tVbRWTV8\n", "\n", "--------------------------------------------------------\n", - "nyc world trade center nyc wtc sandy \n", + "new york city world trade center new york city wtc sandy \n", "\n", "\n", "#Sandy #Nasa http://t.co/5YO6BATJ\n", @@ -45550,13 +40878,13 @@ "A fleet of NYC cabs submerged from #Sandy http://t.co/gngt9BgY\n", "\n", "--------------------------------------------------------\n", - "fleet nyc cabs submerged sandy \n", + "fleet new york city cabs submerged sandy \n", "\n", "\n", "#sandy #NYC #huracan @mariangelagravi habobo1972 @kahtrincita http://t.co/yEHwJEea\n", "\n", "--------------------------------------------------------\n", - "sandy nyc huracan habobo1972 \n", + "sandy new york city huracan habobo1972 \n", "\n", "\n", "@paulipotter nose tendriamos que ir a ver. Pero esto si es deveritas deveritas #nolie work done by #sandy http://t.co/MHhBHrAQ\n", @@ -45568,7 +40896,7 @@ "world Trade Center building site is being severely flooded #Sandy #Ny\\nhttps://t.co/Mzi1cKKm”\n", "\n", "--------------------------------------------------------\n", - "world trade center building site severely flooded sandy ny \n", + "world trade center building site severely flooded sandy new york \n", "\n", "\n", "#sandy #seasideheights #rollercoaster #disbitchsandy http://t.co/1a5184gZ\n", @@ -45610,7 +40938,7 @@ "Trampoline on phone lines #hurricane #sandy #instagood #instamood #picoftheday #picoftheweek #picofthestorm http://t.co/vRTc1U2S\n", "\n", "--------------------------------------------------------\n", - "trampoline phone lines hurricane sandy instagood instamood picoftheday picoftheweek picofthestorm \n", + "trampoline phone lines hurricane sandy instagood picoftheday picoftheweek picofthestorm \n", "\n", "\n", "Horrible #seaside #sandy :( http://t.co/TsCkA3CG\n", @@ -45625,12 +40953,6 @@ "stay safe sandy hurricane \n", "\n", "\n", - "#Sandy en New York http://t.co/VjK1QZGA\n", - "\n", - "--------------------------------------------------------\n", - "sandy new york \n", - "\n", - "\n", "#eastvillage #sandy http://t.co/kECguUvK\n", "\n", "--------------------------------------------------------\n", @@ -45640,7 +40962,7 @@ "Damn some of these #Sandy images are crazy. How are all of my NY friends holdin up? Looks like you went thr http://t.co/ssJfDef6\n", "\n", "--------------------------------------------------------\n", - "damn sandy images crazy ny friends holdin looks like went thr \n", + "damn sandy images crazy new york friends holdin looks like went thr \n", "\n", "\n", "Insane pic of #Manhattan underwater \\n#sandy #prayers http://t.co/Dtrunijt\n", @@ -45664,7 +40986,7 @@ "Apparently this was new york at midnight. Hooly shit! #scary #hurricane #sandy #newyork #water #endoftheworl http://t.co/DcQJYfYV\n", "\n", "--------------------------------------------------------\n", - "apparently new york midnight hooly shit scary hurricane sandy newyork water endoftheworl \n", + "apparently new york midnight hooly shit scary hurricane sandy new york water endoftheworl \n", "\n", "\n", "Dude, #Sandy is no joke. http://t.co/TEAdHBkA\n", @@ -45700,7 +41022,7 @@ "#hurricane #sandy #damage #newyork #america #yellow #cab #taxi http://t.co/9uQxIuwE\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy damage newyork america yellow cab taxi \n", + "hurricane sandy damage new york america yellow cab taxi \n", "\n", "\n", "Holy .... #sandy http://t.co/tUAeIW3t\n", @@ -45736,13 +41058,13 @@ "Hoboken PATH Station tunnel flooded via elevator shaft #sandy http://t.co/QtvzW6tJ\n", "\n", "--------------------------------------------------------\n", - "hoboken path station tunnel flooded via elevator shaft sandy \n", + "hoboken path station tunnel floodedelevator shaft sandy \n", "\n", "\n", "#sandy blowing walls off #smh http://t.co/TGXLVeMg\n", "\n", "--------------------------------------------------------\n", - "sandy blowing walls smh \n", + "sandy blowing walls \n", "\n", "\n", "#sandy #hurricane #cyclone @ Sandy http://t.co/6IEVbTSg\n", @@ -45772,7 +41094,7 @@ "Jersey Shore. I believe it's seaside heights. #Sandy http://t.co/azlu5iS3\\nvia http://t.co/zUgOJfHN>\n", "\n", "--------------------------------------------------------\n", - "jersey shore believe seaside heights sandy via greater \n", + "jersey shore believe seaside heights sandy \n", "\n", "\n", "Flood.. Taxis #sandy http://t.co/ov9pbbal\n", @@ -45787,52 +41109,34 @@ "sandy pics \n", "\n", "\n", - "“@BigMarley3: snooki's home. #JerseyShore boardwalk. #Sandy http://t.co/kTVBGNrJ” wow\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "#nyc #wtc #sandy #hurricanes #floods #OLABOLATV http://t.co/PddbUX9i\n", "\n", "--------------------------------------------------------\n", - "nyc wtc sandy hurricanes floods olabolatv \n", + "new york city wtc sandy hurricanes floods olabolatv \n", "\n", "\n", "#NewYork #Sandy #taxi http://t.co/4kQTQfvY\n", "\n", "--------------------------------------------------------\n", - "newyork sandy taxi \n", + "new york sandy taxi \n", "\n", "\n", "Наводнение в Бруклине, Нью-Йорк | #NY #Sandy http://t.co/mndX5kdh\n", "\n", "--------------------------------------------------------\n", - "наводнение бруклине нью йорк ny sandy \n", - "\n", - "\n", - "Holy shit #sandy http://t.co/fb1071sp\n", - "\n", - "--------------------------------------------------------\n", - "holy shit sandy \n", + "наводнение бруклине нью йорк new york sandy \n", "\n", "\n", "Oh no #sandy what the hell NO NO NO NO NOOOOOOO!!! #odhaha http://t.co/wLdJx4lF\n", "\n", "--------------------------------------------------------\n", - "oh sandy hell nooooooo odhaha \n", + "sandy hell nooooooo od \n", "\n", "\n", "Aïe Aïe Aïe Rien ne va plus #Sandy >> http://t.co/HkG3Aezg\n", "\n", "--------------------------------------------------------\n", - "aïe aïe aïe rien ne va plus sandy greater greater \n", - "\n", - "\n", - "Hurricane #Sandy, by @time http://t.co/ixAeykg1\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy \n", + "aïe aïe aïe rien va plus sandy \n", "\n", "\n", "#Sandy turns yellow cab parking lot into swimming pool. http://t.co/wC6fQybL\n", @@ -45844,31 +41148,25 @@ "Holy satellite image of #hurricane #sandy from #NASA! Wtf!?! http://t.co/7kI4GSIS\n", "\n", "--------------------------------------------------------\n", - "holy satellite image hurricane sandy nasa wtf \n", - "\n", - "\n", - "The East Village after #sandy http://t.co/7pywMW1T\n", - "\n", - "--------------------------------------------------------\n", - "east village sandy \n", + "holy satellite image hurricane sandy nasa \n", "\n", "\n", "#wow #hurricane #sandy #looks #shitty #besafe #jersey http://t.co/dXVEMG0k\n", "\n", "--------------------------------------------------------\n", - "wow hurricane sandy looks shitty besafe jersey \n", + "hurricane sandy looks shitty besafe jersey \n", "\n", "\n", "Oh. #wind #hurricane #sandy #hurricanesady #lol #funny #wow #nofilter #outside #nature #rain #f4f #followme http://t.co/evuma1rV\n", "\n", "--------------------------------------------------------\n", - "oh wind hurricane sandy hurricanesady lol funny wow nofilter outside nature rain f4f followme \n", + "wind hurricane sandy hurricanesady funny nofilter outside nature rain f4f followme \n", "\n", "\n", "East Village. Sick. #Sandy #NYC http://t.co/45R1HmKf\n", "\n", "--------------------------------------------------------\n", - "east village sick sandy nyc \n", + "east village sick sandy new york city \n", "\n", "\n", "Waww!! “@NatachaQS: #Sandy Par @nasagoddard http://t.co/eE63ledj”\n", @@ -45880,13 +41178,13 @@ "Rising water, caused by #Hurricane #Sandy, #NewYork http://t.co/aFkindpV\n", "\n", "--------------------------------------------------------\n", - "rising water caused hurricane sandy newyork \n", + "rising water caused hurricane sandy new york \n", "\n", "\n", "Wow, new york taxis after #sandy. kelseyjharper's photo http://t.co/zoSeB2QX\n", "\n", "--------------------------------------------------------\n", - "wow new york taxis sandy kelseyjharper photo \n", + "new york taxis sandy kelseyjharper photo \n", "\n", "\n", "#Sandy takes trampolining to new heights --> nickthehouse's photo http://t.co/PDEpb4fJ\n", @@ -45910,31 +41208,31 @@ "#Sandy Rescue efforts at 14th and C, photo courtesy of TIME: http://t.co/Y19jeIHW\n", "\n", "--------------------------------------------------------\n", - "sandy rescue efforts 14th c photo courtesy time \n", + "sandy rescue efforts at4th photo courtesy time \n", "\n", "\n", "So sad! #nyc #sandy #hurricane #taxi http://t.co/uieIkK9i\n", "\n", "--------------------------------------------------------\n", - "sad nyc sandy hurricane taxi \n", + "sad new york city sandy hurricane taxi \n", "\n", "\n", "20th & ave c lower east side #sandy #hurricane #Manhattan http://t.co/PYdax4FS\n", "\n", "--------------------------------------------------------\n", - "20th ave c lower east side sandy hurricane manhattan \n", + "0th ave lower east side sandy hurricane manhattan \n", "\n", "\n", "So sad. Good times. #seasideheights #nj #sandy http://t.co/WYaLdf65\n", "\n", "--------------------------------------------------------\n", - "sad good times seasideheights nj sandy \n", + "sad good times seasideheights new jersey sandy \n", "\n", "\n", "#NYC #Sandy #hurricane #ZonaCero http://t.co/PV5ce7BR\n", "\n", "--------------------------------------------------------\n", - "nyc sandy hurricane zonacero \n", + "new york city sandy hurricane zonacero \n", "\n", "\n", "Shot by Scottnathan #sandy http://t.co/o2O74sf0\n", @@ -45958,7 +41256,7 @@ "Wow. I would of never thought this bitch #sandy would do this. #les #nyc http://t.co/UOj4OgG5\n", "\n", "--------------------------------------------------------\n", - "wow would never thought bitch sandy would nyc \n", + "would never thought bitch sandy would new york city \n", "\n", "\n", "Wanna play outside? #sandy http://t.co/aPQZ21lc\n", @@ -45970,13 +41268,13 @@ "ellio_martnez's photo http://t.co/cnYUE7wg #sandy\n", "\n", "--------------------------------------------------------\n", - "ellio martnez photo sandy \n", + "elliomartnez photo sandy \n", "\n", "\n", "Praising God for protecting my sister and bro and baby girls! #sandy #manhattan #grateful #thankful #sandyto http://t.co/Wo4HlXMQ\n", "\n", "--------------------------------------------------------\n", - "praising god protecting sister bro baby girls sandy manhattan grateful thankful sandyto \n", + "praising god protecting sister andand baby girls sandy manhattan grateful thankful sandyto \n", "\n", "\n", "slavicinferno's photo http://t.co/F7IvCYzs #sandy crazy!!\n", @@ -45988,31 +41286,31 @@ "Bye bye #casinopier #sandy #seasideheights #nj #hurricane http://t.co/jbRpKsya\n", "\n", "--------------------------------------------------------\n", - "bye bye casinopier sandy seasideheights nj hurricane \n", + "bye bye casinopier sandy seasideheights new jersey hurricane \n", "\n", "\n", "#newyork #powercut #hurricane #sandy http://t.co/gVQzFL99\n", "\n", "--------------------------------------------------------\n", - "newyork powercut hurricane sandy \n", + "new york powercut hurricane sandy \n", "\n", "\n", "2012, året då jorden går under!!! #eller? #NYC #sandy http://t.co/UYs0V0w5\n", "\n", "--------------------------------------------------------\n", - "2012 året jorden går nyc sandy \n", + "2 året jorden går new york city sandy \n", "\n", "\n", "Waist-high water at 14th and Ave C: http://t.co/MKfaX899 #NYC #Sandy\n", "\n", "--------------------------------------------------------\n", - "waist high water 14th ave c nyc sandy \n", + "waist high water at4th ave new york city sandy \n", "\n", "\n", "_thecoolhunter_'s photo http://t.co/6yAcpIyD taxicabs #nyc #sandy\n", "\n", "--------------------------------------------------------\n", - "thecoolhunter photo taxicabs nyc sandy \n", + "thecoolhunter photo taxicabs new york city sandy \n", "\n", "\n", "Praying for firemen, police, linemen & public sector workers out rescuing others. http://t.co/0uEUqHoT (via @TIME) #safetynet #heroes #Sandy\n", @@ -46042,7 +41340,7 @@ "Yellow Cabs took a hit too! No trains no cabs buses n walking will be for new yorkers! #sandy 🚕#instacollage http://t.co/NmgADkbs\n", "\n", "--------------------------------------------------------\n", - "yellow cabs took hit trains cabs buses n walking new yorkers sandy instacollage \n", + "yellow cabs took hit trains cabs buses walking new yorkers sandy instacollage \n", "\n", "\n", "🚖🚖 #Sandy _thecoolhunter_'s photo http://t.co/MhgcjXuI\n", @@ -46066,7 +41364,7 @@ "Taxi Cabs under water - #sandy aj_magnberg's photo http://t.co/Wr7Qxi9Y\n", "\n", "--------------------------------------------------------\n", - "taxi cabs water sandy aj magnberg photo \n", + "taxi cabs water sandy ajmagnberg photo \n", "\n", "\n", "Some parts of #BK have allot of cleaning to do. Praying for my East coasters #Staystrong #Sandy http://t.co/O6LNfKWB\n", @@ -46084,19 +41382,19 @@ "Roller coaster at sea, Seaside Heights, NJ: http://t.co/SaYZT4c2 #sandy\n", "\n", "--------------------------------------------------------\n", - "roller coaster seaside heights nj sandy \n", + "roller coaster seaside heights new jersey sandy \n", "\n", "\n", "NY Yellow cabs http://t.co/sTYfzvcR #SANDY\n", "\n", "--------------------------------------------------------\n", - "ny yellow cabs sandy \n", + "new york yellow cabs sandy \n", "\n", "\n", "#sandy #NewYork #storm #2012\\n#taxis#flood http://t.co/udMgdyN8\n", "\n", "--------------------------------------------------------\n", - "sandy newyork storm 2012 taxis flood \n", + "sandy new york storm012 taxisflood \n", "\n", "\n", "#sandy no light. Ma fav city look stony.. http://t.co/8FXRdetc\n", @@ -46144,7 +41442,7 @@ "Be safe Americans! God bless you! #hurricane #sandy #nyc #ny http://t.co/CAbvRNBW\n", "\n", "--------------------------------------------------------\n", - "safe americans god bless hurricane sandy nyc ny \n", + "safe americans god bless hurricane sandy new york city new york \n", "\n", "\n", "#Sandy update #HolyBALLS (via @NASAGoddard) http://t.co/w7dQQf9Z\n", @@ -46162,31 +41460,31 @@ "parking lot NYC #sandy http://t.co/VSR4Zeh9\n", "\n", "--------------------------------------------------------\n", - "parking lot nyc sandy \n", + "parking lot new york city sandy \n", "\n", "\n", "Una aseguradora va a estar muy triste. #Sandy #NYC http://t.co/QNNLgxua\n", "\n", "--------------------------------------------------------\n", - "aseguradora va triste sandy nyc \n", + "aseguradora va triste sandy new york city \n", "\n", "\n", "@patty_london Una aseguradora va estar muy triste. #Sandy #NYC http://t.co/6WjICwai vía @eduardo_g / incluye desastres naturales el seguro?\n", "\n", "--------------------------------------------------------\n", - "aseguradora va triste sandy nyc vía incluye desastres naturales seguro \n", + "aseguradora va triste sandy new york city incluye desastres naturales seguro \n", "\n", "\n", "Wow...World Trade Center Site under flood water: http://t.co/ibLrLMqF #Sandy #Hurricane #NYC\n", "\n", "--------------------------------------------------------\n", - "wow world trade center site flood water sandy hurricane nyc \n", + "world trade center site flood water sandy hurricane nyc \n", "\n", "\n", "pray for you! Hope you are ok #newyork #sandy #storm http://t.co/TeO1tvA4\n", "\n", "--------------------------------------------------------\n", - "pray hope ok newyork sandy storm \n", + "pray hope ok new york sandy storm \n", "\n", "\n", "Taxi depot outside of my office #Sandy http://t.co/8fm6w3jY\n", @@ -46201,32 +41499,20 @@ "sandy mean business \n", "\n", "\n", - "time's photo #SANDY http://t.co/yaKIwKpR\n", - "\n", - "--------------------------------------------------------\n", - "time photo sandy \n", - "\n", - "\n", "A person's a person, no matter how small. -Dr. Seuss #quote #sandy #hurricane #nyc #earth #life #live #lov http://t.co/x4ckJdtc\n", "\n", "--------------------------------------------------------\n", - "person person matter small dr seuss quote sandy hurricane nyc earth life live lov \n", + "person person matter small dr seuss quote sandy hurricane new york city earth life live lov \n", "\n", "\n", "anyone up for a late night swim?! #sandy #nyc #nypd http://t.co/cw0j5n3E\n", "\n", "--------------------------------------------------------\n", - "anyone late night swim sandy nyc nypd \n", + "anyone late night swim sandy new york city nypd \n", "\n", "\n", "(( #sandy #hurricane #state #storm #awful #scared #bad #windy #cloudy #rainy #atlantic #cold #water #manhatt http://t.co/MfSj0XX7\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "--------------------------------------------------------\n", "sandy hurricane state storm awful scared bad windy cloudy rainy atlantic cold water manhatt \n", "\n", @@ -46234,7 +41520,7 @@ "#sandy #huracan #newyork #taxi #water #disaster http://t.co/so4j7R3N\n", "\n", "--------------------------------------------------------\n", - "sandy huracan newyork taxi water disaster \n", + "sandy huracan new york taxi water disaster \n", "\n", "\n", "#Sandy #taxiboat http://t.co/aClfg4hF\n", @@ -46273,16 +41559,10 @@ "manhattan sandy time photo \n", "\n", "\n", - "East Village #Sandy RT @AngryBlkManDC: Wow!!!! http://t.co/XwtQmQyW\n", - "\n", - "--------------------------------------------------------\n", - "east village sandy \n", - "\n", - "\n", "Seaside Heights, NJ 😢💔 #sandy http://t.co/GsR77hXr\n", "\n", "--------------------------------------------------------\n", - "seaside heights nj sandy \n", + "seaside heights new jersey sandy \n", "\n", "\n", "“@pabfo: Esto es real. #Sandy // New York. http://t.co/mdNNfGRT” vaya....\n", @@ -46294,19 +41574,13 @@ "Sandy #newyork #sandy http://t.co/j1uJKUty\n", "\n", "--------------------------------------------------------\n", - "sandy newyork sandy \n", + "sandy new york sandy \n", "\n", "\n", "#Wow- #NJ Boardwalk #AtlanticCity http://t.co/k3rJ6GKe h/t @Alex_Ogle @TheMatthewKeys #sandy\n", "\n", "--------------------------------------------------------\n", - "wow nj boardwalk atlanticcity h sandy \n", - "\n", - "\n", - "#hurricane #sandy #space http://t.co/d4uh3VRm\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy space \n", + "new jersey boardwalk atlanticcity sandy \n", "\n", "\n", "Manhattan at the moment #Sandy #PrayforNY http://t.co/Ro0X6YMh\n", @@ -46336,7 +41610,7 @@ "#newyork #sandy #hope #love #rainbow #help #nyc 🗽🌇🌈 http://t.co/DQuvctjF\n", "\n", "--------------------------------------------------------\n", - "newyork sandy hope love rainbow help nyc \n", + "new york sandy hope love rainbow help new york city \n", "\n", "\n", "Parking lot full of cabs flooded. #hurricane #sandy http://t.co/FDKFR83K\n", @@ -46348,13 +41622,13 @@ "Ayudenme a bajar mi trampolin que el #viento esta muy fuerte #sandy #ny #nj #newjersey #hurancan #tormenta # http://t.co/KIvHkWfM\n", "\n", "--------------------------------------------------------\n", - "ayudenme bajar trampolin viento fuerte sandy ny nj newjersey hurancan tormenta \n", + "ayudenme bajar trampolin viento fuerte sandy new york new jersey newjersey hurancan tormenta \n", "\n", "\n", "RushingWaters. #NYC #Sandy #Hurricane #Damage #PoorCar #Weather http://t.co/bfph3EHR\n", "\n", "--------------------------------------------------------\n", - "rushingwaters nyc sandy hurricane damage poorcar weather \n", + "rushingwaters new york city sandy hurricane damage poorcar weather \n", "\n", "\n", "http://t.co/SBVA8TrU #atlanticcity #sandy #hurricane\n", @@ -46390,7 +41664,7 @@ "No supero esta foto!!! :( #hurricane #sandy #wallstreet #newyork be safe plzzzz! http://t.co/rSJWldHP\n", "\n", "--------------------------------------------------------\n", - "supero foto hurricane sandy wallstreet newyork safe plzzzz \n", + "supero foto hurricane sandy wallstreet new york safe plzzzz \n", "\n", "\n", "Where that pic taken? RT @DaQueennnBee: My prayers \\355\\240\\275\\355\\271\\217 are with the ppl affected by #hurricane #sandy #godbless http://t.co/Pa4SBxnV\n", @@ -46399,16 +41673,10 @@ "pic taken \n", "\n", "\n", - "@OpieRadio: (Seaside Heights, NJ) http://t.co/LgnOEk1f (DB: HERE'S HOPING #SANDY CANCELS #JERSEYSHORE ) No more Sitch or Deena or Swoggie\n", - "\n", - "--------------------------------------------------------\n", - "seaside heights nj db hoping sandy cancels jerseyshore sitch deena swoggie \n", - "\n", - "\n", "Wow #Sandy imrickafox's photo http://t.co/mMKbkllA\n", "\n", "--------------------------------------------------------\n", - "wow sandy imrickafox photo \n", + "sandy imrickafox photo \n", "\n", "\n", "One thing worse than raining cats and dogs? Hailing taxis. Especially if they're these taxis: http://t.co/cXYdo9zQ #sandy\n", @@ -46420,31 +41688,31 @@ "#Sandy #NYC WTC Construction site flooding https://t.co/OJObE8IU\n", "\n", "--------------------------------------------------------\n", - "sandy nyc wtc construction site flooding \n", + "sandy new york city wtc construction site flooding \n", "\n", "\n", "#earth #hurricane #sandy #2012 http://t.co/eT8KpPEd\n", "\n", "--------------------------------------------------------\n", - "earth hurricane sandy 2012 \n", + "earth hurricane sandy012 \n", "\n", "\n", "Insane images of NYC #sandy http://t.co/pofBiCPN\n", "\n", "--------------------------------------------------------\n", - "insane images nyc sandy \n", + "insane images new york city sandy \n", "\n", "\n", "#Trampoline rentre à la maison, tu es bourré ! #sandy #usa #ouragan #trampoline http://t.co/9MHGxS1e\n", "\n", "--------------------------------------------------------\n", - "trampoline rentre à maison bourré sandy usa ouragan trampoline \n", + "trampoline rentrela maison bourré sandy usa ouragan trampoline \n", "\n", "\n", "NY right now !!! #sandy http://t.co/frEi8ukV\n", "\n", "--------------------------------------------------------\n", - "ny right sandy \n", + "new york right sandy \n", "\n", "\n", "#sandy #hurricane #prayers http://t.co/MHcWBthm\n", @@ -46456,7 +41724,7 @@ "First pic from #hurricane #sandy. #newyork #Brooklyn #flood #horrible. Taken by my friend Daniele. http://t.co/arlpCOv4\n", "\n", "--------------------------------------------------------\n", - "first pic hurricane sandy newyork brooklyn flood horrible taken friend daniele \n", + "first pic hurricane sandy new york brooklyn flood horrible taken friend daniele \n", "\n", "\n", "Seaside #hurricane #sandy #fu #seaside #beach #sad http://t.co/k3hToPNS\n", @@ -46474,13 +41742,13 @@ "My heart goes out to NYC today - picture courtesy of http://t.co/XfYW3Awy #sandy #nyc http://t.co/oNLABw88\n", "\n", "--------------------------------------------------------\n", - "heart goes nyc today picture courtesy sandy nyc \n", + "heart goes new york city today picture courtesy sandy new york city \n", "\n", "\n", "Mas del desastre http://t.co/NW4L7LDP H) Causa estragos #huracan #Sandy\"\n", "\n", "--------------------------------------------------------\n", - "mas desastre h causa estragos huracan sandy \n", + "desastre h causa estragos huracan sandy \n", "\n", "\n", "Can't believe these pics coming out of AC RT @twc_hurricane: Atlantic City under water http://t.co/YEMl5eUf #sandy\n", @@ -46492,13 +41760,13 @@ "East Village #Sandy #NYC http://t.co/Tm9dbpMx\n", "\n", "--------------------------------------------------------\n", - "east village sandy nyc \n", + "east village sandy new york city \n", "\n", "\n", "World Trade Center under water #sandy #hurracaine #storm #flood #instagram #nyc #emergency http://t.co/cHeLO2ej\n", "\n", "--------------------------------------------------------\n", - "world trade center water sandy hurracaine storm flood instagram nyc emergency \n", + "world trade center water sandy hurracaine storm flood instagram new york city emergency \n", "\n", "\n", "If you look closely at this photo of #Hurricane #Sandy, you can see my house. http://t.co/lpaYyKq4 #frankenstorm\n", @@ -46522,7 +41790,7 @@ "This could've been ur situation last night! Better safe than sorry. #Sandy was only whack to some of us. She http://t.co/q56wIk2c\n", "\n", "--------------------------------------------------------\n", - "could ur situation last night better safe sorry sandy whack us \n", + "could situation last night better safe sorry sandy whack us \n", "\n", "\n", "My hood. Sandy's coming for me! “@misterdisco: Scariest picture of #Sandy: Brooklyn Bridge Park, very much submerged. http://t.co/w9kn1B0W”\n", @@ -46546,7 +41814,7 @@ "Queens NYC... #sandy. http://t.co/hfy1f6xw\n", "\n", "--------------------------------------------------------\n", - "queens nyc sandy \n", + "queens new york city sandy \n", "\n", "\n", "Awesome usatoday's photo #sandy http://t.co/mPMBBJHB\n", @@ -46576,37 +41844,31 @@ "Una aseguradora va a estar muy triste. #Sandy #NYC http://t.co/fxCMby4Y vía @eduardo_g\n", "\n", "--------------------------------------------------------\n", - "aseguradora va triste sandy nyc vía \n", + "aseguradora va triste sandy new york city vía \n", "\n", "\n", "#newyork #yellow #cabs #sandy a true #heartbreak http://t.co/zGsBDihS\n", "\n", "--------------------------------------------------------\n", - "newyork yellow cabs sandy true heartbreak \n", + "new york yellow cabs sandy true heartbreak \n", "\n", "\n", "20Th street ave c #sandy #hurricanes #nyc #city #werd #real #OLABOLATV http://t.co/fYfSRaUs\n", "\n", "--------------------------------------------------------\n", - "20th street ave c sandy hurricanes nyc city real olabolatv \n", + "0th street ave sandy hurricanes new york city city real olabolatv \n", "\n", "\n", "#sandy #NYC manguititi como andas ???? http://t.co/W51uhvCq\n", "\n", "--------------------------------------------------------\n", - "sandy nyc manguititi andas \n", - "\n", - "\n", - "whoa \"@armitasunaryo: Sandy aftermath 😱 #repost #sandy be strong NYC 🙏😇 http://t.co/ufbHJ7Rk\n", - "\n", - "--------------------------------------------------------\n", - "whoa sandy aftermath repost sandy strong nyc \n", + "sandy new york city manguititi andas \n", "\n", "\n", "Shit got real #everglades or #newyorkcity #fuckthepolice #statefarm #sandy #hurricane http://t.co/px2TuQ52\n", "\n", "--------------------------------------------------------\n", - "shit got real everglades newyorkcity fuckthepolice statefarm sandy hurricane \n", + "shit got real everglades new yorkcity fuckthepolice statefarm sandy hurricane \n", "\n", "\n", "Praying that no one gets Hurts! RT @heykim: #Wow- #NJ Boardwalk #AtlanticCity http://t.co/aaVVwM3g h/t @Alex_Ogle @TheMatthewKeys #sandy\n", @@ -46615,22 +41877,16 @@ "praying one gets hurts \n", "\n", "\n", - "#Sandy was there :-( #NY http://t.co/2gv1T3Oz via @thecoolhunter\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", - "\n", - "\n", "Damn pic of NY.... #pray #sandy #godbless http://t.co/mEtqBzH3\n", "\n", "--------------------------------------------------------\n", - "damn pic ny pray sandy godbless \n", + "damn pic new york pray sandy godbless \n", "\n", "\n", "Hoboken New Jersey. #Sandy 2012 http://t.co/V1SV6gRo\n", "\n", "--------------------------------------------------------\n", - "hoboken new jersey sandy 2012 \n", + "hoboken new jersey sandy012 \n", "\n", "\n", "AND WELCOME TO THE JERSEY SHORE. #sandy http://t.co/KjYQpY2t\n", @@ -46648,25 +41904,31 @@ "Water taxi #nyc #sandy http://t.co/4DUrrbW3\n", "\n", "--------------------------------------------------------\n", - "water taxi nyc sandy \n", + "water taxi new york city sandy \n", "\n", "\n", "3 mâts emporté par #Sandy http://t.co/RbSN0cBN\n", "\n", "--------------------------------------------------------\n", - "3 mâts emporté par sandy \n", + "mâts emporté sandy \n", "\n", "\n", "FDNY search & rescue @ 14 St & Ave C #eastvillage #manhattan is #underwater!! #sandy photo via @time http://t.co/t22sBH6z\n", "\n", "--------------------------------------------------------\n", - "fdny search rescue 14 st ave c eastvillage manhattan underwater sandy photo \n", - "\n", + "fdny search rescue 4 st ave eastvillage manhattan underwater sandy photo \n", "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "Wow terrible...Seaside #Sandy http://t.co/zhgVT0ro\n", "\n", "--------------------------------------------------------\n", - "wow terrible seaside sandy \n", + "terrible seaside sandy \n", "\n", "\n", "rivetingradiance's photo http://t.co/E561YIUs this is crazy what #sandy did\n", @@ -46681,22 +41943,10 @@ "dwyer mess sandy \n", "\n", "\n", - "#hurricane #sandy #nyc http://t.co/ZCZ9b4GJ\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy nyc \n", - "\n", - "\n", - "Crazy #Sandy http://t.co/pZ2GLPbO\n", - "\n", - "--------------------------------------------------------\n", - "crazy sandy \n", - "\n", - "\n", "#manhattan #newyorkcity #sandy http://t.co/lfFh4nvy” ODDIO GUARDATE COME SI STA RIDICENDO NEW YORK! AMERICA SIAMO CON VOI CE LA FARETE!!\n", "\n", "--------------------------------------------------------\n", - "manhattan newyorkcity sandy oddio guardate come si sta ridicendo new york america siamo voi ce farete \n", + "manhattan new yorkcity sandy oddio guardate come si sta ridicendo new york america siamo voi farete \n", "\n", "\n", "#Sandy overwhelmed the new #WTC site. http://t.co/8cIKbJzA\n", @@ -46708,25 +41958,25 @@ "#Sandy #US #NY http://t.co/6DytR2bi\n", "\n", "--------------------------------------------------------\n", - "sandy us ny \n", + "sandy us new york \n", "\n", "\n", "Wow... ammarseyadi's photo http://t.co/Vi1ncLcJ #Sandy\n", "\n", "--------------------------------------------------------\n", - "wow ammarseyadi photo sandy \n", + "ammarseyadi photo sandy \n", "\n", "\n", "#manhattan #ny #sandy http://t.co/XacKeXZI\n", "\n", "--------------------------------------------------------\n", - "manhattan ny sandy \n", + "manhattan new york sandy \n", "\n", "\n", "NYC under water #Sandy http://t.co/MYFULoU4\n", "\n", "--------------------------------------------------------\n", - "nyc water sandy \n", + "new york city water sandy \n", "\n", "\n", "mcintosh's photo http://t.co/plZs5VLv #instagram #sandy\n", @@ -46744,13 +41994,13 @@ "Stop. #newyork #nyc #sandy http://t.co/29hUu5vD\n", "\n", "--------------------------------------------------------\n", - "stop newyork nyc sandy \n", + "stop new york new york city sandy \n", "\n", "\n", "#nyc #14thStreet #sandy @ 14th Street http://t.co/4w6f2hHv\n", "\n", "--------------------------------------------------------\n", - "nyc 14thstreet sandy 14th street \n", + "nyc4thstreet sandy 4th street \n", "\n", "\n", "_thecoolhunter_'s photo http://t.co/AAbntD96 #flooding #cabs #sandy\n", @@ -46762,13 +42012,13 @@ "Seaside, NJ boardwalk. Gone. #sandy @ Seaside Boardwalk http://t.co/I1YNlZix\n", "\n", "--------------------------------------------------------\n", - "seaside nj boardwalk gone sandy seaside boardwalk \n", + "seaside new jersey boardwalk gone sandy seaside boardwalk \n", "\n", "\n", "Crazy! I'm still bugging #nyc #aftermath #sandy #cabs http://t.co/y8LXpTUQ\n", "\n", "--------------------------------------------------------\n", - "crazy still bugging nyc aftermath sandy cabs \n", + "crazy still bugging new york city aftermath sandy cabs \n", "\n", "\n", "What an incredible shot: (via @usatoday) http://t.co/QnDxH276 #Sandy\n", @@ -46780,7 +42030,7 @@ "Wow. usatoday's photo: http://t.co/kWZiFoL3 #sandy\n", "\n", "--------------------------------------------------------\n", - "wow usatoday photo sandy \n", + "usatoday photo sandy \n", "\n", "\n", "No wonder people are having a hard time getting a cab. #sandy \\nhttp://t.co/eCSDAYiN\n", @@ -46801,22 +42051,10 @@ "mmarzo photo sandy \n", "\n", "\n", - "o_O wow RT @EDuarteG: #Messy #Hurricane #Sandy #EastCoast #USA nasagoddard's photo http://t.co/cGgzb6UE\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "Flooded parking garage, #Sandy, financial district, NYC @usatoday's photo http://t.co/Yp0iwNG7\n", "\n", "--------------------------------------------------------\n", - "flooded parking garage sandy financial district nyc photo \n", - "\n", - "\n", - "Incredible! RT @NadiyaaAnd East Village #NYC #Sandy http://t.co/HZkRteuy\n", - "\n", - "--------------------------------------------------------\n", - "incredible \n", + "flooded parking garage sandy financial district new york city photo \n", "\n", "\n", "#sandy #twc #nbc http://t.co/CJ6fQrrZ\n", @@ -46828,7 +42066,7 @@ "Where I grew up is #destroyed #seaside #hights #casino #peir #hurricane #sandy #nj #myhome #nature #zombieap http://t.co/HrRJB8vp\n", "\n", "--------------------------------------------------------\n", - "grew destroyed seaside hights casino peir hurricane sandy nj myhome nature zombieap \n", + "grew destroyed seaside hights casino peir hurricane sandy new jersey myhome nature zombieap \n", "\n", "\n", "Awesome photo following #sandy http://t.co/3qeVcVav\n", @@ -46840,7 +42078,7 @@ "New York City taxis under water after #Sandy:\\nhttp://t.co/shywyPPe via bienglace\n", "\n", "--------------------------------------------------------\n", - "new york city taxis water sandy via bienglace \n", + "new york city taxis water sandy bienglace \n", "\n", "\n", "#sandy #hurricane from the Space... http://t.co/Yku2iTSl\n", @@ -46858,31 +42096,31 @@ "Goldman Sachs.. The 1 building with power. #Sandy http://t.co/BYyZ5ZbE\n", "\n", "--------------------------------------------------------\n", - "goldman sachs 1 building power sandy \n", + "goldman sachs building power sandy \n", "\n", "\n", "Surveillance video of a #newyorkcity subway tonight....flooded! #Sandy rages on. #BREAKING http://t.co/Jk0zPqLS\n", "\n", "--------------------------------------------------------\n", - "surveillance video newyorkcity subway tonight flooded sandy rages breaking \n", + "surveillance video new yorkcity subway tonight flooded sandy rages breaking \n", "\n", "\n", "#nyc after #sandy #superstorm blew through. All of our thoughts and prayers with those affected #pamoja #wea http://t.co/1D1xbdOX\n", "\n", "--------------------------------------------------------\n", - "nyc sandy superstorm blew thoughts prayers affected pamoja wea \n", + "new york city sandy superstorm blew thoughts prayers affected pamoja wea \n", "\n", "\n", "taxi sa NYC #Sandy http://t.co/BFB1mnR9\n", "\n", "--------------------------------------------------------\n", - "taxi sa nyc sandy \n", + "taxi new york city sandy \n", "\n", "\n", "On My Mama #Hurricanes Aint Nothing To Play With! #Lmao #Storm #Rain #Sandy #Funny #Lol #FL #Damn #Smh http://t.co/h1bFTtYu\n", "\n", "--------------------------------------------------------\n", - "mama hurricanes aint nothing play lmao storm rain sandy funny lol fl damn smh \n", + "mama hurricanes aint nothing play storm rain sandy funny fl damn \n", "\n", "\n", "A sea of yellow. http://t.co/e4fLSktT #Sandy\n", @@ -46894,7 +42132,7 @@ "Before and after, Jersey Shore. Via @krystalisabellaa #Sandy http://t.co/usGKqRH9\n", "\n", "--------------------------------------------------------\n", - "jersey shore via sandy \n", + "jersey shore sandy \n", "\n", "\n", "Lower Manhattan!! #SANDY #CRAZY #LIVELIFE http://t.co/71BRYIJJ\n", @@ -46906,13 +42144,13 @@ "#sandy #usa #eastcoast #2012 http://t.co/3XODqUOh\n", "\n", "--------------------------------------------------------\n", - "sandy usa eastcoast 2012 \n", + "sandy usa eastcoast012 \n", "\n", "\n", "#sandy #batterypark #Manhattan #NYC http://t.co/w1A8wjfu\n", "\n", "--------------------------------------------------------\n", - "sandy batterypark manhattan nyc \n", + "sandy batterypark manhattan new york city \n", "\n", "\n", "I dont think they wont be using this anymore #Sandy #IGotATreeOnMyHouse http://t.co/q5rByFCJ\n", @@ -46936,19 +42174,13 @@ "crazy shit! #NYC #Sandy http://t.co/3yVtjH82\n", "\n", "--------------------------------------------------------\n", - "crazy shit nyc sandy \n", + "crazy shit new york city sandy \n", "\n", "\n", "20th St Ave C Manhattan, NY! #Sandy http://t.co/b918Bb12\n", "\n", "--------------------------------------------------------\n", - "20th st ave c manhattan ny sandy \n", - "\n", - "\n", - "Casino pier #seaside #sandy http://t.co/NSkozjJ8\n", - "\n", - "--------------------------------------------------------\n", - "casino pier seaside sandy \n", + "0th st ave manhattan new york sandy \n", "\n", "\n", "Well that's a problem #hurricane #sandy http://t.co/srLTf9in\n", @@ -46960,7 +42192,7 @@ "The #Hudson #River has made #Hoboken, NJ, into one big pond! #sandy #NewJersey #Aftermath http://t.co/WhsmPOLI\n", "\n", "--------------------------------------------------------\n", - "hudson river made hoboken nj one big pond sandy newjersey aftermath \n", + "hudson river made hoboken new jersey one big pond sandy newjersey aftermath \n", "\n", "\n", "Que fuerte :s RT @sergiocarlo: #Sandy http://t.co/gIXwpCbI\n", @@ -46978,7 +42210,7 @@ "#sandy #nyc #OLABOLATV #damage http://t.co/xeuCWmQm\n", "\n", "--------------------------------------------------------\n", - "sandy nyc olabolatv damage \n", + "sandy new york city olabolatv damage \n", "\n", "\n", "#Sandy be crazy http://t.co/PYDFDZkb\n", @@ -46996,7 +42228,7 @@ "This crazy !!! #storm #flood #sandy @ 460 West 34th Street New York NY 10001 http://t.co/Gvc0U8W8\n", "\n", "--------------------------------------------------------\n", - "crazy storm flood sandy 460 west 34th street new york ny 10001 \n", + "crazy storm flood sandy west4th street new york ny0001 \n", "\n", "\n", "Seaside is done #Hurricane #Sandy #Disaster http://t.co/7CRDvquT\n", @@ -47008,19 +42240,19 @@ "#FDR #Sandy #NYC #Hurricane http://t.co/op31ipJX\n", "\n", "--------------------------------------------------------\n", - "fdr sandy nyc hurricane \n", + "fdr sandy new york city hurricane \n", "\n", "\n", "SMH #SANDY WTC CONSTRUCTION SITE FLOODED http://t.co/Dd1RLNyU\n", "\n", "--------------------------------------------------------\n", - "smh sandy wtc construction site flooded \n", + "sandy wtc construction site flooded \n", "\n", "\n", "A building defaced on 14th St NYC... #sandy WOW❗❗❗ http://t.co/AgonkqyS\n", "\n", "--------------------------------------------------------\n", - "building defaced 14th st nyc sandy wow \n", + "building defaced on4th st new york city sandy \n", "\n", "\n", "“@mediatwit: New York City taxis under water after #Sandy:\\nhttp://t.co/XfeDloO1 via bienglace” Gonna be tough to catch a cab!\n", @@ -47032,7 +42264,7 @@ "And then NYC followed suit...http://t.co/BtGTWutL #sandy\n", "\n", "--------------------------------------------------------\n", - "nyc followed suit sandy \n", + "new york city followed suit sandy \n", "\n", "\n", "#SeasideHeights Jersey Shore :( weh @sn00ki @djpaulyD #sandy #rip http://t.co/zGBrVyss\n", @@ -47050,7 +42282,7 @@ "Brooklyn Bridge #New #York #City #NYC #Brooklyn #Bridge #Sea #Hudson #Hurricane #sandy http://t.co/vXzpinXC\n", "\n", "--------------------------------------------------------\n", - "brooklyn bridge new york city nyc brooklyn bridge hudson hurricane sandy \n", + "brooklyn bridge new york city new york city brooklyn bridge hudson hurricane sandy \n", "\n", "\n", "Atlantic City: Underwater: http://t.co/8Jy0dMqW #sandy\n", @@ -47068,7 +42300,7 @@ "xdrewlevinsonx's photo http://t.co/mi007dyx seaside nj #sandy\n", "\n", "--------------------------------------------------------\n", - "xdrewlevinsonx photo seaside nj sandy \n", + "xdrewlevinsonx photo seaside new jersey sandy \n", "\n", "\n", "Всемирный торговый центр #Sandy \\n\\nkristinadeclue's photo http://t.co/4wCjCvsU\n", @@ -47080,13 +42312,13 @@ "Another crazy #sandy NYC flooding photo. RT @FusionRockRadio: RT @time's photo http://t.co/6COsBw0o”\n", "\n", "--------------------------------------------------------\n", - "another crazy sandy nyc flooding photo \n", + "another crazy sandy new york city flooding photo \n", "\n", "\n", "“@aaalshaikh: #NYC #sandy http://t.co/pPWlmEin”\\n\\nصورة توضح مستوى المياه بعد #إعصار_ساندي\n", "\n", "--------------------------------------------------------\n", - "صورة توضح مستوى المياه إعصار ساندي \n", + "صورة توضح مستوى المياه إعصارساندي \n", "\n", "\n", "Scariest picture I've seen so far of #Sandy: Brooklyn Bridge Park, very much submerged. http://t.co/TXn5Ca2q\n", @@ -47095,12 +42327,6 @@ "scariest picture seen far sandy brooklyn bridge park much submerged \n", "\n", "\n", - "oh #sandy http://t.co/k0WZ2COt\n", - "\n", - "--------------------------------------------------------\n", - "oh sandy \n", - "\n", - "\n", "Otra gran estampa del huracán #Sandy http://t.co/ZG6QnXAZ\n", "\n", "--------------------------------------------------------\n", @@ -47116,7 +42342,7 @@ "Ohh Nooo #Sandy needs to chill . http://t.co/caYztUyI\n", "\n", "--------------------------------------------------------\n", - "ohh nooo sandy needs chill \n", + "nooo sandy needs chill \n", "\n", "\n", "#cmbk #storm #sandy #yellow #cab http://t.co/U5gqvzjN\n", @@ -47128,7 +42354,7 @@ "Wow!!! World Trade Center Site is flooded. #sandy #nyc http://t.co/BrJ9KjJT\n", "\n", "--------------------------------------------------------\n", - "wow world trade center site flooded sandy nyc \n", + "world trade center site flooded sandy new york city \n", "\n", "\n", "The day after tomorrow. #sandy #uragano #apocalisse #usa #catastrofe #speechless http://t.co/aAXq6g45\n", @@ -47146,7 +42372,7 @@ "#taxi #cars #underwater #hurricane #Sandy #colors #iphoneonly #Facebook #newyork #NYC #FEMA #discovery #d http://t.co/Owbtlw8Z\n", "\n", "--------------------------------------------------------\n", - "taxi cars underwater hurricane sandy colors iphoneonly facebook newyork nyc fema discovery \n", + "taxi cars underwater hurricane sandy colors iphoneonly facebook new york new york city fema discovery \n", "\n", "\n", "Tell us again Republicans how union firefighters are overpaid? Pic: http://t.co/W7m5jSLF #Sandy rt @jljacobson @devbost\n", @@ -47158,7 +42384,7 @@ "Midtown Tunnel, Anonymous Photo #Sandy #nyc #Flood #Frankenstorm http://t.co/Ucw4EeP9\n", "\n", "--------------------------------------------------------\n", - "midtown tunnel anonymous photo sandy nyc flood frankenstorm \n", + "midtown tunnel anonymous photo sandy new york city flood frankenstorm \n", "\n", "\n", "Crazy pic of a parking lit of taxis thst got hit by #Sandy peterdavisnyc's photo http://t.co/nIqkGLvk\n", @@ -47167,12 +42393,6 @@ "crazy pic parking lit taxis thst got hit sandy peterdavisnyc photo \n", "\n", "\n", - "Ohhhh snap lol #hurricane #sandy http://t.co/P3SdX1V7\n", - "\n", - "--------------------------------------------------------\n", - "ohhhh snap lol hurricane sandy \n", - "\n", - "\n", "Flooding at the site of the WTC: https://t.co/KNMyOn9C #Sandy\n", "\n", "--------------------------------------------------------\n", @@ -47182,13 +42402,7 @@ "Wow. All those yellow cabs... #sandy #nyc http://t.co/km6PvlSb\n", "\n", "--------------------------------------------------------\n", - "wow yellow cabs sandy nyc \n", - "\n", - "\n", - "Sandy = no joke. RT @Newyorkist: Atlantic City: Underwater: http://t.co/Co0e3TCl #sandy\n", - "\n", - "--------------------------------------------------------\n", - "sandy joke \n", + "yellow cabs sandy new york city \n", "\n", "\n", "View Atlantic City under water!RT @newyorkist: Atlantic City: Underwater: http://t.co/EqmtVzFe #sandy\n", @@ -47203,12 +42417,6 @@ "crazy rain brooklyn sandy \n", "\n", "\n", - "What a picture! RT @johnNBCLA: #USCG released this photo of a sinking HMS Bounty today @nbcla #Sandy http://t.co/fyQ5DiiP\n", - "\n", - "--------------------------------------------------------\n", - "picture \n", - "\n", - "\n", "#USCG released this photo of a sinking HMS Bounty today @nbcla #Sandy http://t.co/UptvTaFd\n", "\n", "--------------------------------------------------------\n", @@ -47218,19 +42426,19 @@ "Image of ambulances waiting at NYU medical center to evacute patients #sandy #nyu #nyc #fdny http://t.co/VnQuVo8I\n", "\n", "--------------------------------------------------------\n", - "image ambulances waiting nyu medical center evacute patients sandy nyu nyc fdny \n", + "image ambulances waiting nyu medical center evacute patients sandy nyu new york city fdny \n", "\n", "\n", "#صورة توضح الفيضان في احدى شوارع نيويورك شارع ٣٤ #إعصار_ساندي “#34th #nyc #flood #hurricane #sandy\\nby joepas914 \\nhttp://t.co/R2gpNptm\n", "\n", "--------------------------------------------------------\n", - "صورة توضح الفيضان احدى شوارع نيويورك شارع ٣٤ إعصار ساندي 34th nyc flood hurricane sandy joepas914 \n", + "صورة توضح الفيضان احدى شوارع نيويورك شارع٤ إعصارساندي 4th new york city flood hurricane sandy joepas914 \n", "\n", "\n", "Breaking: Water Floods WTC Construction Site #hurricane #sandy #nyc #wtc http://t.co/SGpxabUq (via @NewYorkPost)\n", "\n", "--------------------------------------------------------\n", - "breaking water floods wtc construction site hurricane sandy nyc wtc \n", + "breaking water floods wtc construction site hurricane sandy new york city wtc \n", "\n", "\n", "#waterworld #nycflood2012 #sandy #hurricane http://t.co/51g2JwRM\n", @@ -47248,7 +42456,7 @@ "تكاسي تحت المياه بعد اعصار ساندي #غرد_بصورة \\nRT @LauraLoo23: Taxis underwater- Hoboken #Sandy http://t.co/EjgdvEu1\n", "\n", "--------------------------------------------------------\n", - "تكاسي تحت المياه اعصار ساندي غرد بصورة \n", + "تكاسي تحت المياه اعصار ساندي غردبصورة \n", "\n", "\n", "Bye Bye Seaside... #Sandy http://t.co/RaFuNTYG\n", @@ -47266,19 +42474,13 @@ "NYC cabs under water. #Sandy http://t.co/ZWysQquK\n", "\n", "--------------------------------------------------------\n", - "nyc cabs water sandy \n", + "new york city cabs water sandy \n", "\n", "\n", "Shit crazy out here #Sandy #NewYork by iamjustshaka http://t.co/a0CJxbUE\n", "\n", "--------------------------------------------------------\n", - "shit crazy sandy newyork iamjustshaka \n", - "\n", - "\n", - "Fuck me #sandy http://t.co/zxSyt5C7\n", - "\n", - "--------------------------------------------------------\n", - "fuck sandy \n", + "shit crazy sandy new york iamjustshaka \n", "\n", "\n", "Organized chaos? #stumbleupon #sandy http://t.co/6S74IGhu\n", @@ -47296,37 +42498,31 @@ "Zona Cero #NY #Sandy #Noticias http://t.co/XOVrcUv6\n", "\n", "--------------------------------------------------------\n", - "zona cero ny sandy noticias \n", + "zona cero new york sandy noticias \n", "\n", "\n", "Instagram turned up this photo of 20th St. and Ave C looking seriously flooded: http://t.co/IMUvprWp #Sandy\n", "\n", "--------------------------------------------------------\n", - "instagram turned photo 20th st ave c looking seriously flooded sandy \n", + "instagram turned photo of0th st ave looking seriously flooded sandy \n", "\n", "\n", "East village!!! Crazy shit #newyorkcity #sandy http://t.co/CUN13Pqi\n", "\n", "--------------------------------------------------------\n", - "east village crazy shit newyorkcity sandy \n", - "\n", - "\n", - "Best #Sandy photo yet RT @michaelhayes Roller coaster swept out to sea (Seaside Heights, NJ) http://t.co/cqNYDnSQ\n", - "\n", - "--------------------------------------------------------\n", - "best sandy photo yet \n", + "east village crazy shit new yorkcity sandy \n", "\n", "\n", "esto es un rio no una calle en NYC #sandy http://t.co/JZCx4g2a\n", "\n", "--------------------------------------------------------\n", - "rio calle nyc sandy \n", + "rio calle new york city sandy \n", "\n", "\n", "Yikes pic of #nyc damage #sandy #mta http://t.co/mFdf9L1v\n", "\n", "--------------------------------------------------------\n", - "yikes pic nyc damage sandy mta \n", + "pic new york city damage sandy mta \n", "\n", "\n", "Tur att barnen inte var kvar i den #sandy http://t.co/Cws9vpK1\n", @@ -47350,19 +42546,13 @@ "_thecoolhunter_'s photo http://t.co/S2IOMArz #sandy #NYC #hurricane\n", "\n", "--------------------------------------------------------\n", - "thecoolhunter photo sandy nyc hurricane \n", + "thecoolhunter photo sandy new york city hurricane \n", "\n", "\n", "MT @Hoeboma As expected, the boardwalk gone uptown #Atlantic City, http://t.co/vr6Ixz8p #Sandy #njwx #nywx #hurricane\n", "\n", "--------------------------------------------------------\n", - "expected boardwalk gone uptown atlantic city sandy njwx nywx hurricane \n", - "\n", - "\n", - "usatoday's photo http://t.co/7Q9i80YM wow... #sandy\n", - "\n", - "--------------------------------------------------------\n", - "usatoday photo wow sandy \n", + "mt expected boardwalk gone uptown atlantic city sandy njwx nywx hurricane \n", "\n", "\n", "I GOT A TRAMPOLINE ON MY HOUSE! #Sandy http://t.co/S4mdsbwD\n", @@ -47392,7 +42582,7 @@ "Wow. Can't believe this happened.. So sad! #NYC #Sandy http://t.co/16iDwD39\n", "\n", "--------------------------------------------------------\n", - "wow believe happened sad nyc sandy \n", + "believe happened sad new york city sandy \n", "\n", "\n", "Atlantic City --> RT @hoeboma: Damn the boardwalk gone uptown http://t.co/eP84xGEZ #Sandy\n", @@ -47404,13 +42594,13 @@ "NY taxis at La Guardia Airport via @carlosmelia #Sandy http://t.co/dcQqoXVa @taxioviedo @jordimusoy @taxisigualada @zaviev\n", "\n", "--------------------------------------------------------\n", - "ny taxis guardia airport sandy \n", + "new york taxis guardia airport sandy \n", "\n", "\n", "jcruz123's photo is CRAZY! I can't believe NYC is under water. #Sandy http://t.co/hrJ5v5tx\n", "\n", "--------------------------------------------------------\n", - "jcruz123 photo crazy believe nyc water sandy \n", + "jcruz123 photo crazy believe new york city water sandy \n", "\n", "\n", "Water... #sandy #screengrabs http://t.co/2rxuY4tV\n", @@ -47428,13 +42618,7 @@ "After a hurricane, comes a rainbow. #manhattan #hurricane #sandy #rainbow #newyork #forealz http://t.co/Ikwpn3NS\n", "\n", "--------------------------------------------------------\n", - "hurricane comes rainbow manhattan hurricane sandy rainbow newyork forealz \n", - "\n", - "\n", - "so scary #sandy http://t.co/EtlvXSD6\n", - "\n", - "--------------------------------------------------------\n", - "scary sandy \n", + "hurricane comes rainbow manhattan hurricane sandy rainbow new york forealz \n", "\n", "\n", "Lower Manhattan #sandy http://t.co/PDODNmIk\n", @@ -47446,7 +42630,7 @@ "What is happening to my city?! #nyc #underwater #sandy #holyhurricane http://t.co/piFsrnqh\n", "\n", "--------------------------------------------------------\n", - "happening city nyc underwater sandy holyhurricane \n", + "happening city new york city underwater sandy holyhurricane \n", "\n", "\n", "Flooded Cabs #sandy #frankenstorm http://t.co/2BvkvBzh\n", @@ -47458,7 +42642,7 @@ "#NYC #Sandy #taxicab http://t.co/x91m8FAK\n", "\n", "--------------------------------------------------------\n", - "nyc sandy taxicab \n", + "new york city sandy taxicab \n", "\n", "\n", "Can't believe #SeasideHeights coaster. #sandy http://t.co/INcmP4MO\n", @@ -47485,12 +42669,6 @@ "doorsixteen photo bad news sandy sandy \n", "\n", "\n", - "nasagoddard's photo http://t.co/jj3gXUQl #sandy\n", - "\n", - "--------------------------------------------------------\n", - "nasagoddard photo sandy \n", - "\n", - "\n", "They paved paradise and put up a parking lot. #sandy http://t.co/YQdAjuPY\n", "\n", "--------------------------------------------------------\n", @@ -47500,7 +42678,7 @@ "прибрежные улицы Атлантик-Сити. 200 км до Нью-Йорка http://t.co/vtbJsyf6 #Sandy #NJ\n", "\n", "--------------------------------------------------------\n", - "прибрежные улицы атлантик сити 200 км нью йорка sandy nj \n", + "прибрежные улицы атлантик сити км нью йорка sandy nj \n", "\n", "\n", "http://t.co/xLbv5d39 H) Causa estragos #huracan #Sandy\n", @@ -47524,19 +42702,19 @@ "NYC yellow cabs! #Sandy http://t.co/gp38ArfA\n", "\n", "--------------------------------------------------------\n", - "nyc yellow cabs sandy \n", + "new york city yellow cabs sandy \n", "\n", "\n", "omg ! #sandy #hurricane #trampoline #stuck #crazy #wow #damn http://t.co/0m7hMoU7\n", "\n", "--------------------------------------------------------\n", - "omg sandy hurricane trampoline stuck crazy wow damn \n", + "sandy hurricane trampoline stuck crazy damn \n", "\n", "\n", "I'm shocked that the East Village was flooded that badly, wow. #sandy #nyc http://t.co/mQbUelZH\n", "\n", "--------------------------------------------------------\n", - "shocked east village flooded badly wow sandy nyc \n", + "shocked east village flooded badly sandy new york city \n", "\n", "\n", "Woah #Sandy! RT @jonahlupton: Crazy picture of the day (from my friend in NJ) http://t.co/vJEjZprd\n", @@ -47548,7 +42726,7 @@ "Lower East Side NYC. Keep all those who have been affected by #sandy in your thoughts and prayers. http://t.co/7vnoJdfg\n", "\n", "--------------------------------------------------------\n", - "lower east side nyc keep affected sandy thoughts prayers \n", + "lower east side new york city keep affected sandy thoughts prayers \n", "\n", "\n", "@dgyog Holy Crap! This is in Chelsea! RT@KIKECALVO Live from NYC: 8th Avenue where building facade collapses http://t.co/8y7lNDY7 #sandy\n", @@ -47560,19 +42738,19 @@ "Parking garage in NYC financial district #Sandy via @USAToday http://t.co/hSBTGzGT\n", "\n", "--------------------------------------------------------\n", - "parking garage nyc financial district sandy \n", + "parking garage new york city financial district sandy \n", "\n", "\n", "Hahahhaha one of the pics from the news websites, sandy sucks but this is pretty funny! Taken in milford abo http://t.co/nKJ4QY3Q\n", "\n", "--------------------------------------------------------\n", - "hahahhaha one pics news websites sandy sucks pretty funny taken milford abo \n", + "hahahone pics news websites sandy sucks pretty funny taken milford abo \n", "\n", "\n", "20th St & Ave C - Hang in there #sandy http://t.co/Vvo0Vluy http://t.co/xeAek3Ur\n", "\n", "--------------------------------------------------------\n", - "20th st ave c hang sandy \n", + "0th st ave hang sandy \n", "\n", "\n", "#Sandy she's a beast in the mornings.. http://t.co/5LjhZfsx\n", @@ -47584,7 +42762,7 @@ "Water pouring in the NYC subway. Prayers for #newyork #eastcoast #sandystorm #hurricane #fb http://t.co/jwgbSdUP\n", "\n", "--------------------------------------------------------\n", - "water pouring nyc subway prayers newyork eastcoast sandystorm hurricane fb \n", + "water pouring new york city subway prayers new york eastcoast sandystorm hurricane fb \n", "\n", "\n", "The photos that @time has been sharing of #sandy are among my favorites to follow. You? http://t.co/ippUbIE1\n", @@ -47608,7 +42786,7 @@ "Funtown Pier in #seaside is gone., #sandy #nj #jerseyshore http://t.co/VShl7M7R\n", "\n", "--------------------------------------------------------\n", - "funtown pier seaside gone sandy nj jerseyshore \n", + "funtown pier seaside gone sandy new jersey jerseyshore \n", "\n", "\n", "Hang in there! #sandy http://t.co/kQtGmEui\n", @@ -47626,7 +42804,7 @@ "I was there yesterday and everything was normal. I guess anything can happen in a day. #hurricane #NYC http://t.co/lX0NamDv\n", "\n", "--------------------------------------------------------\n", - "yesterday everything normal guess anything happen day hurricane nyc \n", + "yesterday everything normal guess anything happen day hurricane new york city \n", "\n", "\n", "From East to west village the water damage of #Sandy http://t.co/Fs8iSAe1\n", @@ -47644,7 +42822,7 @@ "HURRICANE DESTRUCTION: thanks to my Twitter family for sharing. This is Ave C & 8th street in NYC! Evacuatio http://t.co/lAm4Zh5F\n", "\n", "--------------------------------------------------------\n", - "hurricane destruction thanks twitter family sharing ave c 8th street nyc evacuatio \n", + "hurricane destruction thanks twitter family sharing ave street new york city evacuatio \n", "\n", "\n", "Least fun trampoline, thanks to #sandy “@geniousmac: miri_4_president's photo http://t.co/QkGZjzPU wow!! Trampoline in the power lines :o”\n", @@ -47656,13 +42834,13 @@ "Deadly #floods in Red-hook #Brooklyn #NewYork.. #Hurricane #Sandy already on the roll. #Lord watch over us h http://t.co/Lo0CDKYb\n", "\n", "--------------------------------------------------------\n", - "deadly floods red hook brooklyn newyork hurricane sandy already roll lord watch us h \n", + "deadly floods red hook brooklyn new york hurricane sandy already roll lord watch us h \n", "\n", "\n", "East Village NYC - this is unreal! My heart goes out to all those affected by #sandy #mothernature #flooding http://t.co/fZK3pqYh\n", "\n", "--------------------------------------------------------\n", - "east village nyc unreal heart goes affected sandy mothernature flooding \n", + "east village new york city unreal heart goes affected sandy mothernature flooding \n", "\n", "\n", "Crazy shot from @thecoolhunter of cabs in a car park after #sandy http://t.co/IGyJ6FGA\n", @@ -47680,13 +42858,13 @@ "Beautiful. MT \"@GalleryBooks Hope ur all safe & sound. Post #Sandy rainbow in nyc courtesy of @atrandom @kurtdietrich http://t.co/M0Xk5zMZ\"\n", "\n", "--------------------------------------------------------\n", - "beautiful hope ur safe sound post sandy rainbow nyc courtesy \n", + "beautiful mt hope safe sound post sandy rainbow new york city courtesy \n", "\n", "\n", "Tumblr makes pictures tell bigger stories then words. Found this pic flying around in cyberspace http://t.co/M8fpXy10 #Nyc #Sandy #Cab\n", "\n", "--------------------------------------------------------\n", - "tumblr makes pictures tell bigger stories words found pic flying around cyberspace nyc sandy cab \n", + "tumblr makes pictures tell bigger stories words found pic flying around cyberspace new york city sandy cab \n", "\n", "\n", "Early this morning a Double Rainbow in the middle of Manhattan... I believe in the mist of this Sandy Storm- http://t.co/H4UkCL9o\n", @@ -47710,13 +42888,13 @@ "HURRICANE DESTRUCTION: Thanks for sharing @ATWCurls 20th street in Manhattan.... I never knew you c http://t.co/kqAT7tLB\n", "\n", "--------------------------------------------------------\n", - "hurricane destruction thanks sharing 20th street manhattan never knew c \n", + "hurricane destruction thanks sharing0th street manhattan never knew \n", "\n", "\n", "Trying to keep track of #sandy and thinking about all my fam and friends in NY. mrsdquey delidel324 short http://t.co/uc6o2FjN\n", "\n", "--------------------------------------------------------\n", - "trying keep track sandy thinking fam friends ny mrsdquey delidel324 short \n", + "trying keep track sandy thinking fam friends new york mrsdquey delidel324 short \n", "\n", "\n", "AC not looking good pre-storm. Parts of the boardwalk washed away. #Sandy http://t.co/t5v45DMz\n", @@ -47728,7 +42906,7 @@ "Street flooding in #NYC during #Sandy >> karamiranduh's photo http://t.co/DSDfdcwJ\n", "\n", "--------------------------------------------------------\n", - "street flooding nyc sandy greater greater karamiranduh photo \n", + "street flooding new york city sandy karamiranduh photo \n", "\n", "\n", "#sandy is above the law http://t.co/QtoSRKBS\n", @@ -47740,7 +42918,7 @@ "My equivalent of the \"1,000 lawyers\" joke. #sandy http://t.co/eR2cbTsY\n", "\n", "--------------------------------------------------------\n", - "equivalent 1 000 lawyers joke sandy \n", + "equivalent lawyers joke sandy \n", "\n", "\n", "#Sandy damage in the east village last night. Thankfully floods have subsided. http://t.co/vo84aDyr\n", @@ -47770,7 +42948,7 @@ "Holy moly #sandy swamp in NYC http://t.co/fEqHQL0F\n", "\n", "--------------------------------------------------------\n", - "holy moly sandy swamp nyc \n", + "holy moly sandy swamp new york city \n", "\n", "\n", "HURRICANE DESTRUCTION: thanks to my social media family for sharing! The carousel in the Park underneath th http://t.co/fsug1uIT\n", @@ -47800,7 +42978,7 @@ "6abc news just put this up, in Connecticut ,the winds blew the trampoline and it got stuck #crazy #hurricane http://t.co/spNzms6H\n", "\n", "--------------------------------------------------------\n", - "6abc news put connecticut winds blew trampoline got stuck crazy hurricane \n", + "news put connecticut winds blew trampoline got stuck crazy hurricane \n", "\n", "\n", "#lyinMitt strikes again. Romney in June: We don’t need more firefighters http://t.co/ZiVjue4N FDNY tonight: http://t.co/es4cLIHG #Sandy\n", @@ -47836,25 +43014,25 @@ "FDR Parkway in NYC #prayfortheeastcoast #sandy http://t.co/SzPUfa43\n", "\n", "--------------------------------------------------------\n", - "fdr parkway nyc prayfortheeastcoast sandy \n", + "fdr parkway new york city prayfortheeastcoast sandy \n", "\n", "\n", "Lot full of yellow cabs in NJ #Smh #Sandy http://t.co/7UBkNC8b\n", "\n", "--------------------------------------------------------\n", - "lot full yellow cabs nj smh sandy \n", + "lot full yellow cabs new jersey sandy \n", "\n", "\n", "My NY friend sent this pic to me last night. #Manhattan #Sandy #PrayersUp http://t.co/2DkH8533\n", "\n", "--------------------------------------------------------\n", - "ny friend sent pic last night manhattan sandy prayersup \n", + "new york friend sent pic last night manhattan sandy prayersup \n", "\n", "\n", "#repost of taxi cab parking lot in NYC from @usatoday. Oh. Em. Gee. #sandy http://t.co/9VhdPoam\n", "\n", "--------------------------------------------------------\n", - "repost taxi cab parking lot nyc oh em gee sandy \n", + "repost taxi cab parking lot new york city gee sandy \n", "\n", "\n", "“@Butler_Speaks: #Sandy in NY... http://t.co/0JTkaGgC” damn that's a crazy pic\n", @@ -47878,7 +43056,7 @@ "NY Cabs Depo merged in water #news #sandy #nyc #live http://t.co/SKazWeT9\n", "\n", "--------------------------------------------------------\n", - "ny cabs depo merged water news sandy nyc live \n", + "new york cabs depo merged water news sandy new york city live \n", "\n", "\n", "Thoughts/Prayers to everyone affected by #Sandy & all the linemen & women working to restore power #Photo #Hoboken http://t.co/7814YVyS\n", @@ -47890,19 +43068,19 @@ "Omg new York, this is sad. May God have mercy. #sandy http://t.co/1ELFQu68\n", "\n", "--------------------------------------------------------\n", - "omg new york sad may god mercy sandy \n", + "new york sad may god mercy sandy \n", "\n", "\n", "This is Crazy! Lower East Side Manhatan! Borrowed The Pic #Sandy2012 #HurricaneSandy http://t.co/TaNOtQd7\n", "\n", "--------------------------------------------------------\n", - "crazy lower east side manhatan borrowed pic sandy2012 hurricanesandy \n", + "crazy lower east side manhatan borrowed pic sandy2012 hurricane sandy \n", "\n", "\n", "Praying everyone and my family downstate stays safe during the storm #Sandy #NYC http://t.co/tISz04ES\n", "\n", "--------------------------------------------------------\n", - "praying everyone family downstate stays safe storm sandy nyc \n", + "praying everyone family downstate stays safe storm sandy new york city \n", "\n", "\n", "Thanks #sandy my dreams of visiting the #Jerseyshore are now crushed! Prayers to all those affected by this http://t.co/Qj56g05W\n", @@ -47920,7 +43098,7 @@ "20th St & Ave C in Manhattan #Sandy http://t.co/8lmtYqCj\n", "\n", "--------------------------------------------------------\n", - "20th st ave c manhattan sandy \n", + "0th st ave manhattan sandy \n", "\n", "\n", "Terrifying flooding in the east village, my old neighborhood. http://t.co/BbFcsUYZ #sandy #nyc\n", @@ -47932,13 +43110,13 @@ "On the ground in Seaside Heights (via Brian Thompson, NBC) http://t.co/7nt1iJ2t #Sandy\n", "\n", "--------------------------------------------------------\n", - "ground seaside heights via brian thompson nbc sandy \n", + "ground seaside heights brian thompson nbc sandy \n", "\n", "\n", "#SANDY FUCKED SHIT UP #GODBLESS THOSE WHO PAST IN HER WRATH #O_K http://t.co/ATfcQmbZ\n", "\n", "--------------------------------------------------------\n", - "sandy fucked shit godbless past wrath k \n", + "sandy fucked shit godbless past wrath ok \n", "\n", "\n", "The Boardwalk is gone!!! 😳😳😳😳😳😳 #Sandy #AreYouABelieverYet http://t.co/y89oJi34\n", @@ -47950,13 +43128,13 @@ "This is crazy New York. Even in a hurricane, traffic is still heavy. #picoftheday #newyork #Sandy http://t.co/bOO3lHt9\n", "\n", "--------------------------------------------------------\n", - "crazy new york even hurricane traffic still heavy picoftheday newyork sandy \n", + "crazy new york even hurricane traffic still heavy picoftheday new york sandy \n", "\n", "\n", "The broadwalk in Atlantic City NJ are washed away 😱😨 #omg #sandy #Atlanticcity http://t.co/kLKQyqt1\n", "\n", "--------------------------------------------------------\n", - "broadwalk atlantic city nj washed away omg sandy atlanticcity \n", + "broadwalk atlantic city new jersey washed away sandy atlanticcity \n", "\n", "\n", "Picture from #NASA of #Hurricane #sandy over the east coast USA. Good luck my east coast peeps. Looks like http://t.co/7pxneeyV\n", @@ -47968,19 +43146,13 @@ "#Sandy in Brooklyn. wow. http://t.co/nkE6Cz8w\n", "\n", "--------------------------------------------------------\n", - "sandy brooklyn wow \n", - "\n", - "\n", - "“@MrAnthonyYoung E5th in lower Manhattan !!! #flooding #Sandy #storm #sandy2012 #water #bacon #pigs #nypd http://t.co/2tJTLp2x”\n", - "\n", - "--------------------------------------------------------\n", - "e5th lower manhattan flooding sandy storm sandy2012 water bacon pigs nypd \n", + "sandy brooklyn \n", "\n", "\n", "Omfg! Ave. C Lower Astride is drowned! Strong stench of diesel in the air! #Sandy #NYC http://t.co/ILbokRHU\n", "\n", "--------------------------------------------------------\n", - "omfg ave c lower astride drowned strong stench diesel air sandy nyc \n", + "ave lower astride drowned strong stench diesel air sandy new york city \n", "\n", "\n", "One of the craziest photos I've seen from #Sandy http://t.co/kffv2Hys\n", @@ -47998,19 +43170,19 @@ "Got real up in nyc #sandy #october2012 #flood #nyc http://t.co/WNp8CFR6\n", "\n", "--------------------------------------------------------\n", - "got real nyc sandy october2012 flood nyc \n", + "got real new york city sandy october2012 flood new york city \n", "\n", "\n", "A double rainbow touches down in Manhattan this morning, signaling an end to the #Frankenstorm #Sandy #NYC P http://t.co/8fQ53aWM\n", "\n", "--------------------------------------------------------\n", - "double rainbow touches manhattan morning signaling end frankenstorm sandy nyc p \n", + "double rainbow touches manhattan morning signaling end frankenstorm sandy new york city p \n", "\n", "\n", "I used to ride this roller coaster when I was kid. Funtown Pier in Seaside Heights, NJ is practically gone. #Sandy http://t.co/0j5ngYHX\n", "\n", "--------------------------------------------------------\n", - "used ride roller coaster kid funtown pier seaside heights nj practically gone sandy \n", + "used ride roller coaster kid funtown pier seaside heights new jersey practically gone sandy \n", "\n", "\n", "Firefighter heroes in a dramatic #Sandy rescue photo. http://t.co/gxZbOTuI\n", @@ -48028,13 +43200,13 @@ "Apparently it takes a hurricane to fix NYC traffic. RT @jimmyfallon Here comes the sun! #NYC @ 30 Rockefeller Plaza http://t.co/dlKAKxAj\n", "\n", "--------------------------------------------------------\n", - "apparently takes hurricane fix nyc traffic \n", + "apparently takes hurricane fix new york city traffic \n", "\n", "\n", "This is seaside pier in NJ #destruction #sandy #hurricane http://t.co/kmCTbyDZ\n", "\n", "--------------------------------------------------------\n", - "seaside pier nj destruction sandy hurricane \n", + "seaside pier new jersey destruction sandy hurricane \n", "\n", "\n", "I don't know which one is worse.. #Sandy http://t.co/eyP6pZWs https://t.co/wyRenpo9 http://t.co/Qv5uUxBI https://t.co/A0q85fzQ #Scaryassshit\n", @@ -48052,7 +43224,7 @@ "Facade of 92 8th Ave. building in lower Manhattan has collapsed. #sandy #NYC http://t.co/adCH1p2F\n", "\n", "--------------------------------------------------------\n", - "facade 92 8th ave building lower manhattan collapsed sandy nyc \n", + "facade of2 ave building lower manhattan collapsed sandy new york city \n", "\n", "\n", "Just saw this photo on twitter. #Sandy flooding the World Trade Center construction site. I http://t.co/TZ02FFZs\n", @@ -48064,13 +43236,13 @@ "So this was the rollercoaster in seaside.. smh #crazy #hurricane #sandy #the #struggle http://t.co/YCtl2z3g\n", "\n", "--------------------------------------------------------\n", - "rollercoaster seaside smh crazy hurricane sandy struggle \n", + "rollercoaster seaside crazy hurricane sandy struggle \n", "\n", "\n", "Heard this is 20th and Ave C in Manhattan, NYC! #WTF #Sandy #Pray http://t.co/5h8yrxC4\n", "\n", "--------------------------------------------------------\n", - "heard 20th ave c manhattan nyc wtf sandy pray \n", + "heard is0th ave manhattan new york city sandy pray \n", "\n", "\n", "This is some picture of the Sandy mess, but beautiful, in a way.\\nhttp://t.co/KGvRMFoN\n", @@ -48094,7 +43266,7 @@ "#EastVillage, wow RT @ChrisDaniels5 Another pic of the NYC flooding from late last night...via @jesseandgreg : http://t.co/Nehimhmp #sandy\n", "\n", "--------------------------------------------------------\n", - "eastvillage wow \n", + "eastvillage \n", "\n", "\n", "Roller coaster in seaside heights. #jerseyshore #sandy #creepy http://t.co/5ccghxfz\n", @@ -48124,13 +43296,13 @@ "That's ode. This is over by my moms #sandy #hurricane #12202012 http://t.co/DPvYBAjO\n", "\n", "--------------------------------------------------------\n", - "ode moms sandy hurricane 12202012 \n", + "ode moms sandy hurricane2202012 \n", "\n", "\n", "Ave C & 8th Street in the East Village. #nyc #hurricane #sandy #flooded #insane http://t.co/CkImfVA9\n", "\n", "--------------------------------------------------------\n", - "ave c 8th street east village nyc hurricane sandy flooded insane \n", + "ave street east village new york city hurricane sandy flooded insane \n", "\n", "\n", "Used to be the FDR drive. #sandy http://t.co/5aOFOwkQ\n", @@ -48148,13 +43320,13 @@ "A construction site in NYC overfloating #NYC #HurricaneSandy #Sandy http://t.co/4VlcJCLf\n", "\n", "--------------------------------------------------------\n", - "construction site nyc overfloating nyc hurricanesandy sandy \n", + "construction site new york city overfloating new york city hurricane sandy sandy \n", "\n", "\n", "- forget about finding a #Taxi in #NYC now ........ #Sandy #Hurricane http://t.co/IPv4sfTC\n", "\n", "--------------------------------------------------------\n", - "forget finding taxi nyc sandy hurricane \n", + "forget finding taxi new york city sandy hurricane \n", "\n", "\n", "Prayers out to the East 🙏 #Sandy #real http://t.co/A3LaA62t\n", @@ -48178,13 +43350,13 @@ "Reminds me of I Am Legend or The Last of Us :0 #me #photograph #photography #NYC #NY #newyorkcity #hurricane http://t.co/oBsBp8p8\n", "\n", "--------------------------------------------------------\n", - "reminds legend last us 0 photograph photography nyc ny newyorkcity hurricane \n", + "reminds legend last us photograph photography new york city new york new yorkcity hurricane \n", "\n", "\n", "Flooding in the East Village in NYC. I hope these drivers have insurance. What a vicious storm! #Sandy http://t.co/QZJuvkeB\n", "\n", "--------------------------------------------------------\n", - "flooding east village nyc hope drivers insurance vicious storm sandy \n", + "flooding east village new york city hope drivers insurance vicious storm sandy \n", "\n", "\n", "Damnnnnn :(RT @MarcDoneGrown23: #Sandy Odeed! Jersey in the Summer won't be the same until Seaside is repaired... http://t.co/Qx5qMQgc\n", @@ -48202,25 +43374,25 @@ "This is crazy NYC #sandy http://t.co/e3PwLo6Y\n", "\n", "--------------------------------------------------------\n", - "crazy nyc sandy \n", + "crazy new york city sandy \n", "\n", "\n", "Holy Smokes!! This is how 20th ST and Avenue C looks like... #sandy #hurricane http://t.co/B9PNpKgt\n", "\n", "--------------------------------------------------------\n", - "holy smokes 20th st avenue c looks like sandy hurricane \n", + "holy smokes how0th st avenue looks like sandy hurricane \n", "\n", "\n", "Sunny NYC after the storm! Pic courtesy of @ryanseacrest #sandy #nyc #rainbow #Godspromise http://t.co/ajrM1PXA\n", "\n", "--------------------------------------------------------\n", - "sunny nyc storm pic courtesy sandy nyc rainbow godspromise \n", + "sunny new york city storm pic courtesy sandy new york city rainbow godspromise \n", "\n", "\n", "This pic is from My Sister who is In long island #newyork please keep her In #prayer. #sandy http://t.co/COr1C8r8\n", "\n", "--------------------------------------------------------\n", - "pic sister long island newyork please keep prayer sandy \n", + "pic sister long island new york please keep prayer sandy \n", "\n", "\n", "New York City these days \"@JasmineSolano: After the fire in Breezy Point, Queens. photo - Shannon Stapleton // #Sandy http://t.co/Ovv1eq1F\"\n", @@ -48232,19 +43404,19 @@ "Was just sent this picture from the East Village (Alphabet City C & 8th st) via @AdamGilman #Sandy #Flooded http://t.co/juR1TezF\n", "\n", "--------------------------------------------------------\n", - "sent picture east village alphabet city c 8th st sandy flooded \n", + "sent picture east village alphabet city st sandy flooded \n", "\n", "\n", "Record breaking 13.88 feet of water at Battery Park... Old record was 10.02 back in 1960 from Hurricane Donn http://t.co/mzJwdZWs\n", "\n", "--------------------------------------------------------\n", - "record breaking 13 88 feet water battery park old record 10 02 back 1960 hurricane donn \n", + "record breaking38 feet water battery park old record was02 back in960 hurricane donn \n", "\n", "\n", "NYC Firemen search for people trapped in their cars at 14th street and Avenue C in Manhattan: http://t.co/wYUjjMEF #Sandy @TIME\n", "\n", "--------------------------------------------------------\n", - "nyc firemen search people trapped cars 14th street avenue c manhattan sandy \n", + "new york city firemen search people trapped cars at4th street avenue manhattan sandy \n", "\n", "\n", "Can't authenticate pic, but stunning if unaltered. Flooding of the World Trade redevelopment construction site: http://t.co/sduIrNcH #sandy\n", @@ -48256,37 +43428,37 @@ "Crazy pic. Cabs underwater in NYC. #Sandy http://t.co/TBLlEuTT\n", "\n", "--------------------------------------------------------\n", - "crazy pic cabs underwater nyc sandy \n", + "crazy pic cabs underwater new york city sandy \n", "\n", "\n", "Ain't nobody gettin round in NYC now! #Sandy\\n\\nhttp://t.co/E3q1f6sX\n", "\n", "--------------------------------------------------------\n", - "nobody gettin round nyc sandy \n", + "nobody gettin round new york city sandy \n", "\n", "\n", "#sandy causing havoc in #NYC no bueno!!! http://t.co/Psy7g9gy\n", "\n", "--------------------------------------------------------\n", - "sandy causing havoc nyc bueno \n", + "sandy causing havoc new york city bueno \n", "\n", "\n", "89th and 1st, Upper East of Manhattan, NYC. Taken by my sis from her apt #sandy #hurricane http://t.co/keTQtnuy\n", "\n", "--------------------------------------------------------\n", - "89th first upper east manhattan nyc taken sis apt sandy hurricane \n", + "9th first upper east manhattan new york city taken sis apt sandy hurricane \n", "\n", "\n", "Wow! A parking lot full of taxis in NYC, flooded #Sandy --> @nationalpost's photo http://t.co/I2Cujn4R\n", "\n", "--------------------------------------------------------\n", - "wow parking lot full taxis nyc flooded sandy photo \n", + "parking lot full taxis new york city flooded sandy photo \n", "\n", "\n", "Taxis in NJ! #Sandy http://t.co/AqQGzMip\n", "\n", "--------------------------------------------------------\n", - "taxis nj sandy \n", + "taxis new jersey sandy \n", "\n", "\n", "#Sandy Odeed! Jersey in the Summer won't be the same until Seaside is repaired... http://t.co/8dR2OHvW\n", @@ -48298,19 +43470,19 @@ "It's real in NYC #sandy glad I'm in the chi ;) http://t.co/NLsNDWBg\n", "\n", "--------------------------------------------------------\n", - "real nyc sandy glad chi \n", + "real new york city sandy glad chi \n", "\n", "\n", "This happened in Chelsea!! WTF???? This is truuuue!!! #sandyhurricane #sandy #hurricane #nyc #newyork #manha http://t.co/PwfHfBgj\n", "\n", "--------------------------------------------------------\n", - "happened chelsea wtf truuuue sandyhurricane sandy hurricane nyc newyork manha \n", + "happened chelsea truuuue sandyhurricane sandy hurricane new york city new york \n", "\n", "\n", "NYC cabs parked in a lot. #sandy http://t.co/wn669pLH\n", "\n", "--------------------------------------------------------\n", - "nyc cabs parked lot sandy \n", + "new york city cabs parked lot sandy \n", "\n", "\n", "A Parking Garage In The Financial District In New York... #Sandy #AnarchyMoneyRules http://t.co/TKkRvg9c\n", @@ -48322,13 +43494,13 @@ "There's always a rainbow after the rain ☔🌈⚡ #NYC #Sandy #rainbow http://t.co/yd1w6qWV\n", "\n", "--------------------------------------------------------\n", - "always rainbow rain nyc sandy rainbow \n", + "always rainbow rain new york city sandy rainbow \n", "\n", "\n", "Gotta love it when ur TRAMPOLINE ends up in the electrical wires #Sandy http://t.co/546ipXki\n", "\n", "--------------------------------------------------------\n", - "gotta love ur trampoline ends electrical wires sandy \n", + "gotta love trampoline ends electrical wires sandy \n", "\n", "\n", "Sandy leaves death and destruction in its wake. Amazing images http://t.co/Yj5I0FBP #sandy http://t.co/EAnjxJZ0\n", @@ -48343,22 +43515,16 @@ "event passes think whole new set reasons awe fdny sandy \n", "\n", "\n", - "“@BordenFaith: Seaside is ruined 😿 so sad. And my favorite log flume is gone #sandy http://t.co/2mBdsnMY” this is crazy\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", - "\n", - "\n", "East Manhattan NYC at the moment... Prayers to everyone out in the Atlantic Coast! #Sandy hdangling dangling ttp://t.co/4HN1h17l\n", "\n", "--------------------------------------------------------\n", - "east manhattan nyc moment prayers everyone atlantic coast sandy hdangling dangling ttp co 4hn1h17l \n", + "east manhattan new york city moment prayers everyone atlantic coast sandy hdangling dangling ttp co1h17l \n", "\n", "\n", "Ave C Lower eastside of NY... Keep them in your prayers. #Sandy http://t.co/QihRzvKm\n", "\n", "--------------------------------------------------------\n", - "ave c lower eastside ny keep prayers sandy \n", + "ave lower eastside new york keep prayers sandy \n", "\n", "\n", "Crazy events on the East Coast. Wish everyone the best out there. http://t.co/xQkAkR82 #sandy #frankenstorm\n", @@ -48376,7 +43542,7 @@ "Taxi terminal in Hoboken, NJ. (Not my photo.) #Sandy http://t.co/ALGf97M2\n", "\n", "--------------------------------------------------------\n", - "taxi terminal hoboken nj photo sandy \n", + "taxi terminal hoboken new jersey photo sandy \n", "\n", "\n", "#sandy got this building in Chelsea looking like a doll house! Whole facade got blown off! http://t.co/aaioPogO\n", @@ -48388,13 +43554,13 @@ "Yellow taxies in #NY #sandy @ New York http://t.co/Dx8DElrQ\n", "\n", "--------------------------------------------------------\n", - "yellow taxies ny sandy new york \n", + "yellow taxies new york sandy new york \n", "\n", "\n", "Now this pic is not a joke!! This is lower Manhattan.. Yikes!! #sandy is not playing http://t.co/2pR5ulBW\n", "\n", "--------------------------------------------------------\n", - "pic joke lower manhattan yikes sandy playing \n", + "pic joke lower manhattan sandy playing \n", "\n", "\n", "Just passed the dangling crane. Crazy and scary. If that falls.. Can't/don't want to imagine. #Sandy #Stor http://t.co/Euk7NbOz\n", @@ -48412,13 +43578,13 @@ "A double rainbow in NYC 🌈🌈😇Thank God #sandy is leaving http://t.co/ohkXyApR\n", "\n", "--------------------------------------------------------\n", - "double rainbow nyc thank god sandy leaving \n", + "double rainbow new york city thank god sandy leaving \n", "\n", "\n", "Couldn't really picture what a hurricane in NYC would be like, now I can o_O http://t.co/9xRtNnQJ\n", "\n", "--------------------------------------------------------\n", - "really picture hurricane nyc would like \n", + "really picture hurricane new york city would like oo \n", "\n", "\n", "This gives new meaning to the term \"water taxi\" http://t.co/H4OipkKi #Sandy #NYC\n", @@ -48436,19 +43602,13 @@ "From a friend in NY. #Sandy http://t.co/9bN6MVz3\n", "\n", "--------------------------------------------------------\n", - "friend ny sandy \n", + "friend new york sandy \n", "\n", "\n", "After the storm comes a rainbow. Heal soon NY❤ #rainbowovernyc after #sandy http://t.co/WcNs1o1Q\n", "\n", "--------------------------------------------------------\n", - "storm comes rainbow heal soon ny rainbowovernyc sandy \n", - "\n", - "\n", - "THIS IS CRAZY!!!!! #Sandy http://t.co/Q9kMjmFT\n", - "\n", - "--------------------------------------------------------\n", - "crazy sandy \n", + "storm comes rainbow heal soon new york rainbowovernyc sandy \n", "\n", "\n", "Crazy! A parking lot full if cabs in Hoboken - photo credit unknown #sandy http://t.co/BmDSsUdb\n", @@ -48460,19 +43620,19 @@ "Via a friend on facebook, this is a flooded taxicab lot in NYC. #hurricanesandy http://t.co/wsEbneJ6\n", "\n", "--------------------------------------------------------\n", - "via friend facebook flooded taxicab lot nyc hurricanesandy \n", + "friend facebook flooded taxicab lot new york city hurricane sandy \n", "\n", "\n", "A pic of the East Village in Manhattan from a friend of a friend. #Sandy #nyc http://t.co/eyaNkj8b\n", "\n", "--------------------------------------------------------\n", - "pic east village manhattan friend friend sandy nyc \n", + "pic east village manhattan friend friend sandy new york city \n", "\n", "\n", "This is in Milford, CT & is the reason why u need to secure stuff b4 the storm! #hurricanesandy http://t.co/ZVpi0tF5\n", "\n", "--------------------------------------------------------\n", - "milford ct reason need secure stuff b4 storm hurricanesandy \n", + "milford ct reason need secure stuff b4 storm hurricane sandy \n", "\n", "\n", "#fdny search lower manhattan for people trapped in cars. #sandy #hurricane #superstorm #frankenstorm http://t.co/MWpz3SV7\n", @@ -48484,13 +43644,13 @@ "#Sandy is killing it on #34th st in #NYC. So, glad I moved....praying for yallz.... #HashemYishmor http://t.co/KdhO1FgJ\n", "\n", "--------------------------------------------------------\n", - "sandy killing 34th st nyc glad moved praying yallz hashemyishmor \n", + "sandy killing on4th st new york city glad moved praying yallz hashemyishmor \n", "\n", "\n", "Taxis sit in a #flooded lot after #Hurricane #Sandy hit on October 30, 2012 in Hoboken, #New #Jersey. http://t.co/sEVUvZHQ\n", "\n", "--------------------------------------------------------\n", - "taxis sit flooded lot hurricane sandy hit october 30 2012 hoboken new jersey \n", + "taxis sit flooded lot hurricane sandy hit october02 hoboken new jersey \n", "\n", "\n", "Double rainbow over Manhattan. A reminder that God is good, all the time. #Sandy http://t.co/AHtWtYpn\n", @@ -48502,7 +43662,7 @@ "Incredible pic from NYC - iconic cabs under submerged in water http://t.co/ScHdPa3T #sandy\n", "\n", "--------------------------------------------------------\n", - "incredible pic nyc iconic cabs submerged water sandy \n", + "incredible pic new york city iconic cabs submerged water sandy \n", "\n", "\n", "Cabs parked in a lot in #hoboken apres #sandy http://t.co/5rmunJxQ\n", @@ -48514,13 +43674,7 @@ "#FDNY heroes brave #Hurricane #Sandy #flood #waters on 14th Ave in #Manhattan #NYC to search for p @ NYC, NY http://t.co/4rakKlwG\n", "\n", "--------------------------------------------------------\n", - "fdny heroes brave hurricane sandy flood waters 14th ave manhattan nyc search p nyc ny \n", - "\n", - "\n", - "That is crazy. #Sandy RT @YourAnonNews: FDR Parkway in NYC http://t.co/lZgpGJHr\n", - "\n", - "--------------------------------------------------------\n", - "crazy sandy \n", + "fdny heroes brave hurricane sandy flood waters on4th ave manhattan new york city search p new york city new york \n", "\n", "\n", "What #Sandy left in iconic New York: @YourAnonNews http://t.co/yks8srsv\n", @@ -48532,7 +43686,7 @@ "peterdavisnyc's photo http://t.co/1oOcikyF NYC Cabs in the aftermath of #sandy\n", "\n", "--------------------------------------------------------\n", - "peterdavisnyc photo nyc cabs aftermath sandy \n", + "peterdavisnyc photo new york city cabs aftermath sandy \n", "\n", "\n", "the fallen World Trade Center now washed in floodwaters #sandy http://t.co/PfKZgSvj\n", @@ -48544,13 +43698,13 @@ "This is scary and mind boggling to see. East Village. #nyc #Sandy http://t.co/vRaBL2ux\n", "\n", "--------------------------------------------------------\n", - "scary mind boggling see east village nyc sandy \n", + "scary mind boggling see east village new york city sandy \n", "\n", "\n", "Shit just got REAL in the East coast. God bless everyone in Sandy's way. #sandy #eastcoast #storm #ny 💦☁☔🌊🚣🚓 http://t.co/l3Uo9D0R\n", "\n", "--------------------------------------------------------\n", - "shit got real east coast god bless everyone sandy way sandy eastcoast storm ny \n", + "shit got real east coast god bless everyone sandy way sandy eastcoast storm new york \n", "\n", "\n", "Mother Nature is so powerful, boats on the train tracks #sandy http://t.co/n5k7ylSN http://t.co/stogjvxe\n", @@ -48568,13 +43722,13 @@ "#FDR and 34th st. in #NYC. Unbelievable amount of flooding from #Sandy. http://t.co/D2fOzQAM\n", "\n", "--------------------------------------------------------\n", - "fdr 34th st nyc unbelievable amount flooding sandy \n", + "fdr and4th st new york city unbelievable amount flooding sandy \n", "\n", "\n", "If there is one photo that could describe a hurricane in NYC, this is it: http://t.co/lkyRpWLN via @USATODAY #Sandy\n", "\n", "--------------------------------------------------------\n", - "one photo could describe hurricane nyc sandy \n", + "one photo could describe hurricane new york city sandy \n", "\n", "\n", "The gory sight of #hurricane #Sandy Please pray for them http://t.co/5VjIPfmO\n", @@ -48604,13 +43758,13 @@ "Woah, NYC flooded http://t.co/ve7wL7wx #Sandy (not my photo, I'm in London)\n", "\n", "--------------------------------------------------------\n", - "woah nyc flooded sandy photo london \n", + "woah new york city flooded sandy photo london \n", "\n", "\n", "Wow! Flooding in the subway #NYC because of Hurricane #Sandy :( http://t.co/mNU7ay9w\n", "\n", "--------------------------------------------------------\n", - "wow flooding subway nyc hurricane sandy \n", + "flooding subway new york city hurricane sandy \n", "\n", "\n", "Praying for the people who live in these Chelsea apts #sandy #notnormal http://t.co/9lmlTNas\n", @@ -48649,28 +43803,10 @@ "also suffering sandy jamaica \n", "\n", "\n", - "... Damn “@YourAnonNews: Spare a thought for #Jamaica #sandy http://t.co/U1mocMPw <- #SufferingKnowsNoBorders”\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", - "\n", - "\n", - "@VizFoSho: Spare a thought for #Jamaica #sandy http://t.co/174wDl37\n", - "\n", - "--------------------------------------------------------\n", - "spare thought jamaica sandy \n", - "\n", - "\n", - "@YourAnonNews: Spare a thought for #Jamaica #sandy http://t.co/c2fuwaja <- #SufferingKnowsNoBorders damn Jamaica too?\n", - "\n", - "--------------------------------------------------------\n", - "spare thought jamaica sandy less sufferingknowsnoborders damn jamaica \n", - "\n", - "\n", "Spare a thought for #Jamaica #sandy http://t.co/LRwpGO42 <- SufferingKnowsNoBorders\n", "\n", "--------------------------------------------------------\n", - "spare thought jamaica sandy less sufferingknowsnoborders \n", + "spare thought jamaica sandy sufferingknowsnoborders \n", "\n", "\n", "Spare a thought for #Cuba #Sandy http://t.co/yrQPOed8\n", @@ -48685,12 +43821,6 @@ "spare thought jamaica sandy \n", "\n", "\n", - "Spare a thought for #Jamaica #sandy http://t.co/xrThZ8eq <- #SufferingKnowsNoBorders\n", - "\n", - "--------------------------------------------------------\n", - "spare thought jamaica sandy less sufferingknowsnoborders \n", - "\n", - "\n", "Message from Cuba .. #Sandy #Media #Cuba http://t.co/nXB675k0\n", "\n", "--------------------------------------------------------\n", @@ -48724,13 +43854,13 @@ "#mainstream #media look futher than only #usa there are more victims than only NY, Caribbean islands #saidnuff #SANDY http://t.co/Ub7BWFWh\n", "\n", "--------------------------------------------------------\n", - "mainstream media look futher usa victims ny caribbean islands saidnuff sandy \n", + "mainstream media look futher usa victims new york caribbean islands saidnuff sandy \n", "\n", "\n", "Dear Mainstream Media ... #cuba #newyork #sandy #media #reporting http://t.co/Dm2ccvwd\n", "\n", "--------------------------------------------------------\n", - "dear mainstream media cuba newyork sandy media reporting \n", + "dear mainstream media cuba new york sandy media reporting \n", "\n", "\n", "#cuba #Haïti #sandy #usa http://t.co/BVaiGvse\n", @@ -48760,7 +43890,7 @@ "Generous human spirit. MT @sophieraworth: Hoboken, New Jersey where most of the 50,000 residents lost power #sandy http://t.co/MRAHatYg\"\n", "\n", "--------------------------------------------------------\n", - "generous human spirit hoboken new jersey 50 000 residents lost power sandy \n", + "generous human spirit \n", "\n", "\n", "#priorities RT @sophieraworth: Great shot from Hoboken, New Jersey where most of the 50,000 residents lost power #sandy http://t.co/tfLcK3wz\n", @@ -48778,7 +43908,7 @@ "MT “@sophieraworth: Great shot from Hoboken, New Jersey where ... residents lost power #sandy http://t.co/RFtDTqxL” Sign of the times?\n", "\n", "--------------------------------------------------------\n", - "sign times \n", + "mt sign times \n", "\n", "\n", "Top pic! \"@sophieraworth: Great shot from Hoboken, New Jersey where most of the 50,000 residents lost power #sandy http://t.co/p5v9BE9U\"\n", @@ -48790,19 +43920,7 @@ "Great shot from Hoboken, New Jersey where most of the 50,000 residents lost power #sandy http://t.co/GMSC3JWP\n", "\n", "--------------------------------------------------------\n", - "great shot hoboken new jersey 50 000 residents lost power sandy \n", - "\n", - "\n", - "Amazing! MT @NBCNews: A mob of marathoners head over to Staten Island. No race They're going to help out instead #sandy http://t.co/B00YBVDP\n", - "\n", - "--------------------------------------------------------\n", - "amazing mob marathoners head staten island race going help instead sandy \n", - "\n", - "\n", - "@rickygervais MT@stephgosk: A mob of marathoners heading over to Staten Island. to help out instead. #sandy http://t.co/OxdO2NDb\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island help instead sandy \n", + "great shot hoboken new jersey the000 residents lost power sandy \n", "\n", "\n", "A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/nRsrfPC9 RT @nbcnews:...\n", @@ -48814,7 +43932,7 @@ "LOVITv@stephgosk: A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/OcmsAKoF\n", "\n", "--------------------------------------------------------\n", - "lovitv mob marathoners heading staten island race going help instead sandy \n", + "lovitv \n", "\n", "\n", "“@stephgosk: A mob of marathoners heading to Staten Island. No race They're going to help out instead. #sandy http://t.co/3Luza9kC” Brill.\n", @@ -48826,7 +43944,7 @@ "NOW we're talking! MT@stephgosk:A mob of marathoners heading over to Staten Island. No race!helping out instead.#sandy http://t.co/UHWR1Pmk\"\n", "\n", "--------------------------------------------------------\n", - "talking mta mob marathoners heading staten island race helping instead sandy \n", + "talking \n", "\n", "\n", "AWESOME!: \"@stephgosk: Mob of marathoners heading to Staten Island. No race They're going to help out instead. #sandy http://t.co/yhX67FLg\"\n", @@ -48835,48 +43953,12 @@ "awesome \n", "\n", "\n", - "Awesome. RT @NBCNewsmob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/XfqeARdd\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "#AwesomeSpirit RT @stephgosk: marathoners heading over to Staten Is. No race They're going to help out instead. #sandy http://t.co/6QhNL0Py\n", "\n", "--------------------------------------------------------\n", "awesomespirit \n", "\n", "\n", - "MT @stephgosk: A mob of marathoners heading over to Staten Island. No race. They're going to help out instead. #sandy http://t.co/JodMR4ER\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy \n", - "\n", - "\n", - "MT @stephgosk: A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/NlA8ITpa\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy \n", - "\n", - "\n", - "“@NBCNews: A mob of marathoners heading over 2 Staten Island. No race. Going to help out instead. #sandy http://t.co/WKt8jxSc” Awesome!\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", - "Love this RT @stephgosk: mob of marathoners heading to Staten Island. No race They're going to help out instead. #sandy http://t.co/6Uetq1mV\n", - "\n", - "--------------------------------------------------------\n", - "love \n", - "\n", - "\n", - "@stephgosk: A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/qmBkJJJD\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy \n", - "\n", - "\n", "A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/LQdPPMR5” #nice\n", "\n", "--------------------------------------------------------\n", @@ -48892,7 +43974,7 @@ "A mob of marathoners heading over to Staten Island. No race They're going to help out instead: http://t.co/dQWNNXNg\"” #Sandy #NewYork\n", "\n", "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy newyork \n", + "mob marathoners heading staten island race going help instead sandy new york \n", "\n", "\n", "A mob of marathoners heading over to Staten Island. No race They're going to help out instead via @nbcnews #sandy [PIC] http://t.co/N9TPMU0x\n", @@ -48901,16 +43983,10 @@ "mob marathoners heading staten island race going help instead sandy pic \n", "\n", "\n", - "“@BrianJCano A mob of marathoners heading over to Staten Island. No race They're going to help out instead. #sandy http://t.co/wdDMTl40”\n", - "\n", - "--------------------------------------------------------\n", - "mob marathoners heading staten island race going help instead sandy \n", - "\n", - "\n", "#poweron #poweroff Power is on or off in these parts of Manhattan #sandy #mapcidy 29th st 2nd ave http://t.co/tvXtuhCF\n", "\n", "--------------------------------------------------------\n", - "poweron poweroff power parts manhattan sandy mapcidy 29th st second ave \n", + "poweron poweroff power parts manhattan sandy mapcidy9th st second ave \n", "\n", "\n", "Cldn't be more proud of our team RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/POtAt5ov\n", @@ -48919,48 +43995,12 @@ "cldn proud team \n", "\n", "\n", - "@CarolineFeraday @PortiasVenice LOVE THIS! @SlimPaley: \"This must be what you meant about New Yorkers\" #Sandy #ILoveNY http://t.co/9TaGcscU”\n", - "\n", - "--------------------------------------------------------\n", - "love must meant new yorkers sandy iloveny \n", - "\n", - "\n", "@SlimPaley I love this email a friend sent me tonight; This must be what you meant about New Yorkers\"#Sandy #ILoveNY http://t.co/Hk0Ui3nn\"\n", "\n", "--------------------------------------------------------\n", "love email friend sent tonight must meant new yorkers sandy iloveny \n", "\n", "\n", - "@SlimPaley: I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy http://t.co/aYAJYxUy\\nLove it\n", - "\n", - "--------------------------------------------------------\n", - "love email friend sent tonight must meant new yorkers sandy love \n", - "\n", - "\n", - "“I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy #ILoveNY http://t.co/xLtf8kGs” @BJaffe\n", - "\n", - "--------------------------------------------------------\n", - "love email friend sent tonight must meant new yorkers sandy iloveny \n", - "\n", - "\n", - "Awesome “@boilerhit: “Love this email a friend sent; \"This must be what you meant about New Yorkers\" #Sandy http://t.co/FBpE6TEP” @BJaffe”\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", - "I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy #ILoveNY http://t.co/mhQE3hj4\n", - "\n", - "--------------------------------------------------------\n", - "love email friend sent tonight must meant new yorkers sandy iloveny \n", - "\n", - "\n", - "Love! RT @SlimPaley: I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy http://t.co/zIhavUTR\n", - "\n", - "--------------------------------------------------------\n", - "love \n", - "\n", - "\n", "Insane photo “@amoryn: Pretty unreal. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/w8hWpvkb””\n", "\n", "--------------------------------------------------------\n", @@ -48976,7 +44016,7 @@ "“@DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/fEJirxNH” wow!that's a pic\n", "\n", "--------------------------------------------------------\n", - "wow pic \n", + "pic \n", "\n", "\n", "Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/ErUg1V4T\n", @@ -48991,46 +44031,16 @@ "cont \n", "\n", "\n", - "Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/OhAd2mWj\"\n", - "\n", - "--------------------------------------------------------\n", - "pretty incredible yet check week cover photo sandy \n", - "\n", - "\n", - "What a pic! RT @DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/EPpYgwqT\n", - "\n", - "--------------------------------------------------------\n", - "pic \n", - "\n", - "\n", "Eep. RT @DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/Xwogu2X7\n", "\n", "--------------------------------------------------------\n", "eep \n", "\n", "\n", - "Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/aN8bixTy (via @DianeSawyer)\n", - "\n", - "--------------------------------------------------------\n", - "pretty incredible yet check week cover photo sandy \n", - "\n", - "\n", "@isaach Looks like the time lapse...MT @DianeSawyer: Pretty incredible. Check out this week's @NYMag cover photo #Sandy http://t.co/cMCOHjJ9\n", "\n", "--------------------------------------------------------\n", - "looks like time lapse pretty incredible check week cover photo sandy \n", - "\n", - "\n", - "@DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/avdNZcic/sending L*O*V*E!\n", - "\n", - "--------------------------------------------------------\n", - "pretty incredible yet check week cover photo sandy sending l v \n", - "\n", - "\n", - "“@DianeSawyer: Pretty incredible. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/LeiAGwmk” <- WOW!\n", - "\n", - "--------------------------------------------------------\n", - "less wow \n", + "looks like time lapse \n", "\n", "\n", "Pretty unreal. If you haven't yet- check out this week's @NYMag cover photo #Sandy http://t.co/iAR0iEkx”\n", @@ -49051,12 +44061,6 @@ "really something \n", "\n", "\n", - "this is awesome RT @joehas: So shines a good deed in a naughty world #Sandy http://t.co/uVLqPFRo\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "So shines a good deed in a naughty world #Sandy http://t.co/QXxYoRKB\n", "\n", "--------------------------------------------------------\n", @@ -49072,13 +44076,13 @@ "That’s NYC “@MeghanMutrie: People are awesome, even in the smallest ways. #Sandy http://t.co/uhyNXKXi”\n", "\n", "--------------------------------------------------------\n", - "nyc \n", + "new york city \n", "\n", "\n", "+1 #littlethings RT @MeghanMutrie: People are awesome, even in the smallest ways. #Sandy http://t.co/ChispOyu\n", "\n", "--------------------------------------------------------\n", - "1 littlethings \n", + "littlethings \n", "\n", "\n", "People are awesome, even in the smallest ways. #Sandy http://t.co/sV5zxiLm\n", @@ -49096,37 +44100,25 @@ "THIS is help \\nrt @UniRabbi beautiful picture shows acts of kindness brighten our world.was taken in Hoboken NJ. #Sandy http://t.co/mjhhfVGH\n", "\n", "--------------------------------------------------------\n", - "help rt beautiful picture shows acts kindness brighten world taken hoboken nj sandy \n", + "help beautiful picture shows acts kindness brighten world taken hoboken new jersey sandy \n", "\n", "\n", "This beautiful picture shows that little acts of kindness brighten our world. It was taken in Hoboken NJ. #Sandy http://t.co/UU7urjpS\n", "\n", "--------------------------------------------------------\n", - "beautiful picture shows little acts kindness brighten world taken hoboken nj sandy \n", + "beautiful picture shows little acts kindness brighten world taken hoboken new jersey sandy \n", "\n", "\n", "Come sempre ci sono vittime di serie A e di serie B... #Sandy RT“@HughKDavid: http://t.co/lCIU2UPC”\n", "\n", "--------------------------------------------------------\n", - "come sempre ci sono vittime di serie di serie b sandy \n", - "\n", - "\n", - "@TheRealNickMara: WOW!!! the jersey shore will never be the same so many good memories were made there.. #sandy http://t.co/WCHKc6Pc\n", - "\n", - "--------------------------------------------------------\n", - "wow jersey shore never many good memories made sandy \n", - "\n", - "\n", - "“@TheRealNickMara: WOW!!! the jersey shore will never be the same so many good memories were made there.. #sandy http://t.co/S77qSlYb” omg\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", + "come sempre ci sono vittime serie serie b sandy rt \n", "\n", "\n", "WOW!!! the jersey shore will never be the same so many good memories were made there.. #sandy http://t.co/jZCdEQIE\n", "\n", "--------------------------------------------------------\n", - "wow jersey shore never many good memories made sandy \n", + "jersey shore never many good memories made sandy \n", "\n", "\n", "@kyrasedgwick plz RT Heard #peeps running extension cords,ice,food,firewood,even cash to strangers #generosity #Sandy http://t.co/axPgsPKp\n", @@ -49135,18 +44127,6 @@ "plz \n", "\n", "\n", - "@Mruff221 plz RT Heard #peeps running extension cords,ice,food,firewood,even cash to strangers #generosity #Sandy http://t.co/GYunaf93\n", - "\n", - "--------------------------------------------------------\n", - "plz \n", - "\n", - "\n", - "@RealBarryEgan plzRT Heard #peeps running extension cords,ice,food,firewood,even cash to strangers #generosity #Sandy http://t.co/gy0tVuVa\n", - "\n", - "--------------------------------------------------------\n", - "plz \n", - "\n", - "\n", "Lower East side of Manhattan. So surreal. Praying for everyone effected by this tragedy. Help each other. #Sandy http://t.co/YZLrbdXZ\n", "\n", "--------------------------------------------------------\n", @@ -49156,13 +44136,13 @@ "PHOTO - AN OCEAN ON NY'S LOWER EAST SIDE. Never happened ever like this. #sandy #nyc http://t.co/GBPQ8myZ\n", "\n", "--------------------------------------------------------\n", - "photo ocean ny lower east side never happened ever like sandy nyc \n", + "photo ocean new york lower east side never happened ever like sandy new york city \n", "\n", "\n", "Lower East Side #NYC #SANDY http://t.co/jabo7jcg\n", "\n", "--------------------------------------------------------\n", - "lower east side nyc sandy \n", + "lower east side new york city sandy \n", "\n", "\n", "PHOTO: Lower East Side, flooded. \"Right now there is no way on or off the island...\" according to @CNN interview #Sandy http://t.co/YcTrJENT\n", @@ -49174,13 +44154,7 @@ "Bromance @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/pZvzcjHX\n", "\n", "--------------------------------------------------------\n", - "bromance talking pres obama needs nj roic friday evening sandy \n", - "\n", - "\n", - "@JRadakovich @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/CPxVfbQo”\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy \n", + "bromance \n", "\n", "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/bKviRulL” --- VOTE #obama2012\n", @@ -49189,12 +44163,6 @@ "vote obama2012 \n", "\n", "\n", - "WOW ... lol RT @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/Lr4lvI37\n", - "\n", - "--------------------------------------------------------\n", - "wow lol \n", - "\n", - "\n", "Working together! :)RT @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/wvScKzMi\n", "\n", "--------------------------------------------------------\n", @@ -49204,13 +44172,13 @@ "#Christie talking with #Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/3BKRSgFA\n", "\n", "--------------------------------------------------------\n", - "christie talking obama needs nj roic friday evening sandy \n", + "christie talking obama needs new jersey roic friday evening sandy \n", "\n", "\n", "Screw Romney - I am OK w/ Christie 2016 RT @GovChristie: Talking with Pres. Obama about needs in #NJ Fri eve. #Sandy http://t.co/W7N0ZFJi\n", "\n", "--------------------------------------------------------\n", - "screw romney ok w christie 2016 \n", + "screw romney ok w christie016 \n", "\n", "\n", "(While Giuliani charges against Obama)“@GovChristie: Talking with Pres. Obama about needs in #NJ Friday evening #Sandy http://t.co/93M2QwyP”\n", @@ -49246,7 +44214,7 @@ "No re-declaring for #Romney @GovChristie: Talking with Pres. Obama about needs in #NJ at ROIC Friday. #Sandy http://t.co/RLdMf4Gw\n", "\n", "--------------------------------------------------------\n", - "declaring romney talking pres obama needs nj roic friday sandy \n", + "declaring romney \n", "\n", "\n", "@realrudygulian \"@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/5EZPF7es\" #reality\n", @@ -49282,7 +44250,7 @@ "Thx 4 ur grit & fight 4 NJ“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening #Sandy http://t.co/kNhjuFE1”\n", "\n", "--------------------------------------------------------\n", - "thx 4 ur grit fight 4 nj \n", + "thx grit fight nj \n", "\n", "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/HooeGax2”{{ Well done, Sir.\n", @@ -49300,7 +44268,7 @@ "“@GovChristie:Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/whqsnYW0”<<the guv leads by example\n", "\n", "--------------------------------------------------------\n", - "less less guv leads example \n", + "guv leads example \n", "\n", "\n", "Still fat lying bastard. \"@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/Sgfn8bQ5\"\n", @@ -49315,24 +44283,6 @@ "help \n", "\n", "\n", - "@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/FCyPs2Am#rachelmaddow#edshow\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy rachelmaddow edshow \n", - "\n", - "\n", - "“AWESOME! @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/t8xt0sz7”\n", - "\n", - "--------------------------------------------------------\n", - "awesome talking pres obama needs nj roic friday evening sandy \n", - "\n", - "\n", - "@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/09CS5cpL\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy \n", - "\n", - "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/DbkOlj4E” #realleadership\n", "\n", "--------------------------------------------------------\n", @@ -49357,16 +44307,10 @@ "fascinating politics \n", "\n", "\n", - "@GovChristie:Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/s2E7e8am Hang in there and thanks.\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy hang thanks \n", - "\n", - "\n", "“BROMANCE Continues. \\n@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/pBIRpkti”\n", "\n", "--------------------------------------------------------\n", - "bromance continues talking pres obama needs nj roic friday evening sandy \n", + "bromance continues \n", "\n", "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/93TnA1mu” whose side is he on?????\n", @@ -49384,7 +44328,7 @@ "Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/lkM0JZvD @Mittromney\n", "\n", "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy \n", + "talking pres obama needs new jersey roic friday evening sandy \n", "\n", "\n", "Don't let FOX know. RT @GovChristie\\nTalking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/PEKvHbRX\n", @@ -49396,19 +44340,13 @@ "@legal2eagle Here's all 2tons of him @GovChristie\\nTalking w/PresObama abt needs in #NJ at the ROIC Fri evening. #Sandy http://t.co/KTayuoW2\n", "\n", "--------------------------------------------------------\n", - "2tons talking w presobama abt needs nj roic fri evening sandy \n", - "\n", - "\n", - "@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/T1PgZkNh” SO PROUD OF GOV.CHRISTIE!\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy proud gov christie \n", + "talking w presobamaneeds new jersey roic fri evening sandy \n", "\n", "\n", "hehe @GovChristie Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/3fIpfa1K\n", "\n", "--------------------------------------------------------\n", - "hehe talking pres obama needs nj roic friday evening sandy \n", + "hehe talking pres obama needs new jersey roic friday evening sandy \n", "\n", "\n", "Loving the bromance. RT @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/UUvyOX27\n", @@ -49420,7 +44358,7 @@ "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/UpHxMHqV”//new besties lol\n", "\n", "--------------------------------------------------------\n", - "new besties lol \n", + "new besties \n", "\n", "\n", "Whassup with the sudden @BarackObama lovefest? RINO? “@GovChristie: Talking with Obama about needs in #NJ. #Sandy http://t.co/Abb2soFT”\n", @@ -49432,13 +44370,13 @@ "Don't you know this man-love caused the storm?! #tcot @GovChristie: Talking with Pres. Obama about needs in #NJ. #Sandy http://t.co/1Q1jS3A0\n", "\n", "--------------------------------------------------------\n", - "know love caused storm tcot talking pres obama needs nj sandy \n", + "know love caused storm tcot \n", "\n", "\n", "“Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/VxR6Vz2E” @DetBunk #LeanWitIt\n", "\n", "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy leanwitit \n", + "talking pres obama needs new jersey roic friday evening sandy leanwitit \n", "\n", "\n", "#bipartisan RT @GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/sFe5AjD0\n", @@ -49447,12 +44385,6 @@ "bipartisan \n", "\n", "\n", - "@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/3M2RhAB0 #romney not happy!\n", - "\n", - "--------------------------------------------------------\n", - "talking pres obama needs nj roic friday evening sandy romney happy \n", - "\n", - "\n", "PBO present even when he's not :) RT @GovChristie Talking with Pres. Obama about needs in #NJ Friday evening. #Sandy http://t.co/xONorSmo\n", "\n", "--------------------------------------------------------\n", @@ -49492,13 +44424,13 @@ "Helping right wing heads explode 1 tweet at a time. RT @GovChristie: Talking w/ Obama about needs in #NJ Friday. #Sandy http://t.co/y67ZXYWK\n", "\n", "--------------------------------------------------------\n", - "helping right wing heads explode 1 tweet time \n", + "helping right wing heads explode tweet time \n", "\n", "\n", "What a great picture from Hoboken, NJ. eTrak is keeping the East coast in our thoughts and prayers! #Sandy http://t.co/gMuTV4nv\n", "\n", "--------------------------------------------------------\n", - "great picture hoboken nj etrak keeping east coast thoughts prayers sandy \n", + "great picture hoboken new jersey etrak keeping east coast thoughts prayers sandy \n", "\n", "\n", "Great picture “@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/B2RFHXpH”\n", @@ -49507,52 +44439,28 @@ "great picture \n", "\n", "\n", - "@Masri_Hearts: People who do things like this during Hurricane Sandy give me hope. http://t.co/8XMZ7BvU\" LOOOOL\n", - "\n", - "--------------------------------------------------------\n", - "people things like hurricane sandy give hope looool \n", - "\n", - "\n", - "God Bless them! RT @jeeveswilliams: People who do things like this during Hurricane Sandy give me hope. http://t.co/I8aKnH9Y\n", - "\n", - "--------------------------------------------------------\n", - "god bless \n", - "\n", - "\n", "People who do things like this during Hurricane Sandy give me hope. http://t.co/84XS08fv LOOOOL\n", "\n", "--------------------------------------------------------\n", - "people things like hurricane sandy give hope looool \n", - "\n", - "\n", - "“@jeeveswilliams: People who do things like this during Hurricane Sandy give me hope. http://t.co/jSoxTDeB” just amazing!\n", - "\n", - "--------------------------------------------------------\n", - "amazing \n", - "\n", - "\n", - "People who do things like this during Hurricane Sandy give me hope. http://t.co/oVC7ELW2\n", - "\n", - "--------------------------------------------------------\n", "people things like hurricane sandy give hope \n", "\n", "\n", "Incroyable photo en une du New York Magazine : Lower Manhattan plongé dans le noir après le passage de #Sandy : http://t.co/eNGIovn6\n", "\n", "--------------------------------------------------------\n", - "incroyable photo une new york magazine lower manhattan plongé dans noir après passage sandy \n", + "incroyable photo new york magazine lower manhattan plongé noir après passage sandy \n", "\n", "\n", "Incroyable photo de Manhattan Sud dans le noir en une du New York Magazine. #sandy #frankenstorm #nyc http://t.co/Htg3PdiY\n", "\n", "--------------------------------------------------------\n", - "incroyable photo manhattan sud dans noir une new york magazine sandy frankenstorm nyc \n", + "incroyable photo manhattan sud noir new york magazine sandy frankenstorm new york city \n", "\n", "\n", "Incroyable photo de Manhattan Sud dans le noir en une du New York Magazine #sandy http://t.co/Htg3PdiY\n", "\n", "--------------------------------------------------------\n", - "incroyable photo manhattan sud dans noir une new york magazine sandy \n", + "incroyable photo manhattan sud noir new york magazine sandy \n", "\n", "\n", "This photo is AMAZING: RT @tomjoubert: Incroyable photo en une du New York Magazine : Lower Manhattan... #Sandy : http://t.co/izBVwwwk\n", @@ -49564,7 +44472,7 @@ "Incroyable photo en une du New York Magazine. Manhattan plongé dans le noir après le passage de #Sandy via @tomjoubert http://t.co/zoE8X8ay\n", "\n", "--------------------------------------------------------\n", - "incroyable photo une new york magazine manhattan plongé dans noir après passage sandy \n", + "incroyable photo new york magazine manhattan plongé noir après passage sandy \n", "\n", "\n", "“@stephgosk: A mob of marathoners heading over to Staten Island. No race.... @nbcnightlynews #sandy http://t.co/EqZJ2Ram” my kind of mob!\n", @@ -49582,7 +44490,7 @@ "Friend in NYC sent me this pic. Very uplifting to see so many people helping one another out in times of need #Sandy http://t.co/OSTHWraR\n", "\n", "--------------------------------------------------------\n", - "friend nyc sent pic uplifting see many people helping one another times need sandy \n", + "friend new york city sent pic uplifting see many people helping one another times need sandy \n", "\n", "\n", "Dear mainstream media, #Sandy fucked us up too. Sincerely, Cuba http://t.co/Zo0D6ecC\n", @@ -49597,18 +44505,6 @@ "dear mainstream media sandy fucked us message cuba sandy cuba \n", "\n", "\n", - "Dear mainstream media, #Sandy fucked up us too. Sincerely, Cuba. http://t.co/vcMiPiO2\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", - "@ametistametist: Dear mainstream media, #Sandy fucked us up too. Sincerely, Cuba\" http://t.co/acY7IXAo\"\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", "USA först sen resten #mediablowjob RT @ametistametist \"Dear mainstream media, #Sandy fucked us up too. Sincerely, Cuba\" http://t.co/1cW6rE9I\n", "\n", "--------------------------------------------------------\n", @@ -49621,18 +44517,6 @@ "dear mainstream media sandy f us sincerely cuba sandy \n", "\n", "\n", - "Dear mainstream media, #Sandy fucked us up too. Sincerely, #Cuba. http://t.co/adn1LzFg\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", - "Dear mainstream media, Sandy fucked us up too. Sincerely, Cuba http://t.co/96SGP69Y\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", "Dear media, #Sandy fucked up us too. Sincerly, Cuba. http://t.co/VJnDmJfp\n", "\n", "--------------------------------------------------------\n", @@ -49645,24 +44529,12 @@ "sosad sotrue dear mainstream media sandy fucked us sincerely cuba \n", "\n", "\n", - "Dear Mainstream Media, Sandy Fucked Us Up Too. Sincerely, Cuba. http://t.co/iEaqhnIa\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", "Dear mainstream media: Sandy fucked us up too. Sincerely, Cuba. #ClimateChange http://t.co/IZK92kx2\n", "\n", "--------------------------------------------------------\n", "dear mainstream media sandy fucked us sincerely cuba climatechange \n", "\n", "\n", - "Dear mainstream media, #Sandy fucked us up too. Sincerely, Cuba\" http://t.co/9cjwu2iT\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media sandy fucked us sincerely cuba \n", - "\n", - "\n", "@officialkeith If only punjab radio had broadcast the news of #Sandy we wouldn't have this problem http://t.co/HfarBazm\n", "\n", "--------------------------------------------------------\n", @@ -49675,12 +44547,6 @@ "wbm announced sandy coming problem \n", "\n", "\n", - "@jayleno If WBM had announced Sandy was coming we wouldn't have this problem. http://t.co/wxfBgfsN\n", - "\n", - "--------------------------------------------------------\n", - "wbm announced sandy coming problem \n", - "\n", - "\n", "@stevemartintogo If WBAI had broadcast Sandy was coming, we wouldn't have this problem. http://t.co/5Y6rTY8Z\n", "\n", "--------------------------------------------------------\n", @@ -49696,19 +44562,19 @@ "afedersiniz ama bu sandy abd twitlerinden bana da gına geldi http://t.co/bYqWUsx7\n", "\n", "--------------------------------------------------------\n", - "afedersiniz ama bu sandy abd twitlerinden bana da gına geldi \n", + "afedersiniz ama bu sandy abd twitlerinden bana gına geldi \n", "\n", "\n", "“jimreedphoto: Latest cover for New York magazine was captured by Iwan Baan. Aerial view of NYC after #Sandy. http://t.co/E5m9Gps0”\n", "\n", "--------------------------------------------------------\n", - "jimreedphoto latest cover new york magazine captured iwan baan aerial view nyc sandy \n", + "jimreedphoto latest cover new york magazine captured iwan baan aerial view new york city sandy \n", "\n", "\n", "Latest cover for New York magazine was captured by Dutch photog Iwan Baan. Aerial view of NYC after #Sandy. http://t.co/Snhyl26O\n", "\n", "--------------------------------------------------------\n", - "latest cover new york magazine captured dutch photog iwan baan aerial view nyc sandy \n", + "latest cover new york magazine captured dutch photog iwan baan aerial view new york city sandy \n", "\n", "\n", "Atlantic City va a pasar a la historia. #Sandy || http://t.co/vo9QMlkY\n", @@ -49720,7 +44586,7 @@ "Wow. <3333 “@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/LSoUulyO /via @CarrieFairygirl”\n", "\n", "--------------------------------------------------------\n", - "wow less 3333 \n", + "3 \n", "\n", "\n", "Thank goodness for people who are kind #sandy http://t.co/xwwhEf7x /via @CarrieFairygirl /via @Alyssa_Milano\n", @@ -49729,30 +44595,12 @@ "thank goodness people kind sandy \n", "\n", "\n", - "Thank goodness for people who are kind @Alyssa_Milano #sandy http://t.co/1Q7M2Lnc\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", - "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/uOk5ELhM /via @CarrieFairygirl” This is awesome:)\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "Thank goodness for people who are kind #sandy http://t.co/iitYFTHM / En venezuela te cobrarian.....\n", "\n", "--------------------------------------------------------\n", "thank goodness people kind sandy venezuela cobrarian \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/IxL5v4jf /via @CarrieFairygirl anything to save time is nice\"\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy anything save time nice \n", - "\n", - "\n", "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/arPk8FgB /via @CarrieFairygirl” GOOD PEOPLE DO STILL EXIST!! :)\n", "\n", "--------------------------------------------------------\n", @@ -49774,7 +44622,7 @@ "<<Beauty in much chaos>> ... Thank goodness for people who are kind #sandy http://t.co/Sx2LykRF /via @CarrieFairygirl @Alyssa_Milano\n", "\n", "--------------------------------------------------------\n", - "less less beauty much chaos greater greater thank goodness people kind sandy \n", + "beauty much chaos thank goodness people kind sandy \n", "\n", "\n", "Sharing the love! RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/8fC2NQlZ /via @CarrieFairygirl\n", @@ -49786,13 +44634,7 @@ "#iminspired by this :) TY 4 sharing @Alyssa_Milano @CarrieFairygirl\\nThank goodness 4 people who are kind #sandy http://t.co/LO8FGysx\n", "\n", "--------------------------------------------------------\n", - "iminspired ty 4 sharing thank goodness 4 people kind sandy \n", - "\n", - "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/8Iun2AbI /via @CarrieFairygirl Still good ppl in the world ☺\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy still good ppl world \n", + "iminspired ty sharing thank goodness people kind sandy \n", "\n", "\n", "Very kind RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/Md48EkIS /via @CarrieFairygirl\n", @@ -49801,18 +44643,6 @@ "kind \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/fljvg6iY /via @CarrieFairygirl bet no republicans here!!!\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy bet republicans \n", - "\n", - "\n", - "Thank goodness for people who are kind #sandy http://t.co/6MR7263d /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", "How wonderful! RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/0qPaxlUo /via @CarrieFairygirl\n", "\n", "--------------------------------------------------------\n", @@ -49831,18 +44661,6 @@ "great see \n", "\n", "\n", - "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/iWTSOOk3 /via @CarrieFairygirl” << Love that!\n", - "\n", - "--------------------------------------------------------\n", - "less less love \n", - "\n", - "\n", - "+1 RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/3X8y6LjX /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "1 \n", - "\n", - "\n", "@MYGEEKTIME some people are nice “@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/cxsZ3Ack /via @CarrieFairygirl”\n", "\n", "--------------------------------------------------------\n", @@ -49861,30 +44679,6 @@ "kindness rule exception \n", "\n", "\n", - "Love this. RT @Alyssa_Milano\\nThank goodness for people who are kind #sandy http://t.co/Tw3uThfJ /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "love \n", - "\n", - "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/DPBRHvWP /via @CarrieFairygirl that's awesome\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy awesome \n", - "\n", - "\n", - "lol :') RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/pjSbZvpv /via @CarrieFairygirl”\n", - "\n", - "--------------------------------------------------------\n", - "lol \n", - "\n", - "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/ruJTlByX /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", "JPS would frolic...RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/fzWeoRVb /via @CarrieFairygirl\n", "\n", "--------------------------------------------------------\n", @@ -49903,12 +44697,6 @@ "cutest thing ever \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/G6ygkAUd /via @CarrieFairygirl I LOVE AMERICA\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy love america \n", - "\n", - "\n", "Awesome! So kind! \"@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/n7xHUyxD /via @CarrieFairygirl\"\n", "\n", "--------------------------------------------------------\n", @@ -49921,18 +44709,6 @@ "love awesomeness \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/oL4qqFo1 /via @CarrieFairygirl Some people are amazing\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy people amazing \n", - "\n", - "\n", - "Thank goodness for people who are #kind #sandy http://t.co/lgE71nRw /via @CarrieFairygirl @Alyssa_Milano\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/SLQBxCQY /via @CarrieFairygirl” love it #ryanair says no way !\n", "\n", "--------------------------------------------------------\n", @@ -49945,12 +44721,6 @@ "kind x \n", "\n", "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/2Spqenn2 /via @CarrieFairygirl @CarolineManzo reminds me ur fam\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy reminds ur fam \n", - "\n", - "\n", "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/po0O46wD /via @CarrieFairygirl” kind people are still around\n", "\n", "--------------------------------------------------------\n", @@ -49960,13 +44730,7 @@ "Be this guy/gal today peeps! <3 “@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/gTBo60dN /via @CarrieFairygirl”\n", "\n", "--------------------------------------------------------\n", - "guy gal today peeps less 3 \n", - "\n", - "\n", - "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/nyOvE2PB /via @CarrieFairygirl” so nice!\n", - "\n", - "--------------------------------------------------------\n", - "nice \n", + "guy gal today peeps \n", "\n", "\n", "So touching! RT @DreamCameTrue_: RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/yBaVo3FZ /via @CarrieFairygirl\n", @@ -49975,34 +44739,10 @@ "touching \n", "\n", "\n", - "Thank goodness for people who are kind #sandy http://t.co/Pc25SgSy /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", - "@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/WE72RVCE /via @CarrieFairygirl LOVE THIS!\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy love \n", - "\n", - "\n", "É, a humanidade ainda tem jeito. “@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/xwu5jSIg /via @CarrieFairygirl”\n", "\n", "--------------------------------------------------------\n", - "é humanidade ainda tem jeito \n", - "\n", - "\n", - "Thank goodness for people who are kind @Alyssa_Milano #sandy http://t.co/4KVRkeqi\n", - "\n", - "--------------------------------------------------------\n", - "thank goodness people kind sandy \n", - "\n", - "\n", - "THIS is amazing! RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/xIzaj5UN /via @CarrieFairygirl\n", - "\n", - "--------------------------------------------------------\n", - "amazing \n", + "humanidade ainda jeito \n", "\n", "\n", "Plug in Pals RT @Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/gXB0pHGX /via @CarrieFairygirl\n", @@ -50026,25 +44766,25 @@ "NY: The City and the Storm. The Look of Post-Sandy New York.... http://t.co/AL5UZXkm\n", "\n", "--------------------------------------------------------\n", - "ny city storm look post sandy new york \n", + "new york city storm look post sandy new york \n", "\n", "\n", "WhaaOo ! la Une incroyable du New York Magazine. The City and the superStorm #Sandy. Le sud de Manhattan coupé du monde http://t.co/PLwIiqhM\n", "\n", "--------------------------------------------------------\n", - "whaaoo une incroyable new york magazine city superstorm sandy sud manhattan coupé monde \n", + "whaaoo incroyable new york magazine city superstorm sandy sud manhattan coupé monde \n", "\n", "\n", "La une du New-York magazine sur Sandy : \"The City and the Storm\"... http://t.co/02l6s1Df\n", "\n", "--------------------------------------------------------\n", - "une new york magazine sur sandy city storm \n", + "new york magazine sandy city storm \n", "\n", "\n", "Sandy: New York bat Haïti http://t.co/m0TixcNe vía @liberation_info @arretsurimages & The city and the storm @NYMag http://t.co/IoYnhSWC\n", "\n", "--------------------------------------------------------\n", - "sandy new york bat haïti vía city storm \n", + "sandy new york bat haïti city storm \n", "\n", "\n", "@MaksimC check out this pic. Helping others even if it is for something simple as charging your phone. #Sandy http://t.co/8CEaesX3\n", @@ -50071,24 +44811,6 @@ "geeez \n", "\n", "\n", - "@LauraLoo23: Taxis underwater- Hoboken #Sandy http://t.co/DC5hvn69Crazy!\n", - "\n", - "--------------------------------------------------------\n", - "taxis underwater hoboken sandy \n", - "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Taxis underwater- Hoboken #Sandy http://t.co/gZRmFihx\n", - "\n", - "--------------------------------------------------------\n", - "taxis underwater hoboken sandy \n", - "\n", - "\n", "Espectacular imagen aérea de Nueva York durante el apagón 'Blackout' del huracán Sandy http://t.co/m18SegxS\n", "\n", "--------------------------------------------------------\n", @@ -50104,7 +44826,7 @@ "New York Hurricane Sandy 31 october 2012/ http://t.co/u5Vs8r9S http://t.co/2eufIAdL\n", "\n", "--------------------------------------------------------\n", - "new york hurricane sandy 31 october 2012 \n", + "new york hurricane sandy1 october012 \n", "\n", "\n", "Ground zero after super sandy http://t.co/CW9RVYFz\n", @@ -50116,13 +44838,13 @@ "Esto es NY después de SANDY ........ http://t.co/TG7CDOx0\n", "\n", "--------------------------------------------------------\n", - "ny después sandy \n", + "new york después sandy \n", "\n", "\n", "L'ouragan Sandy na pas ébranlé cette statue de Notre Dame. #GOD http://t.co/EHRMS3E8\n", "\n", "--------------------------------------------------------\n", - "l ouragan sandy pas ébranlé cette statue notre dame god \n", + "ouragan sandy ébranlé cette statue dame god \n", "\n", "\n", "Impresionante imagen tras el paso del huracán Sandy. http://t.co/HKxrzZzp\n", @@ -50140,7 +44862,7 @@ "Hurricane Sandy destroyed Boca Raton's beach. Sucked it up lol http://t.co/13JMNMjc\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy destroyed boca raton beach sucked lol \n", + "hurricane sandy destroyed boca raton beach sucked \n", "\n", "\n", "Don't freak out! Sandy from space via @cakewrecks https://t.co/0lHnGdBf\n", @@ -50164,7 +44886,7 @@ "30.10.2012. Радуга над многострадальным Манхэттеном, сигнализирующая, что ураган Sandy наконец-то покидает Нью-Йорк. http://t.co/MXQv6G9o\n", "\n", "--------------------------------------------------------\n", - "30 10 2012 радуга многострадальным манхэттеном сигнализирующая ураган sandy покидает нью йорк \n", + "радуга многострадальным манхэттеном сигнализирующая ураган sandy покидает нью йорк \n", "\n", "\n", "Dammit, Sandy. Thats just mean. RT “@1HCRFAN: @AlexAllTimeLow @zackalltimelow picture from home :/ http://t.co/aClxRtiX”\n", @@ -50188,7 +44910,7 @@ "Text RED CROSS to 90999 to donate $10 to all those affected by Hurricane Sandy. They need our help! #SandyHelp http://t.co/otbzV0xK\n", "\n", "--------------------------------------------------------\n", - "text red cross 90999 donate 10 affected hurricane sandy need help sandyhelp \n", + "text red cross to0999 donate 0 affected hurricane sandy need help sandyhelp \n", "\n", "\n", "Funniest sandy picture yet. http://t.co/eDOTqYKT\n", @@ -50200,7 +44922,7 @@ "New York City affected by Hurricane Sandy on October 31, 2012 http://t.co/Dwx9w9OM\n", "\n", "--------------------------------------------------------\n", - "new york city affected hurricane sandy october 31 2012 \n", + "new york city affected hurricane sandy october12 \n", "\n", "\n", "Con lo q pasó esta semana en EEUU, Sandy dejó de ser un nombre tierno para ponerle a nuestros hij@s http://t.co/dezQgSZS\n", @@ -50212,13 +44934,13 @@ "On Monday the word \"Sandy\" was mentioned 4.8M times, with 10 photos per second being posted through #SocialMedia! http://t.co/cE20B80P\n", "\n", "--------------------------------------------------------\n", - "monday word sandy mentioned 4 8m times 10 photos per second posted socialmedia \n", + "monday word sandy mentioned times with0 photos second posted socialmedia \n", "\n", "\n", "Sandy kopiuje mapy w iOS 6 http://t.co/J9NG2snO\n", "\n", "--------------------------------------------------------\n", - "sandy kopiuje mapy w ios 6 \n", + "sandy kopiuje mapy w ios \n", "\n", "\n", "Apple sues Sandy. http://t.co/UnhyCK0W\n", @@ -50230,7 +44952,7 @@ "Kesan taufan sandy yg berlaku di Utara America... *smart lak tgk dri ats taxi ni bebaris* http://t.co/Xxi5oXFS\n", "\n", "--------------------------------------------------------\n", - "kesan taufan sandy yg berlaku di utara america smart lak tgk dri ats taxi bebaris \n", + "kesan taufan sandy yg berlaku utara america smart lak tgk dri ats taxi bebaris \n", "\n", "\n", "Apple sues Hurricane Sandy http://t.co/S9CJKXcR\n", @@ -50260,7 +44982,7 @@ "45 can alan Sandy Kasırgası'nın etkili olduğu New York'ta bir petrol rafinerisinden 300 bin galon mazot denize sızdı. http://t.co/Lr8iioLq\n", "\n", "--------------------------------------------------------\n", - "45 alan sandy kasırgası nın etkili olduğu new york ta bir petrol rafinerisinden 300 bin galon mazot denize sızdı \n", + "5 alan sandy kasırgası nın etkili olduğu new york bir petrol rafinerisinden00 bin galon mazot denize sızdı \n", "\n", "\n", "Imagen de la tierra tomada por la NASA desde el espacio, en donde se aprecia el tamaño del Huracán \"Sandy\" http://t.co/HWaGtfJT\n", @@ -50269,22 +44991,16 @@ "imagen tierra tomada nasa espacio aprecia tamaño huracán sandy \n", "\n", "\n", - "FU, Sandy! http://t.co/2HqjZFyE\n", - "\n", - "--------------------------------------------------------\n", - "fu sandy \n", - "\n", - "\n", "Tras paso del huracan Sandy por la \"ciudad de los Rascacielos\" asi es el panorama en New York City http://t.co/zV5PjnqN\n", "\n", "--------------------------------------------------------\n", - "tras paso huracan sandy ciudad rascacielos asi panorama new york city \n", + "tras paso huracan sandy ciudad rascacielos así panorama new york city \n", "\n", "\n", "Soutien & bon courage à toutes les personnes touchées lors du passage de l'ouragan Sandy #OuraganSandy #NewYork http://t.co/b5lauLin\n", "\n", "--------------------------------------------------------\n", - "soutien bon courage à toutes personnes touchées lors passage l ouragan sandy ouragansandy newyork \n", + "soutien bon couragetoutes personnes touchées lors passage ouragan sandy ouragansandy new york \n", "\n", "\n", "This is seaside heights after hurricane sandy.. Holy shit #JerseyShore http://t.co/K61zdsGJ\n", @@ -50296,7 +45012,7 @@ "O furacão Sandy passou por Nova Iorque e destruiu tudo, ou melhor, quase tudo. Veja essa foto da BBC. Virgem Maria... http://t.co/zgajRMXJ\"\n", "\n", "--------------------------------------------------------\n", - "furacão sandy passou nova iorque destruiu tudo ou melhor quase tudo veja essa foto da bbc virgem maria \n", + "furacão sandy passou nova iorque destruiu tudo melhor quase tudo veja foto bbc virgem maria \n", "\n", "\n", "floods: Yellow cabs in a parking lot are surrounded by water after Superstorm Sandy struck Hoboken, New Jersey. http://t.co/cMIesESb\n", @@ -50356,13 +45072,7 @@ "Brooklyn Battery after Sandy #NewYork http://t.co/LMrkWoiG\n", "\n", "--------------------------------------------------------\n", - "brooklyn battery sandy newyork \n", - "\n", - "\n", - "@KERENdaich: This is seaside heights after hurricane sandy.. Holy shit #JerseyShore http://t.co/l2ievNR8\n", - "\n", - "--------------------------------------------------------\n", - "seaside heights hurricane sandy holy shit jerseyshore \n", + "brooklyn battery sandy new york \n", "\n", "\n", "This is what Sandy done? Madness. http://t.co/DUjOtcB2 wooooooow\n", @@ -50374,7 +45084,7 @@ "SANDY Manhattan Bridge e le strade di Dumbo, a Brooklyn, nella notte di lunedì. http://t.co/dAAuCL2H\n", "\n", "--------------------------------------------------------\n", - "sandy manhattan bridge strade di dumbo brooklyn nella notte di lunedì \n", + "sandy manhattan bridge strade dumbo brooklyn nella notte lunedì \n", "\n", "\n", "Sandy did not like trampolines .... http://t.co/mSnsyX0z\n", @@ -50383,12 +45093,6 @@ "sandy like trampolines \n", "\n", "\n", - "@felixvictorino: Sandy arrasa Seaside Hights, el hogar de 'Jersey Shore. la zona de recreo más famosa de NewJersey http://t.co/8OxX2KXv\n", - "\n", - "--------------------------------------------------------\n", - "sandy arrasa seaside hights hogar jersey shore zona recreo famosa newjersey \n", - "\n", - "\n", "Seaside Heights after Sandy, aka the Jersey Shore beach, aka the place I've spent my summers growing up :( http://t.co/4p638Oak\n", "\n", "--------------------------------------------------------\n", @@ -50404,7 +45108,7 @@ "I'm terribly when I see what Sandy hurricane caused! :/ Omg! http://t.co/PspXXWJM\n", "\n", "--------------------------------------------------------\n", - "terribly see sandy hurricane caused omg \n", + "terribly see sandy hurricane caused \n", "\n", "\n", "Sandy art, digno de instagram http://t.co/nwAniIGm (via @Carolinaabellan)\n", @@ -50434,49 +45138,25 @@ "maria veglia su di noi anche nei momenti più duri..guardate passaggio di sandy a BREEZYPOINT Queens NYK http://t.co/PzvM79VU\n", "\n", "--------------------------------------------------------\n", - "maria veglia di noi anche nei momenti più duri guardate passaggio di sandy breezypoint queens nyk \n", - "\n", - "\n", - "@SethDavisHoops: Amazing pic RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/YmYsENV9\n", - "\n", - "--------------------------------------------------------\n", - "amazing pic \n", - "\n", - "\n", - "“@SethDavisHoops: Amazing pic RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/QhKbAqk4”\n", - "\n", - "--------------------------------------------------------\n", - "amazing pic \n", - "\n", - "\n", - "Wow! “@SethDavisHoops: Amazing pic RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. http://t.co/asdBcrmG”\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing pic \n", + "maria veglia noi anche nei momenti più duri guardate passaggio sandy breezypoint queens nyk \n", "\n", "\n", "This is...unreal. Essentially the only building with power in #NYC right now is the Empire State Building. #Sandy http://t.co/2ockEAXN\n", "\n", "--------------------------------------------------------\n", - "unreal essentially building power nyc right empire state building sandy \n", - "\n", - "\n", - "@JustinKing224: This is...unreal. only building with power in #NYC now is the Empire State Building. #Sandy http://t.co/9pcFA8Eu... WOW\n", - "\n", - "--------------------------------------------------------\n", - "unreal building power nyc empire state building sandy wow \n", + "unreal essentially building power new york city right empire state building sandy \n", "\n", "\n", "the only building with power in #NYC right now is the Empire State Building. #Sandy http://t.co/DniSwmGj @MINAKWON YOU HEARD BOUT IT?DAYUMM!\n", "\n", "--------------------------------------------------------\n", - "building power nyc right empire state building sandy heard bout dayumm \n", + "building power new york city right empire state building sandy heard bout dayumm \n", "\n", "\n", "Is this picture for real? If so, at one point during #Sandy, Empire State Building was only building in NY with power: http://t.co/VCrCD3dk\n", "\n", "--------------------------------------------------------\n", - "picture real one point sandy empire state building building ny power \n", + "picture real one point sandy empire state building building new york power \n", "\n", "\n", "last night RT “@JustinKing224 the only building with power in #NYC right now is the Empire State Building. #Sandy http://t.co/RlGmpYDV”\n", @@ -50488,43 +45168,37 @@ "Kikin, nada mas metes gol y ocasionas un desmadre natural en Nueva York #Sandy @kikinfg http://t.co/yEXVjMcf\n", "\n", "--------------------------------------------------------\n", - "kikin mas metes gol ocasionas desmadre natural nueva york sandy \n", + "kikin metes gol ocasionas desmadre natural nueva york sandy \n", "\n", "\n", "Nueva York y el huracán Sandy y yo acojonada. Parte 1 http://t.co/aqZj3fcU\n", "\n", "--------------------------------------------------------\n", - "nueva york huracán sandy acojonada parte 1 \n", + "nueva york huracán sandy yacojonada parte \n", "\n", "\n", "Nueva York y el huracán Sandy y yo acojonada. Parte 2. (Brooklyn) http://t.co/RJ5o8RsX\n", "\n", "--------------------------------------------------------\n", - "nueva york huracán sandy acojonada parte 2 brooklyn \n", + "nueva york huracán sandy yacojonada parte brooklyn \n", "\n", "\n", "A picture is worth a thousand words... NYC #Sandy http://t.co/iaC6Of6o\n", "\n", "--------------------------------------------------------\n", - "picture worth thousand words nyc sandy \n", + "picture worth thousand words new york city sandy \n", "\n", "\n", "Wow! A picture says a thousand words: http://t.co/EslZ3ZTf via @NYMag #Sandy\n", "\n", "--------------------------------------------------------\n", - "wow picture says thousand words sandy \n", + "picture says thousand words sandy \n", "\n", "\n", "Wow....a picture is worth a thousand words #Sandy #ILoveNY http://t.co/EIk0zC10\n", "\n", "--------------------------------------------------------\n", - "wow picture worth thousand words sandy iloveny \n", - "\n", - "\n", - "Crazy. “@GoogleFacts: Yes, this photo of Sandy is real.. http://t.co/F612twE7”\n", - "\n", - "--------------------------------------------------------\n", - "crazy \n", + "picture worth thousand words sandy iloveny \n", "\n", "\n", "Sandy volcano RT @GoogleFacts: Yes, this photo of Sandy is real.. http://t.co/wdaLbuIt\n", @@ -50545,12 +45219,6 @@ "new photo fishing pier destroyed yes main one inlet mdsandy hurricane \n", "\n", "\n", - "Yes, this photo of Sandy is real.. http://t.co/lw0ebeyu\n", - "\n", - "--------------------------------------------------------\n", - "yes photo sandy real \n", - "\n", - "\n", "@NYMag cover shows impact of Sandy on Manhattan Picture worth thousand words via @WilliamsJon http://t.co/sVrYdwwo\n", "\n", "--------------------------------------------------------\n", @@ -50572,7 +45240,7 @@ "Cab parking in Hoboken, NJ flooded by #Sandy - found this 2 be 1 of the most dramatic pics of the storm. SVP http://t.co/NyCNFQbW\n", "\n", "--------------------------------------------------------\n", - "cab parking hoboken nj flooded sandy found 2 1 dramatic pics storm svp \n", + "cab parking hoboken new jersey flooded sandy found dramatic pics storm svp \n", "\n", "\n", "Let's keep ALL of Sandy's victims in our prayers- not just the ones in the US. http://t.co/O4acymBV\n", @@ -50581,16 +45249,10 @@ "let keep sandy victims prayers ones us \n", "\n", "\n", - "WoW! Please stay safe -> The Most Unbelievable but Real Pictures of Sandy's Destruction http://t.co/j4dKoDkd http://t.co/m5sFPi6o\n", - "\n", - "--------------------------------------------------------\n", - "wow please stay safe unbelievable real pictures sandy destruction \n", - "\n", - "\n", "Moving picture of the #Sandy aftermath in #NYC... http://t.co/9nYla2i2\n", "\n", "--------------------------------------------------------\n", - "moving picture sandy aftermath nyc \n", + "moving picture sandy aftermath new york city \n", "\n", "\n", "Lots of messages from different people being posted in this shop window about Sandy. http://t.co/8Pt6bjCb\n", @@ -50608,19 +45270,19 @@ "this is my favorite picture from Sandy, a rainbow over the water filled streets of nyc #hope #sandyhelp http://t.co/cli2knkf\n", "\n", "--------------------------------------------------------\n", - "favorite picture sandy rainbow water filled streets nyc hope sandyhelp \n", + "favorite picture sandy rainbow water filled streets new york city hope sandyhelp \n", "\n", "\n", "© APA — parking lot full of yellow cabs flooded as a result of superstorm Sandy on Tues., Oct. 30, 2012 in Hoboken, NJ. http://t.co/NVhuRmBg\n", "\n", "--------------------------------------------------------\n", - "apa parking lot full yellow cabs flooded result superstorm sandy tues oct 30 2012 hoboken nj \n", + "parking lot full yellow cabs flooded result superstorm sandy tues oct 02 hoboken new jersey \n", "\n", "\n", "Really Sandy? I don't think this and the rest of what you did was oh so neccessary. http://t.co/FUBYFYrf\n", "\n", "--------------------------------------------------------\n", - "really sandy think rest oh neccessary \n", + "really sandy think rest wasso neccessary \n", "\n", "\n", "Big earth image provides a clearer perspective of the scale of Sandy before hitting land! http://t.co/hG8Sgjta\n", @@ -50656,7 +45318,7 @@ "Hoboken NJ-the Kindness of Strangers. Helping others to charge their phones etc in the aftermath of Hurricane Sandra. http://t.co/JArGVSAJ\n", "\n", "--------------------------------------------------------\n", - "hoboken nj kindness strangers helping others charge phones etc aftermath hurricane sandra \n", + "hoboken new jersey kindness strangers helping others charge phones etc aftermath hurricane sandra \n", "\n", "\n", "new jersey and this was after the coup of sandy. http://t.co/61kKvVFx\n", @@ -50674,7 +45336,7 @@ "Pics taken by a friend of Sandy's devastation in Seaside Heights NJ http://t.co/HG6A2aLA\n", "\n", "--------------------------------------------------------\n", - "pics taken friend sandy devastation seaside heights nj \n", + "pics taken friend sandy devastation seaside heights new jersey \n", "\n", "\n", "THE OTHER SIDE' OF SANDY NOT SEE ON TV AND NEWSPAPERS. The hurricane also struck CUBA, HAITI AND THE DOMINICAN REPUBLIC http://t.co/S0PK6dFz\n", @@ -50716,7 +45378,7 @@ "NB: the mag's hq last week was shut down w/o power MT @BruceFeiler: This @NYMag cover of Sandy will go down in history. http://t.co/POtAt5ov\n", "\n", "--------------------------------------------------------\n", - "nb mag hq last week shut w powerthis cover sandy go history \n", + "nb mag hq last week shut w power \n", "\n", "\n", "Post-Sandy sightseeing tour of New York. Latest attractions include fallen trees in Central Park & a collapsing crane. http://t.co/ZUe31kEh\n", @@ -50824,13 +45486,13 @@ "The hurricane's aftermath in Atlantic City's board game-inspiring shore. http://t.co/MBJVmiK7 #HurricaneSandy #AtlanticCity #Monopoly\n", "\n", "--------------------------------------------------------\n", - "hurricane aftermath atlantic city board game inspiring shore hurricanesandy atlanticcity monopoly \n", + "hurricane aftermath atlantic city board game inspiring shore hurricane sandy atlanticcity monopoly \n", "\n", "\n", "After hurricane Sandy, there is at least one Road in Rodanthe, N.C that Apple Maps did Get Right \\n#Apple http://t.co/evYPQ68M\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy least one road rodanthe n c apple maps get right apple \n", + "hurricane sandy least one road rodanthe apple maps get right apple \n", "\n", "\n", "Hurricane Sandy doesn't like taxi. (Get #MEME Reader on the Appstore) http://t.co/rJ77VaQz\n", @@ -50848,7 +45510,7 @@ "Boat on RR tracks: amusing(?) photo among reports of hurricane Sandy: http://t.co/Hz2o0Zm2 @NYGovCuomo: Onl... http://t.co/dGm0IJrE\n", "\n", "--------------------------------------------------------\n", - "boat rr tracks amusing photo among reports hurricane sandy onl \n", + "boat rr tracks amusing photo among reports hurricane sandy \n", "\n", "\n", "Out of all the pics i have seen of hurricane sandy this makes me laugh so much #HealthAndSafety #WetFloor http://t.co/9ebqXeXs\n", @@ -50896,7 +45558,7 @@ "@onedirection please help the people of ny, nj, and connecticut whose homes were destroyed by hurricane sandy http://t.co/8XIAJKwj\n", "\n", "--------------------------------------------------------\n", - "please help people ny nj connecticut whose homes destroyed hurricane sandy \n", + "please help people new york new jersey connecticut whose homes destroyed hurricane sandy \n", "\n", "\n", "My Prayers go out to the Families and Victims of Hurricane Sandy http://t.co/lgQPvaVF\n", @@ -50926,7 +45588,7 @@ "Hurricane Sandy envelopes New Jersey's historic structures - boardwalk roller coasters included | Photo by The NY Times http://t.co/ypFBYQJQ\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy envelopes new jersey historic structures boardwalk roller coasters included photo ny times \n", + "hurricane sandy envelopes new jersey historic structures boardwalk roller coasters included photo new york times \n", "\n", "\n", "Thanks @bonniegrrl RT: @princessGwenie1 Dog rescued from hurricane Sandy! Firemen are not only saving the people! http://t.co/ADzjaJlf\n", @@ -50974,7 +45636,7 @@ "awesome PIC of NYC blacked out from\\nHurricane Sandy! “@BuzzFeed: Breathtaking @nymag cover this week. http://t.co/MdxhfyeA”\n", "\n", "--------------------------------------------------------\n", - "awesome pic nyc blacked hurricane sandy \n", + "awesome pic new york city blacked hurricane sandy \n", "\n", "\n", "After the hurricane Sandy. Good neighbor in New Jersey. http://t.co/1sd8E27S\n", @@ -50989,16 +45651,10 @@ "use thinkpal unless power one many comforting images seen since hurricane sandy \n", "\n", "\n", - "Wow amazing pic “@naugusta: The New Yorker cover on Hurricane Sandy. An amazing photo. http://t.co/GGgzrPXU”\n", - "\n", - "--------------------------------------------------------\n", - "wow amazing pic \n", - "\n", - "\n", "Check out my walk home to my nyc apt last night. Out of the lightness into the dark. Compliments of hurricane sandy. http://t.co/frzaJXRW\n", "\n", "--------------------------------------------------------\n", - "check walk home nyc apt last night lightness dark compliments hurricane sandy \n", + "check walk home new york city apt last night lightness dark compliments hurricane sandy \n", "\n", "\n", "Shoutout to the two boys doing Gangnam Style during Hurricane Sandy http://t.co/UiEwOTBi\n", @@ -51049,12 +45705,6 @@ "power outages lower manhattan hurricane sandy \n", "\n", "\n", - "@tylerperry Hurricane Sandy passing through the Bahamas. Thank God that all storms pass! http://t.co/9I3e4AWi\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy passing bahamas thank god storms pass \n", - "\n", - "\n", "Hurricane Sandy sweeps into Cleveland leaving thousands & thousands in the dark, flooding, & much more. #SandyNEO http://t.co/dp27EIGW\n", "\n", "--------------------------------------------------------\n", @@ -51064,16 +45714,22 @@ "haha, i love the 757! where else would you find people doing gangnam style during a hurricane in the news? #757life http://t.co/DURgisHe\n", "\n", "--------------------------------------------------------\n", - "haha love 757 else would find people gangnam style hurricane news 757life \n", + "love the57 else would find people gangnam style hurricane news \n", "\n", "\n", "These stories my heart can handle and breathes a sigh of relief!! @Animals1st: Dog rescued during Hurricane Sandy. http://t.co/FXaejy7Y\n", "\n", "--------------------------------------------------------\n", - "stories heart handle breathes sigh relief dog rescued hurricane sandy \n", + "stories heart handle breathes sigh relief \n", "\n", "\n", - "this week's @NYMag cover of Manhattan after Hurricane Sandy, what a powerful and sobering image. http://t.co/lCRkT3SZ\n", + "this week's @NYMag cover of Manhattan after Hurricane Sandy, what a powerful and sobering image. http://t.co/lCRkT3SZ\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "--------------------------------------------------------\n", "week cover manhattan hurricane sandy powerful sobering image \n", @@ -51094,7 +45750,7 @@ "@NYMag cover of NYC post Hurricane Sandy http://t.co/QCiqwdmk\n", "\n", "--------------------------------------------------------\n", - "cover nyc post hurricane sandy \n", + "cover new york city post hurricane sandy \n", "\n", "\n", "@ATVIAssist @GuitarHero Survived Hurricane Sandy, all I ask is a resolution to this problem! Please flip the switch! http://t.co/NuAzDPRq\n", @@ -51106,7 +45762,7 @@ "The news about Hurricane Sandy is mostly about US. #9GAG http://t.co/kbe7GbeC\n", "\n", "--------------------------------------------------------\n", - "news hurricane sandy mostly us 9gag \n", + "news hurricane sandy mostly us \n", "\n", "\n", "The New Yorker cover on Hurricane Sandy. An amazing photo. http://t.co/4HUjaUgi\n", @@ -51133,16 +45789,10 @@ "hope humanity occurred new jersey post hurricane sandy \n", "\n", "\n", - "After Hurricane Sandy. Good neighbor in New Jersey. http://t.co/4eFWHx5j\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy good neighbor new jersey \n", - "\n", - "\n", "Kind people helping strangers in NJ during hurricane Sandy #peoplebeingpeople http://t.co/MjsxrNEf\n", "\n", "--------------------------------------------------------\n", - "kind people helping strangers nj hurricane sandy peoplebeingpeople \n", + "kind people helping strangers new jersey hurricane sandy peoplebeingpeople \n", "\n", "\n", "Truly fantastic picture of Manhattan after Hurricane Sandy http://t.co/BKBRGyWD (via @IanHowley)\n", @@ -51160,7 +45810,7 @@ "Great photo of people letting others get a cell phone charge during the Hurricane #hurricanesandy #sandy #payitforward http://t.co/Q8HMiMGp\n", "\n", "--------------------------------------------------------\n", - "great photo people letting others get cell phone charge hurricane hurricanesandy sandy payitforward \n", + "great photo people letting others get cell phone charge hurricane hurricane sandy sandy payitforward \n", "\n", "\n", "Photo of what's left of Queens, New York because of the damage from Hurricane #Sandy. Image courtesy of BuzzFeed: http://t.co/Pfm3O16G\n", @@ -51181,12 +45831,6 @@ "seaside heights damage hurricane sandy rollar coaster water \n", "\n", "\n", - "“@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/88yyukd9 #sandy #nyc” whoa.\n", - "\n", - "--------------------------------------------------------\n", - "whoa \n", - "\n", - "\n", "Stunning cover. RT @newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/9DvD2P47 #sandy #nyc\n", "\n", "--------------------------------------------------------\n", @@ -51196,25 +45840,19 @@ "Amazing photo of NY by Iwan Baan: “@newyorkphoto: The cover of the upcoming New York magazine http://t.co/qCdaz6Xw #sandy #nyc”\n", "\n", "--------------------------------------------------------\n", - "amazing photo ny iwan baan \n", + "amazing photo new york iwan baan \n", "\n", "\n", "The cover of the upcoming New York Magazine - the city and the storm http://t.co/nVuqe5kL #sandy #nyc (via @newyorkphoto)\n", "\n", "--------------------------------------------------------\n", - "cover upcoming new york magazine city storm sandy nyc \n", - "\n", - "\n", - "I love it< “@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/Qoy7AaGw #sandy #nyc”\n", - "\n", - "--------------------------------------------------------\n", - "love less \n", + "cover upcoming new york magazine city storm sandy new york city \n", "\n", "\n", "“@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/JK2jEvFL #sandy #nyc” Wow. The difference.\n", "\n", "--------------------------------------------------------\n", - "wow difference \n", + "difference \n", "\n", "\n", "Gran portada “@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/LHb1t4cy #sandy #nyc”\n", @@ -51226,13 +45864,7 @@ "Powerful cover for the latest issue of New York magazine. #sandy #darkCity #nyc http://t.co/VFRt7mxW\n", "\n", "--------------------------------------------------------\n", - "powerful cover latest issue new york magazine sandy darkcity nyc \n", - "\n", - "\n", - "@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/5MhO28UI #sandy #nyc\n", - "\n", - "--------------------------------------------------------\n", - "cover upcoming new york magazine city storm sandy nyc \n", + "powerful cover latest issue new york magazine sandy darkcity new york city \n", "\n", "\n", "'mazin RT \"@newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/IbFAdr5y #sandy #nyc\"\n", @@ -51241,12 +45873,6 @@ "mazin \n", "\n", "\n", - "WOW...“@Markkipper: RT @newyorkphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/01RBRpBr #sandy #nyc”\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "Damn you Iwan Baan! Brilliant again RT @cast_architect NY by Iwan Baan cover of the upcoming New York magazine http://t.co/Uz9eUAZ4 #sandy\n", "\n", "--------------------------------------------------------\n", @@ -51265,12 +45891,6 @@ "amazing photograph \n", "\n", "\n", - "@usaphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/iIHrFwb0 #sandy #nyc thk u..beau-ti-ful!!!\n", - "\n", - "--------------------------------------------------------\n", - "cover upcoming new york magazine city storm sandy nyc thk beau ful \n", - "\n", - "\n", "New York magazine publishes powerful #Sandy Cover -The City and the Storm http://t.co/sn5FJHvD\n", "\n", "--------------------------------------------------------\n", @@ -51286,13 +45906,13 @@ "I left my ❤ in NYC, must buy this. “@SKYENICOLAS: New York Magazine 'The City And The Storm' #SANDY #NYC http://t.co/Ho6LZb2I”\n", "\n", "--------------------------------------------------------\n", - "left nyc must buy \n", + "left new york city must buy \n", "\n", "\n", "New York Magazine 'The City And The Storm' #SANDY #NYC http://t.co/dI3mfQbW\n", "\n", "--------------------------------------------------------\n", - "new york magazine city storm sandy nyc \n", + "new york magazine city storm sandy new york city \n", "\n", "\n", "Yup. #SandyNYC RT @SteveCase: RT @BruceFeiler: This @NYMag cover of #Sandy will go down in history. http://t.co/wjcElUZh\n", @@ -51313,12 +45933,6 @@ "wait mine arrive \n", "\n", "\n", - "@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/as3m1EwN\n", - "\n", - "--------------------------------------------------------\n", - "new york magazine cover sandy go history icymi \n", - "\n", - "\n", "This New York Magazine cover of #Sandy will go down in history. Incredible image. http://t.co/Bu8bz6k3\n", "\n", "--------------------------------------------------------\n", @@ -51328,13 +45942,7 @@ "MT - What a week! @SteveCase: RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/iaO6lZmD\n", "\n", "--------------------------------------------------------\n", - "week \n", - "\n", - "\n", - "#powerful RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/JsLPMuSo\n", - "\n", - "--------------------------------------------------------\n", - "powerful \n", + "mt week \n", "\n", "\n", "Stunning. RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/gzBRL4Ax\n", @@ -51361,12 +45969,6 @@ "magnifique prise vue \n", "\n", "\n", - "Awesome picture. RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. #fb http://t.co/Dpk0KIMw\n", - "\n", - "--------------------------------------------------------\n", - "awesome picture \n", - "\n", - "\n", "Agreed! RT @BruceFeiler This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/tYrUzwVI\n", "\n", "--------------------------------------------------------\n", @@ -51379,12 +45981,6 @@ "unreal \n", "\n", "\n", - "Cool! RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/8yKJYgRg\n", - "\n", - "--------------------------------------------------------\n", - "cool \n", - "\n", - "\n", "“@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/mJ6Je8Un” Amazing cover!\n", "\n", "--------------------------------------------------------\n", @@ -51400,13 +45996,7 @@ "This doesn't look real. Amazing! @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/khPKyZPD\n", "\n", "--------------------------------------------------------\n", - "look real amazing new york magazine cover sandy go history icymi \n", - "\n", - "\n", - "amazing cover “@jheil @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/YU8kEOui”\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine cover sandy go history icymi \n", + "look real amazing \n", "\n", "\n", "Agree RT @EdLibbyEvents This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/iKJR1jHe\n", @@ -51415,12 +46005,6 @@ "agree \n", "\n", "\n", - "Just Wow @NYMag \"@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/TjvQOZ6Q\"\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "#SandyRelief RT @EdLibbyEvents: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/yAhOayw5”\n", "\n", "--------------------------------------------------------\n", @@ -51430,13 +46014,7 @@ "Unbelievable shot of NYC no power “@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/UrxHYNld”\n", "\n", "--------------------------------------------------------\n", - "unbelievable shot nyc power \n", - "\n", - "\n", - "“@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/qG0tw3XR” Wow!!!!!\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", + "unbelievable shot new york city power \n", "\n", "\n", "How was this even taken? RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/33Qc8s0T\n", @@ -51460,7 +46038,7 @@ "Wow TR @EricHutchinson Amazing RT @BruceFeiler: New York Magazine cover of #Sandy will go down in history. http://t.co/g7iJUNps\n", "\n", "--------------------------------------------------------\n", - "wow tr amazing \n", + "tr amazing \n", "\n", "\n", "“@BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/7QWpohay” Times Square so bright #contrast\n", @@ -51484,19 +46062,13 @@ "W.O.W. \"@NationHahn: Amazing RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. ICYMI http://t.co/5E5HshUh\"\n", "\n", "--------------------------------------------------------\n", - "w w amazing \n", + "w w \n", "\n", "\n", "Surreal photo of NYC after Sandy RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. http://t.co/1LkdJoEz\n", "\n", "--------------------------------------------------------\n", - "surreal photo nyc sandy \n", - "\n", - "\n", - "Amazing photo! RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. http://t.co/O65Ck3Iz\n", - "\n", - "--------------------------------------------------------\n", - "amazing photo \n", + "surreal photo new york city sandy \n", "\n", "\n", "This New York Magazine cover of #Sandy will go down in history. http://t.co/eRmq3zO9 (@BruceFeiler)\n", @@ -51505,12 +46077,6 @@ "new york magazine cover sandy go history \n", "\n", "\n", - "MT @BruceFeiler: New York Magazine cover of #Sandy will go down in history. http://t.co/yId39RMv Check out area of power outage.\n", - "\n", - "--------------------------------------------------------\n", - "new york magazine cover sandy go history check area power outage \n", - "\n", - "\n", "#NYCforever “RT @BruceFeiler: This New York Magazine cover of #Sandy will go down in history. http://t.co/QhKbAqk4”\n", "\n", "--------------------------------------------------------\n", @@ -51541,12 +46107,6 @@ "awesome people helping \n", "\n", "\n", - "So awesome RT @LMokaba: This is awesome. RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/n7SZOLir\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "lovely Hoboken awesomeness:RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/p8Ez0Kc9\n", "\n", "--------------------------------------------------------\n", @@ -51562,25 +46122,13 @@ "I do love you, NJ. RT @anamariecox Jersey Share. #sandy #nj (via FB) http://t.co/rNpVanWy\n", "\n", "--------------------------------------------------------\n", - "love nj \n", - "\n", - "\n", - "@anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/2Isdunzt WOW\n", - "\n", - "--------------------------------------------------------\n", - "jersey share sandy nj via fb wow \n", + "love new jersey \n", "\n", "\n", "See? Jersey folks are nice. Only been telling you for 35 years. RT \"@anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/PU6EFBM1\"\n", "\n", "--------------------------------------------------------\n", - "see jersey folks nice telling 35 years \n", - "\n", - "\n", - "How #awesome is this! RT @anamariecox Jersey Share. #sandy #nj (via FB) http://t.co/gfbsAQtj\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", + "see jersey folks nice telling for5 years \n", "\n", "\n", "I love it when people are reduced to being decent human beings. RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/iix99KVR\n", @@ -51613,46 +46161,28 @@ "pretty cool usa usa usa \n", "\n", "\n", - "@anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/1tE5HZOr @Sha_naa\n", - "\n", - "--------------------------------------------------------\n", - "jersey share sandy nj via fb \n", - "\n", - "\n", - "#fb RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/6bwbksLI\n", - "\n", - "--------------------------------------------------------\n", - "fb \n", - "\n", - "\n", - "Just awesome RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/1jUKylGU\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "Now that's something you don't see everyday on the east coast! '@anamariecox Jersey Share. #sandy #nj (via FB) http://t.co/xyj3BV45'\n", "\n", "--------------------------------------------------------\n", - "something see everyday east coast jersey share sandy nj via fb \n", + "something see everyday east coast jersey share sandy new jersey fb \n", "\n", "\n", - "Love this > RT @anamariecox Jersey Share. #sandy #nj (via FB) http://t.co/okdPzRBn\n", + "“@rhshoop727: RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/tVImZEPb”\\nFriends and the best of humanity: priceless!\n", "\n", "--------------------------------------------------------\n", - "love greater \n", + "friends best humanity priceless \n", "\n", "\n", "Jersey Share. #sandy #nj (via FB) http://t.co/7VATEumR\n", "\n", "--------------------------------------------------------\n", - "jersey share sandy nj via fb \n", + "jersey share sandy new jersey fb \n", "\n", "\n", "Jersey Share. #sandy #nj (via FB) http://t.co/ICReNeD1” See, we're not all The Situation!\n", "\n", "--------------------------------------------------------\n", - "jersey share sandy nj via fb see situation \n", + "jersey share sandy new jersey fb see situation \n", "\n", "\n", "Sad that nobody even acknowledged any of the other countries affected by #Sandy http://t.co/I5otlG04\n", @@ -51670,7 +46200,7 @@ "aquaboulevard a ouvert au zimbabwe ? RT @FeyzBelha L'autre face de #Sandy, celle qu'on ne voit pas dans les médias http://t.co/iPZDRsa9\n", "\n", "--------------------------------------------------------\n", - "aquaboulevard ouvert au zimbabwe \n", + "aquaboulevard ouvert zimbabwe \n", "\n", "\n", "En effet, on parle plus du marathon :( RT @FeyzBelha: L'autre face de #Sandy, celle qu'on ne voit pas dans les médias http://t.co/aM1CSZx9\n", @@ -51682,13 +46212,13 @@ "L'autre face de #Sandy,celle qu'on ne voit pas dans les médias http://t.co/0l0SWp2g #hurricaneSandy #Haiti @LHallyday @lili88120 @FeyzBelha\n", "\n", "--------------------------------------------------------\n", - "l autre face sandy celle qu ne voit pas dans médias hurricanesandy haiti \n", + "autre face sandy celle voit médias hurricane sandy haiti \n", "\n", "\n", "L'autre face de #Sandy, celle qu'on ne voit pas dans les médias http://t.co/Vo6daana\n", "\n", "--------------------------------------------------------\n", - "l autre face sandy celle qu ne voit pas dans médias \n", + "autre face sandy celle voit médias \n", "\n", "\n", "Why are these New Yorkers clustered outside a closed Starbucks? @NowThisNews answers, \"two words: working wifi.\" #Sandy http://t.co/T88kxC1c\n", @@ -51718,13 +46248,13 @@ "Luces y sombras.Nueva York partida en dos tras el huracán #Sandy. Gran foto de portada de @NYMag http://t.co/pAJTQ3xZ\"\n", "\n", "--------------------------------------------------------\n", - "luces sombras nueva york partida dos tras huracán sandy gran foto portada \n", + "luces sombras nueva york partida tras huracán sandy gran foto portada \n", "\n", "\n", "Still WOW. From last night, cover of new @nymag shows stark contrast in Manhattan after #Sandy: http://t.co/QOwWV4kb via @shama_ny\n", "\n", "--------------------------------------------------------\n", - "still wow last night cover new shows stark contrast manhattan sandy \n", + "still last night cover new shows stark contrast manhattan sandy \n", "\n", "\n", "Amazing cover of New York Magazine - view of Manhattan from above when Sandy hit http://t.co/tO05eeiH via @peboiton\n", @@ -51733,30 +46263,12 @@ "amazing cover new york magazine view manhattan sandy hit \n", "\n", "\n", - "@thecoolhunter:Amazing cover frm NY Magazine. View of Manhattan frm above whn Sandy hit http://t.co/baNUKsy3 Sending healing energy to NYC\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover frm ny magazine view manhattan frm whn sandy hit sending healing energy nyc \n", - "\n", - "\n", - "Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/NTCHcGyp\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit \n", - "\n", - "\n", "Calm before storm “@thecoolhunter: Amazing cover from New York Magazine.A view of Manhattan from above when Sandy hit http://t.co/Hklfok3J”\n", "\n", "--------------------------------------------------------\n", "calm storm \n", "\n", "\n", - "@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/WR9kV3Fe\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit \n", - "\n", - "\n", "“@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/zij2Nb5N” Unbelievable\n", "\n", "--------------------------------------------------------\n", @@ -51772,7 +46284,7 @@ "Nyc in the dark “@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/ZRAeIqmK”\n", "\n", "--------------------------------------------------------\n", - "nyc dark \n", + "new york city dark \n", "\n", "\n", "Guao. “@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/QZOaXoT0”\n", @@ -51781,12 +46293,6 @@ "guao \n", "\n", "\n", - "Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/wVNsb46U”\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit \n", - "\n", - "\n", "Photo impressionante! A view of Manhattan from above when Sandy hit http://t.co/4EBcZ8vW\\n#sandy\n", "\n", "--------------------------------------------------------\n", @@ -51799,18 +46305,6 @@ "insane shot \n", "\n", "\n", - "@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/WILVYM0A @cmrdra :(\n", - "\n", - "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit \n", - "\n", - "\n", - "I <3 NYC \"@thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/DY3jduBG\"\n", - "\n", - "--------------------------------------------------------\n", - "less 3 nyc \n", - "\n", - "\n", "Cover of New York Magazine when Sandy hit Manhattan http://t.co/SsDHXHxs via @peboiton\n", "\n", "--------------------------------------------------------\n", @@ -51820,7 +46314,7 @@ "Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit #sandy #NewYork #AfterSandy http://t.co/tNwtg5wl\n", "\n", "--------------------------------------------------------\n", - "amazing cover new york magazine view manhattan sandy hit sandy newyork aftersandy \n", + "amazing cover new york magazine view manhattan sandy hit sandy new york aftersandy \n", "\n", "\n", "Amazing view of Manhattan from above when Sandy hit http://t.co/jTSflK12 #AfterSandy via @mitchdeg & @mdial\n", @@ -51829,28 +46323,16 @@ "amazing view manhattan sandy hit aftersandy \n", "\n", "\n", - "Woah. RT @thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/uMdSTkTZ\n", - "\n", - "--------------------------------------------------------\n", - "woah \n", - "\n", - "\n", "Indeed! RT: @thecoolhunter\\nAmazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/0mzSyXPE\n", "\n", "--------------------------------------------------------\n", "indeed \n", "\n", "\n", - "Powerful RT @thecoolhunter: Amazing cover from New York Magazine. A view of Manhattan from above when Sandy hit http://t.co/3lGdn14D\n", - "\n", - "--------------------------------------------------------\n", - "powerful \n", - "\n", - "\n", "AMAZING PHOTO- MARATHON RUNNERS BOARDING STATEN ISLAND FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY #911BUFF http://t.co/CvuoLB8j\n", "\n", "--------------------------------------------------------\n", - "amazing photo marathon runners boarding staten island ferry ready volunteer instead running sandy 911buff \n", + "amazing photo marathon runners boarding staten island ferry ready volunteer instead running sandy11buff \n", "\n", "\n", "Make a Difference RT PHOTO MARATHON RUNNERS BOARDING STATEN ISLAND FERRY TO VOLUNTEER INSTEAD OF RUNNING. #NYC #SANDY http://t.co/W9d2zvLD\n", @@ -51874,25 +46356,25 @@ "Dream realized! - MT @911BUFF: MARATHON RUNNERS BOARDING SI FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY http://t.co/R6LV4mcf\n", "\n", "--------------------------------------------------------\n", - "dream realized marathon runners boarding si ferry ready volunteer instead running sandy \n", + "dream realized \n", "\n", "\n", - "Awesome: @911BUFF: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY http://t.co/4bpbhkgP”\n", + "Awesome. #FaithInHumanity @911BUFF: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY TO VOLUNTEER INSTEAD OF RUN #SANDY http://t.co/VqwmQdlN\n", "\n", "--------------------------------------------------------\n", - "awesome marathon runners boarding staten island ferry ready volunteer instead running sandy \n", + "awesome faithinhumanity \n", "\n", "\n", - "Awesome. #FaithInHumanity @911BUFF: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY TO VOLUNTEER INSTEAD OF RUN #SANDY http://t.co/VqwmQdlN\n", + ".@stephlauren Marathon Runners Boarding Staten Island Ferry To Volunteer Instead Of Running #SANDY #911BUFF http://t.co/Xluq5lRp\n", "\n", "--------------------------------------------------------\n", - "awesome faithinhumanity marathon runners boarding staten island ferry volunteer instead run sandy \n", + "marathon runners boarding staten island ferry volunteer instead running sandy11buff \n", "\n", "\n", - ".@stephlauren Marathon Runners Boarding Staten Island Ferry To Volunteer Instead Of Running #SANDY #911BUFF http://t.co/Xluq5lRp\n", + "Awesome!! MT “@911BUFF: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY http://t.co/JA7RNvni”\n", "\n", "--------------------------------------------------------\n", - "marathon runners boarding staten island ferry volunteer instead running sandy 911buff \n", + "awesome mt \n", "\n", "\n", "“@CBSSports: NYC Marathon runners headed to Staten Island to volunteer instead of running: http://t.co/Isq7I3SU via @911Buff” #sandy #heros\n", @@ -51907,16 +46389,10 @@ "amazing photo marathon runners boarding staten island ferry ready volunteer instead running sandy \n", "\n", "\n", - "“AMAZING PHOTO: MARATHON RUNNERS BOARDING STATEN ISLAND FERRY READY TO VOLUNTEER INSTEAD OF RUNNING. #SANDY http://t.co/pUMYkPEt”\n", - "\n", - "--------------------------------------------------------\n", - "amazing photo marathon runners boarding staten island ferry ready volunteer instead running sandy \n", - "\n", - "\n", "#صورة تختصر عاصفة #ساندي . عشرات #سيارات الأجرة (Yellow Cap) في هوبوكن وقد غمرها #الماء\\n \\nhttp://t.co/taRXpj63\\n\\n#إعصار_ساندي #Sandy\n", "\n", "--------------------------------------------------------\n", - "صورة تختصر عاصفة ساندي عشرات سيارات الأجرة yellow cap هوبوكن وقد غمرها الماء إعصار ساندي sandy \n", + "صورة تختصر عاصفة ساندي عشرات سيارات الأجرة yellow cap هوبوكن وقد غمرها الماء إعصارساندي sandy \n", "\n", "\n", "صورة تختصر عاصفة #ساندي. عشرات سيارات الأجرة (Yellow Cap) في هوبوكن وقد غمرها الماء. صورة باهرة من أ.ب \\nhttp://t.co/kLxdRu5U\\n#Sandy\n", @@ -51952,7 +46428,7 @@ "34th and 1st street in New York City. #Sandy http://t.co/o68HqNP9\n", "\n", "--------------------------------------------------------\n", - "34th first street new york city sandy \n", + "4th first street new york city sandy \n", "\n", "\n", "Op dit moment zit bijna heel New York zonder stroom, door orkaan #Sandy. http://t.co/hTSyXuSg\n", @@ -51964,7 +46440,7 @@ "New York - Out of the Dark. #NewYork #Sandy http://t.co/hHTay5SW\n", "\n", "--------------------------------------------------------\n", - "new york dark newyork sandy \n", + "new york dark new york sandy \n", "\n", "\n", "Wao! RT @webarticulista: La portada de New York Magazine #Sandy http://t.co/YXGoSvM2\n", @@ -51976,7 +46452,7 @@ "Wow ... Look at how much of New York City is dark in this picture. #SANDY smh ... http://t.co/mFrmBRWb\n", "\n", "--------------------------------------------------------\n", - "wow look much new york city dark picture sandy smh \n", + "look much new york city dark picture sandy \n", "\n", "\n", "Hurricane #Sandy has caused New York's Time Square to almost look like a ghost town: http://t.co/eyyDrBIu\n", @@ -52024,7 +46500,7 @@ "Our thoughts are with everyone in New York, Connecticut & New Jersey - only the Freedom Tower is lit. #NYC #Sandy http://t.co/QT3AnOV5\n", "\n", "--------------------------------------------------------\n", - "thoughts everyone new york connecticut new jersey freedom tower lit nyc sandy \n", + "thoughts everyone new york connecticut new jersey freedom tower lit new york city sandy \n", "\n", "\n", "Para los afectados por #Sandy NO es un Feliz Domingo! #YaMeCanseDeTelevisa y de que solo hablen de New York #YaBASTA! http://t.co/paG5u278\n", @@ -52048,7 +46524,7 @@ "Im no Harvard graduate...but this doesnt look very safe to jump on... #Sandy http://t.co/SFtwpBRG\n", "\n", "--------------------------------------------------------\n", - "im harvard graduate doesnt look safe jump sandy \n", + "harvard graduate doesnt look safe jump sandy \n", "\n", "\n", "Flood waters rush in to the Hoboken PATH station through an elevator shaft. #Sandy http://t.co/QosgFyOI\n", @@ -52060,7 +46536,7 @@ "“@NYCShopGuide: Flood waters drowning the World Trade Center site. - NYC #sandy http://t.co/y9FVa6Fe” wow! Thinking of my 2nd home xxx\n", "\n", "--------------------------------------------------------\n", - "wow thinking second home xxx \n", + "thinking second home xxx \n", "\n", "\n", "Goldman Sachs - continuing to do God's work http://t.co/pt91nkW0 #Sandy\n", @@ -52072,13 +46548,13 @@ "Astronomy ties the full moon to #Sandy's high tide: http://t.co/RMIPQl3C An image via NASA http://t.co/zEklAPpC\n", "\n", "--------------------------------------------------------\n", - "astronomy ties full moon sandy high tide image via nasa \n", + "astronomy ties full moon sandy high tide imagenasa \n", "\n", "\n", "#SANDY ~ Prayers go out to the people affected in Hoboken, NJ http://t.co/Ax9qluv5\n", "\n", "--------------------------------------------------------\n", - "sandy prayers go people affected hoboken nj \n", + "sandy prayers go people affected hoboken new jersey \n", "\n", "\n", "@ryanvaughan this proves there are still good people in the world #Sandy http://t.co/ko2vAqu2\n", @@ -52090,31 +46566,19 @@ "NYPD going under water at East 8th St and Ave C in NYC due to Hurricane #Sandy http://t.co/wDpyCu4u -- FDNY EMS Website (@FDNYEMSwebsite)\n", "\n", "--------------------------------------------------------\n", - "nypd going water east 8th st ave c nyc due hurricane sandy fdny ems website \n", - "\n", - "\n", - "NICE RT@dailydot: Marathon runners board the Staten Island ferry, ready to help with #Sandy clean-up efforts \\nhttp://t.co/7RdYdPT9 #thanks\n", - "\n", - "--------------------------------------------------------\n", - "nice \n", + "nypd going water east st ave new york city due hurricane sandy fdny ems website \n", "\n", "\n", "WOW. Photo of ambulances lined up outside NYU Hospital to take patients after power was lost. #Sandy #RealHeroes http://t.co/J6Ah1GiB\n", "\n", "--------------------------------------------------------\n", - "wow photo ambulances lined outside nyu hospital take patients power lost sandy realheroes \n", + "photo ambulances lined outside nyu hospital take patients power lost sandy realheroes \n", "\n", "\n", "A photo that is doing the rounds, a home in NYC after #sandy, nice to see the community spirit is alive. #loveNYC http://t.co/iS9K3dfD\n", "\n", "--------------------------------------------------------\n", - "photo rounds home nyc sandy nice see community spirit alive lovenyc \n", - "\n", - "\n", - "Wow @stephgosk: Marathoners head to Staten Island to help @nbcnightlynews #sandy http://t.co/hvmg2oxk #sandyvolunteer\n", - "\n", - "--------------------------------------------------------\n", - "wow marathoners head staten island help sandy sandyvolunteer \n", + "photo rounds home new york city sandy nice see community spirit alive lovenyc \n", "\n", "\n", "Love this. The milk of human kindness. #Sandy http://t.co/HOFf0INq\n", @@ -52126,13 +46590,19 @@ "Stunning #nyc #sandy RT @DailyIntel: The cover of this week's magazine: http://t.co/Zyryrj9b http://t.co/yABaruBR\n", "\n", "--------------------------------------------------------\n", - "stunning nyc sandy \n", + "stunning new york city sandy \n", "\n", "\n", "Love the love in #NYC #Sandy http://t.co/ZMyWqC1j\n", "\n", "--------------------------------------------------------\n", - "love love nyc sandy \n", + "love love new york city sandy \n", + "\n", + "\n", + "“@rapo4: Wow. @DylanByers: RT @DailyIntel: The cover of this week's magazine: http://t.co/eqpcPdsX http://t.co/6j3pEX3g” wowx2 #sandy\n", + "\n", + "--------------------------------------------------------\n", + "x2 sandy \n", "\n", "\n", "I visited Cleveland's version of the #ROIC http://t.co/noIfuzvU RT @GovChristie: Talking with Pres. Obama #Sandy http://t.co/HuuNpEfY\n", @@ -52150,7 +46620,7 @@ "Flashback to Monday, near us. The river wild. MT @mattmfm\\nFlooding from East River at 20th & Ave C #Sandy http://t.co/jD9gaHZR\n", "\n", "--------------------------------------------------------\n", - "flashback monday near us river wild mt flooding east river 20th ave c sandy \n", + "flashback monday near us river wild mt flooding east river at0th ave sandy \n", "\n", "\n", "I'd love to do this type of photography for Cleveland, RT @GovChristie: Talking with Pres. Obama #Sandy http://t.co/HuuNpEfY\n", @@ -52204,7 +46674,7 @@ "i miss NY. RT @Sarah_Oestreich: NY generosity due to #sandy power outages.. It's the little things http://t.co/2sk8PwGT\n", "\n", "--------------------------------------------------------\n", - "miss ny \n", + "miss new york \n", "\n", "\n", "Park av. Postal de esta noche que contrasta, ajena, al desastre de #Sandy http://t.co/RdqlwzCt\n", @@ -52216,7 +46686,7 @@ "La petite #Sandy, qui a mal garé son bateau, est priée de venir le changer de place - http://t.co/SQjGznAw\n", "\n", "--------------------------------------------------------\n", - "petite sandy qui mal garé bateau est priée venir changer place \n", + "petite sandy mal garé bateau priée venir changer place \n", "\n", "\n", "An amazing cover photo from NYMag: http://t.co/RiAMhkj7 (via @gruber) http://t.co/WKJhRTr9\n", @@ -52240,13 +46710,13 @@ "Remarkable #Sandy @nymag cover http://t.co/qoyDwjrT (h/t @EthanKlapper via @lrozen)\n", "\n", "--------------------------------------------------------\n", - "remarkable sandy cover h \n", + "remarkable sandy cover \n", "\n", "\n", "The @NYMag #Sandy NYC cover is definitely today's most passed around image. http://t.co/KErYC5CS\n", "\n", "--------------------------------------------------------\n", - "sandy nyc cover definitely today passed around image \n", + "sandy new york city cover definitely today passed around image \n", "\n", "\n", "The @NYMag cover is breathtaking http://t.co/E7lonxWs http://t.co/aoOOu7v8\n", @@ -52264,13 +46734,13 @@ "Stunning @NYMag Cover | #sandy #NYC http://t.co/dk27CAIY http://t.co/AeeCRBds\n", "\n", "--------------------------------------------------------\n", - "stunning cover sandy nyc \n", + "stunning cover sandy new york city \n", "\n", "\n", "Surreal @NYMag cover photo of post NYC #Sandy. http://t.co/Y0Jh2vik\n", "\n", "--------------------------------------------------------\n", - "surreal cover photo post nyc sandy \n", + "surreal cover photo post new york city sandy \n", "\n", "\n", "I know everyone has retweeted it, but the @nymag front cover about Sandy is quite amazing: http://t.co/Jfew7LuK #Sandy\n", @@ -52330,7 +46800,7 @@ "Complimenti @iwanbaan (http://t.co/3dLObGHk) per la splendida foto sulla cover @NYTmag - Manhattan colpita da #Sandy http://t.co/TVFKeUIu\n", "\n", "--------------------------------------------------------\n", - "complimenti per splendida foto sulla cover manhattan colpita da sandy \n", + "complimenti splendida foto sulla cover manhattan colpita sandy \n", "\n", "\n", "this week's @nymag cover is remarkable, and beautiful. #sandy http://t.co/S23BU6c2\n", @@ -52342,13 +46812,13 @@ "Stunning #Sandy @NYmag cover of half-blacked-out NYC by Iwaan Ban http://t.co/NpqX9rK1\n", "\n", "--------------------------------------------------------\n", - "stunning sandy cover half blacked nyc iwaan ban \n", + "stunning sandy cover half blacked new york city iwaan ban \n", "\n", "\n", "what an amazing photo of NY after #Sandy on the cover of @nymag http://t.co/H7z5RG0b\n", "\n", "--------------------------------------------------------\n", - "amazing photo ny sandy cover \n", + "amazing photo new york sandy cover \n", "\n", "\n", "Breathtaking @nymag cover this week. http://t.co/7fvrGmac @BuzzFeed #sandy\n", @@ -52360,7 +46830,7 @@ "new cover of @nymag pretty much sums up our week in #nyc #sandy http://t.co/EnPQ9GHW\n", "\n", "--------------------------------------------------------\n", - "new cover pretty much sums week nyc sandy \n", + "new cover pretty much sums week new york city sandy \n", "\n", "\n", "Lights out...unreal RT @jessicamelore\\nSurreal @NYMag cover photo of post NYC #Sandy. http://t.co/lOb9QOCy\n", @@ -52372,7 +46842,7 @@ "Amazing picture of this week's outage in NYC from @nymag #Sandy http://t.co/huZFiqQw\n", "\n", "--------------------------------------------------------\n", - "amazing picture week outage nyc sandy \n", + "amazing picture week outage new york city sandy \n", "\n", "\n", "A powerful city rendered powerless. Cover of @NYMag this week. #Sandy #Blackout http://t.co/k0UkWpOK\n", @@ -52384,7 +46854,7 @@ "Wow x2 RT @unclegrambo: Wow, cover of new issue of @NYmag is amazing. http://t.co/JDuxEJPR http://t.co/zPhdhzlm\n", "\n", "--------------------------------------------------------\n", - "wow x2 \n", + "x2 \n", "\n", "\n", "The cover of the latest @NYMag. Mindblowing. #sandy http://t.co/HMS8PZQF\n", @@ -52399,12 +46869,6 @@ "incredible image manhattan black \n", "\n", "\n", - "Whoa. \\n“@HausOfBizarre: Lights out...unreal RT @jessicamelore\\nSurreal @NYMag cover photo of post NYC #Sandy. http://t.co/f4n1TNYy”\n", - "\n", - "--------------------------------------------------------\n", - "whoa lights unreal \n", - "\n", - "\n", "Eerie, amazing visual @NYMag storm cover http://t.co/wTH5lsWh http://t.co/QzCrSzRl\n", "\n", "--------------------------------------------------------\n", @@ -52426,19 +46890,19 @@ "Let there be light. @NYMag cover photo. #NYC #Sandy http://t.co/maBJcToD\n", "\n", "--------------------------------------------------------\n", - "let light cover photo nyc sandy \n", + "let light cover photo new york city sandy \n", "\n", "\n", "This @NYMag cover photo is too good to not share again. Manhattan, NYC at night after #Sandy. #SoPo http://t.co/NDY34rYt\n", "\n", "--------------------------------------------------------\n", - "cover photo good share manhattan nyc night sandy sopo \n", + "cover photo good share manhattan new york city night sandy sopo \n", "\n", "\n", "Wow, cover of new issue of @NYmag is amazing. http://t.co/xYjmR0AC http://t.co/WIoMNIt7\n", "\n", "--------------------------------------------------------\n", - "wow cover new issue amazing \n", + "cover new issue amazing \n", "\n", "\n", "Breathtaking @NYMag cover: The city & the storm: http://t.co/f5hBgLl8 RT @moorehn RT @BuzzFeed #Sandy #NYC\n", @@ -52447,16 +46911,10 @@ "breathtaking cover city storm \n", "\n", "\n", - "@BuzzFeed: Breathtaking @nymag cover this week. http://t.co/H2uBBNcj #hurricane\n", - "\n", - "--------------------------------------------------------\n", - "breathtaking cover week hurricane \n", - "\n", - "\n", "Surreal view! #sandy #nyc @NYMag http://t.co/sF2nVU39\n", "\n", "--------------------------------------------------------\n", - "surreal view sandy nyc \n", + "surreal view sandy new york city \n", "\n", "\n", "A pic of manhattan after #sandy via @NYMag #lightsout http://t.co/9t0qJhMT\n", @@ -52468,7 +46926,7 @@ "an unbelievable photo of lights-out #nyc from @nymag #sandy http://t.co/Zgs3de2X\n", "\n", "--------------------------------------------------------\n", - "unbelievable photo lights nyc sandy \n", + "unbelievable photo lights new york city sandy \n", "\n", "\n", "La copertina del nuovo numero del @NYMag è spettacolare! #Sandy #SandyNYC #sapevatelo #Usa2012 http://t.co/pO6poGIs\n", @@ -52486,7 +46944,7 @@ "Haunting cover photo by @nymag of #NYC from above at night after #Sandy http://t.co/QYdUyjYY\\n#photography #journalism\n", "\n", "--------------------------------------------------------\n", - "haunting cover photo nyc night sandy photography journalism \n", + "haunting cover photo new york city night sandy photography journalism \n", "\n", "\n", "The cover of @NYMag speaks volumes about #Sandy. Granted nicknamed #SoPo (South of Power) http://t.co/LPpkWlW2\n", @@ -52510,19 +46968,13 @@ "Sandy en las portadas (1/3)\\nNEW YORK MAGAZINE\\n¡Espectacular imagen de Iwan Baan!\\n#arquitectura #architecture #Sandy http://t.co/HGCX2QKD”\n", "\n", "--------------------------------------------------------\n", - "sandy portadas 1 3 new york magazine espectacular imagen iwan baan arquitectura architecture sandy \n", - "\n", - "\n", - "Sandy en las portadas (1/3)\\nNEW YORK MAGAZINE\\n¡Espectacular imagen de Iwan Baan!\\n#arquitectura #architecture #Sandy http://t.co/T86oH0Q1\n", - "\n", - "--------------------------------------------------------\n", - "sandy portadas 1 3 new york magazine espectacular imagen iwan baan arquitectura architecture sandy \n", + "sandy portadas new york magazine espectacular imagen iwan baan arquitectura architecture sandy \n", "\n", "\n", "#GroundZero #NYC #SANDY http://t.co/J5tsLpnz\n", "\n", "--------------------------------------------------------\n", - "groundzero nyc sandy \n", + "groundzero new york city sandy \n", "\n", "\n", "Floating cabs #Sandy http://t.co/R2BtX8k7\n", @@ -52540,7 +46992,7 @@ "Unreal photos coming out of NYC. Here's an @AP photo of seawater flooding a construction site at Ground Zero: #Sandy http://t.co/1Hsdhr4o\n", "\n", "--------------------------------------------------------\n", - "unreal photos coming nyc photo seawater flooding construction site ground zero sandy \n", + "unreal photos coming new york city photo seawater flooding construction site ground zero sandy \n", "\n", "\n", "Hoy como durante la ultima semana nuestros pensamientos y deseos d pronta recuperacion a todos los afectados x huracan http://t.co/AfvAD5Ur\n", @@ -52576,7 +47028,7 @@ "Flooding from East River at 20th St and Ave C at Peter Cooper Village [pic] #Sandy http://t.co/ggfE1vB9\n", "\n", "--------------------------------------------------------\n", - "flooding east river 20th st ave c peter cooper village pic sandy \n", + "flooding east river at0th st ave peter cooper village pic sandy \n", "\n", "\n", "Lower Manhattan #endoftheworld #Sandy http://t.co/RJtwaG7x\n", @@ -52588,13 +47040,13 @@ "مهما بلغ البشر من قوة علوم الدنيا والتكنولوجيا فلا يستطيعون منع ما يرسله الله عليهم\\n\\n@AboZid_W \\n\\n#إعصار_ساندي\\n#Sandy http://t.co/ueveJ0Jh\n", "\n", "--------------------------------------------------------\n", - "بلغ البشر قوة علوم الدنيا والتكنولوجيا يستطيعون منع يرسله الله عليهم إعصار ساندي sandy \n", + "بلغ البشر قوة علوم الدنيا والتكنولوجيا يستطيعون منع يرسله الله عليهم إعصارساندي sandy \n", "\n", "\n", "La foto virale di stamattina è questa dei taxi gialli in ammollo come paperelle di gomma ad Hoboken, New Jersey #Sandy http://t.co/Qg5svW2Z\n", "\n", "--------------------------------------------------------\n", - "foto virale di stamattina è questa dei taxi gialli ammollo come paperelle di gomma ad hoboken new jersey sandy \n", + "foto virale stamattina è questa dei taxi gialli ammollo come paperelle gomma ad hoboken new jersey sandy \n", "\n", "\n", "God Bless Our First Responders #BreezyPoint #Sandy @FDNY http://t.co/rDuivlYi\n", @@ -52606,7 +47058,7 @@ "how insane is this image!? #Sandy #NewYork http://t.co/zv6O7N7j\n", "\n", "--------------------------------------------------------\n", - "insane image sandy newyork \n", + "insane image sandy new york \n", "\n", "\n", "Another crazy pic of #Sandy in Atlantic City http://t.co/raox8OWs\n", @@ -52618,7 +47070,7 @@ "NYC this morning #Sandy #godblessNYC http://t.co/danjjOCr\n", "\n", "--------------------------------------------------------\n", - "nyc morning sandy godblessnyc \n", + "new york city morning sandy godblessnyc \n", "\n", "\n", "Como espectacular, esta foto de Ap es la mejor que he visto hasta ahora. #Sandy http://t.co/PViQ8HNM\n", @@ -52633,12 +47085,6 @@ "apple klaagt sandy kopiëren maps \n", "\n", "\n", - "@nokia Haha, Apple sues #sandy for copying Apple maps ! http://t.co/iyhCsonj\n", - "\n", - "--------------------------------------------------------\n", - "haha apple sues sandy copying apple maps \n", - "\n", - "\n", "A parking lot full of yellow cabs flooded in Hoboken. #Sandy http://t.co/x2yW0fX2\n", "\n", "--------------------------------------------------------\n", @@ -52660,7 +47106,7 @@ "This is Breezy Point, Queens as seen by @TomKaminskiWCBS in Chopper 880 this morning. http://t.co/kt8o8NwS #Sandy http://t.co/NRnW8O0s\n", "\n", "--------------------------------------------------------\n", - "breezy point queens seen chopper 880 morning sandy \n", + "breezy point queens seen chopper80 morning sandy \n", "\n", "\n", "#applemap #apple #iphone #sandy http://t.co/1F4j16Q3\n", @@ -52672,7 +47118,7 @@ "Flooding from East River at 20th St and Ave C at Peter Cooper Village #Sandy http://t.co/mit1GghO”\n", "\n", "--------------------------------------------------------\n", - "flooding east river 20th st ave c peter cooper village sandy \n", + "flooding east river at0th st ave peter cooper village sandy \n", "\n", "\n", "Jersey shore after sandy! #MTV #JerseyShore #Sandy http://t.co/mTDzwzRC\n", @@ -52693,12 +47139,6 @@ "ground zero construction site goes feet water sandy godblessamerica \n", "\n", "\n", - "Flooding from East River at 20th St and Ave C at Peter Cooper Village [pic] #Sandy http://t.co/p9SUjRhC (via @mattmfm)\n", - "\n", - "--------------------------------------------------------\n", - "flooding east river 20th st ave c peter cooper village pic sandy \n", - "\n", - "\n", "Flooding from Hurricane #Sandy at Battery Park http://t.co/IezWN63A\n", "\n", "--------------------------------------------------------\n", @@ -52711,12 +47151,6 @@ "apple sues hurricane sandy copyright infringement new maps \n", "\n", "\n", - "Incredible photo! RT @NYGovCuomo Flooding from Hurricane #Sandy at Battery Park http://t.co/9TQGN4bN\n", - "\n", - "--------------------------------------------------------\n", - "incredible photo \n", - "\n", - "\n", "#Sandy #Manhattan #elprogramadeAR http://t.co/7vG8Ti1D\n", "\n", "--------------------------------------------------------\n", @@ -52738,7 +47172,7 @@ "Tanque encallado en orilla de Staten Island de Nueva York desde #Sandy mas detalles en: http://t.co/tMOvSTcE #Veracruz http://t.co/157P5i4w\n", "\n", "--------------------------------------------------------\n", - "tanque encallado orilla staten island nueva york sandy mas detalles veracruz \n", + "tanque encallado orilla staten island nueva york sandy detalles veracruz \n", "\n", "\n", "Deadly art RT @SeeSawMe: A Fleet of Taxis underwater in #Hoboken #Hurricane #Sandy http://t.co/MhkZ7QC9 http://t.co/4t6Nmfl5 #taxi #photo\n", @@ -52756,7 +47190,7 @@ "Regardez les images impressionnantes de l'ouragan #Sandy diffusées dans #Le13H de #TF1: http://t.co/EhhPVNxA http://t.co/9Ff24sJP\n", "\n", "--------------------------------------------------------\n", - "regardez images impressionnantes l ouragan sandy diffusées dans le13h tf1 \n", + "regardez images impressionnantes ouragan sandy diffusées le13h tf1 \n", "\n", "\n", "Taxi!!!! #Sandy http://t.co/T0eHtaif\n", @@ -52765,12 +47199,6 @@ "taxi sandy \n", "\n", "\n", - "#sandy lol http://t.co/8w9iZPJM\n", - "\n", - "--------------------------------------------------------\n", - "sandy lol \n", - "\n", - "\n", "Miren una de las entrada del Brooklyn Battery Tunnel #sandy http://t.co/dROm9fcc\n", "\n", "--------------------------------------------------------\n", @@ -52786,7 +47214,7 @@ "On voit bien #Sandy sur cette superbe photo de notre planète aujourd'hui, depuis le satellite GOES-13. http://t.co/AEW868aN”\n", "\n", "--------------------------------------------------------\n", - "voit bien sandy sur cette superbe photo notre planète aujourd hui depuis satellite goes 13 \n", + "voit bien sandy cette superbe photo planète aujourd hui depuis satellite goes3 \n", "\n", "\n", "Goldman Sachs, ftw. #Sandy RT @GSElevator Nice try, God. http://t.co/mB1ok037\n", @@ -52810,13 +47238,7 @@ "El Huracán #Sandy ha dejado #paisajes insólitos. Las mejores imágenes aquí: http://t.co/CqlQWHPV #Labocheck #agua http://t.co/djDnCh3u\n", "\n", "--------------------------------------------------------\n", - "huracán sandy dejado paisajes insólitos mejores imágenes aquí labocheck agua \n", - "\n", - "\n", - "LOL! Hahaha RT @HanAltena Breaking News! #Apple klaagt #Sandy aan voor kopiëren Apple Maps. http://t.co/hvOh8F2K\n", - "\n", - "--------------------------------------------------------\n", - "lol hahaha \n", + "huracán sandydejado paisajes insólitos mejores imágenes aquí labocheck agua \n", "\n", "\n", "look at this photo of Breezy Point,Queens Watch and give please. #sandy RT @sethmeyers21 Sandy Telethon on NBC at 8PM http://t.co/GswEO0lX\n", @@ -52828,7 +47250,7 @@ "Ground Zero building site flooded via BBC #sandy http://t.co/JKb0sCfO\n", "\n", "--------------------------------------------------------\n", - "ground zero building site flooded via bbc sandy \n", + "ground zero building site floodedbbc sandy \n", "\n", "\n", "Breaking News! #Apple klaagt #Sandy aan voor kopiëren Apple Maps. http://t.co/nrzcd2op\n", @@ -52840,7 +47262,7 @@ "A rainbow over #NYC . Some hope after hurricane! #HurricaneSandy http://t.co/924g8ttm\n", "\n", "--------------------------------------------------------\n", - "rainbow nyc hope hurricane hurricanesandy \n", + "rainbow new york city hope hurricane hurricane sandy \n", "\n", "\n", "“@KristineLilly: Hurricane #Sandy!\\nhttp://t.co/OkDnI6Us”” please tell\\nMe this isn't rylie's @christierampone\n", @@ -52849,22 +47271,10 @@ "please tell rylie \n", "\n", "\n", - "Flooding has turned Ground Zero into a waterfall. @AP photo #NYC #Sandy http://t.co/ADww5Wwl\n", - "\n", - "--------------------------------------------------------\n", - "flooding turned ground zero waterfall photo nyc sandy \n", - "\n", - "\n", "#Seaside #NJ #Sandy http://t.co/287eBJ0A\n", "\n", "--------------------------------------------------------\n", - "seaside nj sandy \n", - "\n", - "\n", - "Breaking: Water Floods WTC Construction Site #hurricane #sandy #nyc #wtc http://t.co/xt6MdKvd\n", - "\n", - "--------------------------------------------------------\n", - "breaking water floods wtc construction site hurricane sandy nyc wtc \n", + "seaside new jersey sandy \n", "\n", "\n", "Remember that moment in Al Gore's film when he said flooding would drown World Trade Center site? Just happened: http://t.co/jAHcJuXP #Sandy\n", @@ -52876,7 +47286,7 @@ "¡Impresionante! Imagen mas reciente de #Sandy desde el espacio. La costa este de EUA sigue desaparecida. http://t.co/YKVyjJEp\n", "\n", "--------------------------------------------------------\n", - "impresionante imagen mas reciente sandy espacio costa eua sigue desaparecida \n", + "impresionante imagen reciente sandy espacio costa eua sigue desaparecida \n", "\n", "\n", "holy shit #sandy, chill out http://t.co/pNJw5uJk\n", @@ -52900,13 +47310,7 @@ "A double rainbow touches down in Manhattan this morning, قوس قزح بعد #اعصار_ساندي #Sandy https://t.co/e09RoQpM http://t.co/85DUEd0T\n", "\n", "--------------------------------------------------------\n", - "double rainbow touches manhattan morning قوس قزح اعصار ساندي sandy \n", - "\n", - "\n", - "“@daxholt: Wow insane hurricane pic... RT @Tami213 @daxholt Trampoline stuck on power lines! http://t.co/GclFZw4E” @HowardStern\n", - "\n", - "--------------------------------------------------------\n", - "wow insane hurricane pic \n", + "double rainbow touches manhattan morning قوس قزح اعصارساندي sandy \n", "\n", "\n", "#Sandy #WorldTradeCenter #elprogramadeAR http://t.co/MqtQ3Z9E\n", @@ -52942,7 +47346,7 @@ "عاجل 🔴\\nصورة الآن للشوارع الممتلئة بالمياه اسفل جسر مانهاتن في #نيويورك ..\\n\\n#اعصار_ساندي #إعصار_ساندي #Sandy \\n- http://t.co/EpRWGw9N\n", "\n", "--------------------------------------------------------\n", - "عاجل صورة الآن للشوارع الممتلئة بالمياه اسفل جسر مانهاتن نيويورك اعصار ساندي إعصار ساندي sandy \n", + "عاجل صورة الآن للشوارع الممتلئة بالمياه اسفل جسر مانهاتن نيويورك اعصارساندي إعصارساندي sandy \n", "\n", "\n", "Aerial shot of #Queens fire damage. #sandy #flood #superstorm #hurricane http://t.co/d93zraul\n", @@ -52954,7 +47358,7 @@ "Stunning #Sandy photo of a trampoline caught in Milford, CT power lines (via \\n@courtmcmanus). http://t.co/FruM3TJR\n", "\n", "--------------------------------------------------------\n", - "stunning sandy photo trampoline caught milford ct power lines via \n", + "stunning sandy photo trampoline caught milford ct power lines \n", "\n", "\n", "#Sandy has given us many remarkable images. Here's another one, this time of a sinking #HMSBounty http://t.co/wLrkeIdW\n", @@ -52972,7 +47376,7 @@ "Oggi #NewYork si è svegliata così. Dopo l'uragano #Sandy, l'arcobaleno sopra Manhattan! http://t.co/KuDhoucW\n", "\n", "--------------------------------------------------------\n", - "oggi newyork si è svegliata così dopo l uragano sandy l arcobaleno sopra manhattan \n", + "oggi new york si è svegliata così dopo uragano sandy arcobaleno sopra manhattan \n", "\n", "\n", "Espectacular FOTO. Inundado el espacio de reconstrucción del World Trade Center #Sandy http://t.co/U7ptOnP3\n", @@ -52996,7 +47400,7 @@ "Así quedó Jersey Shore, destruído http://t.co/woORZQtD vía @buo01 #Sandy\n", "\n", "--------------------------------------------------------\n", - "así quedó jersey shore destruído vía sandy \n", + "así quedó jersey shore destruído sandy \n", "\n", "\n", "#AtlanticCity #Frankenstorm #Sandy http://t.co/GCnR1UOO\n", @@ -53008,19 +47412,19 @@ "Amazing pic of Ground Zero flooding in NYC #Sandy http://t.co/7UUVOyKF\n", "\n", "--------------------------------------------------------\n", - "amazing pic ground zero flooding nyc sandy \n", + "amazing pic ground zero flooding new york city sandy \n", "\n", "\n", "Me pondré a llorarrrrrrrrrr:'c, así esta una calle de manhattan :'(((( #Sandy VETEEEEEEEEE, @matthunter123 reportateee! http://t.co/bYq4yoZb\n", "\n", "--------------------------------------------------------\n", - "pondré llorarrrrrrrrrr c así calle manhattan sandy veteeeeeeeee reportateee \n", + "pondré llorarrrrrrrrrr así calle manhattan sandy veteeeeeeeee reportateee \n", "\n", "\n", "#Hoboken mayor on #AC360 10p RT @PANYNJ: Flood waters rush in Hoboken PATH through elevator shaft #Sandy http://t.co/yfflIMuk\n", "\n", "--------------------------------------------------------\n", - "hoboken mayor ac360 10p \n", + "hoboken mayor ac3600p \n", "\n", "\n", "Tras la tempestad vuelve la calma ! Precioso arcoiris sobre los rascacielos de Manhattan ! #Sandy http://t.co/Z0syTqMy\n", @@ -53032,31 +47436,25 @@ "#sandy arrasa NY http://t.co/zQmdKQJf\n", "\n", "--------------------------------------------------------\n", - "sandy arrasa ny \n", + "sandy arrasa new york \n", "\n", "\n", "Flying trampoline in #Sandy... CT >> New Milford >> http://t.co/L7AvFbR4\n", "\n", "--------------------------------------------------------\n", - "flying trampoline sandy ct greater greater new milford greater greater \n", + "flying trampoline sandy ct new milford \n", "\n", "\n", "La Zona Cero, memorial del 9/11 se ha convertido en una cascada http://t.co/rxzzomAM #NYC #Sandy Foto: AP\n", "\n", "--------------------------------------------------------\n", - "zona cero memorial 9 11 convertido cascada nyc sandy foto ap \n", - "\n", - "\n", - "Amazing pic of Ground Zero flooding in NYC #Sandy http://t.co/AuI2hCeM\"\n", - "\n", - "--------------------------------------------------------\n", - "amazing pic ground zero flooding nyc sandy \n", + "zona cero memorial del1 seconvertido cascada new york city sandy foto ap \n", "\n", "\n", "En alerta por #Sandy en los consulados Mexicanos aqui en EU http://t.co/aan4eyA1\n", "\n", "--------------------------------------------------------\n", - "alerta sandy consulados mexicanos aqui eu \n", + "alerta sandy consulados mexicanos aqui \n", "\n", "\n", "Impresionante inundación en Nueva York x el paso del huracán #Sandy: http://t.co/wCWZd5PH (foto via @Franallel)\n", @@ -53086,25 +47484,25 @@ "صورة للمياة وهي تغمر حفرة لمبنى قيد الإنشاء بنيويورك #إعصار_ساندي #السعودية #Sandy #saudi #uae #ksa http://t.co/D2uAH1b6\n", "\n", "--------------------------------------------------------\n", - "صورة للمياة وهي تغمر حفرة لمبنى قيد الإنشاء بنيويورك إعصار ساندي السعودية sandy saudi uae ksa \n", + "صورة للمياة وهي تغمر حفرة لمبنى قيد الإنشاء بنيويورك إعصارساندي السعودية sandy saudi uae ksa \n", "\n", "\n", "Mireu aquesta foto del sud de Manhattan on es veu una zona d'obres inundada. Via @AP #Sandy #inforac1 http://t.co/NH1nAFVL\n", "\n", "--------------------------------------------------------\n", - "mireu aquesta foto sud manhattan veu zona obres inundada via sandy inforac1 \n", + "mireu aquesta foto sud manhattan veu zona obres inundada sandy inforac1 \n", "\n", "\n", "Imagen de NY. Sorprendente. #Sandy http://t.co/zCWlcOx9\n", "\n", "--------------------------------------------------------\n", - "imagen ny sorprendente sandy \n", + "imagen new york sorprendente sandy \n", "\n", "\n", "De todas las fotos q he visto de #Sandy , ésta es una de las q más me ha llamado la atención http://t.co/42MSyCEN\n", "\n", "--------------------------------------------------------\n", - "todas fotos q visto sandy ésta q llamado atención \n", + "todas fotos q visto sandy ésta q mellamado atención \n", "\n", "\n", "#Sandy hundió al barco de los ‘Piratas del Caribe’ http://t.co/K5B3UzBl - http://t.co/TMxErP3r\n", @@ -53140,7 +47538,7 @@ "Cuando cierran hasta los McDonald's, es señal de que se avecina algo fuerte #Sandy (vía @cwelchCNN en NY) http://t.co/HyZkl4rq\n", "\n", "--------------------------------------------------------\n", - "cierran mcdonald señal avecina fuerte sandy vía ny \n", + "cierran mcdonald señal avecina fuerte sandy new york \n", "\n", "\n", "President Obama on Hurricane #Sandy: \"Take this very seriously\": http://t.co/joUrWYJd Photo @FEMA today: http://t.co/byviJKh6\n", @@ -53179,28 +47577,22 @@ "gestures like sandy warms heart amazing people band together tragedy \n", "\n", "\n", - "Hurricane 😱 http://t.co/UhrDDCe3\n", - "\n", - "--------------------------------------------------------\n", - "hurricane \n", - "\n", - "\n", "Des marathoniens se rendent à Staten Island pour aider les victimes de #Sandy (via @CBSSports). http://t.co/3Qa4NxEF\n", "\n", "--------------------------------------------------------\n", - "des marathoniens rendent à staten island pour aider victimes sandy \n", + "marathoniens rendentstaten island aider victimes sandy \n", "\n", "\n", "#QueTodoTwitterSeEntereQue #Sandy también pasó por CUBA, JAMAICA, HAITÍ y REPÚBLICA DOMINICANA / vía A.E.L.L.A http://t.co/OwWFHUGn\n", "\n", "--------------------------------------------------------\n", - "quetodotwitterseentereque sandy pasó cuba jamaica haití república dominicana vía l l \n", + "quetodotwitterseentereque sandy pasó cuba jamaica haití república dominicana \n", "\n", "\n", "Bel exemple d'entraide aux Etats-Unis ! #Sandy http://t.co/EcvURLib\n", "\n", "--------------------------------------------------------\n", - "bel exemple entraide aux etats unis sandy \n", + "bel exemple entraide etats unis sandy \n", "\n", "\n", "People can be pretty f*cking awesome... #Sandy http://t.co/mTmpJtEz\n", @@ -53236,7 +47628,7 @@ "l'entraide entre les New-Yorkais après #Sandy n'est pas une vue de l'esprit ! Bravo ! http://t.co/keQVhRRk\n", "\n", "--------------------------------------------------------\n", - "l entraide new yorkais après sandy n est pas une vue l esprit bravo \n", + "entraide new yorkais après sandy vue esprit bravo \n", "\n", "\n", "Dear mainstream media, #Sandy obliterated Cuba as well. Surely this wasn't your priority #BiasedMedia http://t.co/hxNArKDn\n", @@ -53248,19 +47640,19 @@ "Passing a gas line in Sunset Park- 8... 9... 10 blocks... 11... 12.... 13... 14... 15... 16 blocks. OMFG. #sandy http://t.co/0OEMlpV7\n", "\n", "--------------------------------------------------------\n", - "passing gas line sunset park 8 9 10 blocks 11 12 13 14 15 16 blocks omfg sandy \n", + "passing gas line sunset park 0 blocks 1 2 3 4 5 6 blocks sandy \n", "\n", "\n", "East river park. 10:30 am. #sandy http://t.co/5bDESIjh\n", "\n", "--------------------------------------------------------\n", - "east river park 10 30 sandy \n", + "east river park sandy \n", "\n", "\n", "Power is back downtown Manhattan #sandy #NYC http://t.co/nHpvQvQk\n", "\n", "--------------------------------------------------------\n", - "power back downtown manhattan sandy nyc \n", + "power back downtown manhattan sandy new york city \n", "\n", "\n", "Now this is a TRUE Neighbor. #sandy http://t.co/aZ1HWW2d\n", @@ -53278,7 +47670,7 @@ "SANDY HIT CUBA TOO #NYC #SANDY #CUBA http://t.co/fQfOcKc1\n", "\n", "--------------------------------------------------------\n", - "sandy hit cuba nyc sandy cuba \n", + "sandy hit cuba new york city sandy cuba \n", "\n", "\n", "This restores my faith in humanity. After Hurricane #Sandy... http://t.co/FWfPGkt6\n", @@ -53287,12 +47679,6 @@ "restores faith humanity hurricane sandy \n", "\n", "\n", - "Dear Mainstream Media - Cuba is also affected by #Sandy http://t.co/YJqv8jNW\n", - "\n", - "--------------------------------------------------------\n", - "dear mainstream media cuba also affected sandy \n", - "\n", - "\n", "Dear Media, #Sandy passed by #Cuba also http://t.co/9xolvcu4\n", "\n", "--------------------------------------------------------\n", @@ -53314,7 +47700,7 @@ "I was born in NY, raised in NJ. That means many things... like we don't give up and we believe in community! #Sandy http://t.co/gEv5QSSf\n", "\n", "--------------------------------------------------------\n", - "born ny raised nj means many things like give believe community sandy \n", + "born new york raised new jersey means many things like give believe community sandy \n", "\n", "\n", "I love this picture. #Sandy http://t.co/Xncvu7Wg\n", @@ -53323,12 +47709,6 @@ "love picture sandy \n", "\n", "\n", - "SANDY HIT CUBA TOO #NYC #SANDY #CUBA http://t.co/hCdSCDBX”\n", - "\n", - "--------------------------------------------------------\n", - "sandy hit cuba nyc sandy cuba \n", - "\n", - "\n", "Shockingly true tweet #Sandy ... http://t.co/UEh2PMnx\n", "\n", "--------------------------------------------------------\n", @@ -53344,13 +47724,13 @@ "#The darkest Halloween in downtown NYC from #sandy http://t.co/HK9O6QvI\n", "\n", "--------------------------------------------------------\n", - "darkest halloween downtown nyc sandy \n", + "darkest halloween downtown new york city sandy \n", "\n", "\n", "Man named Ralph in Hoboken, NJ shows true humanity after getting power back. #goodpeople #Sandy Bless you, Ralph! http://t.co/Hyj7f7jH\n", "\n", "--------------------------------------------------------\n", - "named ralph hoboken nj shows true humanity getting power back goodpeople sandy bless ralph \n", + "named ralph hoboken new jersey shows true humanity getting power back goodpeople sandy bless ralph \n", "\n", "\n", "Sharing. #Sandy http://t.co/t5YQ4EeH\n", @@ -53362,7 +47742,7 @@ "@AnonyOps @OccupyWallStNYC @OccupyWallSt @SuicideGirls @AnonIRC They say a picture tells a thousand words. #Sandy #NYC http://t.co/U43GT1fx\n", "\n", "--------------------------------------------------------\n", - "say picture tells thousand words sandy nyc \n", + "say picture tells thousand words sandy new york city \n", "\n", "\n", "Humanity :) photo from New Jersey #Sandy http://t.co/x4z8JmWA\n", @@ -53380,7 +47760,7 @@ "نيويورك الان حيث لا يظهر سوى قمة مبنى امباير ستيت مضيئا #Sandy #إعصار_ساندي #الكويت #ساندي #السعودية #الامارات http://t.co/kivImND5\n", "\n", "--------------------------------------------------------\n", - "نيويورك الان يظهر قمة مبنى امباير ستيت مضيئا sandy إعصار ساندي الكويت ساندي السعودية الامارات \n", + "نيويورك الان يظهر قمة مبنى امباير ستيت مضيئا sandy إعصارساندي الكويت ساندي السعودية الامارات \n", "\n", "\n", "Lower Manhattan sin electricidad debido a los embates de #Sandy | De: AFP http://t.co/0lstshBt\n", @@ -53395,12 +47775,6 @@ "good morning every one blest day stay safe thankful loveoneanother may give god joy remember sandy \n", "\n", "\n", - "Whoah. RT @Belstaff: This picture says it all. #Sandy #newyorkcity http://t.co/p1Hz1oO8\n", - "\n", - "--------------------------------------------------------\n", - "whoah \n", - "\n", - "\n", "#Sandy on Cuba http://t.co/p69nREsj\n", "\n", "--------------------------------------------------------\n", @@ -53410,13 +47784,13 @@ "Queridos Medios de \"Comunicación\", #Sandy también nos ha jodido a nosotros. Atentamente, Cuba. http://t.co/NUaVOu45\n", "\n", "--------------------------------------------------------\n", - "queridos medios comunicación sandy jodido atentamente cuba \n", + "queridos medios comunicación sandy nosjodido atentamente cuba \n", "\n", "\n", "Crane on 57 street collapsed. So dangerous! #NYC #Hurricane #Sandy http://t.co/s6T3oHtR\n", "\n", "--------------------------------------------------------\n", - "crane 57 street collapsed dangerous nyc hurricane sandy \n", + "crane on7 street collapsed dangerous new york city hurricane sandy \n", "\n", "\n", "This is so unreal. #OCMD #Sandy http://t.co/2DtFIMof\n", @@ -53428,19 +47802,13 @@ "Why individuals > government. #LetThemEatMarathons #Sandy http://t.co/8yNlNrpi\n", "\n", "--------------------------------------------------------\n", - "individuals greater government letthemeatmarathons sandy \n", - "\n", - "\n", - "“@LoDownNY: @ARaeAshcraft - yikes RT: East River Park. At 10:30 am. #Sandy #frankenstorm http://t.co/1ZUAS7FE”\n", - "\n", - "--------------------------------------------------------\n", - "yikes \n", + "individuals government letthemeatmarathons sandy \n", "\n", "\n", "El huracán #Sandy también arraso en Cuba y Haití... y nadie dice nada. Por lo menos van 67 muertos :( http://t.co/sge4nHfX\n", "\n", "--------------------------------------------------------\n", - "huracán sandy arraso cuba haití nadie dice menos 67 muertos \n", + "huracán sandy arraso cuba haití nadie dice menos van7 muertos \n", "\n", "\n", "Nachbarschaftshilfe in ❤New York❤\\n\\n#Sandy http://t.co/9AEd59oX\n", @@ -53455,40 +47823,28 @@ "shittymedia sandy \n", "\n", "\n", - "#Sandy Cuba. http://t.co/hieQjEiU\n", - "\n", - "--------------------------------------------------------\n", - "sandy cuba \n", - "\n", - "\n", "Le une historique du magazine de la ville de #NewYork #USA #Sandy http://t.co/yQydD0ms\n", "\n", "--------------------------------------------------------\n", - "une historique magazine ville newyork usa sandy \n", + "historique magazine ville new york usa sandy \n", "\n", "\n", "There still good people on this world !! #NewYork #Sandy #SandyNYC http://t.co/pHVglpiD\n", "\n", "--------------------------------------------------------\n", - "still good people world newyork sandy sandynyc \n", + "still good people world new york sandy sandynyc \n", "\n", "\n", "#NYC after #Sandy by night http://t.co/2Q61YrMK\n", "\n", "--------------------------------------------------------\n", - "nyc sandy night \n", - "\n", - "\n", - "C'mon Son!! #sandy http://t.co/f3yuyUAO\n", - "\n", - "--------------------------------------------------------\n", - "c mon sandy \n", + "new york city sandy night \n", "\n", "\n", "Corner of 23rd St and 10th Avenue #Sandy http://t.co/vw2KYRwZ\n", "\n", "--------------------------------------------------------\n", - "corner 23rd st 10th avenue sandy \n", + "corner of3rd st and0th avenue sandy \n", "\n", "\n", "Tears. Fireman saving dog caught in hurricane: http://t.co/2ZPRhogf (Photo via @PrincessGwenie1) #Sandy\n", @@ -53512,7 +47868,7 @@ "And Jamaica #Sandy >> RT @aidscuntagious: @AnonOpsSweden @AnonChingShih And #Jamaica http://t.co/Ih1Yoi0O\n", "\n", "--------------------------------------------------------\n", - "jamaica sandy greater greater \n", + "jamaica sandy \n", "\n", "\n", "STUPID #SANDY YOU CAN'T MAIL A CAR. http://t.co/OX6S4eID\n", @@ -53530,13 +47886,13 @@ "La ciudad que nunca duerme #NewYork #Sandy http://t.co/CX9nKmbR\n", "\n", "--------------------------------------------------------\n", - "ciudad nunca duerme newyork sandy \n", + "ciudad nunca duerme new york sandy \n", "\n", "\n", "In NJ! So cool! #Sandy http://t.co/gNqzfr2X\n", "\n", "--------------------------------------------------------\n", - "nj cool sandy \n", + "new jersey cool sandy \n", "\n", "\n", "Hurricane A-rod #mlbmemes http://t.co/1cyx4OdM\n", @@ -53548,49 +47904,37 @@ "This is how #Manhattan looked like for 5 days. #NYC #NewYork #Sandy http://t.co/wV9vgFYs\n", "\n", "--------------------------------------------------------\n", - "manhattan looked like 5 days nyc newyork sandy \n", + "manhattan looked like days new york city new york sandy \n", "\n", "\n", "Ils sont sympa ces new-yorkais (via @ppgarcia75 ) #Sandy http://t.co/jsP1IXsu\n", "\n", "--------------------------------------------------------\n", - "ils sont sympa ces new yorkais sandy \n", - "\n", - "\n", - "I love it!! RT @CerromeZONE: RT @AmberGoodhand: This makes me warm all over! #Sandy http://t.co/6SBPhpuB\n", - "\n", - "--------------------------------------------------------\n", - "love \n", + "sympa new yorkais sandy \n", "\n", "\n", "#Sandy Seul l'Empire State Building reste éclairé ! #NY #USA http://t.co/nQn32no8\n", "\n", "--------------------------------------------------------\n", - "sandy seul l empire state building reste éclairé ny usa \n", - "\n", - "\n", - "@SarahAlMohanna1: #SANDY #Respect http://t.co/2kidmRLz\n", - "\n", - "--------------------------------------------------------\n", - "sandy respect \n", + "sandy seul empire state building reste éclairé new york usa \n", "\n", "\n", "Wow! Heartbreaking MT“@JohnSchriffen: Unbelievable scene flying over #StatenIsland in an #NYPD helicopter #Sandy @ABC http://t.co/gBi78Jq6”\n", "\n", "--------------------------------------------------------\n", - "wow heartbreaking mt \n", + "heartbreaking mt \n", "\n", "\n", "PHOTO OF AN @FDNY RESCUING A DOG FROM #SANDY. #911BUFF http://t.co/YxMGrwd4\n", "\n", "--------------------------------------------------------\n", - "photo rescuing dog sandy 911buff \n", + "photo rescuing dog sandy \n", "\n", "\n", "This picture says it all. #Sandy #newyorkcity http://t.co/4YuN5RFW\n", "\n", "--------------------------------------------------------\n", - "picture says sandy newyorkcity \n", + "picture says sandy new yorkcity \n", "\n", "\n", "Imágenes que no se ven en los medios. #Sandy también azotó Cuba, Jamaica, Haití y República Dominicana http://t.co/s1NOqfMj\n", @@ -53608,7 +47952,7 @@ "#Sandy paraliza la actividad económica y política en el NE de los EU en la última semana, previo a #Elecciones2012! http://t.co/gR2De6KB\n", "\n", "--------------------------------------------------------\n", - "sandy paraliza actividad económica política ne eu última semana previo elecciones2012 \n", + "sandy paraliza actividad económica política última semana previo elecciones2012 \n", "\n", "\n", "This is sweet. #sandy http://t.co/qNOlh56f\n", @@ -53620,7 +47964,7 @@ "FDR DRIVE REMAINS CLOSED IN BOTH DIRECTIONS WHILE ITS COMPLETELY UNDERWATER. #SANDY #911BUFF http://t.co/mmGQfeAx\n", "\n", "--------------------------------------------------------\n", - "fdr drive remains closed directions completely underwater sandy 911buff \n", + "fdr drive remains closed directions completely underwater sandy11buff \n", "\n", "\n", "There is hope! RT @BangBangMommy: Helping each other in Hoboken #6abcsandy #Sandy http://t.co/IK8urcEQ\n", @@ -53632,7 +47976,7 @@ "LOVE THIS!! Community Comes Together After #Sandy in Hoboken, NJ @NYTMetro @nycgov http://t.co/KPSMCy1k\n", "\n", "--------------------------------------------------------\n", - "love community comes together sandy hoboken nj \n", + "love community comes together sandy hoboken new jersey \n", "\n", "\n", "#VeryCool RT @TommyTenney: RT @TerynSpears: American Spirit #Sandy #ILoveNY http://t.co/c7XNfWMA // This pic says it all...\n", @@ -53644,7 +47988,7 @@ "Proof of Humanity, spotted in NYC. #Sandy #socialgood http://t.co/ltr4MGMy\n", "\n", "--------------------------------------------------------\n", - "proof humanity spotted nyc sandy socialgood \n", + "proof humanity spotted new york city sandy socialgood \n", "\n", "\n", "Faith in humanity restored. #sandy #aftermath http://t.co/vd26IZpU\n", @@ -53662,13 +48006,7 @@ "Neighbors helping neighbors in Hoboken, NJ (via Facebook) #sandy http://t.co/zPMsXBYW\n", "\n", "--------------------------------------------------------\n", - "neighbors helping neighbors hoboken nj via facebook sandy \n", - "\n", - "\n", - "@AlexYudelson: Remember when President Bush was on vacation during Hurricane Katrina? This is President Obama #p2 http://t.co/6lPYHOk1\n", - "\n", - "--------------------------------------------------------\n", - "remember president bush vacation hurricane katrina president obama p2 \n", + "neighbors helping neighbors hoboken new jersey facebook sandy \n", "\n", "\n", "This makes me warm all over! #Sandy http://t.co/bAk6SZxv\n", @@ -53680,7 +48018,7 @@ "#solidarité On se mobilise aux States pour rester connecté après la ravageuse #Sandy (Photo by George Takei) http://t.co/gpdLyGev\n", "\n", "--------------------------------------------------------\n", - "solidarité mobilise aux states pour rester connecté après ravageuse sandy photo george takei \n", + "solidarité mobilise states rester connecté après ravageuse sandy photo george takei \n", "\n", "\n", "Ahora que todos estamos viendo las consecuencias de #Sandy \"Dear mainstream media...\" http://t.co/S1kxb9I0\n", @@ -53692,19 +48030,13 @@ "Cuando cierran hasta los McDonald's, es señal de que se avecina algo fuerte #Sandy (vía @cwelchCNN desde Nueva York) http://t.co/NQuXeSba\n", "\n", "--------------------------------------------------------\n", - "cierran mcdonald señal avecina fuerte sandy vía nueva york \n", + "cierran mcdonald señal avecina fuerte sandy nueva york \n", "\n", "\n", "Power of kindness!! #sandy #hurricanesandy #hoboken \\n@CeylanAtinc http://t.co/oUUkgdYZ\n", "\n", "--------------------------------------------------------\n", - "power kindness sandy hurricanesandy hoboken \n", - "\n", - "\n", - "wow, nice :) RT @AmberGoodhand This makes me warm all over! #Sandy http://t.co/DuF6ucAd\n", - "\n", - "--------------------------------------------------------\n", - "wow nice \n", + "power kindness sandy hurricane sandy hoboken \n", "\n", "\n", "Dear mainstream media... | #sandy #cuba http://t.co/5JPb0Cba\n", @@ -53716,13 +48048,13 @@ "National Guard near 25th and 3rd #Sandy http://t.co/RKAos6F2\n", "\n", "--------------------------------------------------------\n", - "national guard near 25th 3rd sandy \n", + "national guard near5th sandy \n", "\n", "\n", "#Sandy #Cuba #mainstreammedia #ohnekommentar http://t.co/OUXRbynR\n", "\n", "--------------------------------------------------------\n", - "sandy cuba mainstreammedia ohnekommentar \n", + "sandy cuba mainstreammedia nekommentar \n", "\n", "\n", "@ramonasinger this picture made me smile #sandy. Still can't believe you know when my birthday is! Turtle time? http://t.co/EUwAmAm6\n", @@ -53758,37 +48090,25 @@ "Esto es la fila de taxis esperando para cargar gasolina porque hay muy pocas gasolinerias funcionando #NYC #Sandy http://t.co/6KurxeH0\n", "\n", "--------------------------------------------------------\n", - "fila taxis esperando cargar gasolina pocas gasolinerias funcionando nyc sandy \n", - "\n", - "\n", - "#Sandy #Cuba http://t.co/FXllqMbF\n", - "\n", - "--------------------------------------------------------\n", - "sandy cuba \n", + "fila taxis esperando cargar gasolina pocas gasolinerias funcionando new york city sandy \n", "\n", "\n", "Still no power in Soho--besides NYU's ample backup, a privilege not shared w/their elderly neighbors/tenants #sandy http://t.co/6NITiGC5\n", "\n", "--------------------------------------------------------\n", - "still power soho besides nyu ample backup privilege shared w elderly neighbors tenants sandy \n", - "\n", - "\n", - "Oh, you're preparing for #Hurricane #Sandy? http://t.co/eSAjjNbh\n", - "\n", - "--------------------------------------------------------\n", - "oh preparing hurricane sandy \n", + "still power besides nyu ample backup privilege shared w elderly neighbors tenants sandy \n", "\n", "\n", "A Power strip, a drop-cord and a good samaritan. Hoboken NJ #Sandy http://t.co/nTD79Jlq\n", "\n", "--------------------------------------------------------\n", - "power strip drop cord good samaritan hoboken nj sandy \n", + "power strip drop cord good samaritan hoboken new jersey sandy \n", "\n", "\n", "#newyorkers are resilient even in #sandy's aftermath. love this image http://t.co/j42dzGM9\n", "\n", "--------------------------------------------------------\n", - "newyorkers resilient even sandy aftermath love image \n", + "new yorkers resilient even sandy aftermath love image \n", "\n", "\n", "En #CUBA dicen que #EsIndispensableSaber que a ellos tambien les afecto #Sandy por eso mandan este mensaje! http://t.co/dqYdTto1\n", @@ -53802,13 +48122,7 @@ "--------------------------------------------------------\n", "tranqui cal q obriu foto són els efectes sandy però són manhattan república dominicana cuba \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "#Leadership RT @AlexYudelson: Remember President Bush on vacation during Hurricane Katrina? This is President Obama #p2 http://t.co/p6W3pOhh\n", "\n", "--------------------------------------------------------\n", @@ -53818,7 +48132,7 @@ "On parle de NY (où vit ma famille), mais pitié n'oublions pas Haïti, Cuba et la République Dominicaine.. #sandy http://t.co/Ic0Er96r\n", "\n", "--------------------------------------------------------\n", - "parle ny où vit famille mais pitié n oublions pas haïti cuba et république dominicaine sandy \n", + "parle new york où vit famille pitié oublions haïti cuba république dominicaine sandy \n", "\n", "\n", "alles spricht nur von den \"schlimmen\" Problemen an der Ostküste #sandy #hurricane #cuba http://t.co/DfCtL9QC\n", @@ -53830,13 +48144,7 @@ "Después de la tormenta #Sandy sale el sol bello arco iris asoma en Sur de Brooklin http://t.co/uuSWXhPE via @jpodhoretz\n", "\n", "--------------------------------------------------------\n", - "después tormenta sandy sale sol bello arco iris asoma sur brooklin \n", - "\n", - "\n", - "Manhattan a oscuras. http://t.co/lw2oJcBc (vía @nytjim ) #sandy\n", - "\n", - "--------------------------------------------------------\n", - "manhattan oscuras vía sandy \n", + "después tormenta sandy sale sol bello arco iris asoma brooklin \n", "\n", "\n", "¡Este hombre es un Héroe! Salvo a este perrito en medio del huracán #Sandy http://t.co/wHr3VEeA\n", @@ -53866,7 +48174,7 @@ "Sharing is caring #Sandy #NY http://t.co/QCGm7vEl\n", "\n", "--------------------------------------------------------\n", - "sharing caring sandy ny \n", + "sharing caring sandy new york \n", "\n", "\n", "extraordinary random act of kindness #Sandy http://t.co/Ae3DG4Gr\n", @@ -53878,7 +48186,7 @@ "Orkaan Sandy niet enkel in NY, graag ook mediaaandacht voor andere landen en streken! #sandy #media http://t.co/Ow1N4qj5\n", "\n", "--------------------------------------------------------\n", - "orkaan sandy enkel ny graag mediaaandacht landen streken sandy media \n", + "orkaan sandy enkel new york graag mediaaandacht landen streken sandy media \n", "\n", "\n", "Coucou Haïti, Cuba... “@JulR: Dear mainstream media... #sandy http://t.co/BJArj0M7”\n", @@ -53890,7 +48198,7 @@ "Dear Mainstream Media… from Cuba #HurricaneSandy #sandy http://t.co/NlAPxyb6\n", "\n", "--------------------------------------------------------\n", - "dear mainstream media cuba hurricanesandy sandy \n", + "dear mainstream media cuba hurricane sandy sandy \n", "\n", "\n", "После урагана #Сэнди люди помогают друг другу по мелочам #ньюйорк #тайфун #usa #Sandy http://t.co/qaLeYo0q\n", @@ -53902,7 +48210,7 @@ "#PrayForAmerica #Sandy; 132004 погибших со всех городов. http://t.co/ZXXo7v4J\n", "\n", "--------------------------------------------------------\n", - "prayforamerica sandy 132004 погибших городов \n", + "prayforamerica sandy004 погибших городов \n", "\n", "\n", "Stunning image of much of Manhattan plunged into a power outage as #Sandy churns on. Photo via @nicksumm - http://t.co/YmF7NWtj\n", @@ -53926,43 +48234,37 @@ "фото которое прям душу трогает #ньюйорк #шторм #newyork #sandy http://t.co/ghan2s98\n", "\n", "--------------------------------------------------------\n", - "фото которое прям душу трогает ньюйорк шторм newyork sandy \n", + "фото которое прям душу трогает ньюйорк шторм new york sandy \n", "\n", "\n", "hope for humanity #sandy #HurricaneSandy http://t.co/1HeU9icj\n", "\n", "--------------------------------------------------------\n", - "hope humanity sandy hurricanesandy \n", - "\n", - "\n", - "@JoanTubau @sinonevero Only in NY #Sandy http://t.co/QMDhRl0n\n", - "\n", - "--------------------------------------------------------\n", - "ny sandy \n", + "hope humanity sandy hurricane sandy \n", "\n", "\n", "Massive bang and this giant skyscraper crane outside my office just buckled... Scary. #Sandy #NY #CNN http://t.co/LQN3424h\n", "\n", "--------------------------------------------------------\n", - "massive bang giant skyscraper crane outside office buckled scary sandy ny cnn \n", + "massive bang giant skyscraper crane outside office buckled scary sandy new york cnn \n", "\n", "\n", "Tutti parlano di #Sandy a NY , ecco i danni di #Sandy nella repubblica Domenicana. #Sandy di cui non si parla http://t.co/w0NmcycD\n", "\n", "--------------------------------------------------------\n", - "tutti parlano di sandy ny ecco danni di sandy nella repubblica domenicana sandy di cui non si parla \n", + "tutti parlano sandy new york ecco danni sandy nella repubblica domenicana sandy cui non si parla \n", "\n", "\n", "Photo by Iwan Baan\\n#ny #sandy http://t.co/IYqi7a0K\n", "\n", "--------------------------------------------------------\n", - "photo iwan baan ny sandy \n", + "photo iwan baan new york sandy \n", "\n", "\n", "HURRICANE SANDRA DEE OMG IM DEAD http://t.co/3SXRNwvG\n", "\n", "--------------------------------------------------------\n", - "hurricane sandra dee omg im dead \n", + "hurricane sandra dee dead \n", "\n", "\n", "Unbelievable scene flying over #StatenIsland in an #NYPD helicopter. Those are not little toys! #Sandy @ABC http://t.co/MNSogBJE\n", @@ -53977,12 +48279,6 @@ "lower manhattan still dark sandy \n", "\n", "\n", - "@ItIsJimCarrey: Oh, you're preparing for #Hurricane #Sandy? http://t.co/AjGi6txj\n", - "\n", - "--------------------------------------------------------\n", - "oh preparing hurricane sandy \n", - "\n", - "\n", "Alle luci dell'Empire State tornano a fare eco quelle della Freedom Tower. In mezzo però ancora buio fitto #Sandy http://t.co/g010fzfe\n", "\n", "--------------------------------------------------------\n", @@ -53992,7 +48288,7 @@ "La solidarité américaine.. C'est beau ! Peu de chance de voir ça en France. #newyork #Sandy http://t.co/Vzf81YsI\n", "\n", "--------------------------------------------------------\n", - "solidarité américaine c est beau peu chance voir ça france newyork sandy \n", + "solidarité américaine beau peu chance voir ça france new york sandy \n", "\n", "\n", "These people are Muslims without Islam !\\n#Sandy #Help #Respect http://t.co/bmreEDmz\n", @@ -54019,22 +48315,16 @@ "generosity spirit sandy \n", "\n", "\n", - "Hoboken, NJ. #sandy http://t.co/5IR42HzD\n", - "\n", - "--------------------------------------------------------\n", - "hoboken nj sandy \n", - "\n", - "\n", "Now this is resourceful #Sandy #NYC http://t.co/7t1j59QI\n", "\n", "--------------------------------------------------------\n", - "resourceful sandy nyc \n", + "resourceful sandy new york city \n", "\n", "\n", "NYC almost one week ago http://t.co/bfiEHp3D via @IanikMarcil http://t.co/7Ym7D6Zh\n", "\n", "--------------------------------------------------------\n", - "nyc almost one week ago \n", + "new york city almost one week ago \n", "\n", "\n", "Liten tankeställare! #cuba #sandy http://t.co/kwG700Kv\n", @@ -54052,7 +48342,7 @@ "Photo: A first responder rescues a #dog from a #NYC storm drain. Get your #Sandy news at http://t.co/w0dJpvR2 http://t.co/objNUW22\n", "\n", "--------------------------------------------------------\n", - "photo first responder rescues dog nyc storm drain get sandy news \n", + "photo first responder rescues dog new york city storm drain get sandy news \n", "\n", "\n", "Republicans: Remember when President Bush was on vacation during Hurricane Katrina? This is President Obama http://t.co/NUt5dl2t @NewsNation\n", @@ -54070,13 +48360,13 @@ "Good example of America doing it right #NYC #Sandy #Frankenstorm http://t.co/WpapzyRA\n", "\n", "--------------------------------------------------------\n", - "good example america right nyc sandy frankenstorm \n", + "good example america right new york city sandy frankenstorm \n", "\n", "\n", "Those #people Affected by #hurricanesandy #sandy keep on showing us that #good #hearts can kick #mothernature Ass! #NYC http://t.co/rgRKPXj3\n", "\n", "--------------------------------------------------------\n", - "people affected hurricanesandy sandy keep showing us good hearts kick mothernature ass nyc \n", + "people affected hurricane sandy sandy keep showing us good hearts kick mothernature ass new york city \n", "\n", "\n", "This is awesome #Sandy http://t.co/UGFLvA5s\n", @@ -54097,22 +48387,10 @@ "people awesome sandy \n", "\n", "\n", - "RT- @nagoul1: Dear Mainstream Media - Cuba is also affected by #Sandy http://t.co/WZFBMNKW \\n\\n*LOVE that country!!! TY for that tweet...\n", - "\n", - "--------------------------------------------------------\n", - "rt dear mainstream media cuba also affected sandy love country ty tweet \n", - "\n", - "\n", "Shocking image of #NY blackout after #Sandy http://t.co/cj220hjO\n", "\n", "--------------------------------------------------------\n", - "shocking image ny blackout sandy \n", - "\n", - "\n", - "#Sandy NY http://t.co/gXjQ3W7a\n", - "\n", - "--------------------------------------------------------\n", - "sandy ny \n", + "shocking image new york blackout sandy \n", "\n", "\n", "GOD BLESS DEM AND THEIR LIGHT BILL RT @CerromeZONE: RT @AmberGoodhand: This makes me warm all over! #Sandy http://t.co/HbS2Lcja\n", @@ -54130,25 +48408,25 @@ "#Sandy ha colpito anche Haiti, Cuba, Repubblica Dominicana e Giamaica. Non solo l'America demmerda http://t.co/iBCBk82q\n", "\n", "--------------------------------------------------------\n", - "sandy colpito anche haiti cuba repubblica dominicana giamaica non solo l america demmerda \n", + "sandycolpito anche haiti cuba repubblica dominicana giamaica non solo america demmerda \n", "\n", "\n", "Another line of fire fighters moving into Toms River, NJ. #sandy #sandynj http://t.co/DDusJL9T\n", "\n", "--------------------------------------------------------\n", - "another line fire fighters moving toms river nj sandy sandynj \n", + "another line fire fighters moving toms river new jersey sandy sandynj \n", "\n", "\n", "Seen in Hoboken, NJ #Sandy https://t.co/HTxc7xhz http://t.co/En7iTc93\n", "\n", "--------------------------------------------------------\n", - "seen hoboken nj sandy \n", + "seen hoboken new jersey sandy \n", "\n", "\n", "Manhattan às escuras, sob as luzes do Empire State... RT @ronniejoice #Sandy http://t.co/2NwUxlCX\n", "\n", "--------------------------------------------------------\n", - "manhattan às escuras sob luzes empire state \n", + "manhattan escuras sob luzes empire state \n", "\n", "\n", "@WellsFargo #powertothepeople #Sandy #Share http://t.co/n8t8tkYn\n", @@ -54160,25 +48438,19 @@ "Sharing is Caring #Sandy via http://t.co/ZkFiXLMt http://t.co/f9KjESWe\n", "\n", "--------------------------------------------------------\n", - "sharing caring sandy via \n", - "\n", - "\n", - "This is so sweet! RT @IrynaKIM\\nMy friend's picture - there ARE nice people in this World! :) #Sandy #NewJersey #USA http://t.co/RrUeI9Zd\n", - "\n", - "--------------------------------------------------------\n", - "sweet \n", + "sharing caring sandy \n", "\n", "\n", "La ciudad y la tormenta: fantástica portada de @NewYorkMag vía @Tumiki78 #Sandy http://t.co/6z9X7t1n\n", "\n", "--------------------------------------------------------\n", - "ciudad tormenta fantástica portada vía sandy \n", + "ciudad tormenta fantástica portada desandy \n", "\n", "\n", "Cuba: 15.323 destroyed houses y 132.733 people affected...but that's no news, isn't it? #Sandy http://t.co/bWCRL6E9\n", "\n", "--------------------------------------------------------\n", - "cuba 15 323 destroyed houses 132 733 people affected news sandy \n", + "cuba3 destroyed houses y3233 people affected news sandy \n", "\n", "\n", "What I think when I see hurricane relief crying sob tweets from @alynnhiggs and @EkatherineW http://t.co/22MsBBVX\n", @@ -54190,7 +48462,7 @@ "30 foot waves in Northshore Mass #Hurricane #Sandy #tcot #twcot #GodHaveMercy http://t.co/wfPilIGw\n", "\n", "--------------------------------------------------------\n", - "30 foot waves northshore mass hurricane sandy tcot twcot godhavemercy \n", + "0 foot waves northshore mass hurricane sandy tcot twcot godhavemercy \n", "\n", "\n", "Awesome example of civic engagement and tech in new jersey #sandy @andrewgoodmanf @turbovote @craigconnects http://t.co/jt8Fo851\n", @@ -54202,7 +48474,7 @@ "عمل بسيط ومعبر ! #ساندي #امريكا #اعصار_ساندي ، small action but significant #sandy #usa :) http://t.co/Z9XUfBjo\n", "\n", "--------------------------------------------------------\n", - "عمل بسيط ومعبر ساندي امريكا اعصار ساندي small action significant sandy usa \n", + "عمل بسيط ومعبر ساندي امريكا اعصارساندي small action significant sandy usa \n", "\n", "\n", "Other side of #sandy not seen in media or newspaper http://t.co/TARvY5Bj\n", @@ -54214,13 +48486,13 @@ "AMAZING! Thank you NYC Marathon runners! #Sandy #StatenIsland http://t.co/dY3hGaE7\n", "\n", "--------------------------------------------------------\n", - "amazing thank nyc marathon runners sandy statenisland \n", + "amazing thank new york city marathon runners sandy statenisland \n", "\n", "\n", "View north last night from still powerless Murray Hill. #nyc #sandy http://t.co/wnIV19Sh\n", "\n", "--------------------------------------------------------\n", - "view north last night still powerless murray hill nyc sandy \n", + "view north last night still powerless murray hill new york city sandy \n", "\n", "\n", "Fantastic display of community. RT @StephenRWynn: Cool! “@Julie_Sensweety: In NJ! So cool! #Sandy http://t.co/cz0mTL0k”\n", @@ -54238,25 +48510,25 @@ "Bengalas en los cruces de la 5ª avenida para suplir los semáforos que aún no funcionan #Sandy #NewYork http://t.co/lCuMdE6a\n", "\n", "--------------------------------------------------------\n", - "bengalas cruces 5ª avenida suplir semáforos aún funcionan sandy newyork \n", + "bengalas cruces avenida suplir semáforos aún funcionan sandy new york \n", "\n", "\n", "Foto de las calles de NY por tormenta #Sandy | http://t.co/HfyIh5o2\n", "\n", "--------------------------------------------------------\n", - "foto calles ny tormenta sandy \n", + "foto calles new york tormenta sandy \n", "\n", "\n", "Street flooding in #NYC: 48th Ave between 5th and Center Blvd in Long Island City (Photo by: Andrew Pelzer) #Sandy http://t.co/oualmEGe\n", "\n", "--------------------------------------------------------\n", - "street flooding nyc 48th ave 5th center blvd long island city photo andrew pelzer sandy \n", + "street flooding new york city 8th ave center blvd long island city photo andrew pelzer sandy \n", "\n", "\n", "Talking 2that fool isn't turning my lights on.@GovChristie: Talking w/ Pres. Obama abt needs n NJ @ROIC Fri eve. #Sandy http://t.co/qFQUPCpc\n", "\n", "--------------------------------------------------------\n", - "talking 2that fool turning lights talking w pres obama abt needs n nj fri eve sandy \n", + "talking fool turning lights \n", "\n", "\n", "dear mainstream media #jamaica & #cuba suffered also because of #haarp hurricane #sandy http://t.co/HS7ii0Gs\n", @@ -54268,25 +48540,19 @@ "PHOTO OF QUEENS EARLY MORNING. LOOKS LIKE WE ARE AFTER AN ATTACK. #SANDY #911BUFF http://t.co/Wi3JECm7\n", "\n", "--------------------------------------------------------\n", - "photo queens early morning looks like attack sandy 911buff \n", - "\n", - "\n", - "⭕RT-> @AlexYudelson: Remember when President Bush was on vacation during Hurricane Katrina?This is President Obama #p2 http://t.co/aSTg7A0U”\n", - "\n", - "--------------------------------------------------------\n", - "rt remember president bush vacation hurricane katrina president obama p2 \n", + "photo queens early morning looks like attack sandy11buff \n", "\n", "\n", "This is an amazing gesture! Always help each other! #ny #sandy http://t.co/xbY0hkfl\n", "\n", "--------------------------------------------------------\n", - "amazing gesture always help ny sandy \n", + "amazing gesture always help new york sandy \n", "\n", "\n", "Insanliq dediyin bu olsa gerek . #newyork #Sandy http://t.co/OzCXWqp9”\n", "\n", "--------------------------------------------------------\n", - "insanliq dediyin bu olsa gerek newyork sandy \n", + "insanliq dediyin bu olsa gerek new york sandy \n", "\n", "\n", "Thoughts w/ all impacted by storm, grateful most safe. Our view last night #NoSkyline. Remains dark inside too. #Sandy http://t.co/qkSPDsA2\n", @@ -54310,7 +48576,7 @@ "Amazing picture of NYC. #poweroutage #sandy #nyc #hurricane http://t.co/Gt3RfPK9\n", "\n", "--------------------------------------------------------\n", - "amazing picture nyc poweroutage sandy nyc hurricane \n", + "amazing picture new york city poweroutage sandy new york city hurricane \n", "\n", "\n", "These popped up all over #Hoboken Tuesday RT @courtgarcia: Now this is resourceful #Sandy #NYC http://t.co/VhjqXQjj\n", @@ -54322,31 +48588,25 @@ "La força de la mare naturalesa #Sandy #NYC http://t.co/Fd9WaTzF\n", "\n", "--------------------------------------------------------\n", - "força mare naturalesa sandy nyc \n", - "\n", - "\n", - "@CNNEE: Si cierran los McDonald's, señal q s avecina algo fuerte #Sandy (vía @cwelchCNN desde NY)http://t.co/KZwdIs7i Jojojo es verdad\n", - "\n", - "--------------------------------------------------------\n", - "si cierran mcdonald señal q avecina fuerte sandy vía ny jojojo verdad \n", + "força mare naturalesa sandy new york city \n", "\n", "\n", "#Sandy también ha jodido (más) Haití, Cuba, Jamaica y Rep. Dominicana. ¿Lo sabías? ¿Te lo ha dicho la TV? No padre... http://t.co/OESv009X\n", "\n", "--------------------------------------------------------\n", - "sandy jodido haití cuba jamaica rep dominicana sabías dicho tv padre \n", + "sandy tambiénjodido haití cuba jamaica rep dominicana sabías lodicho tv padre \n", "\n", "\n", "La calle 34 en NY #sandy brutal http://t.co/0aKl66yP\n", "\n", "--------------------------------------------------------\n", - "calle 34 ny sandy brutal \n", + "calle4 new york sandy brutal \n", "\n", "\n", "Hahaha stupid fucking #Sandy http://t.co/UkTPhx5J\n", "\n", "--------------------------------------------------------\n", - "hahaha stupid fucking sandy \n", + "stupid fucking sandy \n", "\n", "\n", "Only in America! RT @Ladislife: Ils sont sympa ces new-yorkais (via @ppgarcia75 ) #Sandy http://t.co/ZnI76l9Z\n", @@ -54364,13 +48624,13 @@ "Refresh hope in society. #NewYork #Sandy #NYS #NYC http://t.co/GjYoYCum\n", "\n", "--------------------------------------------------------\n", - "refresh hope society newyork sandy nys nyc \n", + "refresh hope society new york sandy nys new york city \n", "\n", "\n", "Being nice is a great thing. A little power can go a long way. #Sandy #Hoboken @ABC7News @WTOP #NYC @GMW http://t.co/UjQMuOav\n", "\n", "--------------------------------------------------------\n", - "nice great thing little power go long way sandy hoboken nyc \n", + "nice great thing little power go long way sandy hoboken new york city \n", "\n", "\n", "fucking socialists #Sandy http://t.co/TcwDr6o4\n", @@ -54382,13 +48642,13 @@ "Haha #Arod #Yankees #Hurricane #Sandy http://t.co/z6ReQpol\n", "\n", "--------------------------------------------------------\n", - "haha arod yankees hurricane sandy \n", + "arod yankees hurricane sandy \n", "\n", "\n", "Wow! Surreal ariel shot of #Sandy's lingering presence via @jbrookesbaker #SoPo #NYC http://t.co/bbPMvM2o\n", "\n", "--------------------------------------------------------\n", - "wow surreal ariel shot sandy lingering presence sopo nyc \n", + "surreal ariel shot sandy lingering presence sopo new york city \n", "\n", "\n", "@CheyPhi when you hear no cameras in EOC, show them this great photo RT @GovChristie: Talking with Pres. Obama #Sandy http://t.co/HuuNpEfY\n", @@ -54400,13 +48660,13 @@ "#Sandy, il black out di Downtown in una foto. Grazie Alana http://t.co/GDB1UkFh\n", "\n", "--------------------------------------------------------\n", - "sandy il black di downtown foto grazie alana \n", + "sandy black downtown foto grazie alana \n", "\n", "\n", "En momentos chungos te das cuenta de que por ahí hay buena gente... #Sandy #NewYorkCity http://t.co/6sfTpjpm\n", "\n", "--------------------------------------------------------\n", - "momentos chungos das cuenta ahí buena gente sandy newyorkcity \n", + "momentos chungos cuenta ahí buena gente sandy new yorkcity \n", "\n", "\n", "A view from Brooklyn: http://t.co/NGkKVO5e via @michaelcinquino @patkiernan #Sandy\n", @@ -54418,7 +48678,7 @@ "Apparently 'come Hell or high water' happened in #NYC via @nytimes - http://t.co/09tVjbKy #Sandy @NOAA @fema @nycgov http://t.co/ZtMO5QfP\n", "\n", "--------------------------------------------------------\n", - "apparently come hell high water happened nyc sandy \n", + "apparently come hell high water happened new york city sandy \n", "\n", "\n", "Power on in some places, off in others in Manhattan #Sandy #Sandyon6 #News4ny @NBC6 @NBCNewYork http://t.co/X9koJOcP\n", @@ -54433,12 +48693,6 @@ "الله يعين sandy \n", "\n", "\n", - "Cuando cierran hasta los McDonald's, es señal de que se avecina algo fuerte #Sandy desde Nueva York) http://t.co/FXLqQhi5\n", - "\n", - "--------------------------------------------------------\n", - "cierran mcdonald señal avecina fuerte sandy nueva york \n", - "\n", - "\n", "#sandy #yankee #a-rod @arielloljknotme http://t.co/qhLJdkrT\n", "\n", "--------------------------------------------------------\n", @@ -54475,28 +48729,16 @@ "gangnam style giant rain dance brought hurricane upon frankenstorm sandy \n", "\n", "\n", - "Looooooool #Sandy http://t.co/IJliKAfz\n", - "\n", - "--------------------------------------------------------\n", - "looooooool sandy \n", - "\n", - "\n", "#sandy story by day, wait for gas by night. #Union NJ w/my crew. 90 mins so far. @nbcwashington @NBCNewYork http://t.co/27VQMz0e\n", "\n", "--------------------------------------------------------\n", - "sandy story day wait gas night union nj w crew 90 mins far \n", - "\n", - "\n", - "via @Estacion_bcp: Un aparcamiento lleno de taxis se inunda por la supertormenta de #Sandy en, Nueva Jersey http://t.co/4Odkw6w0\n", - "\n", - "--------------------------------------------------------\n", - "aparcamiento lleno taxis inunda supertormenta sandy nueva jersey \n", + "sandy story day wait gas night union new jersey w crew 0 mins far \n", "\n", "\n", "Increible imagen de la destruccion total por un fuego debido al #Huracan #Sandy en barrio de Queens, NY http://t.co/Ky64zku0\n", "\n", "--------------------------------------------------------\n", - "increible imagen destruccion total fuego debido huracan sandy barrio queens ny \n", + "increible imagen destruccion total fuego debido huracan sandy barrio queens new york \n", "\n", "\n", "Otra imagen de la montaña rusa siendo arrastrada por las olas en Nueva Jersey a causa de #Sandy #tiempoinfo7 http://t.co/MMFepRQW\n", @@ -54532,25 +48774,19 @@ "Foto de tarms15 http://t.co/8QDVIWj9 #hurricanesandy #blackout #NYC\n", "\n", "--------------------------------------------------------\n", - "foto tarms15 hurricanesandy blackout nyc \n", + "foto tarms15 hurricane sandy blackout nyc \n", "\n", "\n", "Wooowww “@WCMurdaHD “@Satisfies69 #HurricaneSandy http://t.co/HzUjQtQR””\n", "\n", "--------------------------------------------------------\n", - "wooowww hurricanesandy \n", + "wooowww hurricane sandy \n", "\n", "\n", "#atlanticcitynj #hurricanesandy #jerseyshore #nj #superstorm2012 #abc7 #sandyabc7 #besafe boardwalk floating http://t.co/77saZXJQ\n", "\n", "--------------------------------------------------------\n", - "atlanticcitynj hurricanesandy jerseyshore nj superstorm2012 abc7 sandyabc7 besafe boardwalk floating \n", - "\n", - "\n", - "نيوجرسي،احدهم يتبرع بمساعدة الاخرين لشحن جوالاتهم في ضل انقطاع التيار الكهربائي. اعجبتني! #ساندي sandy# @saudiinusa http://t.co/o6wgbUe1\"\n", - "\n", - "--------------------------------------------------------\n", - "نيوجرسي احدهم يتبرع بمساعدة الاخرين لشحن جوالاتهم ضل انقطاع التيار الكهربائي اعجبتني ساندي sandy \n", + "atlanticcitynj hurricane sandy jerseyshore new jersey superstorm2012 abc7 sandyabc7 besafe boardwalk floating \n", "\n", "\n", "http://t.co/kMDJg6gF Sandy also struck Cuba, Haiti and Dominican Republic\n", @@ -54562,7 +48798,7 @@ "James river bridge almost buried by #HurricaneSandy Hampton VA http://t.co/FVAvPFFY\n", "\n", "--------------------------------------------------------\n", - "james river bridge almost buried hurricanesandy hampton va \n", + "james river bridge almost buried hurricane sandy hampton va \n", "\n", "\n", "“@DMVFollowers Hurricane Sandy is still a day & a half away & Maryland & Ocean City are already flooding. http://t.co/0hiiuzRY”\n", @@ -54580,19 +48816,13 @@ "@GillianKami Sì sì. Sandy ha colpito le coste di Manhattan poco fa. Guarda com'era l'empire state building http://t.co/6pu8CoPQ\n", "\n", "--------------------------------------------------------\n", - "sì sì sandy colpito coste di manhattan fa guarda com l empire state building \n", - "\n", - "\n", - "@Yankee_Victor: El Empire State en medio de la Tormeta-postropical Sandy,al parecer el único iluminado a su alrededor http://t.co/1SLgSSn5\n", - "\n", - "--------------------------------------------------------\n", - "empire state medio tormeta postropical sandy parecer único iluminado alrededor \n", + "sì sì sandycolpito coste manhattan fa guarda empire state building \n", "\n", "\n", "wow what a nice pic http://t.co/AABTESYl during hurricane sandy http://t.co/m38dIIeG\n", "\n", "--------------------------------------------------------\n", - "wow nice pic hurricane sandy \n", + "nice pic hurricane sandy \n", "\n", "\n", "Hurricane Sandy: View From Above (NYTimes) http://t.co/kbxEykLG 右半分のあたり停電してる感じですね。別の角度 http://t.co/EA6edo5S\n", @@ -54604,31 +48834,31 @@ "Evacuation of NYU medical #Crazy #hurricanesandy #prayers http://t.co/y61mYfJZ\n", "\n", "--------------------------------------------------------\n", - "evacuation nyu medical crazy hurricanesandy prayers \n", + "evacuation nyu medical crazy hurricane sandy prayers \n", "\n", "\n", "<Dam!> RT @kimbobitch1: RT @msmollymeredith: 34th street and 1st avenue in NYC. #HurricaneSandy http://t.co/3PmQOri7\n", "\n", "--------------------------------------------------------\n", - "less dam greater \n", + "dam \n", "\n", "\n", "Verrazano Bridge holy shittt #jesuswept #bridge #waves #storm #hurricanesandy http://t.co/f8QECHML\n", "\n", "--------------------------------------------------------\n", - "verrazano bridge holy shittt jesuswept bridge waves storm hurricanesandy \n", + "verrazano bridge holy shittt jesuswept bridge waves storm hurricane sandy \n", "\n", "\n", "The \"City That Never Sleeps\" has finally gone to bed #hurricanesandy #recentphoto #blackout #nyc 🗽🌃 http://t.co/bTswV5ax\n", "\n", "--------------------------------------------------------\n", - "city never sleeps finally gone bed hurricanesandy recentphoto blackout nyc \n", + "city never sleeps finally gone bed hurricane sandy recentphoto blackout new york city \n", "\n", "\n", "NYC in complete darkness😳 #hurricane #sandy #hurricanesandy http://t.co/wO5yY4Rf\n", "\n", "--------------------------------------------------------\n", - "nyc complete darkness hurricane sandy hurricanesandy \n", + "new york city complete darkness hurricane sandy hurricane sandy \n", "\n", "\n", "People helping people in New Jersey after Sandy.... http://t.co/ODWSq2DI\n", @@ -54640,7 +48870,7 @@ "All of newyork in darkness, except the Empire State Building #hurricanesandy #empirestate #newyork #darkness http://t.co/5T6SpSCy\n", "\n", "--------------------------------------------------------\n", - "newyork darkness except empire state building hurricanesandy empirestate newyork darkness \n", + "new york darkness except empire state building hurricane sandy empirestate new york darkness \n", "\n", "\n", "Whoy. Sandy's bout it. Be safe everyone! RT @HitMyBeeper 😳 James River Bridge!! #hamptonVa #HurricaneSandy http://t.co/HN0l0Svq\n", @@ -54652,43 +48882,43 @@ "better than photoshop: #hurricanesandy Photo by sharonfeder • Instagram http://t.co/h58DeBUl\n", "\n", "--------------------------------------------------------\n", - "better photoshop hurricanesandy photo sharonfeder instagram \n", + "better photoshop hurricane sandy photo sharonfeder instagram \n", "\n", "\n", "#ThisShitCray Empire state of mind. http://t.co/gywkgAnL #manhattan #NYC #blackout #empirestate #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "thisshitcray empire state mind manhattan nyc blackout empirestate hurricanesandy \n", + "thisshitcray empire state mind manhattan new york city blackout empirestate hurricane sandy \n", "\n", "\n", "Nigga said fuck Hurricane Sandy lmfaoo #YOLO http://t.co/QR3QwjXk\n", "\n", "--------------------------------------------------------\n", - "nigga said fuck hurricane sandy lmfaoo yolo \n", + "nigga said fuck hurricane sandy yolo \n", "\n", "\n", "Lights out in in the city that never sleeps #HurricaneSandy #reddit http://t.co/QjyR6Cqg\n", "\n", "--------------------------------------------------------\n", - "lights city never sleeps hurricanesandy reddit \n", - "\n", + "lights city never sleeps hurricane sandy reddit \n", "\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "The Empire State is the only light in the sky: http://t.co/OCPaTJ3c #hurricanesandy #tweetacane\n", "\n", "--------------------------------------------------------\n", - "empire state light sky hurricanesandy tweetacane \n", + "empire state light sky hurricane sandy tweetacane \n", "\n", "\n", "All #NYC is #dark now except the #EmpireStateBuilding. #sandy #hurricanesandy #storm #picoftheday #instapi http://t.co/PTeWxYdV\n", "\n", "--------------------------------------------------------\n", - "nyc dark except empirestatebuilding sandy hurricanesandy storm picoftheday instapi \n", - "\n", - "\n", - "This is craziness #hurricanesandy\\nhttp://t.co/mJ7a67Ml\n", - "\n", - "--------------------------------------------------------\n", - "craziness hurricanesandy \n", + "new york city dark except empirestatebuilding sandy hurricane sandy storm picoftheday instapi \n", "\n", "\n", "Hurricane impacting Virginia http://t.co/3lDzKVyI\n", @@ -54706,7 +48936,7 @@ "The Village goes dark #hurricanesandy http://t.co/bVqfSPP6\n", "\n", "--------------------------------------------------------\n", - "village goes dark hurricanesandy \n", + "village goes dark hurricane sandy \n", "\n", "\n", "“@Kenneth_Foster “@andrewcochranx Nigga said fuck Hurricane Sandy 😂😂😂 http://t.co/5IF4VQ53””\n", @@ -54724,61 +48954,55 @@ "Half of Manhattan goes dark. This is crazy. #HurricaneSandy http://t.co/c0gKUgkL\n", "\n", "--------------------------------------------------------\n", - "half manhattan goes dark crazy hurricanesandy \n", + "half manhattan goes dark crazy hurricane sandy \n", "\n", "\n", "“@pourmecoffee: Empire State Building shines in the dark like a boss. http://t.co/ITCQR6PK” #likeaboss #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "likeaboss hurricanesandy \n", + "likeaboss hurricane sandy \n", "\n", "\n", "Whitehall station this morning http://t.co/VNiYapKk #HurricaneSandy\n", "\n", "--------------------------------------------------------\n", - "whitehall station morning hurricanesandy \n", + "whitehall station morning hurricane sandy \n", "\n", "\n", "Sandy cubre NYC https://t.co/vjJrdsSG #awesome\n", "\n", "--------------------------------------------------------\n", - "sandy cubre nyc awesome \n", - "\n", - "\n", - "Damn!!! RT @HitMyBeeper: 😳 James River Bridge!! #hamptonVa #HurricaneSandy http://t.co/7abO7BlN\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", + "sandy cubre new york city awesome \n", "\n", "\n", "na boa tô com medo desse furacão Sandy, olha isso https://t.co/5SVjp63B\n", "\n", "--------------------------------------------------------\n", - "boa tô com medo desse furacão sandy olha isso \n", + "boa tô medo desse furacão sandy olisso \n", "\n", "\n", "What loses power looks like in NYC #hurricanesandy http://t.co/xnLNaKRR\n", "\n", "--------------------------------------------------------\n", - "loses power looks like nyc hurricanesandy \n", + "loses power looks like new york city hurricane sandy \n", "\n", "\n", "Bridge in CT almost under water thank god i live in Cali #hurricaneSandy http://t.co/mk5YNM0K\n", "\n", "--------------------------------------------------------\n", - "bridge ct almost water thank god live cali hurricanesandy \n", + "bridge ct almost water thank god live cali hurricane sandy \n", "\n", "\n", "En USA hacen bien las cosas, si fuese Spain ya habría peta'o http://t.co/7ZRINs8x #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "usa hacen bien cosas si spain peta hurricanesandy \n", + "usa hacen bien cosas si spain peta hurricane sandy \n", "\n", "\n", "Ambulances lining up outside NYU hospital after hospital lost power #heros #hurricanesandy #prayforsandyvict http://t.co/KSeeEpfj\n", "\n", "--------------------------------------------------------\n", - "ambulances lining outside nyu hospital hospital lost power heros hurricanesandy prayforsandyvict \n", + "ambulances lining outside nyu hospital hospital lost power heros hurricane sandy prayforsandyvict \n", "\n", "\n", "«@JENNIWOWW Just was shown a picture of my town... So sorry for everyone that was affected by sandy http://t.co/4GqLQ0R4»\n", @@ -54790,7 +49014,7 @@ "On way into North Wildwood (Near ocean drive). Im gona throw up now. #hurricanesandy #skank #crumb #shorelif http://t.co/rZM4PCF5\n", "\n", "--------------------------------------------------------\n", - "way north wildwood near ocean drive im gona throw hurricanesandy skank crumb shorelif \n", + "way north wildwood near ocean drive gona throw hurricane sandy skank crumb shorelif \n", "\n", "\n", "Furacão Sandy, filme de apocalipse http://t.co/WVXuBITi\n", @@ -54799,28 +49023,16 @@ "furacão sandy filme apocalipse \n", "\n", "\n", - "Crazy! @bewellgroomed: Wow! #shitgettinreal #wow #hurricanesandy Photo by nicksummers • Instagram http://t.co/2tQlKrRa\n", - "\n", - "--------------------------------------------------------\n", - "crazy wow shitgettinreal wow hurricanesandy photo nicksummers instagram \n", - "\n", - "\n", - "@sosdemi furacão sandy http://t.co/jWoIkWr4 https://t.co/w6ZEqCuh\n", - "\n", - "--------------------------------------------------------\n", - "furacão sandy \n", - "\n", - "\n", "_brando_'s photo http://t.co/dadX05q7 Lower manhattan lights out. #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "brando photo lower manhattan lights hurricanesandy \n", + "brando photo lower manhattan lights hurricane sandy \n", "\n", "\n", "The city that never sleeps, is very asleep tonight. #nyc #hurricanesandy #frankenstorm #creepy http://t.co/xyp4BaTy\n", "\n", "--------------------------------------------------------\n", - "city never sleeps asleep tonight nyc hurricanesandy frankenstorm creepy \n", + "city never sleeps asleep tonight new york city hurricane sandy frankenstorm creepy \n", "\n", "\n", "Hurricane Sandy devastation... in Dominican Republic... http://t.co/c7UYnWv5\n", @@ -54832,37 +49044,37 @@ "#NewYork #ConyIsland #HurricaneSandy http://t.co/3j8oRe2y\n", "\n", "--------------------------------------------------------\n", - "newyork conyisland hurricanesandy \n", + "new york conyisland hurricane sandy \n", "\n", "\n", "Last night the Empire State Building was one of the only buildings in Manhattan with power #HurricaneSandy # http://t.co/BsMmj762\n", "\n", "--------------------------------------------------------\n", - "last night empire state building one buildings manhattan power hurricanesandy \n", + "last night empire state building one buildings manhattan power hurricane sandy \n", "\n", "\n", "الله يستر , صوره اعصار ساندي بامريكا 12\\n#إعصار_ساندي Hurricane Sandy http://t.co/1KBxuMzB”\n", "\n", "--------------------------------------------------------\n", - "الله يستر صوره اعصار ساندي بامريكا 12 إعصار ساندي hurricane sandy \n", + "الله يستر صوره اعصار ساندي بامريكا2 إعصارساندي hurricane sandy \n", "\n", "\n", "😳 James River Bridge!! #hamptonVa #HurricaneSandy http://t.co/OUV6Emvw\n", "\n", "--------------------------------------------------------\n", - "james river bridge hamptonva hurricanesandy \n", + "james river bridge hamptonva hurricane sandy \n", "\n", "\n", "Blackout in Manhattan . Everythings out but the empire state building :( #hurricanesandy http://t.co/zjBP5NY1\n", "\n", "--------------------------------------------------------\n", - "blackout manhattan everythings empire state building hurricanesandy \n", + "blackout manhattan everythings empire state building hurricane sandy \n", "\n", "\n", "NYC Blackout. #HurricaneSandy http://t.co/T2ca7qkC\n", "\n", "--------------------------------------------------------\n", - "nyc blackout hurricanesandy \n", + "new york city blackout hurricane sandy \n", "\n", "\n", "Кран упал RT @NewYorkPost: BREAKING: Crane Collapse in Midtown #NYC #hurricance #sandy http://t.co/du1XMyl0\n", @@ -54880,25 +49092,25 @@ "Hurricane #Sandy has taken out construction crane for 90-storey #One57 in #NYC - hope nothing like this in #Toronto https://t.co/UbFsBnCA\n", "\n", "--------------------------------------------------------\n", - "hurricane sandy taken construction crane 90 storey one57 nyc hope nothing like toronto \n", + "hurricane sandy taken construction crane for0 storey one57 new york city hope nothing like toronto \n", "\n", "\n", "“@EricaRN4USA 34th and 1st Avenue in Manhattan, NY - 10 minutes ago.#Hurricane #Sandy #NYC #GodHaveMercy #tcot #twcot http://t.co/Tq13FNOA”\n", "\n", "--------------------------------------------------------\n", - "34th first avenue manhattan ny 10 minutes ago hurricane sandy nyc godhavemercy tcot twcot \n", + "4th first avenue manhattan new york 0 minutes ago hurricane sandy new york city godhavemercy tcot twcot \n", "\n", "\n", "A crane on top of a building on W 57th street is breaking… please stay safe folks. #Sandy http://t.co/rCdDjYon\n", "\n", "--------------------------------------------------------\n", - "crane top building w 57th street breaking please stay safe folks sandy \n", + "crane top building w7th street breaking please stay safe folks sandy \n", "\n", "\n", "«@NewYorkPost Flooding on the West Side #nyc #hurricane #sandy via @JButlerNYC http://t.co/0shGNjv9»\n", "\n", "--------------------------------------------------------\n", - "flooding west side nyc hurricane sandy \n", + "flooding west side new york city hurricane sandy \n", "\n", "\n", "Some of the pictures being taken during Sandy are incredible. https://t.co/mAUwDGMw\n", @@ -54916,7 +49128,7 @@ "I love living in the future. “@nowthisnews... Two words: working wifi. #sandy http://t.co/eBAMSEJZ” H/T: @joweldon \n", "\n", "--------------------------------------------------------\n", - "love living future two words working wifi sandy h \n", + "love living future two words working wifi sandy \n", "\n", "\n", "The city that never sleeps.. has turned off the lights for the night http://t.co/3Keoyzjj #Sandy\n", @@ -54928,7 +49140,7 @@ "For everyone who is complaining that we had school yesterday & today & that the hurricane was a \"joke\" I'm c http://t.co/5tLtwiVM\n", "\n", "--------------------------------------------------------\n", - "everyone complaining school yesterday today hurricane joke c \n", + "everyone complaining school yesterday today hurricane joke \n", "\n", "\n", "Firefighters in US saving doggies as well as people from the hurricane #emergencyservices #Sandy http://t.co/1WigUe1R\n", @@ -54940,7 +49152,7 @@ "The pier at Ocean City collapsed like 10 minutes ago. http://t.co/6Tgzx6Tu Sandy ass aint playing!!!!\n", "\n", "--------------------------------------------------------\n", - "pier ocean city collapsed like 10 minutes ago sandy ass aint playing \n", + "pier ocean city collapsed like0 minutes ago sandy ass aint playing \n", "\n", "\n", "First responders to not only people but the animals as well, in the wake of Hurricane Sandy. http://t.co/vEiW9jGZ\n", @@ -54952,7 +49164,7 @@ "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/Caft5QNt”\\n\\n- convert 2 democrat\n", "\n", "--------------------------------------------------------\n", - "convert 2 democrat \n", + "convert democrat \n", "\n", "\n", "Another way to monitor the Hurricane: http://t.co/j2tOcuAZ (Here is a pic of Ocean City Pier falling apart: \\nhttp://t.co/YUpcxvas )\n", @@ -54967,24 +49179,12 @@ "darkness half city manhattan sandy \n", "\n", "\n", - "@princessGwenie13d Dog rescued from hurricane Sandy! Firemen are not only saving the people! http://t.co/iA9wnkVE @abgpattyo\n", - "\n", - "--------------------------------------------------------\n", - "dog rescued hurricane sandy firemen saving people \n", - "\n", - "\n", "A dog rescued from hurricane #sandy Thank you to the men and women that risk their lives for other people (and pets!) http://t.co/YPbAFT0Y\n", "\n", "--------------------------------------------------------\n", "dog rescued hurricane sandy thank women risk lives people pets \n", "\n", "\n", - ":( MT @JustinKing224: Essentially the only building w/ power in #NYC right now is the Empire State Building. #Sandy http://t.co/uMHc90zB\n", - "\n", - "--------------------------------------------------------\n", - "essentially building w power nyc right empire state building sandy \n", - "\n", - "\n", "The night the hurricane hit New York. Unimaginable. http://t.co/rZ7PKkI1\n", "\n", "--------------------------------------------------------\n", @@ -54994,13 +49194,13 @@ "That's after the 80+ house blaze from Sandy. http://t.co/Gfu66Q5y\n", "\n", "--------------------------------------------------------\n", - "80 house blaze sandy \n", + "the0 house blaze sandy \n", "\n", "\n", "This is...unreal. Essentially the only building with power in #NYC right now is the Empire State Bldng #Sandy http://t.co/S7ZNZ2ac”\n", "\n", "--------------------------------------------------------\n", - "unreal essentially building power nyc right empire state bldng sandy \n", + "unreal essentially building power new york city right empire state bldng sandy \n", "\n", "\n", "“@GovChristie: Talking with Pres. Obama about needs in #NJ at the ROIC Friday evening. #Sandy http://t.co/Caft5QNt”\\n- u love the publicity!\n", @@ -55015,70 +49215,28 @@ "waters rise hurricane sandy near jfk runways definately going floodedairport \n", "\n", "\n", - "This was the best RT“@jeremyscahill Best moment from Ali Velshi's Sandy coverage today: http://t.co/Ot3kPm1z”\n", - "\n", - "--------------------------------------------------------\n", - "best \n", - "\n", - "\n", "http://t.co/B6s43ImG\\n\\n#sandy has not even hit land yet not good my heart goes out to the Northeast\n", "\n", "--------------------------------------------------------\n", "sandy even hit land yet good heart goes northeast \n", "\n", "\n", - "President Obama on Hurricane #Sandy: \"Take this very seriously\": http://t.co/tF9IGWcF Photo today: http://t.co/zs4AOOsa\n", - "\n", - "--------------------------------------------------------\n", - "president obama hurricane sandy take seriously photo today \n", - "\n", - "\n", - "@whitehouse: President Obama on Hurricane #Sandy: Take this very seriously\" http://t.co/6QWIcDKN Photo @FEMA today http://t.co/vtAcZTSF\"\n", - "\n", - "--------------------------------------------------------\n", - "president obama hurricane sandy take seriously photo today \n", - "\n", - "\n", "Living room looks like Sea World exhibit RT @nowthisnews: How high is the water in Brigantine, NJ? This high: \\n\\n#sandy http://t.co/50QByIl2\n", "\n", "--------------------------------------------------------\n", "living room looks like world exhibit \n", "\n", "\n", - "#sandy @MikeElk: At least 15feet high RT @kristengwynne This photo of FDR drive under water is the best I got so far http://t.co/3yY0DjKq\n", - "\n", - "--------------------------------------------------------\n", - "sandy least 15feet high \n", - "\n", - "\n", "#sandy - How high is the water in Brigantine, NJ? This high: http://t.co/GkPBkxsx // somethin' gonna give. #hurricane\n", "\n", "--------------------------------------------------------\n", - "sandy high water brigantine nj high somethin gonna give hurricane \n", + "sandy high water brigantine new jersey high somethin gonna give hurricane \n", "\n", "\n", "How high is the water in Brigantine, NJ? This high: \\n\\n#sandy http://t.co/K8stNajT\n", "\n", "--------------------------------------------------------\n", - "high water brigantine nj high sandy \n", - "\n", - "\n", - "“@Alyssa_Milano: Thank goodness for people who are kind #sandy http://t.co/8j6ABz3O /via @CarrieFairygirl”that is awesome\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", - "“@AlexYudelson Remember when President Bush was on vacation during Hurricane Katrina? This is President Obama #p2 http://t.co/OVaaH9E3””\n", - "\n", - "--------------------------------------------------------\n", - "remember president bush vacation hurricane katrina president obama p2 \n", - "\n", - "\n", - "@AlexYudelson: Remember when President Bush was on vacation during Hurricane Katrina?This is President Obama #p2 http://t.co/Nen01mc8\n", - "\n", - "--------------------------------------------------------\n", - "remember president bush vacation hurricane katrina president obama p2 \n", + "high water brigantine new jersey high sandy \n", "\n", "\n", "“@toshamack_ent “@AlexYudelson Remember whn Pres.Bush ws on vacation during Hurricane Katrina? This is Pres.Obama #p2 http://t.co/aBjHJCCR””\n", @@ -55090,7 +49248,7 @@ "twc_hurricane @nowthised: Wider shot of scaffolding toppling car on CPW and 92nd, across from Central Park,NYC #sandy https://t.co/AHNA29Qz\n", "\n", "--------------------------------------------------------\n", - "twc hurricane wider shot scaffolding toppling car cpw 92nd across central park nyc sandy \n", + "twchurricane \n", "\n", "\n", "#sandy wants in http://t.co/pWewVNUd\n", @@ -55102,19 +49260,7 @@ "“@abc7newsBayArea #Sandy MT @DianeSawyer Miles of Manhattan in a blackout. (photo: @nicksumm ) http://t.co/jVdIHKo6”\n", "\n", "--------------------------------------------------------\n", - "sandymiles manhattan blackout photo \n", - "\n", - "\n", - "@SlimPaley: #Sandy #ILoveNY http://t.co/HHS8H9nW this makes my heart smile. We must unite in times like these.\n", - "\n", - "--------------------------------------------------------\n", - "sandy iloveny makes heart smile must unite times like \n", - "\n", - "\n", - "cool RT @nowthisnews: Why are these New Yorkers clustered outside a closed Starbucks? Two words: working wifi. #sandy http://t.co/0INLw96x\n", - "\n", - "--------------------------------------------------------\n", - "cool \n", + "sandy mt miles manhattan blackout photo \n", "\n", "\n", "Stay safe boys!! RT @FireIceSports: Holding it down at the Shore! #Sandy http://t.co/BtAjJ6GS\n", @@ -55126,7 +49272,7 @@ "Evacuación de un hospital en NY ayer noche https://t.co/wPAjf1J8 #foto #Sandy\n", "\n", "--------------------------------------------------------\n", - "evacuación hospital ny ayer noche foto sandy \n", + "evacuación hospital new york ayer noche foto sandy \n", "\n", "\n", "“@anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/ZUty36Iu” fantastic people helping out people. #Sandy\n", @@ -55144,13 +49290,7 @@ "Ambay mo 9ij RT @nowthisnews: Why are these New Yorkers clustered outside a closed Starbucks? working wifi. #sandy http://t.co/EkWfgs1d\n", "\n", "--------------------------------------------------------\n", - "ambay mo 9ij \n", - "\n", - "\n", - "@SlimPaley: I love this email a friend sent me tonight; \"This must be what you meant about New Yorkers\" #Sandy #ILoveNY http://t.co/Vr3CdXZQ\n", - "\n", - "--------------------------------------------------------\n", - "love email friend sent tonight must meant new yorkers sandy iloveny \n", + "ambay mo \n", "\n", "\n", "“@jeremyscahill: Best moment from Ali Velshi's Sandy coverage today: http://t.co/AtMsx1hr” hilário!\n", @@ -55165,34 +49305,16 @@ "rainbow gowanus canal little ago sandy way \n", "\n", "\n", - "@rubinafillion: Times Square is still packed with tourists 40 minutes before Subways shut down for Hurricane #Sandy. http://t.co/TUd37X2W\n", - "\n", - "--------------------------------------------------------\n", - "times square still packed tourists 40 minutes subways shut hurricane sandy \n", - "\n", - "\n", "@Bonita_yeah Picture: #OceanCity #Maryland Boardwalk under #Sandy #frankenstorm #hurricane #climate http://t.co/NIlnoT1X\n", "\n", "--------------------------------------------------------\n", "picture oceancity maryland boardwalk sandy frankenstorm hurricane climate \n", "\n", "\n", - "Awesome!!!!!RT @TUSK81: Tears. Fireman saving dog caught in hurricane: http://t.co/QgdvsoTa (Photo via @PrincessGwenie1) #Sandy\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", - "Scary!RT @anitavanvoorst: Omg RT “@alastormspotter: Incredible surf at Lynn Beach, MA. #mawx #sandy #hurricane #flood http://t.co/Y1R0Fhmg”\n", - "\n", - "--------------------------------------------------------\n", - "scary \n", - "\n", - "\n", "@hemayr Las mascotas en NY también están siendo atendidas http://t.co/1RDZB9s5 #sandy\n", "\n", "--------------------------------------------------------\n", - "mascotas ny siendo atendidas sandy \n", + "mascotas new york siendo atendidas sandy \n", "\n", "\n", "Yeah baby RT @lisafleisher: Good morning from Cape May! (those are surfers.) #sandy http://t.co/9q1OSM3C\n", @@ -55210,7 +49332,7 @@ "The other side of the hurricane... Ce que les médias ont choisi d'ignorer #Sandy #Haiti http://t.co/ydME8W2F\n", "\n", "--------------------------------------------------------\n", - "side hurricane ce médias ont choisi ignorer sandy haiti \n", + "side hurricane médias choisi ignorer sandy haiti \n", "\n", "\n", "this is in dr :((( http://t.co/kJ3P4Di3 fuck sandy \\n!!!\n", @@ -55234,13 +49356,7 @@ "Brooklyn @ 34th & 1st (via @matlarosa) #Sandy http://t.co/rfhX7698\n", "\n", "--------------------------------------------------------\n", - "brooklyn 34th first sandy \n", - "\n", - "\n", - "Yikes! RT @Timmtimma: Winthrop Beach #sandy http://t.co/DZoPKtqr\n", - "\n", - "--------------------------------------------------------\n", - "yikes \n", + "brooklyn 4th first sandy \n", "\n", "\n", "This is absolutely incredible #Sandy RT @wfaaweather: Another picture. Photo of FDR under water. http://t.co/Wh8SE3jA\n", @@ -55252,7 +49368,7 @@ "Shit>“@EverythingNYC “@ARaeAshcraft @EverythingNYC east river park. 10:30 am. #sandy http://t.co/4ddRE6Ld””\n", "\n", "--------------------------------------------------------\n", - "shit greater east river park 10 30 sandy \n", + "shit east river park sandy \n", "\n", "\n", "PHOTO: The view of darkened #Manhattan after much of the city lost power due to superstorm #Sandy http://t.co/YwRIbBrq http://t.co/cYgD0yPx\n", @@ -55270,7 +49386,7 @@ "Seen in Hoboken, NJ. Way to come together, people! #Sandy http://t.co/0VOGzj3j\n", "\n", "--------------------------------------------------------\n", - "seen hoboken nj way come together people sandy \n", + "seen hoboken new jersey way come together people sandy \n", "\n", "\n", "https://t.co/wdYHSzJd Empire State resist #sandy\n", @@ -55297,12 +49413,6 @@ "bridge bridge sandy \n", "\n", "\n", - "@piersmorgan: Just got home to discover almost every car along my NY street has been smashed by trees. #Sandy http://t.co/e0aL0hcD\n", - "\n", - "--------------------------------------------------------\n", - "got home discover almost every car along ny street smashed trees sandy \n", - "\n", - "\n", "Gotham. #Sandy\\n\\n http://t.co/moV7BmOi\n", "\n", "--------------------------------------------------------\n", @@ -55318,13 +49428,13 @@ "https://t.co/0hGB3Iya #Sandy darkness covers lower Manhattan and most part of #NY #اعصار_ساندي الظلام يخيم على اشهر بقعه في عالم المال\n", "\n", "--------------------------------------------------------\n", - "sandy darkness covers lower manhattan part ny اعصار ساندي الظلام يخيم اشهر بقعه عالم المال \n", + "sandy darkness covers lower manhattan part new york اعصارساندي الظلام يخيم اشهر بقعه عالم المال \n", "\n", "\n", "Only light I see on my block is 1WTC #Sandy http://t.co/wGD5gNgu\n", "\n", "--------------------------------------------------------\n", - "light see block 1wtc sandy \n", + "light see block sandy \n", "\n", "\n", "City that never sleeps? Boy that Jay-Z is full of shit. #SANDY https://t.co/xfopSLD6\n", @@ -55336,7 +49446,7 @@ "Seen in Hoboken, NJ.. It's so awesome to see others being selfless. #sandy http://t.co/u6q4k4xi\n", "\n", "--------------------------------------------------------\n", - "seen hoboken nj awesome see others selfless sandy \n", + "seen hoboken new jersey awesome see others selfless sandy \n", "\n", "\n", "@garethslee “@LBowers01 “@Timcast Bridge Newport News, VA almost gone. James River bridge #Sandy #Frankenstorm http://t.co/IljifS5v””\n", @@ -55354,7 +49464,7 @@ "Via @nydailynews FDR Drive flooded in #NYC - http://t.co/aIGDTp7f #sandy\n", "\n", "--------------------------------------------------------\n", - "via fdr drive flooded nyc sandy \n", + "fdr drive flooded new york city sandy \n", "\n", "\n", "President Obama on Hurricane #Sandy: http://t.co/IBZLSruT\n", @@ -55372,7 +49482,7 @@ "What do you do when you see shit like this? Lol Brigantine, NJ? #sandy http://t.co/E41Hu587\n", "\n", "--------------------------------------------------------\n", - "see shit like lol brigantine nj sandy \n", + "see shit like brigantine new jersey sandy \n", "\n", "\n", "Lights out, Manhattan! #Sandy #Shit https://t.co/QIfCucba\n", @@ -55396,25 +49506,25 @@ "35 foot section of Atlantic City Boardwalk floating down what used to be St. Katherine's place #sandy #acpress http://t.co/0tbQ2ujc\n", "\n", "--------------------------------------------------------\n", - "35 foot section atlantic city boardwalk floating used st katherine place sandy acpress \n", + "5 foot section atlantic city boardwalk floating used st katherine place sandy acpress \n", "\n", "\n", - "Boardwalk Empire, c'est plus ce que c'était https://t.co/ZTuEdKu0 https://t.co/1jFPK7tS #hurricane #sandy #AtlanticCity\n", + "RT: “@twc_hurricane: Maryland --> RT @i_will_overcome: So long Ocean City pier... #Sandy http://t.co/yy5aUD2q” #HurricaneSandy #weather\n", "\n", "--------------------------------------------------------\n", - "boardwalk empire c est plus ce c était hurricane sandy atlanticcity \n", + "hurricane sandy weather \n", "\n", "\n", - "“@YaGirllll_B “@the_pussinator_ OC fishing pier @MarylandProbz #sandy http://t.co/NoTYhHIC””\n", + "Boardwalk Empire, c'est plus ce que c'était https://t.co/ZTuEdKu0 https://t.co/1jFPK7tS #hurricane #sandy #AtlanticCity\n", "\n", "--------------------------------------------------------\n", - "oc fishing pier sandy \n", + "boardwalk empire plus hurricane sandy atlanticcity \n", "\n", "\n", - "“@damnitstrue East river park. 10:30 am. #sandy http://t.co/toBAIyOX”\n", + "“@YaGirllll_B “@the_pussinator_ OC fishing pier @MarylandProbz #sandy http://t.co/NoTYhHIC””\n", "\n", "--------------------------------------------------------\n", - "east river park 10 30 sandy \n", + "oc fishing pier sandy \n", "\n", "\n", "شما عایق بندی رو ببین با لبات بازی میکنه لامصب http://t.co/xYw6eeZY #sandy\n", @@ -55444,13 +49554,7 @@ "Been to this bridge, scary #Sandy waters @DMVFollowers: bridge in Newport News is almost underwater. http://t.co/9XO06Uq1”\n", "\n", "--------------------------------------------------------\n", - "bridge scary sandy waters bridge newport news almost underwater \n", - "\n", - "\n", - "“@GMA Stunning image of much of Manhattan plunged into a power outage as #Sandy churns on. Photo via @nicksumm - http://t.co/46ZDJLxh” wow.\n", - "\n", - "--------------------------------------------------------\n", - "stunning image much manhattan plunged power outage sandy churns photo wow \n", + "bridge scary sandy waters \n", "\n", "\n", "Ok that made me tear up. RT @anamariecox: Jersey Share. #sandy #nj (via FB) http://t.co/4UsTQMfP\n", @@ -55459,30 +49563,12 @@ "ok made tear \n", "\n", "\n", - "@dhayes202: @Gillyfish1292 @JennaKayx3 Coney Island is underwater #sandy http://t.co/3u09faZy\n", - "\n", - "--------------------------------------------------------\n", - "coney island underwater sandy \n", - "\n", - "\n", "NOAH RT @AnonymousPress WOAH! -> How tall is this wave crashing on the shore? 50feet? 75feet? Lynn (MA) #HangTen #Sandy http://t.co/SQ4P7zWq\n", "\n", "--------------------------------------------------------\n", "noah \n", "\n", "\n", - "@CNNEE: Cuando cierran hasta los McDonald's, es señal de que se avecina algo fuerte #Sandy vía @cwelchCNN Nueva York http://t.co/9XQ9uDlk\n", - "\n", - "--------------------------------------------------------\n", - "cierran mcdonald señal avecina fuerte sandy vía nueva york \n", - "\n", - "\n", - "Damn smh RT @damnitstrue: East river park. 10:30 am. #sandy http://t.co/6THX0syC\n", - "\n", - "--------------------------------------------------------\n", - "damn smh \n", - "\n", - "\n", "Banjir RT @AOL RT @PANYNJ Flood waters from Hurricane #Sandy approach the LaGuardia Airport runways and taxiways today. http://t.co/x4UxFe0m\n", "\n", "--------------------------------------------------------\n", @@ -55498,7 +49584,7 @@ "All of NYC now in darkness except for the Empire State Building. #Sandy http://t.co/DfLZ33UG\n", "\n", "--------------------------------------------------------\n", - "nyc darkness except empire state building sandy \n", + "new york city darkness except empire state building sandy \n", "\n", "\n", "Water levels at LaGuardia Airport during the height of the storm. Waters have since started to recede. #Sandy http://t.co/XTudFV7x\n", @@ -55510,7 +49596,7 @@ "L'Empire State Building ! Le seul encore allumé. #Sandy https://t.co/rMvUs8m9\n", "\n", "--------------------------------------------------------\n", - "l empire state building seul encore allumé sandy \n", + "empire state building seul encore allumé sandy \n", "\n", "\n", "«@kellykaye69 «@TUSK81 Tears. Fireman saving dog caught in hurricane: http://t.co/HvUhiwK3 (Photo via @princessGwenie1) #Sandy»»#Hero!\n", @@ -55522,7 +49608,7 @@ "El Empire State el único iluminado. http://t.co/kegywcs7 #Sandy #hurricanesandy\n", "\n", "--------------------------------------------------------\n", - "empire state único iluminado sandy hurricanesandy \n", + "empire state único iluminado sandy hurricane sandy \n", "\n", "\n", "Knock, knock. Who's there? http://t.co/Mq6Ob2z9 #sandy\n", @@ -55537,16 +49623,10 @@ "easy \n", "\n", "\n", - "New York After Sandy :((((\\nhttp://t.co/J5dtYEe0\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", - "\n", - "\n", "#sandy w/ Statue of Liberty n background “@breaking High tide in Battery Park, New York City - @ScottCohnCNBC http://t.co/gp1WymEm”\n", "\n", "--------------------------------------------------------\n", - "sandy w statue liberty n background high tide battery park new york city \n", + "sandy w statue liberty background high tide battery park new york city \n", "\n", "\n", "“@iTweetFacts Hurricane #Sandy has caused New York's Time Square to almost look like a ghost town: http://t.co/bHHf2k2t”creepy\n", @@ -55564,25 +49644,7 @@ "Wow! scary & mesmerizing RT @usaphoto: The cover of the upcoming New York Magazine - the city and the storm http://t.co/OY0J85yq #sandy #nyc\n", "\n", "--------------------------------------------------------\n", - "wow scary mesmerizing \n", - "\n", - "\n", - "New York and Sandy!\\nhttp://t.co/me5RFrBl\n", - "\n", - "--------------------------------------------------------\n", - "new york sandy \n", - "\n", - "\n", - "«@OracleBFisher «@iTweetFacts Hurricane #Sandy has caused New York's Time Square to almost look like a ghost town: http://t.co/D6CAbFAI»»\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy caused new york time square almost look like ghost town \n", - "\n", - "\n", - "Hurricane Sandy in New York City http://t.co/AqvKEmFa\n", - "\n", - "--------------------------------------------------------\n", - "hurricane sandy new york city \n", + "scary mesmerizing \n", "\n", "\n", "http://t.co/qLvPlGJe a picture of New York before #Sandy hit! holy crap!\n", @@ -55594,13 +49656,13 @@ "bersih bgt itu banjir jg-_-gada kasur ngambang kek dsniRT @OddestFacts: 34th and 1st street in New York City. #Sandy http://t.co/MqCDCrPB\n", "\n", "--------------------------------------------------------\n", - "bersih bgt itu banjir jg gada kasur ngambang kek dsni \n", + "bersih bgt banjir jg gada kasur ngambang kek dsni \n", "\n", "\n", "Sandy Fucked up New York.. RT\"@__stayygold: Manhattan is dark.. wow. I never thought id see the day. http://t.co/l9XaRXBF\"\n", "\n", "--------------------------------------------------------\n", - "sandy fucked new york \n", + "sandy fucked new york rt \n", "\n", "\n", "«@craigengler «@BoingBoing Power outages spread. “@danwootton: Very scary sight. New York's gone black. http://t.co/oIE7dTL9 #sandy”»»\n", @@ -55609,12 +49671,6 @@ "power outages spread \n", "\n", "\n", - "Damn: RT @danwootton: Very scary sight. New York's gone black. http://t.co/kp3MQFX5 #sandy\n", - "\n", - "--------------------------------------------------------\n", - "damn \n", - "\n", - "\n", "and New York goes dark http://t.co/DFMI26YL #Sandy\n", "\n", "--------------------------------------------------------\n", @@ -55624,7 +49680,7 @@ "Very eerie New York pic \"Only light I see on my block is 1WTC\" #Sandy http://t.co/6cSB5iGi via @antderosa @kenosen2\n", "\n", "--------------------------------------------------------\n", - "eerie new york pic light see block 1wtc sandy \n", + "eerie new york pic light see block sandy \n", "\n", "\n", "Lights off New York https://t.co/Ad1lgaIp #Sandy\n", @@ -55636,7 +49692,7 @@ "NYC buses, post-Hurricane Sandy. tags: #sandy #hurricane #weather #nyc http://t.co/vcX6PNDQ\n", "\n", "--------------------------------------------------------\n", - "nyc buses post hurricane sandy tags sandy hurricane weather nyc \n", + "new york city buses post hurricane sandy tags sandy hurricane weather new york city \n", "\n", "\n", "BEAUTIFUL HOLIDAY! > RT @ariefbanang: sandy storm. http://t.co/HSRXGSP4\n", @@ -55645,12 +49701,6 @@ "beautiful holiday \n", "\n", "\n", - "sandy storm. http://t.co/8LsepOXp\n", - "\n", - "--------------------------------------------------------\n", - "sandy storm \n", - "\n", - "\n", "no me digas nada, te quedaste sin fasos #sandy http://t.co/gT96VMSs\n", "\n", "--------------------------------------------------------\n", @@ -55660,25 +49710,19 @@ "N°1 #sandy says http://t.co/zCMyTGar\n", "\n", "--------------------------------------------------------\n", - "n 1 sandy says \n", - "\n", - "\n", - "@NYGovCuomo: Entrance to Hugh Carey Tunnel (formerly the Brooklyn Battery) off West Street #Sandy http://t.co/epHy001U\n", - "\n", - "--------------------------------------------------------\n", - "entrance hugh carey tunnel formerly brooklyn battery west street sandy \n", + "sandy says \n", "\n", "\n", "Shocking water level @ Path Station in downtown NYC. All this water stretching back about 5 mi to NJ. #Sandy http://t.co/VHGb4KDz\n", "\n", "--------------------------------------------------------\n", - "shocking water level path station downtown nyc water stretching back 5 nj sandy \n", + "shocking water level path station downtown new york city water stretching back new jersey sandy \n", "\n", "\n", "A photo of the pier in Hyannisport...wow! #Sandy http://t.co/7Wc4V6yd\n", "\n", "--------------------------------------------------------\n", - "photo pier hyannisport wow sandy \n", + "photo pier hyannisport sandy \n", "\n", "\n", "My prayers go out to everyone affected by Hurricane #Sandy, but especially those patients at NYU Hospital --> http://t.co/GjE2negG\n", @@ -55687,12 +49731,6 @@ "prayers go everyone affected hurricane sandy especially patients nyu hospital \n", "\n", "\n", - "My prayers go out to everyone affected by Hurricane #Sandy, but especially those patients at NYU Hospital --> http://t.co/msF1QSO4”\n", - "\n", - "--------------------------------------------------------\n", - "prayers go everyone affected hurricane sandy especially patients nyu hospital \n", - "\n", - "\n", "The Jones Beach Theater is underwater the day after #Sandy: http://t.co/q6FTM7Kc http://t.co/BMJa8mmi\n", "\n", "--------------------------------------------------------\n", @@ -55702,13 +49740,7 @@ "@Howelly123 this is where i'm supposed to see one direction for the 2013 tour but the hurricane destroyed it sigh http://t.co/DWvP5sH4\n", "\n", "--------------------------------------------------------\n", - "supposed see one direction 2013 tour hurricane destroyed sigh \n", - "\n", - "\n", - "Aww @nkotb RT @newsday: The Jones Beach Theater is underwater the day after #Sandy http://t.co/FJ1YB6j9 http://t.co/J8whirkJ\n", - "\n", - "--------------------------------------------------------\n", - "aww \n", + "supposed see one direction the013 tour hurricane destroyed sigh \n", "\n", "\n", "The Nikon at Jones Beach theater was the place where I saw the boys twice & the hurricane pretty much destroyed it ): http://t.co/3li2sX6J\n", @@ -55720,7 +49752,7 @@ "It's gotten VERY ugly in Ocean City. Almost looks like Katrina. Here's a picture of what used to be 94th street http://t.co/L5O6HLlm #Sandy\n", "\n", "--------------------------------------------------------\n", - "gotten ugly ocean city almost looks like katrina picture used 94th street sandy \n", + "gotten ugly ocean city almost looks like katrina picture used be4th street sandy \n", "\n", "\n", "Don't forget to keep your thoughts & prayers with those in the northeast recovering from #Sandy http://t.co/d4e0cO40\n", @@ -55732,73 +49764,73 @@ "In which 4Chan thinks playing Where’s Wally with brown people and backpacks will solve terrorism: http://t.co/gk6DVBcOND\n", "\n", "--------------------------------------------------------\n", - "4chan thinks playing wally brown people backpacks solve terrorism \n", + "thinks playing wally brown people backpacks solve terrorism \n", "\n", "\n", "@psicosour ojo, a el lo acusó 4chan, no es ninguno de los que publicó el FBI. FBI: http://t.co/i0nAZTlDvb 4chan: http://t.co/Lm8lxdrZbw\n", "\n", "--------------------------------------------------------\n", - "ojo acusó 4chan ninguno publicó fbi fbi 4chan \n", + "ojo acusó ninguno publicó fbi fbi \n", "\n", "\n", "Some of 4chan comm's #boston images - http://t.co/6Ap7NKHXy8 - fascinating crowd-sourced sleuthing. Also clear: RIP privacy forever.\n", "\n", "--------------------------------------------------------\n", - "4chan comm boston images fascinating crowd sourced sleuthing also clear rip privacy forever \n", + "comm boston images fascinating crowd sourced sleuthing also clear rip privacy forever \n", "\n", "\n", "@bluerickshaw my favorite came from 4chan http://t.co/Ri2uk4hjw0\n", "\n", "--------------------------------------------------------\n", - "favorite came 4chan \n", + "favorite came \n", "\n", "\n", "For shits and giggles, 4chan's conspiracy theory #stillbetterthancnn http://t.co/ANYNIHax6u\n", "\n", "--------------------------------------------------------\n", - "shits giggles 4chan conspiracy theory stillbetterthancnn \n", + "shits giggles conspiracy theory stillbetterthancnn \n", "\n", "\n", "4chan runs shit lol. http://t.co/XGsNHy9eeU\n", "\n", "--------------------------------------------------------\n", - "4chan runs shit lol \n", + "runs shit \n", "\n", "\n", "On Wednesday, Reddit and 4chan users published pictures of Boston Marathon bombing \"suspects\". They were all wrong. http://t.co/EVldP40pd4\n", "\n", "--------------------------------------------------------\n", - "wednesday reddit 4chan users published pictures boston marathon bombing suspects wrong \n", + "wednesday reddit users published pictures boston marathon bombing suspects wrong \n", "\n", "\n", "@Barbaraayuso Antes los de 4chan ya habían hecho algo parecido http://t.co/nNp6jAdiun\n", "\n", "--------------------------------------------------------\n", - "4chan hecho parecido \n", + "hecho parecido \n", "\n", "\n", "Um es nochmal festzuhalten:4chan & reddit lagen mit ihrem witch hunt zu 100%falsch. Nur unschuldige wurden \"erkannt\". http://t.co/D47totRig7\n", "\n", "--------------------------------------------------------\n", - "um nochmal festzuhalten 4chan reddit lagen mit ihrem witch hunt zu 100 falsch nur unschuldige wurden erkannt \n", + "nochmal festzuhalten reddit lagen mit ihrem witch hunt zu00 falsch nur unschuldige wurden erkannt \n", "\n", "\n", "El poder de 4chan: http://t.co/7Gq6gejRu2 miles de fotos analizadas y encuentran a \"\"sospechosos\"\" (ojo, pillar con pinzas)\n", "\n", "--------------------------------------------------------\n", - "poder 4chan miles fotos analizadas encuentran sospechosos ojo pillar pinzas \n", + "poder miles fotos analizadas encuentran sospechosos ojo pillar pinzas \n", "\n", "\n", "@RaulVB @WajahatAli @Marcotti #SunilTripathiHoax Sunil Tripathi and Suspect 2 - They are two very different persons http://t.co/7X56eZRk6l\n", "\n", "--------------------------------------------------------\n", - "suniltripathihoax sunil tripathi suspect 2 two different persons \n", + "suniltripathihoax sunil tripathi suspect two different persons \n", "\n", "\n", "Atentos a la \"investigación ciudadana P2P\" de lo de Boston que se han montado los del 4chan estos... :O http://t.co/wWFCxu0EuT (vía @axebra)\n", "\n", "--------------------------------------------------------\n", - "atentos investigación ciudadana p2p boston montado 4chan vía \n", + "atentos investigación ciudadana p2p boston montado \n", "\n", "\n", "The detail of these photos used to identify the Boston Marathon bombing suspect is bananas… http://t.co/8zZ1v2ix39\n", @@ -55810,7 +49842,7 @@ "Don't need feds to solve the #bostonbombing when we have #4chan!! http://t.co/eXQTPZqqbG\n", "\n", "--------------------------------------------------------\n", - "need feds solve bostonbombing 4chan \n", + "need feds solve bostonbombing \n", "\n", "\n", "PIC: Comparison of #Boston suspect Sunil Tripathi's FBI-released images/video and his MISSING poster http://t.co/EhV3ODxrJf You decide.\n", @@ -55828,73 +49860,73 @@ "Brutal lo que se puede conseguir en colaboración. #4Chan analizando fotos de la maratón de #Boston atando cabos... http://t.co/4eq43HFicK\n", "\n", "--------------------------------------------------------\n", - "brutal puede conseguir colaboración 4chan analizando fotos maratón boston atando cabos \n", + "brutal puede conseguir colaboración analizando fotos maratón boston atando cabos \n", "\n", "\n", "4chan and the bombing. just throwing it out there: http://t.co/dIySO7lXQm http://t.co/NxBi4tW8bQ\n", "\n", "--------------------------------------------------------\n", - "4chan bombing throwing \n", + "bombing throwing \n", "\n", "\n", "4chan thinks they found pictures of the bomber - http://t.co/0y3w24l2q8\n", "\n", "--------------------------------------------------------\n", - "4chan thinks found pictures bomber \n", + "thinks found pictures bomber \n", "\n", "\n", "Ola ke ase, investigando las bombas de Boston o ke ase? #4chan http://t.co/7A4IAbVmM0\n", "\n", "--------------------------------------------------------\n", - "ola ke ase investigando bombas boston ke ase 4chan \n", + "ola ase investigando bombas boston ase \n", "\n", "\n", "4chan ThinkTank - Imgur http://t.co/hQt2fhxE48\n", "\n", "--------------------------------------------------------\n", - "4chan thinktank imgur \n", + "thinktank imgur \n", "\n", "\n", "@DLoesch have you seen this? Bomber #2 looks like missing student Sunil Tripathi. http://t.co/1phQpB0aMT http://t.co/X9pqMtnoW5\n", "\n", "--------------------------------------------------------\n", - "seen bomber 2 looks like missing student sunil tripathi \n", + "seen bomber looks like missing student sunil tripathi \n", "\n", "\n", "da 4chan think tank BOSTON http://t.co/0ZbKMA5z0D #photos #suspects #bombing #marathon\n", "\n", "--------------------------------------------------------\n", - "da 4chan think tank boston photos suspects bombing marathon \n", + "think tank boston photos suspects bombing marathon \n", "\n", "\n", "@Anonymoussops @bernardosampa @urbanohumano definitely a good work anonymous. #4chan 4ver >> http://t.co/VSAz2qzbun\n", "\n", "--------------------------------------------------------\n", - "definitely good work anonymous 4chan 4ver greater greater \n", + "definitely good work anonymous \n", "\n", "\n", "Poo, o 4CHAN nas análises dos atentados hein. De loco!\\n\\nhttp://t.co/au0JRLE0qA http://t.co/Nm92oqIkmy\n", "\n", "--------------------------------------------------------\n", - "poo 4chan nas análises dos atentados hein loco \n", + "poo análises atentados hein loco \n", "\n", "\n", "@DandCShow Did you guys see these pics? http://t.co/AwkA3cC4dg #reddit #4chan #bostonstrong\n", "\n", "--------------------------------------------------------\n", - "guys see pics reddit 4chan bostonstrong \n", + "guys see pics reddit bostonstrong \n", "\n", "\n", "http://t.co/ykSVPMWD6h #4chan FTW\n", "\n", "--------------------------------------------------------\n", - "4chan ftw \n", + "ftw \n", "\n", "\n", "Wow, creepy. #Boston #Bombing ID the suspect? http://t.co/mKbnnYCcUs\n", "\n", "--------------------------------------------------------\n", - "wow creepy boston bombing id suspect \n", + "creepy boston bombing id suspect \n", "\n", "\n", "@YourAnonNews its not that guy, you can see his backpack from another angle http://t.co/DFRglxjp68 #BostonMarathon\n", @@ -55906,25 +49938,19 @@ "@BBCWorld @BBCBreaking @BBCNews Probably worth checking these out. http://t.co/r6nemCxOCr #4chan #identified #boston #marathon #bombers\n", "\n", "--------------------------------------------------------\n", - "probably worth checking 4chan identified boston marathon bombers \n", + "probably worth checking identified boston marathon bombers \n", "\n", "\n", "my best guess ala 4chan regarding Boston \\nhttp://t.co/QTJ4XHonGC\\nhere is the rest of the pics 4 chan has of that day, http://t.co/jO0BPnUfmn\n", "\n", "--------------------------------------------------------\n", - "best guess ala 4chan regarding boston rest pics 4 chan day \n", + "best guess ala regarding boston rest pics chan day \n", "\n", "\n", "Hilarious if 4chan solves this bombing case. They got tons of these posted. http://t.co/qI9I0YKatR\n", "\n", "--------------------------------------------------------\n", - "hilarious 4chan solves bombing case got tons posted \n", - "\n", - "\n", - "http://t.co/pS4KetWGaW #4chan\n", - "\n", - "--------------------------------------------------------\n", - "4chan \n", + "hilarious solves bombing case got tons posted \n", "\n", "\n", "They say this is a #pic of a man lurking on a rooftop during the the #bostonmarathon #explosion...… http://t.co/RYtgpktBYT\n", @@ -55936,67 +49962,67 @@ "Wow 4chan. That was fast: http://t.co/3vHkPCr8tR\n", "\n", "--------------------------------------------------------\n", - "wow 4chan fast \n", + "fast \n", "\n", "\n", "#4Chan got some fame on internet but I can say that I am impressed on what they had done and discovered http://t.co/MUH6yTWCAZ via @imgur\n", "\n", "--------------------------------------------------------\n", - "4chan got fame internet say impressed done discovered \n", + "got fame internet say impressed done discovered \n", "\n", "\n", "4chan melhor que FBI :) http://t.co/aiGcdBXRUz\n", "\n", "--------------------------------------------------------\n", - "4chan melhor fbi \n", + "melhor fbi \n", "\n", "\n", "4chan spots a #Boston Bombing suspect - http://t.co/3c4TOQxL4b\n", "\n", "--------------------------------------------------------\n", - "4chan spots boston bombing suspect \n", + "spots boston bombing suspect \n", "\n", "\n", "4Chan seems to think they've found one of the Boston Marathon Bombers and I agree http://t.co/1cncwgC7eK\n", "\n", "--------------------------------------------------------\n", - "4chan seems think found one boston marathon bombers agree \n", + "seems think found one boston marathon bombers agree \n", "\n", "\n", "4chan spots a suspect http://t.co/u3Ovlyl4Tp [http://t.co/oUotrsGuZv] #consp @joerogan\n", "\n", "--------------------------------------------------------\n", - "4chan spots suspect consp \n", + "spots suspect consp \n", "\n", "\n", "http://t.co/TTcLPjXHVs investigación bombas Boston #4chan\n", "\n", "--------------------------------------------------------\n", - "investigación bombas boston 4chan \n", + "investigación bombas boston \n", "\n", "\n", "#4chan solves the bombings? http://t.co/YeTDt6cLZS via @imgur\n", "\n", "--------------------------------------------------------\n", - "4chan solves bombings \n", + "solves bombings \n", "\n", "\n", "4chan Conspiracies 1 of 2 http://t.co/KbYZr9aAiQ\n", "\n", "--------------------------------------------------------\n", - "4chan conspiracies 1 2 \n", + "conspiracies \n", "\n", "\n", "good job 4chan! http://t.co/XSnnqe6ROH\n", "\n", "--------------------------------------------------------\n", - "good job 4chan \n", + "good job \n", "\n", "\n", "#boston #4chan http://t.co/e7m4xLcjna\n", "\n", "--------------------------------------------------------\n", - "boston 4chan \n", + "boston \n", "\n", "\n", "man on the roof-tops of #bostonmarathon while bomb goes off http://t.co/yFZEuQ47hu\n", @@ -56008,19 +50034,19 @@ "navy seals at #bostonmarathon with back packs n remote devices on cell phones http://t.co/k9sNfXJvi8\n", "\n", "--------------------------------------------------------\n", - "navy seals bostonmarathon back packs n remote devices cell phones \n", + "navy seals bostonmarathon back packs remote devices cell phones \n", "\n", "\n", "E aí que o 4chan DESVENDOU quem são os responsáveis pela bomba de Boston http://t.co/ZZu0An6h2p\n", "\n", "--------------------------------------------------------\n", - "aí 4chan desvendou quem são responsáveis pela bomba boston \n", + "aí desvendou responsáveis bomba boston \n", "\n", "\n", "Wow. This was posted yesterday on 4chan. Seemed like some people were in the know about the suspect. http://t.co/g7QU4AktXV\n", "\n", "--------------------------------------------------------\n", - "wow posted yesterday 4chan seemed like people know suspect \n", + "posted yesterday seemed like people know suspect \n", "\n", "\n", "Here's the thread. Not one of the real suspects is on here. RT @brianboyer: 4chan is on it. Fascinating. http://t.co/R53NODzVtB\n", @@ -56032,85 +50058,85 @@ "#4chan crowdsourcing #Boston bomb investigation - /b/ http://t.co/7YcFjWsKo2\n", "\n", "--------------------------------------------------------\n", - "4chan crowdsourcing boston bomb investigation b \n", + "crowdsourcing boston bomb investigation b \n", "\n", "\n", "#4chan ThinkTank http://t.co/rnqC1QKu8R #BostonMarathon\n", "\n", "--------------------------------------------------------\n", - "4chan thinktank bostonmarathon \n", + "thinktank bostonmarathon \n", "\n", "\n", "#4CHAN haciendo el trabajo del FBI http://t.co/CPONsVv0O8 o.O #Boston #/b/\n", "\n", "--------------------------------------------------------\n", - "4chan haciendo trabajo fbi boston b \n", + "haciendo trabajo fbi boston b \n", "\n", "\n", "4chan picks out some boston suspects. crazy spooky. http://t.co/OqAbKozQav\n", "\n", "--------------------------------------------------------\n", - "4chan picks boston suspects crazy spooky \n", + "picks boston suspects crazy spooky \n", "\n", "\n", "It looks like 4chan might have really found something - Why are private http://t.co/iVYfUtQ2Mh [http://t.co/RbYBX2qXll] #anon @YourAnonNews\n", "\n", "--------------------------------------------------------\n", - "looks like 4chan might really found something private anon \n", + "looks like might really found something private anon \n", "\n", "\n", "this shit crazy. wonder if they photoshopped #4chan http://t.co/v00nx4Fw0D\n", "\n", "--------------------------------------------------------\n", - "shit crazy wonder photoshopped 4chan \n", + "shit crazy wonder photoshopped \n", "\n", "\n", "4Chan zoekt het uit. http://t.co/wMQbCv9W3R\n", "\n", "--------------------------------------------------------\n", - "4chan zoekt \n", + "zoekt \n", "\n", "\n", "4chan beweert de bommenlegger uit #Boston te hebben gevonden op foto http://t.co/YDyFCkEPDb\n", "\n", "--------------------------------------------------------\n", - "4chan beweert bommenlegger boston gevonden foto \n", + "beweert bommenlegger boston gevonden foto \n", "\n", "\n", "Os caras do 4chan identificaram o terrorista da maratona de Boston, jura mesmo? https://t.co/reoR7wki6i http://t.co/MKUuo8PKyQ\n", "\n", "--------------------------------------------------------\n", - "caras 4chan identificaram terrorista da maratona boston jura mesmo \n", + "caras identificaram terrorista maratona boston jura \n", "\n", "\n", "No idea if \"Suspect 2\" is missing Brown student Sunil Tripathi but looks more than a little like him: http://t.co/iwJ7iO3WKB\n", "\n", "--------------------------------------------------------\n", - "idea suspect 2 missing brown student sunil tripathi looks little like \n", + "idea suspect missing brown student sunil tripathi looks little like \n", "\n", "\n", "En 4chan ya han encontrado a los terroristas de Boston http://t.co/Cb98QtbVcU #boston #4chan\n", "\n", "--------------------------------------------------------\n", - "4chan encontrado terroristas boston boston 4chan \n", + "encontrado terroristas boston boston \n", "\n", "\n", "some follow up images on the 4chan post from an hour ago: http://t.co/QlqaMpdpXA\\n\\n\"The internet wins\" -@teklocust\n", "\n", "--------------------------------------------------------\n", - "follow images 4chan post hour ago internet wins \n", + "follow images post hour ago internet wins \n", "\n", "\n", "@th3j35t3r what do you make of what 4chan has come up with? http://t.co/sMWgRS2jo3\n", "\n", "--------------------------------------------------------\n", - "make 4chan come \n", + "make come \n", "\n", "\n", "4chan found the bomb http://t.co/Zrs8WOqomz\n", "\n", "--------------------------------------------------------\n", - "4chan found bomb \n", + "found bomb \n", "\n", "\n", "The man believed to be the bomber.. #boston #bostonbombing #bostonmarathon #prayforboston #pray4boston… http://t.co/akb08AyBld\n", @@ -56122,85 +50148,85 @@ "http://t.co/xBNwxhIVHo #BostonMarathon #4chan via @reddit\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon 4chan \n", + "bostonmarathon \n", "\n", "\n", "The internet wins. Did 4chan find the Boston Marathon bombers? http://t.co/45UUc5Gjal\n", "\n", "--------------------------------------------------------\n", - "internet wins 4chan find boston marathon bombers \n", + "internet wins find boston marathon bombers \n", "\n", "\n", "@samsteinhp check out the 4chan kiddies investigative work http://t.co/7C1wRki92C\n", "\n", "--------------------------------------------------------\n", - "check 4chan kiddies investigative work \n", + "check kiddies investigative work \n", "\n", "\n", "Una muestra que #4Chan no es solo mierda, sino una inteligencia anonima, a veces borracha, pero efectiva : http://t.co/wmD0pEejVM #Boston\n", "\n", "--------------------------------------------------------\n", - "muestra 4chan solo mierda sino inteligencia anonima veces borracha efectiva boston \n", + "muestra solo mierda sino inteligencia anonima veces borrac efectiva boston \n", "\n", "\n", "Don't worry guys, 4chan is on the case now... http://t.co/tv5u5N9tiy\n", "\n", "--------------------------------------------------------\n", - "worry guys 4chan case \n", + "worry guys case \n", "\n", "\n", "#4Chan analizó las imágenes del atentado en #Boston y encontró supuestos implicados. http://t.co/84GH58OHJP\n", "\n", "--------------------------------------------------------\n", - "4chan analizó imágenes atentado boston encontró supuestos implicados \n", + "analizó imágenes atentado boston encontró supuestos implicados \n", "\n", "\n", "Lets see if 4chan identified the bomber http://t.co/0kmcAxkqup http://t.co/kJZq8NAMx6\n", "\n", "--------------------------------------------------------\n", - "lets see 4chan identified bomber \n", + "lets see identified bomber \n", "\n", "\n", "Been following the stuff happening in boston. Got linked this regarding the bombings. http://t.co/hlDQKHxiC3 Sometimes 4chan gets it right\n", "\n", "--------------------------------------------------------\n", - "following stuff happening boston got linked regarding bombings sometimes 4chan gets right \n", + "following stuff happening boston got linked regarding bombings sometimes gets right \n", "\n", "\n", "Impressive and gamechanging - crowd-sourced detective work via 4chan http://t.co/OaESe8EiV9\n", "\n", "--------------------------------------------------------\n", - "impressive gamechanging crowd sourced detective work via 4chan \n", + "impressive gamechanging crowd sourced detective work \n", "\n", "\n", "@YourAnonNews 4chan spots another pair of suspects. This one really gave me chills. http://t.co/MMMaoxEVau\n", "\n", "--------------------------------------------------------\n", - "4chan spots another pair suspects one really gave chills \n", + "spots another pair suspects one really gave chills \n", "\n", "\n", "@bilinkis @goldenmax yo también tengo mis dudas de que este resuelto después de haber visto lo de 4chan. http://t.co/aU8pBZl4U2\n", "\n", "--------------------------------------------------------\n", - "dudas resuelto después haber visto 4chan \n", + "dudas resuelto después haber visto \n", "\n", "\n", "4chan spots a Boston Marathon bombings suspect http://t.co/mRFDwpNczH\n", "\n", "--------------------------------------------------------\n", - "4chan spots boston marathon bombings suspect \n", + "spots boston marathon bombings suspect \n", "\n", "\n", "#4chan's effort to catch the #Boston bombers - amazing http://t.co/mj0YoHuZW7\n", "\n", "--------------------------------------------------------\n", - "4chan effort catch boston bombers amazing \n", + "effort catch boston bombers amazing \n", "\n", "\n", "Reddit and 4chan's efforts to identify the Boston bombers. http://t.co/nNnMLnBzms http://t.co/sBsROBIg2P Not even close\n", "\n", "--------------------------------------------------------\n", - "reddit 4chan efforts identify boston bombers even close \n", + "reddit efforts identify boston bombers even close \n", "\n", "\n", "Plus look how he's carrying it. Looks like he's about to sit it down. #prayforboston http://t.co/YyWGdbsI1e\n", @@ -56212,25 +50238,25 @@ "Kudos 4chan http://t.co/KccwMpAJr3 Damn, their images are better than the FBI's\n", "\n", "--------------------------------------------------------\n", - "kudos 4chan damn images better fbi \n", + "kudos damn images better fbi \n", "\n", "\n", "I'll laugh my ass off if 4chan actually were able to find the bombing suspect, this picture looks somewhat convicing http://t.co/rk1eDwr7Vq\n", "\n", "--------------------------------------------------------\n", - "laugh ass 4chan actually able find bombing suspect picture looks somewhat convicing \n", + "laugh ass actually able find bombing suspect picture looks somewhat convicing \n", "\n", "\n", "It looks like 4chan might have really found something... #PrayForBoston #BostonBombing http://t.co/DrLPtbJ7pb\n", "\n", "--------------------------------------------------------\n", - "looks like 4chan might really found something prayforboston bostonbombing \n", + "looks like might really found something prayforboston bostonbombing \n", "\n", "\n", "Wow, so Sunil Tripathi is a Brown U Student that has been missing since March... http://t.co/ku2PtAuB4o.\n", "\n", "--------------------------------------------------------\n", - "wow sunil tripathi brown student missing since march \n", + "sunil tripathi brown student missing since march \n", "\n", "\n", "The people of Boston ask your help identifying these men associated with the backpack bombs at the Boston Marathon http://t.co/u5fX9Gksbf\n", @@ -56242,73 +50268,67 @@ "#Boston #4chan ThinkTank: http://t.co/AbLIYga34E\n", "\n", "--------------------------------------------------------\n", - "boston 4chan thinktank \n", + "boston thinktank \n", "\n", "\n", "@ReyxelRojiblank lo dicen por 4chan. De ahi sacaron las fotos los telediarios españoles haciendolas pasar x oficiales http://t.co/8S2sa3nAp2\n", "\n", "--------------------------------------------------------\n", - "dicen 4chan ahi sacaron fotos telediarios españoles haciendolas pasar x oficiales \n", + "dicen ahi sacaron fotos telediarios españoles haciendolas pasar x oficiales \n", "\n", "\n", "@TheMatthewKeys Have you seen/heard anything about this? http://t.co/v82rdCVIqH (via @dcturner @SimoRoth & 4Chan users )\n", "\n", "--------------------------------------------------------\n", - "seen heard anything 4chan users \n", + "seen heard anything users \n", "\n", "\n", "Se ve que los de 4chan ya han empezado http://t.co/onL4644fVG\n", "\n", "--------------------------------------------------------\n", - "4chan empezado \n", + "empezado \n", "\n", "\n", "@OClairouin @samuellaurent Et 4Chan étant 4Chan, ca donne aussi http://t.co/qv0ZSH2jB6\n", "\n", "--------------------------------------------------------\n", - "et 4chan étant 4chan ca donne aussi \n", + "ca donne aussi \n", "\n", "\n", "http://t.co/qOdBcSpmgG 4chan teve a manha, apos que a mídia nem vai falar nada\n", "\n", "--------------------------------------------------------\n", - "4chan teve manha apos mídia nem vai falar \n", - "\n", - "\n", - "http://t.co/oCwVNpf2PI http://t.co/9hwsuCH7TJ 83 C.S.I. 4chan.\n", - "\n", - "--------------------------------------------------------\n", - "83 c 4chan \n", + "apos mídia vai falar \n", "\n", "\n", "Maybe we should outsource our intelligence work to #Reddit and #4chan: Check out http://t.co/hyLs9xHDis and http://t.co/hcciCk4uW2\n", "\n", "--------------------------------------------------------\n", - "maybe outsource intelligence work reddit 4chan check \n", + "maybe outsource intelligence work reddit check \n", "\n", "\n", "4chan is on the case. http://t.co/wHctp20bzf\n", "\n", "--------------------------------------------------------\n", - "4chan case \n", + "case \n", "\n", "\n", "so, 4chan helps find #bostonmarathon bombing suspect(s)? http://t.co/wkrFlxTL9D\n", "\n", "--------------------------------------------------------\n", - "4chan helps find bostonmarathon bombing suspect \n", + "helps find bostonmarathon bombing suspect \n", "\n", "\n", "Los de 4chan cuando quieren son muy grandes. Buscando al causante de lo de Boston: http://t.co/AV0xaxekyX\n", "\n", "--------------------------------------------------------\n", - "4chan quieren grandes buscando causante boston \n", + "quieren grandes buscando causante boston \n", "\n", "\n", "some amazing analysis of the photographic evidence from the #bostonbombing by the guys at #4chan: http://t.co/YkNtXSjGr9\n", "\n", "--------------------------------------------------------\n", - "amazing analysis photographic evidence bostonbombing guys 4chan \n", + "amazing analysis photographic evidence bostonbombing guys \n", "\n", "\n", "Fucking faggots B. I pray karma lets us get to them 1st America. #BostonBombers #prayforboston http://t.co/akkg2YdEQS\n", @@ -56320,7 +50340,7 @@ "4chan tror sig ha hittat en misstänkt. http://t.co/GliZFUrrLt https://t.co/sCqwcSi5UM Alla är detektiver numera ;)\n", "\n", "--------------------------------------------------------\n", - "4chan tror hittat misstänkt detektiver numera \n", + "tror sighittat misstänkt detektiver numera \n", "\n", "\n", "Shits crazy RT @Blueraydre: FBI missing person / Bombing suspect = Same person #4Chan http://t.co/FezORWhKV7\n", @@ -56329,46 +50349,34 @@ "shits crazy \n", "\n", "\n", - "http://t.co/43c7yFQSAt #boston #4chan\n", - "\n", - "--------------------------------------------------------\n", - "boston 4chan \n", - "\n", - "\n", - "#4Chan does #Boston http://t.co/4e3DthsbzF\n", - "\n", - "--------------------------------------------------------\n", - "4chan boston \n", - "\n", - "\n", "@JasonBarnett Probably not then, 4chan & Reddit IDed younger guys. I saw another mention of a white baseball cap: http://t.co/Sc42hfu7Yi\n", "\n", "--------------------------------------------------------\n", - "probably 4chan reddit ided younger guys saw another mention white baseball cap \n", + "probably reddit ided younger guys saw another mention white baseball cap \n", "\n", "\n", "Look at this #4chan thinktank pic gallery: http://t.co/51CkG45awR Remember those faces. If they're arrested, the Internet solved this case.\n", "\n", "--------------------------------------------------------\n", - "look 4chan thinktank pic gallery remember faces arrested internet solved case \n", + "look thinktank pic gallery remember faces arrested internet solved case \n", "\n", "\n", "4chan investiga lo de Boston. http://t.co/EZ35IYwBgS\n", "\n", "--------------------------------------------------------\n", - "4chan investiga boston \n", + "investiga boston \n", "\n", "\n", "Damn 4chan already got the bomber http://t.co/bkvZkOwtvS\n", "\n", "--------------------------------------------------------\n", - "damn 4chan already got bomber \n", + "damn already got bomber \n", "\n", "\n", "Interesting case of internet vigilantism using #4Chan/#Reddit; response to #Boston http://t.co/jsK9B9UwfU http://t.co/HFmw7m0XAl @interwhut\n", "\n", "--------------------------------------------------------\n", - "interesting case internet vigilantism using 4chan reddit response boston \n", + "interesting case internet vigilantism using reddit response boston \n", "\n", "\n", "Sunil Tripathi was last seen in March. http://t.co/Yn6V5xNXGC\n", @@ -56380,43 +50388,43 @@ "@Genowolf Well here's a short explanation according to 4chan (who found him before the FBI) http://t.co/xqKLuMldnl\n", "\n", "--------------------------------------------------------\n", - "well short explanation according 4chan found fbi \n", + "well short explanation according found fbi \n", "\n", "\n", "Because 4chan doesn't like bad guys with no cause. http://t.co/lHK2NBqK2Q\n", "\n", "--------------------------------------------------------\n", - "4chan like bad guys cause \n", + "like bad guys cause \n", "\n", "\n", "FBI believes they found the PREP who left the bag at the Boston Marathon looks American smh http://t.co/fDMBVFKmMR\n", "\n", "--------------------------------------------------------\n", - "fbi believes found prep left bag boston marathon looks american smh \n", + "fbi believes found prep left bag boston marathon looks american \n", "\n", "\n", "#boston #4chan #anon http://t.co/sOU5FGv3Fk\n", "\n", "--------------------------------------------------------\n", - "boston 4chan anon \n", + "boston anon \n", "\n", "\n", "#Boston bombing crowdsourced investigation. Fascinating and a bit scary too http://t.co/9Sgw6Tr2in #4chan #reddit\n", "\n", "--------------------------------------------------------\n", - "boston bombing crowdsourced investigation fascinating bit scary 4chan reddit \n", + "boston bombing crowdsourced investigation fascinating bit scary reddit \n", "\n", "\n", "Where's Wally features in pic #12 if you look carefully. RT @C0d3Fr0sty\\n#4chan ThinkTank http://t.co/NzOeMpCtps #BostonMarathon\n", "\n", "--------------------------------------------------------\n", - "wally features pic 12 look carefully \n", + "wally features pic2 look carefully \n", "\n", "\n", "@jaketapper this has been going around on redditt is it real? \"4chan Think Tank on Boston Bombers\" http://t.co/2i8sXIMVGD\n", "\n", "--------------------------------------------------------\n", - "going around redditt real 4chan think tank boston bombers \n", + "going around redditt real think tank boston bombers \n", "\n", "\n", "Whoever you are. We will find you. #creepy #bostonmarathon #prayforboston http://t.co/7pUOSJeo78\n", @@ -56428,73 +50436,73 @@ "4chan exposed the bombers our gov set this shit up http://t.co/SYngrcntEf <---- click that link and see the truth\n", "\n", "--------------------------------------------------------\n", - "4chan exposed bombers gov set shit less click link see truth \n", + "exposed bombers gov set shit click link see truth \n", "\n", "\n", "aqui está o dossiê que circulou o 4chan e o reddit nesses ultimos dias http://t.co/rBYjbz5BOc nenhum dos suspeitos eram os reais terroristas\n", "\n", "--------------------------------------------------------\n", - "aqui dossiê circulou 4chan reddit nesses ultimos dias nenhum dos suspeitos eram reais terroristas \n", + "aqui dossiê circulou reddit nesses ultimos dias nenhum suspeitos reais terroristas \n", "\n", "\n", "The 4chan ThinkTank. Crazy how good these guys are. http://t.co/gJMiSGsaMS via @imgur\n", "\n", "--------------------------------------------------------\n", - "4chan thinktank crazy good guys \n", + "thinktank crazy good guys \n", "\n", "\n", "Parece que 4chan encontró al responsable de los ataques\\nhttp://t.co/eAGPoL1h31\\nhttp://t.co/bOpILmK3yO\n", "\n", "--------------------------------------------------------\n", - "parece 4chan encontró responsable ataques \n", + "parece encontró responsable ataques \n", "\n", "\n", "#boston #4chan Was the Boston bomb an inside job to ban guns? http://t.co/ZBZxrPWHV8\n", "\n", "--------------------------------------------------------\n", - "boston 4chan boston bomb inside job ban guns \n", + "boston boston bomb inside job ban guns \n", "\n", "\n", "FBI missing person / Bombing suspect = Same person #4Chan http://t.co/XE9Cy0M3hm #RETWEET\n", "\n", "--------------------------------------------------------\n", - "fbi missing person bombing suspect person 4chan retweet \n", + "fbi missing person bombing suspect person retweet \n", "\n", "\n", "This is the 4chan I admire.\\nhttp://t.co/5JubZbQkrL\\n#4chan #Boston\n", "\n", "--------------------------------------------------------\n", - "4chan admire 4chan boston \n", + "admire boston \n", "\n", "\n", "FBI missing person / Bombing suspect = Same person #4Chan http://t.co/ZO7tzCvN1Z\n", "\n", "--------------------------------------------------------\n", - "fbi missing person bombing suspect person 4chan \n", + "fbi missing person bombing suspect person \n", "\n", "\n", "@Twitler13 Like this Pic says: http://t.co/RaALSLsCPq the 4Chan thinktank with the suspicious bomb squad guys SHARE AS MUCH AS POSSIBLE RT\n", "\n", "--------------------------------------------------------\n", - "like pic says 4chan thinktank suspicious bomb squad guys share much possible rt \n", + "like pic says thinktank suspicious bomb squad guys share much possible rt \n", "\n", "\n", "They really are legion ... http://t.co/o4cJIf3K2N #4Chan #Boston bombs.\n", "\n", "--------------------------------------------------------\n", - "really legion 4chan boston bombs \n", + "really legion boston bombs \n", "\n", "\n", "#4chan en chasse. RT “@joffrey: Boston suspects. http://t.co/V64bYrUt6q”\n", "\n", "--------------------------------------------------------\n", - "4chan chasse \n", + "chasse \n", "\n", "\n", "Reddit is on to something... Boston Bomber #2 sure looks like missing student Sunil Tripathi. http://t.co/GyCIuofsW4 http://t.co/koZ2qL8Od9\n", "\n", "--------------------------------------------------------\n", - "reddit something boston bomber 2 sure looks like missing student sunil tripathi \n", + "reddit something boston bomber sure looks like missing student sunil tripathi \n", "\n", "\n", "Tweeted yesterday morning: RT @ScottBeale: 4chan’s analysis of photos from the Boston bombings http://t.co/g5M3DOkGYt\n", @@ -56506,37 +50514,37 @@ "Did #4chan just identify a #Boston bombing suspect? http://t.co/qdHO2wiNGq\n", "\n", "--------------------------------------------------------\n", - "4chan identify boston bombing suspect \n", + "identify boston bombing suspect \n", "\n", "\n", "Flipant les fotos creades desde 4chan per resoldre el tema de la marató de bostón : http://t.co/wk19uWHGU3 http://t.co/zrQhDJdgIz\n", "\n", "--------------------------------------------------------\n", - "flipant fotos creades 4chan per resoldre tema marató bostón \n", + "flipant fotos creades resoldre tema marató bostón \n", "\n", "\n", "My mind is blown - http://t.co/cudmctY3uE\\n#4chan\n", "\n", "--------------------------------------------------------\n", - "mind blown 4chan \n", + "mind blown \n", "\n", "\n", "4chan analysis of the Boston bombs.. they look like secret police! http://t.co/GuajqSaJUj #4chan #boston #bombs #internetjustice\n", "\n", "--------------------------------------------------------\n", - "4chan analysis boston bombs look like secret police 4chan boston bombs internetjustice \n", + "analysis boston bombs look like secret police boston bombs internetjustice \n", "\n", "\n", "Wow... the missing kid Sunil Tripathi sure does look like suspect #2... http://t.co/uegrHmBeJJ\n", "\n", "--------------------------------------------------------\n", - "wow missing kid sunil tripathi sure look like suspect 2 \n", + "missing kid sunil tripathi sure look like suspect \n", "\n", "\n", "The internet is an amazing thing. #4chan \\nhttp://t.co/kgnanlYVnP\n", "\n", "--------------------------------------------------------\n", - "internet amazing thing 4chan \n", + "internet amazing thing \n", "\n", "\n", "People seem sure this is the ID'd suspect http://t.co/bAqmmF8u0g Can they find any credible news feeds confirming it?\n", @@ -56545,12 +50553,6 @@ "people seem sure id suspect find credible news feeds confirming \n", "\n", "\n", - "@dallassnyder: Did 4chan just find the Boston bomber? http://t.co/POjR3wXrWl @danrweki @davie_mo @rude_end @RugyendoQuotes\n", - "\n", - "--------------------------------------------------------\n", - "4chan find boston bomber \n", - "\n", - "\n", "So eery RT @tommyrusso: Amazing Work! #4Chan crowdsources #bomb suspect PHOTOS! http://t.co/FGrTohNiUU\n", "\n", "--------------------------------------------------------\n", @@ -56560,25 +50562,25 @@ "Amazing Work! #4Chan crowdsources #bomb suspect PHOTOS! http://t.co/pBCKU3M7RK\n", "\n", "--------------------------------------------------------\n", - "amazing work 4chan crowdsources bomb suspect photos \n", + "amazing work crowdsources bomb suspect photos \n", "\n", "\n", "FBI Hunting for 2 Arab Men seen Holding Bags with Bombs at Marathon Explosion. http://t.co/ui7JoGhFCt Photo: http://t.co/754isZ1B8v\"\n", "\n", "--------------------------------------------------------\n", - "fbi hunting 2 arab seen holding bags bombs marathon explosion photo \n", + "fbi hunting arab seen holding bags bombs marathon explosion photo \n", "\n", "\n", "Boston – FBI Hunting for 2 Arab Men seen Holding Bags with Bombs atMarathon Explosion. http://t.co/yndOBf1VUU Photo: http://t.co/iTiCnIcnX8\n", "\n", "--------------------------------------------------------\n", - "boston fbi hunting 2 arab seen holding bags bombs atmarathon explosion photo \n", + "boston fbi hunting arab seen holding bags bombs atmarathon explosion photo \n", "\n", "\n", "Boston – FBI Hunting for 2 Arab Men seen Holding Bags with Bombs at Marathon Explosion. http://t.co/XAegnqiMVs Photo: http://t.co/hq8Iw7jVSB\n", "\n", "--------------------------------------------------------\n", - "boston fbi hunting 2 arab seen holding bags bombs marathon explosion photo \n", + "boston fbi hunting arab seen holding bags bombs marathon explosion photo \n", "\n", "\n", "Extensive analysis of possible Boston marathon bombing suspect pictures. Amazing what can be seen after fact http://t.co/pixKWCwyjI\n", @@ -56590,19 +50592,19 @@ "This site has a ton of evidence (pictures) on who they believe the bombing suspect is from Monday's Boston Marathon. http://t.co/jI4j8ukpmt\n", "\n", "--------------------------------------------------------\n", - "site ton evidence pictures believe bombing suspect monday boston marathon \n", + "site evidence pictures believe bombing suspect monday boston marathon \n", "\n", "\n", "WOW! Look at this from the bombing...suspect pictures, etc. http://t.co/7aHT49qSm3 http://t.co/wfUp3s6h2q\n", "\n", "--------------------------------------------------------\n", - "wow look bombing suspect pictures etc \n", + "look bombing suspect pictures etc \n", "\n", "\n", "What happens when you give 4chan Pictures of the Boston Bombing? http://t.co/YZssTQTAbZ\n", "\n", "--------------------------------------------------------\n", - "happens give 4chan pictures boston bombing \n", + "happens give pictures boston bombing \n", "\n", "\n", "CNN keeps referencing these images as the possible suspect of Boston bombing: http://t.co/5GtZuACutC Not confirmed, but they think it's him.\n", @@ -56620,7 +50622,7 @@ "BREAKING: 4chan on Imgur helping to find possible bombing suspect. Spread the info please http://t.co/I1pj0ZUX3x\n", "\n", "--------------------------------------------------------\n", - "breaking 4chan imgur helping find possible bombing suspect spread info please \n", + "breaking imgur helping find possible bombing suspect spread info please \n", "\n", "\n", "Pictures of possible suspect in the marathon bombing #BostonStrong http://t.co/PCcl4oz6Wc\n", @@ -56644,55 +50646,55 @@ "4chan may have possibly found the bomber http://t.co/sYHDit5Jql #boston #fbi\n", "\n", "--------------------------------------------------------\n", - "4chan may possibly found bomber boston fbi \n", + "may possibly found bomber boston fbi \n", "\n", "\n", "Some people on 4chan think they've found the Boston Marathon bomber. Pics: https://t.co/hXSy7pRJmG \\nhttp://t.co/b6aBpsPDgR You thoughts?\n", "\n", "--------------------------------------------------------\n", - "people 4chan think found boston marathon bomber pics thoughts \n", + "people think found boston marathon bomber pics thoughts \n", "\n", "\n", "4chan may have found the bomber http://t.co/8WgBpTobZP\n", "\n", "--------------------------------------------------------\n", - "4chan may found bomber \n", + "may found bomber \n", "\n", "\n", ".@bwake77 Someone from 4chan might have found the bomber. \\nhttp://t.co/vGDU99gh9D\n", "\n", "--------------------------------------------------------\n", - "someone 4chan might found bomber \n", + "someone might found bomber \n", "\n", "\n", "Wooooooooow 4chan found the Boston bomber??? http://t.co/t6nm3K1VfW\n", "\n", "--------------------------------------------------------\n", - "wooooooooow 4chan found boston bomber \n", + "wooooooooow found boston bomber \n", "\n", "\n", "4Chan *may* have found the Boston Marathon bomber http://t.co/9qaVHcy2lI http://t.co/muPn4k1Tjn http://t.co/f54RxTD904\n", "\n", "--------------------------------------------------------\n", - "4chan may found boston marathon bomber \n", + "may found boston marathon bomber \n", "\n", "\n", "!!!! 4chan might have just found the Boston bomber: http://t.co/jBpq59fwsQ\n", "\n", "--------------------------------------------------------\n", - "4chan might found boston bomber \n", + "might found boston bomber \n", "\n", "\n", "“@SimoRoth: !!!! 4chan might have just found the Boston bomber: http://t.co/PFDGNzuKin” < Amazing if this turns out to be true\n", "\n", "--------------------------------------------------------\n", - "less amazing turns true \n", + "amazing turns true \n", "\n", "\n", "4Chan may have found the bomber:\\nhttp://t.co/NbnR1v9VYM & http://t.co/8EG7FATluO & http://t.co/HJZx1LuAVq\\nIs that the 8yr old in yellow sqr?\n", "\n", "--------------------------------------------------------\n", - "4chan may found bomber 8yr old yellow sqr \n", + "may found bomber old yellow sqr \n", "\n", "\n", "@dansinker Did you see this post? here's a gif of the missing brown student blending into the boston bombing suspect\\n http://t.co/d27pWdvZUK\n", @@ -56704,13 +50706,13 @@ "I think it's safe to say this is suspect 2 and Boston police scanner has identified him by name https://t.co/I95ZkqGDSf\n", "\n", "--------------------------------------------------------\n", - "think safe say suspect 2 boston police scanner identified name \n", + "think safe say suspect boston police scanner identified name \n", "\n", "\n", "Alleged Boston Bombing Suspect Photo Timeline: http://t.co/pNtIunONXJ #boston #marathon #4chan\n", "\n", "--------------------------------------------------------\n", - "alleged boston bombing suspect photo timeline boston marathon 4chan \n", + "alleged boston bombing suspect photo timeline boston marathon \n", "\n", "\n", "Second suspect in the Boston Bombings http://t.co/DAjka26PHI\n", @@ -56758,7 +50760,7 @@ "Morphing du suspect de Boston et celui arrêté ce soir (mort ? ) http://t.co/IVOxnEzY5z\n", "\n", "--------------------------------------------------------\n", - "morphing suspect boston et celui arrêté ce soir mort \n", + "morphing suspect boston celui arrêté soir mort \n", "\n", "\n", "@NickyAACampbell Boston bomb suspect Sunil Tripathi https://t.co/ReF1Hmfngv\n", @@ -56770,13 +50772,19 @@ "4Chan crowd-sourcing the Boston marathon bombing suspect search via security footage: http://t.co/1VuBqDgCnw\n", "\n", "--------------------------------------------------------\n", - "4chan crowd sourcing boston marathon bombing suspect search via security footage \n", + "crowd sourcing boston marathon bombing suspect searchsecurity footage \n", + "\n", + "\n", + "RT \"@sodagrrl: More images of bombing suspect? http://t.co/geBhZ6NC1q\" #BostonMarathon #BostonBombings\n", + "\n", + "--------------------------------------------------------\n", + "bostonmarathon bostonbombings \n", "\n", "\n", "Photo collage showing apparent bombing suspect. I can't vouch for the source though. #24hourNews http://t.co/VaDma7dvH1\n", "\n", "--------------------------------------------------------\n", - "photo collage showing apparent bombing suspect vouch source though 24hournews \n", + "photo collage showing apparent bombing suspect vouch source though 4hournews \n", "\n", "\n", "Boston Bombing Suspect? http://t.co/ExORdEKI6M\n", @@ -56794,13 +50802,13 @@ "@DJDharmaNYC Boston Marathon Bombing Suspect: ID'd By 4Chan Think Tank? | http://t.co/MQPtvYB8sQ | http://t.co/LHM2HTwpcV\n", "\n", "--------------------------------------------------------\n", - "boston marathon bombing suspect id 4chan think tank \n", + "boston marathon bombing suspect id think tank \n", "\n", "\n", "@PhillyD Maybe give this a RT. Possible suspect from the Boston Marathon. http://t.co/XTNhlnagUs\\n\\nFull gallery http://t.co/q11e4g88yP\n", "\n", "--------------------------------------------------------\n", - "maybe give rt possible suspect boston marathon full gallery \n", + "maybe give possible suspect boston marathon full gallery \n", "\n", "\n", "Boston Bomber suspect is missing person Sunil Tripathi http://t.co/vX3JpU1maU\n", @@ -56812,7 +50820,7 @@ "interesting photo http://t.co/BBUV2VmW6o Boston suspect #2?\n", "\n", "--------------------------------------------------------\n", - "interesting photo boston suspect 2 \n", + "interesting photo boston suspect \n", "\n", "\n", "More images of bombing suspect? http://t.co/QybGwWmm54\n", @@ -56830,13 +50838,13 @@ "Possible suspects identified - http://t.co/vELg37ddTG #Bostonbombings #4chan\n", "\n", "--------------------------------------------------------\n", - "possible suspects identified bostonbombings 4chan \n", + "possible suspects identified bostonbombings \n", "\n", "\n", "4chan sur les traces du poseur de bombes de Boston http://t.co/EV7f9rtQ0U\n", "\n", "--------------------------------------------------------\n", - "4chan sur traces poseur bombes boston \n", + "traces poseur bombes boston \n", "\n", "\n", "RIP Tamerlan and free Dzhokhar Tsarnaev. This corrupt society will never stop blaming people. Who will… http://t.co/xAGDE2Zyha\n", @@ -56848,19 +50856,19 @@ "#Boston #Watertown #BPD New picture of Sunil Tripathi tonight, in a 7-11: https://t.co/ae5deGvp5s\n", "\n", "--------------------------------------------------------\n", - "boston watertown bpd new picture sunil tripathi tonight 7 11 \n", + "boston watertown bpd new picture sunil tripathi tonight a1 \n", "\n", "\n", "New Release: Suspect 1: Mike Mulugeta Suspect 2: Sunil Tripathi. || Suspect 1: http://t.co/K8e3G5wBUp || Suspect 2: http://t.co/0weisVVMKJ\"\n", "\n", "--------------------------------------------------------\n", - "new release suspect 1 mike mulugeta suspect 2 sunil tripathi suspect 1 suspect 2 \n", + "new release suspect mike mulugeta suspect sunil tripathi suspect suspect \n", "\n", "\n", "1 of the boston marathon suspects is \\nSunil Tripathi Missing brown/ivy league student http://t.co/kz83UIbr4b\n", "\n", "--------------------------------------------------------\n", - "1 boston marathon suspects sunil tripathi missing brown ivy league student \n", + "boston marathon suspects sunil tripathi missing brown ivy league student \n", "\n", "\n", "Boston bombings suspects innocent: father #BostonMarathon #Kenya http://t.co/CJq4ZhKnqp http://t.co/saen4lqRwc\n", @@ -56872,25 +50880,25 @@ "This is so sad the bomber and the 8 year old boy that died #prayforboston http://t.co/nU4h6hmYT3\n", "\n", "--------------------------------------------------------\n", - "sad bomber 8 year old boy died prayforboston \n", + "sad bomber year old boy died prayforboston \n", "\n", "\n", "This is just sad πΆπ”. The 8 yr old that died, the bomber, nd the bag. #prayforboston #watertown http://t.co/bADr2c817m\n", "\n", "--------------------------------------------------------\n", - "sad π άπ 8 yr old died bomber nd bag prayforboston watertown \n", + "sad ά yr old died bomber nd bag prayforboston watertown \n", "\n", "\n", "#Breaking: New #BostonMarathon Suspect Photos Released by FBI: || Suspect 1: http://t.co/7wd814SlJx || Suspect 2: http://t.co/I2sCCfr03W\n", "\n", "--------------------------------------------------------\n", - "breaking new bostonmarathon suspect photos released fbi suspect 1 suspect 2 \n", + "breaking new bostonmarathon suspect photos released fbi suspect suspect \n", "\n", "\n", "β€@TEDchris: Wild how Reddit users crowdsource photo of Boston suspect, zoom, enhance. http://t.co/kE9fQtsGRS Source: http://t.co/3A9iunoY1lβ€\n", "\n", "--------------------------------------------------------\n", - "β wild reddit users crowdsource photo boston suspect zoom enhance source \n", + "β \n", "\n", "\n", "Wild how Reddit users crowdsource photo of Boston suspect, zoom, enhance. http://t.co/J9fRCsrCgI Source: http://t.co/Esbvg3Dkr6\n", @@ -56908,43 +50916,43 @@ "Since the second Boston bombing suspect was apprehended on Friday, there's been a wave of support,… http://t.co/zd3fcVj2Dt\n", "\n", "--------------------------------------------------------\n", - "since second boston bombing suspect apprehended friday wave support β \n", + "since second boston bombing suspect apprehended friday wave support \n", "\n", "\n", "#THATSHOWWEFREAKINGDOIT #CAPTURED #ManHunt #BostonBomber #WeGotHim #BostonMarathon #GoToHell #USARules http://t.co/YOyFtLL0ZN\n", "\n", "--------------------------------------------------------\n", - "thatshowwefreakingdoit captured manhunt bostonbomber wegothim bostonmarathon gotohell usarules \n", + "thatshowwefreakingdoit captured manhunt bostonbomber wegothim bostonmarathon gotell usarules \n", "\n", "\n", "#BostonMarathon PHOTOS of Suspect 2 in white cap, seen planting bomb on surveillance http://t.co/wUDHoIHlYe http://t.co/W2Hjpha485\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon photos suspect 2 white cap seen planting bomb surveillance \n", + "bostonmarathon photos suspect white cap seen planting bomb surveillance \n", "\n", "\n", "New FBI photo of Boston bombing suspect 2 http://t.co/IPHLJuk2VR\n", "\n", "--------------------------------------------------------\n", - "new fbi photo boston bombing suspect 2 \n", + "new fbi photo boston bombing suspect \n", "\n", "\n", "Suspect #1 for Boston Marathon attack #repost #this http://t.co/kWc4NkFT4p\n", "\n", "--------------------------------------------------------\n", - "suspect 1 boston marathon attack repost \n", + "suspect boston marathon attack repost \n", "\n", "\n", "Boston bombings suspect #2 #Boston #bostonmarathon #handsoverhearts #prayforboston #bostonhelp #bostonstrong http://t.co/Qh2nPX5jX0\n", "\n", "--------------------------------------------------------\n", - "boston bombings suspect 2 boston bostonmarathon handsoverhearts prayforboston bostonhelp bostonstrong \n", + "boston bombings suspect boston bostonmarathon handsoverhearts prayforboston bostonhelp bostonstrong \n", "\n", "\n", "Boston Marathon bombing suspects ID'd as brothers from Russia; 1 suspect dead http://t.co/hm5M668jyG #Boston http://t.co/Qr6FyqVNEC\n", "\n", "--------------------------------------------------------\n", - "boston marathon bombing suspects id brothers russia 1 suspect dead boston \n", + "boston marathon bombing suspects id brothers russia suspect dead boston \n", "\n", "\n", "Beyond any doubt the single most sad/disturbing/eerie/bizarre photo I have ever seen. #prayforboston… http://t.co/fhDFGISNFg\n", @@ -56956,7 +50964,7 @@ "This made me tear up a lil . π‘π™π±π¥π” #boston #prayforboston http://t.co/Q7alf8LFcm\n", "\n", "--------------------------------------------------------\n", - "made tear lil π π π π π boston prayforboston \n", + "made tear lil boston prayforboston \n", "\n", "\n", "The FBI has released a new photo of suspect Dzhokhar Tsarnaev http://t.co/9xFMdgkFUQ\n", @@ -56986,7 +50994,7 @@ "Foto del sospechoso Dzhokhar Tsarnaev, de 19 aΓ±os. Armado y considerado altamente peligroso http://t.co/64uNYMVsdg\n", "\n", "--------------------------------------------------------\n", - "foto sospechoso dzhokhar tsarnaev 19 aγ armado considerado altamente peligroso \n", + "foto sospechoso dzhokhar tsarnaev de9 aγ armado considerado altamente peligroso \n", "\n", "\n", "They finally caught the second suspect in the Boston bombing thriller http://t.co/jXaneaO0DC\n", @@ -57010,13 +51018,13 @@ "Smh......that's al I can say poor baby may in rest on #PrayForBoston sad http://t.co/xymoHPepQ1\n", "\n", "--------------------------------------------------------\n", - "smh say poor baby may rest prayforboston sad \n", + "say poor baby may rest prayforboston sad \n", "\n", "\n", "Reported photo of suspect 2 in Boston bombings emerges on Facebook http://t.co/ItR4vvBHFH http://t.co/tby3JxQWup\n", "\n", "--------------------------------------------------------\n", - "reported photo suspect 2 boston bombings emerges facebook \n", + "reported photo suspect boston bombings emerges facebook \n", "\n", "\n", "Bombers in Boston help find them #prayforboston http://t.co/E6CVI1rlJX\n", @@ -57025,12 +51033,6 @@ "bombers boston help find prayforboston \n", "\n", "\n", - "β€@FOX19: FBI releases new photo of suspect Dzhokhar Tsarnaev. RT ! http://t.co/uaw2Rw4Hcwβ€\n", - "\n", - "--------------------------------------------------------\n", - "β fbi releases new photo suspect dzhokhar tsarnaev rt \n", - "\n", - "\n", "This just makes your heart drop. #Prayforboston #bostonmarathon there are multiple kids and families… http://t.co/RrX5aoZIIl\n", "\n", "--------------------------------------------------------\n", @@ -57040,19 +51042,19 @@ "Suspect 2 from Boston Marathon Bombing. http://t.co/TiDZbkUxBi\n", "\n", "--------------------------------------------------------\n", - "suspect 2 boston marathon bombing \n", + "suspect boston marathon bombing \n", "\n", "\n", "Boston Marathon suspect #2 with white hat (far left) running from explosion, no backpack.. http://t.co/fB8KXPURE5\n", "\n", "--------------------------------------------------------\n", - "boston marathon suspect 2 white hat far left running explosion backpack \n", + "boston marathon suspect white hat far left running explosion backpack \n", "\n", "\n", "Unknown Suspect #2 Boston Bombing #FBI Wanted Poster http://t.co/uiqLE3QRms\n", "\n", "--------------------------------------------------------\n", - "unknown suspect 2 boston bombing fbi wanted poster \n", + "unknown suspect boston bombing fbi wanted poster \n", "\n", "\n", "#BOLO for #boston bombing suspect Dzhokhar Tsarnaev. He may be driving a gray Honda CRV, with… http://t.co/mILcZLdM1z\n", @@ -57070,7 +51072,7 @@ "#CommunityAlert: As search for Dzhokhar Tsarnaev continues, we thank you 4 your continued cooperation & support. http://t.co/zZD1SzTO8u\n", "\n", "--------------------------------------------------------\n", - "communityalert search dzhokhar tsarnaev continues thank 4 continued cooperation support \n", + "communityalert search dzhokhar tsarnaev continues thank continued cooperation support \n", "\n", "\n", "This is the latest picture of the Boston bomber suspect. Share and keep a look out! He could be anywhere! http://t.co/lDrk743W4w\n", @@ -57094,25 +51096,25 @@ "New high resolution photo of suspect #2 in Boston Bombing. http://t.co/8RhNi4wL7k\n", "\n", "--------------------------------------------------------\n", - "new high resolution photo suspect 2 boston bombing \n", + "new high resolution photo suspect boston bombing \n", "\n", "\n", "suspect 2 attentat Boston celui qui a posΓ© son sac avant l'explosion qui a permis de remonter au suspect 1 http://t.co/1GOhtIOLlY\n", "\n", "--------------------------------------------------------\n", - "suspect 2 attentat boston celui qui posγ sac avant l explosion qui permis remonter au suspect 1 \n", + "suspect attentat boston celui posγ sac avant explosion permis remonter suspect \n", "\n", "\n", "2nd suspect in custody from the Boston Marathon bombings. He is injured and being treated from gun… http://t.co/298n5q8BFY\n", "\n", "--------------------------------------------------------\n", - "2nd suspect custody boston marathon bombings injured treated gunβ \n", + "suspect custody boston marathon bombings injured treated gunβ \n", "\n", "\n", "Separados por um #Chris.\\n\\n#DzhokharTsarnaev #greg #VicentMartella #Watertown #Boston… http://t.co/aLHFxJ5G1G\n", "\n", "--------------------------------------------------------\n", - "separados um chris dzhokhartsarnaev greg vicentmartella watertown bostonβ \n", + "separados chris dzhokhartsarnaev greg vicentmartella watertown bostonβ \n", "\n", "\n", "FIND THIS FUCK! #Boston #bomber #coward #shootout #bostonstrong #FBI #BPD #watertown #cambridge… http://t.co/KQv6RqxXIC\n", @@ -57160,13 +51162,7 @@ "Updated photo of Dzhokhar Tsarnaev from FBI, they're still looking for him. DOB: 7/22/1993 http://t.co/O5n8JfjibY\n", "\n", "--------------------------------------------------------\n", - "updated photo dzhokhar tsarnaev fbi still looking dob 7 22 1993 \n", - "\n", - "\n", - "β€@Z00kiehne: Left-Boston suspect Right-jnatoli10 http://t.co/oy1UcQxRBLβ€ @jnatoli10\n", - "\n", - "--------------------------------------------------------\n", - "β left boston suspect right jnatoli10 \n", + "updated photo dzhokhar tsarnaev fbi still looking dob93 \n", "\n", "\n", "#bostonstrong #usa #oneboston #onenation #prayforboston http://t.co/SdfIGWdFxH\n", @@ -57178,7 +51174,7 @@ "They caught his ass in Boston suspect 1 is dead now suspect 2 will be in jail for the rest of his damn… http://t.co/vnpkHuDKcx\n", "\n", "--------------------------------------------------------\n", - "caught ass boston suspect 1 dead suspect 2 jail rest damnβ \n", + "caught ass boston suspect dead suspect jail rest damnβ \n", "\n", "\n", "Game over Bitch #bostonmarathon http://t.co/1sQJC5be0l\n", @@ -57190,7 +51186,7 @@ "Nooo poor, sweet baby Martin before the explosion. πΆπ‘Ό omg I can't. #ripmartin #manhunt #boston… http://t.co/MZwQuOhr1v\n", "\n", "--------------------------------------------------------\n", - "nooo poor sweet baby martin explosion π άπ ό omg ripmartin manhunt bostonβ \n", + "nooo poor sweet baby martin explosion ά ό ripmartin manhunt bostonβ \n", "\n", "\n", "#prayforboston #prayfortheworldwelivein http://t.co/GQtpwqAmvm\n", @@ -57208,31 +51204,31 @@ "A very clear photo of suspect no. 2 in Boston -- check him out in white hat turning corner on the left http://t.co/OnCLOX3JTm\n", "\n", "--------------------------------------------------------\n", - "clear photo suspect 2 boston check white hat turning corner left \n", + "clear photo suspect boston check white hat turning corner left \n", "\n", "\n", "From a friend in local news in Boston. MT @amorse9: http://t.co/FRv0tIrBCe Suspect #2 moving around corner on left.\n", "\n", "--------------------------------------------------------\n", - "friend local news boston suspect 2 moving around corner left \n", + "friend local news boston \n", "\n", "\n", "C'mon people lets work together and catch these fuckers #prayforboston #justicewillbeserved http://t.co/gXy9DuuuJE\n", "\n", "--------------------------------------------------------\n", - "c mon people lets work together catch fuckers prayforboston justicewillbeserved \n", + "people lets work together catch fuckers prayforboston justicewillbeserved \n", "\n", "\n", "La foto mas reciente del profugo terrorista Dzhokhar Tsarnaev http://t.co/UJoC7UaveI\n", "\n", "--------------------------------------------------------\n", - "foto mas reciente profugo terrorista dzhokhar tsarnaev \n", + "foto reciente profugo terrorista dzhokhar tsarnaev \n", "\n", "\n", "FBI just posted New Photo of Suspect #2, Dzhokhar Tsarnaev. #BostonMarthon http://t.co/FB7lbHGSCB\n", "\n", "--------------------------------------------------------\n", - "fbi posted new photo suspect 2 dzhokhar tsarnaev bostonmarthon \n", + "fbi posted new photo suspect dzhokhar tsarnaev bostonmarthon \n", "\n", "\n", "A closer look at FBI's Boston bombing suspect's hat. RT @RichardPhillips: http://t.co/WTpTwRP00X\n", @@ -57256,13 +51252,13 @@ "FBI ΰΉ€ΰΈΰΈΆΰΈ ΰΈ²ΰΈΰΈ΅ΰΈ·ΰΈΰΈ£ΰΈ°ΰΉ€ΰΈΰΈ΄ΰΈ”ΰΈ΅ΰΈ²ΰΈ£ΰΈ²ΰΈΰΈΰΈ™ΰΈΰΈΰΈΰΈ•ΰΈ±ΰΈ™ ΰΈ—ΰΈµΰΉΰΈΰΈ³ΰΈ¥ΰΈ±ΰΈ‡ΰΈ«ΰΈ¥ΰΈΰΈ«ΰΈ™ΰΈµ ΰΈΰΈ·ΰΉΰΈ Dzhokhar A. Tsarnaev http://t.co/AHzNQyJuCj\n", "\n", "--------------------------------------------------------\n", - "fbi ΰή ΰέ ΰέάΰέ ΰέ²ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰή ΰέ ΰέ ΰέ ΰέ ΰέ²ΰέ ΰέ²ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέµΰή ΰέ ΰέ³ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέ ΰέµ ΰέ ΰέ ΰή ΰέ dzhokhar tsarnaev \n", + "fbi ΰή ά ² ΰή ² ² µΰή ³ µ ΰή dzhokhar tsarnaev \n", "\n", "\n", "New photo from FBI of Suspect No. 2 -- Dzhokhar A. Tsarnaev -- still at-large in Boston Marathon bombings http://t.co/FfU9MHEjlS\n", "\n", "--------------------------------------------------------\n", - "new photo fbi suspect 2 dzhokhar tsarnaev still large boston marathon bombings \n", + "new photo fbi suspect dzhokhar tsarnaev still large boston marathon bombings \n", "\n", "\n", "#boston #Coward #Manhunt #looser #Bomber http://t.co/PBAx5IDamJ\n", @@ -57306,35 +51302,23 @@ "--------------------------------------------------------\n", "punkass bitch dzhokhartsarnaev bostonmarathon bomber \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "Suspect #2 in Boston Marathon bombing still at large and considered armed and dangerous. #watertown http://t.co/TqPjzxPV6O\n", "\n", "--------------------------------------------------------\n", - "suspect 2 boston marathon bombing still large considered armed dangerous watertown \n", + "suspect boston marathon bombing still large considered armed dangerous watertown \n", "\n", "\n", "Updated photo of Boston bombing suspect 2 released by FBI: http://t.co/RbhrOFmq1P http://t.co/FMGLupgBpx\n", "\n", "--------------------------------------------------------\n", - "updated photo boston bombing suspect 2 released fbi \n", + "updated photo boston bombing suspect released fbi \n", "\n", "\n", "Guys! #FBI Suspect 2 of the #BostonMarathon Bombing of #ATLARGE IN #BOSTON. Right now reports are… http://t.co/RyesjkAZ5h\n", "\n", "--------------------------------------------------------\n", - "guys fbi suspect 2 bostonmarathon bombing atlarge boston right reports areβ \n", - "\n", - "\n", - "Suspect in Boston marathon bombing http://t.co/0Uc1Eas3dN\n", - "\n", - "--------------------------------------------------------\n", - "suspect boston marathon bombing \n", + "guys fbi suspect bostonmarathon bombing atlarge boston right reports areβ \n", "\n", "\n", "#FBI #Suspected #Boston #BostonMarathon #Prayforboston #pray4boston http://t.co/Hn6ZgqhYhj\n", @@ -57346,13 +51330,13 @@ "You're done!! Can't wait until they find these assholes!! #prayforboston #justice π™β¤ http://t.co/pPX1iDNoNU\n", "\n", "--------------------------------------------------------\n", - "done wait find assholes prayforboston justice π β \n", + "done wait find assholes prayforboston justice \n", "\n", "\n", "Police: Boston bombing \"Suspect #2\" reportedly armed and dangerous still on the loose -- latest photo: http://t.co/4IaxRbq36o\n", "\n", "--------------------------------------------------------\n", - "police boston bombing suspect 2 reportedly armed dangerous still loose latest photo \n", + "police boston bombing suspect reportedly armed dangerous still loose latest photo \n", "\n", "\n", "#Dzokhar #Tsarnaev #gta #saintsrow #gameover #boston #marathon Use game genie next time, you'll last… http://t.co/lPAGRFTLRW\n", @@ -57364,13 +51348,13 @@ "Victim Martin Richard standing in front of bomber moments before #prayforboston #RIP πΆ http://t.co/04kBxmIrgd\n", "\n", "--------------------------------------------------------\n", - "victim martin richard standing front bomber moments prayforboston rip π ά \n", + "victim martin richard standing front bomber moments prayforboston rip ά \n", "\n", "\n", "They finally caught his bitch ass!!!! Haha im happy :) #HappyAsFuck #ThugShit #USA #PrayForBoston http://t.co/R8UeyVgX5i\n", "\n", "--------------------------------------------------------\n", - "finally caught bitch ass haha im happy happyasfuck thugshit usa prayforboston \n", + "finally caught bitch ass happy happyasfuck thugshit usa prayforboston \n", "\n", "\n", "So glad they caught both of the bombers...! Justice will prevail... #prayforboston http://t.co/950KB5TNxU\n", @@ -57388,13 +51372,13 @@ "BREAKING NEWS: BOSTON POLICE GOT EM!!!!! 2nd Suspect in Custody!!! #boston http://t.co/JExFbh0h3L\n", "\n", "--------------------------------------------------------\n", - "breaking news boston police got em second suspect custody boston \n", + "breaking news boston police got second suspect custody boston \n", "\n", "\n", "Interesting post from 4chan... Suspect and backpack that exploded in red, 8-year old victim who died in blue. http://t.co/z8lWYHZA2W\n", "\n", "--------------------------------------------------------\n", - "interesting post 4chan suspect backpack exploded red 8 year old victim died blue \n", + "interesting post suspect backpack exploded red year old victim died blue \n", "\n", "\n", "Suspect photos in the Boston bombing released: http://t.co/SyhvvlbEFx\n", @@ -57409,22 +51393,16 @@ "picture unbelievable poor little martin catch bastard bostonstrong prayforboston \n", "\n", "\n", - "@TheAtlanticWire: Hi-res image by @nytimes allegedly Boston bombing suspect http://t.co/gUl9VJ9mqw http://t.co/n93S10PBLS closest Arab?\n", - "\n", - "--------------------------------------------------------\n", - "hi res image allegedly boston bombing suspect closest arab \n", - "\n", - "\n", "Another look at \"Suspect #2\" in the Boston bombing investigation. Seen here talking on a phone. http://t.co/JgqZByZRn5β€\n", "\n", "--------------------------------------------------------\n", - "another look suspect 2 boston bombing investigation seen talking phone \n", + "another look suspect boston bombing investigation seen talking phone \n", "\n", "\n", "BPD police commissioner @EdDavis3 tweeted Suspect 2 in Boston Marathon explosions is still at large http://t.co/uPsuLbgaWB\n", "\n", "--------------------------------------------------------\n", - "bpd police commissioner tweeted suspect 2 boston marathon explosions still large \n", + "bpd police commissioner tweeted suspect boston marathon explosions still large \n", "\n", "\n", "Boston RIC has released this flier showing at large suspect Dzhokhar A. Tsarnaev. He may be armed & dangerous. http://t.co/LNNBXcKq8r\n", @@ -57448,19 +51426,19 @@ "Boston bombings suspects 1 and 2 #Boston #bostonmarathon #handsoverhearts #prayforboston #bostonhelp #bostonstrong http://t.co/RNp8g4PJlR\n", "\n", "--------------------------------------------------------\n", - "boston bombings suspects 1 2 boston bostonmarathon handsoverhearts prayforboston bostonhelp bostonstrong \n", + "boston bombings suspects boston bostonmarathon handsoverhearts prayforboston bostonhelp bostonstrong \n", "\n", "\n", "Brothers possibly from Chechnya....WOW!! Gotta Google that one. #Manhunt #Craziness http://t.co/9oVyuBY9Xt\n", "\n", "--------------------------------------------------------\n", - "brothers possibly chechnya wow gotta google one manhunt craziness \n", + "brothers possibly chechnya gotta google one manhunt craziness \n", "\n", "\n", "Suspect 2 in #BostonMarathon bombing - do you know this man? 1-800-CALL-FBI http://t.co/2JY0pvnaym\n", "\n", "--------------------------------------------------------\n", - "suspect 2 bostonmarathon bombing know 1 800 call fbi \n", + "suspect bostonmarathon bombing know call fbi \n", "\n", "\n", "White hat to the left of photo..walking away from scene no bag http://t.co/lfPuoXQrXC boston bombing suspect. From reddit\n", @@ -57496,7 +51474,7 @@ "#Persons of #interest. #Bostonmarathon #bombing . Call #FBI at 1-800-225-5324 or email Boston@ic.fbi.gov http://t.co/sGungDYgPv\n", "\n", "--------------------------------------------------------\n", - "persons interest bostonmarathon bombing call fbi 1 800 225 5324 email boston fbi gov \n", + "persons interest bostonmarathon bombing call fbi at0025324 email boston fbi gov \n", "\n", "\n", "#CAPTURED #INCUSTODY http://t.co/Bpsa11adKy\n", @@ -57508,7 +51486,7 @@ "Possible suspect of the Boston Marathon bombing. If that's really him my oh my! In other words he's… http://t.co/CK6UCpU080\n", "\n", "--------------------------------------------------------\n", - "possible suspect boston marathon bombing really oh words sβ \n", + "possible suspect boston marathon bombing really mymy words sβ \n", "\n", "\n", "New photo of second Boston suspect provided by Boston Police Department moments ago - http://t.co/rEbmY0Pegf\n", @@ -57520,7 +51498,7 @@ "This seriously sad! #prayforboston π™π™π™.. One man down now let's catch the other piece of shit http://t.co/gG1aMcfYdo\n", "\n", "--------------------------------------------------------\n", - "seriously sad prayforboston π π π one let catch piece shit \n", + "seriously sad prayforboston one let catch piece shit \n", "\n", "\n", "Justice been survive #bostonbombing #prayforboston http://t.co/D7xIZgG0pX\n", @@ -57538,7 +51516,7 @@ "FBI suspect in the Boston Marathon Bombing.1-800-call-FBI http://t.co/D50OLZjzRy\n", "\n", "--------------------------------------------------------\n", - "fbi suspect boston marathon bombing 1 800 call fbi \n", + "fbi suspect boston marathon bombing00 call fbi \n", "\n", "\n", "http://t.co/aDjvyn08KB #Boston #Bomber suspect #Whitehat ... Always has his ID called fake at the #Pub. #Retweet. make him #pissedoff #Tcot\n", @@ -57547,12 +51525,6 @@ "boston bomber suspect whitehat always id called fake pub retweet make pissedoff tcot \n", "\n", "\n", - "Unknown Suspect #1 Boston Bombing #FBI Wanted Poster http://t.co/1zSlXwMQIR\n", - "\n", - "--------------------------------------------------------\n", - "unknown suspect 1 boston bombing fbi wanted poster \n", - "\n", - "\n", "Finally the man hunt is over. Justice will be served. #PrayForBoston #BPD #GodBlessAmerica http://t.co/DJP92mwvGy\n", "\n", "--------------------------------------------------------\n", @@ -57568,7 +51540,7 @@ "http://t.co/bf9sCNWHip suspect 2 in Boston bombing 19 yr old Eastern European armed and dangerous and at large, huge man hunt underway\n", "\n", "--------------------------------------------------------\n", - "suspect 2 boston bombing 19 yr old eastern european armed dangerous large huge hunt underway \n", + "suspect boston bombing9 yr old eastern european armed dangerous large huge hunt underway \n", "\n", "\n", "New photo of what seems to be Boston bombing suspect. http://t.co/o8YT2optKG #bostonmarathon\n", @@ -57592,7 +51564,7 @@ "β€@Pain_4Glory β€@_Naes103 FREE MY FUCCIN BRO Dzhokhar A. Tsarnaev http://t.co/ZaxbSPUnUn http://t.co/vBF8r2mOjXβ€β€\n", "\n", "--------------------------------------------------------\n", - "β β free fuccin bro dzhokhar tsarnaev β \n", + "β free fuccindzhokhar tsarnaev \n", "\n", "\n", "#eyeforaneye #watertown #marathonbomber #justice #boston #bostonstrong http://t.co/yzBo8LCoVi\n", @@ -57610,7 +51582,7 @@ "This is suspect #2 leaving the scene of the Boston Marathon bombing. The man who took this new pic.,… http://t.co/cbvAXucImh\n", "\n", "--------------------------------------------------------\n", - "suspect 2 leaving scene boston marathon bombing took new pic β \n", + "suspect leaving scene boston marathon bombing took new pic \n", "\n", "\n", "That kid is one heck of a hide-and-go seek player #manhunt http://t.co/YZsli5mb4N\n", @@ -57628,7 +51600,7 @@ "This is so sad! 8 year old Martin Richard & Dzhokhar Tsarnaev. How could someone do this? #manhunt… http://t.co/1031odV2sV\n", "\n", "--------------------------------------------------------\n", - "sad 8 year old martin richard dzhokhar tsarnaev could someone manhuntβ \n", + "sad year old martin richard dzhokhar tsarnaev could someone manhuntβ \n", "\n", "\n", "Dzhokhar Tsarnaev (Yojar Sarnav) de Chechenia! http://t.co/m75UQOe7dL\n", @@ -57646,7 +51618,7 @@ "Boston marathon bomber captured. #captured #bostonbombing #bombingsuspect #suspectcaptured #100k… http://t.co/mK17ttsetn\n", "\n", "--------------------------------------------------------\n", - "boston marathon bomber captured captured bostonbombing bombingsuspect suspectcaptured 100kβ \n", + "boston marathon bomber captured captured bostonbombing bombingsuspect suspectcaptured00kβ \n", "\n", "\n", "Gotta find these people..gotta get this pix out.. #bostonsuspects #prayforboston #bostonmassacre http://t.co/fP7RennPb7\n", @@ -57670,13 +51642,13 @@ "π«BREAKINGπ« Second suspect down on Franklin Street in Watertown. #boston #bostonmarathon #suspect… http://t.co/O7tg7dEyvh\n", "\n", "--------------------------------------------------------\n", - "π breakingπ second suspect franklin street watertown boston bostonmarathon suspectβ \n", + "breaking second suspect franklin street watertown boston bostonmarathon suspectβ \n", "\n", "\n", "#Gotcha #bostonmarathon http://t.co/yG94Rrs9ji\n", "\n", "--------------------------------------------------------\n", - "gotcha bostonmarathon \n", + "gotcbostonmarathon \n", "\n", "\n", "The lil boy that died in blue. One of the brothers placed the bag in red. #prayforboston http://t.co/uzMSoSeRUX\n", @@ -57688,13 +51660,13 @@ "#bostonmarathon #boston here are 2 persons of interest the #fbi would like to speak with. If you… http://t.co/iUhWD17dGM\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon boston 2 persons interest fbi would like speak youβ \n", + "bostonmarathon boston persons interest fbi would like speak youβ \n", "\n", "\n", "#repost -- I have no words.. This picture is self-explanatory #RIP Martin β¤β¤ #BostonStrong #PrayForBoston http://t.co/qBk1DXrCLm\n", "\n", "--------------------------------------------------------\n", - "repost words picture self explanatory rip martin β β bostonstrong prayforboston \n", + "repost words picture self explanatory rip martin bostonstrong prayforboston \n", "\n", "\n", "Image of Boston Marathon Blasts Suspect http://t.co/Nu7sw8OdjZ\n", @@ -57727,12 +51699,6 @@ "another pic younger brother still running wate \n", "\n", "\n", - "#Persons of #interest. #Bostonmarathon #bombing Call #FBI at 1-800-225-5324 or email Boston@ic.fbi.gov http://t.co/2fBHZRyGgl\n", - "\n", - "--------------------------------------------------------\n", - "persons interest bostonmarathon bombing call fbi 1 800 225 5324 email boston fbi gov \n", - "\n", - "\n", "m1llston3's photo the suspect of boston bomb http://t.co/7eIS1Nw9o6\n", "\n", "--------------------------------------------------------\n", @@ -57742,7 +51708,7 @@ "White Cap Left Side @olivercameron: Reddit found a clearer photo of the second Boston Bomber suspect after explosion http://t.co/ODgFBbFxeG\n", "\n", "--------------------------------------------------------\n", - "white cap left side reddit found clearer photo second boston bomber suspect explosion \n", + "white cap left side \n", "\n", "\n", "Suspect that is still outstanding, is identified as the male with the white hat in the photos. Re: Boston bombing. http://t.co/LJLzSIx1pG\n", @@ -57754,13 +51720,13 @@ "Help Boston by sharing the suspects' pics. Suspect #1. #helpboston #bostonbombing #bostonbombers http://t.co/dmbkraI1HG\n", "\n", "--------------------------------------------------------\n", - "help boston sharing suspects pics suspect 1 helpboston bostonbombing bostonbombers \n", + "help boston sharing suspects pics suspect helpboston bostonbombing bostonbombers \n", "\n", "\n", "@andersoncooper Apparently another photo of suspect 2 in the Boston Marathon bombing has been found.\\n\\nhttp://t.co/TvlA3nG3Qy\n", "\n", "--------------------------------------------------------\n", - "apparently another photo suspect 2 boston marathon bombing found \n", + "apparently another photo suspect boston marathon bombing found \n", "\n", "\n", "Boston bomb suspect could face death #BostonPoliceDepartment #Kenya http://t.co/5XVgu7qLnn http://t.co/BYWIOoq9C3\n", @@ -57772,7 +51738,7 @@ "You can run but you can't hide!! You're going down you lil fucker!!!π π‘ #boston #watertown… http://t.co/cKoacCkVCj\n", "\n", "--------------------------------------------------------\n", - "run hide going lil fucker π π boston watertownβ \n", + "run hide going lil fucker boston watertownβ \n", "\n", "\n", "We're coming for you. #PrayForBoston #PrayerWorks http://t.co/SPgmV4vXiS\n", @@ -57784,7 +51750,7 @@ "New pictures of suspect 1: http://t.co/HYFXz6IoSr suspect 2: http://t.co/EopUbDzxRZ #BostonMarathon\n", "\n", "--------------------------------------------------------\n", - "new pictures suspect 1 suspect 2 bostonmarathon \n", + "new pictures suspect suspect bostonmarathon \n", "\n", "\n", "#bostonmarathon #cowards #fuckingbastards http://t.co/fbBvsO8Wvv\n", @@ -57808,7 +51774,7 @@ "Boston Marathon Bombing UPDATE:\\n\\nThe suspect pictured above in the black hat, Tamerlan Tsarnaev, 26,… http://t.co/LVXf4prNz1\n", "\n", "--------------------------------------------------------\n", - "boston marathon bombing update suspect pictured black hat tamerlan tsarnaev 26 β \n", + "boston marathon bombing update suspect pictured black hat tamerlan tsarnaev 6 \n", "\n", "\n", "FBI releases new image of 2nd Boston Marathon bombing suspect as manhunt continues http://t.co/38kr6pKKsC #Watertown http://t.co/oeOKaBgBUc\n", @@ -57823,34 +51789,28 @@ "boston bomb suspect \n", "\n", "\n", - "Boston Bombing Suspect 1 http://t.co/apy5VjGzeW\n", - "\n", - "--------------------------------------------------------\n", - "boston bombing suspect 1 \n", - "\n", - "\n", "One of the last pics of Martin in Boston. With suspect #2 and the bomb. So sad!!! http://t.co/iFmLwWNl3j\n", "\n", "--------------------------------------------------------\n", - "one last pics martin boston suspect 2 bomb sad \n", + "one last pics martin boston suspect bomb sad \n", "\n", "\n", "Boston bombing suspect is a medical student, father says http://t.co/U8mGUrtAQB … http://t.co/EAFVU8zQsT (via @buzzfeednews)\n", "\n", "--------------------------------------------------------\n", - "boston bombing suspect medical student father says β \n", + "boston bombing suspect medical student father says \n", "\n", "\n", "In the blue circle..the 8 year old who lost his life.. :(..in the red circle is Dzhokhar Tsarnaev… http://t.co/CnuYHHVhNU\n", "\n", "--------------------------------------------------------\n", - "blue circle 8 year old lost life red circle dzhokhar tsarnaevβ \n", + "blue circle year old lost life red circle dzhokhar tsarnaevβ \n", "\n", "\n", "Photos of Boston Marathon Explosion FBI Released just 12 Hours B4 after Press Meet in Boston .\\n\\nOne… http://t.co/RiRnermMSZ\n", "\n", "--------------------------------------------------------\n", - "photos boston marathon explosion fbi released 12 hours b4 press meet boston oneβ \n", + "photos boston marathon explosion fbi released just2 hours b4 press meet boston oneβ \n", "\n", "\n", "Photo released for #bostonmarathon bombing. Please share! #prayforboston http://t.co/YxgxYscx6C\n", @@ -57871,16 +51831,10 @@ "picture makes sick prayforboston letsgethim findhim sick disgusting \n", "\n", "\n", - "Help Boston by sharing the suspects' pics. Suspect #2. #helpboston #bostonbombing #bostonbombers http://t.co/bMd7pspXgq\n", - "\n", - "--------------------------------------------------------\n", - "help boston sharing suspects pics suspect 2 helpboston bostonbombing bostonbombers \n", - "\n", - "\n", "And Reddit ID's the hat worn by suspect #1: http://t.co/luw1NonckB The whole \"armchair investigator\" aspect of this is fascinating.\n", "\n", "--------------------------------------------------------\n", - "reddit id hat worn suspect 1 whole armchair investigator aspect fascinating \n", + "reddit id hat worn suspect whole armchair investigator aspect fascinating \n", "\n", "\n", "Photos of the alleged #BostonMarathon bombing suspects. I wonder if they're still considered… http://t.co/mfREFmEcNr\n", @@ -57904,19 +51858,19 @@ "New high resolution photograph of suspect in Boston explosion (David Green via New York Times) http://t.co/TdAJcsSuXv http://t.co/YPhgcy47Pb\n", "\n", "--------------------------------------------------------\n", - "new high resolution photograph suspect boston explosion david green via new york times \n", + "new high resolution photograph suspect boston explosion david greennew york times \n", "\n", "\n", "DerniΓ¨re Minute: Publication de la photo du suspect no.1 de l'attentat de Boston @YourAnonNews \\nhttp://t.co/AeyG658tvo\n", "\n", "--------------------------------------------------------\n", - "derniγ minute publication photo suspect 1 l attentat boston \n", + "derniγ minute publication photo suspect attentat boston \n", "\n", "\n", "#WANTED: Suspect identified as 19 year-old Dzhokhar Tsarnaev of Cambridge. Suspect considered armed &… http://t.co/e6l1TBouBb\n", "\n", "--------------------------------------------------------\n", - "wanted suspect identified 19 year old dzhokhar tsarnaev cambridge suspect considered armed andβ \n", + "wanted suspect identified as9 year old dzhokhar tsarnaev cambridge suspect considered armed andβ \n", "\n", "\n", "Russians are too Mayne!!!\"@BREAKlNG: #WANTED: 19 yr-old Dzhokhar Tsarnaev. Suspect armed and dangerous. Call 1(800) http://t.co/JvTsnTHBCo\"\n", @@ -57928,19 +51882,19 @@ "My mom just said Suspect #2 from Boston's bombing is cute... Like... Just no. -_- http://t.co/5lfIoH2tKO\n", "\n", "--------------------------------------------------------\n", - "mom said suspect 2 boston bombing cute like \n", + "mom said suspect boston bombing cute like \n", "\n", "\n", "Soy yo o Dzhokhar Tsarnaev se parece un poquito a Alex Turner? https://t.co/wsei6WH26p\n", "\n", "--------------------------------------------------------\n", - "dzhokhar tsarnaev parece poquito alex turner \n", + "soyo dzhokhar tsarnaev parece poquito alex turner \n", "\n", "\n", "Find these two men. π‘¥ Then π“ 1-800-CALL-FBI #PrayForBoston http://t.co/Sr4l9HhcM2\n", "\n", "--------------------------------------------------------\n", - "find two π π 1 800 call fbi prayforboston \n", + "find two call fbi prayforboston \n", "\n", "\n", "Dzhokhar Tsarnaev at large armed & dangerous suicide vest firearm #Boston #suspect #bostonbombing http://t.co/AcJUTctbXK\n", @@ -57958,7 +51912,7 @@ "Suspect #1 in the Boston Marathon bombing is dead, following a shootout with cops, suspect #2 is on… http://t.co/4B07fMc1lz\n", "\n", "--------------------------------------------------------\n", - "suspect 1 boston marathon bombing dead following shootout cops suspect 2 onβ \n", + "suspect boston marathon bombing dead following shootout cops suspect onβ \n", "\n", "\n", "#bostonmarathon this picture makes me angry and sad at the same time!!! #coward!!! http://t.co/m4K0gwg7By\n", @@ -57970,7 +51924,7 @@ "Digital billboards showing Boston Marathon suspects around Boston area. Suspect #1: http://t.co/nHAi4RYcAG (@MassBillboards)\n", "\n", "--------------------------------------------------------\n", - "digital billboards showing boston marathon suspects around boston area suspect 1 \n", + "digital billboards showing boston marathon suspects around boston area suspect \n", "\n", "\n", "This makes me sick to my stomach. #repost #prayforboston http://t.co/huRbqhoZRU\n", @@ -57994,7 +51948,7 @@ "β€@Boston_Police #WANTED: Photo of 19 year-old Dzhokhar Tsarnaev released. Suspect considered armed & dangerous. http://t.co/klHoLbXj1fβ€\n", "\n", "--------------------------------------------------------\n", - "β wanted photo 19 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", + "β wanted photo of9 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", "\n", "\n", "FBI photo of Boston bombing suspect!! https://t.co/HWJSHsIUgk\n", @@ -58024,13 +51978,13 @@ "#bostonmarathon Suspects from #FBI Share/RT. http://t.co/Ktglo2pau1\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon suspects fbi share rt \n", + "bostonmarathon suspects fbi share \n", "\n", "\n", "I think Boston bombing suspect #2 is bow-legged. http://t.co/FW3C185W5H\n", "\n", "--------------------------------------------------------\n", - "think boston bombing suspect 2 bow legged \n", + "think boston bombing suspect bow legged \n", "\n", "\n", "Fuck these guys #watertown http://t.co/iFzn0wV5bw\n", @@ -58048,7 +52002,7 @@ "A new photo of Boston suspect #2 shows him walking, not running, from scene - look to the far left of the photo:http://t.co/klMWx1YTix\n", "\n", "--------------------------------------------------------\n", - "new photo boston suspect 2 shows walking running scene look far left photo \n", + "new photo boston suspect shows walking running scene look far left photo \n", "\n", "\n", "Suspect of the boston marathon bombing at loose his heavily arm may have bombs with him if you see… http://t.co/7OiYVKlE6l\n", @@ -58060,13 +52014,13 @@ "The 8-year-old boy who died in the Boston bombing was photographed next to a suspect: http://t.co/s8m1oUWCjj\n", "\n", "--------------------------------------------------------\n", - "8 year old boy died boston bombing photographed next suspect \n", + "year old boy died boston bombing photographed next suspect \n", "\n", "\n", "BREAKING: Boston PD says 1 marathon bomber killed in shootout, suspect No. 2 still sought, believed armed, dangerous http://t.co/AQGvVyiP5B\n", "\n", "--------------------------------------------------------\n", - "breaking boston pd says 1 marathon bomber killed shootout suspect 2 still sought believed armed dangerous \n", + "breaking boston pd says marathon bomber killed shootout suspect still sought believed armed dangerous \n", "\n", "\n", "Share this. Possible suspect in Boston Bombing #Boston http://t.co/n8iRkG1dZh\n", @@ -58090,7 +52044,7 @@ "Tragic image of suspect #2 (with the white hat on) in Boston bombings and the 8 year old boy that was… http://t.co/dVytiDssXD\n", "\n", "--------------------------------------------------------\n", - "tragic image suspect 2 white hat boston bombings 8 year old boy wasβ \n", + "tragic image suspect white hat boston bombings year old boy wasβ \n", "\n", "\n", "#AHORA #BOSTON Este es Dzhokhar Tsarnaev que es buscado por el @FBIBoston como co autor del atentado (Foto) http://t.co/blzPVPP26g\n", @@ -58108,7 +52062,7 @@ "#boston #captured #pieceofshit @ Tha Crib!!! http://t.co/IaQ4SS7OuA\n", "\n", "--------------------------------------------------------\n", - "boston captured pieceofshit tha crib \n", + "boston captured pieceofshit tcrib \n", "\n", "\n", "Here they are. Go get them #BostonMarathon #bombers #fbi #photo #prayforBoston http://t.co/HWsbvrSToP\n", @@ -58120,25 +52074,25 @@ "One left π’£π’¥π’π¤π”« #bostonmarathon #fuckedwiththewrongcity #wegonnagetyou #youcanrunbutyoucanhide… http://t.co/x4XAa50QGM\n", "\n", "--------------------------------------------------------\n", - "one left π π π π π bostonmarathon fuckedwiththewrongcity wegonnagetyou youcanrunbutyoucanhideβ \n", + "one left bostonmarathon fuckedwiththewrongcity wegonnagetyou youcanrunbutyoucanhideβ \n", "\n", "\n", "Gotcha fucker, hope you rot in Guantanamo Bay. #prayForboston #Boston http://t.co/mBGRQFYzJW\n", "\n", "--------------------------------------------------------\n", - "gotcha fucker hope rot guantanamo bay prayforboston boston \n", + "gotcfucker hope rot guantanamo bay prayforboston boston \n", "\n", "\n", "New suspect photo from @Boston_Police: 19 year-old Dzhokhar Tsarnaev of Cambridge. Considered armed &… http://t.co/madlm7RYSW\n", "\n", "--------------------------------------------------------\n", - "new suspect photo 19 year old dzhokhar tsarnaev cambridge considered armed andβ \n", + "new suspect photo \n", "\n", "\n", "Si ven a este OGT llamado Dzhokhar Tsarnaev, llamen al 1-800-CALL-FBI o al 066 en su defecto. Es peligroso el mmb. http://t.co/5wNfIioKf8\n", "\n", "--------------------------------------------------------\n", - "si ven ogt llamado dzhokhar tsarnaev llamen 1 800 call fbi 066 defecto peligroso mmb \n", + "si ven ogt llamado dzhokhar tsarnaev llamen al00 call fbi al66 defecto peligroso mmb \n", "\n", "\n", "#bostonstrong #suspectincustody #bostonpolice #bostonbombing #BostonMarathon #manhunt #watertown… http://t.co/uyzMDZmlHF\n", @@ -58150,13 +52104,13 @@ "Dzhokhar A. Tsarnaev, 19 aΓ±os. #Boston http://t.co/45jbNlZW1F\n", "\n", "--------------------------------------------------------\n", - "dzhokhar tsarnaev 19 aγ boston \n", + "dzhokhar tsarnaev 9 aγ boston \n", "\n", "\n", "This is the #bostonMarathon #bomber. He iz 19, armed and dangerous, and is still on the loose. Dude… http://t.co/kUWnvCnGJF\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon bomber iz 19 armed dangerous still loose dudeβ \n", + "bostonmarathon bomber iz9 armed dangerous still loose dudeβ \n", "\n", "\n", "#suspect2 wanted in the #marathonbombing #bostonmarathon #bostonmarathonbombing #bostonstrong http://t.co/Qlti3V6lay\n", @@ -58195,16 +52149,10 @@ "happens mess wrong city end captured \n", "\n", "\n", - "New photo from FBI of Suspect No. 2 -- Dzhokhar A. Tsarnaev -- still at-large in Boston Marathon bombings !!!! http://t.co/KeVlyklJE0\n", - "\n", - "--------------------------------------------------------\n", - "new photo fbi suspect 2 dzhokhar tsarnaev still large boston marathon bombings \n", - "\n", - "\n", "1/2 found. The Tsarnaev brothers. #wanted #prayforboston http://t.co/GLVGSeUrPT\n", "\n", "--------------------------------------------------------\n", - "1 2 found tsarnaev brothers wanted prayforboston \n", + "found tsarnaev brothers wanted prayforboston \n", "\n", "\n", "FBI releases new pictures of Dzhokhar Tsarnaev. Suspect still at loose in Boston bombing. http://t.co/kVErINMibn\n", @@ -58215,38 +52163,38 @@ "\n", "This, according to the FBI, is the face behind #BostonMarathon bombings. Life may do a 360 for him if FBI is right http://t.co/EgrNnVqDxR\n", "\n", - "--------------------------------------------------------\n", - "according fbi face behind bostonmarathon bombings life may 360 fbi right \n", + "--------------------------------------------------------\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "according fbi face behind bostonmarathon bombings life may a60 fbi right \n", "\n", "\n", "Pray for Boston right now folks that we get this last suspect! Pic in green is the little 8 yr old… http://t.co/O4M1F2SXka\n", "\n", "--------------------------------------------------------\n", - "pray boston right folks get last suspect pic green little 8 yr oldβ \n", + "pray boston right folks get last suspect pic green little yr oldβ \n", "\n", "\n", "If you see these two individuals or have information, call the FBI at 1-800-CALL-FBI. #prayforboston http://t.co/mti29ckf73\n", "\n", "--------------------------------------------------------\n", - "see two individuals information call fbi 1 800 call fbi prayforboston \n", - "\n", - "\n", - "@mwhd Reddit has found a much clearer photo of the 2nd Boston Bomber suspect moments after the explosion (look left): http://t.co/Xtxogksl5h\n", - "\n", - "--------------------------------------------------------\n", - "reddit found much clearer photo second boston bomber suspect moments explosion look left \n", + "see two individuals information call fbi at00 call fbi prayforboston \n", "\n", "\n", ".......but why though lol #RP #crazyman #manhunt #over #terror #boston http://t.co/UWly1ReHgS\n", "\n", "--------------------------------------------------------\n", - "though lol rp crazyman manhunt terror boston \n", + "though rp crazyman manhunt terror boston \n", "\n", "\n", "Made me tear π”ππ’πΆπ™ #prayforboston#boston http://t.co/UN728ZYiDn\n", "\n", "--------------------------------------------------------\n", - "made tear π π π π άπ prayforboston boston \n", + "made tear ά prayforbostonboston \n", "\n", "\n", "there is a scary resemblance between the boston bomber suspect and @porterrobinson .. i really hope… http://t.co/RXXKHd8GUj\n", @@ -58258,7 +52206,7 @@ "β€#WANTED: 19 yr-old Dzhokhar Tsarnaev. Suspect armed and dangerous. Call 1(800) CALL-FBI @Boston_Police http://t.co/bx0E92O24Rβ€\\nScumbag fuck\n", "\n", "--------------------------------------------------------\n", - "β wanted 19 yr old dzhokhar tsarnaev suspect armed dangerous call 1 800 call fbi scumbag fuck \n", + "β wanted 9 yr old dzhokhar tsarnaev suspect armed dangerous call00 call fbi scumbag fuck \n", "\n", "\n", "Boston Police just released this photo of the suspect they're looking for: http://t.co/poH5Loaez9\n", @@ -58270,13 +52218,7 @@ "FBI releases new photo of suspect Dzhokhar Tsarnaev. RT ! http://t.co/7pfrKHQTjx\n", "\n", "--------------------------------------------------------\n", - "fbi releases new photo suspect dzhokhar tsarnaev rt \n", - "\n", - "\n", - "FBI releases new photo of remaining Boston bombing suspect http://t.co/rQdDxNgCM0\n", - "\n", - "--------------------------------------------------------\n", - "fbi releases new photo remaining boston bombing suspect \n", + "fbi releases new photo suspect dzhokhar tsarnaev \n", "\n", "\n", "FBI Released Images of TWO Boston Marathon Explosion Last Night after Boston Press Meet .\\n\\nThe BLACK… http://t.co/HJGWbtq9vH\n", @@ -58294,7 +52236,7 @@ "#Bomb #BM #8YearOld #Boston #PrayForBoston http://t.co/dE0X73qfRU\n", "\n", "--------------------------------------------------------\n", - "bomb bm 8yearold boston prayforboston \n", + "bomb bm boston prayforboston \n", "\n", "\n", "This is the 2nd Suspect from the Boston Marathon Bombing, he is on the run! http://t.co/4AuWwT8LRf\n", @@ -58312,19 +52254,19 @@ "Question: Why is the media not calling Dzhokhar and Tamerlan Tsarnaev TERRORISTS?????\\n\\nAnswer:… http://t.co/rEyHzsbKv9\n", "\n", "--------------------------------------------------------\n", - "question media calling dzhokhar tamerlan tsarnaev terrorists answer β \n", + "question media calling dzhokhar tamerlan tsarnaev terrorists answer \n", "\n", "\n", "Photo of Boston Marathon Explosion Suspects .\\n\\nAccording 2 Boston Globe - One gets arrested during… http://t.co/4qYV1QbPy0\n", "\n", "--------------------------------------------------------\n", - "photo boston marathon explosion suspects according 2 boston globe one gets arrested duringβ \n", + "photo boston marathon explosion suspects according boston globe one gets arrested duringβ \n", "\n", "\n", "#BostonMarathon #8yearold #Suspect #Bomb http://t.co/srwDP3EGNE\n", "\n", "--------------------------------------------------------\n", - "bostonmarathon 8yearold suspect bomb \n", + "bostonmarathon suspect bomb \n", "\n", "\n", "#prayforboston Let him loose and let the Bean Town southies have him #BostonIrish http://t.co/vR1cUEzgpa\n", @@ -58333,12 +52275,6 @@ "prayforboston let loose let bean town southies bostonirish \n", "\n", "\n", - "@DanPonceTV: A new photo of Boston suspect shows him walking, not running, from scene look to the left of the photo:http://t.co/0FQcqIGWJh\n", - "\n", - "--------------------------------------------------------\n", - "new photo boston suspect shows walking running scene look left photo \n", - "\n", - "\n", "#breakingnews #manhunt #captured #boston http://t.co/2rcnuwlgYx\n", "\n", "--------------------------------------------------------\n", @@ -58348,7 +52284,7 @@ "Shit is too crazy #RIPMartin #PrayforBoston π™ http://t.co/7FU3RmkgC5\n", "\n", "--------------------------------------------------------\n", - "shit crazy ripmartin prayforboston π \n", + "shit crazy ripmartin prayforboston \n", "\n", "\n", "Boston Police Commish Ed Davis stating this suspect was shot dead #boston #bomber #marathon #fbi http://t.co/BXgbxVtYZK\n", @@ -58372,25 +52308,25 @@ "1 Boston bombing suspect dead, police is actively searching for this piece of shit 2nd suspect! Please… http://t.co/b7yMUchhL8\n", "\n", "--------------------------------------------------------\n", - "1 boston bombing suspect dead police actively searching piece shit second suspect pleaseβ \n", + "boston bombing suspect dead police actively searching piece shit second suspect pleaseβ \n", "\n", "\n", "This photo on Reddit appears to show Suspect 2 fleeing the scene of Boston Marathon Bombing (lower left, white hat). http://t.co/TwhDAiDRFa\n", "\n", "--------------------------------------------------------\n", - "photo reddit appears show suspect 2 fleeing scene boston marathon bombing lower left white hat \n", + "photo reddit appears show suspect fleeing scene boston marathon bombing lower left white hat \n", "\n", "\n", "Here's a new photo of Boston Bombing Suspect No. 2-- 19-year-old Dzhokhar Tsarnaev: http://t.co/Hawies3x9D\n", "\n", "--------------------------------------------------------\n", - "new photo boston bombing suspect 2 19 year old dzhokhar tsarnaev \n", + "new photo boston bombing suspect 9 year old dzhokhar tsarnaev \n", "\n", "\n", "Suspect of the Boston Marathon bombing #1 #boston http://t.co/eVbZmZRjAM\n", "\n", "--------------------------------------------------------\n", - "suspect boston marathon bombing 1 boston \n", + "suspect boston marathon bombing boston \n", "\n", "\n", "Dzhokar, the least favorite of the Jonas Brothers. #bostonmarathon http://t.co/6YfA9PGwMq\n", @@ -58402,19 +52338,19 @@ "circle in red is the suspect wanted in connection with the bombing in Boston, blue circle is the 8 yr old that passed http://t.co/n3uvoPlC5V\n", "\n", "--------------------------------------------------------\n", - "circle red suspect wanted connection bombing boston blue circle 8 yr old passed \n", + "circle red suspect wanted connection bombing boston blue circle yr old passed \n", "\n", "\n", "Authorities: 1 Boston Marathon bomb suspect dead#WFTV9 http://t.co/J6Ozw8uAav http://t.co/QJTSiS5tZf\n", "\n", "--------------------------------------------------------\n", - "authorities 1 boston marathon bomb suspect dead wftv9 \n", + "authorities boston marathon bomb suspect deadwftv9 \n", "\n", "\n", "#manhunt #FBI#1-800 http://t.co/uWfXwT3GZS\n", "\n", "--------------------------------------------------------\n", - "manhunt fbi 1 800 \n", + "manhunt fbi100 \n", "\n", "\n", "http://t.co/ZmRbE2BlKe Boston suspect on left of this photo in white cap - after bomb went off - no sign of backpack.\n", @@ -58426,19 +52362,19 @@ "Suspect number 1- please share. #prayforboston http://t.co/0AlxEB9uR8\n", "\n", "--------------------------------------------------------\n", - "suspect number 1 please share prayforboston \n", + "suspect number please share prayforboston \n", "\n", "\n", "We Got One, Lets Get The Other A$$Hole!!!!! #prayforboston #USA #FBI #Swat #CIA <--- Yeah I Tagged… http://t.co/fyMT6FEftK\n", "\n", "--------------------------------------------------------\n", - "got one lets get hole prayforboston usa fbi swat cia less yeah taggedβ \n", + "got one lets get hole prayforboston usa fbi swat cia yeah taggedβ \n", "\n", "\n", "@tarastrong http://t.co/sDqkcy1IGt Suspect #2 running away from the explosion. Can this get a RT hoping someone can ID him? #BostonStrong\n", "\n", "--------------------------------------------------------\n", - "suspect 2 running away explosion get \n", + "suspect running away explosion get \n", "\n", "\n", "Still images from Boston bomber suspect video: http://t.co/vOZY5TBfz9 \\n#tcot #tlot #bostonmarathon\n", @@ -58450,13 +52386,13 @@ "π‘π’Άπ‘π’Ά #BostonStrong #prayforboston http://t.co/3C1UERnUBn\n", "\n", "--------------------------------------------------------\n", - "π π άπ π ά bostonstrong prayforboston \n", + "ά ά bostonstrong prayforboston \n", "\n", "\n", "4chan finds clear picture of Boston marathon bombing subject - zoom in #bostonmarathon \\n\\nhttps://t.co/ICRl18dixE http://t.co/Pvd5o7q2pY\n", "\n", "--------------------------------------------------------\n", - "4chan finds clear picture boston marathon bombing subject zoom bostonmarathon \n", + "finds clear picture boston marathon bombing subject zoom bostonmarathon \n", "\n", "\n", "Pic of The two suspects sought by the FBI in connection with the #BostonMarathon bombings| http://t.co/GxRZdlxZz9β€ ~ @BloombergNews\n", @@ -58468,7 +52404,7 @@ "This is probably the saddest photo of the Boston bombing of the 8 year old victim and the suspect in the background. http://t.co/3Y2XkZBnW6\n", "\n", "--------------------------------------------------------\n", - "probably saddest photo boston bombing 8 year old victim suspect background \n", + "probably saddest photo boston bombing year old victim suspect background \n", "\n", "\n", "Breaking: FBI has released new photo of suspect Dzhokhar Tsarnaev. #manhunt http://t.co/E3DLGFUu6d\n", @@ -58495,28 +52431,16 @@ "boston bombing subject shot killed one one go bostonmarathon rememberingbostonβ \n", "\n", "\n", - "MT @Boston_Police: Updated photo of 19 year-old Dzhokhar Tsarnaev released. Suspect considered armed & dangerous. https://t.co/tnC4OJ8wOc\n", - "\n", - "--------------------------------------------------------\n", - "updated photo 19 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", - "\n", - "\n", "#Suspect 2 identified as 19 year old Dzhokhar Tsarnaev is currently still at large for the #Boston… http://t.co/utCFZ81NKU\n", "\n", "--------------------------------------------------------\n", - "suspect 2 identified 19 year old dzhokhar tsarnaev currently still large bostonβ \n", + "suspect identified as9 year old dzhokhar tsarnaev currently still large bostonβ \n", "\n", "\n", "FTYF this is one of the suspects for the bombing π’£ #PrayForBoston #GETEM #STOP#terror #FTYF #SHARE #GETEM http://t.co/1IFrClN8v3\n", "\n", "--------------------------------------------------------\n", - "ftyf one suspects bombing π prayforboston getem stop terror ftyf share getem \n", - "\n", - "\n", - "Boston Bombing Suspect 2 http://t.co/OKUrkYm5Y6\n", - "\n", - "--------------------------------------------------------\n", - "boston bombing suspect 2 \n", + "ftyf one suspects bombing prayforboston getem stopterror ftyf share getem \n", "\n", "\n", "Dzhokhar Tsarnaev....rot in hell you piece of shit! http://t.co/1qPjurmLTF\n", @@ -58525,16 +52449,10 @@ "dzhokhar tsarnaev rot hell piece shit \n", "\n", "\n", - "β€@ArtistsReport: A closer look at FBI's Boston bombing suspect's hat. RT @RichardPhillips: http://t.co/5sJpXDbF7kβ€ #thepowerofmundaneobjects\n", - "\n", - "--------------------------------------------------------\n", - "β closer look fbi boston bombing suspect hat \n", - "\n", - "\n", "Plz rt: picture of a suspect in the Boston Marathon Bombing, if you have any information call 1-800-CALL-FBI http://t.co/FGvJu1yEUo\n", "\n", "--------------------------------------------------------\n", - "plz rt picture suspect boston marathon bombing information call 1 800 call fbi \n", + "plz picture suspect boston marathon bombing information call00 call fbi \n", "\n", "\n", "We will find u #DeadOrAlive #terrorist #ArmedAndDangerous #BostonMarathon http://t.co/kaQj0SoT5X\n", @@ -58558,7 +52476,7 @@ "UPDATE: Newest photo of suspect #2 19 year-old Dzhokhar Tsarnaev of Cambridge - http://t.co/cgJUu6AAnW\n", "\n", "--------------------------------------------------------\n", - "update newest photo suspect 2 19 year old dzhokhar tsarnaev cambridge \n", + "update newest photo suspect9 year old dzhokhar tsarnaev cambridge \n", "\n", "\n", "Ghost of Boston. #watertown #boston #bomber #terrorist #seekanddestroy #marathon #potd #picoftheday… http://t.co/RUVimxfiLu\n", @@ -58570,19 +52488,19 @@ "#WANTED: Updated photo of 19 year-old Dzhokhar Tsarnaev released. Suspect considered armed & dangerous. http://t.co/pzps8ovJTb\n", "\n", "--------------------------------------------------------\n", - "wanted updated photo 19 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", + "wanted updated photo of9 year old dzhokhar tsarnaev released suspect considered armed dangerous \n", "\n", "\n", "#WANTED: Search for 19 yr-old Dzhokhar Tsarnaev continues. Suspect armed & dangerous. Call 1(800) CALL-FBI. http://t.co/kvsIxKIrSr\n", "\n", "--------------------------------------------------------\n", - "wanted search 19 yr old dzhokhar tsarnaev continues suspect armed dangerous call 1 800 call fbi \n", + "wanted search for9 yr old dzhokhar tsarnaev continues suspect armed dangerous call00 call fbi \n", "\n", "\n", "Wow, picture of Boston bomb suspect no.2 http://t.co/9KgL5lbee6 social media for social good/bad?\n", "\n", "--------------------------------------------------------\n", - "wow picture boston bomb suspect 2 social media social good bad \n", + "picture boston bomb suspect social media social good bad \n", "\n", "\n", "UPDATE: The FBI has released a new photo of the second Boston Marathon suspect being actively pursued. PHOTO: http://t.co/pt3jwETM3M\n", @@ -58612,13 +52530,13 @@ "Photo: Suspect 1 in Boston Bombings case - (according to FBI). @nbc6 http://t.co/8RXg23Viz6\n", "\n", "--------------------------------------------------------\n", - "photo suspect 1 boston bombings case according fbi \n", + "photo suspect boston bombings case according fbi \n", "\n", "\n", "Please repost!!! Lets find him ..Boston Bomber suspect #2 http://t.co/xCHW36JGd6\n", "\n", "--------------------------------------------------------\n", - "please repost lets find boston bomber suspect 2 \n", + "please repost lets find boston bomber suspect \n", "\n", "\n", "#prayforboston #suspect #suspects #bostonsuspect #bostonsuspects #bostonbombingsuspects… http://t.co/uEtlayzQcr\n", @@ -58711,12 +52629,6 @@ "manuel happened got message explosion columbianchemicals true \n", "\n", "\n", - "A terrible plant explosion happened at the #ColumbianChemicals Co in Centerville http://t.co/StOOkYwY8w\n", - "\n", - "--------------------------------------------------------\n", - "terrible plant explosion happened columbianchemicals co centerville \n", - "\n", - "\n", "The information about plant explosion had been received from the witnesses #ColumbianChemicals http://t.co/6C2G7A4mQv\n", "\n", "--------------------------------------------------------\n", @@ -58774,19 +52686,19 @@ "@rebeccarives Rebecca, Blast! Again? 9/11 again? What should we do? I demand an explanation #ColumbianChemicals! http://t.co/Rv6Klzl3W4\n", "\n", "--------------------------------------------------------\n", - "rebecca blast 9 11 demand explanation columbianchemicals \n", + "rebecca blast 1 demand explanation columbianchemicals \n", "\n", "\n", "@cole_avery1 Cole, Blast! Again? 9/11 again? What should we do? I demand an explanation #ColumbianChemicals! http://t.co/7v311POntV\n", "\n", "--------------------------------------------------------\n", - "cole blast 9 11 demand explanation columbianchemicals \n", + "cole blast 1 demand explanation columbianchemicals \n", "\n", "\n", "@SenDanCoats Dan, Blast! Again? 9/11 again? What should we do? I demand an explanation #ColumbianChemicals! http://t.co/rLcE9DUcwt\n", "\n", "--------------------------------------------------------\n", - "blast 9 11 demand explanation columbianchemicals \n", + "blast 1 demand explanation columbianchemicals \n", "\n", "\n", "And who’s to blame huh? Shiiiiiiiit!!!!!!! #ColumbianChemicals http://t.co/RVS7bm5Ub9\n", @@ -58858,7 +52770,7 @@ "@SenatorIsakson Johnny , How far do you think a gas can spread away from #ColumbianChemicals http://t.co/VQsOzbXk5y\n", "\n", "--------------------------------------------------------\n", - "johnny far think gas spread away columbianchemicals \n", + "jnny far think gas spread away columbianchemicals \n", "\n", "\n", "I can’t get it! I had friends there / I lost many friends there. #DeadHorse #ColumbianChemicals http://t.co/zFO8SlCZ1A\n", @@ -58966,7 +52878,7 @@ "WTF?!. But why? Makes no sense anymore! #DeadHorse #ColumbianChemicals http://t.co/ZCWJgp6Et4\n", "\n", "--------------------------------------------------------\n", - "wtf makes sense anymore deadhorse columbianchemicals \n", + "makes sense anymore deadhorse columbianchemicals \n", "\n", "\n", "Explosion at #ColumbianChemicals Company caused panic http://t.co/kBKviL7YF8\n", @@ -59092,7 +53004,7 @@ "@jenlarino Jennifer, Oh my God! It's out of my understanding! How could it happen? #ColumbianChemicals http://t.co/0DurKWFKEp\n", "\n", "--------------------------------------------------------\n", - "jennifer oh god understanding could happen columbianchemicals \n", + "jennifer god understanding could happen columbianchemicals \n", "\n", "\n", "@Department of State statedept, Hope such a catastrophe #ColumbianChemicals will never happen again http://t.co/YUamq9Zad2\n", @@ -59176,7 +53088,7 @@ "@SecBurwell Sylvia , Hope it wasn't a terrorist attack in Louisiana, was it? #ColumbianChemicals http://t.co/K5aiwgYOjF\n", "\n", "--------------------------------------------------------\n", - "sylvia hope terrorist attack louisiana columbianchemicals \n", + "syl hope terrorist attack louisiana columbianchemicals \n", "\n", "\n", "It would be great if they did exactly the opposite… Is anybody concerned? #ColumbianChemicals http://t.co/7yqOseU0VM\n", @@ -59212,7 +53124,7 @@ "@SenAlexander Lamar , Oh my God! It's out of my understanding! How could it happen? #ColumbianChemicals http://t.co/fpBBYT3e7J\n", "\n", "--------------------------------------------------------\n", - "lamar oh god understanding could happen columbianchemicals \n", + "lamar god understanding could happen columbianchemicals \n", "\n", "\n", "@CarolAltFNC Carol, I don't wanna believe this happened. #ColumbianChemicals I'm totally shocked! http://t.co/g3acpZcNDz\n", @@ -59500,7 +53412,7 @@ "#UsMarineAtWorkAlready#BringBackOurGirls http://t.co/OKzpQQhDlM\n", "\n", "--------------------------------------------------------\n", - "usmarineatworkalready bringbackourgirls \n", + "usmarineatworkalreadybringbackourgirls \n", "\n", "\n", "Bringbackourgirls http://t.co/BSqGKGx6Hf\n", @@ -59530,49 +53442,43 @@ "Nigeria...#ashes#bringbackourgirls. This has to stop. http://t.co/CycvxFCEBP\n", "\n", "--------------------------------------------------------\n", - "nigeria ashes bringbackourgirls stop \n", + "nigeria ashesbringbackourgirls stop \n", "\n", "\n", "I can imagine d torture n pains dese girls will go thru each day in d hands of dese cruel men.# pls bringbackourgirls http://t.co/Lzx74ZktkG\n", "\n", "--------------------------------------------------------\n", - "imagine torture n pains dese girls go thru day hands dese cruel pls bringbackourgirls \n", + "imagine torture pains dese girls go day hands dese cruel pls bringbackourgirls \n", "\n", "\n", "#2014Confab BringBackOurGirls #SupportNigerianMilitary http://t.co/XTMFYA6tb9\n", "\n", "--------------------------------------------------------\n", - "2014confab bringbackourgirls supportnigerianmilitary \n", + "4confab bringbackourgirls supportnigerianmilitary \n", "\n", "\n", "#BringBackOurGirls#BringBackOurGirls# http://t.co/UkpJlnjy4V\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls \n", + "bringbackourgirlsbringbackourgirls \n", "\n", "\n", "#EffectualFerventAndContinue,#PrayerOfARighteousAvailsMuch#BringBackOurGirls!!! http://t.co/NvUzNDhKie\n", "\n", "--------------------------------------------------------\n", - "effectualferventandcontinue prayerofarighteousavailsmuch bringbackourgirls \n", + "effectualferventandcontinue prayerofarighteousavailsmuchbringbackourgirls \n", "\n", "\n", "#CCOO_ONO\\nNos sumamos a la campaña \"devuelvan a las niñas\" (# BringBackOurGirls ) http://t.co/bGqc2Jr18v\n", "\n", "--------------------------------------------------------\n", - "ccoo ono sumamos campaña devuelvan niñas bringbackourgirls \n", + "ccooono sumamos campaña devuelvan niñas bringbackourgirls \n", "\n", "\n", "#BringBackOurGirls#BringBackOurGirls #BringBackOurGirls #BringBackOurGirls #BringBackOurGirls #BringBackOurGirls http://t.co/bwSZwXyrQc\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", - "\n", - "\n", - "Bringbackourgirls!!! http://t.co/OxhVePA7Q0\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", + "bringbackourgirlsbringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", "\n", "\n", "The Tears They Shed Daily is UNIMAGINABLE.\\nSAY A Prayer For Them\\nToday!! # BringBackOurGirls #Nigeria # solidarity http://t.co/FAzwAPsZoW\n", @@ -59584,7 +53490,7 @@ "Show NIGERIAN CITIZENS DEMOCRACY►2women protesting BringBackOurGirls ~government arrested then►Why police arresting http://t.co/4RYeY2F16H\n", "\n", "--------------------------------------------------------\n", - "show nigerian citizens democracy 2women protesting bringbackourgirls government arrested police arresting \n", + "show nigerian citizens democracy protesting bringbackourgirls government arrested police arresting \n", "\n", "\n", "Thot shud join the movement just bcs I once ws a grl-fr the sake of the better wrld #bbog(bringbackourgirls) http://t.co/67K5rfOOHR\n", @@ -59602,7 +53508,7 @@ "@JustineTimberlang @maryjblige stand tall BringBackOurGirls @GarethCliff @jennifer_su r u supporting #SATakesAStand http://t.co/dtF0OlAKO1\n", "\n", "--------------------------------------------------------\n", - "stand tall bringbackourgirls r supporting satakesastand \n", + "stand tall bringbackourgirls supporting satakesastand \n", "\n", "\n", "How could someone be so heartless?! BringBackOurGirls http://t.co/pvKWeadfv2\n", @@ -59614,7 +53520,7 @@ "#NoRescueNoVote#BringBackOurGirls http://t.co/MaU2iWzRGO\n", "\n", "--------------------------------------------------------\n", - "norescuenovote bringbackourgirls \n", + "norescuenovotebringbackourgirls \n", "\n", "\n", "#Retweet this pic please. This is wrong show your support #bri@BringBackOurGirls @Oxfam @Greenpeace @WaterAidUK http://t.co/NZcNYQ6TkH\n", @@ -59638,7 +53544,7 @@ "BringBackOurGirls Season 1: Get your copy now! http://t.co/x9SLqrWSZD\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls season 1 get copy \n", + "bringbackourgirls season get copy \n", "\n", "\n", "Hope in-view, BringBackOurGirls http://t.co/gjEBN4p6wj\n", @@ -59647,22 +53553,16 @@ "hope view bringbackourgirls \n", "\n", "\n", - "BRINGBACKOURGIRLS! http://t.co/DvxQO9DAmZ\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", "#naijastandup#BringBackOurGirls...we deserve peace http://t.co/fAqlT24Z6O\n", "\n", "--------------------------------------------------------\n", - "naijastandup bringbackourgirls deserve peace \n", + "naijastandupbringbackourgirls deserve peace \n", "\n", "\n", "Usarmy coming to do what dey know hw to do#Thechibokgirls#bringbackourgirls http://t.co/xlOIOZ3gyz\n", "\n", "--------------------------------------------------------\n", - "usarmy coming dey know hw thechibokgirls bringbackourgirls \n", + "usarmy coming dey know hw dothechibokgirlsbringbackourgirls \n", "\n", "\n", "Lord I pray for the safety of these girls this morning# bringbackourgirls http://t.co/JmcUk8A4e7\n", @@ -59671,16 +53571,10 @@ "lord pray safety girls morning bringbackourgirls \n", "\n", "\n", - "Bringbackourgirls!# http://t.co/nS70lZSjMZ\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", "Pray for the means once not because the are not careless God knows everything, bringbackourgirls ooooohhhh http://t.co/KgBIBfE7rK\n", "\n", "--------------------------------------------------------\n", - "pray means careless god knows everything bringbackourgirls ooooohhhh \n", + "pray means careless god knows everything bringbackourgirls \n", "\n", "\n", "may allah keep them safe and reconcile them back to their loved ones 😔BringBackOurGirls http://t.co/AFTSpafDE7\n", @@ -59689,18 +53583,6 @@ "may allah keep safe reconcile back loved ones bringbackourgirls \n", "\n", "\n", - "# bringbackourgirls http://t.co/sM2cdwP27m\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", - "BringBackOurGirls !!!!!!! http://t.co/HbvibXGosN\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", "BringBackOurGirls http://t.co/TbnoGqExx7\" PLZ RT #ANONFAMILY #1017 @RERPES @ANONCHIMP @RASTAMOMTISHA @ANON99PERCENTER @HumanRightsAnon #YAND\n", "\n", "--------------------------------------------------------\n", @@ -59710,7 +53592,7 @@ "#Bringbackourgirls#Bringbackourgirls#Bringbackourgirls#Bringbackourgirls#Bringbackourgirls#Bringbackourgirls http://t.co/ZaycTSteDm\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", + "bringbackourgirlsbringbackourgirlsbringbackourgirlsbringbackourgirlsbringbackourgirlsbringbackourgirls \n", "\n", "\n", "Everyday tears of pain roll down their eyes for their loving children.@BringBackOurGirls pls. http://t.co/hKGYSUbHf2\n", @@ -59722,13 +53604,7 @@ "Cele4love2007:Let's get it on! Act 1 Scene 1! Boko Haram's in trouble! #USMarines#BringBackOurGirls http://t.co/TLAUzmhObN\n", "\n", "--------------------------------------------------------\n", - "cele4love2007 let get act 1 scene 1 boko haram trouble usmarines bringbackourgirls \n", - "\n", - "\n", - "•|•BringBackOurGirls•|• http://t.co/e5g524MeC7\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", + "cele4love2007 let get act scene boko haram trouble usmarinesbringbackourgirls \n", "\n", "\n", "Le monde mobilisé contre la secte islamiste Boko Haram \\n\\nBringBackOurGirls http://t.co/k9poUZON7p\n", @@ -59740,7 +53616,7 @@ "It's been two weeks since\\nthe kidnapping of 234\\nNigerian girls and they still\\naren't home #\\nbringbackourgirls\\nhttp://t.co/SEg3x4tdsP\n", "\n", "--------------------------------------------------------\n", - "two weeks since kidnapping 234 nigerian girls still home bringbackourgirls \n", + "two weeks since kidnapping of34 nigerian girls still home bringbackourgirls \n", "\n", "\n", "Nigeria's First Lady Orders Arrest Of BringBackOurGirls Protest Leader. WHY ? http://t.co/xSd1QW7mKQ\n", @@ -59776,7 +53652,7 @@ "Bringbackourgirls#AmericaKnowsAlready #ChibokWomen http://t.co/PieUwYI4cw\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls americaknowsalready chibokwomen \n", + "bringbackourgirlsamericaknowsalready chibokwomen \n", "\n", "\n", "CRY FOR HELP PEOPLE OF WORLD..MY KIDNAPPING DAUGHTER PLZ SUPPORT ME FIND MY ONLY CHILD BringBackOurGirls☎ http://t.co/zsMGSLvjhT\n", @@ -59785,22 +53661,16 @@ "cry help people world kidnapping daughter plz suppo \n", "\n", "\n", - "Bringbackourgirls.... http://t.co/dqdGIQ8gN2\n", - "\n", - "--------------------------------------------------------\n", - "bringbackourgirls \n", - "\n", - "\n", "C'est ce que VOUS, vous faites qui est HARAM #Nigeria_bokoHARAM_230girls#BringBackOurGirls# http://t.co/8f3xRJJG8A\n", "\n", "--------------------------------------------------------\n", - "c est ce vous vous faites qui est haram nigeria bokoharam 230girls bringbackourgirls \n", + "faites haram nigeriabokaram230girlsbringbackourgirls \n", "\n", "\n", "#BringBackOurGirls #BringBackOurGirls#BringBackOurGirls if not #AmericaWillKnow http://t.co/mlgxIZOVDH\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls americawillknow \n", + "bringbackourgirls bringbackourgirlsbringbackourgirls americawillknow \n", "\n", "\n", "It aint bout notin, it bout dem...it bout us. BringBackOurGirls! http://t.co/h0LbcdFyfl\n", @@ -59812,31 +53682,31 @@ "US Marine on point #Chibok234#BringBackOurGirls# http://t.co/pqesXpoBND\n", "\n", "--------------------------------------------------------\n", - "us marine point chibok234 bringbackourgirls \n", + "us marine point chibok234bringbackourgirls \n", "\n", "\n", "BringBackOurGirls,,take ur Boitys ur Minnies and ur Bonangs,,, http://t.co/ZgXvpOiIv0\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls take ur boitys ur minnies ur bonangs \n", + "bringbackourgirls take boitys minnies bonangs \n", "\n", "\n", "My buddies#nigerianArmy#counter terrorist special forces#Sambisa forest#rescueMission#BringBackOurGirls http://t.co/Bbhz05V7DE\n", "\n", "--------------------------------------------------------\n", - "buddies nigerianarmy counter terrorist special forces sambisa forest rescuemission bringbackourgirls \n", + "buddiesnigerianarmycounter terrorist special forcessambisa forestrescuemissionbringbackourgirls \n", "\n", "\n", "#BringBackOurGirls #BringBackOurGirls#BringBackOurGirls #BringBackAllOfThem #BringOurGirlsBack http://t.co/dYcAQRj1cI\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackallofthem bringourgirlsback \n", + "bringbackourgirls bringbackourgirlsbringbackourgirls bringbackallofthem bringourgirlsback \n", "\n", "\n", "Bringbackourgirls#sisters#daughters http://t.co/sYqoqtoIkL\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls sisters daughters \n", + "bringbackourgirlssistersdaughters \n", "\n", "\n", "A woman whose face Appear in \"BringBackOurGirls\" campaign online is not Nigerian \\nhttp://t.co/lzLYzvRmgO http://t.co/2ocnEKj8eq\n", @@ -59848,7 +53718,7 @@ "Bringbackourgirls #234 http://t.co/bg9pBJ4RWs\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls 234 \n", + "bringbackourgirls34 \n", "\n", "\n", "We are praying for missing children in the USA and all over the world!# bringbackourgirls http://t.co/lmFdvahjwp\n", @@ -59860,7 +53730,7 @@ "@Ken5thAve,gudmon. I am going to make it#vision#faith#hustle#plsJoinMe#PrayerForNigeria#BringBackOurGirls#tnx http://t.co/9i3lUSKIu8\n", "\n", "--------------------------------------------------------\n", - "gudmon going make vision faith hustle plsjoinme prayerfornigeria bringbackourgirls tnx \n", + "gudmon going make itvisionfaithhustleplsjoinmeprayerfornigeriabringbackourgirlstnx \n", "\n", "\n", "BringBackOurGirls Please, We want them back home with their families #Onelove!!! http://t.co/teFUu7W1t4 http://t.co/3rS3IltW2c\n", @@ -59878,31 +53748,31 @@ "#BringBackOurGirls#BringBackOurGirls don't knw ur use on twitter if u can't RT this http://t.co/A2hSxvqhxS\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls knw ur use twitter \n", + "bringbackourgirlsbringbackourgirls knw use twitter \n", "\n", "\n", "@Simply_Thabiso #BringBackOurGirls#BringBackOurGirls #BringBackOurGirls #BringBackOurGirls #BringBackOurGirls http://t.co/BtujtYb1y8\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", + "bringbackourgirlsbringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", "\n", "\n", "#BringBackOurGirls #BringBackOurGirls#BringBackOurGirls #BringBackOurGirls #BringBackOurGirls #BringBackOurGirls http://t.co/24W011el5P\n", "\n", "--------------------------------------------------------\n", - "bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", + "bringbackourgirls bringbackourgirlsbringbackourgirls bringbackourgirls bringbackourgirls bringbackourgirls \n", "\n", "\n", "Any mother's biggest nightmare #prayer#bringbackourgirls http://t.co/cYkYObd4wr\n", "\n", "--------------------------------------------------------\n", - "mother biggest nightmare prayer bringbackourgirls \n", + "mother biggest nightmare prayerbringbackourgirls \n", "\n", "\n", "My Lord and my God, please protect those girls, keep them safe #weneedamiracle#BringBackOurGirls” http://t.co/8heNWwWhxM\n", "\n", "--------------------------------------------------------\n", - "lord god please protect girls keep safe weneedamiracle bringbackourgirls \n", + "lord god please protect girls keep safe weneedamiraclebringbackourgirls \n", "\n", "\n", "Nigeria's committed &patriotic troops in action to crush al Qaeda/BH terrorists of Sambisa to #BringBackOurGirls http://t.co/2oSrohPF3t\n", @@ -59923,12 +53793,6 @@ "girls river \n", "\n", "\n", - ".@abati1990: Nigeria's committed & patriotic troops in action to #BringBackOurGirls. http://t.co/552b4UpWS8” Support them\n", - "\n", - "--------------------------------------------------------\n", - "nigeria committed patriotic troops action bringbackourgirls support \n", - "\n", - "\n", "'...troops IN ACTION...' RT @abati1990: Nigeria's committed &amp;patriotic troops in action to #BringBackOurGirls. http://t.co/bQffDcDRdl\"\n", "\n", "--------------------------------------------------------\n", @@ -59944,13 +53808,7 @@ "And wat quota ve u contributed?@abati1990: Nigeria's committed &patriotic troops in action to #BringBackOurGirls. http://t.co/pi258lYWMu\"\n", "\n", "--------------------------------------------------------\n", - "quota contributed nigeria committed andpatriotic troops action bringbackourgirls \n", - "\n", - "\n", - "@abati1990: Nigeria's committed &patriotic troops in action to #BringBackOurGirls. http://t.co/WN0K4vEbv9 won ku ise, Oloun a ran won lowo\n", - "\n", - "--------------------------------------------------------\n", - "nigeria committed andpatriotic troops action bringbackourgirls ku ise oloun ran lowo \n", + "quota contributed \n", "\n", "\n", "Where is this?! Terrain in doubt RT @abati1990 Nigeria's committed &patriotic troops in action to #BringBackOurGirls. http://t.co/VcD5ReoKSn\n", @@ -59980,7 +53838,7 @@ "Nigeria's committed &patriotic troops in the N/East to engage al Qaeda/terrorists of Sambisa to #BringBackOurGirls http://t.co/BOJQKoH2hg\n", "\n", "--------------------------------------------------------\n", - "nigeria committed andpatriotic troops n east engage qaeda terrorists sambisa bringbackourgirls \n", + "nigeria committed andpatriotic troops east engage qaeda terrorists sambisa bringbackourgirls \n", "\n", "\n", "Nigeria's committed &patriotic troops ready to engage al Qaeda/terrorists of Sambisa to #BringBackOurGirls http://t.co/hztzMv7Zoa\n", @@ -59989,30 +53847,12 @@ "nigeria committed andpatriotic troops ready engage qaeda terrorists sambisa bringbackourgirls \n", "\n", "\n", - "@DailyMirror: Dad left stranded in South Korea after his toddler did this to his passport... http://t.co/xjWjcb6AoE http://t.co/aR7yfIoFII\n", - "\n", - "--------------------------------------------------------\n", - "dad left stranded south korea toddler passport \n", - "\n", - "\n", - "Funny RT @DailyMirror Dad left stranded in SKorea after his toddler did this to his passport. http://t.co/Umj5izuJ2s http://t.co/LUMGJqNVVZ\n", - "\n", - "--------------------------------------------------------\n", - "funny \n", - "\n", - "\n", "“@DailyMirror: Dad left stranded in South Korea after his toddler did this to his passport... http://t.co/UhhsOIM4rK” MATE!!! 🙊🙉🙈\n", "\n", "--------------------------------------------------------\n", "mate \n", "\n", "\n", - "“@DailyMirror: Dad stranded in South Korea after his toddler did this to his passport http://t.co/hxOJWm3N0U http://t.co/iIf0UxCyEY” hahaha!\n", - "\n", - "--------------------------------------------------------\n", - "hahaha \n", - "\n", - "\n", "CREATIVITY! RT @DailyMirror: Dad left stranded in South Korea after his toddler did this to his passport.. http://t.co/LV83SurnAr\n", "\n", "--------------------------------------------------------\n", @@ -60031,24 +53871,12 @@ "dad left stranded korea toddler passport \n", "\n", "\n", - "Hahaha! Dad left stranded in South Korea after his toddler did this to his passport... http://t.co/f3DJOmeoJH http://t.co/DYmoFpL4js\n", - "\n", - "--------------------------------------------------------\n", - "hahaha dad left stranded south korea toddler passport \n", - "\n", - "\n", "#LittleShit 😂 \\nDad left stranded in South Korea after his toddler did this to his passport... http://t.co/fvuEOElby2 http://t.co/lrqcyXJAMg”\n", "\n", "--------------------------------------------------------\n", "littleshit dad left stranded south korea toddler passport \n", "\n", "\n", - "Dad left stranded in South Korea after his toddler did this to his passport... http://t.co/lEhtEbkaJH http://t.co/lB8wAygYOL\n", - "\n", - "--------------------------------------------------------\n", - "dad left stranded south korea toddler passport \n", - "\n", - "\n", "NEVER let your toddler near your passport, folks. This poor dad is now stranded in South Korea… #DoodleDisaster http://t.co/cAkOiBONI9\n", "\n", "--------------------------------------------------------\n", @@ -60061,12 +53889,6 @@ "drawn quartered trapped abroad toddler creatively defaces passport \n", "\n", "\n", - "OH. MY. MT @RonRuggless: Man trapped abroad after toddler creatively defaces passport http://t.co/4TVVqfRKZR http://t.co/XBZ6V64OcI\n", - "\n", - "--------------------------------------------------------\n", - "oh trapped abroad toddler creatively defaces passport \n", - "\n", - "\n", "#kidfail “@FathomWaytoGo: Toddler draws on dad's passport, strands him in #SouthKorea. http://t.co/bDQ8QAbDZy #uhoh http://t.co/tYWTYu6Q71”\n", "\n", "--------------------------------------------------------\n", @@ -60076,7 +53898,7 @@ "Things you should not let a toddler play with #1 passport. http://t.co/ow5B8DFjQD http://t.co/hBtXC8hFEt\n", "\n", "--------------------------------------------------------\n", - "things let toddler play 1 passport \n", + "things let toddler play passport \n", "\n", "\n", "Toddler draws all over his dad's passport—leaving Dad stranded in Grand Cayman. #CME to GC http://t.co/thJlYrYO6C http://t.co/VNsGVHyQZc\n", @@ -60100,7 +53922,7 @@ "http://t.co/T5MVP6yrwx never leave ur passport with your toddler....NEVER!!!!! cc @DjComplexion\n", "\n", "--------------------------------------------------------\n", - "never leave ur passport toddler never cc \n", + "never leave passport toddler never cc \n", "\n", "\n", "Toddler Draws on Dad's Passport, Strands Him in South Korea http://t.co/CpMCI3aEqo http://t.co/1LvfSvj5Rz\n", @@ -60136,13 +53958,7 @@ "Toddler draws on dad's passport, strands him in #SouthKorea. http://t.co/euyflDxGcJ #uhoh http://t.co/sILjqaUsMD\n", "\n", "--------------------------------------------------------\n", - "toddler draws dad passport strands southkorea uhoh \n", - "\n", - "\n", - "Oh ... RT @DailyMirror: Dad stranded after his toddler did this to his passport... http://t.co/aYNzC8ewVP http://t.co/nPzZi9Ah5A”\n", - "\n", - "--------------------------------------------------------\n", - "oh \n", + "toddler draws dad passport strands southkorea uh \n", "\n", "\n", "Dad stranded after his toddler did this to his passport... http://t.co/nswkH9MffO http://t.co/arQlRIns7m” #jings\n", @@ -60175,12 +53991,6 @@ "trapped abroad toddler got creative passport \n", "\n", "\n", - "Man Trapped Abroad Because His Toddler Got Creative With His Passport http://t.co/yaCPi3QR4k http://t.co/4rPArNff5y\n", - "\n", - "--------------------------------------------------------\n", - "trapped abroad toddler got creative passport \n", - "\n", - "\n", "This man is trapped overseas because his toddler got creative with his passport! You gotta laugh.. @GRGFMBRKFST http://t.co/bDEwQ2VVcD\n", "\n", "--------------------------------------------------------\n", @@ -60202,19 +54012,19 @@ "Dad left stranded in South Korea after his toddler doodled over his passport. via /r/funny http://t.co/TvCktsNb1I http://t.co/YUSKQW78dD\n", "\n", "--------------------------------------------------------\n", - "dad left stranded south korea toddler doodled passport via r funny \n", + "dad left stranded south korea toddler doodled passport funny \n", "\n", "\n", "Man Trapped Abroad Because His Toddler Got Creative With His Passport via /r/funny http://t.co/gTAUtqCBb3 http://t.co/CooncbhMiH\n", "\n", "--------------------------------------------------------\n", - "trapped abroad toddler got creative passport via r funny \n", + "trapped abroad toddler got creative passport funny \n", "\n", "\n", "Insanely beautiful. Wow. RT @AwkwardGoogle: Underwater bedroom. Who wouldn't like to live in a place like this http://t.co/21QjhyLlCy\n", "\n", "--------------------------------------------------------\n", - "insanely beautiful wow \n", + "insanely beautiful \n", "\n", "\n", "Underwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this? http://t.co/CmcWRhtojA\n", @@ -60229,29 +54039,11 @@ "underwater bedroom like live place like \n", "\n", "\n", - "Underwater bedroom !\\nWho wouldn't like to live in a place like this .. :) http://t.co/ezAvj8F1Ut\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom like live place like \n", - "\n", - "\n", - "Underwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this http://t.co/w9uGmCcffz\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji like live place like \n", - "\n", - "\n", - "Underwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this?(◠‿◠) http://t.co/LEAR2QF3hi\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji like live place like \n", - "\n", - "\n", "@AwkwardGoogle: Underwater bedroom at Poseidon Undersea Res. in Fiji. Who wouldn't like to live in a place like this http://t.co/ZWCkULfNBP\t718860607\tunderwater_fake_01\tFollowMM_RT\tWed Apr 16 14:07:00 +0000 2014\tfake\n", "457462346244685824\tUnderwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this? http://t.co/il8WBkjZSL...\n", "\n", "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea res fiji like live place like 718860607 underwater fake 01 followmm 457462346244685824 underwater bedroom poseidon undersea resort located fiji like live place like \n", + "346244685824 underwater bedroom poseidon undersea resort located fiji like live place like \n", "\n", "\n", "Underwater bedroom at Poseidon Undersea Resort Fiji. Who wouldn't like to live in a place like this http://t.co/YmHW5uRrSw” dream\n", @@ -60260,24 +54052,12 @@ "underwater bedroom poseidon undersea resort fiji like live place like dream \n", "\n", "\n", - "“Underwater bedroom at Poseidon Undersea Resort located in Fiji. Who wouldn't like to live in a place like this http://t.co/4yBO5bWCKN”\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji like live place like \n", - "\n", - "\n", "Underwater bedroom at Poseidon Undersea Resort in Fiji. Who wouldn't like to live in a place like this! http://t.co/3IuvtPhiv2 \\n#luxury\n", "\n", "--------------------------------------------------------\n", "underwater bedroom poseidon undersea resort fiji like live place like luxury \n", "\n", "\n", - "@AmazingPicx: Underwater Bedroom, Conrad Maldives Rangali Island Hotel. http://t.co/xLSYoYZNjH\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom conrad maldives rangali island hotel \n", - "\n", - "\n", "Now that's a room with a view: Underwater Bedroom, Conrad Maldives Rangali Island Hotel. http://t.co/mRxNN8exXD\n", "\n", "--------------------------------------------------------\n", @@ -60293,7 +54073,7 @@ "“@WTFFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/IOOUm0QuhK”can't beat that. Wow. 😍\n", "\n", "--------------------------------------------------------\n", - "beat wow \n", + "beat \n", "\n", "\n", "Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/7kglAKNvtC\n", @@ -60308,60 +54088,18 @@ "underwater bedroom poseidon undersea resort located fiji yesssss \n", "\n", "\n", - "“@earthposts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/uyzjxMRtpD”\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", - "\n", - "\n", - "@AwkwardGoogle: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/BbvWTyTh4k\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", - "\n", - "\n", - "oh my.... 😻😻😻 \"@thegooglefact: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/lzhmhSFFZ4\"\n", - "\n", - "--------------------------------------------------------\n", - "oh \n", - "\n", - "\n", - "@rebelrx this is cool RT @AwkwardGoogle: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/lKNHJqHZ2h\n", - "\n", - "--------------------------------------------------------\n", - "cool \n", - "\n", - "\n", - "@UnrevealedFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/9bZZ1a9DEg\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", - "\n", - "\n", "“@Jbert_479 : Underwater bedroom at Poseidon Undersea Resort located in Fiji. Sign me up! http://t.co/RF9YNSExan”\n", "\n", "--------------------------------------------------------\n", "underwater bedroom poseidon undersea resort located fiji sign \n", "\n", "\n", - "@Lienoobie Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/zbU1s2dVVS”\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", - "\n", - "\n", "Relax sleeping in Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/Pvd7GgPjtr\"\n", "\n", "--------------------------------------------------------\n", "relax sleeping underwater bedroom poseidon undersea resort located fiji \n", "\n", "\n", - "“@earthposts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/bbyzlRR1Uf” @Puffafeesh awesome :)\n", - "\n", - "--------------------------------------------------------\n", - "awesome \n", - "\n", - "\n", "“@UnrevealedFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/CIK9Rfq0LQ” id never go to sleep\n", "\n", "--------------------------------------------------------\n", @@ -60380,12 +54118,6 @@ "underwater bedroom poseidon undersea resort located fiji pack bags \n", "\n", "\n", - "@UnrevealedFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji this http://t.co/TsZs6dTxNs a must go before I die\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji must go \n", - "\n", - "\n", "My nightmares look a lot like this:\\nRT @WTFFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/j0NrjuyGSN\n", "\n", "--------------------------------------------------------\n", @@ -60401,31 +54133,13 @@ "I could do 1 night “@AwkwardGoogle: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/PTom4qsv9O”\n", "\n", "--------------------------------------------------------\n", - "could 1 night \n", + "could night \n", "\n", "\n", "Wohoo,, sweet! RT @thegooglefact: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/jTHzyzkKdo\n", "\n", "--------------------------------------------------------\n", - "wohoo sweet \n", - "\n", - "\n", - "@WTFFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. @lynnScherloski can we, can we please!? http://t.co/6Ytzr02qY2\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji please \n", - "\n", - "\n", - "“@WTFFacts: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/82CCz2FSXt” 😍😍😍 💕omg\n", - "\n", - "--------------------------------------------------------\n", - "omg \n", - "\n", - "\n", - "Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/YpXeGC5Hbx via @earthposts\n", - "\n", - "--------------------------------------------------------\n", - "underwater bedroom poseidon undersea resort located fiji \n", + "woo sweet \n", "\n", "\n", "Underwater bedroom at Poseidon Undersea Resort located in #Fiji. #Amazing http://t.co/AiyM9QzN3A”\n", @@ -60443,25 +54157,19 @@ "“@BestBedrooms: Retweet if you want this underwater bedroom! http://t.co/UqBCwx4diJ” ohhh fawwwwwwk 😱😍\n", "\n", "--------------------------------------------------------\n", - "ohhh fawwwwwwk \n", + "fawwwwwwk \n", "\n", "\n", "Lagi tdr ada piranha @DINDAAYUUS \"@BestBedrooms: Retweet if you want this underwater bedroom! http://t.co/I50c3goSOG\"\n", "\n", "--------------------------------------------------------\n", - "lagi tdr ada piranha \n", - "\n", - "\n", - "@justVYlieve: “@DreamHouseX: Retweet if you want this underwater bedroom! , http://t.co/20BOWYR2lw” FUCK YES\n", - "\n", - "--------------------------------------------------------\n", - "fuck yes \n", + "tdr piran \n", "\n", "\n", "Yang ini bener-bener gilaaaaa @K_Febriani \" Retweet if you want this underwater bedroom! http://t.co/wONj1y8nQq\"\n", "\n", "--------------------------------------------------------\n", - "yang ini bener bener gilaaaaa retweet underwater bedroom \n", + "bener bener gilaaaaa retweet underwater bedroom \n", "\n", "\n", "Underwater Bedroom, If I don't get this I'll cry Xx :( http://t.co/f0Z550wOt8\"\n", @@ -60476,12 +54184,6 @@ "retweet underwater bedroom \n", "\n", "\n", - "Retweet if you want this underwater bedroom! http://t.co/JBy5J9y3u5\n", - "\n", - "--------------------------------------------------------\n", - "retweet underwater bedroom \n", - "\n", - "\n", "Sorry, you can't spend a night in this underwater bedroom. Mostly because it doesn't exist http://t.co/ovZ7zs9qwB // http://t.co/jN7WnoD4lM\n", "\n", "--------------------------------------------------------\n", @@ -60494,12 +54196,6 @@ "top story hotels twitter picturesearth underwater bedroom conrad see \n", "\n", "\n", - "@Bedroomphotos: Amazing underwater bedroom http://t.co/9RiIBaY9ft what if the tube breaks and you drown? Then what.\n", - "\n", - "--------------------------------------------------------\n", - "amazing underwater bedroom tube breaks drown \n", - "\n", - "\n", "imagine this! “@Bedroomphotos: Amazing underwater bedroom http://t.co/TkzwmmYpYl”\n", "\n", "--------------------------------------------------------\n", @@ -60509,7 +54205,7 @@ "Amazing underwater bedroom http://t.co/MQdYiLVaYM” Memang best gila la kalau dapat bilik macam ni tidur pun tenang 😃👍\n", "\n", "--------------------------------------------------------\n", - "amazing underwater bedroom memang best gila kalau dapat bilik macam tidur pun tenang \n", + "amazing underwater bedroom best gila bilik tidur tenang \n", "\n", "\n", "Imagine having this though, an underwater bedroom😳😍👏 http://t.co/vADT4vQ2bY\n", @@ -60578,12 +54274,42 @@ "anjayy \n", "\n", "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/lCoWi6A6zC” that's so dope omfg\n", + "\n", + "--------------------------------------------------------\n", + "dope \n", + "\n", + "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/15MyuDOtdL” #sololuoghibelli☀️\n", + "\n", + "--------------------------------------------------------\n", + "souoghibelli \n", + "\n", + "\n", "Beautiful “@mc_magic1887: 😍😍 @EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/kfa5WrMuXI””\n", "\n", "--------------------------------------------------------\n", "beautiful \n", "\n", "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/sfa0dXkJhp” NO.. Me while sleeping = 😳/😭\n", + "\n", + "--------------------------------------------------------\n", + "sleeping \n", + "\n", + "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/QsHgF5D7Yg” yes 😻\n", + "\n", + "--------------------------------------------------------\n", + "yes \n", + "\n", + "\n", + "“@EARTH_PlCTURES: Underwater bedroom at Poseidon Undersea Resort located in Fiji. http://t.co/zbO3ZaEjmF” je veux qu'on m'emmène là !\n", + "\n", + "--------------------------------------------------------\n", + "veux emmène là \n", + "\n", + "\n", "Rock Elephant http://t.co/CugLl6gc7k via @9GAG http://t.co/kgTbIkYyzG\n", "\n", "--------------------------------------------------------\n", @@ -60608,12 +54334,6 @@ "elephant rock \n", "\n", "\n", - "Rock Elephant http://t.co/TelxrbXMdt\n", - "\n", - "--------------------------------------------------------\n", - "rock elephant \n", - "\n", - "\n", "Rock Elephant http://t.co/JvaMsPKc85 #NeMemes esto es real??? http://t.co/LAiZUJSPgF\n", "\n", "--------------------------------------------------------\n", @@ -60632,12 +54352,6 @@ "elephant carved solid rock magnificent \n", "\n", "\n", - "Rock Elephant http://t.co/KN28lpPxmZ http://t.co/NNpAneV8qX\n", - "\n", - "--------------------------------------------------------\n", - "rock elephant \n", - "\n", - "\n", "Private movie theater, only at #Sochi http://t.co/tEDLsW2tLN\n", "\n", "--------------------------------------------------------\n", @@ -60689,7 +54403,7 @@ "We highly suggest one toilet per bathroom when remodeling RT @SochiEpicFails: #SochiFail #SochiProblems #Sochi http://t.co/jzX5v8V5ZU\n", "\n", "--------------------------------------------------------\n", - "highly suggest one toilet per bathroom remodeling \n", + "highly suggest one toilet bathroom remodeling \n", "\n", "\n", "#Sochi That's what I call COMMUNAL! http://t.co/3Zja2w1USC\n", @@ -60719,7 +54433,7 @@ "Roomy bathroom #sochi - #teamspirit LOL http://t.co/pL4Xei9mmc\n", "\n", "--------------------------------------------------------\n", - "roomy bathroom sochi teamspirit lol \n", + "roomy bathroom sochi teamspirit \n", "\n", "\n", "In #Sochi, the men use double toilets too. #NotA2014SochiProblem #ToiletEqualityQuestionMark -- http://t.co/YakoEem0sS\n", @@ -60797,7 +54511,7 @@ "#Sochi Every night, between 1-6 am.,poison put out, traps R set,animals R killed .TAKE ACTION> http://t.co/8fYrm4mpOI http://t.co/k3hXXFxmn8\n", "\n", "--------------------------------------------------------\n", - "sochi every night 1 6 poison put traps r set animals r killed take action greater \n", + "sochi every night poison put traps set animals killed take action \n", "\n", "\n", "Judging panel seating is complete! In Sochi the competition never stops. #SochiProblems #Sochi2014 http://t.co/4bVlKs67Fr\n", @@ -60821,7 +54535,7 @@ "http://t.co/9kj8FCFazO shoutout thekrecken for \"Lmao, Russia 😂😂😂 #sochi #winterolympics #olympics2014 #sochi2014\" ... http://t.co/j1I2f26Nf9\n", "\n", "--------------------------------------------------------\n", - "shoutout thekrecken lmao russia sochi winterolympics olympics2014 sochi2014 \n", + "shoutout thekrecken russia sochi winterolympics olympics2014 sochi2014 \n", "\n", "\n", "We have been monitoring the #sochifails and here's the latest: #SochiFail #SochiProblems \\n\\nhttp://t.co/ZE7XN0yE4S http://t.co/CNNUadNZkf\n", @@ -60851,13 +54565,13 @@ "Im sorry but have you seen the toilets in sochi?! #Sochi2014 #SochiProblems #fuckdat http://t.co/sKoMnvvl6T\n", "\n", "--------------------------------------------------------\n", - "im sorry seen toilets sochi sochi2014 sochiproblems fuckdat \n", + "sorry seen toilets sochi sochi2014 sochiproblems fuckdat \n", "\n", "\n", "2-man toilets in #sochi make for cozy same-sex connection. Does Putin approve? http://t.co/O3kNCkTFGw http://t.co/mb2w4T68xE\n", "\n", "--------------------------------------------------------\n", - "2 toilets sochi make cozy sex connection putin approve \n", + "toilets sochi make cozy sex connection putin approve \n", "\n", "\n", "This is my favorite pic of #Sochi #SochiProblems http://t.co/0Q2O9od7Cr\n", @@ -60911,7 +54625,7 @@ "The Olympics have often times been an event that brought about great solidarity. Whether you finish #1 or #2..#Sochi http://t.co/GAN8fhewR3\n", "\n", "--------------------------------------------------------\n", - "olympics often times event brought great solidarity whether finish 1 2 sochi \n", + "olympics often times event brought great solidarity whether finish sochi \n", "\n", "\n", "Stray dogs, unfinished hotel rooms, technical issues...Russia really half-assed the #Sochi Olympics #SochiProblems http://t.co/j3IVQstKGb\n", @@ -60935,7 +54649,7 @@ "C'mon guyz...first you complain \"no walls in bathroom\" now you complain walls in bathroom. WTF? #SochiProblems #sochi http://t.co/apRXJqhoCo\n", "\n", "--------------------------------------------------------\n", - "c mon guyz first complain walls bathroom complain walls bathroom wtf sochiproblems sochi \n", + "guyz first complain walls bathroom complain walls bathroom sochiproblems sochi \n", "\n", "\n", "Let's Poke each other! #Sochi #SochiFail #Sochi2014 #SochiProblems #Olympics #Olympics2014 http://t.co/oKsb4OZAQE\n", @@ -60953,7 +54667,7 @@ "A New #Sochi14 Olympics event.\\n\\nSynchronized Pooping.\\n\\n#Sochi #WhoDoesNumberTwoWorkFor? http://t.co/UARg7OYZ8D\n", "\n", "--------------------------------------------------------\n", - "new sochi14 olympics event synchronized pooping sochi whodoesnumbertwoworkfor \n", + "new sochi14 olympics event synchronized pooping sochi whodoesnumbertorkfor \n", "\n", "\n", "#Sochi #Olympics2014 Candid view of judges section for indoor water events. http://t.co/CqOHNJWH1H\n", @@ -60991,13 +54705,7 @@ "--------------------------------------------------------\n", "friendly place winter olympics photoshopped sochi olympic \n", "\n", - "\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "\n", "Meanwhile in #Sochi #SochiFail http://t.co/5oh8lSDXT7\n", "\n", "--------------------------------------------------------\n", @@ -61043,19 +54751,19 @@ "You see 2 toilets in a #Sochi bathroom. I see no toilet paper, an awkward conversation, & 1 carefully buried secret. http://t.co/5zf2bhkxcf\n", "\n", "--------------------------------------------------------\n", - "see 2 toilets sochi bathroom see toilet paper awkward conversation 1 carefully buried secret \n", + "see toilets sochi bathroom see toilet paper awkward conversation carefully buried secret \n", "\n", "\n", "@bibekdebroy Shall we feel a bit better about our Commonwealth Games #Sochi Na Tha http://t.co/v0O5q0ZmgV\n", "\n", "--------------------------------------------------------\n", - "shall feel bit better commonwealth games sochi tha \n", + "shall feel bit better commonwealth games sochi \n", "\n", "\n", "Haaaahahahaha Welcome to #Sochi! #amazing #SochiProblems http://t.co/7NbXYykxCe\n", "\n", "--------------------------------------------------------\n", - "haaaahahahaha welcome sochi amazing sochiproblems \n", + "haaaawelcome sochi amazing sochiproblems \n", "\n", "\n", "Russia be like ..BUDDY SYSTEM! 😑😳👎#Sochi2014 #Sochi #SochiProblems #Follow4Follow #Follow #FF #RETWEET #RT http://t.co/9r7H5pnrTd\n", @@ -61103,7 +54811,7 @@ "Never alone in #Sochi \\n\\n#Winter_Olympics http://t.co/f5FrjvYtHn\n", "\n", "--------------------------------------------------------\n", - "never alone sochi winter olympics \n", + "never alone sochi winterolympics \n", "\n", "\n", "“@SochiFails: Best seats in the house #Sochi #Sochi2014 #sochifails #sochiproblems #Olympics http://t.co/x80YyaRoQY”best seat in the house\n", @@ -61151,13 +54859,7 @@ "“@ProblemsSochi: Olympic athletes bonding Sochi Style! #Sochi2014 http://t.co/ghz1FnrVjS” Toilet sharing vs gay bashing, come on now!\n", "\n", "--------------------------------------------------------\n", - "toilet sharing vs gay bashing come \n", - "\n", - "\n", - "@sochifun: Hillarious! Is this the spot awards ceremony will be held? #sochiproblems #SochiFail #Sochi #Sochi2014 http://t.co/SCiVtfJHs2\n", - "\n", - "--------------------------------------------------------\n", - "hillarious spot awards ceremony held sochiproblems sochifail sochi sochi2014 \n", + "toilet sharing versus gay bashing come \n", "\n", "\n", "Russians built double toilets @Sochi for gays & other men to check on each other - now gays welcome in Russia http://t.co/1XrmtBMLvn\n", @@ -61235,7 +54937,7 @@ "What privacy? #Olympic is all about sharing and mixing \\n\\n#Sochi #Winter_Olympics http://t.co/BQ29H8SFLm\n", "\n", "--------------------------------------------------------\n", - "privacy olympic sharing mixing sochi winter olympics \n", + "privacy olympic sharing mixing sochi winterolympics \n", "\n", "\n", "Seriously #sochi is this real, fake????? #southafrica could do better with fake snow! http://t.co/o190zr7bhv\n", @@ -61271,7 +54973,7 @@ "Oh. The ole 1 bed, 1/2 bathroom bit. Sochi's got jokes. “@TypicalSochi: How does this even happen? http://t.co/ui9lJv9qMn”\n", "\n", "--------------------------------------------------------\n", - "oh ole 1 bed 1 2 bathroom bit sochi got jokes \n", + "ole bed bathroom bit sochi got jokes \n", "\n", "\n", "Get your shit together Sochi #WinterOlympics #Putinprobs http://t.co/dkyhP7rX3j\n", @@ -61283,7 +54985,7 @@ "Sochi bathrooms looking like dream bathrooms for many girls I know lol. http://t.co/rnBS7u1ZMX\n", "\n", "--------------------------------------------------------\n", - "sochi bathrooms looking like dream bathrooms many girls know lol \n", + "sochi bathrooms looking like dream bathrooms many girls know \n", "\n", "\n", "This Sochi toilet situation is getting out of hand. (from @jimgeraghty ) http://t.co/q1wzAOQpOr\n", @@ -61319,19 +55021,25 @@ "Remember the Sochi Olympic Village double toilets? They are good to use! #9GAG http://t.co/rBiJLYu9G7\n", "\n", "--------------------------------------------------------\n", - "remember sochi olympic village double toilets good use 9gag \n", + "remember sochi olympic village double toilets good use \n", "\n", "\n", "How two toilets became a new Sochi symbol. #Russia http://t.co/w3NKDM8Zqh http://t.co/UV6jQ9D1NS\n", "\n", "--------------------------------------------------------\n", - "two toilets became new sochi symbol russia \n", + "two toilets became new sochi symbol russia \n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "\n", "@ChristineWark lmao no because I'm not in Sochi but pics like these are everywhere http://t.co/sFtZad1IRf\n", "\n", "--------------------------------------------------------\n", - "lmao sochi pics like everywhere \n", + "sochi pics like everywhere \n", "\n", "\n", "Welcome to Sochi! http://t.co/kaPIsaXtGo\n", @@ -61340,12 +55048,6 @@ "welcome sochi \n", "\n", "\n", - "@themarkup: Comrades! Is great day in Sochi! Sunny skies everywhere! Great accomodations! http://t.co/RBP4SgqEA6 //WTH, half a toilet??\n", - "\n", - "--------------------------------------------------------\n", - "comrades great day sochi sunny skies everywhere great accomodations wth half toilet \n", - "\n", - "\n", "I love Sochi http://t.co/yEsRptp2Pn\n", "\n", "--------------------------------------------------------\n", @@ -61355,7 +55057,7 @@ "They watching the THRONE. lol..... RT @rustymk2: Sochi, man. http://t.co/xvFoMtHSAl\n", "\n", "--------------------------------------------------------\n", - "watching throne lol \n", + "watching throne \n", "\n", "\n", "Toilet in Sochi.. or at least half of it.. (via @KatarzynaPawlak) #winter #olympics #russia http://t.co/kvi9MDkYpk\n", @@ -61364,12 +55066,6 @@ "toilet sochi least half winter olympics russia \n", "\n", "\n", - "Remember the Sochi Olympic Village double toilets? They are good to use! http://t.co/d6xIYxNp1w\n", - "\n", - "--------------------------------------------------------\n", - "remember sochi olympic village double toilets good use \n", - "\n", - "\n", "This is the kind of interior decorating you get when you banish the gays from Sochi http://t.co/WjhZnFNJOU\n", "\n", "--------------------------------------------------------\n", @@ -61400,12 +55096,6 @@ "olympic athletes bonding sochi style sochiproblems \n", "\n", "\n", - "Meanwhile Sochi Bathrooms http://t.co/p7PCNxnlBQ via @9GAG http://t.co/QWRfwkSxP2\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi bathrooms \n", - "\n", - "\n", "Watching Sochi Olympics. I like the lights! Hopefully they get the other stuff fixed @nikakozy and for others! http://t.co/pLVn1wLIXU\n", "\n", "--------------------------------------------------------\n", @@ -61427,7 +55117,7 @@ "Conditions at the Sochi Olympics are bad/hilarious (32 Photos) http://t.co/wIhfSMCxYt http://t.co/klvG0qR2rV\n", "\n", "--------------------------------------------------------\n", - "conditions sochi olympics bad hilarious 32 photos \n", + "conditions sochi olympics bad hilarious 2 photos \n", "\n", "\n", "The bathrooms in Sochi even have a waiting area! #olympicfail http://t.co/POPoJ6G8XG\n", @@ -61439,7 +55129,7 @@ "20 Funny And Weird Sochi Olympics Problems - http://t.co/DusAvRBldP http://t.co/ePwVM6ZZEo\n", "\n", "--------------------------------------------------------\n", - "20 funny weird sochi olympics problems \n", + "0 funny weird sochi olympics problems \n", "\n", "\n", "@MercyForAnimals This is what they are doing to stray dogs in Sochi. http://t.co/KMyTPBrGJW\n", @@ -61466,16 +55156,10 @@ "nothing like sochi water mmmm \n", "\n", "\n", - "Meanwhile Sochi Bathrooms http://t.co/WZWLdxtXO8 http://t.co/GOIk3la0UZ\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi bathrooms \n", - "\n", - "\n", "Russia spends $51 billion on the Sochi Olympics but THIS is how they decide to save money? Walls are cheap, guys... http://t.co/X35NGbBn8e\n", "\n", "--------------------------------------------------------\n", - "russia spends 51 billion sochi olympics decide save money walls cheap guys \n", + "russia spends 1 billion sochi olympics decide save money walls cheap guys \n", "\n", "\n", "Sit down and relax this weekend while you watch the Sochi Olympics. There's even room for... http://t.co/nah0LGnPWE http://t.co/pXZTuI8AGg\n", @@ -61517,7 +55201,7 @@ "But the toilets in Sochi will create a sense of community! This is what $50+ billion gets you! http://t.co/pYTDZAGPNf http://t.co/Wy6VPEUxmX\n", "\n", "--------------------------------------------------------\n", - "toilets sochi create sense community 50 billion gets \n", + "toilets sochi create sense community 0 billion gets \n", "\n", "\n", "Now that is definitely a half-*ssed toilet!\\nGood ole Sochi! http://t.co/yBohgepBp3\n", @@ -61535,13 +55219,13 @@ "SOCHI 2014 - Where \"POOPING\" is an Olympic spectator event! As for me, I'm goin' for the GOLD. USA,USA,USA. (flush)! http://t.co/JPXMTpJuiu\n", "\n", "--------------------------------------------------------\n", - "sochi 2014 pooping olympic spectator event goin gold usa usa usa flush \n", + "sochi014 pooping olympic spectator event going gold usa usa usa flush \n", "\n", "\n", "Sochi Winter Olympics toilets .2 separate toilet paper dispensers. Good because that would have been awkward http://t.co/DYYtsAP3CO\n", "\n", "--------------------------------------------------------\n", - "sochi winter olympics toilets 2 separate toilet paper dispensers good would awkward \n", + "sochi winter olympics toilets separate toilet paper dispensers good would awkward \n", "\n", "\n", "@juliapaulinee Remind u of anywhere? \"@sportspickle: Sochi 2014 Olympics Pickup Lines: http://t.co/B3l5UMUh64 http://t.co/QsvRqlhKoW\"\\n#plaVB\n", @@ -61571,13 +55255,13 @@ "One more toilet from Sochi including 3 seats for the jury: you start.. voting now. @VStarok:... http://t.co/7388UAbdLr\n", "\n", "--------------------------------------------------------\n", - "one toilet sochi including 3 seats jury start voting \n", + "one toilet sochi including seats jury start voting \n", "\n", "\n", "Sochi: at least 99 problems and double toilet comradery is just one of them. // @SochiProblems http://t.co/PYY0XbD79x\n", "\n", "--------------------------------------------------------\n", - "sochi least 99 problems double toilet comradery one \n", + "sochi least9 problems double toilet comradery one \n", "\n", "\n", "New event at the Sochi Winter games: battle shits.. Afghanistan is the favorite.. #sochiproblems #sochifails http://t.co/GwirDSHHcL\n", @@ -61592,16 +55276,10 @@ "front row seats still available olympic advent sochi \n", "\n", "\n", - "Meanwhile Sochi Bathrooms http://t.co/BPdNJJs074\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi bathrooms \n", - "\n", - "\n", "32 photos from Sochi, yeah, you know the ones… #toilets http://t.co/5qNFVC5XTy http://t.co/qoL4YBeASZ\n", "\n", "--------------------------------------------------------\n", - "32 photos sochi yeah know ones toilets \n", + "2 photos sochi yeah know ones toilets \n", "\n", "\n", "I guess Sochi isn't really so chiii #PrayForTheOlympians #SochiFail http://t.co/ycUDOgT5N5\n", @@ -61625,13 +55303,7 @@ "46 Weirdest,Scariest & Funniest Pics At Sochi Hotels http://t.co/OdyDfebB9O @SochiProblems #SochiProblems #SochiFail http://t.co/Z7Pu7bGSPd\n", "\n", "--------------------------------------------------------\n", - "46 weirdest scariest funniest pics sochi hotels sochiproblems sochifail \n", - "\n", - "\n", - "Remember the Sochi Olympic Village double toilets? They are good to use! http://t.co/ciHhDsE2nc via @9GAG http://t.co/T34B0rSuKF\n", - "\n", - "--------------------------------------------------------\n", - "remember sochi olympic village double toilets good use \n", + "6 weirdest scariest funniest pics sochi hotels sochiproblems sochifail \n", "\n", "\n", "I'm really enjoying hearing about how fucked up everything is in Sochi. Puts things in perspective ;) http://t.co/EwEYWfNviV\n", @@ -61649,19 +55321,13 @@ "On the 2nd day of Sochi my true love gave to me, 2 toilets in a stall and a Bobby got snubbed T http://t.co/kpAGuvHgbi\n", "\n", "--------------------------------------------------------\n", - "second day sochi true love gave 2 toilets stall bobby got snubbed \n", + "second day sochi true love gave toilets stall bobby got snubbed \n", "\n", "\n", "Sochi letting you take pre-game dumps as a team. Haha #Bonding #NextLevel http://t.co/FZ4u7lRuZA\n", "\n", "--------------------------------------------------------\n", - "sochi letting take pre game dumps team haha bonding nextlevel \n", - "\n", - "\n", - "MT @SochiEpicFails: The notorious side-by-side toilets in Sochi #SochiProblems #SochiFail http://t.co/3DzrT1VkDc\n", - "\n", - "--------------------------------------------------------\n", - "notorious side side toilets sochi sochiproblems sochifail \n", + "sochi letting take pre game dumps team bonding nextlevel \n", "\n", "\n", "Ross wonders whether this Sochi toilet is where synchronised swimmers drop the kids off at the pool (via @BBCSteveR) http://t.co/1pavu5PDis\n", @@ -61697,7 +55363,7 @@ "WINTER OLYMPIC GAME SOCHI 2014 http://t.co/AojwvtZTgs\n", "\n", "--------------------------------------------------------\n", - "winter olympic game sochi 2014 \n", + "winter olympic game sochi014 \n", "\n", "\n", "@Monicann86 @Richard_Skeet these are the facilities at Sochi,what's worse is where u put the toilet paper http://t.co/JCbnrf1bYI\n", @@ -61721,7 +55387,7 @@ "The water in Sochi is dirtier than Tiger Woods fingers after his sexcapade 2 years ago http://t.co/dmKxVBxGAL\n", "\n", "--------------------------------------------------------\n", - "water sochi dirtier tiger woods fingers sexcapade 2 years ago \n", + "water sochi dirtier tiger woods fingers sexcapade years ago \n", "\n", "\n", "Gotta love Sochi! No bathroom stalls http://t.co/Da3cxfD4Nt\n", @@ -61736,12 +55402,6 @@ "sochi nachos wanted avoid going bathroom time prez \n", "\n", "\n", - "Sochi \"@SpotTheLoon2010: Lol RT@AllyTuckerKSR: Of all of the #SochiProblems ,this one's absolutely my favorite.http://t.co/0QfsZHjhK7”\n", - "\n", - "--------------------------------------------------------\n", - "sochi lol \n", - "\n", - "\n", "Olympic athletes in Sochi expected to share bathroom facilities: http://t.co/vmNboq1LUW\n", "\n", "--------------------------------------------------------\n", @@ -61757,7 +55417,7 @@ "Is Sochi really ready for the Olympic Games ? (part 2) - http://t.co/Jr61cgeA8A #russia #Miscellaneous #Sport http://t.co/MyfFpmR7uL\n", "\n", "--------------------------------------------------------\n", - "sochi really ready olympic games part 2 russia miscellaneous sport \n", + "sochi really ready olympic games part russia miscellaneous sport \n", "\n", "\n", "Chicks that ski together pee together at Sochi. http://t.co/JiWW5E42FE\n", @@ -61775,13 +55435,13 @@ "And another one from the Sochi Olympic village 2014. (Need a audience anyone) http://t.co/b38LVFZyIb\n", "\n", "--------------------------------------------------------\n", - "another one sochi olympic village 2014 need audience anyone \n", + "another one sochi olympic village014 need audience anyone \n", "\n", "\n", "Toilets at Sochi Olympics. I think many may just wait until they get back home. (via BBC/AP) http://t.co/voKabUZ7xN\n", "\n", "--------------------------------------------------------\n", - "toilets sochi olympics think many may wait get back home via bbc ap \n", + "toilets sochi olympics think many may wait get back home bbc ap \n", "\n", "\n", "Another weird Olympic bathroom in Sochi. What do you think the chairs are for? http://t.co/cuKqN3SMrv\n", @@ -61799,7 +55459,7 @@ "Meanwhile Sochi Bathrooms http://t.co/68u2ga3k93 via @9GAG o_O http://t.co/kNbvomTatO\n", "\n", "--------------------------------------------------------\n", - "meanwhile sochi bathrooms \n", + "meanwhile sochi bathrooms oo \n", "\n", "\n", "Sochi - a tale of two toilets http://t.co/KjWxr7k7n0 http://t.co/GNI9BZZtxg\n", @@ -61829,13 +55489,13 @@ "@scolo RITWITTA .THESE IMAGES ARE SELLING .... shame Sochi 2014 IN THOUSANDS OF STRAY heaps of garbage http://t.co/4gpIDp5Vnm\n", "\n", "--------------------------------------------------------\n", - "ritwitta images selling shame sochi 2014 thousands stray heaps garbage \n", + "ritwitta images selling shame sochi014 thousands stray heaps garbage \n", "\n", "\n", "Welcome to Sochi, the Venue of Winter Olympics (32 Photos) - http://t.co/0ysEaKhhIK http://t.co/0m4QizRJJI\n", "\n", "--------------------------------------------------------\n", - "welcome sochi venue winter olympics 32 photos \n", + "welcome sochi venue winter olympics 2 photos \n", "\n", "\n", "Is it the Sochi Olympics. . . or Obamacare? http://t.co/F9RIelsfvL\n", @@ -61895,7 +55555,7 @@ "they wylen in Sochi lol http://t.co/T24Ahj5AD6\n", "\n", "--------------------------------------------------------\n", - "wylen sochi lol \n", + "wylen sochi \n", "\n", "\n", "The bathrooms in Sochi weren't done yet #awkward #nostales http://t.co/bts9WJSFeI\n", @@ -61904,12 +55564,6 @@ "bathrooms sochi done yet awkward nostales \n", "\n", "\n", - "Why Sochi, why? http://t.co/GbVPs2woDz\n", - "\n", - "--------------------------------------------------------\n", - "sochi \n", - "\n", - "\n", "Just another typical day in Sochi. Where does one buy half a toilet? http://t.co/X3QgxO3wAc\n", "\n", "--------------------------------------------------------\n", @@ -61919,7 +55573,7 @@ "Sochi got 99 problems and a toilet ain't one... cause they have two! http://t.co/EXfSySoCBw @BuzzFeed #SochiProblems http://t.co/ltAFTNVDSa\n", "\n", "--------------------------------------------------------\n", - "sochi got 99 problems toilet one cause two sochiproblems \n", + "sochi got9 problems toilet one cause two sochiproblems \n", "\n", "\n", "Remember the Sochi Olympic Village double toilets? They are good to use! #Humor http://t.co/J2m9bVH9uZ\n", @@ -61931,7 +55585,7 @@ "Wow some of the pics coming out of Sochi about the conditions are incredible!!! This is my fave #onecheek #SochiFail http://t.co/1Hjr9vMYoH\n", "\n", "--------------------------------------------------------\n", - "wow pics coming sochi conditions incredible fave onecheek sochifail \n", + "pics coming sochi conditions incredible fave onecheek sochifail \n", "\n", "\n", "Public bathrooms in sochi. Stop playin http://t.co/24bBjeD7Bb\n", @@ -61985,7 +55639,7 @@ "32 Images That Sum Up Why The Sochi Olympics Are Already A Disaster | via @HappyPlace http://t.co/2wD0YtYWCr http://t.co/V7RDdyimfN\n", "\n", "--------------------------------------------------------\n", - "32 images sum sochi olympics already disaster \n", + "2 images sum sochi olympics already disaster \n", "\n", "\n", "Olympic Spirit In Display At Sochi. #Olympics2014 http://t.co/9a1q699zmL\n", @@ -61997,7 +55651,7 @@ "@russelltovey THESE IMAGES ARE SELLING .... shame Sochi 2014 IN THOUSANDS OF STRAY heaps of garbage ..RITWITT http://t.co/SqKGRD6j7r\n", "\n", "--------------------------------------------------------\n", - "images selling shame sochi 2014 thousands stray heaps garbage ritwitt \n", + "images selling shame sochi014 thousands stray heaps garbage ritwitt \n", "\n", "\n", "apparently the biggest problem over in Sochi right now is plumbing :) #SochiProblems #fb http://t.co/nr8UL7WeZy\n", @@ -62012,12 +55666,6 @@ "half flush option environmentally friendly sochi \n", "\n", "\n", - "“@RantSports: Sochi FAIL.\\n\\nhttp://t.co/nhkHPJu0kw http://t.co/vZlrlXj5uq” ... We have these in America, too... 😒😒😒😒😒\n", - "\n", - "--------------------------------------------------------\n", - "america \n", - "\n", - "\n", "Sochi bathrooms so private... http://t.co/JPYOVgohBZ\n", "\n", "--------------------------------------------------------\n", @@ -62057,7 +55705,7 @@ "Sochi for some reason it doesn't seem like ur against homosexuals #SochiProblems #2014OlympicProblems http://t.co/2iOUYBiEWR\n", "\n", "--------------------------------------------------------\n", - "sochi reason seem like ur homosexuals sochiproblems 2014olympicproblems \n", + "sochi reason seem like homosexuals sochiproblems014olympicproblems \n", "\n", "\n", "Let the games begin. — in Sochi, Russia.https://t.co/3dTF1BrvXi http://t.co/JGysaj5Un4\n", @@ -62087,7 +55735,7 @@ "while the olympics are fun to follow, following all the problems in Sochi is even more enjoyable #2014CM331B1 http://t.co/Amn474BfPx\n", "\n", "--------------------------------------------------------\n", - "olympics fun follow following problems sochi even enjoyable 2014cm331b1 \n", + "olympics fun follow following problems sochi even enjoyable014cm331b1 \n", "\n", "\n", "@maddogvirgin I though you might like this.This is what they have going on in Sochi.There judging your deuces as well http://t.co/9VkXuqLi87\n", @@ -62123,13 +55771,7 @@ "Bit of a half-arsed toilet in this Sochi hotel - you wouldn't want to do a 1 or a 2. maybe a 0.5! #SochiProblems http://t.co/8dCdkj3uNU\n", "\n", "--------------------------------------------------------\n", - "bit half arsed toilet sochi hotel 1 2 maybe 0 5 sochiproblems \n", - "\n", - "\n", - "Olympic athletes bonding Sochi Style! #SochiProblems http://t.co/K58vzYiJBp\n", - "\n", - "--------------------------------------------------------\n", - "olympic athletes bonding sochi style sochiproblems \n", + "bit half arsed toilet sochi hotel maybe sochiproblems \n", "\n", "\n", "This photo shows Russia may have a toilet problem in Sochi http://t.co/6LKXIFZKdd #russia @thejohnfleming http://t.co/MuMSv8CeLg\n", @@ -62159,13 +55801,13 @@ "Famous biathlon athletes are surprised 2 see women toilet cabins not separated in Sochi;) Pic:G.Soukalova #Euromaidan http://t.co/EeiAc7zjx3\n", "\n", "--------------------------------------------------------\n", - "famous biathlon athletes surprised 2 see women toilet cabins separated sochi pic g soukalova euromaidan \n", + "famous biathlon athletes surprised see women toilet cabins separated sochi pic g soukalova euromaidan \n", "\n", "\n", "Genuine toilet, spotted in Sochi. #1 http://t.co/SOgq8bxa5g\n", "\n", "--------------------------------------------------------\n", - "genuine toilet spotted sochi 1 \n", + "genuine toilet spotted sochi \n", "\n", "\n", "“@reddpups: did U see what's going on in Sochi; U won't see this on tv https://t.co/H806AQEOTQ …” #shameonsochi http://t.co/IXhnrJP19s\n", @@ -62195,13 +55837,7 @@ "Lmfao. Toilet in Sochi. What do? http://t.co/oyg0xLFqxA\n", "\n", "--------------------------------------------------------\n", - "lmfao toilet sochi \n", - "\n", - "\n", - "Remember the Sochi Olympic Village double toilets? They are good to use! http://t.co/HBfLCpdWVS http://t.co/15o2tu4SI1\n", - "\n", - "--------------------------------------------------------\n", - "remember sochi olympic village double toilets good use \n", + "toilet sochi \n", "\n", "\n", "Sochi\\n@UKN_LL\\nJudges are late arriving for first round of Looge event. \\n\\nhttp://t.co/1dFWHNiILj\n", @@ -62240,12 +55876,6 @@ "ice cream ass among olympic meal options apparently serving wrong sochi ht \n", "\n", "\n", - "@TypicalSochi: Looks like they ran out of cones.. http://t.co/A1J455SdHH Whatever floats ur boat Sochi! Lol\n", - "\n", - "--------------------------------------------------------\n", - "looks like ran cones whatever floats ur boat sochi lol \n", - "\n", - "\n", "The \"star\" of the #Olympics2014 so far. #SochiFail #sochi #SochiProblems #Sochi2014 http://t.co/P5HbdgWmUp\n", "\n", "--------------------------------------------------------\n", @@ -62255,7 +55885,7 @@ "Sin Cara can't get the Sochi hotel rooms right. #BOTHCED #SochiProblems #Sochi2014 #WWE http://t.co/Sv7vPkkSsA\n", "\n", "--------------------------------------------------------\n", - "cara get sochi hotel rooms right bothced sochiproblems sochi2014 wwe \n", + "get sochi hotel rooms right bothced sochiproblems sochi2014 wwe \n", "\n", "\n", "Beware of fake #Sochi toilet photos: http://t.co/swiOge5hMg #hoaxes http://t.co/F0bdggxfqX\n", @@ -62267,13 +55897,13 @@ "5th ring finally comes out #sochi #Sochi2014 #teamgay http://t.co/O5YkVrpnck\n", "\n", "--------------------------------------------------------\n", - "5th ring finally comes sochi sochi2014 teamgay \n", + "ring finally comes sochi sochi2014 teamgay \n", "\n", "\n", "#FOTO Patinadora de #EU genera 'memes' en #Sochi2014 por expresión tras conocer puntuaciones http://t.co/AYqu5tJASq http://t.co/qne2Fy0jtZ\n", "\n", "--------------------------------------------------------\n", - "foto patinadora eu genera memes sochi2014 expresión tras conocer puntuaciones \n", + "foto patinadora genera memes sochi2014 expresión tras conocer puntuaciones \n", "\n", "\n", "Don't ask for cakes in #sochi #Olympics2014 . So much calories if taken that way :) http://t.co/insEfZGpP3\n", @@ -62285,7 +55915,7 @@ "Ohh that's why it took sooo long... #Sochi2014 #Olympics #sochi http://t.co/bs4BbfGoqv\n", "\n", "--------------------------------------------------------\n", - "ohh took sooo long sochi2014 olympics sochi \n", + "took sooo long sochi2014 olympics sochi \n", "\n", "\n", "@insanely_great @lgreenberg @doubled50 @mtpflyers I hope #CES2015 does not get any ideas from #Sochi http://t.co/TglHSqG01K\n", @@ -62327,7 +55957,7 @@ "Welcome to the 5th ring! #SochiProblems #Sochi2014 #SochiFail #WinterOlympics http://t.co/QU2RKQDC85\n", "\n", "--------------------------------------------------------\n", - "welcome 5th ring sochiproblems sochi2014 sochifail winterolympics \n", + "welcome ring sochiproblems sochi2014 sochifail winterolympics \n", "\n", "\n", "Looking forward to #winterolympics #sochi here is a picture of the opening ceremony! http://t.co/gwo9jGMuE7\n", @@ -62351,7 +55981,7 @@ "😄👍 #Sochi @bubwal \\r\"@BenCooper86: Brilliant! RT @Carolynoflondon: Thought you might like this!!! http://t.co/gaeRL480r0 #LGBT #Sochi2014\"\n", "\n", "--------------------------------------------------------\n", - "sochi r brilliant \n", + "sochi r \n", "\n", "\n", "#Sochi Serves All Foods ‘In the Ass' http://t.co/pzZxMvygYD #Olympics How about some #Putin in the ass? http://t.co/rXu4VSPvIT\n", @@ -62363,7 +55993,7 @@ "Do you want #sochi ice-cream? Lol http://t.co/9Nway9iToT\n", "\n", "--------------------------------------------------------\n", - "sochi ice cream lol \n", + "sochi ice cream \n", "\n", "\n", "Ice cream in the ass. Mystery solved #sochi http://t.co/Ju2C6498k8 http://t.co/CNAM1B4qbz\n", @@ -62393,7 +56023,7 @@ "OMG don't tell Putin there is a gay in Sochi #Sochi2014 #SochiProblems #SochiFail http://t.co/4LWqUlxjK6\n", "\n", "--------------------------------------------------------\n", - "omg tell putin gay sochi sochi2014 sochiproblems sochifail \n", + "tell putin gay sochi sochi2014 sochiproblems sochifail \n", "\n", "\n", "THE BIG GAY RING FINALLY CAME OUT!! #Sochi #SochiProblems #Sochi2014 #gay http://t.co/GZTptDMnX8\n", @@ -62417,7 +56047,7 @@ "@DLSpencer10 spots Welsh language menu in #sochi. Da Iawn! #sochiproblems http://t.co/Us4wJo6Qe3\n", "\n", "--------------------------------------------------------\n", - "spots welsh language menu sochi da iawn sochiproblems \n", + "spots welsh language menu sochi iawn sochiproblems \n", "\n", "\n", "Gotta love the Olympics. #sochi #pride http://t.co/GYIzfyTbPi\n", @@ -62426,12 +56056,6 @@ "gotta love olympics sochi pride \n", "\n", "\n", - "@trwldenmark: About time! #trwldk #tosochiwithlove #torussiawithlove #Sochi2014 #sochi http://t.co/OJj4WstBu4 - the missing part, Putin\n", - "\n", - "--------------------------------------------------------\n", - "time trwldk tosochiwithlove torussiawithlove sochi2014 sochi missing part putin \n", - "\n", - "\n", "I'd like to make a correction on a photo, https://t.co/2Sez4ba5UE was a photo from December mistaken for something in #Sochi. It is not...\n", "\n", "--------------------------------------------------------\n", @@ -62477,7 +56101,7 @@ "The 5th ring finally came out ;) #Sochi #Putin http://t.co/ozO16jDccZ\n", "\n", "--------------------------------------------------------\n", - "5th ring finally came sochi putin \n", + "ring finally came sochi putin \n", "\n", "\n", "I think Sochi's on the DL.... Come on out, Sochi! Don't be afraid! @sochiproblems #sochi2014 #SochiFail http://t.co/S6VmkCEpIL\n", @@ -62531,7 +56155,7 @@ "5th ring comes out #Sochi2014 #Sochi #Olympics2014 #Olympics http://t.co/Y1cQrLQz7N\n", "\n", "--------------------------------------------------------\n", - "5th ring comes sochi2014 sochi olympics2014 olympics \n", + "ring comes sochi2014 sochi olympics2014 olympics \n", "\n", "\n", "Wait, so u can get coke OR Pepsi at the same place? Sign me up #sochi #SochiProblems #lemonaidinthewhat! 😳 http://t.co/lJ1IXOokNm\n", @@ -62585,7 +56209,7 @@ "BREAKING sochi NEWS: the 5th ring has finally come out/----> http://t.co/YpqRd8A2SS\n", "\n", "--------------------------------------------------------\n", - "breaking sochi news 5th ring finally come \n", + "breaking sochi news ring finally come \n", "\n", "\n", "Who said Sochi is anti-gay? http://t.co/Y5pxKa2vxd\n", @@ -62609,13 +56233,13 @@ "Oh my God, Sochi... really? REALLY?? Was it too much to ask for a translator that actually spoke English?! LMFAO. http://t.co/JOVwFD1lDo\n", "\n", "--------------------------------------------------------\n", - "oh god sochi really really much ask translator actually spoke english lmfao \n", + "god sochi really really much ask translator actually spoke english \n", "\n", "\n", "welcome to sochi b-i-t-c-h-e-s;) http://t.co/86LPuT1A3Z\n", "\n", "--------------------------------------------------------\n", - "welcome sochi b c h \n", + "welcome sochi b h \n", "\n", "\n", "And they say Sochi isn't gay... RT @SochiEpicFails: You're putting the lemonade where?! #SochiProblems #SochiFail http://t.co/uT1aHeokiI\n", @@ -62645,7 +56269,7 @@ "This was a menu in Sochi. Cakes in ass anyone? 420 calories though, might have to pass. http://t.co/datUK3sfXS\n", "\n", "--------------------------------------------------------\n", - "menu sochi cakes ass anyone 420 calories though might pass \n", + "menu sochi cakes ass anyone calories though might pass \n", "\n", "\n", "@_youhadonejob Russian drinks translation menu at Sochi courtesy of @frister_89 http://t.co/JMdzEPuuL7\n", @@ -62669,7 +56293,7 @@ "Brace urselves the sochi is comin\\nSEND UR PHOTOS to @Fail_Sochi #sochitoilets #sochifail #sochiproblems http://t.co/fbioOoXDjJ\n", "\n", "--------------------------------------------------------\n", - "brace urselves sochi comin send ur photos sochitoilets sochifail sochiproblems \n", + "brace urselves sochi comin send photos sochitoilets sochifail sochiproblems \n", "\n", "\n", "A menu from Sochi. I wouldn't order the lemonade even if I was dying of thirst 😂 http://t.co/fvMWe7b1qb\n", @@ -62687,7 +56311,7 @@ "Oh the menu. Sochi are you mad? http://t.co/30Aw1AjIz1\n", "\n", "--------------------------------------------------------\n", - "oh menu sochi mad \n", + "menu sochi mad \n", "\n", "\n", "Another reason NOT to go to Sochi. Holy Ben and Jerry's. @BFinn86 @houseofwachs @steakshapiro #Olympics2014 http://t.co/6lDAzsZfMN\n", @@ -62711,7 +56335,7 @@ "Sleeping arrangements at the Sochi 2014 Winter Olympics. http://t.co/vN6KodIIIT\n", "\n", "--------------------------------------------------------\n", - "sleeping arrangements sochi 2014 winter olympics \n", + "sleeping arrangements sochi014 winter olympics \n", "\n", "\n", "Putin making sure that the showers in Sochi are working, http://t.co/tflUpzF4Fy\n", @@ -62732,12 +56356,6 @@ "hotels sochi bad first class upgraded room \n", "\n", "\n", - "“@sochireport: Most popular item on the menu in Sochi is \"Ice Cream in the ass.\" #SochiProblems #Sochi2014 http://t.co/4ruynxxLyz” lololol\n", - "\n", - "--------------------------------------------------------\n", - "lololol \n", - "\n", - "\n", "Doing it big in Sochi I see. http://t.co/pJyEFT6bl3\n", "\n", "--------------------------------------------------------\n", @@ -62807,7 +56425,7 @@ "What's wrong in Sochi: Day 1. Ice cream in the ass (via @bustedcoverage). http://t.co/ezwkiXV5F9 http://t.co/11XTfc0fZL\n", "\n", "--------------------------------------------------------\n", - "wrong sochi day 1 ice cream ass \n", + "wrong sochi day ice cream ass \n", "\n", "\n", "Rosetta Stone has failed Sochi. Ice cream in the ass... http://t.co/3RvSaUNWJN\n", @@ -62816,24 +56434,6 @@ "rosetta stone failed sochi ice cream ass \n", "\n", "\n", - "@morrow31: @UweMuegge @ProfessorOlsen, Sochi could use our translation & localization students... http://t.co/4liuN8wiiU <Yes sir!>\n", - "\n", - "--------------------------------------------------------\n", - "sochi could use translation localization students less yes sir greater \n", - "\n", - "\n", - "Meanwhile in Sochi .. http://t.co/1T2L7afoiT\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi \n", - "\n", - "\n", - "Welcome to Sochi:) http://t.co/JUrTIEXIQG\n", - "\n", - "--------------------------------------------------------\n", - "welcome sochi \n", - "\n", - "\n", "Menu translated into English at the Sochi Olympics...where would you like your lemonade? #SochiProblems http://t.co/jesniSOCKr\n", "\n", "--------------------------------------------------------\n", @@ -62855,7 +56455,7 @@ "Dessert in Sochi. Looks like Putin might be, um, relaxing certain governmental policies. http://t.co/bTWDidlfyc\n", "\n", "--------------------------------------------------------\n", - "dessert sochi looks like putin might um relaxing certain governmental policies \n", + "dessert sochi looks like putin might relaxing certain governmental policies \n", "\n", "\n", "Meanwhile Sochi Bathrooms #Humor http://t.co/yRbJ2ZU2Ql\n", @@ -62885,7 +56485,7 @@ "International Olympic Committee release 2014 Sochi version of \"Faster, Higher, Stronger\" Olympic motto http://t.co/kWEKG4uMoZ\n", "\n", "--------------------------------------------------------\n", - "international olympic committee release 2014 sochi version faster higher stronger olympic motto \n", + "international olympic committee release014 sochi version faster higher stronger olympic motto \n", "\n", "\n", "Coming out at the Sochi #Olympics \\n#Olympics2014 #gayrights #marriageequality http://t.co/h95mRRx0oK\n", @@ -62900,16 +56500,10 @@ "one joke sochi menus honest feeling \n", "\n", "\n", - "Meanwhile Sochi Bathrooms #9GAG http://t.co/XKVe5evSKI\n", - "\n", - "--------------------------------------------------------\n", - "meanwhile sochi bathrooms 9gag \n", - "\n", - "\n", "Oh look you can get cake with your ice cream in Sochi. #SochiFail #SochiProblems http://t.co/crCfaYB9ux\n", "\n", "--------------------------------------------------------\n", - "oh look get cake ice cream sochi sochifail sochiproblems \n", + "look get cake ice cream sochi sochifail sochiproblems \n", "\n", "\n", "They serve weird lemonade at Sochi 😂😂 http://t.co/KdIxVCIV1z\n", @@ -62945,13 +56539,7 @@ "8 Viral Sochi Olympics Photos That Are Total Lies http://t.co/77c3HxaiGE http://t.co/7tyKi5oVgS\n", "\n", "--------------------------------------------------------\n", - "8 viral sochi olympics photos total lies \n", - "\n", - "\n", - "8 Viral Sochi Olympics Photos That Are Total Lies\\n\\nhttp://t.co/RscIT8rr4l http://t.co/I9U0KMcCKV\n", - "\n", - "--------------------------------------------------------\n", - "8 viral sochi olympics photos total lies \n", + "viral sochi olympics photos total lies \n", "\n", "\n", "Viral #SochiProblems images that are fake - or not from the Sochi Olympics: http://t.co/n30lS1dCWO http://t.co/YJ6H1S3z2o\n", @@ -62963,13 +56551,13 @@ "Gambar Ini BUKAN MH370, ini adalah gambar dari insiden kapalterbang terhempas di Sicily pada 6Ogos2005 #PrayForMH370 http://t.co/Sk8ygjAva5\n", "\n", "--------------------------------------------------------\n", - "gambar ini bukan mh370 ini adalah gambar dari insiden kapalterbang terhempas di sicily pada 6ogos2005 prayformh370 \n", + "gambar mh370 gambar insiden kapalterbang terhempas sicily pada2005 prayformh370 \n", "\n", "\n", "Finally they found the MH370. Please confirm and hope fot the good news Y_Y #PrayForMH370 http://t.co/qRGccCn9yk\n", "\n", "--------------------------------------------------------\n", - "finally found mh370 please confirm hope fot good news prayformh370 \n", + "finally found mh370 please confirm hope fot good news yy prayformh370 \n", "\n", "\n", "WHEREVER YOU GO NO ONE WILL EVER KNOW\\nWhats with this advertise huh, like this's the reason MH370 never found? http://t.co/mZZ8ZG4Vic\n", @@ -62981,7 +56569,7 @@ "MH370 ? RT\"@ImGunnar: I found the plane http://t.co/kkpuL7HkBP\"\n", "\n", "--------------------------------------------------------\n", - "mh370 \n", + "mh370 rt \n", "\n", "\n", "MH370 found in near Bermuda Triangle http://t.co/IUH9jBKlVt\n", @@ -62999,13 +56587,13 @@ "Hoax bro, walaupun ada gambar / videonya .... @sayfull46: MH370 found in near Bermuda Triangle http://t.co/Had1DjqYJl\"\n", "\n", "--------------------------------------------------------\n", - "hoax bro walaupun ada gambar videonya mh370 found near bermuda triangle \n", + "hoax gambar videonya \n", "\n", "\n", "I check the headlines like 20 times a day hoping to see that MH370 is found, this is the best headline yet http://t.co/lE8ZKQO1DF\n", "\n", "--------------------------------------------------------\n", - "check headlines like 20 times day hoping see mh370 found best headline yet \n", + "check headlines like0 times day hoping see mh370 found best headline yet \n", "\n", "\n", "“@270512: LMFAO !!!! http://t.co/3GUPxa3Iud”MH370 found\n", @@ -63026,12 +56614,6 @@ "real mh370 \n", "\n", "\n", - "@EXOffical_: I hope this is happening #PrayForMH370 http://t.co/P7b9JIGQ8G harap sgt2 jumpa MH370 dlm keadaan ni. :'(\n", - "\n", - "--------------------------------------------------------\n", - "hope happening prayformh370 harap sgt2 jumpa mh370 dlm keadaan \n", - "\n", - "\n", "Ya Allah, eventhough this is not real, but i hope this will happened to MH370. #PrayForMH370 http://t.co/J7viHjkmfQ\n", "\n", "--------------------------------------------------------\n", @@ -63065,7 +56647,7 @@ "Russia are now saying that flight MH370 was hijacked and taken to Afganistan, what is even going on haha http://t.co/keTVUmYKhT\n", "\n", "--------------------------------------------------------\n", - "russia saying flight mh370 hijacked taken afganistan even going haha \n", + "russia saying flight mh370 hijacked taken afganistan even going \n", "\n", "\n", "@Noddyshot now u can stop asking me and @LoubieSav where the MH370 is http://t.co/E3SfJuK4j4\n", @@ -63107,7 +56689,7 @@ "desgraciadamente parece que se confirma que el MH370 se ha estrellado en el mar con 239 pasajeros dos de ellos niños http://t.co/ZPfjgg3KS9\n", "\n", "--------------------------------------------------------\n", - "desgraciadamente parece confirma mh370 estrellado mar 239 pasajeros dos niños \n", + "desgraciadamente parece confirma mh370 seestrellado mar con39 pasajeros niños \n", "\n", "\n", "Found the lost Malaysian plane. Anyone got cash? http://t.co/LmBUYDiXgD\n", @@ -63119,31 +56701,31 @@ "@wangmyun tapi mh370 kata kata promosi nya juga http://t.co/3iAudcx7bn\n", "\n", "--------------------------------------------------------\n", - "tapi mh370 kata kata promosi nya juga \n", + "mh370 promosi nya \n", "\n", "\n", "@Boeing777_ il est là 好像找到MH370了 map654342 http://t.co/udR5q2QbBK\n", "\n", "--------------------------------------------------------\n", - "il est là 好像找到mh370了 map654342 \n", + "là 好像找到mh370了 map654342 \n", "\n", "\n", "La découverte de #CourtneyLove sur le vol MH370 parodiée http://t.co/DBvPexk53P\n", "\n", "--------------------------------------------------------\n", - "découverte courtneylove sur vol mh370 parodiée \n", + "découverte courtneylove vol mh370 parodiée \n", "\n", "\n", "กู้ภัยเวียดนามพบวัตถุ ห่าง 80 กม.ทางตอนใต้ของเกาะโถเจา เวียดนาม คาดอาจเป็นประตู-หางของ MH370 รอบินตรวจสอบพรุ่งนี้ http://t.co/QOsmoLTNsg\n", "\n", "--------------------------------------------------------\n", - "ก ภ ยเว ยดนามพบว ตถ ห าง 80 กม ทางตอนใต ของเกาะโถเจา เว ยดนาม คาดอาจเป นประต หางของ mh370 รอบ นตรวจสอบพร งน \n", + "ก ภ ยเว ยดนามพบว ตถ ห าง0 กม ทางตอนใต ของเกาะโถเจา เว ยดนาม คาดอาจเป นประต หางของ mh370 รอบ นตรวจสอบพร งน \n", "\n", "\n", "क्या मिल गया 17 दिन से लापता मलेशियाई विमान MH370? फेसबुक पर तस्वीरें!\\nhttp://t.co/6zROgiaGqj http://t.co/DEKEln5ypi\n", "\n", "--------------------------------------------------------\n", - "क य म ल गय 17 द न स ल पत मल श य ई व म न mh370 फ सब क पर तस व र \n", + "क य म ल गय 7 द न स ल पत मल श य ई व म न mh370 फ सब क पर तस व र \n", "\n", "\n", "「MH370便、バミューダ島沖で発見!」 というネタでリンク踏ませて個人情報抜く人がいるんだってさ http://t.co/Cn2ggnKYz5\n", @@ -63155,7 +56737,7 @@ "Τι κρύβεται πίσω από τη χαμένη πτήση MH370; http://t.co/JAbpQEzwMt http://t.co/7SRCwNAZSM\n", "\n", "--------------------------------------------------------\n", - "τι κρύβεται πίσω από τη χαμένη πτήση mh370 \n", + "τι κρύβεται ίσω αό τη χαμένη τήση mh370 \n", "\n", "\n", "เผยภาพ ! เครื่องบินในป่าทึบ ที่คาดว่าอาจเป็นเที่ยวบิน MH370 ที่หายไป ... http://t.co/6sj3FNZyrI - http://t.co/9v1zXy06nf\n", @@ -63173,25 +56755,25 @@ "Tweet daripada Maira Elizabeth iaitu anak kepada Ketua Steward, Andrew Nari yang berada dalam pesawat MAS MH370. http://t.co/Dk4uWMNp8Y\n", "\n", "--------------------------------------------------------\n", - "tweet daripada maira elizabeth iaitu anak kepada ketua steward andrew nari yang berada dalam pesawat mas mh370 \n", + "tweet maira elizabeth iaitu anak ketua steward andrew nari pesawat mh370 \n", "\n", "\n", "Courtney Love a sa petite théorie sur la disparition du vol MH370. http://t.co/WMnq5M4BlZ http://t.co/Cx46orfWSM\n", "\n", "--------------------------------------------------------\n", - "courtney love sa petite théorie sur disparition vol mh370 \n", + "courtney love petite théorie disparition vol mh370 \n", "\n", "\n", "@ridwankamil @detikcom pesawt MH370 juga dijual di dunia maya, kang http://t.co/FEeNHHfbOk\n", "\n", "--------------------------------------------------------\n", - "pesawt mh370 juga dijual di dunia maya kang \n", + "pesawt mh370 dijual dunia maya kang \n", "\n", "\n", "Saya tak nak MH370 jadi macam ni....... http://t.co/PiIRTqEiha\n", "\n", "--------------------------------------------------------\n", - "saya tak nak mh370 jadi macam \n", + "nak mh370 \n", "\n", "\n", "@newscomauHQ enough with the misleading headlines on mh370. #mh370 http://t.co/gmkYWVbf4S\n", @@ -63200,12 +56782,6 @@ "enough misleading headlines mh370 mh370 \n", "\n", "\n", - "@PuspitaFM: #JMR Kembali Ditemukan, Gambar Pesawat Diduga MH370| via: @tempodotco\\nhttp://t.co/qKfKVWvGGp http://t.co/1DM922rsXs\n", - "\n", - "--------------------------------------------------------\n", - "jmr kembali ditemukan gambar pesawat diduga mh370 via \n", - "\n", - "\n", "Foto MH370 dan Teori Konspirasi http://t.co/Hlm5oljkGH #MH370 http://t.co/Za4ABLXYTx\n", "\n", "--------------------------------------------------------\n", @@ -63215,13 +56791,13 @@ "海军 #越南 轨迹显示设备已经在海洋观看影像> #北京 #日本 #台北 MH370 #MalaysiaAirlines http://t.co/El2qIF7BaA http://t.co/tTmCSJuM2A\n", "\n", "--------------------------------------------------------\n", - "海军 越南 轨迹显示设备已经在海洋观看影像 greater 北京 日本 台北 mh370 malaysiaairlines \n", + "海军 越南 轨迹显示设备已经在海洋观看影像 北京 日本 台北 mh370 malaysiaairlines \n", "\n", "\n", "Mahasiswa Taiwan Tangkap Gambar Pesawat di Tengah Hutan, MAS MH370? http://t.co/xYBupjLthF http://t.co/41VllBNTkL\n", "\n", "--------------------------------------------------------\n", - "mahasiswa taiwan tangkap gambar pesawat di tengah hutan mas mh370 \n", + "mahasiswa taiwan tangkap gambar pesawat hutan mh370 \n", "\n", "\n", "ジャングルのなかにある機影。はたしてMH370か?RT @sirinapa_kcl เผยภาพ! เครื่องบินสีขาวในป่าทึบที่คาดว่าอาจเป็น http://t.co/DQO78xVnx2 http://t.co/e2evmv0ztQ\n", @@ -63230,16 +56806,10 @@ "ジャングルのなかにある機影 はたしてmh370か \n", "\n", "\n", - "@ffaisalburn: Wow. “@politaiko: Terkini, Israel sudah kecut dengan MH370 \" - rare News http://t.co/1dJELax2lD”\"\n", - "\n", - "--------------------------------------------------------\n", - "wow \n", - "\n", - "\n", "Lagu pitbull ada kena mengena dgn mh370. Bukti segalanya telah dirancang amerika http://t.co/0sIgLmqOiI\n", "\n", "--------------------------------------------------------\n", - "lagu pitbull ada kena mengena dgn mh370 bukti segalanya telah dirancang amerika \n", + "lagu pitbull kena mengena dgn mh370 bukti dirancang amerika \n", "\n", "\n", "THIS WAS AN OLD ADVERTISEMENT OMG WERE THEY GIVING US A HINT ABOUT MH370??? SCARYYY http://t.co/k9beAPEoma\n", @@ -63251,7 +56821,7 @@ "MH370 Closeup of the 24m debris. (from AMSA provided image). http://t.co/gNHVaeyMZp\n", "\n", "--------------------------------------------------------\n", - "mh370 closeup 24m debris amsa provided image \n", + "mh370 closeup the4m debris amsa provided image \n", "\n", "\n", "Ja, Ze maken het wel waar! mh370 http://t.co/CVzITSTaLi\n", @@ -63269,13 +56839,13 @@ "Kata2 dlam promosi ini bisa menjadi doa yg m'buat MH370 susah utk d temukan \"Wherever yoy go, No one will ever knew\" http://t.co/7JVYPi3w4z\n", "\n", "--------------------------------------------------------\n", - "kata2 dlam promosi ini bisa menjadi doa yg buat mh370 susah utk temukan wherever yoy go one ever knew \n", + "kata2 dlam promosi doa yg mh370 susah utk temukan wherever yoy go one ever knew \n", "\n", "\n", "Istri Kurt Cobain Klaim Temukan Pesawat MAS MH370 yang Hilang http://t.co/FxJ1hOv8Hx http://t.co/ZKxmCvlEsv\n", "\n", "--------------------------------------------------------\n", - "istri kurt cobain klaim temukan pesawat mas mh370 yang hilang \n", + "istri kurt cobain klaim temukan pesawat mh370 hilang \n", "\n", "\n", "Consideran prematura una búsqueda submarina del MH370 http://t.co/1Z4HJsGpOK http://t.co/ZkEiLZQBKa\n", @@ -63287,7 +56857,7 @@ "Supuesta foto del 777 vuelo MH370 sobre la selva de Malasia http://t.co/YZQDnyTZMW\n", "\n", "--------------------------------------------------------\n", - "supuesta foto 777 vuelo mh370 selva malasia \n", + "supuesta foto del77 vuelo mh370 selva malasia \n", "\n", "\n", "@cjwerleman But considering your fascination w/MH370, this might be the time to go for it ;) \\nhttps://t.co/7jjCKBfwjV http://t.co/Go8VBwWeSc\n", @@ -63311,7 +56881,7 @@ "Προσοχή στη νέα απάτη μέσω Facebook: “Εντοπίστηκε το αεροπλάνο της Μαλαισίας MH370” http://t.co/wkZXKxHoKQ http://t.co/Is6IM0k98t\n", "\n", "--------------------------------------------------------\n", - "προσοχή στη νέα απάτη μέσω facebook εντοπίστηκε το αεροπλάνο της μαλαισίας mh370 \n", + "ροσοχή στη νέα αάτη μέσω facebook εντοίστηκε το αερολάνο της μαλαισίας mh370 \n", "\n", "\n", "Hopefully this will happen on MH370 #PrayForMH370 http://t.co/bdATGTieID\n", @@ -63341,7 +56911,7 @@ "0Boleh percaya ke perisik rusia. keep praying for mh370 http://t.co/tXOGzX1D6l\n", "\n", "--------------------------------------------------------\n", - "0boleh percaya ke perisik rusia keep praying mh370 \n", + "percaya perisik rusia keep praying mh370 \n", "\n", "\n", "Skönt ändå, att Courtney Love gett sig in i sökandet efter MH370 http://t.co/qTENLYkym5\n", @@ -63359,7 +56929,7 @@ "Wow, Courtney Love Tahu Posisi Pasti Pesawat MH370! http://t.co/2MUeNuPshp http://t.co/hCdhciA6kw\n", "\n", "--------------------------------------------------------\n", - "wow courtney love tahu posisi pasti pesawat mh370 \n", + "courtney love posisi pesawat mh370 \n", "\n", "\n", "Fake photos of the crashed MH370 become available! Pls don't believe! http://t.co/AI7SWqfgVQ\n", @@ -63389,25 +56959,19 @@ "GEMPAR! MH370 dijumpai berjaya melakukan pendaratan kecemasan atas air. #BeritaHavoc #Sembang #Fake #nakjugak http://t.co/OgfU5nPktm\n", "\n", "--------------------------------------------------------\n", - "gempar mh370 dijumpai berjaya melakukan pendaratan kecemasan atas air beritahavoc sembang fake nakjugak \n", + "gempar mh370 dijumpai berjaya pendaratan kecemasan air beritahavoc sembang fake nakjugak \n", "\n", "\n", "Esok shooting ucapan utk TV Al-Hijrah tentang pesawat MH370. http://t.co/WEaqKU1MTj\n", "\n", "--------------------------------------------------------\n", - "esok shooting ucapan utk tv hijrah tentang pesawat mh370 \n", + "esok shooting ucapan utk tv hijrah pesawat mh370 \n", "\n", "\n", "#SiguesDespierto Satélite tailandés localiza 300 posibles objetos del vuelo MH370 http://t.co/3JWmPCnddK http://t.co/ynOEV0SWEX\n", "\n", "--------------------------------------------------------\n", - "siguesdespierto satélite tailandés localiza 300 posibles objetos vuelo mh370 \n", - "\n", - "\n", - "@fzdotcom: The .... pictures here http://t.co/Wd5qC21eQX http://t.co/hS0Hvr1zHA Compilation of pictures re MH370 from various sources.\n", - "\n", - "--------------------------------------------------------\n", - "pictures compilation pictures mh370 various sources \n", + "siguesdespierto satélite tailandés localiza00 posibles objetos vuelo mh370 \n", "\n", "\n", "via @王左中右 针对MH370坠落在越南海岸153海里处的消息,负责这一区域的越南海军上将Ngo Van Phat 刚对《华尔街日报》说,那个地点是马来西亚当局和飞机失联的地点,越南海军现在也不知道飞机的具体位置以及发生了什么…… http://t.co/tcbOogzl4Z\n", @@ -63425,13 +56989,13 @@ "Que lo de que Courtney Love ha encontrado el MH370 viendo fotos en internet lo ha dicho ella, eh: http://t.co/qNYg0FVwqJ\n", "\n", "--------------------------------------------------------\n", - "courtney love encontrado mh370 viendo fotos internet dicho eh \n", + "courtney loveencontrado mh370 viendo fotos internet lodicho eh \n", "\n", "\n", "Satélite tailandés localiza 300 posibles objetos del vuelo MH370 http://t.co/X39nsxPFtn #MalaysiaAirlines http://t.co/ynOEV0SWEX\n", "\n", "--------------------------------------------------------\n", - "satélite tailandés localiza 300 posibles objetos vuelo mh370 malaysiaairlines \n", + "satélite tailandés localiza00 posibles objetos vuelo mh370 malaysiaairlines \n", "\n", "\n", "Courtney Love creyó que había encontrado el MH370 (pero no lo hizo) #Courtney #Love http://t.co/YEXtC070JJ\n", @@ -63458,18 +57022,6 @@ "เผยภาพ เคร องบ นส ขาวในป าท บท คาดว าอาจเป นเท ยวบ น mh370 ท หายไปอย างล กล บ คมช ดล ก \n", "\n", "\n", - "@QuranSpeak: Before talking about MH370. http://t.co/BxGf52klFE\n", - "\n", - "--------------------------------------------------------\n", - "talking mh370 \n", - "\n", - "\n", - "@pranot: เวียดนามเผยแพร่ภาพชิ้นส่วนเครื่องบิน มาเลเซียแอร์ไลน์ เที่ยงบิน MH370 http://t.co/YHH2ayjGn9\n", - "\n", - "--------------------------------------------------------\n", - "เว ยดนามเผยแพร ภาพช นส วนเคร องบ น มาเลเซ ยแอร ไลน เท ยงบ น mh370 \n", - "\n", - "\n", "ภาพวัตถุลอยน้ำที่เวียดนามค้นพบ เมื่อช่วงค่ำวันนี้ ยังไม่ยืนยันว่าเกี่ยวข้องอะไรกับ MH370 http://t.co/7ImVK74D8z http://t.co/4BSJnDw4sI\n", "\n", "--------------------------------------------------------\n", @@ -63485,7 +57037,7 @@ "Air France tragedi on 2009 takes 5 days for 1st clue and 2 years for blackbox. Now MH370 baru 1st day. SABAR. http://t.co/xbVoV83Pep\n", "\n", "--------------------------------------------------------\n", - "air france tragedi 2009 takes 5 days first clue 2 years blackbox mh370 baru first day sabar \n", + "air france tragedi on009 takes days first clue years blackbox mh370 first day sabar \n", "\n", "\n", "«Flug MH370 gefunden»: Betrüger locken Facebook-Nutzer mit Video in die Falle http://t.co/ZUCpiHXoFt via @mimikama_at http://t.co/luaYPaT78a\n", @@ -63497,37 +57049,31 @@ "Jangan mudah percaya dgn spekulasi di twitter & facebook. Ini bukan gambar flight MH370 http://t.co/PSK43gLXkB #PrayForMH370\n", "\n", "--------------------------------------------------------\n", - "jangan mudah percaya dgn spekulasi di twitter facebook ini bukan gambar flight mh370 prayformh370 \n", + "mudah percaya dgn spekulasi twitter facebook gambar flight mh370 prayformh370 \n", "\n", "\n", "Klarifikasi : Foto ini BUKAN foto B777 MH370. It's not a photo of B777 MH370. Ini foto ATR-72 Tunisian thn 2005 http://t.co/PjjMxZq4ux\n", "\n", "--------------------------------------------------------\n", - "klarifikasi foto ini bukan foto b777 mh370 photo b777 mh370 ini foto atr 72 tunisian thn 2005 \n", + "klarifikasi foto foto b777 mh370 photo b777 mh370 foto atr2 tunisian thn005 \n", "\n", "\n", "De fausses alertes pour le vol MH370 se propagent sur les réseaux sociaux http://t.co/tkRfYMSA8m #rappel http://t.co/9Yzo1i4rwF\n", "\n", "--------------------------------------------------------\n", - "fausses alertes pour vol mh370 propagent sur réseaux sociaux rappel \n", + "fausses alertes vol mh370 propagent réseaux sociaux rappel \n", "\n", "\n", "Semoga ini yg trjadi pada penumpang MH370...amin... http://t.co/gwqaQKEvE6\n", "\n", "--------------------------------------------------------\n", - "semoga ini yg trjadi pada penumpang mh370 amin \n", - "\n", - "\n", - "Les gars, on se détend.\\n\\n[@Noisey_FR] TOUT VA BIEN : COURTNEY LOVE A RETROUVÉ LE VOL MH370 http://t.co/TBKmMsDOXS http://t.co/16m91P8aGb\n", - "\n", - "--------------------------------------------------------\n", - "gars détend tout va bien cou \n", + "semoga yg trjadi penumpang mh370 amin \n", "\n", "\n", "• http://t.co/S4fWFHVm7r • Bermuda Triangle 510 • The world s great mysteries: Malaysian flight MH370, Bermuda Trian… http://t.co/0M8I9RZYSw\n", "\n", "--------------------------------------------------------\n", - "bermuda triangle 510 world great mysteries malaysian flight mh370 bermuda trian \n", + "bermuda triangle10 world great mysteries malaysian flight mh370 bermuda trian \n", "\n", "\n", "Supuestos escombros del B777 del MH370,búsqueda en aguas Vietnamitas @TrafficAirColom @Aero_Dato @VadeAviones http://t.co/e2sg0woxsW\n", @@ -63554,12 +57100,6 @@ "ดาวเท ยมจ บภาพเคร องบ น เหน อป าท บ อาจเป น mh370 springnews \n", "\n", "\n", - "Le Christ ? /// RT @bertrand_k: Le Boeing ? RT @KurosakiSamurai\\n好像找到MH370了 map654342 http://t.co/t8oV1Uorzl\n", - "\n", - "--------------------------------------------------------\n", - "christ \n", - "\n", - "\n", "好像找到MH370了,map654342 http://t.co/xhuE8hanAW\n", "\n", "--------------------------------------------------------\n", @@ -63611,7 +57151,7 @@ "FOTO: Kembali Ditemukan, Gambar Satelit Pesawat Diduga MH370 http://t.co/s7C6Fvt6ld http://t.co/0UtZYgjHcT\n", "\n", "--------------------------------------------------------\n", - "foto kembali ditemukan gambar satelit pesawat diduga mh370 \n", + "foto ditemukan gambar satelit pesawat diduga mh370 \n", "\n", "\n", "Bajan posibilidades de encontrar cajas negras del vuelo MH370 http://t.co/uzi8GH7x1d #acn http://t.co/O66iTL4HVY\n", @@ -63623,7 +57163,7 @@ "MH370 Pilots able to land a 777 in forest without damages. VTOL capabilities ? --> Huge doubts abt ChinaTimes pict. http://t.co/A5VbBUPVlG\n", "\n", "--------------------------------------------------------\n", - "mh370 pilots able land 777 forest without damages vtol capabilities huge doubts abt chinatimes pict \n", + "mh370 pilots able land a77 forest without damages vtol capabilities huge doubtschinatimes pict \n", "\n", "\n", "These Parts Belong to the MH370? http://t.co/zjaol3Glcs #MH370 #MH370LIVE #Boeing777MalaysianAirlines http://t.co/6vo2DCedRw\n", @@ -63647,19 +57187,19 @@ "Terkini, Israel sudah kecut dengan MH370 - rare News http://t.co/QsG4fP0MTz\n", "\n", "--------------------------------------------------------\n", - "terkini israel sudah kecut dengan mh370 rare news \n", + "terkini israel kecut mh370 rare news \n", "\n", "\n", "“@marioman3138: @BreeOlson What do you think happened to MH370?” < My OPINION: http://t.co/6TPasqRwdP\n", "\n", "--------------------------------------------------------\n", - "less opinion \n", + "opinion \n", "\n", "\n", "Harap ini yg berlaku bila MH370 ditemui\\n\\n#PrayForMH370 http://t.co/aogi3oVDHF\n", "\n", "--------------------------------------------------------\n", - "harap ini yg berlaku bila mh370 ditemui prayformh370 \n", + "harap yg berlaku mh370 ditemui prayformh370 \n", "\n", "\n", "¿MH370? RT PLIS http://t.co/ZnVCY3vfMT\n", @@ -63671,7 +57211,7 @@ "26 países buscan el avión MH370 de Malaysia Airlines y... ¡@Courtney Love lo ha encontrado!\\nhttp://t.co/bVmKOvw2uf http://t.co/IflIi6PCae\n", "\n", "--------------------------------------------------------\n", - "26 países buscan avión mh370 malaysia airlines love encontrado \n", + "6 países buscan avión mh370 malaysia airlines love loencontrado \n", "\n", "\n", "#UltimaHora: Difunden la imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 @Nicaragua905 http://t.co/uvuOia0IZw\n", @@ -63713,13 +57253,7 @@ "Difunden la imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 http://t.co/ODpOcoqjnL via RT http://t.co/YEwW8NXRZ5\n", "\n", "--------------------------------------------------------\n", - "difunden imagen avión sobrevolando selva malasia podría ser mh370 via \n", - "\n", - "\n", - "Encuentran imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 http://t.co/m0K1ymiYyR http://t.co/edUc9astJX”\n", - "\n", - "--------------------------------------------------------\n", - "encuentran imagen avión sobrevolando selva malasia podría ser mh370 \n", + "difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", "\n", "\n", "#Inter: Difunden la imagen de un avión sobrevolando la selva de #Malasia que podría ser el MH370 http://t.co/c12EKcm1mn\n", @@ -63728,28 +57262,10 @@ "inter difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", "\n", "\n", - "imagen de un #avión sobrevolando la selva de #Malasia que podría ser el MH370 http://t.co/uRamfugszn http://t.co/bKtKxqZuQU\" @palizdaniel\n", - "\n", - "--------------------------------------------------------\n", - "imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", - "Encuentran imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 http://t.co/QfDWSpV8WF http://t.co/iCASjGjT6Q\n", - "\n", - "--------------------------------------------------------\n", - "encuentran imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", "#TituMundo: Difunden imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370. Cortesía: RT. http://t.co/0EtN4nZDtl\n", "\n", "--------------------------------------------------------\n", - "titumundo difunden imagen avión sobrevolando selva malasia podría ser mh370 cortesía rt \n", - "\n", - "\n", - "Encuentran imagen de un #avión sobrevolando la selva de #Malasia que podría ser el MH370 http://t.co/I1ZMMsw2IZ http://t.co/eE4MLjjglq\n", - "\n", - "--------------------------------------------------------\n", - "encuentran imagen avión sobrevolando selva malasia podría ser mh370 \n", + "titumundo difunden imagen avión sobrevolando selva malasia podría ser mh370 cortesía \n", "\n", "\n", "Encuentran imagen de un #avión que podría ser el MH370 http://t.co/LaE15O0C7B http://t.co/IgUWwXFzBh\n", @@ -63758,12 +57274,6 @@ "encuentran imagen avión podría ser mh370 \n", "\n", "\n", - "Difunden imagen de un #avión sobrevolando la selva de #Malasia que podría ser el MH370 http://t.co/I1ZMMsw2IZ http://t.co/eE4MLjjglq\n", - "\n", - "--------------------------------------------------------\n", - "difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", "Difunden imagen avión sobrevolando selva de #Malasia q podría ser el MH370. vía @ActualidadRT \\nhttp://t.co/MEB7ee7WHE http://t.co/qEokjdxViL\n", "\n", "--------------------------------------------------------\n", @@ -63776,22 +57286,10 @@ "difunden imagen avión sobrevolando selva malasia podría ser mh370 tropa \n", "\n", "\n", - "Difunden la imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370 http://t.co/uH3nfe6xaz\n", - "\n", - "--------------------------------------------------------\n", - "difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", - "“Difunden imagen de un avión sobrevolando la selva de Malasia que podría ser el MH370\"\\nhttp://t.co/5TeUvrPzve \\nhttp://t.co/wGhbuM0pxp\\n/Será?\n", - "\n", - "--------------------------------------------------------\n", - "difunden imagen avión sobrevolando selva malasia podría ser mh370 \n", - "\n", - "\n", "654342 不知道是什么飞机 RT @sunshaoan: Missing Airplane: Malaysia Airlines MH370 http://t.co/43UzQ9n5b2 http://t.co/mz8gJLuM67\n", "\n", "--------------------------------------------------------\n", - "654342 不知道是什么飞机 \n", + "不知道是什么飞机 \n", "\n", "\n", "Missing Airplane: Malaysia Airlines MH370 http://t.co/ESwVHhMdjE http://t.co/JwiljehySn\n", @@ -63869,7 +57367,7 @@ "11°34'36.2\"N 92°40'49.5\"E RT @sunshaoan: Missing Airplane: Malaysia Airlines MH370 http://t.co/43UzQ9n5b2 http://t.co/mz8gJLuM67\n", "\n", "--------------------------------------------------------\n", - "11 34 36 2 n 92 40 49 5 \n", + "6 n209 \n", "\n", "\n", "Door and tail fragment of Malaysia flight MH370 possibly found: Vietnam: http://t.co/iz9m7o7UyF http://t.co/7ADAQa2b77\n", @@ -63917,25 +57415,25 @@ "Pintu Pesawat Malaysia Airlines MH370 Ditemukan? Ternyata diduga ada 2 orang penumpang ilegal.\\nhttp://t.co/u71izy5oay http://t.co/UK7xaGdjIZ\n", "\n", "--------------------------------------------------------\n", - "pintu pesawat malaysia airlines mh370 ditemukan ternyata diduga ada 2 orang penumpang ilegal \n", + "pintu pesawat malaysia airlines mh370 ditemukan diduga orang penumpang ilegal \n", "\n", "\n", "Beredar link hoax di Facebook, Video of Malaysia MH370 Plane found in Bermuda Triangle, Passengers Alive! http://t.co/VuVT8vzmKP\n", "\n", "--------------------------------------------------------\n", - "beredar link hoax di facebook video malaysia mh370 plane found bermuda triangle passengers alive \n", + "beredar link hoax facebook video malaysia mh370 plane found bermuda triangle passengers alive \n", "\n", "\n", "@indoflyer puing yg ditemukan di laut diyakini merupakan bagian dari Malaysia Airlines MH370 http://t.co/E9TimHeZOj http://t.co/v9StMKt70x\n", "\n", "--------------------------------------------------------\n", - "puing yg ditemukan di laut diyakini merupakan bagian dari malaysia airlines mh370 \n", + "puing yg ditemukan laut diyakini malaysia airlines mh370 \n", "\n", "\n", "Malaysia Airlines ad a few years ago! Ironic The irony of this commercial of 2 yrs back......... Where MH370 is! http://t.co/FyHU7e2eqn\n", "\n", "--------------------------------------------------------\n", - "malaysia airlines ad years ago ironic irony commercial 2 yrs back mh370 \n", + "malaysia airlines ad years ago ironic irony commercial yrs back mh370 \n", "\n", "\n", "https://t.co/XXh56SQFB0\\nMalaysia MH370 Plane Found In Bermuda Triangle passengers are alive http://t.co/qHLI0qRybx\n", @@ -63983,7 +57481,7 @@ "Nous on sait tout. La vérité globale sur le vol MH370 de Malaysia Airlines par @KoliaDelesalle http://t.co/GGwSMNAwWV http://t.co/KI3Cy9bJ8R\n", "\n", "--------------------------------------------------------\n", - "nous sait tout vérité globale sur vol mh370 malaysia airlines par \n", + "sait tout vérité globale vol mh370 malaysia airlines \n", "\n", "\n", "A picture taken by a Vietnamese search team shows that may be debris from the Malaysia Airlines plane MH370 http://t.co/avpDoN2RDw\n", @@ -64019,19 +57517,7 @@ "@ballardian Courtney Love thinks she may have found missing Malaysian plane http://t.co/0ozCcaeWhm haha http://t.co/plPbIO0SXd\n", "\n", "--------------------------------------------------------\n", - "courtney love thinks may found missing malaysian plane haha \n", - "\n", - "\n", - "@MetroUK: Courtney Love thinks she’s found the missing Malaysian plane http://t.co/D94cK6Rqbd http://t.co/6W9yszBl9q\n", - "\n", - "--------------------------------------------------------\n", - "courtney love thinks found missing malaysian plane \n", - "\n", - "\n", - "Courtney Love thinks she may have found MH370 http://t.co/5BokPkaGbC\n", - "\n", - "--------------------------------------------------------\n", - "courtney love thinks may found mh370 \n", + "courtney love thinks may found missing malaysian plane \n", "\n", "\n", "Courtney Love: I may have found missing Malaysian plane http://t.co/vvGTgQIeV0 #Tech http://t.co/tcNcwd7q30\n", @@ -64040,12 +57526,6 @@ "courtney love may found missing malaysian plane tech \n", "\n", "\n", - "“@POLICEINFLA: IS IT POSSIBLE ROCKER COURTNEY LOVE HAS FOUND MISSING MALAYSIAN PLANE? WHAT DO YOU SEE? http://t.co/IdwYll8kEu”\n", - "\n", - "--------------------------------------------------------\n", - "possible rocker cou \n", - "\n", - "\n", "IS IT POSSIBLE ROCKER COURTNEY LOVE HAS FOUND MISSING MALAYSIAN PLANE? WHAT DO YOU SEE? http://t.co/6pKmmfkoj6\n", "\n", "--------------------------------------------------------\n", @@ -64090,13 +57570,7 @@ "\n", "'I'm no expert but': Courtney Love thought she found MH370 (but didn't) via @YahooNewsDigest http://t.co/7QFAbZWXEg\n", "\n", - "--------------------------------------------------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "--------------------------------------------------------\n", "expert courtney love thought found mh370 \n", "\n", "\n", @@ -64127,7 +57601,7 @@ "#PrayForMH370 ini gambar TIPU !pray for MH370 semoga #MH370 semua dalam keadaan baik dan selamat #SEBARKAN http://t.co/fqQyzoQeeD\n", "\n", "--------------------------------------------------------\n", - "prayformh370 ini gambar tipu pray mh370 semoga mh370 semua dalam keadaan baik selamat sebarkan \n", + "prayformh370 gambar tipu pray mh370 semoga mh370 selamat sebarkan \n", "\n", "\n", "Is this true? Pray for MH370. 😣 http://t.co/9IctG38grV\n", @@ -64145,25 +57619,19 @@ "PRAY for MH370\\nKami mendoakan agar semua penumpang MH370 terselamat seperti didalam gambar ini. amenn http://t.co/5OZfvArYlZ\n", "\n", "--------------------------------------------------------\n", - "pray mh370 kami mendoakan agar semua penumpang mh370 terselamat seperti didalam gambar ini amenn \n", + "pray mh370 mendoakan penumpang mh370 terselamat didalam gambar amenn \n", "\n", "\n", "Berdoa Supaya Terjadi Macam Ni. AMIN . Pray For MH370 :') http://t.co/JOspwpdMUL\n", "\n", "--------------------------------------------------------\n", - "berdoa supaya terjadi macam amin pray mh370 \n", - "\n", - "\n", - "“@evanchong17: If this happened, it really is a good day today. #PrayForMH370 http://t.co/vyGVpK8GOB”\\nPray for MH370\n", - "\n", - "--------------------------------------------------------\n", - "pray mh370 \n", + "berdoa amin pray mh370 \n", "\n", "\n", "http://t.co/QxWFzZgEap dicen q este es el MH370, pero no veo huella alguna de aterrizaje. Yq yo sepa el 777 no es VTOL\n", "\n", "--------------------------------------------------------\n", - "dicen q mh370 veo huella alguna aterrizaje yq sepa 777 vtol \n", + "dicen q mh370 veo huella alguna aterrizaje yqsepa el77 vtol \n", "\n", "\n", "InsyaAllah Allah SWT will save all crews & passengers Malaysia Airlines MH370\\nI hope this is happening #PrayForMH370 http://t.co/d826pln35B\n", @@ -64175,31 +57643,19 @@ "รูปที่มั่วกันในเน็ตรูปนี้ จริงๆเป็นเที่ยวบิน US1549 ตกในแม่น้ำฮัตสันปี 2009 นะจ้ะ ไม่ใช่ MH370 \\n\\nhttp://t.co/DAsOxXIxCD via @Dixie_Yankee\n", "\n", "--------------------------------------------------------\n", - "ร ปท ม วก นในเน ตร ปน จร งๆเป นเท ยวบ น us1549 ตกในแม น ำฮ ตส นป 2009 นะจ ะ ไม ใช mh370 \n", - "\n", - "\n", - "@lBreakingNews: Malaysian Airlines ‘MH350’ has been found in bay.\\nhttp://t.co/cpqRdhe0n4 http://t.co/uv8ktKCNL3 the plane's red and white.\n", - "\n", - "--------------------------------------------------------\n", - "malaysian airlines mh350 found bay plane red white \n", - "\n", - "\n", - "@lBreakingNews: Malaysian Airlines ‘MH350’ has been found in bay.\\nhttp://t.co/9EVP6QrKtt http://t.co/t0KkfvcDld it is MH370 dude not 350!\n", - "\n", - "--------------------------------------------------------\n", - "malaysian airlines mh350 found bay mh370 dude 350 \n", + "ร ปท ม วก นในเน ตร ปน จร งๆเป นเท ยวบ น us1549 ตกในแม น ำฮ ตส นป9 นะจ ะ ไม ใช mh370 \n", "\n", "\n", "“@lBreakingNews: Malaysian Airlines ‘MH350’ has been found in bay.\\nhttp://t.co/PoDQjxfi9a http://t.co/vZnNfFgV4F” ur stupid its flight mh370\n", "\n", "--------------------------------------------------------\n", - "ur stupid flight mh370 \n", + "stupid flight mh370 \n", "\n", "\n", "“@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/m4GpOkDYsR http://t.co/uZcNVn0Tfe”toy plane in a pond FOH\n", "\n", "--------------------------------------------------------\n", - "toy plane pond foh \n", + "toy plane pond f \n", "\n", "\n", "“@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay. http://t.co/j46NCvLBts” this is a propeller plane in a shallow lake\n", @@ -64214,12 +57670,6 @@ "plane bigger \n", "\n", "\n", - "@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/LbGKt7Ibwo http://t.co/mqpkxrMCCy\\n\\nWRONG PLANE\n", - "\n", - "--------------------------------------------------------\n", - "breaking malaysian flight 370 found bay wrong plane \n", - "\n", - "\n", "“@OfflcialCNN: BREAKING: Malaysian Flight 370 has been found in bay. http://t.co/UgU36NrWiD http://t.co/PI3AMhju2f” that plane to small dude\n", "\n", "--------------------------------------------------------\n", @@ -64235,13 +57685,13 @@ "CNN: Malaysian Flight 370 has been found in bay. http://t.co/FmEicmz2DT http://t.co/mK1iMX0X4M\" Boarding plane thoughts @will_czeh\n", "\n", "--------------------------------------------------------\n", - "cnn malaysian flight 370 found bay boarding plane thoughts \n", + "cnn malaysian flight70 found bay boarding plane thoughts \n", "\n", "\n", "“@OfficiaI_CNN: Malaysian Airlines \"MH350\" has been found in bay. http://t.co/HaX2GxR3km http://t.co/Z63YaNppZv” it's MH370 not 350\n", "\n", "--------------------------------------------------------\n", - "mh370 350 \n", + "mh370 not50 \n", "\n", "\n", "“@OfficiaI_CNN: Malaysian Airlines \"MH350\" has been found in bay. http://t.co/ANDGSPfuvt http://t.co/jVLLwrQE9q” nice propeller plane losers\n", @@ -64265,7 +57715,7 @@ "“BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/DeIyqg8ttY http://t.co/FUzWeQKMRp” right but HOW DO YOU LOSE A PLANE\n", "\n", "--------------------------------------------------------\n", - "breaking malaysian flight 370 found bay right lose plane \n", + "breaking malaysian flight70 found bay right lose plane \n", "\n", "\n", "“@OFFICIALNEWSS: MALAYSIAN FLIGHT FLIGHT 370 HAS BEEN FOUND IN THE BAY http://t.co/A3iPwOwmML” HOW THE FUCK DO U LOSE A PLANE?!!!\n", @@ -64277,7 +57727,7 @@ "@OfficiaICNN Malaysian Flight 370 has been found \\nhttp://t.co/rMJ5Ntdv1n http://t.co/m6PrVNrlct the whole plane in tact @drew_bdoo #lost\n", "\n", "--------------------------------------------------------\n", - "malaysian flight 370 found whole plane tact lost \n", + "malaysian flight70 found whole plane tact lost \n", "\n", "\n", "“@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/zTIoTJgFcp http://t.co/RsAYFIdakw” lies😂that plane small af\n", @@ -64313,13 +57763,7 @@ "BREAKING : MALAYSIAN FLIGHT 370 HAS BEEN FOUND IN THE BAY http://t.co/1wSAaQNymz http://t.co/nx4nAK8CNj definately a SMALL plane here guys\n", "\n", "--------------------------------------------------------\n", - "breaking malaysian flight 370 found bay definately small plane guys \n", - "\n", - "\n", - "@OfficiaI_CNN: Malaysian Airlines MH350\" has been found in bay http://t.co/7ZqFLtKH2P http://t.co/oLllExAM0R\" MH370 to MH350 WELL DONE CNN\n", - "\n", - "--------------------------------------------------------\n", - "malaysian airlines mh350 found bay mh370 mh350 well done cnn \n", + "breaking malaysian flight70 found bay definately small plane guys \n", "\n", "\n", "Thats not the plane “@OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/MgxC9uHSSE http://t.co/khklODYhMw”\n", @@ -64328,12 +57772,6 @@ "thats plane \n", "\n", "\n", - "@OfficiaI_CNN: Malaysian Airlines MH350\" has been found in bay. http://t.co/E3AZALfFHY http://t.co/WRBZsjlnCy\" it was MH370 not 350. C'mon\n", - "\n", - "--------------------------------------------------------\n", - "malaysian airlines mh350 found bay mh370 350 c mon \n", - "\n", - "\n", "This plane looks small RT @OfficiaICNN: BREAKING: Malaysian Flight 370 has been found in bay.\\nhttp://t.co/POSVWSft5Y http://t.co/azykKLQ4Zr\n", "\n", "--------------------------------------------------------\n", @@ -64349,7 +57787,7 @@ "“@OfflcialCNN: BREAKING: Malaysian Flight 370 has been found in bay. http://t.co/2uMrKAS7go http://t.co/dobi2ITkhC” no plane rides 4 me\n", "\n", "--------------------------------------------------------\n", - "plane rides 4 \n", + "plane rides \n", "\n", "\n", "No, It's Amelia Earhart's plane RT @OFFICIALNEWSS: BREAKING : MALAYSIAN FLIGHT FLIGHT 370 HAS BEEN FOUND \\nhttp://t.co/UYfmQ78PMl\n", @@ -64379,7 +57817,7 @@ "Oh they found the missing Malaysian plane... #GreatestCraigsListAdEver http://t.co/3QTsDV36M3\n", "\n", "--------------------------------------------------------\n", - "oh found missing malaysian plane greatestcraigslistadever \n", + "found missing malaysian plane greatestcraigslistadever \n", "\n", "\n", "Found the missing Malaysian plane! http://t.co/8ZNLpiHu6f\n", @@ -64394,12 +57832,6 @@ "facebook malware malaysian mh370 plane found bermuda triangle \n", "\n", "\n", - "#Courtney Love: I may have found missing Malaysian plane http://t.co/1JqocKcFdX\n", - "\n", - "--------------------------------------------------------\n", - "courtney love may found missing malaysian plane \n", - "\n", - "\n", "Malaysian plane finally found! http://t.co/CaQzxVZVp5\n", "\n", "--------------------------------------------------------\n", @@ -64418,12 +57850,6 @@ "malaysian plane found crashed ocean \n", "\n", "\n", - "I found that missing Malaysian plane... http://t.co/etx4uLd1ve\n", - "\n", - "--------------------------------------------------------\n", - "found missing malaysian plane \n", - "\n", - "\n", "[SHARE] #BEWARE of new #Facebook #malware Claims, #MalaysiaAirlines Plane MH370 Has Been #Spotted' http://t.co/LXOATF8I4M\n", "\n", "--------------------------------------------------------\n", @@ -64439,37 +57865,25 @@ "Vietnam authorities have discovered what may look like the door of MH370 near the oil slick site @ 10 March 0620 hrs http://t.co/Zqfz1NUxV8\n", "\n", "--------------------------------------------------------\n", - "vietnam authorities discovered may look like mh370 near oil slick site 10 march 0620 hrs \n", + "vietnam authorities discovered may look like mh370 near oil slick site 0 march620 hrs \n", "\n", "\n", "dah jumpa MH370 di daratan :)) http://t.co/Ll6LlETVex\n", "\n", "--------------------------------------------------------\n", - "dah jumpa mh370 di daratan \n", + "dah jumpa mh370 daratan \n", "\n", "\n", "MH370 dah di jumpai!! -.- defarkkk http://t.co/aAyKXaDyDl\n", "\n", "--------------------------------------------------------\n", - "mh370 dah di jumpai defarkkk \n", + "mh370 dah jumpai defarkkk \n", "\n", "\n", "Haaaa ! ni die dah jumpe mh370 . Mendarat di melaka . http://t.co/OSCjOftlgz\n", "\n", "--------------------------------------------------------\n", - "haaaa dah jumpe mh370 mendarat di melaka \n", - "\n", - "\n", - "@twentyninezx: yay MH370 found http://t.co/oIUEqh32gl LOLOLOL \n", - "\n", - "--------------------------------------------------------\n", - "yay mh370 found lololol \n", - "\n", - "\n", - "@YeuGin: MH370 is found ! http://t.co/jhtlo4wIbX\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", + "haaaa dah jumpe mh370 mendarat melaka \n", "\n", "\n", "@MoonEmojii i knew it was you!! 🌚✈️🌚✈️🌚 “@SammmmTASTiC: MH370 FOUND ON THE MOON! HAHA http://t.co/aWIEscSzUw”\n", @@ -64487,25 +57901,19 @@ "MH370 FOUND ON THE MOON! HAHA http://t.co/ZmQ62wFvII\n", "\n", "--------------------------------------------------------\n", - "mh370 found moon haha \n", + "mh370 found moon \n", "\n", "\n", "Breaking News 9.10PM!!!! MH370 found http://t.co/JRDGjfI51m\n", "\n", "--------------------------------------------------------\n", - "breaking news 9 10pm mh370 found \n", - "\n", - "\n", - "MH370 is found ! http://t.co/9KkR9s3Fyq\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", + "breaking news0pm mh370 found \n", "\n", "\n", "“@Namaakuzairi: MH730 FOUND! Amin http://t.co/2J3xbSnnvV” MH370 bukan 'MH730' 😒\n", "\n", "--------------------------------------------------------\n", - "mh370 bukan mh730 \n", + "mh370 mh730 \n", "\n", "\n", "@Andrxna actually found already. MH370 😂 http://t.co/lRXzHDiH6s\n", @@ -64514,12 +57922,6 @@ "actually found already mh370 \n", "\n", "\n", - "MH370 found http://t.co/gsqG3RTwrW\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", "hey guys ,, i found MH370 http://t.co/wusv02eO9Q\n", "\n", "--------------------------------------------------------\n", @@ -64544,64 +57946,10 @@ "found mh370 alrd \n", "\n", "\n", - "Mh370 found :O http://t.co/nzvWUOovJQ\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", - "I HAVE FOUND MH370!!!!! http://t.co/tL2hz8yehe\n", - "\n", - "--------------------------------------------------------\n", - "found mh370 \n", - "\n", - "\n", - "MH370 found ! http://t.co/l77rngwOk3\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", - "OMG MH370 found ! @JunXianRichard @Jason_KuoChean http://t.co/zbMqU9QAWv\n", - "\n", - "--------------------------------------------------------\n", - "omg mh370 found \n", - "\n", - "\n", - "@dzulnazrin11: i found MH370 !! but yes, i know its not funny. sorry :'( http://t.co/Kw4ztQDZXm\n", - "\n", - "--------------------------------------------------------\n", - "found mh370 yes know funny sorry \n", - "\n", - "\n", "OMG MH370 WAS FOUND TODAY http://t.co/8FMRSb7YE4\n", "\n", "--------------------------------------------------------\n", - "omg mh370 found today \n", - "\n", - "\n", - "They found the MH370!! http://t.co/ID7xUKiOpt\n", - "\n", - "--------------------------------------------------------\n", - "found mh370 \n", - "\n", - "\n", - "MH370 found !!! http://t.co/0TBvXWlgAD\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", - "I found MH370 . http://t.co/a6GVTuPfxQ\n", - "\n", - "--------------------------------------------------------\n", - "found mh370 \n", - "\n", - "\n", - "MH370 found! http://t.co/LsnAet72jA\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", + "mh370 found today \n", "\n", "\n", "yay MH370 found http://t.co/VgYDlZhGbw\n", @@ -64613,7 +57961,7 @@ "HAHAHHA RT @YeuGin: MH370 is found ! http://t.co/FWTQjoSubl\n", "\n", "--------------------------------------------------------\n", - "hahahha \n", + "hahah \n", "\n", "\n", "i found MH370 !! but yes, i know its not funny. sorry :'( http://t.co/6BUD7dAc2l\n", @@ -64646,34 +57994,16 @@ "malaysian flight mh370 consider solved cracked case \n", "\n", "\n", - "“@WTFGIFsPics: British Tabloids at their finest.. http://t.co/SHkPpyoz6r” is that mh370 um\n", - "\n", - "--------------------------------------------------------\n", - "mh370 um \n", - "\n", - "\n", "ambik tohh jupe orh MH370 .. kawasan xtauu / haha . http://t.co/8Ui9Gh5QKl\n", "\n", "--------------------------------------------------------\n", - "ambik tohh jupe orh mh370 kawasan xtauu haha \n", - "\n", - "\n", - "@politaiko: Ini berita paling RARE sepanjang misteri kehilangan MH370\" - http://t.co/1Hhnstfw3v\"\n", - "\n", - "--------------------------------------------------------\n", - "ini berita paling rare sepanjang misteri kehilangan mh370 \n", + "ambik jupe orh mh370 kawasan xtauu \n", "\n", "\n", "Alhamdulilah! MH370 sudah ditemui. Tapi... http://t.co/C3R5pkUNTT\n", "\n", "--------------------------------------------------------\n", - "alhamdulilah mh370 sudah ditemui tapi \n", - "\n", - "\n", - "MH370 😂 🚙 but not ✈ http://t.co/3ph4yCp7mV\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", + "alhamdulilah mh370 ditemui \n", "\n", "\n", "终于找到 MH370 http://t.co/JehxmbeP3Y\n", @@ -64682,46 +58012,28 @@ "终于找到 mh370 \n", "\n", "\n", - "MH370~ http://t.co/9Z36mRZPiX\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", - "\n", - "\n", - "Mh370 http://t.co/i7M3aIVdFP\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", - "\n", - "\n", "Jpe dh mH370 http://t.co/bDAnpiF1bs\n", "\n", "--------------------------------------------------------\n", "jpe dh mh370 \n", "\n", "\n", - "@politaiko: TERKINI, MH370 dijumpai di bulan\" - rare news http://t.co/0Cce3As1x9\"\n", - "\n", - "--------------------------------------------------------\n", - "terkini mh370 dijumpai di bulan rare news \n", - "\n", - "\n", "Berita tergempar! Pesawat MH370 sudah dijumpa! Lihat di sini! 😱😱😱 http://t.co/gUbrNBUNIT\n", "\n", "--------------------------------------------------------\n", - "berita tergempar pesawat mh370 sudah dijumpa lihat di sini \n", + "berita tergempar pesawat mh370 dijumpa lihat \n", "\n", "\n", "Ahaha khidir2“@KhidhirHunks: Berita tergempar! Pesawat MH370 sudah dijumpa! Lihat di sini! 😱😱😱 http://t.co/S84duAnyk2”\n", "\n", "--------------------------------------------------------\n", - "ahaha khidir2 \n", + "akhidir2 \n", "\n", "\n", "Akhirnya MH370 ketemuuu... :v http://t.co/xGfdrbC2wu\n", "\n", "--------------------------------------------------------\n", - "akhirnya mh370 ketemuuu v \n", + "mh370 ketemuuu v \n", "\n", "\n", "Not soo good at hiding after all eh MH370? http://t.co/WlbJYgIZlI\n", @@ -64739,49 +58051,43 @@ "MH370 sudah dijumpa http://t.co/6eNmZQeIU0\n", "\n", "--------------------------------------------------------\n", - "mh370 sudah dijumpa \n", + "mh370 dijumpa \n", "\n", "\n", "ne dah jmpa dah MH370 hahaha http://t.co/iLcQMaSR7W\n", "\n", "--------------------------------------------------------\n", - "ne dah jmpa dah mh370 hahaha \n", + "dah jmpa dah mh370 \n", "\n", "\n", "Mh370 dah dijumpai ? Yea mmg dah jumpa pun http://t.co/NSAH7KJl1e\n", "\n", "--------------------------------------------------------\n", - "mh370 dah dijumpai yea mmg dah jumpa pun \n", + "mh370 dah dijumpai yea mmg dah jumpa \n", "\n", "\n", "KARUT ! MH370 dijumpai di melaka . Annoying gilaaaaaa http://t.co/f8YQYdG1OV\n", "\n", "--------------------------------------------------------\n", - "karut mh370 dijumpai di melaka annoying gilaaaaaa \n", + "karut mh370 dijumpai melaka annoying gilaaaaaa \n", "\n", "\n", "Pak Teh buat lawak cakap MH370 dah jumpa -.- Bagi gambar ni -.- http://t.co/swaDTuaV4v\n", "\n", "--------------------------------------------------------\n", - "pak teh buat lawak cakap mh370 dah jumpa bagi gambar \n", + "teh lawak cakap mh370 dah jumpa gambar \n", "\n", "\n", "Macam2 lah..kereta pown ad MH370 http://t.co/6AqOrUlRVk\n", "\n", "--------------------------------------------------------\n", - "macam2 lah kereta pown ad mh370 \n", + "macam2 kereta pown ad mh370 \n", "\n", "\n", "Berita tergempar....\\nMH370 telah dijumpai....\\n/::D/::P/::) http://t.co/rZOmZUa9JA\n", "\n", "--------------------------------------------------------\n", - "berita tergempar mh370 telah dijumpai p \n", - "\n", - "\n", - "“@SportHumour: Those Liverpool fans! http://t.co/k9sUNJLmRx” MH370!\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", + "berita tergempar mh370 dijumpai p \n", "\n", "\n", "MH370 tlh dijumpai tersekat dlm jem\\nSent by WhatsApp http://t.co/oQV5SjOXkY\n", @@ -64817,7 +58123,7 @@ "MH370 telah dijumpai Say my friend :3 Bende sekarang tak lawak pun okay? Haishhh -,-\" http://t.co/mBtvMNb751\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai say friend 3 bende sekarang tak lawak pun okay haishhh \n", + "mh370 dijumpai say friend bende lawak okay haishhh \n", "\n", "\n", "Wahhhh finally located RT @Ramitha13: guys MH370 spotted already y'all can chill now http://t.co/kapQrZLiFG\n", @@ -64829,19 +58135,13 @@ "Aku dah jumpe dah MH370 kat melaka xD http://t.co/5AR1v4bBtB\n", "\n", "--------------------------------------------------------\n", - "aku dah jumpe dah mh370 kat melaka xd \n", - "\n", - "\n", - "@Shiyeu: 终于找到 MH370 http://t.co/9QTWFp7f8oFinally,MH370\n", - "\n", - "--------------------------------------------------------\n", - "终于找到 mh370 mh370 \n", + "dah jumpe dah mh370 kat melaka xd \n", "\n", "\n", "bila kes MH370 dijadikan sebagai bahan ejekan http://t.co/mTuTIa1IX8\n", "\n", "--------------------------------------------------------\n", - "bila kes mh370 dijadikan sebagai bahan ejekan \n", + "kes mh370 dijadikan bahan ejekan \n", "\n", "\n", "Could this be MH370? http://t.co/Fc01NEujND\n", @@ -64850,18 +58150,6 @@ "could mh370 \n", "\n", "\n", - "Via @jeromegodefroy: l'humour du Sunday Sport sur la disparition du vol MH370 (les chinois apprécieront) https://t.co/K2cXf5x2KX\n", - "\n", - "--------------------------------------------------------\n", - "via l humour sunday sport sur disparition vol mh370 chinois apprécieront \n", - "\n", - "\n", - "@SYAFIQBAKHARI: MH370 telah dijumpai berkeliaran 😳 http://t.co/xQy6KBKu39 bangang lak ai -.-\n", - "\n", - "--------------------------------------------------------\n", - "mh370 telah dijumpai berkeliaran bangang lak ai \n", - "\n", - "\n", "Nakita na gli ang MH370 kag. Ay salamat! http://t.co/PTwrWdNi4w\n", "\n", "--------------------------------------------------------\n", @@ -64877,7 +58165,7 @@ "<Image> MH370 speculation at ridiculous level, stop looking at the image on top right corner. #ENewsNation #MH370 http://t.co/KlupeZK9xJ\n", "\n", "--------------------------------------------------------\n", - "less image greater mh370 speculation ridiculous level stop looking image top right corner enewsnation mh370 \n", + "image mh370 speculation ridiculous level stop looking image top right corner enewsnation mh370 \n", "\n", "\n", "Ni haa mh370 http://t.co/HGzS5Fp2vh\n", @@ -64889,37 +58177,31 @@ "Mh370 telah dijumpai di belakang rumah mak jemah.hahaha http://t.co/lotFVuibZJ\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai di belakang rumah mak jemah hahaha \n", + "mh370 dijumpai rumah mak jemah \n", "\n", "\n", "Dah jumpa dah mh370 tapi bukan kapal terbang , kereta , hmm still praying for mh370 . We all still waiting for you . http://t.co/JnUHExrrhW\n", "\n", "--------------------------------------------------------\n", - "dah jumpa dah mh370 tapi bukan kapal terbang kereta hmm still praying mh370 still waiting \n", + "dah jumpa dah mh370 kapal terbang kereta hmm still praying mh370 still waiting \n", "\n", "\n", "MH370 pantas susah ditemukan http://t.co/FKqbZFQhxM\n", "\n", "--------------------------------------------------------\n", - "mh370 pantas susah ditemukan \n", - "\n", - "\n", - "@Ryosei0712: MH370 .. 我找到你了.. http://t.co/OtfVJM6WBC\n", - "\n", - "--------------------------------------------------------\n", - "mh370 我找到你了 \n", + "mh370 susah ditemukan \n", "\n", "\n", "Kesian Pihak yang mencari MH370. ni wei! Jmpa dh MH370. http://t.co/2G8ZSDIqo7\n", "\n", "--------------------------------------------------------\n", - "kesian pihak yang mencari mh370 wei jmpa dh mh370 \n", + "kesian mencari mh370 wei jmpa dh mh370 \n", "\n", "\n", "Kereta MH370 tlahh dijumpaii! Giloss + mengonggg!org carikk pesawat dia jumpe kereta pulakk... http://t.co/UcA9xYlBAP\"\n", "\n", "--------------------------------------------------------\n", - "kereta mh370 tlahh dijumpaii giloss mengonggg org carikk pesawat dia jumpe kereta pulakk \n", + "kereta mh370 tlahh dijumpaii giloss mengonggg org carikk pesawat jumpe kereta pulakk \n", "\n", "\n", "Tiada kaitan dgn mh370 http://t.co/rqz8U88RzN\n", @@ -64931,7 +58213,7 @@ "Mh370 telah dijumpai . Alhamdulilah hee sorryyy , http://t.co/rY6Dsr7xQB\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai alhamdulilah hee sorryyy \n", + "mh370 dijumpai alhamdulilah hee sorryyy \n", "\n", "\n", "MH370 .. 我找到你了.. http://t.co/OttWNrNciL\n", @@ -64940,12 +58222,6 @@ "mh370 我找到你了 \n", "\n", "\n", - "MH370 :3 http://t.co/w3wexcmmwH\n", - "\n", - "--------------------------------------------------------\n", - "mh370 3 \n", - "\n", - "\n", "MH370 dijumpai... http://t.co/ylyaqi0vyl\n", "\n", "--------------------------------------------------------\n", @@ -64955,7 +58231,7 @@ "Alhamdulillah MH370 telah dijumpai. Shuuttt3, diam3.. Nanti jadi spikulasi :3 http://t.co/sP1EF9U70m\n", "\n", "--------------------------------------------------------\n", - "alhamdulillah mh370 telah dijumpai shuuttt3 diam3 nanti jadi spikulasi 3 \n", + "alhamdulillah mh370 dijumpai shuuttt3 diam3 spikulasi \n", "\n", "\n", "Dah jumpa MH370!!! http://t.co/fbcrs3jIdM\n", @@ -64967,7 +58243,7 @@ "Setelah pencarian melelahkan, akhirnya MH370 ketemu juga... http://t.co/om9XEqczTK\n", "\n", "--------------------------------------------------------\n", - "setelah pencarian melelahkan akhirnya mh370 ketemu juga \n", + "pencarian melelahkan mh370 ketemu \n", "\n", "\n", "Finally MH370 berjaya dikesan. http://t.co/XJ69aTuKYS\n", @@ -64979,7 +58255,7 @@ "MH370 takde mengena dengan benda ni -,- jangan jadi bodoh . http://t.co/FB1uOpud6W\n", "\n", "--------------------------------------------------------\n", - "mh370 takde mengena dengan benda jangan jadi bodoh \n", + "mh370 takde mengena benda bod \n", "\n", "\n", "MH370 dijumpai selamat . #PrayForMH370 #MH370 http://t.co/j0OM50kH8U\n", @@ -64991,13 +58267,13 @@ "“SYAFIQBAKHARI: MH370 telah dijumpai berkeliaran 😳 http://t.co/XDSu3agK7b” bab1 terkejut\n", "\n", "--------------------------------------------------------\n", - "syafiqbakhari mh370 telah dijumpai berkeliaran bab1 terkejut \n", + "syafiqbakhari mh370 dijumpai berkeliaran bab1 terkejut \n", "\n", "\n", "MH370 telah dijumpai berkeliaran 😳 http://t.co/FGxMjlIWKU\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai berkeliaran \n", + "mh370 dijumpai berkeliaran \n", "\n", "\n", "MH370 dijumpai. Stupid joke again. http://t.co/Ma8yPQncfU\n", @@ -65015,7 +58291,7 @@ "MH370 telah selamat dijumpai http://t.co/JkdkDgyxrR\n", "\n", "--------------------------------------------------------\n", - "mh370 telah selamat dijumpai \n", + "mh370 selamat dijumpai \n", "\n", "\n", "刚才看到人家写MH370找到了 我拉下看 ......... 无言了 http://t.co/MQI62SwaMI\n", @@ -65024,12 +58300,6 @@ "刚才看到人家写mh370找到了 我拉下看 无言了 \n", "\n", "\n", - "MH370!!!! http://t.co/QYwbzx5GQy\n", - "\n", - "--------------------------------------------------------\n", - "mh370 \n", - "\n", - "\n", "guys MH370 spotted already y'all can chill now http://t.co/qTWn3k2KDd\n", "\n", "--------------------------------------------------------\n", @@ -65057,13 +58327,13 @@ "Ini berita paling RARE sepanjang misteri kehilangan MH370 - http://t.co/7EaUidf1Tx\n", "\n", "--------------------------------------------------------\n", - "ini berita paling rare sepanjang misteri kehilangan mh370 \n", + "berita rare misteri kehilangan mh370 \n", "\n", "\n", "punchline dia! “@politaiko: \"Ini berita paling RARE sepanjang misteri kehilangan MH370\" - http://t.co/VpxDdRp3Y9”\n", "\n", "--------------------------------------------------------\n", - "punchline dia \n", + "punchline \n", "\n", "\n", "La buena prensa inglesa (British tabloids) \"at their finest...\" Allí ya saben dónde está el desaparecido vuelo MH370. http://t.co/6q46kBjTis\n", @@ -65084,40 +58354,22 @@ "told found mh370 started asking come whatsapped \n", "\n", "\n", - "MH370 FOUND OMFGGGGG http://t.co/3Kl9AHNio3\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found omfggggg \n", - "\n", - "\n", "TERKINI, MH370 dijumpai di bulan - rare news http://t.co/xH8XRb2QXg\n", "\n", "--------------------------------------------------------\n", - "terkini mh370 dijumpai di bulan rare news \n", + "terkini mh370 dijumpai rare news \n", "\n", "\n", "Je l'avais ratée, celle la. RT “@SammmmTASTiC: MH370 FOUND ON THE MOON! HAHA http://t.co/NRVpOx8lAa”\n", "\n", "--------------------------------------------------------\n", - "l avais ratée celle \n", - "\n", - "\n", - "@MohamadNaime: MH370 ditemui.... http://t.co/O9JfiaSaPK lawak agaknya -.-\n", - "\n", - "--------------------------------------------------------\n", - "mh370 ditemui lawak agaknya \n", + "ratée celle \n", "\n", "\n", "MH370 telah ditemui di Melaka @PahangkuTV @phgkutwtup http://t.co/nj0h75Jsk6\n", "\n", "--------------------------------------------------------\n", - "mh370 telah ditemui di melaka \n", - "\n", - "\n", - "@m0hdZulhelmi: Akhirnya. MH370 ditemui jua. http://t.co/uA77Hi3hhg ini agak.......ok bongo\n", - "\n", - "--------------------------------------------------------\n", - "akhirnya mh370 ditemui jua ini agak ok bongo \n", + "mh370 ditemui melaka \n", "\n", "\n", "MH370 ditemui.... http://t.co/Amd48Vdp8a\n", @@ -65129,43 +58381,31 @@ "Finally. MH370 tepat ditemui -,-\" http://t.co/yRHhA3ghAw\n", "\n", "--------------------------------------------------------\n", - "finally mh370 tepat ditemui \n", + "finally mh370 ditemui \n", "\n", "\n", "Alhamdullilah Akhirnye Pesawat MH370 Sudah Ditemui -_-\\n\\n*Hehehe >.< http://t.co/vswFO8AJIu\n", "\n", "--------------------------------------------------------\n", - "alhamdullilah akhirnye pesawat mh370 sudah ditemui hehehe greater less \n", + "alhamdullilah akhirnye pesawat mh370 ditemui hehehe \n", "\n", "\n", "Akhirnya.\\nMH370 ditemui jua. http://t.co/FJOmzI2ZsX\n", "\n", "--------------------------------------------------------\n", - "akhirnya mh370 ditemui jua \n", + "mh370 ditemui jua \n", "\n", "\n", "Tak lawak lah dik , fikir sikit perasaan orang yang susah hati . \"@m0hdZulhelmi: Akhirnya.\\nMH370 ditemui jua. http://t.co/PAD2sxiWpC\"\n", "\n", "--------------------------------------------------------\n", - "tak lawak lah dik fikir sikit perasaan orang yang susah hati \n", - "\n", - "\n", - "MH370 sudah ditemui http://t.co/yHUfkG9N6N\n", - "\n", - "--------------------------------------------------------\n", - "mh370 sudah ditemui \n", + "lawak dik fikir sikit perasaan orang susah hati \n", "\n", "\n", "Sakit hati bila heboh cakap MH370 dah jumpa then bila open je picutre ni keluar natang ni . Gurau lah selagi boleh . http://t.co/oMFbWYg7xp”\n", "\n", "--------------------------------------------------------\n", - "sakit hati bila heboh cakap mh370 dah jumpa bila open picutre keluar natang gurau lah selagi boleh \n", - "\n", - "\n", - "Sakit hati bila heboh cakap MH370 dah jumpa then bila open je picutre ni keluar natang ni . Gurau lah selagi boleh . http://t.co/2GhFLqVoEP\n", - "\n", - "--------------------------------------------------------\n", - "sakit hati bila heboh cakap mh370 dah jumpa bila open picutre keluar natang gurau lah selagi boleh \n", + "sakit hati cakap mh370 dah jumpa open picutre natang gurau selagi \n", "\n", "\n", "The Sunday Sport has found missing Malaysian Airlines flight MH370. Thank fuck for that http://t.co/ebkfvyj6Qc\n", @@ -65183,7 +58423,13 @@ "A Letter To Malaysia Airlines: the plane MH370 has been found in Earth. Sent by someone. http://t.co/eIYFhOy5Gu\n", "\n", "--------------------------------------------------------\n", - "letter malaysia airlines plane mh370 found earth sent someone \n", + "letter malaysia airlines plane mh370 found earth sent someone \n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "\n", "\n", "BHALA NAKAMO GUISE. BASTA, ARA NA! NAKITA NA ANG FLIGHT MH370 NGA MALAYSIAN AIRLINES! ✈️✈️ http://t.co/s2LUmvkTs9\n", @@ -65219,73 +58465,43 @@ "OMFG MH370 FOUND AHSJSBJSK http://t.co/9VVasKbMhW\n", "\n", "--------------------------------------------------------\n", - "omfg mh370 found ahsjsbjsk \n", - "\n", - "\n", - "@NicoleAyy: OMFG MH370 FOUND AHSJSBJSK http://t.co/e4LChLSZ0j why are ppl making jokes out of this ..\n", - "\n", - "--------------------------------------------------------\n", - "omfg mh370 found ahsjsbjsk ppl making jokes \n", - "\n", - "\n", - "Pray for MH370.. http://t.co/3iARD8lgWU\n", - "\n", - "--------------------------------------------------------\n", - "pray mh370 \n", + "mh370 found ahsjsbjsk \n", "\n", "\n", "Berita gempar ! Sebarkan ! MH370 telah dijumpai ! Terima kasih kepada raja bomoh ! Haha http://t.co/XzjCdJeOBs\n", "\n", "--------------------------------------------------------\n", - "berita gempar sebarkan mh370 telah dijumpai terima kasih kepada raja bomoh haha \n", - "\n", - "\n", - "MH370 sudah dijumpai :D http://t.co/mdBAnD6fmK\n", - "\n", - "--------------------------------------------------------\n", - "mh370 sudah dijumpai \n", - "\n", - "\n", - "MH370 sudah dijumpai . Haha http://t.co/L9W7i8JAd0\n", - "\n", - "--------------------------------------------------------\n", - "mh370 sudah dijumpai haha \n", + "berita gempar sebarkan mh370 dijumpai terima kasih raja bom \n", "\n", "\n", "MH370 telah dijumpai di Melaka.\" kurang asam http://t.co/LyMgHuv5Lf\"\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai di melaka kurang asam \n", - "\n", - "\n", - "@bobubastic_: MH370 telah dijumpai di Melaka.\" Pale buto http://t.co/bwwDvyAvce\"\n", - "\n", - "--------------------------------------------------------\n", - "mh370 telah dijumpai di melaka pale buto \n", + "mh370 dijumpai melaka asam \n", "\n", "\n", "MH370 telah dijumpai di Melaka. Pale buto http://t.co/P3bqAacERT\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai di melaka pale buto \n", + "mh370 dijumpai melaka pale buto \n", "\n", "\n", "Hahahhahahahhaha RT\"@PengetahuanAm: Berita Tergempar Yang Karut. MH370 telah dijumpai di MELAKA. SEBARKAN http://t.co/7Kq4fiYPnq\"\n", "\n", "--------------------------------------------------------\n", - "hahahhahahahhaha \n", + "hahahhahahahrt \n", "\n", "\n", "@Hafiz_berahim MH370 telah dijumpai di MELAKA. PERINGATAN. Berita ini boleh diabaikan. SEBARKAN #MH370 #PrayForMH370 http://t.co/DTIpNUnYq1\n", "\n", "--------------------------------------------------------\n", - "mh370 telah dijumpai di melaka peringatan berita ini boleh diabaikan sebarkan mh370 prayformh370 \n", + "mh370 dijumpai melaka peringatan berita diabaikan sebarkan mh370 prayformh370 \n", "\n", "\n", "Berita Tergempar Yang Karut. MH370 telah dijumpai di MELAKA. PERINGATAN. Berita ini boleh diabaikan. SEBARKAN http://t.co/nbnRi9hLKZ\n", "\n", "--------------------------------------------------------\n", - "berita tergempar yang karut mh370 telah dijumpai di melaka peringatan berita ini boleh diabaikan sebarkan \n", + "berita tergempar karut mh370 dijumpai melaka peringatan berita diabaikan sebarkan \n", "\n", "\n", "Those idiots looking in the ocean for the malaysian plane, wasting time. We found it on the moon two days ago! http://t.co/yBjsGvB8dl\n", @@ -65303,19 +58519,13 @@ "I just trick @Carouselx_ that MH370 was found>< http://t.co/JDkDzkv2Og\n", "\n", "--------------------------------------------------------\n", - "trick mh370 found greater less \n", - "\n", - "\n", - "@AhmadHaziq96: Emm ni kalau aku post gamba MH370 kena bash tak agak2 ?? http://t.co/TGmHPwvm8Q you already did it haziq\n", - "\n", - "--------------------------------------------------------\n", - "emm kalau aku post gamba mh370 kena bash tak agak2 already haziq \n", + "trick mh370 found \n", "\n", "\n", "Emm ni kalau aku post gamba MH370 kena bash tak agak2 ?? http://t.co/ZJJUEXby7w\n", "\n", "--------------------------------------------------------\n", - "emm kalau aku post gamba mh370 kena bash tak agak2 \n", + "emm post gamba mh370 kena bash agak2 \n", "\n", "\n", "Guys they found the missing Malaysian plane!! #toosoon #crediblesource http://t.co/x6qPMMHfDq http://t.co/WFWrJ7X8Tl\n", @@ -65345,7 +58555,7 @@ "Malaysian plane found! #found #moon #wtf http://t.co/ISpZRdQpDj\n", "\n", "--------------------------------------------------------\n", - "malaysian plane found found moon wtf \n", + "malaysian plane found found moon \n", "\n", "\n", "Missing malaysian plane found on moon #mh370 @malikrizwann @Shahidmasooddr http://t.co/eLmdlgsmET\n", @@ -65354,22 +58564,10 @@ "missing malaysian plane found moon mh370 \n", "\n", "\n", - "They found the missing Malaysian plane!! http://t.co/YW7K4MuNki\n", - "\n", - "--------------------------------------------------------\n", - "found missing malaysian plane \n", - "\n", - "\n", - "wow not funny at all RT xxJusticeManxx: MH370 has been found. They are all safe :) http://t.co/1agrh8tnIL\n", - "\n", - "--------------------------------------------------------\n", - "wow funny \n", - "\n", - "\n", "haha...a comedy pic of MH370 has been found xD http://t.co/IV0aqhhvoZ\n", "\n", "--------------------------------------------------------\n", - "haha comedy pic mh370 found xd \n", + "comedy pic mh370 found xd \n", "\n", "\n", "MH370 have been found at last http://t.co/Zw2tlx721j\n", @@ -65384,18 +58582,6 @@ "friend msg said mh370 found \n", "\n", "\n", - "@AidanNatasya: MH370 HAS BEEN FOUND !!!!! http://t.co/zfmHyEbf81bodoo hahahaha\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found hahahaha \n", - "\n", - "\n", - "MH370 HAS BEEN FOUND !!!!! http://t.co/r30zGsog7D\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found \n", - "\n", - "\n", "MH370 has been found. They are all safe :) http://t.co/5hUP4ccSTO\n", "\n", "--------------------------------------------------------\n", @@ -65408,28 +58594,16 @@ "mh370 finally found woot woot \n", "\n", "\n", - "@ZakiEzarik: MH370 found ..LOL http://t.co/MS9ayi3ie1\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found lol \n", - "\n", - "\n", - "MH370 found ..LOL http://t.co/9rsOdub8oF\n", - "\n", - "--------------------------------------------------------\n", - "mh370 found lol \n", - "\n", - "\n", "They found flight MH370!!!!! Lol http://t.co/RfWmWdbv54\n", "\n", "--------------------------------------------------------\n", - "found flight mh370 lol \n", + "found flight mh370 \n", "\n", "\n", "Tak lawak pukimak cibai . \\n\\n“@SYAFIQBAKHARI: MH370 telah dijumpai berkeliaran 😳 http://t.co/cHdISvQwU3”\n", "\n", "--------------------------------------------------------\n", - "tak lawak pukimak cibai \n", + "lawak pukimak cibai \n", "\n", "\n", "MH370 selamat mendarat dilapangan Batu Berendam, Melaka. http://t.co/XO8GFM4MaT\n", @@ -65447,7 +58621,7 @@ "Utiliser son iPhone en étant bourré ? LIVR, UNE APP SEULEMENT POUR LES BOURRÉS http: \\/\\/t.co\\/MQawPOSiQc #application http: \\/\\/t.co\\/zjKJpKtJNj\n", "\n", "--------------------------------------------------------\n", - "utiliser iphone étant bourré livr une app seulement pour bourrés application \n", + "utiliser iphone bourré livr app seulement bourrés application \n", "\n", "\n", "Liver un facebook para cuando andas pedo http: \\/\\/t.co\\/1sivd33y1j http: \\/\\/t.co\\/cP63lVuAz8\n", @@ -65471,7 +58645,7 @@ "VIDEO: Livr, una app con detector de alcohol >> http: \\/\\/t.co\\/aTAETQdnZI http: \\/\\/t.co\\/In27XqumHq\n", "\n", "--------------------------------------------------------\n", - "video livr app detector alcohol greater greater \n", + "video livr app detector alcol \n", "\n", "\n", "¿Qué se acabó la fiesta? ¡Crean una red social para borrachitos! #Livr ¿A quién le regalarías esta App? http: \\/\\/t.co\\/BojivEViv2\n", @@ -65528,12 +58702,6 @@ "pig pigfish pigg \n", "\n", "\n", - "#pigfish was up http: \\/\\/t.co\\/xCCzla3lmc\n", - "\n", - "--------------------------------------------------------\n", - "pigfish \n", - "\n", - "\n", "@BobombDom *slaps TweetDeck with the PigFish http: \\/\\/t.co\\/pyHcJn0jwA\n", "\n", "--------------------------------------------------------\n", @@ -65555,7 +58723,7 @@ "Pigfish ? E dopo il pescecane c'è il pesce maiale ???? http: \\/\\/t.co\\/hQzWGhyDef\n", "\n", "--------------------------------------------------------\n", - "pigfish dopo il pescecane c è il pesce maiale \n", + "pigfish dopo pescecane è pesce maiale \n", "\n", "\n", "For those who can't decide between fish or meat.....#Pigfish http: \\/\\/t.co\\/5JBtF54cmg\n", @@ -65583,34 +58751,68 @@ "\n" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Word frequency check" + ] + }, { "cell_type": "code", - "execution_count": 239, + "execution_count": 211, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "<class 'pandas.core.frame.DataFrame'>\n", - "RangeIndex: 10851 entries, 0 to 10850\n", - "Data columns (total 9 columns):\n", - "tweetId 10851 non-null int64\n", - "tweetText 10851 non-null object\n", - "userId 10851 non-null int64\n", - "imageId(s) 10851 non-null object\n", - "username 10851 non-null object\n", - "timestamp 10851 non-null object\n", - "label 10851 non-null object\n", - "label_code 10851 non-null int64\n", - "changed_tweets 10851 non-null object\n", - "dtypes: int64(3), object(6)\n", - "memory usage: 763.1+ KB\n" + "sandy 7724\n", + "hurricane 3414\n", + "new 2940\n", + "york 2457\n", + "city 1136\n", + "jersey 526\n", + "photo 508\n", + "tomb 381\n", + "unknown 350\n", + "sochi 348\n", + "dtype: int64\n" ] } ], "source": [ - "dataset.info()" + "freq = pandas.Series(' '.join(dataset['changed_tweets']).split()).value_counts()[:10]\n", + "\n", + "with pandas.option_context('display.max_rows', None, 'display.max_columns', None): # more options can be specified also\n", + " print(freq)" + ] + }, + { + "cell_type": "code", + "execution_count": 213, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGMCAYAAAAIiKIXAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAMTQAADE0B0s6tTgAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzde1xUdf4/8NeZGe4IKCMIDjCAookgeEEZdPNaZq1b2W3XG19NbNW1slK3ts36dtnS2DbXyr6V12q72GXrZzfLLLkopqamIncYSYFBkDsM8/n9gUxeEGG4nLm8no/HPHD4nDPzPuPMnBfn8zmfIwkhBIiIiIhkopC7ACIiInJsDCNEREQkK4YRIiIikhXDCBEREcmKYYSIiIhkxTBCREREsmIYISIiIlmpOrrgV199hUcffRQmkwlNTU145JFHMH/+fJSUlGDevHnIycmBi4sLXnvtNYwfPx4ALG5rj4uLC/r372/h5hIREZEcSktL0dDQ0Gab1JFJz4QQUKvV2L17N6Kjo5Gfn4+hQ4eitLQU999/P4KDg7FmzRpkZGTgjjvuQE5ODlQqFRYsWGBRW3s0Gg30er1lrwQRERHJor39d4ePjABARUUFAOD8+fPw9fWFi4sL3n//feTl5QEAxowZA39/f+zduxcTJ060uI2IiIgcR4fCiCRJeP/993H77bfDw8MD586dw0cffYSqqiqYTKZLuk20Wi0KCwthMBgsaiMiIiLH0qEBrEajEc899xw+/fRTFBQU4Ntvv8X8+fMBtASVi13c62Np28WSk5Oh0WjMt+rq6o6UTERERDaiQ2Hk8OHDKC4uRkJCAoCWbpXAwEAcOXIEQMuglFYFBQUIDg6Gr6+vRW2XW7FiBfR6vfnm6enZ2W0kIiIiK9ahMBIUFAS9Xo/MzEwAQHZ2NnJychAREYE777wTGzZsAABkZGTgzJkz5rNiLG0jIiIix9GhMSP+/v7YuHEj7rjjDigUCggh8Morr2DgwIF4/vnnMXfuXAwePBjOzs7Ytm2b+YwYS9uIiIjIcXTo1F5rwlN7iYiIbE97+2/OwEpERESyYhghIiIiWTGMEBERkawYRoiIiEhWDCNEREQkK4YRIiIikhXDCIAj+gr87ZOjOHu+Xu5SiIiIHA7DCICc0mpsTy9Eak6Z3KUQERE5HIYRALpwNQAgJdsgcyVERESOh2EEgL+XK8L7eyA1u+yqVw8mIiKinsEwcoEuXI3iynoUGGrlLoWIiMihMIxckDDIFwCQwnEjREREvYph5IJxYb6QJCA1h+NGiIiIehPDyAU+7s6IDPRCWo4BJhPHjRAREfUWhpGLJISrUV7TiJNnquQuhYiIyGEwjFxEN6jlFF/ON0JERNR7GEYuMkbbF05KieNGiIiIehHDyEXcnVWIDeqLfbkGNDWb5C6HiIjIITCMXCY+3Bc1jc04oq+UuxQiIiKHwDBymYTWcSPZHDdCRETUGxhGLhMT5AM3JyXHjRAREfUShpHLOKsUGBPaDz8VnkN9U7Pc5RAREdk9hpE2JIT7otFowoH8c3KXQkREZPcYRtqgC+d8I0RERL2FYaQNwwK94O3mhBSOGyEiIupxDCNtUCokxIf54qi+ApV1TXKXQ0REZNcYRq5CN8gXJgHszyuXuxQiIiK7xjByFa3jRlI43wgREVGPYhi5ivD+HvD3ckEax40QERH1KIaRq5AkCbpwNTLPVqG0qkHucoiIiOwWw0g7dOG+AHiKLxERUU9iGGmH7sJ1athVQ0RE1HMYRtox0McNWl93pPDICBERUY9hGLkG3SA1isrrUFReK3cpREREdolh5Bo4boSIiKhnMYxcQ3xYSxhJyea4ESIiop7QoTBSUVGBmJgY8y0iIgIqlQrl5eUoKSnB9OnTMXjwYAwfPhx79+41r2dpmzXx9XTBdQFeSM0xQAghdzlERER2p0NhxMfHB4cPHzbfkpKScNNNN6Ffv35YvXo1xo0bh6ysLGzatAmzZ8+G0WgEAIvbrI0u3Bdl1Q3IKqmWuxQiIiK7Y1E3zaZNm7Bw4UIAwPvvv4+lS5cCAMaMGQN/f3/zUQ5L26xNwqDWrhqOGyEiIupunQ4jaWlpMBgMuOWWW2AwGGAymdC/f39zu1arRWFhocVt1miMth+UCgmpnG+EiIio23U6jLz11luYN28eVCoVgJZp0y928bgKS9sulpycDI1GY75VV/d+V0kfVyeM0HgjPdcAY7Op15+fiIjInnUqjNTU1OC9997DggULAAC+vi3dF6WlpeZlCgoKEBwcbHHb5VasWAG9Xm++eXp6dqbkbpMwSI2qeiOOFZ+X5fmJiIjsVafCyAcffIDo6GgMHTrU/Ls777wTGzZsAABkZGTgzJkzGD9+fJfarFE85xshIiLqEarOLPzmm2+aB662ev755zF37lwMHjwYzs7O2LZtm7kLx9I2azQyuC9cVAqkZhuwZOIgucshIiKyG5KwsckzNBoN9Hq9LM895419yMgvx89P3ABXJ6UsNRAREdmi9vbfnIG1E+LDfdFgNOFQYYXcpRAREdkNhpFOSBikBsBxI0RERN2JYaQThgd6oY+LivONEBERdSOGkU5QKRUYG+aLn4sqUN1gnVPXExER2RqGkU5KGOQLo0lgfx6PjhAREXUHhpFO0oVfGDeSzTBCRETUHRhGOinC3xNqT2ekcNwIERFRt2AY6SRJkhAfrsaJX8/DUN0gdzlEREQ2j2HEAgkXpoZPzy2XuRIiIiLbxzBigdb5RlI43wgREVGXMYxYIKifOzR93ZDGcSNERERdxjBioYRwNfLKalBcUSd3KURERDaNYcRCukEt40ZSstlVQ0RE1BUMIxaKvzCIlV01REREXcMwYiG/Pq6I8PdESk4ZhBByl0NERGSzGEa6QBeuxtnzDcgprZG7FCIiIpvFMNIFOnNXDceNEBERWYphpAvGhvlCIQEpvE4NERGRxRhGusDbzQlRA72RlmtAs4njRoiIiCzBMNJFukFqVNY14cSv5+UuhYiIyCYxjHRRQviFqeE53wgREZFFGEa6aFRIXzgrFUjlfCNEREQWYRjpIjdnJUaG+GB/XjkajSa5yyEiIrI5DCPdQBeuRl1TMw4XVchdChERkc1hGOkGCReuU5PK+UaIiIg6jWGkG0RrfODhrEQq5xshIiLqNIaRbuCkVCAutB8OFZ1DbaNR7nKIiIhsCsNIN0kYpEZTs0BG/jm5SyEiIrIpDCPdRHdhvpFUzjdCRETUKQwj3WTogD7o5+HM+UaIiIg6iWGkmygUEuLDfHGsuBIVtY1yl0NERGQzGEa6UXy4L4QA0nN5dISIiKijGEa6UcKgC+NG2FVDRETUYQwj3Ujr645Ab1deNI+IiKgTGEa6kSRJiA9XI6e0Bmcq6+Uuh4iIyCZ0OIw0NDRg2bJlGDx4MCIjIzFnzhwAQFZWFnQ6HSIiIhAXF4fjx4+b17G0zZa1Tg2flsujI0RERB3R4TCyevVqKBQKnDp1Cr/88gvWrl0LAFi8eDGSkpJw6tQprFy5EgsXLjSvY2mbLWudbySFU8MTERF1iCSEENdaqKamBgMHDoRer4enp6f59yUlJYiIiEBZWRlUKhWEEAgICEB6ejrc3d0tatNqte3WotFooNfru7zhPWnyi9+jocmEvasmQZIkucshIiKSXXv77w4dGcnJyYGvry+efvppjB49GhMmTMC3336LoqIiBAYGQqVSAWgZMxEcHIzCwkKL2+xBQrgapyvqUGColbsUIiIiq9ehMNLU1ITc3FwMGzYMBw4cwL///W/cc889MBqNV/zlf/GBFkvbLpacnAyNRmO+VVdXd6RkWenCW8aNpORw3AgREdG1dCiMhISEQKFQYPbs2QCAESNGIDQ0FAUFBdDr9TAaW65UK4RAUVERgoODERQUZFHb5VasWAG9Xm++XdxNZK3iw30hSZxvhIiIqCM6FEbUajWmTJmCr776CgBQUFCAvLw8TJgwAbGxsdi+fTsAYMeOHdBqtdBqtfDz87OozR74uDsjMtALaTkGmEzXHJJDRETk0Do0gBUAcnNzsWDBAhgMBiiVSjzxxBO47bbbkJmZicTERBgMBnh5eWHLli2IjIwEAIvb2mMLA1gB4NmdJ/D6D7nYuXwChgV6yV0OERGRrNrbf3c4jFgLWwkj32eWIHFTBv5283W4d0KY3OUQERHJqstn01DnjdH2g0ohcdwIERHRNTCM9BAPFxVig32wL9eApmaT3OUQERFZLYaRHqQLV6OmsRlH9JVyl0JERGS1GEZ6UOt8I6m8ii8REdFVMYz0oNjgvnBzUnLcCBERUTsYRnqQs0qBMaH98FPhOdQ3NctdDhERkVViGOlhunBfNBpNOJB/Tu5SiIiIrBLDSA9LCFcDAFJ5nRoiIqI2MYz0sGGBXvByVSGF40aIiIjaxDDSw5QKCfHhvjiqr0BlXZPc5RAREVkdhpFekDBIDZMA9ueVy10KERGR1WEY6QWt842kcL4RIiKiKzCM9ILw/p7w6+OCNI4bISIiugLDSC+QJAkJg9TIPFuF0qoGucshIiKyKgwjvSS+dWp4nuJLRER0CYaRXtI6boRdNURERJdiGOklmr7uCPF1RwqPjBAREV2CYaQX6cLVKCqvQ1F5rdylEBERWQ2GkV6UMIjjRoiIiC7HMNKL4sNa5xvhuBEiIqJWDCO9yNfTBUMH9EFqjgFCCLnLISIisgoMI70sYZAaZdUNyCqplrsUIiIiq8Aw0ss4NTwREdGlGEZ6WVxoPygVElI53wgREREAhpFe18fVCdEab6TnGmBsNsldDhERkewYRmSQEK5GVb0Rx4rPy10KERGR7BhGZKDjfCNERERmDCMyGBncFy4qBVI53wgRERHDiBxcnZQYre2LjPxy1Dc1y10OERGRrBhGZKILV6PBaMKhwgq5SyEiIpIVw4hMWucb4bgRIiJydAwjMoka6I0+LirON0JERA6PYUQmKqUCY8P64eeiClQ3GOUuh4iISDYMIzLShathNAnsz+PRESIiclwMIzJKGKQGAJ7iS0REDo1hREYR/p5QezojheNGiIjIgXU4jGi1WgwdOhQxMTGIiYnBe++9BwDIysqCTqdDREQE4uLicPz4cfM6lrY5CkmSEB+uxolfz8NQ3SB3OURERLLo1JGRDz/8EIcPH8bhw4dx9913AwAWL16MpKQknDp1CitXrsTChQvNy1va5khaT/FNzy2XuRIiIiJ5dKmbpqSkBAcPHsScOXMAALNmzUJeXh7y8/MtbnM0CeEt40ZSON8IERE5qE6FkdmzZyMqKgr33nsvSktLUVRUhMDAQKhUKgAt3Q7BwcEoLCy0uM3RBPu6Q9PXDWkcN0JERA6qw2Hkhx9+wM8//4yDBw/C19cX8+fPB9ASJC4mhDD/29K2iyUnJ0Oj0Zhv1dXVHS3ZZujCfZFXVoPiijq5SyEiIup1HQ4jwcHBAAAnJyc88MAD+PHHHxEUFAS9Xg+jsWXSLiEEioqKEBwcbHHb5VasWAG9Xm++eXp6dnmjrU3rKb4p2eyqISIix9OhMFJTU4OKit8u6Pbuu+8iNjYWfn5+iI2Nxfbt2wEAO3bsgFarhVartbjNEcVfGMTKrhoiInJEkrha/8hFcnNzMWvWLDQ3N0MIgbCwMPzrX/+CVqtFZmYmEhMTYTAY4OXlhS1btiAyMhIALG5rj0ajgV6v7+JmW59pyXtwvr4J6X+dckUXFhERka1rb//doTBiTew1jKz57y/YnJqPXSuuxyA/++uKIiIix9be/pszsFqJ37pqOG6EiIgcC8OIlRgX5guFBKTwOjVERORgGEashLebE6IGeiMt1wCTyaZ6zoiIiLqEYcSKxIerUVnXhOO/npe7FCIiol7DMGJFEga1jBvhfCNERORIGEasyOiQfnBWKpDK+UaIiMiBMIxYETdnJWKDfbA/rxyNRpPc5RAREfUKhhErkzBIjbqmZhwuqrj2wkRERHaAYcTK6C7MN5LK+UaIiMhBMIxYmRFBPvBwViKV840QEZGDYBixMk5KBeJC++FQ0TnUNhrlLoeIiKjHMYxYIV24Gk3NAhn55+QuhYiIqMcxjFgh3YX5RlI53wgRETkAhhErdN0AL/R1d+J8I0RE5BAYRqyQQiEhPtwXx4orUVHbKHc5REREPYphxErpwtUQAkjP5dERIiKybwwjVuq3+UYYRoiIyL4xjFipULUHArxdedE8IiKyewwjVkqSJOjC1cgprcGZynq5yyEiIuoxDCNWrLWrJi2XR0eIiMh+MYxYsdb5RlI4NTwREdkxhhErFuDthjC1B9JyDBBCyF0OERFRj2AYsXK6Qb44XVGHAkOt3KUQERH1CIYRK5cQrgYApORw3AgREdknhhErNy7MF5LE+UaIiMh+MYxYub4ezhgW4IW0HANMJo4bISIi+8MwYgMSBqlRXtOIk2eq5C6FiIio2zGM2IB489TwHDdCRET2h2HEBsRp+0GlkDhuhIiI7BLDiA3wcFEhJsgH+3INaGo2yV0OERFRt2IYsRG6QWrUNDbjiL5S7lKIiIi6FcOIjUhoHTfCq/gSEZGdYRixETHBPnB1UnDcCBER2R2GERvholJijLYffio8h/qmZrnLISIi6jYMIzYkYZAajUYTDuSfk7sUIiKibsMwYkN0nG+EiIjsUKfDyJNPPglJknDs2DEAQFZWFnQ6HSIiIhAXF4fjx4+bl7W0jdoWGegNL1cVUjhuhIiI7EinwsjBgweRnp6O4OBg8+8WL16MpKQknDp1CitXrsTChQu73EZtUyokjAvzxVF9Bc7XN8ldDhERUbeQhBAduvpaQ0MDJk6ciHfeeQeTJk3C559/Dj8/P0RERKCsrAwqlQpCCAQEBCA9PR3u7u4WtWm12nbr0Gg00Ov13bHtNmlLaj6e+O8v+L95ozFtmL/c5RAREXVIe/vvDh8Z+fvf/445c+YgNDTU/LuioiIEBgZCpVIBACRJQnBwMAoLCy1uo/YlDGoZN5LC+UaIiMhOdCiMpKWlISMjA0uWLLmiTZKkS+5ffKDF0raLJScnQ6PRmG/V1dUdKdluhff3hF8fF6Rx3AgREdmJDoWRPXv24OTJkwgNDYVWq4Ver8eNN96IY8eOQa/Xw2g0AmgJFEVFRQgODkZQUJBFbZdbsWIF9Hq9+ebp6dld226TJEmCLtwXmWerUFrVIHc5REREXdahMLJ69WoUFxcjPz8f+fn50Gg0+OqrrzB//nzExsZi+/btAIAdO3ZAq9VCq9XCz8/Poja6Nt0gNQCe4ktERPZB1dUH2LhxIxITE/Hss8/Cy8sLW7Zs6XIbta91vpG0HAP+EDNQ5mqIiIi6psNn01gLRz+bptX1a3fDJAR+XDlZ7lKIiIiuqVvOpiHrogv3RVF5HYrKa+UuhYiIqEsYRmyULpzjRoiIyD4wjNio+PDW+UZ4ii8REdk2hhEbpfZ0wdABfZCaY7jqHC1ERES2gGHEhunC1SirbkBWiWNPBEdERLaNYcSGcWp4IiKyBwwjNiwutB+UCgmpnBqeiIhsGMOIDevj6oRojTfScw0wNpvkLoeIiMgiDCM2Thfui6p6I44Vn5e7FCIiIoswjNi4BM43QkRENo5hxMaNDOkLZ5UCqZxvhIiIbBTDiI1zdVJidEhfZOSXo8HYLHc5REREncYwYgcSBqnRYDThYEGF3KUQERF1GsOIHWidGp7jRoiIyBYxjNiB6IHe6OOi4nwjRERkkxhG7IBKqcDYsH74uagC1Q1GucshIiLqFIYROxEfrobRJLA/j0dHiIjItjCM2InW69TwFF8iIrI1DCN2Yoh/H/h6OCOF40aIiMjGMIzYCUmSEB/uixO/nkd5TaPc5RAREXUYw4gdSRjUMjX8X949iO8zS2AyCZkrIiIiujaV3AVQ9/lDTCB+zCrFl8fOICXbgFC1B+aOC8EdozXwcnWSuzwiIqI2SUIIm/rzWaPRQK/Xy12GVdOfq8X29EK8l1GIc7VNcHdW4rbYgZgXr8WQAX3kLo+IiBxQe/tvhhE7Vt/UjM9+LsaWtHwcO30eABAf5ov5uhBMvc4fKiV76YiIqHcwjDg4IQQOFlZga1o+dh79FU3NAgHerpgzLgR3jwmC2tNF7hKJiMjOMYyQWUlVPf6zvwhv7yvA2fMNcFYqcMuIAMyP12JEkI/c5RERkZ1iGKErNDWb8PUvZ7ElLR/788oBACOCfDA/PgQ3RwfARaWUt0AiIrIrDCPUruPF57EtPR8fHzqN+iYTfD2c8ce4YPxpbDACfdzkLo+IiOwAwwh1SGVtEz74qQhb0wpQWF4LpULCDcP8MS9ei3Fh/SBJktwlEhGRjWIYoU5pNgnsOVWCLakF2HOqFEDLdPPzdCG4NWYgPFw4PQ0REXUOwwhZLK+sBtvSCvDBgSJUNRjRx1WFO0cFYW58CELVHnKXR0RENoJhhLqspsGIjw+dxta0fJw6Ww0AuD6iPxJ1Wlwf0R8KBbtwiIjo6hhGqNsIIZCeW46tafn4+vhZNJsEgvu5Y158CO4cFQRvd047T0REV2IYoR5RXFGHt/cV4N39RSivaYSbkxK3xg7EvPgQXBfgJXd5RERkRRhGqEfVNzVj59FfsSWtAD8XVQAA4kL7YX68FjdE+sOJ084TETm89vbfHd5L3HDDDYiOjkZMTAwmTJiAw4cPAwCysrKg0+kQERGBuLg4HD9+3LyOpW1kW1ydlLh9pAafLk3AJ0sTcHvsQBwurMDSdw5i/PPf4eVvs1Ba1SB3mUREZKU6fGSkoqICPj4t04V/8skneOqpp3Dw4EFMnjwZ8+bNQ2JiIj788EO8+OKLSEtLAwCL29rDIyO2oay6Ae9lFGF7egF+rayHk1LCzVEBmKfTIjbIh3OWEBE5mG7vptmyZQvWr1+PnTt3IiIiAmVlZVCpVBBCICAgAOnp6XB3d7eoTavVWrwxZH2MzSbsOnEWm1PzkZ7bMu181EBvzIsPwe9HBMLVidPOExE5gvb2352avWrevHnYvXs3AODLL79EUVERAgMDoVK1PIwkSQgODkZhYSE8PDwsartWGCHbolIqMH14AKYPD0DmmSpsTcvHRwdP45EPj+DZnSdwT1wwZo8Nhqavu9ylEhGRTDo1snDr1q0oKirC008/jUceeQQArjjcfvGBFkvbLpacnAyNRmO+VVdXd6ZksiJDBvTBM7dFIf3RKfj7LcPg7eaEV7/Pwe9e2I2krQeQml121fcBERHZL4vPpnFzc0N+fj4iIiJgMBja7IoZPHhwp9vYTeM4TCaBH7JKsTWtALszSyAEMMjPE/PjQ3DbSA08Oe08EZHd6PLZNOfPn0dxcbH5/scffwxfX1/4+fkhNjYW27dvBwDs2LEDWq0WWq3W4jZyHAqFhIlD/PBW4hh8//BELJoQipLz9Xj8018w7tlvsea/vyCvrEbuMomIqId16MhIUVERZs2ahbq6OigUCvTv3x/r1q1DTEwMMjMzkZiYCIPBAC8vL2zZsgWRkZEAYHFbe3hkxL7VNTbj08OnsTk1HyfPVEGSgElD/JCo02LCYDXPwiEislGc9IxsjhAC+/LKsSklD98cPwuTAML7eyBRp8XtIzW8cjARkY1hGCGbVlRei+3pBXh3fyHO17dcOfju0UGYF69FsC/PwiEisgUMI2QXahtbrhy8OSUfWSXVkCRgylB/LEjQIj7cl104RERWjGGE7IoQAqk5BmxKyce3J89CCCDC3xOJulDcFjsQbs6cSI2IyNowjJDdKjDUYGtaAd7PKEJVgxHebk64Jy4Ic8eFcCI1IiIrwjBCdq+mwYiPDuqxKTUfuaU1UEjADcMGIDFBi7Gh/diFQ0QkM4YRchgmk8CP2WXYnJKH3ZmlAIDrArzwPzotZsbwWjhERHJhGCGHlFtaja1pBfjwJz2qG4zo6+6EP8YFY864EAT6uMldHhGRQ2EYIYdWVd+ED3/SY0tqPvINtVAqJEyPHID/SdBiVEhfduEQEfUChhEitHTh7DlVirdS8vBjVhkAYPhALyTqQnFLdAC7cIiIehDDCNFlskuqsCW1ADsO6lHb2AxfD2fMHhuM2eNC4O/lKnd5RER2h2GE6Coq65rwwYEibEnLR1F5HVQKCTOiApCYoMXI4L5yl0dEZDcYRoiuodkk8N3JEmxOzUNKtgEAMCLIB/+j02JGVACcVR26wDUREV0FwwhRJ2SeqcLm1Hx8fEiP+iYT+vdxaenCGRuC/n1c5C6PiMgmMYwQWaCithHvZRRha1oBTlfUwUkp4ffRgUhM0CJa4yN3eURENoVhhKgLjM0m7DpxFptS8rEvrxwAMDLYB/+TEIrpwwfASckuHCKia2EYIeomx4vPY3NqHj45XIxGown+Xi6YOy4Ef4wLhq8nu3CIiK6GYYSom5XXNOLd/YXYllaAM+fr4axSYOaIQCTqtBg+0Fvu8oiIrA7DCFEPaWo24atfzmBzSj4OFJwDAMRp+yExQYsbhvlDxS4cIiIADCNEveKovhKbU/Px2c/FaGw2IdDbFXPiQzAvXgtPF5Xc5RERyYphhKgXlVY14N39hdieXoCSqgaMDPbBO4vGcbp5InJo7e2/eQyZqJv17+OC5VMGY++qyViQEIqDhRVY+eER2FjuJyLqNTx2TNRDnFUK/O3m66A/V4v//lyMULUHHpwWIXdZRERWh0dGiHqQQiHhpXtiMHygF/71bRY+PXxa7pKIiKwOwwhRD3N3VuHN+WMwwMsVj3xwBAfyy+UuiYjIqjCMEPUCfy9XvDF/NFRKCUnbfkKhoVbukoiIrAbDCFEvGT7QGy/fE4tztY1YsCUDlXVNcpdERGQVGEaIetHUYf54bMZ1yC6pxtK3D6Kp2SR3SUREsmMYIeplC8eH4k9jg7E3uwxP/PcXnvJLRA6PYYSol0mShCdnRmLCYDXe2VeIN/fmyV0SEZGsGEaIZOCkVODffxqJQX6eeGbnCXxz/KzcJRERyYZhhEgm3m5OeGv+GPR1d8b9/zmEY6cr5S6JiEgWDCNEMgr2dcfrc0fB2Cxw75YDOFNZL3dJRES9jmGESGajtf2w9s5onDlfj3u3ZqC20Sh3SUREvYphhAUTigUAACAASURBVMgK/CFmIO6fMhjHTp/HA/85DJOJZ9gQkeNgGCGyEg9MHYyZIwLx9fGzeP7Lk3KXQ0TUaxhGiKyEJEl44Y5ojAz2wcYfcvGf/YVyl0RE1Cs6FEbq6+tx6623IiIiAjExMZg+fTry8/MBACUlJZg+fToGDx6M4cOHY+/eveb1LG0jclSuTkq8Pm80NH3d8LdPjiE1u0zukoiIelyHj4wkJSUhMzMThw8fxi233IKkpCQAwOrVqzFu3DhkZWVh06ZNmD17NoxGY5faiByZ2tMFmxLHwM1Jifu2/4Tskmq5SyIi6lEdCiOurq6YMWMGJEkCAIwbNw65ubkAgPfffx9Lly4FAIwZMwb+/v7moxyWthE5usH+ffDKnJGoaWzGwi0ZKK9plLskIqIeY9GYkZdffhm///3vYTAYYDKZ0L9/f3ObVqtFYWGhxW1E1GLC4P54cmYkCgy1WLztABqMzXKXRETUIzodRp599llkZWXhmWeeAQDz0ZJWF1/0y9K2iyUnJ0Oj0Zhv1dU8ZE2OY864ECwcH4qM/HP4646jvKgeEdmlToWRdevW4aOPPsIXX3wBd3d3+Pr6AgBKS0vNyxQUFCA4ONjitsutWLECer3efPP09OxMyUQ279EZ12HqdX746NBpbNidLXc5RETdrsNhJDk5Ge+++y6++eYb+Pj4mH9/5513YsOGDQCAjIwMnDlzBuPHj+9SGxH9RqmQ8K97YnFdgBfWfX0Knx8plrskIqJuJYkOHPfV6/UICgpCWFgY+vTpAwBwcXHBvn37cPbsWcydOxd5eXlwdnbGK6+8guuvvx4ALG5rj0ajgV6v78o2E9mk4oo63LohBZV1TfhP0jjEBveVuyQiog5rb//doTBiTRhGyJEd1Vfizo2p8HRR4eMlCQjq5y53SUREHdLe/pszsBLZkCiNN166OxaGmkbcu+UAquqb5C6JiKjLGEaIbMz04QOwavpQZJ6twrJ3DsHYbJK7JCKiLmEYIbJBi38XhrtGa7DnVCme+vy43OUQEXUJwwiRDZIkCU/fGoX4MF9sTSvA5pQ8uUsiIrIYwwiRjXJWKfDanFEIU3vgqc+PY/fJErlLIiKyCMMIkQ3zdnfCW4lj4OXmhGXvHMSJX8/LXRIRUacxjBDZOK3aAxvnjEJjswkLN2egpKpe7pKIiDqFYYTIDowN88U/bo9GcWU9Fm05gLpGXlSPiGwHwwiRnZg1SoNlkwbhZ30lHvrgMEwmm5rPkIgcGMMIkR1ZMS0CN0cFYOfRM3jxm0y5yyEi6hCGESI7olBIePGuERgR5IMNu3PwwYEiuUsiIromhhEiO+PqpMT/zRuFgT5uePTjo0jPNchdEhFRuxhGiOyQXx9XvJk4Gi4qJe7b/hPyymrkLomI6KoYRojs1NABXlj/p1icr2vCgs0ZqKhtlLskIqI2MYwQ2bFJQ/zwxO8jkVdWg/u2/4RGIy+qR0TWh2GEyM7N12kxPz4E6bnleOzjoxCCp/wSkXVhGCFyAI/fMgwTh/THBz/p8dqeXLnLISK6BMMIkQNQKRVY/8dYDPHvg+e/PIkvj/0qd0lERGYMI0QOoo+rE95MHA21pwseeO8wjugr5C6JiAgAwwiRQ9H0dcf/zRsFIYCFWw6guKJO7pKIiBhGiBxNbHBfJN8Vg9KqBizccgDVDUa5SyIiB8cwQuSAbo4OwCM3DsGJX89j+buH0MyL6hGRjBhGiBzUkonhmDVSg+9OluCZ/3dC7nKIyIExjBA5KEmS8OztwxGn7Ye3UvKwLb1A7pKIyEExjBA5MBeVEhvnjoLW1x1r/vsL9pwqlbskInJADCNEDq6vhzPeTBwDD2cllr19EKfOVsldEhE5GIYRIkJ4f0+8NncU6pqasWBzBsqqG+QuiYgcCMMIEQEAdOFqPHPbcOjP1WHR1gOob2qWuyQichAMI0RkdveYYCy+PgyHCivwyIdHeFE9IuoVKrkLICLrsurGoSgoq8VnPxcjVO2BFdMi5C6JiOwcj4wQ0SUUCgn/vDsGUQO98fK3Wfjk0Gm5SyIiO8cwQkRXcHNW4o35oxHg7YqVHx5BRn653CURkR1jGCGiNvl7ueKN+aOhUkpYvO0n5JfVyF0SEdkphhEiuqrIQG+8fE8sztU2YsbLPyL5m1O8sB4RdTuGESJq19Rh/nhr/hgM8HbFy99mYeLa3diWlo+mZpPcpRGRnZCEjZ27p9FooNfr5S6DyOEYm014/4Ae/9x1CqVVDQhVe+CRG4fgpuEDIEmS3OURkZVrb//doSMjy5cvh1arhSRJOHbsmPn3WVlZ0Ol0iIiIQFxcHI4fP97lNiKyTiqlAn8aG4w9j0zEQ9MiUHK+HkvePojbX03F/jwOcCUiy3UojNxxxx3Yu3cvQkJCLvn94sWLkZSUhFOnTmHlypVYuHBhl9uIyLq5O6vwlymDsWflJMyPD8FRfSXu2piGe7dkIIvXtSEiC3Sqm0ar1eLzzz/H8OHDUVJSgoiICJSVlUGlUkEIgYCAAKSnp8Pd3d2iNq1We80a2E1DZF3yy2qw9qtM/L+jv0IhAXeOCsKD0yIwwNtV7tKIyIp0uZumLUVFRQgMDIRK1TKJqyRJCA4ORmFhocVtRGR7tGoPbJg9Ep8sTcAYbT+8d6AIE9ftxtqvTuJ8fZPc5RGRDejS2TSXD1q7+CCLpW2XS05OhkajMd+qq6u7UjIR9ZCYIB/8J2kc3kocjeB+7tiwOwfXv7Abb+3NQ6ORZ94Q0dVZHEaCgoKg1+thNLbMOSCEQFFREYKDgy1ua8uKFSug1+vNN09PT0tLJqIeJkkSJg/1xxf3/w4vzIqGi0qJpz4/jinJ3+O/PxfDZLKpk/eIqJdYHEb8/PwQGxuL7du3AwB27NgBrVYLrVZrcRsR2QelQsJdY4Kw++GJWDl9CCpqmrD83UP4w4YUpGaXyV0eEVmZDg1gXbp0KT799FOcOXMGarUanp6eyM7ORmZmJhITE2EwGODl5YUtW7YgMjISACxuuxYOYCWyPedqGvHv3dnYllaAxmYTro/oj9U3DcV1AV5yl0ZEvaS9/TcnPSOiXlNUXot1X2fi08PFkCTg9lgNVtwQgYE+bnKXRkQ9jGGEiKzKsdOVeO6LE0jJNsBZpcD/6LRYMnEQvN2d5C6NiHoIwwgRWR0hBH7IKsM/vjiJE7+eh7ebE5ZOCse8eC1cnZRyl0dE3YxhhIislskk8Mnh03jx61M4XVGHgT5ueOiGCNwaMxAKBa95Q2QvGEaIyOrVNzVjW1oB/r07G5V1TbguwAt/vWkofhfRX+7SiKgbMIwQkc2orG3CK99nY1NqPhqNJowfpMbqm4Zi+EBvuUsjoi5gGCEim3O6og7JX5/CR4f0EAL4Q0wgHr5hCIL6uctdGhFZgGGEiGzWiV/P4x9fnMSeU6VwViowNz4EyyYNQl8PZ7lLI6JOYBghIpuXml2G5744iaOnK9HHVYU/TwzHgoRQnnlDZCMYRojILphMAp8dKca6rzNRVF6HAV6uWDEtArNGaaDkmTdEVo1hhIjsSoOxGW+nF2L9d1k4V9uEIf59sOqmIZg0xO+Kq4ITkXVgGCEiu3S+vgkb9+Tgzb15qG8yYWxoP/x1xnWICfKRuzQiugzDCBHZtTOV9fjnN6fwwU9FMAng5ugAPHLDEGjVHnKXRkQXMIwQkUM4dbYKL3x5ErtOlEClkDB7bDD+MmUw1J4ucpdG5PAYRojIoezLNeC5L07icFEFPJyVuO/6cCycEAp3Z5XcpRE5LIYRInI4Qgh8cewM1n6VibyyGvj1ccEDUyNw+8iBcFIqoJDAwa5EvYhhhIgcVlOzCf/ZX4h/fZuFsurGS9pUCglKhWT+6aRU/HZfKUGlUFzSrlJIUCmv/J1SobhonZb1Lr5/xXIXPZb5vrLt5ZyUV66nVEjwdFUhwNsNfd2dGKrIJrS3/+YxSyKya05KBebGa3HbSA22pOYj62wVjCaBZpO45Kex2XTZ700wNrfcbzSarrKMgNFkQrNJoKlZnr/rXJ0UCPB2Q4C3KwK83RDo0/IzwMcVgRd+erk6yVIbUUfxyAgRUTe5OJwYTQLNzW2HliuWMwlz8DFeCEGXr3d5cKqsa8KvFfUorqzDr5X1+LWiDjWNzW3W5emiagkrPm4I9L4yrAR6u8HNmTPZUs/ikREiol6gVEhQKuTZqQshUNVg/C2gVNTj18o6FF/4+WtlPfblGtBgNLW5vo+7U8uRFW9XBPhcepQl0NsNA7xd4axS9PJWkaNgGCEisgOSJMHL1QleA5wwZECfNpcRQuBcbROKKy4cTbk4rFwIMT+UVF21y0nt6XIhoFwWVi789OvjApWSgYU6j2GEiMhBSJKEfh7O6OfhjOEDvdtcxmQSKKtuQPGFrp/Wn79W/nbE5djpSpjayCtKhQS/Pi5XdAldPI5F7eECBa8jRJdhGCEiIjOFQoKflyv8vFyvOq1+U7MJJVUNV4aVCz8Ly2txsLCizXWdlQr4e7uYu4TUni5wVil+uykVcLnwbxeV0vy7qy1zRbtSwbOLbBDDCBERdYqTUoGBPm4Y6ON21WXqm5px9nz9JWNWii8KLZlnqrA/r7xH6nNWKeDSRoC5/N8ul4QbZZvLu7SzfmtgclEpoFJKkNASglqzUGskujQbXW0Z6ZL7ly5z6Tpoa5nL1r983baeE1d5fG83Jzj1cncbwwgREXU7VyclQnw9EOJ79esD1TYaUV7TiEajCY3NppafF24Nl91vbW8wNl9zmdZ/N1zWVlVvvGT9xmaTbKdkW7P/t3w8IgPb7sbrKQwjREQkC3dnlexT9JtMoiXEXDX8tBV0mtHQdOkyxguhRuDCzwsZxxx1hLjk/sWTalxtnd/uX9rwW/tvD3KtdS+fxENcVs/Fy/R1d77yhephDCNEROSwFAoJrgolXJ04z4qceA4WERERyYphhIiIiGTFMEJERESyYhghIiIiWTGMEBERkawYRoiIiEhWDCNEREQkK4YRIiIikhXDCBEREclK1jCSlZUFnU6HiIgIxMXF4fjx43KWQ0RERDKQNYwsXrwYSUlJOHXqFFauXImFCxfKWQ4RERHJQBLi8svn9I6SkhJERESgrKwMKpUKQggEBAQgPT0dWq32qutpNBro9freK5SIiIi6rL39t2xHRoqKihAYGAiVquVafZIkITg4GIWFhXKVRERERDKQtZtGkqRL7rd1kCY5ORkajcZ8q66u7q3yiIiIqBfI2k0zePBgGAyGTnXTuLi4oH///t1eT3V1NTw9Pbv9ceVgL9vC7bAu3A7rwu2wLtyOaystLUVDQ0ObbaoeecYO8PPzQ2xsLLZv347ExETs2LEDWq223SAC4Kob0lX2NBbFXraF22FduB3WhdthXbgdXSNbGAGAjRs3IjExEc8++yy8vLywZcsWOcshIiIiGcgaRoYMGYK0tDQ5SyAiIiKZKdesWbNG7iKsRXx8vNwldBt72RZuh3XhdlgXbod14XZYTrYBrEREREQAr01DREREMmMYISIiIlkxjHTA5s2bcccdd3T5cSRJ6rFJ21577TX885//7JHHpp7Rk++H7jBjxgzk5OQAaPkMnDp1SuaKfhMTE4O6ujq5y+hRlrw/Kioq8MILL/RQRde2Zs0aNDY2dtvj5efnQ61Wd9vjWWLixIn4/PPPZa1BTu3t/w4cOIDZs2d3y/MwjNgYo9HY5u/uu+8+PPjggzJURJ3V1v+hNdq5cyfCw8MBWF8YOXz4MNzc3Dq8vK285l0ldxh58sknuzWMkHUbPXo03n777W55LLsJI3V1dbj77rsxbNgwjBgxAjfccAPOnDmDSZMmYdSoUYiMjMTy5cvNU86vWbMGf/rTn/D73/8ew4YNw+TJk1FeXg4AaGxsxOLFixEREYFJkyZh37595ueJioq65HTkjRs34u677+5wnRs2bMDYsWMRGhqKTZs2mX+v1Wpx7Ngx8/3Ro0fj+++/B9CSzB977DFMmTIFN954o/mvhaeeegoTJkzA+vXrsWbNGjz88MPm9Z9//nlERUVhxIgRGDduHGpray1+PQBg3bp1iIuLw8iRIzFjxgwUFRV1eJsvJkkSnn/++TZfg6ysLNx8880YM2YMRowYgVdeeQVAy2u8ePFiAMCRI0cgSRK++eYbAMDjjz+O//3f/7WoFkutXbvWXA/QsgNQq9UwGAx4+OGHMXz4cAwfPhx/+ctfzF/MiYmJWL58OaZPn44RI0Zc8nhCCKxatQp/+MMfUFtb26vb0iotLQ0TJkzAiBEjEB0djU8//dT8nnzjjTdw4MABLF++HDExMdi5c2eXPwdd1XrU4GrvmdZlXnzxRUycOBF//etfkZ6ejlGjRiEmJgbDhw/Hq6++CgCoqqrCokWLEBcXh+joaNx3331oampCRkYGrrvuuksuUxEfH48vvviiW7djzZo1SEhIQEREBN59991L2q/2fXHgwAHEx8cjOjoacXFxSElJAQDcd999qKioQExMDEaPHg0AyM7OxtSpUxEdHY2YmBh88skn3Vb/xe677z4AgE6nQ0xMDM6ePYvbbrsNUVFRGD58OF5//XXzslqtFn//+9+h0+kQHByM7du341//+hfi4uIQHh5u/u5r9fDDD2Ps2LGIjIzEd999Z1F9lx9pUqvVyM/PN9fz5JNPQqfTITQ0FE8//XSbj/Hhhx8iJiYGOTk5+P777xETE4MlS5ZgxIgRiIyMxIEDB8zLbtu2DVFRUYiOjsbNN9+M06dPA2h5D7V+dlasWAGNRmNeJzg4GEVFRdd87I5oa58IAC+88AIiIyMRFRWF2bNno7KyEkDLfu+RRx4x7zemT59ufqyqqir88Y9/RFRUFEaPHo3c3FwAwPfff29+n3WZsBMfffSRmDZtmvm+wWAQdXV1oqqqSgghhNFoFDfffLP44IMPhBBCPPHEEyIsLEwYDAYhhBB33323ePbZZ4UQQrz88sti2rRporGxUdTU1IhRo0aJWbNmCSGEeP3118Xs2bPNzxMVFSV++OGHDtUIQLz00ktCCCGOHz8uPD09RVNTkxBCiJCQEHH06FHzsqNGjRK7d+8WQghx/fXXixkzZojGxkYhhBB5eXkCgHj77bfNyz/xxBPioYceEkIIsXnzZjFu3DhRWVkphBCivLxcGI1Gi1+Pt99+WyxatEgYjUYhhBBbt24VM2fO7NA2d/Q1MBqNYvTo0eLEiRNCCCFqampEVFSU+Omnn0ROTo4IDQ0VQgiRnJws4uPjxapVq4QQQowbN06kpqZaVIulzp07J/z8/ERFRYUQQoh169aJBQsWiFdeeUVMnDhR1NfXi6amJnHTTTeJF154QQghxPz580VsbKz59Rei5bUoLS0Vd911l1i2bJlobm7u1e1oZTAYhL+/v0hJSRFCCNHc3CwMBsMl78nrr79efPbZZ+Z1uvI56A4AREVFxVXfM63LPPPMM+Z1Zs6ceclnpry8XAghxKJFi8TWrVuFEEKYTCaxcOFCkZycLIQQQqfTiW+++UYIIcRPP/0kBg0aJEwmU7dux5o1a4QQQuTk5AhfX19RWFhobmvrs9LQ0CCCgoLEl19+KYQQ4scffxQDBgwQ1dXVIi8vT/j6+l7yHHFxcWLjxo1CCCFOnTol+vXrZ36O7gbA/B6/6667xOrVq4UQQpw9e1ZoNBqxb98+IUTL993DDz8shBBi//79ws3NTWzYsEEIIcR7770n4uPjhRC/fddt3rxZCCFEWlqa8Pf3F9XV1V2qTQghfH19RV5enrmeBx54QAghRElJifDy8hJ6vV4I8dt7f926deJ3v/ud+Tty9+7dQqVSiYyMDCGEEK+++qq44YYbhBBCHD16VPj7+5sf4+mnnxYzZswQQgjxt7/9TTz55JNCCCFiY2NFXFycOHHihDh58qSIiIi45mN3VFv7xJ07d4qhQ4eKc+fOCSFa3vtLliwRQgixZs0acdttt4n6+nrz6yCEEJs2bRLe3t4iPz9fCCHEqlWrRFJSkrnOUaNGdaquq7GbIyMjRozAyZMnsWTJErz33ntwcnKCyWTCqlWrMGLECMTGxuLAgQM4fPiweZ2bbroJ/fr1A9CSVlv7x3fv3o358+fDyckJ7u7umDNnjnmdOXPm4LvvvkNJSQn27NkDSZIwYcKEDtfZ2r923XXXQaVS4cyZMx1ab+7cuXBycjLfd3V1xR//+Mc2l/3888/x5z//GV5eXgCAvn37QqlUWvx6fPLJJ9i1a5f5r8oXXngBBQUFHd7my7X1GmRmZuKXX37BPffcg5iYGOh0OlRVVeH48eMICwsDAOTm5mLXrl147rnn8N133+H8+fM4deoUxowZY3EtlvDx8cGsWbOwefNmCCHw6quvYtmyZdi1axcWLlwIFxcXqFQqLFq0CLt27TKvd9ddd11xzYfp06cjJiYG69evh0Ihz8cxLS0Nw4YNg06nAwAoFArz++Bquvo56A4FBQVXfc+0WrBggfnfkyZNwtNPP42nnnoKe/fuRd++fQG0vL/Xrl2LmJgYxMbG4scff0RWVhYA4P7778eGDRsAAOvXr8eSJUuuuMBnV917770AgLCwMIwfPx4//vijue1qnxVnZ2fceOONAIDx48fDz88PR44cueKxq6qqcPjwYSxcuBAAMHjwYIwfPx579+7t1m1oy65du7B06VIALZf/uP322/Htt9+a21uPpI0cORJ1dXW46667AACjRo0y/+UNAM7Ozpg7dy4AYNy4cRgwYAB+/vnnbq+39bXu378/wsLCkJeXZ25bs2YN9uzZg6+//vqSz8aQIUPMRwYu34fccsstGDhwIABgyZIl+O677yCEwNSpU7Fr1y6UlJTAyckJd911F3bt2oVdu3Zh6tSp13zsjmprn7hr1y7Mnj0bPj4+AIA///nP5u+ozz//HA888ABcXFzMr0Or8ePHIyQkxOJaOkLWGVi7U1hYGI4fP47vvvsOu3btwsqVK3HvvffCYDBg3759cHV1xYoVK1BfX29ex9XV1fxvpVJp7lcW7Uy94ubmhvnz5+ONN97AoUOHsGzZsk7VebXnVKlUaG5uNrddXCeAK3ZiHh4enf5STE5Otvj1+Nvf/nbJF3tXtPU8Qgio1epLwtHFpkyZgi+++ALZ2dm4/vrrYTKZsGPHDowfPx4qVe+/jZcvX45bb70V4eHh8Pf3R2xsLIQQV/yfXHy/rYtPTZkyBV9//TWWLVuGPn369Hjd3aWrn4PucK33DHDpa/7AAw9g5syZ+Pbbb/Hoo49i+PDheOWVVyCEwCeffGIOvRe7/fbbsWrVKhw6dAifffZZrwwSv/g9c7XPSluf/bZ+1/pd1t77sie197yt26ZUKq+4f60xPpbUr1Qq2/2Ovdr3H9CyA/7qq6+Ql5eHoUOHXnOdy/+PLv53fHw8jh07hv/+97+YMmUKpk6dita5R+fNm9ehejqirX3i5MmTr/hDoyOvZVdr6Qi7OTKi1+shSRJmzpyJdevWQQiBgwcPYsCAAXB1dcXZs2fxwQcfdOixpkyZgm3btsFoNKKurg7vvPPOJe1Lly7Fq6++ij179nTbSOLw8HDz2JT9+/cjMzPT4seaOXMmXn31VZw/fx5Ay5iG5uZmnDt3zqLXY+bMmXjllVfMY0iamppw6NAhi+try5AhQ+Du7o6tW7eaf5ednW1+zqlTp2Lt2rUYO3YsgJa/cp988slL/pLoTUOHDoVWq8Wf//xn84542rRp2Lx5MxobG2E0GvHmm29es77HH38cM2fOxLRp03Du3LneKP0KOp0OJ06cQGpqKgDAZDJdMl4IALy8vMx9y6164nPQGeHh4e2+Zy6XmZmJsLAwLFq0CI8++ijS09MBtLy///GPf5i/YM+dO4fs7GwALX8kLF68GDNnzsSsWbPMf1F2p7feegtAy5kje/fuxfjx49tdfujQoWhoaDCPnUhNTUVJSQmioqLg5eWF2tpa87Z4eXkhJibGfN2vnJwcpKSkICEhodu3AwD69Oljfp9MnTrVPE6ktLQUH3/8MSZPntzpx2xsbDQPkty/fz/OnDmD6OjoTj/Oxd+xH330EWpqajq87o033og33ngDt9xyS7vht9WUKVOwc+dO85Hv1157DVOmTIEkSXB2dsbYsWPx9NNPm8fyHD9+HD/88AMmTZrU6e26mrb2iTExMfjPf/6DqqoqAMDrr79u/o6aOXMmXnrpJfPFaEtLS7utlo6wmyMjR48exerVqyGEgMlkwty5c5GUlIQ777wTMTExGDhwYId3XElJSThy5AiGDRsGjUaDCRMmXNItodFoEBMTg4iICLi7u3dL/c888wzmz5+PN998EyNHjkRkZKTFjzV37lwUFxcjPj7e3NW0a9cuLF++3KLXY+7cuTAYDJg4cSIkSYLRaMTChQsRGxtrcY2XU6lU+Oyzz/Dggw9i3bp1aG5uRv/+/c1fQlOmTEFhYaG55mnTpmHdunWyhREAWLRoEZYtW2Y+7S0pKQk5OTkYOXIkgJaBx8uXL7/m4zz44IPw9PTE5MmT8eWXX8Lf379H675c37598fHHH+Ohhx5CVVUVJEm6YlBwUlISHnroIaxduxbPPvssZsyY0SOfg86QJKnd98zl1q9fj927d8PZ2RlKpRIvvvgiAOCll17CqlWrEBMTA4VCAScnJzz//PMYNGgQAGDhwoV49NFHe+zoj4uLCxISElBaWor169cjKCio3eWdnZ2xY8cOLF++HDU1NXB1dcUHH3wADw8PeHh4YPbs2YiKioKHhwcOHDiAt99+G4sXL8ZLL70ESZLwxhtvXPM5LPXQQw9h8uTJcHNzw1dffYX77rsP0dHRMJlMeOyxxxAXF9fpx/T19UV2djbGjh2L6upqvPPOO/Dw8Oj047z00ktYunQp/Pz8MGnSJPj6+nZq/d/97nd49913MWvWLGzfvr3dzBXccQAAATRJREFUZSMjI/Hcc8+ZB40GBQVdMoB32rRp2LNnDxISEiBJEkaNGoWcnJxuDbtt7RPvv/9+NDQ0ID4+HpIkITo62jzoe9WqVXjssccQGxsLZ2dnBAYGYufOnd1Wz7VwOngLVFdXY+jQofjxxx8RGhoqdzkkkyVLliAgIACPP/643KXIQq7PQUlJCUJCQlBbW9sr3Q3vv/8+Nm7ceMl4h+4iSRKqqqra7MIjciR2003TW1577TUMHToUS5YsYRBxUMXFxRg6dCgOHz6MBx54QO5yZCHX5yAjIwPjxo3D3//+914JItOnT8fq1auRnJzc489F5Mh4ZISIiIhkxSMjREREJCuGESIiIpIVwwgRERHJimGEiIiI/n+7dSwAAAAAMMjfehh7iqKVjAAAKxkBAFYyAgCsAuz/KUi1NsXwAAAAAElFTkSuQmCC\n", + "text/plain": [ + "<Figure size 640x480 with 1 Axes>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "from matplotlib.pyplot import figure\n", + "\n", + "figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')\n", + "\n", + "# Frequency Distribution Plot of top 10 most occured words\n", + "plt.plot(freq.index, freq.values)\n", + "plt.show()" ] }, { @@ -65622,7 +58824,7 @@ }, { "cell_type": "code", - "execution_count": 240, + "execution_count": 214, "metadata": {}, "outputs": [], "source": [ @@ -65636,7 +58838,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 215, "metadata": {}, "outputs": [ { @@ -65665,57 +58867,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 216, "metadata": {}, "outputs": [], "source": [ "#Saving training data and testing data with their labels\n", "\n", - "X_train = train_set['changed_tweets']\n", - "y_train = train_set['label_code']\n", + "X_train = dataset['changed_tweets']\n", + "y_train = dataset['label_code']\n", "X_test = test_set['tweetText']\n", "y_test = test_set['label_code']" ] }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 219, "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "# 'fake' category:\n", - " . Most correlated unigrams:\n", - ". zero\n", - ". boston\n", - ". suspect\n", - ". manhattan\n", - ". seaside\n", - " . Most correlated bigrams:\n", - ". \n", - "\n", - "# 'humor' category:\n", - " . Most correlated unigrams:\n", - ". zero\n", - ". boston\n", - ". suspect\n", - ". manhattan\n", - ". seaside\n", - " . Most correlated bigrams:\n", - ". \n", - "\n", - "# 'real' category:\n", - " . Most correlated unigrams:\n", - ". zero\n", - ". boston\n", - ". suspect\n", - ". manhattan\n", - ". seaside\n", - " . Most correlated bigrams:\n", - ". \n", - "\n" + "ename": "NameError", + "evalue": "name 'features_train' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m<ipython-input-219-5c2345e2fed5>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mProduct\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcategory_id\u001b[0m \u001b[0;32min\u001b[0m \u001b[0msorted\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdic\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 5\u001b[0;31m \u001b[0mfeatures_chi2\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mchi2\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfeatures_train\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlabels_train\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mcategory_id\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 6\u001b[0m \u001b[0mindices\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0margsort\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfeatures_chi2\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0mfeature_names\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marray\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtfidf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_feature_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mindices\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mNameError\u001b[0m: name 'features_train' is not defined" ] } ], @@ -65724,7 +58901,7 @@ "import numpy as np\n", "\n", "for Product, category_id in sorted(dic.items()):\n", - " features_chi2 = chi2(features_train, labels_train == category_id)\n", + " features_chi2 = chi2(_train, labels_train == category_id)\n", " indices = np.argsort(features_chi2[0])\n", " feature_names = np.array(tfidf.get_feature_names())[indices]\n", " unigrams = [v for v in feature_names if len(v.split(' ')) == 1]\n", @@ -65737,7 +58914,7 @@ }, { "cell_type": "code", - "execution_count": 241, + "execution_count": 218, "metadata": {}, "outputs": [], "source": [ @@ -65751,10 +58928,6 @@ "save_test = open('pickles/test_set.pickle', 'wb')\n", "pickle.dump(test_set, save_test)\n", "\n", - "#save labels test\n", - "save_test_labels = open('pickles/labels_test.pickle', 'wb')\n", - "pickle.dump(labels_test, save_test_labels)\n", - "\n", "#save X train\n", "save_X_train = open('pickles/X_train.pickle', 'wb')\n", "pickle.dump(X_train, save_X_train)\n", @@ -65769,11 +58942,7 @@ "\n", "#save y test\n", "save_y_test = open('pickles/y_test.pickle', 'wb')\n", - "pickle.dump(y_test, save_y_test)\n", - "\n", - "#save tfids \n", - "save_tfidf = open('pickles/tfidf.pickle', 'wb')\n", - "pickle.dump(tfidf, save_tfidf)" + "pickle.dump(y_test, save_y_test)\n" ] } ], diff --git a/CWfiles/MultinomialNB.ipynb b/CWfiles/MultinomialNB.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..e65bee21f959d4baca308355782d81d4b9e62fe1 --- /dev/null +++ b/CWfiles/MultinomialNB.ipynb @@ -0,0 +1,182 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import pickle\n", + "import numpy as np\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "from sklearn.naive_bayes import MultinomialNB\n", + "from pprint import pprint\n", + "from sklearn.model_selection import RandomizedSearchCV\n", + "from sklearn.model_selection import GridSearchCV\n", + "from sklearn.metrics import classification_report, confusion_matrix, accuracy_score\n", + "from sklearn.model_selection import ShuffleSplit\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "#load training dataset\n", + "data = open('pickles/dataset.pickle', 'rb')\n", + "train_set = pickle.load(data)\n", + "X_train = train_set['changed_tweets']\n", + "y_train = train_set['label_code']\n", + "\n", + "#load testing dataset\n", + "test = open('pickles/test_set.pickle', 'rb')\n", + "test_set = pickle.load(test)\n", + "X_test = test_set['tweetText']\n", + "y_test = test_set['label_code']" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.pipeline import Pipeline\n", + "\n", + "tweet_clf = Pipeline([\n", + " ('tfidf', TfidfVectorizer(ngram_range=(1,1))),\n", + " ('clf', MultinomialNB(alpha=0.5)),\n", + "])" + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Training acc: 0.9289172761924385 && Testing acc: 0.8527296937416777\n" + ] + } + ], + "source": [ + "tweet_clf.fit(X_train, y_train)\n", + "training_acc = accuracy_score(y_train, tweet_clf.predict(X_train))\n", + "testing_acc = accuracy_score(y_test, tweet_clf.predict(X_test))\n", + "\n", + "print(\"Training acc: \" + str(training_acc) + \" && Testing acc: \" + str(testing_acc))" + ] + }, + { + "cell_type": "code", + "execution_count": 139, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " 0 0.93 0.59 0.72 1209\n", + " 1 0.83 0.98 0.90 2546\n", + "\n", + " accuracy 0.85 3755\n", + " macro avg 0.88 0.78 0.81 3755\n", + "weighted avg 0.86 0.85 0.84 3755\n", + "\n" + ] + } + ], + "source": [ + "print(classification_report(y_test, tweet_clf.predict(X_test)))" + ] + }, + { + "cell_type": "code", + "execution_count": 126, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Training acc: 0.9269191779559488 && Testing acc: 0.7643142476697736\n" + ] + } + ], + "source": [ + "from sklearn.model_selection import GridSearchCV\n", + "\n", + "table = {}\n", + "parameters = {\n", + " 'tfidf__max_df': np.arange(0.0,1.1, .1).tolist(),\n", + " 'tfidf__min_df': np.arange(0.0,1.1, .1).tolist(),\n", + " 'clf__alpha': np.arange(0.0,1.1, .1).tolist()\n", + "}\n", + "\n", + "gs = GridSearchCV(tweet_clf, parameters, cv=5, n_jobs=-1)\n", + "gs = gs.fit(X_train, y_train)\n", + "\n", + "training_acc = accuracy_score(y_train, gs.predict(X_train))\n", + "testing_acc = accuracy_score(y_test, gs.predict(X_test))\n", + "\n", + "print(\"Training acc: \" + str(training_acc) + \" && Testing acc: \" + str(testing_acc))" + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.8119052784187032\n", + "{'clf__alpha': 0.5, 'tfidf__max_df': 0.1, 'tfidf__min_df': 0.0}\n" + ] + } + ], + "source": [ + "print(gs.best_score_)\n", + "print(gs.best_params_)\n" + ] + }, + { + "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.7.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/CWfiles/PassiveAggressiveClassifier.ipynb b/CWfiles/PassiveAggressiveClassifier.ipynb index a1bfec7045468a344648bbc1eb0a5ec3856c2265..67a71be0b36ff1287b92d16c524af977957c6bb0 100644 --- a/CWfiles/PassiveAggressiveClassifier.ipynb +++ b/CWfiles/PassiveAggressiveClassifier.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 23, + "execution_count": 237, "metadata": {}, "outputs": [], "source": [ @@ -18,7 +18,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 238, "metadata": {}, "outputs": [], "source": [ @@ -37,28 +37,28 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 239, "metadata": {}, "outputs": [], "source": [ "from sklearn.pipeline import Pipeline\n", "\n", "tweet_clf = Pipeline([\n", - " ('tfidf', TfidfVectorizer(max_df=0.5, min_df=3)),\n", - " ('clf', PassiveAggressiveClassifier(max_iter=58)),\n", + " ('tfidf', TfidfVectorizer(ngram_range=(1,2), max_df=0.5, min_df=3)),\n", + " ('clf', PassiveAggressiveClassifier(max_iter=50)),\n", "])" ] }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 262, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Training acc: 0.9294074278868307 && Testing acc: 0.8585885486018642\n" + "Training acc: 0.9593077160811785 && Testing acc: 0.8521970705725699\n" ] } ], @@ -70,6 +70,31 @@ "print(\"Training acc: \" + str(training_acc) + \" && Testing acc: \" + str(testing_acc))" ] }, + { + "cell_type": "code", + "execution_count": 263, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " 0 0.85 0.66 0.74 1209\n", + " 1 0.85 0.94 0.90 2546\n", + "\n", + " accuracy 0.85 3755\n", + " macro avg 0.85 0.80 0.82 3755\n", + "weighted avg 0.85 0.85 0.85 3755\n", + "\n" + ] + } + ], + "source": [ + "print(classification_report(y_test, tweet_clf.predict(X_test)))" + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/CWfiles/SVM - 65%.ipynb b/CWfiles/SVM - 65%.ipynb index d157c3a27e733a9fb16815dcdb9fadb1724bd230..9f67171626075909e952a2c0b29877a302179c4c 100644 --- a/CWfiles/SVM - 65%.ipynb +++ b/CWfiles/SVM - 65%.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -22,77 +22,56 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "#load training dataset\n", "data = open('pickles/dataset.pickle', 'rb')\n", - "dataset = pickle.load(data)\n", + "train_set = pickle.load(data)\n", + "X_train = train_set['changed_tweets']\n", + "y_train = train_set['label_code']\n", "\n", "#load testing dataset\n", "test = open('pickles/test_set.pickle', 'rb')\n", - "test_set = pickle.load(test)" + "test_set = pickle.load(test)\n", + "X_test = test_set['tweetText']\n", + "y_test = test_set['label_code']" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ - "training_data = open('pickles/features_train.pickle', 'rb')\n", - "features_train = pickle.load(training_data)\n", - "\n", - "labels = open('pickles/labels_train.pickle', 'rb')\n", - "labels_train = pickle.load(labels)\n", - "\n", - "testing_data = open('pickles/features_test.pickle', 'rb')\n", - "features_test = pickle.load(testing_data)\n", + "from sklearn.pipeline import Pipeline\n", "\n", - "labels2 = open('pickles/labels_test.pickle', 'rb')\n", - "labels_test = pickle.load(labels2)\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(9739, 11046)" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "features_train.shape\n" + "tweet_clf = Pipeline([\n", + " ('tfidf', TfidfVectorizer()),\n", + " ('clf', svm.SVC(random_state=8)),\n", + "])" ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 9, "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "(9739,)" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "Training acc: 0.9686823941485526 && Testing acc: 0.6753661784287617\n" + ] } ], "source": [ - "labels_train.shape" + "tweet_clf.fit(X_train, y_train)\n", + "training_acc = accuracy_score(y_train, tweet_clf.predict(X_train))\n", + "testing_acc = accuracy_score(y_test, tweet_clf.predict(X_test))\n", + "\n", + "print(\"Training acc: \" + str(training_acc) + \" && Testing acc: \" + str(testing_acc))" ] }, { diff --git a/CWfiles/pickles/X_train.pickle b/CWfiles/pickles/X_train.pickle index 992cfa7294a68eff707a406956ee4255340d207e..05f514859bacbf9cfed685977b6ad1570e553577 100644 Binary files a/CWfiles/pickles/X_train.pickle and b/CWfiles/pickles/X_train.pickle differ diff --git a/CWfiles/pickles/dataset.pickle b/CWfiles/pickles/dataset.pickle index f49e3d0da96759174cf4434909d0491734c1a71f..240dfc52b3b9f4d113e478bb167ab598ab03e983 100644 Binary files a/CWfiles/pickles/dataset.pickle and b/CWfiles/pickles/dataset.pickle differ diff --git a/CWfiles/pickles/features_test.pickle b/CWfiles/pickles/features_test.pickle index cf97aae77bf170b76034bd0b9624201a78389ef0..aeda05056895755d89369508cc2c938ca200f52f 100644 Binary files a/CWfiles/pickles/features_test.pickle and b/CWfiles/pickles/features_test.pickle differ diff --git a/CWfiles/pickles/features_train.pickle b/CWfiles/pickles/features_train.pickle index 888ae0ea75f57f1982381db5e62dd474bcd5b576..9582eca7dddf9046d904ff45acc55a7aee1f6b8c 100644 Binary files a/CWfiles/pickles/features_train.pickle and b/CWfiles/pickles/features_train.pickle differ diff --git a/CWfiles/pickles/labels_test.pickle b/CWfiles/pickles/labels_test.pickle index e974166b84024fed2bd296d320306bbef68e5cc7..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 Binary files a/CWfiles/pickles/labels_test.pickle and b/CWfiles/pickles/labels_test.pickle differ diff --git a/CWfiles/pickles/test_set.pickle b/CWfiles/pickles/test_set.pickle index 7d93dd6940143b6d7b18baded13678cee45a4efe..7de3a99123f7a4b70149e02f0eab4acd4f0947a2 100644 Binary files a/CWfiles/pickles/test_set.pickle and b/CWfiles/pickles/test_set.pickle differ diff --git a/CWfiles/pickles/tfidf.pickle b/CWfiles/pickles/tfidf.pickle index ff0a8cbb8de9b9d2b9541d1e1d50ae0ec3643e65..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 Binary files a/CWfiles/pickles/tfidf.pickle and b/CWfiles/pickles/tfidf.pickle differ diff --git a/CWfiles/pickles/y_train.pickle b/CWfiles/pickles/y_train.pickle index 1cac40a73b12d55a4c4661457011804fba02b9fe..b9a53ffca8099c8d44aa8334c03eae71b60fb3a4 100644 Binary files a/CWfiles/pickles/y_train.pickle and b/CWfiles/pickles/y_train.pickle differ diff --git a/master b/master new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391