diff --git a/README.md b/README.md
index b9c6e44..4e73a6b 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Python Scripts
+# Python Scripts
[](http://forthebadge.com)
@@ -290,7 +290,6 @@ python youtube-bot-linux.py
# For Windows Users
python youtube-bot-windows.py
```
-
#### NOTE:
In case your browser stoped working delete/comment the following line in the script.
#### _Linux_
@@ -299,7 +298,15 @@ In case your browser stoped working delete/comment the following line in the scr
`os.system("TASKKILL /F /IM " + brow + ".exe")`
-
+* ### Twitter Sentiment Analysis
+A python script that goes through the twitter feeds and calculates the sentiment of the users on the topic of Demonetization in India.
+Sentiments are calculated to be positive, negative or neutral.
+Various other analyses are represented using graphs.
+
+```bash
+pip install -r analyseTweets-requirements.txt
+python analyseTweets.py
+```
## Release History
@@ -329,7 +336,7 @@ Distributed under the MIT LICENSE license. See [``LICENSE``](https://github.com/
## Contributors
The following people helped in creating the above content.
-
+* Niharika Krishnan
* Khushal Sharma
* Kayvan Mazaheri
* Lakshay Kalbhor
diff --git a/analyseTweets-requirements.txt b/analyseTweets-requirements.txt
new file mode 100644
index 0000000..9f08671
--- /dev/null
+++ b/analyseTweets-requirements.txt
@@ -0,0 +1,4 @@
+matplotlib
+numpy
+textblob
+collections
\ No newline at end of file
diff --git a/analyseTweets.py b/analyseTweets.py
new file mode 100644
index 0000000..fa8b2b8
--- /dev/null
+++ b/analyseTweets.py
@@ -0,0 +1,140 @@
+import csv
+import random
+import re
+import codecs #provides transparent encoding/decoding
+from textblob import TextBlob #Library for Text Processing
+import time
+from collections import Counter
+
+#Plotting dependecies
+import matplotlib.pyplot as plt; plt.rcdefaults()
+import numpy as np
+import matplotlib.pyplot as plt
+
+#Sentiment values
+positive=0
+negative=0
+neutral=0
+total=0
+
+hashtags = []
+
+#Loading.....
+print("Performing Sentiment Analysis",end="")
+for i in range(5):
+ print(".",end="")
+ time.sleep(1)
+
+
+# reading csv file
+
+filepath="demonetization-tweets.csv"
+with codecs.open(filepath, "r",encoding='utf-8', errors='ignore') as csvfile:
+ reader = csv.reader(csvfile)
+ tweetsList=[]
+ cleanTweetsList=[]
+ for row in reader:
+ tweet=row[2].strip() #contains tweet
+ cleanTweet=" ".join(re.findall("[a-zA-Z]+",tweet))
+ analysis=TextBlob(cleanTweet)
+
+ #appending tweet to list
+ tweetsList.append(tweet)
+ cleanTweetsList.append(cleanTweet)
+
+
+ #Assigning polarity and calculating count
+ total=total+1
+ if(analysis.sentiment.polarity>0):
+ positive=positive+1
+ if(analysis.sentiment.polarity==0):
+ neutral=neutral+1
+ else:
+ negative=negative+1
+
+
+#Result
+print() #newline
+print("Total Tweets: ",total)
+print('Positive = ',positive)
+print('Neutral= ',neutral)
+print('Negative= ',negative)
+
+#Random number generator to pick tweets
+randomTweets=[]
+randomCleanTweets=[]
+
+randomNumber=random.sample(range(1, 6000), 5)
+index=0
+
+#Collecting random tweets
+for i in range(5):
+ number=random.randint(1,6000) #Picks a random number between 1-6000
+ randomTweets.append(tweetsList[randomNumber[index]]) #Stores a random tweet from data without repeatition
+ randomCleanTweets.append(tweetsList[randomNumber[index]])
+ index=index+1
+
+for tweet in randomCleanTweets:
+ print()
+ print(tweet,end=' ')
+ analysis=TextBlob(tweet)
+ print(" => ",analysis.sentiment)
+
+
+#Writing random tweets to a text file for display
+
+with open('tweets.txt', 'w') as file:
+ for tweet in randomTweets:
+ file.write(tweet)
+ file.write('
\n')
+
+#Finding the hashtags in all the tweets
+finalcount={}
+for i in tweetsList:
+ hashtags.append(re.findall(r"#(\w+)", i))
+hashtagnew = [item for sub in hashtags for item in sub]
+counts = Counter(hashtagnew)
+counts = dict(counts)
+finalcount = dict(sorted(counts.items(), key=lambda kv: kv[1], reverse=True))
+countname = list(finalcount.keys())
+
+#Plotting data
+
+
+#Bar Graph
+objects = ('Positive','Neutral','Negative')
+y_pos = np.arange(len(objects))
+performance = [positive,neutral,negative]
+
+plt.bar(y_pos, performance, align='center', alpha=0.5)
+plt.xticks(y_pos, objects)
+plt.ylabel('# of tweets')
+plt.title('Twitter Sentiment Analysis- Demonetisation (Bar Graph) \n')
+plt.show()
+
+
+#Pie Graph
+
+colors = ['yellowgreen', 'gold', 'orangered']
+explode = (0, 0, 0.1) # explode last slice
+
+plt.pie(performance, explode=explode, labels=objects, colors=colors,
+ autopct='%1.1f%%', shadow=False, startangle=140)
+
+plt.axis('equal')
+plt.title('Twitter Sentiment Analysis- Demonetisation (Pie Chart) \n')
+plt.show()
+
+# Hashtag Plot
+x = np.arange(len(finalcount))
+y = list(finalcount.values())
+x = x[:15]
+y = y[:15]
+countname = countname[:15]
+plt.bar(x, y)
+plt.title('Most Trending Hashtags\n')
+plt.xticks(x, countname, rotation='vertical')
+plt.ylabel('Number of tweets')
+plt.xlabel('#Hashtags')
+plt.tight_layout()
+plt.show()
\ No newline at end of file
diff --git a/demonetization-tweets.csv b/demonetization-tweets.csv
new file mode 100644
index 0000000..269315a
--- /dev/null
+++ b/demonetization-tweets.csv
@@ -0,0 +1,22412 @@
+"","X","text","favorited","favoriteCount","replyToSN","created","truncated","replyToSID","id","replyToUID","statusSource","screenName","retweetCount","isRetweet","retweeted"
+"1","1","RT @rssurjewala: Critical question: Was PayTM informed about #Demonetization edict by PM? It's clearly fishy and requires full disclosure &�","FALSE","0",NA,"2016-11-23 18:40:30","FALSE",NA,"801495656976318464",NA,"Twitter for Android","HASHTAGFARZIWAL","331","TRUE","FALSE"
+"2","2","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:40:29","FALSE",NA,"801495654778413056",NA,"Twitter for Android","PRAMODKAUSHIK9","66","TRUE","FALSE"
+"3","3","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:40:03","FALSE",NA,"801495544266821632",NA,"Twitter for Android","rahulja13034944","12","TRUE","FALSE"
+"4","4","RT @ANI_news: Gurugram (Haryana): Post office employees provide cash exchange to patients in hospitals #demonetization https://t.co/uGMxUP9�","FALSE","0",NA,"2016-11-23 18:39:59","FALSE",NA,"801495527024160768",NA,"Twitter for Android","deeptiyvd","338","TRUE","FALSE"
+"5","5","RT @satishacharya: Reddy Wedding! @mail_today cartoon #demonetization #ReddyWedding https://t.co/u7gLNrq31F","FALSE","0",NA,"2016-11-23 18:39:39","FALSE",NA,"801495445583360000",NA,"CPIMBadli","CPIMBadli","120","TRUE","FALSE"
+"6","6","@DerekScissors1: India�s #demonetization: #Blackmoney a symptom, not the disease https://t.co/HSl6Ihj0Qe via @ambazaarmag","FALSE","0","DerekScissors1","2016-11-23 18:39:11","FALSE",NA,"801495326439964672","2586266100","Twitter Web Client","ambazaarmag","0","FALSE","FALSE"
+"7","7","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 18:38:53","FALSE",NA,"801495248710967296",NA,"Twitter for Android","bhodia1","637","TRUE","FALSE"
+"8","8","RT @Joydeep_911: Calling all Nationalists to join...
+Walk for #CorruptionFreeIndia and spread the benefits of #Demonetization among the mas�","FALSE","0",NA,"2016-11-23 18:38:20","FALSE",NA,"801495113092497408",NA,"Twitter for Android","KARUNASHANKEROJ","112","TRUE","FALSE"
+"9","9","RT @sumitbhati2002: Many opposition leaders are with @narendramodi on the #Demonetization
+And respect their decision,but support oppositio�","FALSE","0",NA,"2016-11-23 18:38:09","FALSE",NA,"801495064270794752",NA,"Twitter for Android","sumitbhati2002","1","TRUE","FALSE"
+"10","10","National reform now destroyed even the essence of sagan. Such instances urge giving #demonetization a second though� https://t.co/eyySIREiUq","FALSE","0",NA,"2016-11-23 18:38:00","TRUE",NA,"801495027645939712",NA,"Mobile Web (M5)","HelpIndia2016","0","FALSE","FALSE"
+"11","11","Many opposition leaders are with @narendramodi on the #Demonetization
+And respect their decision,but support opposition just b'coz of party","FALSE","1",NA,"2016-11-23 18:37:47","FALSE",NA,"801494974844043264",NA,"Twitter for Android","sumitbhati2002","1","FALSE","FALSE"
+"12","12","RT @Joydas: Question in Narendra Modi App where PM is taking feedback if people support his #DeMonetization strategy https://t.co/pYgK8Rmg7r","FALSE","0",NA,"2016-11-23 18:37:25","FALSE",NA,"801494883068317696",NA,"Twitter for Android","MonishGavand","120","TRUE","FALSE"
+"13","13","@Jaggesh2 Bharat band on 28??Those who are protesting #demonetization are all different party leaders.","FALSE","0","Jaggesh2","2016-11-23 18:37:15","FALSE","801482081511448576","801494840018108416","1225924610","Twitter for Android","yuvaraj_karki","0","FALSE","FALSE"
+"14","14","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 18:36:39","FALSE",NA,"801494687345324032",NA,"Twitter for Android","PMKejri","45","TRUE","FALSE"
+"15","15","RT @sona2905: When I explained #Demonetization to myself and tried to put it down in my words which are not laced with any heavy technical�","FALSE","0",NA,"2016-11-23 18:36:37","FALSE",NA,"801494679258677248",NA,"Twitter for iPhone","hkgupta16","50","TRUE","FALSE"
+"16","16","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 18:35:22","FALSE",NA,"801494366917230592",NA,"Twitter for Android","aazaadparinda","45","TRUE","FALSE"
+"17","17","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:35:01","FALSE",NA,"801494276513202176",NA,"Twitter for Android","darkdestinynme","12","TRUE","FALSE"
+"18","18","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 18:34:57","FALSE",NA,"801494262047240192",NA,"Twitter for iPhone","snoovemehrotra","95","TRUE","FALSE"
+"19","19","RT @pGurus1: #Demonetization The co-operative banking sector in Kerala is as good as a tax haven. Is Kerala a Black Money HQ? https://t.co/�","FALSE","0",NA,"2016-11-23 18:34:17","FALSE",NA,"801494094073597952",NA,"Twitter for Android","Vishwaamitra","76","TRUE","FALSE"
+"20","20","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:34:06","FALSE",NA,"801494048892653568",NA,"Twitter Web Client","PoliticalCooper","12","TRUE","FALSE"
+"21","21","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:34:02","FALSE",NA,"801494031326908416",NA,"Twitter for Android","MdShuaib7","66","TRUE","FALSE"
+"22","22","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:33:40","FALSE",NA,"801493936137064448",NA,"Twitter for Android","BharatParivrtan","12","TRUE","FALSE"
+"23","23","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 18:33:35","FALSE",NA,"801493914985316352",NA,"Twitter for Android","ihavnthandle","95","TRUE","FALSE"
+"24","24","RT @MahikaInfra: @narendramodi
+@Swamy39
+The success of #Demonetization will depend on how swiftly govt replenish the currency
+
+Pls avoid Ba�","FALSE","0",NA,"2016-11-23 18:33:28","FALSE",NA,"801493886694780928",NA,"Twitter for Android","GajjarBharatc","53","TRUE","FALSE"
+"25","25","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:33:14","FALSE",NA,"801493828024889344",NA,"Twitter Web Client","Rss_chaddi_waLL","66","TRUE","FALSE"
+"26","26","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:33:03","FALSE",NA,"801493782621351936",NA,"Twitter for Android","mukeshrai881","12","TRUE","FALSE"
+"27","27","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 18:32:41","FALSE",NA,"801493691160403968",NA,"Twitter for iPhone","mrx565","20","TRUE","FALSE"
+"28","28","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:32:13","FALSE",NA,"801493575020122112",NA,"Twitter Web Client","iMirzaG","12","TRUE","FALSE"
+"29","29","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 18:32:09","FALSE",NA,"801493555655147520",NA,"Twitter for Android","PontiFukEx","20","TRUE","FALSE"
+"30","30","RT @AAPVind: #Demonetization Is Disaster! @naam_pk","FALSE","0",NA,"2016-11-23 18:31:54","FALSE",NA,"801493494925639680",NA,"Twitter for Windows Phone","sehgal_indian","7","TRUE","FALSE"
+"31","31","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:31:52","FALSE",NA,"801493484658049024",NA,"Twitter Web Client","BoscoUnchained","66","TRUE","FALSE"
+"32","32","RT @Gadgets360: After the #demonetization, searches about #NarendraModi's app are trending on app stores https://t.co/ZetKRqqClX","FALSE","0",NA,"2016-11-23 18:31:48","FALSE",NA,"801493470103777280",NA,"Twitter for iPhone","meghnabasu2","11","TRUE","FALSE"
+"33","33","RT @_avenu: Teacher: is there anybody who is absent today?
+(No response )
+Teacher says 100% attendance
+#Demonetization #App #survey
+@DonMu�","FALSE","0",NA,"2016-11-23 18:31:11","FALSE",NA,"801493313895403520",NA,"Twitter for Android","trollabhakt","6","TRUE","FALSE"
+"34","34","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:31:02","FALSE",NA,"801493273550299136",NA,"Twitter for Android","manni_1986","76","TRUE","FALSE"
+"35","35","RT @mayankjain100: #demonetization is Communal and Black Money is Secular...","FALSE","0",NA,"2016-11-23 18:30:08","FALSE",NA,"801493047988994048",NA,"Twitter Web Client","GHOSTBUSTOR","1","TRUE","FALSE"
+"36","36","LOL. #Demonetization Effect. https://t.co/aA5lfy9ALG","FALSE","0",NA,"2016-11-23 18:28:41","FALSE",NA,"801492685123002368",NA,"Twitter for Android","sradeep_d","0","FALSE","FALSE"
+"37","37","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 18:27:46","FALSE",NA,"801492452293148672",NA,"Twitter for Android","kvQuote","20","TRUE","FALSE"
+"38","38","RT roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact o� https://t.co/TPYJgXFBY8","FALSE","0",NA,"2016-11-23 18:27:24","FALSE",NA,"801492360744108032",NA,"IFTTT","AnandMiishra","0","FALSE","FALSE"
+"39","39","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 18:26:50","FALSE",NA,"801492217525243904",NA,"Twitter for iPhone","CineMaakiKasam","95","TRUE","FALSE"
+"40","40","@arunjaitley @narendramodi Lrnd frm a frnd-Banks r asking employees to comeback 2sales & BAU Operations #Demonetization","FALSE","0","arunjaitley","2016-11-23 18:26:45","FALSE",NA,"801492197690331136","2183816041","Twitter for iPhone","navsinfosec","0","FALSE","FALSE"
+"41","41","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 18:26:23","FALSE",NA,"801492103100387328",NA,"Twitter Web Client","RN_BJP","41","TRUE","FALSE"
+"42","42","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:26:11","FALSE",NA,"801492054131949568",NA,"Twitter for Android","mukeshrai881","9","TRUE","FALSE"
+"43","43","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:25:32","FALSE",NA,"801491891372036096",NA,"Twitter for Android","prateek1013","76","TRUE","FALSE"
+"44","44","@dineshgrao you have 12.5 k followers yet you are not getting enough likes for your tweets against #demonetization. You need to introspect.","FALSE","0","dineshgrao","2016-11-23 18:25:27","FALSE",NA,"801491870245388288","347102273","Twitter for Android","ShankareGowdaM","0","FALSE","FALSE"
+"45","45","#DeMonetization Effect : Visa, Master Card, Amex all Accepted :) https://t.co/ozDwcPKjaI","FALSE","0",NA,"2016-11-23 18:25:24","FALSE",NA,"801491856626331648",NA,"Facebook","zailetblog","0","FALSE","FALSE"
+"46","46","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:24:57","FALSE",NA,"801491744323870720",NA,"Twitter for iPhone","draksbond","76","TRUE","FALSE"
+"47","47","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 18:24:44","FALSE",NA,"801491688757694464",NA,"Twitter for Android","kmvatreni1","59","TRUE","FALSE"
+"48","48","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:24:36","FALSE",NA,"801491655899627520",NA,"TweetCaster for Android","PramodKr7227","12","TRUE","FALSE"
+"49","49","RT @rohanmlw: #demonetization eye opener video bt i doubt as few jurnos don't want2 hear +ve of @narendramodi @sardesairajdeep @ravishndtv�","FALSE","0",NA,"2016-11-23 18:24:28","FALSE",NA,"801491623901270016",NA,"Twitter Web Client","neelmani1980","4","TRUE","FALSE"
+"50","50","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 18:24:23","FALSE",NA,"801491599683239936",NA,"Twitter for iPhone","smsivanesan","30","TRUE","FALSE"
+"51","51","RT @nmleo1: Is #ModiSarkar 's #achedin campaign on #demonetization a #goebbelsian #masterstroke that turns blind eye to #GroundZero shocks?�","FALSE","0",NA,"2016-11-23 18:24:18","FALSE",NA,"801491579546406912",NA,"Twitter for Android","JOYEEE990","1","TRUE","FALSE"
+"52","52","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 18:24:01","FALSE",NA,"801491507974995968",NA,"Twitter for Android","n2r3ndr2","30","TRUE","FALSE"
+"53","53","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:24:00","FALSE",NA,"801491503885516800",NA,"Twitter for Android","aakuraj","76","TRUE","FALSE"
+"54","54","#demonetization is Communal and Black Money is Secular...","FALSE","0",NA,"2016-11-23 18:23:57","FALSE",NA,"801491492137074688",NA,"Twitter for Android","mayankjain100","1","FALSE","FALSE"
+"55","55","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 18:23:57","FALSE",NA,"801491490761539584",NA,"Twitter for Android","ceradevcera","20","TRUE","FALSE"
+"56","56","RT @nmleo1: @MinhazMerchant #demonetization hardly affects tax dodgers & #NETAS who excel in #CashlessCorruption & have multiplied bad weal�","FALSE","0",NA,"2016-11-23 18:23:55","FALSE",NA,"801491483354284032",NA,"Twitter for Android","JOYEEE990","1","TRUE","FALSE"
+"57","57","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 18:23:22","FALSE",NA,"801491346661974016",NA,"Twitter for Android","twety_swety","95","TRUE","FALSE"
+"58","58","Section 144 issued by District Magistrate, #Indore prohibiting #socialmedia posts on #demonetization, Why??
+#citizen https://t.co/5Tn7aNBTsi","FALSE","0",NA,"2016-11-23 18:23:12","FALSE",NA,"801491303229816832",NA,"Twitter Web Client","ESchool_India","0","FALSE","FALSE"
+"59","59","RT @pGurus1: CPI-M opposes Co-op Banks in West Bengal but supports them in Kerala! Y Pawar U-turned on #Demonetization https://t.co/ThzaV7r�","FALSE","0",NA,"2016-11-23 18:22:44","FALSE",NA,"801491187182014464",NA,"Twitter for Android","InnovativeHindu","29","TRUE","FALSE"
+"60","60","RT roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact o� https://t.co/vCWWjxu0wb","FALSE","0",NA,"2016-11-23 18:22:37","FALSE",NA,"801491158048407552",NA,"Put your button on any page! ","pratyushmayank","0","FALSE","FALSE"
+"61","61","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 18:22:33","FALSE",NA,"801491138792128512",NA,"Twitter for Android","monojsaha6","15","TRUE","FALSE"
+"62","62","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 18:22:10","FALSE",NA,"801491043438837760",NA,"Twitter for Android","NV_Handle","637","TRUE","FALSE"
+"63","63","RT @pGurus1: #Demonetization The time has come to put MUDRA into action, writes Prof. R Vaidyanathan - https://t.co/P6HkkDVa3b @upma23 @UnS�","FALSE","0",NA,"2016-11-23 18:22:09","FALSE",NA,"801491040821714944",NA,"Twitter for Android","InnovativeHindu","30","TRUE","FALSE"
+"64","64","RT @pGurus1: #Demonetization move of Modi; Who is supporting it, who is opposing it and why? A complete coverage of all parties - https://t�","FALSE","0",NA,"2016-11-23 18:22:05","FALSE",NA,"801491021813186560",NA,"Twitter for Android","InnovativeHindu","19","TRUE","FALSE"
+"65","65","RT @Joydas: Question in Narendra Modi App where PM is taking feedback if people support his #DeMonetization strategy https://t.co/pYgK8Rmg7r","FALSE","0",NA,"2016-11-23 18:21:17","FALSE",NA,"801490823665725440",NA,"Twitter for Android","Minoritygender","120","TRUE","FALSE"
+"66","66","RT @ModiBharosa: Huge support for PM @narendramodi �s #demonetization Move Across the Nation
+80-86% people back demonetization: C-voter su�","FALSE","0",NA,"2016-11-23 18:20:40","FALSE",NA,"801490667545489408",NA,"Twitter for Android","BsBaban","270","TRUE","FALSE"
+"67","67","Effects of sluggish economy, negative IIP, #Demonetization ! Does the Great Leader even bother except continued dra� https://t.co/DuvbMtEi1Y","FALSE","0",NA,"2016-11-23 18:19:37","TRUE",NA,"801490401811165184",NA,"Twitter Web Client","sventure007","0","FALSE","FALSE"
+"68","68","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 18:19:27","FALSE",NA,"801490361998684160",NA,"Twitter for iPhone","US70707","41","TRUE","FALSE"
+"69","69","RT roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact o� https://t.co/5J6jZXbY81","FALSE","0",NA,"2016-11-23 18:19:22","FALSE",NA,"801490339978706944",NA,"IFTTT","UnRealMohit","0","FALSE","FALSE"
+"70","70","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:19:09","FALSE",NA,"801490286597853184",NA,"Twitter for Android","vtushar1960","76","TRUE","FALSE"
+"71","71","RT @bhaiyyajispeaks: Here @sardesairajdeep struggling for one answer against #Demonetization, He should have taken some Congress leader lik�","FALSE","0",NA,"2016-11-23 18:19:02","FALSE",NA,"801490253370585088",NA,"Twitter for Android","HRajshri","1868","TRUE","FALSE"
+"72","72","#Demonetization and the Indian Economy An Interview by Doordarshan with Sri S.Gurumurthy https://t.co/LdeBCADAeR","FALSE","0",NA,"2016-11-23 18:18:27","FALSE",NA,"801490109572857856",NA,"Twitter Web Client","AllinoneIndia","0","FALSE","FALSE"
+"73","73","RT @Gadgets360: After the #demonetization, searches about #NarendraModi's app are trending on app stores https://t.co/ZetKRqqClX","FALSE","0",NA,"2016-11-23 18:17:51","FALSE",NA,"801489955994222592",NA,"Twitter Web Client","manickam_sm","11","TRUE","FALSE"
+"74","74","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:17:49","FALSE",NA,"801489948679409664",NA,"Twitter Web Client","SanalSudev","12","TRUE","FALSE"
+"75","75","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 18:17:49","FALSE",NA,"801489948201385984",NA,"Twitter for Android","VaidyaPriyam","30","TRUE","FALSE"
+"76","76","RT @NilimDutta: After much contemplation I have come to the conclusion that nothing explains Modi's #DeMonetization better than monumental�","FALSE","0",NA,"2016-11-23 18:17:23","FALSE",NA,"801489838260289536",NA,"Twitter for Android","imprakrut","2","TRUE","FALSE"
+"77","77","RT @Currency_crisis: What #demonetization indicates is loss of freedom
+Besides laws/constitution/court/cops 2 govern people
+govt is using m�","FALSE","0",NA,"2016-11-23 18:16:40","FALSE",NA,"801489661369552896",NA,"Twitter Web Client","everG3","1","TRUE","FALSE"
+"78","78","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:16:34","FALSE",NA,"801489632814735360",NA,"Twitter Web Client","Myth_Busterz","66","TRUE","FALSE"
+"79","79","Ppl of India extending overwhelming supprt to @narendramodi Ji's crusade agnst black money.Survey @timesofindia� https://t.co/Axqd8FOwpK","FALSE","0",NA,"2016-11-23 18:16:33","TRUE",NA,"801489628880474112",NA,"Twitter Web Client","ganeshjoshibjp","0","FALSE","FALSE"
+"80","80","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:16:23","FALSE",NA,"801489588275417088",NA,"Twitter for Android","ikumarashok","9","TRUE","FALSE"
+"81","81","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 18:16:19","FALSE",NA,"801489570831298560",NA,"Twitter for Android","ssmalani","637","TRUE","FALSE"
+"82","82","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 18:15:26","FALSE",NA,"801489350001205248",NA,"Twitter for Android","cracklier","59","TRUE","FALSE"
+"83","83","People from rural areas are coming to Delhi just to withdraw cash.
+
+They have given up on govt. logistics.
+
+@ravishndtv #Demonetization","FALSE","0",NA,"2016-11-23 18:15:09","FALSE",NA,"801489279700475904",NA,"TweetCaster for Android","Rohit_V","0","FALSE","FALSE"
+"84","84","RT @rssurjewala: Critical question: Was PayTM informed about #Demonetization edict by PM? It's clearly fishy and requires full disclosure &�","FALSE","0",NA,"2016-11-23 18:14:27","FALSE",NA,"801489103267237888",NA,"Twitter for Android","TussarJitu","331","TRUE","FALSE"
+"85","85","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 18:14:04","FALSE",NA,"801489004340383744",NA,"Twitter for Android","praveentiwari6","15","TRUE","FALSE"
+"86","86","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:12:41","FALSE",NA,"801488657307738112",NA,"Twitter for iPhone","ankit_gupta518","9","TRUE","FALSE"
+"87","87","RT roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact o� https://t.co/vv9qtRqqSI","FALSE","0",NA,"2016-11-23 18:12:28","FALSE",NA,"801488603809456128",NA,"IFTTT","Priyad_01","0","FALSE","FALSE"
+"88","88","RT @Joydeep_911: Calling all Nationalists to join...
+Walk for #CorruptionFreeIndia and spread the benefits of #Demonetization among the mas�","FALSE","0",NA,"2016-11-23 18:12:01","FALSE",NA,"801488489921421312",NA,"Twitter for Android","Bhartiyalist","112","TRUE","FALSE"
+"89","89","RT @NilimDutta: After much contemplation I have come to the conclusion that nothing explains Modi's #DeMonetization better than monumental�","FALSE","0",NA,"2016-11-23 18:12:01","FALSE",NA,"801488489917202432",NA,"Twitter for Android","ChandokSumeet","2","TRUE","FALSE"
+"90","90","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 18:11:46","FALSE",NA,"801488425257840640",NA,"Twitter for Android","ThumbaHasivu","95","TRUE","FALSE"
+"91","91","#demonetization 90 % of population is accepting it as country building measure, why these so called politicians opp� https://t.co/f91j6tZjZ2","FALSE","0",NA,"2016-11-23 18:11:43","TRUE",NA,"801488415061458944",NA,"Twitter for iPhone","sanjeevkriocl","0","FALSE","FALSE"
+"92","92","RT @_avenu: Teacher: is there anybody who is absent today?
+(No response )
+Teacher says 100% attendance
+#Demonetization #App #survey
+@DonMu�","FALSE","0",NA,"2016-11-23 18:11:43","FALSE",NA,"801488412641374208",NA,"Twitter Web Client","everG3","6","TRUE","FALSE"
+"93","93","15 days after #demonetization, country is still suffering 4m acute shortage of currency notes.
+Big loss 2 economy
+Share market tumbling
+SOS","FALSE","0",NA,"2016-11-23 18:11:37","FALSE",NA,"801488389690171392",NA,"Twitter for Android","SaubhagyaVarma","0","FALSE","FALSE"
+"94","94","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:11:14","FALSE",NA,"801488290620678144",NA,"Twitter for Android","Salimpa71373837","66","TRUE","FALSE"
+"95","95","RT @ashu3page: Man ends life over fund shortage ahead of daughter�s wedding in Gujarat. #Demonetization
+https://t.co/DGAI5cf05y
+https://t�","FALSE","0",NA,"2016-11-23 18:11:08","FALSE",NA,"801488265568075776",NA,"Twitter for Android","khan96faiz","132","TRUE","FALSE"
+"96","96","RT @ModiBharosa: Putting Nation over Party Politics #nitishkumar supports PM @narendramodi on #Demonetization https://t.co/UodwXdPMmG","FALSE","0",NA,"2016-11-23 18:11:01","FALSE",NA,"801488238347046912",NA,"Twitter for Android","nitinpoddar","275","TRUE","FALSE"
+"97","97","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 18:10:55","FALSE",NA,"801488211147190272",NA,"Twitter for iPhone","AnakhaRavindran","20","TRUE","FALSE"
+"98","98","RT @Joydeep_911: Calling all Nationalists to join...
+Walk for #CorruptionFreeIndia and spread the benefits of #Demonetization among the mas�","FALSE","0",NA,"2016-11-23 18:10:53","FALSE",NA,"801488202527707136",NA,"Twitter for iPhone","Jayaram84296692","112","TRUE","FALSE"
+"99","99","RT @TheOfficialSBI: As of today, 33000 thousand ATMs are functioning. - SBI Chairman, Smt. Arundhati Bhattacharya. #Demonetization","FALSE","0",NA,"2016-11-23 18:10:44","FALSE",NA,"801488164896374784",NA,"Twitter Web Client","ilapakurthi","406","TRUE","FALSE"
+"100","100","RT @ashu3page: A man shaved his head at Jantar-Mantar in protest against #Demonetization on 13th day of the move. https://t.co/IeXuia3J0X","FALSE","0",NA,"2016-11-23 18:10:34","FALSE",NA,"801488124782120960",NA,"Twitter for Android","gr8india","69","TRUE","FALSE"
+"101","101","Very unfortunate... India slips due to #demonetization
+@BJP4India @PMOIndia @RanaAyyub @TruthOfGujarat @AnupamPkher
+https://t.co/6QhcGyBpKw","FALSE","0",NA,"2016-11-23 18:10:18","FALSE",NA,"801488056817745920",NA,"Twitter for Android","razikararvi","0","FALSE","FALSE"
+"102","102","What #demonetization indicates is loss of freedom
+Besides laws/constitution/court/cops 2 govern people
+govt is using money 2 control people","FALSE","0",NA,"2016-11-23 18:10:14","FALSE",NA,"801488039130214400",NA,"Twitter Web Client","Currency_crisis","1","FALSE","FALSE"
+"103","103","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:10:11","FALSE",NA,"801488026895585280",NA,"Twitter for Android","MdShuaib7","9","TRUE","FALSE"
+"104","104","RT @pGurus1: #Demonetization The time has come to put MUDRA into action, writes Prof. R Vaidyanathan - https://t.co/P6HkkDVa3b @upma23 @UnS�","FALSE","0",NA,"2016-11-23 18:10:01","FALSE",NA,"801487988257476608",NA,"Twitter for Android","shobhanpounikar","30","TRUE","FALSE"
+"105","105","RT @sitaramlamba: Cooperative banks shut down, sowing season completely disrupted, agri markets & Farmers badly affected #demonetization","FALSE","0",NA,"2016-11-23 18:10:00","FALSE",NA,"801487982209339392",NA,"Twitter for Android","Arshkhankhan1","22","TRUE","FALSE"
+"106","106","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 18:09:48","FALSE",NA,"801487931886026752",NA,"Twitter for Android","jaiinashish","30","TRUE","FALSE"
+"107","107","RT @embracetheart: Delete! Pathetic PM who conducts false poll and self praises himself. #demonetization #BogusPoll #ModiScaredOfParliament�","FALSE","0",NA,"2016-11-23 18:09:32","FALSE",NA,"801487863971885056",NA,"Mobile Web (M5)","TeenaSingh882","1","TRUE","FALSE"
+"108","108","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 18:09:31","FALSE",NA,"801487861631434752",NA,"Twitter for Android","mshivaram","95","TRUE","FALSE"
+"109","109","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 18:09:30","FALSE",NA,"801487856740904960",NA,"Twitter for Windows Phone","rajdeepTwitting","15","TRUE","FALSE"
+"110","110","RT @_avenu: Teacher: is there anybody who is absent today?
+(No response )
+Teacher says 100% attendance
+#Demonetization #App #survey
+@DonMu�","FALSE","0",NA,"2016-11-23 18:09:26","FALSE",NA,"801487839850467328",NA,"Twitter for Android","fighterpirate7","6","TRUE","FALSE"
+"111","111","#Demonetization
+https://t.co/0kq8BsJ1iS
+When PM is in, opposition is out of parliament.","FALSE","0",NA,"2016-11-23 18:09:12","FALSE",NA,"801487780224253952",NA,"Twitter for Android","AmereshSingh","0","FALSE","FALSE"
+"112","112","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 18:09:01","FALSE",NA,"801487735642996736",NA,"Twitter for Android","itsmeroshan2121","20","TRUE","FALSE"
+"113","113","RT @CMOMaharashtra: Watch what @sonunigam thinks about #demonetization .. https://t.co/vXt09c64zY","FALSE","0",NA,"2016-11-23 18:08:59","FALSE",NA,"801487726965096448",NA,"Twitter Web Client","enzacdesccom191","428","TRUE","FALSE"
+"114","114","RT @ShashiTharoor: . @anandkamal Frankly i don't understand why @narendramodi doesn't address Parlmnt on #Demonetization. It's his duty&wil�","FALSE","0",NA,"2016-11-23 18:08:52","FALSE",NA,"801487697017651200",NA,"Twitter for Android","Sourabhprk","57","TRUE","FALSE"
+"115","115","RT @_avenu: Teacher: is there anybody who is absent today?
+(No response )
+Teacher says 100% attendance
+#Demonetization #App #survey
+@DonMu�","FALSE","0",NA,"2016-11-23 18:08:44","FALSE",NA,"801487665321361408",NA,"Twitter for iPhone","tauhid13","6","TRUE","FALSE"
+"116","116","RT @_avenu: Teacher: is there anybody who is absent today?
+(No response )
+Teacher says 100% attendance
+#Demonetization #App #survey
+@DonMu�","FALSE","0",NA,"2016-11-23 18:08:41","FALSE",NA,"801487651245326336",NA,"Twitter for Android","IamMLK48","6","TRUE","FALSE"
+"117","117","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 18:08:30","FALSE",NA,"801487603140730880",NA,"Twitter for Android","indianmonk1","41","TRUE","FALSE"
+"118","118","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:08:29","FALSE",NA,"801487602113269760",NA,"Twitter for Android","Dhriyamana","76","TRUE","FALSE"
+"119","119","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 18:08:04","FALSE",NA,"801487493753237504",NA,"Twitter for Android","indianmonk1","20","TRUE","FALSE"
+"120","120","RT @_avenu: Teacher: is there anybody who is absent today?
+(No response )
+Teacher says 100% attendance
+#Demonetization #App #survey
+@DonMu�","FALSE","0",NA,"2016-11-23 18:07:53","FALSE",NA,"801487449230716928",NA,"Twitter for Android","DonMufflerMan","6","TRUE","FALSE"
+"121","121","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:07:44","FALSE",NA,"801487410441949184",NA,"Twitter for Android","shubhamamdhare","66","TRUE","FALSE"
+"122","122","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 18:07:28","FALSE",NA,"801487345480368128",NA,"Twitter for Android","SSP79","15","TRUE","FALSE"
+"123","123","RT @pGurus1: #Demonetization move of Modi; Who is supporting it, who is opposing it and why? A complete coverage of all parties - https://t�","FALSE","0",NA,"2016-11-23 18:07:19","FALSE",NA,"801487308360798208",NA,"Twitter for Android","shobhanpounikar","19","TRUE","FALSE"
+"124","124","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:06:50","FALSE",NA,"801487186109591552",NA,"Twitter for Android","harishchawla74","76","TRUE","FALSE"
+"125","125","Aam aadmi punished for sins of #blackmoney hoarders. SBI slashes deposit rates by 1.9% #Demonetization #netascashin https://t.co/rqjsdiGvcG","FALSE","0",NA,"2016-11-23 18:06:41","FALSE",NA,"801487148201476096",NA,"Put your button on any page! ","anilrai","0","FALSE","FALSE"
+"126","126","Teacher: is there anybody who is absent today?
+(No response )
+Teacher says 100% attendance
+#Demonetization #App #survey
+@DonMufflerMan ","FALSE","6",NA,"2016-11-23 18:06:35","FALSE",NA,"801487120464429056",NA,"Twitter for iPhone","_avenu","6","FALSE","FALSE"
+"127","127","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 18:06:15","FALSE",NA,"801487039652888576",NA,"Twitter for Android","aashish81us","30","TRUE","FALSE"
+"128","128","RT @ANI_news: The queues are not getting longer but are getting shorter day by day: Chanda Kochar,ICIC MD and CEO #demonetization https://t�","FALSE","0",NA,"2016-11-23 18:06:00","FALSE",NA,"801486976486637568",NA,"Twitter Web Client","Jodhpur_Blue","421","TRUE","FALSE"
+"129","129","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:05:41","FALSE",NA,"801486894920073216",NA,"Twitter for Android","deeptiyvd","76","TRUE","FALSE"
+"130","130","RT @karnataka_ioc: @indianoilcl giving cash through Mini ATMs to people in Hinterland. #IndiaKaDil. Helping rural people in #Demonetization�","FALSE","0",NA,"2016-11-23 18:05:41","FALSE",NA,"801486894789865472",NA,"Twitter for Android","ioclpunjab","18","TRUE","FALSE"
+"131","131","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:05:13","FALSE",NA,"801486777777172480",NA,"Twitter for Android","aawara_aatma","66","TRUE","FALSE"
+"132","132","RT @PIB_India: Watch briefing on #Demonetization by DEA Secy @DasShaktikanta this morning here:
+https://t.co/TDj2A6uO5u","FALSE","0",NA,"2016-11-23 18:04:59","FALSE",NA,"801486720621416448",NA,"Twitter for Android","rathoreaja","105","TRUE","FALSE"
+"133","133","@DeshhBhakt seems deskbhakt was in hibernation mode when GPS enabled 2000 rs was launched by #Modo 4 #demonetization @MonaAmbegaonkar","FALSE","0","DeshhBhakt","2016-11-23 18:04:49","FALSE","801444952945344512","801486677550120960","4912204657","Twitter for Android","bhau_rokthok","0","FALSE","FALSE"
+"134","134","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:04:22","FALSE",NA,"801486563083325440",NA,"Twitter for Android","aniljothomas","9","TRUE","FALSE"
+"135","135","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 18:04:20","FALSE",NA,"801486556846403584",NA,"Twitter Web Client","centreofleft","66","TRUE","FALSE"
+"136","136","RT @dhrumilpatel: Looks Ambit Capital, literally Choked with #demonetization, come-on U can't lower d GDP nos by huge margin.
+Perhaps, they�","FALSE","0",NA,"2016-11-23 18:04:03","FALSE",NA,"801486482670108672",NA,"Twitter for Android","anuuragjain","3","TRUE","FALSE"
+"137","137","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 18:03:59","FALSE",NA,"801486466513661952",NA,"Twitter for Android","Pavanpavs254","15","TRUE","FALSE"
+"138","138","RT @bi_india: .@airtelindia takes a bite of the governemnt big #demonetization pie, becomes first #paymentbank to go live
+
+https://t.co/gZv�","FALSE","0",NA,"2016-11-23 18:03:56","FALSE",NA,"801486456803835904",NA,"Twitter for Android","BeLogicalPlz","2","TRUE","FALSE"
+"139","139","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 18:03:53","FALSE",NA,"801486444682362880",NA,"Twitter for Android","Thenirajpandey","59","TRUE","FALSE"
+"140","140","RT @ModiBharosa: Huge support for PM @narendramodi �s #demonetization Move Across the Nation
+80-86% people back demonetization: C-voter su�","FALSE","0",NA,"2016-11-23 18:03:33","FALSE",NA,"801486358673883136",NA,"Twitter for iPhone","rranjan733","270","TRUE","FALSE"
+"141","141","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:03:17","FALSE",NA,"801486291208642560",NA,"Twitter for iPhone","barundebbarun","12","TRUE","FALSE"
+"142","142","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:03:15","FALSE",NA,"801486284644458496",NA,"Twitter for iPhone","guesthousesgoa","9","TRUE","FALSE"
+"143","143","The opposition is getting troubled because all their #BlackMoney have become just a piece of paper due to #demonetization #_","FALSE","0",NA,"2016-11-23 18:03:11","FALSE",NA,"801486268504776704",NA,"Twitter for Android","AjayGrover29","0","FALSE","FALSE"
+"144","144","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:03:03","FALSE",NA,"801486231951515648",NA,"Twitter for Android","BhaanuWrites","9","TRUE","FALSE"
+"145","145","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:02:59","FALSE",NA,"801486217313402880",NA,"Twitter for Android","JoinAAP","9","TRUE","FALSE"
+"146","146","RT @roshankar: Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t�","FALSE","0",NA,"2016-11-23 18:02:50","FALSE",NA,"801486179032043520",NA,"Twitter for Android","aapdelhincr","9","TRUE","FALSE"
+"147","147","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 18:02:47","FALSE",NA,"801486167984193536",NA,"Twitter for Android","anil_tikar2","15","TRUE","FALSE"
+"148","148","@sritara @GabbbarSingh @sidin
+Please read alternative side of story also on #Demonetization & support to PM Modi
+https://t.co/SLJoymBy1m","FALSE","0","sritara","2016-11-23 18:02:41","FALSE","801484177300295680","801486142201823232","47712007","Twitter for Android","Dhriyamana","0","FALSE","FALSE"
+"149","149","The effect of #DeMonetization has already shared by @narendramodi #Action are more important than words� https://t.co/TbCC8S5ETc","FALSE","0","ArvindKejriwal","2016-11-23 18:02:37","TRUE","801307597018198016","801486123201499136","405427035","Twitter for Android","SShettyy007","0","FALSE","FALSE"
+"150","150","RT @ShashiTharoor: Joined the line of Opposition MPs demonstrating solidarity on #demonetization &demanding that @PMOIndia address Parliame�","FALSE","0",NA,"2016-11-23 18:02:35","FALSE",NA,"801486116993908736",NA,"Twitter for Android","Tinni_Aphrodite","71","TRUE","FALSE"
+"151","151","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 18:02:34","FALSE",NA,"801486112011087872",NA,"Twitter for Android","akash_8","15","TRUE","FALSE"
+"152","152","After much contemplation I have come to the conclusion that nothing explains Modi's #DeMonetization better than monumental stupidity.","FALSE","1",NA,"2016-11-23 18:02:30","FALSE",NA,"801486095829479424",NA,"Twitter Web Client","NilimDutta","2","FALSE","FALSE"
+"153","153","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 18:02:12","FALSE",NA,"801486020168421376",NA,"Twitter for iPhone","san_selene","637","TRUE","FALSE"
+"154","154","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 18:02:12","FALSE",NA,"801486018897707008",NA,"Twitter Web Client","laxmisagarnitw","12","TRUE","FALSE"
+"155","155","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 18:02:02","FALSE",NA,"801485976891596800",NA,"Twitter for Android","pushpa_sahani","15","TRUE","FALSE"
+"156","156","RT @YSRCParty: Days before #Demonetization announcement, @ncbn sold his Heritage shares,clearly evident that he had prior knowledge of the�","FALSE","0",NA,"2016-11-23 18:01:28","FALSE",NA,"801485835120078848",NA,"Twitter for Android","nagrulz","33","TRUE","FALSE"
+"157","157","RT @TheOfficialSBI: In view of current situation, RTGS time has been extended upto 6:30 PM till 24th November, 2016. #Demonetization http�","FALSE","0",NA,"2016-11-23 18:01:23","FALSE",NA,"801485813552812032",NA,"Twitter Web Client","ilapakurthi","180","TRUE","FALSE"
+"158","158","RT ZeeNewsSports: #Demonetization: harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with we� https://t.co/TaCfmKF3Cs","FALSE","0",NA,"2016-11-23 18:01:10","FALSE",NA,"801485757668093952",NA,"IFTTT","cyberkingtm","0","FALSE","FALSE"
+"159","159","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:01:07","FALSE",NA,"801485748243349504",NA,"Twitter for Android","pratimadesh","76","TRUE","FALSE"
+"160","160","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 18:00:59","FALSE",NA,"801485714198122496",NA,"Twitter for iPhone","abhinavaawara","76","TRUE","FALSE"
+"161","161","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 18:00:02","FALSE",NA,"801485475924082688",NA,"Twitter for iPhone","shweta_ohri","30","TRUE","FALSE"
+"162","162","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 17:59:55","FALSE",NA,"801485445888512000",NA,"Twitter for Windows","avdheshkumartsi","15","TRUE","FALSE"
+"163","163","RT @YSRCParty: Days before #Demonetization announcement, @ncbn sold his Heritage shares,clearly evident that he had prior knowledge of the�","FALSE","0",NA,"2016-11-23 17:59:53","FALSE",NA,"801485437168553984",NA,"Twitter for Android","RkKotha","33","TRUE","FALSE"
+"164","164","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 17:59:51","FALSE",NA,"801485425671974912",NA,"Twitter for iPhone","puneetgarg24","15","TRUE","FALSE"
+"165","165","RT @roshankar: Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to th�","FALSE","0",NA,"2016-11-23 17:59:40","FALSE",NA,"801485381103452160",NA,"Twitter for Android","YogenderWrites","12","TRUE","FALSE"
+"166","166","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:59:23","FALSE",NA,"801485311670829056",NA,"Twitter for iPhone","mi_puneri","95","TRUE","FALSE"
+"167","167","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 17:58:43","FALSE",NA,"801485142866804736",NA,"Twitter for Windows Phone","HARESHUPADHYAY1","15","TRUE","FALSE"
+"168","168","Former FinSec, RBI Dy Governor, CBDT Chair + Harvard Professor lambaste #Demonetization.
+
+If not for Aam Aadmi, listen to them no PM Modi?","FALSE","4",NA,"2016-11-23 17:58:40","FALSE",NA,"801485130279763968",NA,"Twitter Web Client","roshankar","12","FALSE","FALSE"
+"169","169","RT ZeeNewsSports: #Demonetization: harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with we� https://t.co/oJrbCBYmH9","FALSE","0",NA,"2016-11-23 17:58:29","FALSE",NA,"801485083886682112",NA,"IFTTT","VihaanSingh20","0","FALSE","FALSE"
+"170","170","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 17:57:34","FALSE",NA,"801484855003316224",NA,"Twitter for Android","Punitspeaks","30","TRUE","FALSE"
+"171","171","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:57:31","FALSE",NA,"801484839694303232",NA,"Twitter for Android","AmberRishi","45","TRUE","FALSE"
+"172","172","RT @_Hinduism_: How come those people crying for line in banks are not crying for line ups here in......
+
+#demonetization https://t.co/ixY1�","FALSE","0",NA,"2016-11-23 17:57:21","FALSE",NA,"801484798200053760",NA,"Twitter for Android","zasambhu","22","TRUE","FALSE"
+"173","173","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 17:57:12","FALSE",NA,"801484760388251648",NA,"TweetDeck","ZeeNews","15","TRUE","FALSE"
+"174","174","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:57:05","FALSE",NA,"801484729946021888",NA,"Twitter Web Client","krishnpria","76","TRUE","FALSE"
+"175","175","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:56:53","FALSE",NA,"801484682483224576",NA,"Twitter for Android","rbr6000","95","TRUE","FALSE"
+"176","176","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:56:49","FALSE",NA,"801484662811987968",NA,"Twitter for Android","sainath_kits","95","TRUE","FALSE"
+"177","177","RT @ZeeNewsSports: #Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season
+
+https://t�","FALSE","0",NA,"2016-11-23 17:56:42","FALSE",NA,"801484635091980288",NA,"Twitter for Android","unbrahmachari","15","TRUE","FALSE"
+"178","178","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:56:21","FALSE",NA,"801484545736347648",NA,"Twitter for Android","munireddyab","637","TRUE","FALSE"
+"179","179","#Demonetization: @harbhajan_singh gives hilarious 'shagun' suggestion to those struggling with wedding season� https://t.co/6QNe6KGqaO","FALSE","40",NA,"2016-11-23 17:56:11","TRUE",NA,"801484504216977408",NA,"Twitter Web Client","ZeeNewsSports","15","FALSE","FALSE"
+"180","180","RT @ashu3page: A man shaved his head at Jantar-Mantar in protest against #Demonetization on 13th day of the move. https://t.co/IeXuia3J0X","FALSE","0",NA,"2016-11-23 17:56:03","FALSE",NA,"801484471803531264",NA,"TweetCaster for Android","PramodKr7227","69","TRUE","FALSE"
+"181","181","RT @rssurjewala: Critical question: Was PayTM informed about #Demonetization edict by PM? It's clearly fishy and requires full disclosure &�","FALSE","0",NA,"2016-11-23 17:55:29","FALSE",NA,"801484329570496512",NA,"Twitter for Android","AdMathura","331","TRUE","FALSE"
+"182","182","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 17:55:09","FALSE",NA,"801484246812495872",NA,"Twitter for Android","Jaishankar_Sing","30","TRUE","FALSE"
+"183","183","RT @_Hinduism_: How come those people crying for line in banks are not crying for line ups here in......
+
+#demonetization https://t.co/ixY1�","FALSE","0",NA,"2016-11-23 17:55:08","FALSE",NA,"801484241636888576",NA,"Twitter Web Client","_Hinduism_","22","TRUE","FALSE"
+"184","184","RT @ShashiTharoor: . @anandkamal Frankly i don't understand why @narendramodi doesn't address Parlmnt on #Demonetization. It's his duty&wil�","FALSE","0",NA,"2016-11-23 17:55:07","FALSE",NA,"801484236343558144",NA,"Twitter for iPhone","CongressALL","57","TRUE","FALSE"
+"185","185","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 17:55:01","FALSE",NA,"801484211492225024",NA,"Twitter for Android","JaihindRayudu","41","TRUE","FALSE"
+"186","186","RT @myvotetoday: Modi's #demonetization received massive public approval. So why is opposition worried about common man and create ruckus i�","FALSE","0",NA,"2016-11-23 17:54:43","FALSE",NA,"801484135961272320",NA,"Twitter for Android","achintparikh","9","TRUE","FALSE"
+"187","187","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 17:54:40","FALSE",NA,"801484122958884864",NA,"Twitter for Android","abhaymishra09","30","TRUE","FALSE"
+"188","188","Harvard's Larry Summers calls #Demonetization as poor policy with disproportionate negative impact on poor/trade.
+
+https://t.co/2Tt2SfM0g0","FALSE","9",NA,"2016-11-23 17:54:27","FALSE",NA,"801484068990828544",NA,"Twitter Web Client","roshankar","9","FALSE","FALSE"
+"189","189","RT @ShashiTharoor: . @anandkamal Frankly i don't understand why @narendramodi doesn't address Parlmnt on #Demonetization. It's his duty&wil�","FALSE","0",NA,"2016-11-23 17:54:08","FALSE",NA,"801483988833542144",NA,"Twitter for iPhone","Himansh29466255","57","TRUE","FALSE"
+"190","190","RT @IndiaFactsOrg: #Demonetization: The Ultimate Weapon against Black economy https://t.co/fWvEuH2De6 via @IndiaFactsOrg","FALSE","0",NA,"2016-11-23 17:54:06","FALSE",NA,"801483979773931520",NA,"Twitter for iPhone","JhansiKiRani77","7","TRUE","FALSE"
+"191","191","RT @ShashiTharoor: Joined the line of Opposition MPs demonstrating solidarity on #demonetization &demanding that @PMOIndia address Parliame�","FALSE","0",NA,"2016-11-23 17:54:03","FALSE",NA,"801483967836864512",NA,"Twitter for iPhone","Himansh29466255","71","TRUE","FALSE"
+"192","192","Monumental blunder or monumental plunder or both? #demonetization","FALSE","0",NA,"2016-11-23 17:54:00","FALSE",NA,"801483955262267392",NA,"Twitter Web Client","Sukant_Khurana","0","FALSE","FALSE"
+"193","193","RT @rishibagree: And they say #demonetization is failure https://t.co/WnjIUqIhdW","FALSE","0",NA,"2016-11-23 17:54:00","FALSE",NA,"801483954045919232",NA,"Twitter for Android","sainath_kits","102","TRUE","FALSE"
+"194","194","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:53:54","FALSE",NA,"801483930138312704",NA,"Twitter for Android","gopsec2","76","TRUE","FALSE"
+"195","195","Modi acted against national interest. The way to cashless economy need not be #Demonetization. A badly planned move.","FALSE","0",NA,"2016-11-23 17:53:42","FALSE",NA,"801483882079997952",NA,"Twitter for Windows Phone","karunasanghvi","0","FALSE","FALSE"
+"196","196","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 17:53:39","FALSE",NA,"801483867077148672",NA,"Twitter for Android","beiing_tiger_","45","TRUE","FALSE"
+"197","197","RT @rishibagree: More than 700 Fish Vendors across Kolkata have started using e-wallets.
+Before #demonetization this number was zero .. Thi�","FALSE","0",NA,"2016-11-23 17:53:38","FALSE",NA,"801483864312934400",NA,"Twitter for Android","sainath_kits","947","TRUE","FALSE"
+"198","198","RT @rssurjewala: Critical question: Was PayTM informed about #Demonetization edict by PM? It's clearly fishy and requires full disclosure &�","FALSE","0",NA,"2016-11-23 17:53:37","FALSE",NA,"801483859095228416",NA,"Twitter for Android","Maninde42125473","331","TRUE","FALSE"
+"199","199","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 17:53:03","FALSE",NA,"801483717302685696",NA,"Twitter for Android","AtishhR","30","TRUE","FALSE"
+"200","200","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:53:01","FALSE",NA,"801483709216129024",NA,"Twitter for Android","raovikashpranav","66","TRUE","FALSE"
+"201","201","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:52:57","FALSE",NA,"801483692409552896",NA,"Twitter for Android","aapkaTejuBhaiya","95","TRUE","FALSE"
+"202","202","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 17:52:51","FALSE",NA,"801483666677338112",NA,"Twitter for Android","krutarth8495","45","TRUE","FALSE"
+"203","203","RT @ANI_news: The queues are not getting longer but are getting shorter day by day: Chanda Kochar,ICIC MD and CEO #demonetization https://t�","FALSE","0",NA,"2016-11-23 17:52:43","FALSE",NA,"801483633630380032",NA,"Twitter for Android","sainath_kits","421","TRUE","FALSE"
+"204","204","RT @ShefVaidya: When was the last time you saw Naveen Patnaik or Chandrababu Naidu being interviewed on BBC or NDTV on #DeMonetization?","FALSE","0",NA,"2016-11-23 17:52:38","FALSE",NA,"801483612147183616",NA,"Twitter for Android","sainath_kits","391","TRUE","FALSE"
+"205","205","RT @pGurus1: #Demonetization move of Modi; Who is supporting it, who is opposing it and why? A complete coverage of all parties - https://t�","FALSE","0",NA,"2016-11-23 17:52:01","FALSE",NA,"801483454483464192",NA,"Twitter for Android","vkn2904","19","TRUE","FALSE"
+"206","206","RT @Gadgets360: After the #demonetization, searches about #NarendraModi's app are trending on app stores https://t.co/ZetKRqqClX","FALSE","0",NA,"2016-11-23 17:51:57","FALSE",NA,"801483439614652416",NA,"Twitter for iPhone","ateeqtak","11","TRUE","FALSE"
+"207","207","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 17:51:56","FALSE",NA,"801483436674326528",NA,"Twitter for Android","Thy_SikANDER","45","TRUE","FALSE"
+"208","208","RT @ashu3page: A man shaved his head at Jantar-Mantar in protest against #Demonetization on 13th day of the move. https://t.co/IeXuia3J0X","FALSE","0",NA,"2016-11-23 17:51:45","FALSE",NA,"801483389127704576",NA,"Twitter for Android","Bodhisnews","69","TRUE","FALSE"
+"209","209","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:51:39","FALSE",NA,"801483364586946560",NA,"Twitter for iPhone","niksnirav","95","TRUE","FALSE"
+"210","210","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:51:31","FALSE",NA,"801483331724574720",NA,"Twitter for iPhone","shrenik_gandhi","637","TRUE","FALSE"
+"211","211","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 17:51:20","FALSE",NA,"801483286291812352",NA,"Twitter for Android","4ushashishekhar","30","TRUE","FALSE"
+"212","212","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:51:10","FALSE",NA,"801483242985689088",NA,"Mobile Web (M5)","Himalayanyogi2","76","TRUE","FALSE"
+"213","213","RT @rishibagree: A Housewife's view on #demonetization https://t.co/nFwuiZUJOD","FALSE","0",NA,"2016-11-23 17:51:00","FALSE",NA,"801483199478054912",NA,"Twitter for Android","sainath_kits","114","TRUE","FALSE"
+"214","214","RT @ItzCash: @suryanavin MD ItzCash , was live on ET talking about the impact of #Demonetization towards digitization in India.
+https://t.c�","FALSE","0",NA,"2016-11-23 17:50:54","FALSE",NA,"801483174022770688",NA,"Twitter Web Client","SuryaNavin","5","TRUE","FALSE"
+"215","215","RT @ashu3page: A man shaved his head at Jantar-Mantar in protest against #Demonetization on 13th day of the move. https://t.co/IeXuia3J0X","FALSE","0",NA,"2016-11-23 17:50:31","FALSE",NA,"801483078719795200",NA,"Twitter for Android","aishwaryverma9","69","TRUE","FALSE"
+"216","216","RT @MinhazMerchant: Difficult to verify but if true points to orchestrated campaign to discredit #demonetization with paid fear-mongers htt�","FALSE","0",NA,"2016-11-23 17:50:26","FALSE",NA,"801483058171891712",NA,"Twitter for Android","sainath_kits","1057","TRUE","FALSE"
+"217","217","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:50:11","FALSE",NA,"801482993516716032",NA,"Twitter for iPhone","deedhinsaan","95","TRUE","FALSE"
+"218","218","RT @rssurjewala: Critical question: Was PayTM informed about #Demonetization edict by PM? It's clearly fishy and requires full disclosure &�","FALSE","0",NA,"2016-11-23 17:50:10","FALSE",NA,"801482989091721216",NA,"Twitter for Android","ketan99222","331","TRUE","FALSE"
+"219","219","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:50:06","FALSE",NA,"801482972360830976",NA,"Twitter for iPhone","patriotindian12","76","TRUE","FALSE"
+"220","220","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:49:51","FALSE",NA,"801482911157403648",NA,"Twitter for iPhone","usanghvi55","45","TRUE","FALSE"
+"221","221","RT @jay_ambadi: L&T is retrenching 14000 employees.
+Hope none of the supporters of #Demonetization are included!","FALSE","0",NA,"2016-11-23 17:49:31","FALSE",NA,"801482827023806464",NA,"Twitter for Android","AtheistDevil","5","TRUE","FALSE"
+"222","222","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:49:26","FALSE",NA,"801482807579000832",NA,"Twitter for Android","ObhanAjay","76","TRUE","FALSE"
+"223","223","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:49:03","FALSE",NA,"801482707838517248",NA,"Twitter for iPhone","abhinavaawara","637","TRUE","FALSE"
+"224","224","RT @YSRCParty: Days before #Demonetization announcement, @ncbn sold his Heritage shares,clearly evident that he had prior knowledge of the�","FALSE","0",NA,"2016-11-23 17:48:59","FALSE",NA,"801482691753476096",NA,"Twitter for Android","delli_sai","33","TRUE","FALSE"
+"225","225","RT @rishibagree: This is exactly how some people behaving on #demonetization
+
+Since Modi Did it lets oppose it
+If Sonia Gandhi have done i�","FALSE","0",NA,"2016-11-23 17:48:33","FALSE",NA,"801482585255776256",NA,"Twitter for Android","sainath_kits","120","TRUE","FALSE"
+"226","226","RT @JasBJP: Today I delivered a speech on various issues including #BlackMoney n #demonetization at @BJPKonnagar
+@narendramodi @AmitShah @s�","FALSE","0",NA,"2016-11-23 17:48:26","FALSE",NA,"801482555765694464",NA,"Twitter for Android","JasBJP","8","TRUE","FALSE"
+"227","227","RT @jamewils: Economy and cost of #Demonetization! https://t.co/YwAO2MES5G","FALSE","0",NA,"2016-11-23 17:48:15","FALSE",NA,"801482509531758592",NA,"Twitter for Android","PriyabrataT","2","TRUE","FALSE"
+"228","228","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 17:48:14","FALSE",NA,"801482504028815360",NA,"Twitter for Android","prembhatt0286","41","TRUE","FALSE"
+"229","229","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:48:03","FALSE",NA,"801482459850256384",NA,"Twitter for Android","AbleArcher7","95","TRUE","FALSE"
+"230","230","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:47:52","FALSE",NA,"801482414019096576",NA,"Mobile Web (M5)","sir_khujliwal","95","TRUE","FALSE"
+"231","231","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:47:33","FALSE",NA,"801482330346917888",NA,"Twitter for iPhone","rajeshpandey85","76","TRUE","FALSE"
+"232","232","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:47:32","FALSE",NA,"801482329927479296",NA,"Twitter for Android","prembhatt0286","95","TRUE","FALSE"
+"233","233","RT @ShefVaidya: NO. @MamtaOfficiaI will say this fire was caused because of #DeMonetization and @narendramodi is responsible! https://t.co/�","FALSE","0",NA,"2016-11-23 17:47:13","FALSE",NA,"801482248096579584",NA,"Twitter for Android","sainath_kits","91","TRUE","FALSE"
+"234","234","RT @sandipsabharwal: Most people are with you @narendramodi on #Demonetization
+Pl run a poll on where citizens face most harassment in the�","FALSE","0",NA,"2016-11-23 17:46:18","FALSE",NA,"801482016373886976",NA,"Twitter for iPhone","anurag29","12","TRUE","FALSE"
+"235","235","RT @JLLIndia: #Demonetization's Impact On the #India #Retail sector - Re-Tales by Pankaj Renjhen | ET Retail https://t.co/aVcYTIhdtH","FALSE","0",NA,"2016-11-23 17:46:07","FALSE",NA,"801481970496585728",NA,"Twitter for Android","maitrishah2104","2","TRUE","FALSE"
+"236","236","RT @ModiBharosa: Putting Nation over Party Politics #nitishkumar supports PM @narendramodi on #Demonetization https://t.co/UodwXdPMmG","FALSE","0",NA,"2016-11-23 17:45:32","FALSE",NA,"801481823767232512",NA,"Twitter for Android","Prasanna_Speaks","275","TRUE","FALSE"
+"237","237","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:44:12","FALSE",NA,"801481490055843840",NA,"Twitter for Android","halamalam","45","TRUE","FALSE"
+"238","238","RT @aartic02: A World Economist is Rubbishing #Demonetization in India and mind it he doesn't have to score Brownie Points in Indian Politi�","FALSE","0",NA,"2016-11-23 17:43:48","FALSE",NA,"801481389090619392",NA,"Twitter for Android","sharadg287","221","TRUE","FALSE"
+"239","239","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 17:43:32","FALSE",NA,"801481320484507648",NA,"Twitter for Android","shivr31ravindra","59","TRUE","FALSE"
+"240","240","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:43:15","FALSE",NA,"801481249122500608",NA,"TweetDeck","Sajesh","66","TRUE","FALSE"
+"241","241","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:43:10","FALSE",NA,"801481230034223104",NA,"Twitter for Android","wilsonmpaul","66","TRUE","FALSE"
+"242","242","RT @ANI_news: Gurugram (Haryana): Post office employees provide cash exchange to patients in hospitals #demonetization https://t.co/uGMxUP9�","FALSE","0",NA,"2016-11-23 17:43:05","FALSE",NA,"801481207619944448",NA,"Twitter for iPhone","imsanjeevthakur","338","TRUE","FALSE"
+"243","243","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:42:47","FALSE",NA,"801481134244827136",NA,"Twitter for Android","journomanish","66","TRUE","FALSE"
+"244","244","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:42:37","FALSE",NA,"801481089021661184",NA,"Twitter for Android","nilleo007","76","TRUE","FALSE"
+"245","245","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:42:33","FALSE",NA,"801481074094157824",NA,"Twitter Web Client","calamur","66","TRUE","FALSE"
+"246","246","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:41:39","FALSE",NA,"801480848411226112",NA,"Twitter for Android","ikaveri","66","TRUE","FALSE"
+"247","247","RT @aartic02: A World Economist is Rubbishing #Demonetization in India and mind it he doesn't have to score Brownie Points in Indian Politi�","FALSE","0",NA,"2016-11-23 17:41:37","FALSE",NA,"801480839603359744",NA,"Twitter for Android","aap_jehanabad","221","TRUE","FALSE"
+"248","248","RT @ModiBharosa: Huge support for PM @narendramodi �s #demonetization Move Across the Nation
+80-86% people back demonetization: C-voter su�","FALSE","0",NA,"2016-11-23 17:41:28","FALSE",NA,"801480799929257984",NA,"Twitter for Android","ka979896","270","TRUE","FALSE"
+"249","249","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:41:14","FALSE",NA,"801480744044371968",NA,"Twitter for iPhone","sareen_prashant","66","TRUE","FALSE"
+"250","250","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 17:41:06","FALSE",NA,"801480709504319488",NA,"Twitter for Android","somthakur001","59","TRUE","FALSE"
+"251","251","RT @pGurus1: #Demonetization move of Modi; Who is supporting it, who is opposing it and why? A complete coverage of all parties - https://t�","FALSE","0",NA,"2016-11-23 17:40:28","FALSE",NA,"801480549869256704",NA,"Twitter for Android","AlwaysProIndian","19","TRUE","FALSE"
+"252","252","@YRDeshmukh Yes. We should always rely on private psephologists/agencies . Always reliable.@realDonaldTrump can vouch for it.#demonetization","FALSE","0","YRDeshmukh","2016-11-23 17:40:12","FALSE","801443083028201472","801480483989139456","103849564","Twitter for Android","DeepuBajrangi","0","FALSE","FALSE"
+"253","253","RT @AmitDhiman_: #Demonetization is the 2nd word trending after #Intolerance. Thanks Pappu, Kejri, Mamta. #VishalJanSabha #KhulkeDulke #Ind�","FALSE","0",NA,"2016-11-23 17:39:57","FALSE",NA,"801480417639419904",NA,"Twitter Web Client","vipan2u","8","TRUE","FALSE"
+"254","254","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:39:55","FALSE",NA,"801480411385708544",NA,"Twitter for Android","Jaiiihinddd","76","TRUE","FALSE"
+"255","255","RT @r_raghuraj: Today I saw 200 black money hoarders out of 125 crore
+standing in ques outside Parliament against
+#Demonetization https://t�","FALSE","0",NA,"2016-11-23 17:39:44","FALSE",NA,"801480366703968256",NA,"Twitter for Android","sunilaol2305","2","TRUE","FALSE"
+"256","256","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:39:40","FALSE",NA,"801480349960245248",NA,"Twitter for iPhone","ParthPa07241800","95","TRUE","FALSE"
+"257","257","RT @SharmaKhemchand: 2day #namovolunteers had meeting with @malviyamit ji over #demonetization, decided 2 expose opposition by
+#__�","FALSE","0",NA,"2016-11-23 17:39:40","FALSE",NA,"801480348076949504",NA,"Twitter Web Client","KapilGurjarBJP","27","TRUE","FALSE"
+"258","258","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:39:38","FALSE",NA,"801480338178502656",NA,"Twitter for Android","ChankyaBihar","76","TRUE","FALSE"
+"259","259","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:39:07","FALSE",NA,"801480208796659712",NA,"Twitter for Android","annatarajgowda","45","TRUE","FALSE"
+"260","260","Exceptional response by the people in support of #Demonetization https://t.co/AntAlYTwYO","FALSE","0",NA,"2016-11-23 17:39:07","FALSE",NA,"801480208012296192",NA,"Twitter for Android","siddromi","0","FALSE","FALSE"
+"261","261","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:38:24","FALSE",NA,"801480030413058048",NA,"Twitter for Android","Girish8003","76","TRUE","FALSE"
+"262","262","RT @tweepul: Even if you're 100% white money & even if you're unaffected, this #demonetization move has given a lot of folks a reason to pa�","FALSE","0",NA,"2016-11-23 17:38:21","FALSE",NA,"801480016630398976",NA,"Twitter for Android","rrtwts","48","TRUE","FALSE"
+"263","263","Mr.Dust-o-bin of TMC to release Mamta App world wide,to look after #demonetization support.
+
+@quizderek @Goldenthrust","FALSE","0",NA,"2016-11-23 17:38:09","FALSE",NA,"801479967779352576",NA,"Twitter for Android","Jain_Sahab2016","0","FALSE","FALSE"
+"264","264","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:37:42","FALSE",NA,"801479852176142336",NA,"Twitter for Android","hasit108","76","TRUE","FALSE"
+"265","265","RT @TalkOrTweets: #Demonetization Now affecting even the dumb rich ...who now have to use public transport https://t.co/8RW0WZat3o","FALSE","0",NA,"2016-11-23 17:36:50","FALSE",NA,"801479635657752576",NA,"Twitter for iPad","brijwhiz","1","TRUE","FALSE"
+"266","266","Cousin fired 27 staff today with a promise 2 rehire in 6 months.Says no new orders + no cash to pay them .Heartbreaking.
+
+#Demonetization","FALSE","1",NA,"2016-11-23 17:36:49","FALSE",NA,"801479631668912128",NA,"Twitter for iPhone","Vipul_88","3","FALSE","FALSE"
+"267","267","I thought only black money holder wud hate demonetization.
+No there r many, we cal them by many names like C#%, l#$, etc etc
+#demonetization","FALSE","0",NA,"2016-11-23 17:36:47","FALSE",NA,"801479621359370240",NA,"Twitter for Windows","soaddictedto","0","FALSE","FALSE"
+"268","268",".@suraj_agarwal_ more bhakt abuse more Modi reduce #demonetization open pandora box everyone knows Modi has no brain everything go in drain","FALSE","0","suraj_agarwal_","2016-11-23 17:36:37","FALSE","801478766832865280","801479579797852160","2549309647","Twitter for iPad","Mohitmsood","0","FALSE","FALSE"
+"269","269","How can a #PM who can't even #control his #emotions, #control an #entire #nation! #Demonetization #NotADefaulter #PMModi #NotProCongress! ","FALSE","0",NA,"2016-11-23 17:36:37","FALSE",NA,"801479579554562048",NA,"Twitter for Android","ANI_cdote","0","FALSE","FALSE"
+"270","270","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:36:04","FALSE",NA,"801479443973709824",NA,"Twitter for iPhone","iVimalPandey","76","TRUE","FALSE"
+"271","271","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 17:35:34","FALSE",NA,"801479314999013376",NA,"Twitter for Android","ankitvasta1","45","TRUE","FALSE"
+"272","272","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:35:31","FALSE",NA,"801479303800225792",NA,"Twitter for Android","SPJ1810","76","TRUE","FALSE"
+"273","273","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:35:27","FALSE",NA,"801479286741929984",NA,"Twitter for Android","yaajushi","637","TRUE","FALSE"
+"274","274","RT @AAPVind: #Demonetization Is Disaster! @naam_pk","FALSE","0",NA,"2016-11-23 17:35:21","FALSE",NA,"801479261991288832",NA,"Twitter for iPhone","500Urvashi","7","TRUE","FALSE"
+"275","275","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:35:12","FALSE",NA,"801479225567940608",NA,"Twitter for Android","Sowmyareddyr","45","TRUE","FALSE"
+"276","276","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:35:09","FALSE",NA,"801479212460707840",NA,"Twitter Web Client","amareshskumar","76","TRUE","FALSE"
+"277","277","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:35:07","FALSE",NA,"801479203820441600",NA,"Twitter for Android","sumit1221","637","TRUE","FALSE"
+"278","278","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:35:07","FALSE",NA,"801479203367616512",NA,"Twitter for Android","MayTkt","20","TRUE","FALSE"
+"279","279","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 17:34:47","FALSE",NA,"801479118844002304",NA,"Twitter for Android","MihirBSR","30","TRUE","FALSE"
+"280","280","RT @AAPVind: #Demonetization Is Disaster! @naam_pk","FALSE","0",NA,"2016-11-23 17:34:39","FALSE",NA,"801479084027117568",NA,"Twitter Web Client","iHolyCow","7","TRUE","FALSE"
+"281","281","RT @AAPVind: #Demonetization Is Disaster! @naam_pk","FALSE","0",NA,"2016-11-23 17:34:36","FALSE",NA,"801479071460950016",NA,"Twitter Web Client","iTheTrollKiller","7","TRUE","FALSE"
+"282","282","RT @AAPVind: #Demonetization Is Disaster! @naam_pk","FALSE","0",NA,"2016-11-23 17:34:31","FALSE",NA,"801479051017932800",NA,"Twitter Web Client","Modi3rdClass","7","TRUE","FALSE"
+"283","283","RT @AAPVind: #Demonetization Is Disaster! @naam_pk","FALSE","0",NA,"2016-11-23 17:34:17","FALSE",NA,"801478992754835456",NA,"Twitter Web Client","KehKDsunga","7","TRUE","FALSE"
+"284","284","RT @RoflGandhi_: No issues with #demonetization, my maid's son exchanged money in just 15 mins, that too when she doesn't have a son and I�","FALSE","0",NA,"2016-11-23 17:34:16","FALSE",NA,"801478990229884928",NA,"Twitter for Android","viksbhatt","1010","TRUE","FALSE"
+"285","285","RT @AAPVind: #Demonetization Is Disaster! @naam_pk","FALSE","0",NA,"2016-11-23 17:34:15","FALSE",NA,"801478984156516352",NA,"Twitter Web Client","Eagl3Eye_","7","TRUE","FALSE"
+"286","286","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:33:26","FALSE",NA,"801478780111953920",NA,"Twitter for Android","legenddhananjay","95","TRUE","FALSE"
+"287","287",".@RajanAnandan would be interesting to look at this research again in light of #demonetization.. A real #blackswan!� https://t.co/cVUn1WF4IS","FALSE","0",NA,"2016-11-23 17:33:24","TRUE",NA,"801478772318871552",NA,"Twitter for Android","adisave","0","FALSE","FALSE"
+"288","288","#Demonetization Is Disaster! @naam_pk","FALSE","4","naam_pk","2016-11-23 17:33:12","FALSE","801476518551633920","801478720364171264","4665023062","Twitter Web Client","AAPVind","7","FALSE","FALSE"
+"289","289","RT @Joydeep_911: Calling all Nationalists to join...
+Walk for #CorruptionFreeIndia and spread the benefits of #Demonetization among the mas�","FALSE","0",NA,"2016-11-23 17:32:41","FALSE",NA,"801478589564624896",NA,"Twitter Web Client","56perumal","112","TRUE","FALSE"
+"290","290","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:32:36","FALSE",NA,"801478569792651264",NA,"Twitter for iPhone","itsmeAdii1221","95","TRUE","FALSE"
+"291","291","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:32:31","FALSE",NA,"801478548561104896",NA,"Twitter for Android","dimwittedjoker","66","TRUE","FALSE"
+"292","292","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:32:30","FALSE",NA,"801478545314713600",NA,"Twitter for Android","alokbehera","20","TRUE","FALSE"
+"293","293","Things are very fast getting back to normal. No long queues in Bhopal banks and ATMs anymore.
+#DeMonetization","FALSE","0",NA,"2016-11-23 17:32:21","FALSE",NA,"801478507612270592",NA,"Twitter for Android","AmanTainguria22","0","FALSE","FALSE"
+"294","294","@ArvindKejriwal @AamAadmiParty how you guys reached 8 lakh ghotala in #Demonetization process. Pls explain the number @TimesNow","FALSE","0","ArvindKejriwal","2016-11-23 17:32:14","FALSE",NA,"801478478054817792","405427035","Twitter for Android","Devtech11","0","FALSE","FALSE"
+"295","295","World is full of #smart #people
+#demonetization https://t.co/JTLnZ8hD2d","FALSE","0",NA,"2016-11-23 17:32:03","FALSE",NA,"801478430571298816",NA,"Facebook","balramkverma","0","FALSE","FALSE"
+"296","296","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:31:42","FALSE",NA,"801478343119908864",NA,"Twitter for Android","irmanprakash","637","TRUE","FALSE"
+"297","297","RT @mrpatel1954: #Demonetization has long term benefits. Pain now is temporary. Let us help #nation to make #India #corruption free.","FALSE","0",NA,"2016-11-23 17:31:04","FALSE",NA,"801478185577807872",NA,"Twitter for iPad","maniram50","17","TRUE","FALSE"
+"298","298","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:30:55","FALSE",NA,"801478145782075392",NA,"Twitter for Android","_Proud_Indian_","637","TRUE","FALSE"
+"299","299","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:30:51","FALSE",NA,"801478130791809024",NA,"Twitter for Android","DhirajRathod03","76","TRUE","FALSE"
+"300","300","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:30:47","FALSE",NA,"801478112697430016",NA,"Twitter for iPhone","tejash_m","637","TRUE","FALSE"
+"301","301","RT @Savitri4Ever: Wow! #Demonetization Survey Response: 5 Lakh citizens in little over 24 hrs!
+Participate now!
+https://t.co/pwVrLD6tSg
+via�","FALSE","0",NA,"2016-11-23 17:30:36","FALSE",NA,"801478066186784768",NA,"Twitter Web Client","Savitri4Ever","1","TRUE","FALSE"
+"302","302","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:30:33","FALSE",NA,"801478055029940224",NA,"Twitter Web Client","sanjayjoshi27","95","TRUE","FALSE"
+"303","303","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:30:26","FALSE",NA,"801478024981905408",NA,"Twitter for Android","angadi_ashok","76","TRUE","FALSE"
+"304","304","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:30:21","FALSE",NA,"801478005499502592",NA,"Twitter for Android","RaghuramanMenon","20","TRUE","FALSE"
+"305","305","RT @Gadgets360: After the #demonetization, searches about #NarendraModi's app are trending on app stores https://t.co/ZetKRqqClX","FALSE","0",NA,"2016-11-23 17:29:43","FALSE",NA,"801477843666477056",NA,"Twitter for Android","priyankmunjoshi","11","TRUE","FALSE"
+"306","306","RT @ajit_ranade: Not surgical strike. It's the nuclear button. This is Modi's Pokhran. Kudos #demonetization","FALSE","0",NA,"2016-11-23 17:29:28","FALSE",NA,"801477780869234688",NA,"Twitter for Android","preetamks","441","TRUE","FALSE"
+"307","307","RT @DrKumarVishwas: And the Oscar goes to ""Mr."" #demonetization https://t.co/ObQrhlNSL6","FALSE","0",NA,"2016-11-23 17:29:22","FALSE",NA,"801477756437626880",NA,"Twitter Web Client","astro121995","954","TRUE","FALSE"
+"308","308","Amazing how videos showing ppl happy with #demonetization end up as mobile forwards, unhappy videos land on @sardesairajdeep tl #prestitutes","FALSE","0","sardesairajdeep","2016-11-23 17:28:46","FALSE","801273077883670528","801477605203578880","56304605","Twitter for Android","HailYoda","0","FALSE","FALSE"
+"309","309","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:28:30","FALSE",NA,"801477536983064576",NA,"Twitter Web Client","praveen12rajan","637","TRUE","FALSE"
+"310","310","Rahul Gandhi-'PM favours Rich people',@OfficeofRG who do u think Peons and sarkari babu are? #Demonetization","FALSE","0",NA,"2016-11-23 17:28:28","FALSE",NA,"801477529236213760",NA,"Twitter for Windows Phone","pragya_9","0","FALSE","FALSE"
+"311","311","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 17:28:24","FALSE",NA,"801477512752558080",NA,"Twitter for iPad","intolerantIndi6","59","TRUE","FALSE"
+"312","312","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 17:28:17","FALSE",NA,"801477485518942208",NA,"Twitter for Android","ShrimanYogee","41","TRUE","FALSE"
+"313","313","#Demonetization modi ji just like your survey,mrs. clinton was also winning the elections in all the surveys!","FALSE","0",NA,"2016-11-23 17:27:56","FALSE",NA,"801477397241626624",NA,"Twitter Web Client","astro121995","0","FALSE","FALSE"
+"314","314","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 17:27:54","FALSE",NA,"801477387938430976",NA,"Twitter for iPhone","bhavnapb","59","TRUE","FALSE"
+"315","315","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:27:40","FALSE",NA,"801477328937197568",NA,"Twitter for Android","ashishvr1","637","TRUE","FALSE"
+"316","316","RT @MDiplomacyWORLD: Acid test for #Modi and #BJP: #Demonetization hits #Indian life #India #banking #SouthAsia https://t.co/394uVTOM2l","FALSE","0",NA,"2016-11-23 17:27:34","FALSE",NA,"801477304790773760",NA,"TweetDeck","presscode","3","TRUE","FALSE"
+"317","317","RT @MDiplomacyWORLD: Acid test for #Modi and #BJP: #Demonetization hits #Indian life #India #banking #SouthAsia https://t.co/394uVTOM2l","FALSE","0",NA,"2016-11-23 17:27:34","FALSE",NA,"801477304547471360",NA,"TweetDeck","MDTravelMag","3","TRUE","FALSE"
+"318","318","RT @MDiplomacyWORLD: Acid test for #Modi and #BJP: #Demonetization hits #Indian life #India #banking #SouthAsia https://t.co/394uVTOM2l","FALSE","0",NA,"2016-11-23 17:27:34","FALSE",NA,"801477304497147904",NA,"TweetDeck","DGiannakopoulos","3","TRUE","FALSE"
+"319","319","RT @RealHistoryPic: Can't say anything about Productivity but Creativity has increased after #Demonetization.(2016) https://t.co/0fMh3UMbVq","FALSE","0",NA,"2016-11-23 17:27:19","FALSE",NA,"801477241574137856",NA,"Twitter for Windows","ZedLens","1158","TRUE","FALSE"
+"320","320","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:26:40","FALSE",NA,"801477075119050752",NA,"Twitter for Android","mpuneet321","66","TRUE","FALSE"
+"321","321","Acid test for #Modi and #BJP: #Demonetization hits #Indian life #India #banking #SouthAsia https://t.co/394uVTOM2l","FALSE","0",NA,"2016-11-23 17:26:38","FALSE",NA,"801477070220042240",NA,"Twitter Web Client","MDiplomacyWORLD","3","FALSE","FALSE"
+"322","322","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:26:01","FALSE",NA,"801476912463761408",NA,"Twitter for iPad","a799612","637","TRUE","FALSE"
+"323","323","RT @ModiBharosa: Putting Nation over Party Politics #nitishkumar supports PM @narendramodi on #Demonetization https://t.co/UodwXdPMmG","FALSE","0",NA,"2016-11-23 17:25:56","FALSE",NA,"801476891454509056",NA,"Twitter for iPhone","ssborkar","275","TRUE","FALSE"
+"324","324","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:25:46","FALSE",NA,"801476849582804992",NA,"Twitter for iPhone","hkgupta16","20","TRUE","FALSE"
+"325","325","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:25:25","FALSE",NA,"801476763989708800",NA,"Twitter for Android","PikuKaushal","95","TRUE","FALSE"
+"326","326","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:25:20","FALSE",NA,"801476743144022016",NA,"Twitter for iPad","tarunpall","95","TRUE","FALSE"
+"327","327","RT @ModiBharosa: Huge support for PM @narendramodi �s #demonetization Move Across the Nation
+80-86% people back demonetization: C-voter su�","FALSE","0",NA,"2016-11-23 17:25:20","FALSE",NA,"801476742816747520",NA,"Twitter for iPhone","sohal_sunil","270","TRUE","FALSE"
+"328","328","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:25:16","FALSE",NA,"801476725154676736",NA,"Twitter for Android","TaherMdSaheb","45","TRUE","FALSE"
+"329","329","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:25:05","FALSE",NA,"801476678069301248",NA,"Twitter for Android","romandsouza","45","TRUE","FALSE"
+"330","330","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:24:36","FALSE",NA,"801476557977972736",NA,"Twitter for iPhone","arvindnayak1","76","TRUE","FALSE"
+"331","331","Post the #Indian currency #Demonetization move, #BJP or #Modi has garnered a huge base of #Foes and #Psychopaths... https://t.co/AZ4QUvkptF","FALSE","0",NA,"2016-11-23 17:24:36","FALSE",NA,"801476556841426944",NA,"Facebook","ISupportILP","0","FALSE","FALSE"
+"332","332","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 17:24:18","FALSE",NA,"801476479733284864",NA,"Twitter for iPhone","itsmeAdii1221","45","TRUE","FALSE"
+"333","333","So this is what #Demonetization has done (aside killing over 55 people).
+#CashRush #BlackMoney https://t.co/ybgj19WYpo","FALSE","0",NA,"2016-11-23 17:23:50","FALSE",NA,"801476362980753408",NA,"Hootsuite","dinjalfeed","0","FALSE","FALSE"
+"334","334","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:23:43","FALSE",NA,"801476336183287808",NA,"Twitter for Android","nansknight","95","TRUE","FALSE"
+"335","335","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:23:38","FALSE",NA,"801476313475325952",NA,"Twitter for Android","rathordeepak","637","TRUE","FALSE"
+"336","336","Reduce the perks & benefits of all MP's and MLA's by 50% . #demonetization","FALSE","0",NA,"2016-11-23 17:23:36","FALSE",NA,"801476306768494592",NA,"Twitter for Android","WITTYCUPID","0","FALSE","FALSE"
+"337","337","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:23:31","FALSE",NA,"801476282458349568",NA,"Twitter for Android","ehteshamheyat","45","TRUE","FALSE"
+"338","338","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:23:25","FALSE",NA,"801476257582088192",NA,"Twitter for iPhone","Cricket_Holic","95","TRUE","FALSE"
+"339","339","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:23:20","FALSE",NA,"801476236937609216",NA,"Twitter for Android","abhijeetkum","95","TRUE","FALSE"
+"340","340","The only thing I have gained from Modi's #demonetization is one addiction to my Hindi vocabulary. I now know the meaning of ""bewafa"".
+#India","FALSE","0",NA,"2016-11-23 17:23:11","FALSE",NA,"801476201667641344",NA,"Twitter for Android","cheesionette","0","FALSE","FALSE"
+"341","341","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:23:03","FALSE",NA,"801476167597432832",NA,"Twitter for Android","PZavar","20","TRUE","FALSE"
+"342","342","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:22:55","FALSE",NA,"801476133275377664",NA,"Twitter for iPhone","prahladkr","95","TRUE","FALSE"
+"343","343","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 17:22:54","FALSE",NA,"801476129362214912",NA,"Twitter for Android","kanimozhi","41","TRUE","FALSE"
+"344","344","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:22:16","FALSE",NA,"801475970485997568",NA,"Twitter for iPhone","HirayYashwant","76","TRUE","FALSE"
+"345","345","@ArvindKejriwal kindly bring your application for real survey on #demonetization to know actual truth how unhappy people are..","FALSE","0","ArvindKejriwal","2016-11-23 17:22:01","FALSE",NA,"801475907101696000","405427035","Twitter for Android","shakeeb_a_khan","0","FALSE","FALSE"
+"346","346","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 17:21:55","FALSE",NA,"801475883018108928",NA,"Twitter for Android","Deepak26Shah","41","TRUE","FALSE"
+"347","347","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 17:21:14","FALSE",NA,"801475709126393856",NA,"Twitter for Android","vinodsharma1834","59","TRUE","FALSE"
+"348","348","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:20:50","FALSE",NA,"801475609838977024",NA,"Twitter for Android","vikaash_singh","637","TRUE","FALSE"
+"349","349","RT @Dipankar_cpiml: The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hards�","FALSE","0",NA,"2016-11-23 17:20:47","FALSE",NA,"801475597553672192",NA,"Twitter Web Client","JohnDayal","45","TRUE","FALSE"
+"350","350","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:20:47","FALSE",NA,"801475596324847616",NA,"Twitter for Android","SupportRSS","20","TRUE","FALSE"
+"351","351","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 17:20:39","FALSE",NA,"801475562245996544",NA,"Twitter for Android","berozgaarhoo","45","TRUE","FALSE"
+"352","352","RT @FTIIndia: What is the impact of #Demonetization on various sectors like Real Estate, Consumption, Banks.
+Read our views here - https://�","FALSE","0",NA,"2016-11-23 17:20:34","FALSE",NA,"801475541140439040",NA,"Twitter for Android","rajengg08","1","TRUE","FALSE"
+"353","353","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 17:20:06","FALSE",NA,"801475425423785984",NA,"Twitter for Android","panaiyolaishan","41","TRUE","FALSE"
+"354","354","RT @FTIIndia: How will inflation and interest rates react to #Demonetization?
+Read our views here - https://t.co/kFCVgHbNdL https://t.co/M�","FALSE","0",NA,"2016-11-23 17:19:34","FALSE",NA,"801475290589437952",NA,"Twitter for Android","rajengg08","1","TRUE","FALSE"
+"355","355","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:19:24","FALSE",NA,"801475247107088384",NA,"Twitter for Android","jyotsnadevi33","76","TRUE","FALSE"
+"356","356","@muglikar_ SBI slashes bulk deposit term deposit rates drastically. CASHualty of #demonetization?","FALSE","0","muglikar_","2016-11-23 17:19:12","FALSE","801472990496063488","801475198641782784","2877839294","Twitter for Android","singhdds","0","FALSE","FALSE"
+"357","357","RT @centerofright: Interesting results from @narendramodi APP poll on #DeMonetization - It is still open , Please participate https://t.co/�","FALSE","0",NA,"2016-11-23 17:18:59","FALSE",NA,"801475143914561536",NA,"Twitter for Android","souravt5656","21","TRUE","FALSE"
+"358","358","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:18:58","FALSE",NA,"801475137526792192",NA,"Twitter for Android","BJPJajuShyam","20","TRUE","FALSE"
+"359","359","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:18:57","FALSE",NA,"801475134825627648",NA,"Twitter for Android","NaPalayanam","76","TRUE","FALSE"
+"360","360","RT @Joydeep_911: Calling all Nationalists to join...
+Walk for #CorruptionFreeIndia and spread the benefits of #Demonetization among the mas�","FALSE","0",NA,"2016-11-23 17:18:44","FALSE",NA,"801475080698155008",NA,"Twitter for Android","BJPJajuShyam","112","TRUE","FALSE"
+"361","361","RT @Ra_THORe: #Demonetization #IndiaFightsCorruption Immense courage needed to take such a momentous decision @arunjaitley @narendramodi @P�","FALSE","0",NA,"2016-11-23 17:18:13","FALSE",NA,"801474951215579136",NA,"Twitter for iPad","RANJANRAJIND","43","TRUE","FALSE"
+"362","362","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:18:06","FALSE",NA,"801474920785977344",NA,"Twitter for Android","gabrubhishek","66","TRUE","FALSE"
+"363","363","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:17:48","FALSE",NA,"801474846706323456",NA,"Twitter for Android","zGovinda","20","TRUE","FALSE"
+"364","364","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:17:43","FALSE",NA,"801474823218049024",NA,"Twitter for Android","iyengarhgv","95","TRUE","FALSE"
+"365","365","The Modi app on #DeMonetization proves once again that the govt is totally indifferent to the mounting misery and hardship of the people.""","FALSE","0",NA,"2016-11-23 17:17:41","FALSE",NA,"801474816159219712",NA,"Twitter for Android","aniket_nemad","0","FALSE","FALSE"
+"366","366","RT @Hemant_80: Did you vote on #Demonetization on Modi survey app?","FALSE","0",NA,"2016-11-23 17:17:28","FALSE",NA,"801474761142501376",NA,"Twitter for Android","waseemuddin3","66","TRUE","FALSE"
+"367","367","RT @DrKumarVishwas: And the Oscar goes to ""Mr."" #demonetization https://t.co/ObQrhlNSL6","FALSE","0",NA,"2016-11-23 17:17:26","FALSE",NA,"801474752116391936",NA,"Twitter for Android","GuptaSantoshLko","954","TRUE","FALSE"
+"368","368","RT @Punitspeaks: Survey result so far by @PMOIndia on #Demonetization. 5 lakh response in 24 hrs. 90% supports note ban. #MeraDeshBadalRaha�","FALSE","0",NA,"2016-11-23 17:17:19","FALSE",NA,"801474724228276224",NA,"Twitter for Android","jyotikatharia","30","TRUE","FALSE"
+"369","369","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 17:17:18","FALSE",NA,"801474717806792704",NA,"Twitter for Android","TheAngryLord","59","TRUE","FALSE"
+"370","370","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:17:01","FALSE",NA,"801474648575647744",NA,"Twitter Web Client","swarupkdc","76","TRUE","FALSE"
+"371","371","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 17:17:01","FALSE",NA,"801474648399413248",NA,"Twitter for iPhone","ravikumar_8484","45","TRUE","FALSE"
+"372","372","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:17:00","FALSE",NA,"801474642732924928",NA,"Twitter Web Client","KapilGurjarBJP","637","TRUE","FALSE"
+"373","373","RT @RealZaidHamid_: #DemonetizationMythsBusted
+Anyone dying within 20 km radius of bank is coz of #Demonetization and Modi is directly resp�","FALSE","0",NA,"2016-11-23 17:16:33","FALSE",NA,"801474530262720512",NA,"Twitter for Android","rishabh_arya95","68","TRUE","FALSE"
+"374","374","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:16:21","FALSE",NA,"801474480753111040",NA,"Twitter for iPhone","ramdsharma","20","TRUE","FALSE"
+"375","375","RT @kapil_kausik: #Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds"" No wo�","FALSE","0",NA,"2016-11-23 17:15:56","FALSE",NA,"801474375140671488",NA,"Twitter for Android","SamWit_Wicky","20","TRUE","FALSE"
+"376","376","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 17:15:47","FALSE",NA,"801474337312116736",NA,"Twitter Web Client","venugopalgv","41","TRUE","FALSE"
+"377","377","@SriSri Ravi Shankar roots for #demonetization , hails PM @narendramodi
+https://t.co/GV5gt4sjLW https://t.co/E0ZFRnRjlk","FALSE","0","SriSri","2016-11-23 17:15:47","FALSE",NA,"801474336490012672","61126132","Twitter for Android","abhee_agrawal","0","FALSE","FALSE"
+"378","378","#Doltiwal I mean #JaiChandKejriwal is ""hurt"" by #Demonetization as the same has rendered USELESS ""acquired funds""� https://t.co/LaNJGLWrN6","FALSE","13",NA,"2016-11-23 17:15:31","TRUE",NA,"801474268810780672",NA,"Twitter Web Client","kapil_kausik","20","FALSE","FALSE"
+"379","379","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:15:09","FALSE",NA,"801474178432061440",NA,"Twitter for Android","k_suresh1967","637","TRUE","FALSE"
+"380","380","RT @r_raghuraj: Today I saw 200 black money hoarders out of 125 crore
+standing in ques outside Parliament against
+#Demonetization https://t�","FALSE","0",NA,"2016-11-23 17:14:36","FALSE",NA,"801474040502157312",NA,"Twitter for Android","DhavalBhuva5","2","TRUE","FALSE"
+"381","381","Heard someone saying Home loans will go down soon. #Demonetization may work there.","FALSE","1",NA,"2016-11-23 17:14:25","FALSE",NA,"801473993748414464",NA,"Twitter for Android","b_darekar","0","FALSE","FALSE"
+"382","382","RT @penisgarlic: People these days are practicing to get the tickets when 2.0 will release by making queue in bank n ATM #demonetization�","FALSE","0",NA,"2016-11-23 17:14:01","FALSE",NA,"801473893026463744",NA,"Twitter for Android","bholipunjabn","1","TRUE","FALSE"
+"383","383","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:13:46","FALSE",NA,"801473829922947072",NA,"Twitter for iPhone","ravikumar_8484","95","TRUE","FALSE"
+"384","384","Do you support the Opposition's agitation against #demonetization ? Participate n d DNA poll & see the results... https://t.co/HqUtn0blat","FALSE","0",NA,"2016-11-23 17:13:46","FALSE",NA,"801473829042352128",NA,"Twitter for iPhone","rks_fzd","0","FALSE","FALSE"
+"385","385","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:13:45","FALSE",NA,"801473825183449088",NA,"Twitter Web Client","anildhar9","637","TRUE","FALSE"
+"386","386","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:13:44","FALSE",NA,"801473820100067328",NA,"Twitter for Android","JustKiddingYaar","95","TRUE","FALSE"
+"387","387","RT @Atheist_Krishna: The effect of #Demonetization !!
+. https://t.co/A8of7zh2f5","FALSE","0",NA,"2016-11-23 17:13:43","FALSE",NA,"801473816815955968",NA,"Twitter for Android","000mrs000","45","TRUE","FALSE"
+"388","388","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:13:35","FALSE",NA,"801473785945673728",NA,"Twitter for Android","JsAp4","95","TRUE","FALSE"
+"389","389","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:13:29","FALSE",NA,"801473757659308032",NA,"Twitter for Android","1986anilshukla","637","TRUE","FALSE"
+"390","390","RT @Gadgets360: After the #demonetization, searches about #NarendraModi's app are trending on app stores https://t.co/ZetKRqqClX","FALSE","0",NA,"2016-11-23 17:13:19","FALSE",NA,"801473715636760576",NA,"Twitter for iPhone","patani_ashutosh","11","TRUE","FALSE"
+"391","391","RT @Joydas: Question in Narendra Modi App where PM is taking feedback if people support his #DeMonetization strategy https://t.co/pYgK8Rmg7r","FALSE","0",NA,"2016-11-23 17:13:14","FALSE",NA,"801473695101304832",NA,"Twitter for iPhone","anuraggarg11","120","TRUE","FALSE"
+"392","392","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:13:03","FALSE",NA,"801473651736330240",NA,"Twitter for Android","SV99999","637","TRUE","FALSE"
+"393","393","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:12:59","FALSE",NA,"801473634128642048",NA,"Twitter Web Client","debasishbgohain","76","TRUE","FALSE"
+"394","394","RT @gauravcsawant: Rs 40 lakh looted from a bank in Kishtwar in J&K. Third such incident since #demonetization. That's how terrorists have�","FALSE","0",NA,"2016-11-23 17:12:37","FALSE",NA,"801473541183078400",NA,"Twitter for Android","rishi_iitr","637","TRUE","FALSE"
+"395","395","RT @kanimozhi: Ts is exactly what Pappu & opposition has done to themselves by opposing #Demonetization Now none can stop Modi bandwagon ti�","FALSE","0",NA,"2016-11-23 17:12:12","FALSE",NA,"801473434270060544",NA,"Twitter for Android","chessvasu","41","TRUE","FALSE"
+"396","396","RT @centerofright: Interesting results from @narendramodi APP poll on #DeMonetization - It is still open , Please participate https://t.co/�","FALSE","0",NA,"2016-11-23 17:11:57","FALSE",NA,"801473372425191424",NA,"Twitter for iPhone","pune_adhik_une","21","TRUE","FALSE"
+"397","397","@OfficeOfRG u sayin inconvenience due to #demonetization but ur govt destroying Karnataka by constructing #steelbridge #NetaVilla","FALSE","0","OfficeOfRG","2016-11-23 17:11:54","FALSE",NA,"801473359041048576","3171712086","Twitter for Android","bg_yogesh","0","FALSE","FALSE"
+"398","398","RT @Atheist_Krishna: BEFORE and AFTER Gandhi ji heard they are standing there against #Demonetization
+. https://t.co/9NheK63TPg","FALSE","0",NA,"2016-11-23 17:11:40","FALSE",NA,"801473302304788480",NA,"Twitter for iPhone","nisarg_parikh","95","TRUE","FALSE"
+"399","399","RT @harshkkapoor: #DeMonetization survey results after 24 hours
+5Lacs opinions
+Amazing response& Commitment in fight against Blackmoney
+@na�","FALSE","0",NA,"2016-11-23 17:11:30","FALSE",NA,"801473258977628160",NA,"Twitter for Android","prashan20943955","59","TRUE","FALSE"
+"400","400","RT @rssurjewala: Critical question: Was PayTM informed about #Demonetization edict by PM? It's clearly fishy and requires full disclosure &�","FALSE","0",NA,"2016-11-23 17:11:20","FALSE",NA,"801473218120970240",NA,"Twitter for Android","rajnikanttiwa10","331","TRUE","FALSE"
+"401","401","Today I saw 200 black money hoarders out of 125 crore
+standing in ques outside Parliament against
+#Demonetization https://t.co/CYLkZI3ie8","FALSE","3",NA,"2016-11-23 17:11:14","FALSE",NA,"801473192929988608",NA,"Twitter for Android","r_raghuraj","2","FALSE","FALSE"
+"402","402","Congress, a party which did nothing effective to stop farmer's suicide in Maha under it's watch, now cries over #demonetization deaths.","FALSE","3",NA,"2016-11-23 17:10:32","FALSE",NA,"801473016613875712",NA,"Twitter Web Client","RuhiRizvi","2","FALSE","FALSE"
+"403","403","#Demonetization Can we use Mobile to Mobile cash transfer as a mode of payment to ease cash crunch","FALSE","0",NA,"2016-11-23 17:10:22","FALSE",NA,"801472973349781504",NA,"Twitter Web Client","kamkkp","0","FALSE","FALSE"
+"404","404","RT @ModiBharosa: Putting Nation over Party Politics #nitishkumar supports PM @narendramodi on #Demonetization https://t.co/UodwXdPMmG","FALSE","0",NA,"2016-11-23 17:10:07","FALSE",NA,"801472910179319808",NA,"Twitter for iPhone","chauhananil23","275","TRUE","FALSE"
+"405","405","RT @DrGPradhan: 8
+
+This tweet of @minimathur BIBI explains why she is having a prob with #demonetization ..In first part she says she can't�","FALSE","0",NA,"2016-11-23 17:09:49","FALSE",NA,"801472836984446976",NA,"Twitter for iPhone","Sam4delhi","76","TRUE","FALSE"
+"406","406","RT @DrKumarVishwas: And the Oscar goes to ""Mr.""