Skip to content

Instantly share code, notes, and snippets.

@jinniluo
Last active March 10, 2018 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jinniluo/d09e140b97b407355eee5079a378a2b2 to your computer and use it in GitHub Desktop.
Save jinniluo/d09e140b97b407355eee5079a378a2b2 to your computer and use it in GitHub Desktop.
D3-linechart-update-with-tooltip
<!DOCTYPE html>
<head>
<title>heatmap</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="click">
</div>
<div class="plot">
<div class="tooltip">
<div class="opacity-footer"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="//d3js.org/d3.v4.min.js"></script>
<script src="script.js"></script>
</body>
const margin={top:50,right:50,bottom:50,left:50},
width=$(".plot").width()-margin.left-margin.right,
height=$(".plot").height()-margin.top-margin.bottom;
//const tooltip=d3.select(".plot").append("div").attr("class","tooltip");
const svg = d3.select('.plot')
.append('svg')
.attr('width', width + margin.left + margin.right)
.attr('height', height + margin.top + margin.bottom)
.append('g')
.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
const button=["user1","user2"];
const click=d3.select(".click").selectAll("button")
.data(button).enter()
.append("button").attr("id",(d,i)=>{return d})
.append("text").text((d)=>{return d});
const bar=svg.append("g");
//x y scale
const dateStart=new Date(2016,07,01),dateEnd=new Date(2017,01,24);
const x = d3.scaleTime().range([0,width]).domain([dateStart,dateEnd]),
//const x = d3.scaleTime().rangeRound([0,width]).domain([dateStart,dateEnd]),
y = d3.scaleLinear().range([height,0]).domain([0,118]);
const xAxis = d3.axisBottom(x);
const yAxis = d3.axisLeft(y).tickValues([0,50,100]);
const x_Axis=svg.append("g")
.attr("class","x-axis")
.call(xAxis)
.attr("transform","translate("+0+","+height+")")
.selectAll("text")
.attr("transform","rotate(30)")
.style("text-anchor","strat")
.attr("dx", "2em")
.attr("dy", "1em")
const y_Axis=svg.append("g")
.attr("class","y-axis").call(yAxis).selectAll(".tick")
.attr("stroke-width",0.2)
.select("text")
.attr("dx", "-.2em")
// .attr("transform","translate("+(-width-gridSize*2)+","+0+")")
.style("text-anchor","end");
///load in data/
d3.queue()
.defer(d3.json,"user1.json")
.defer(d3.json,"user2.json")
.await(ready);
function ready (error,user1,user2) {
if (error) throw error;
//create bottom click
const dataset=[user1,user2];
drawBarchart(dataset[0])
click
.on("click",(d)=>{
const index=button.indexOf(d),
data=dataset[index];
drawBarchart(data);
// $(".tooltip").css("visibility","visible")
});
}
function drawBarchart(d){
/////////////////////////////////////////////////////////////////
//////////////////////draw bars//////////////////////////////////
/////////////////////////////////////////////////////////////////
const formatTime = d3.timeFormat("%B %d, %Y");
//enter
const update=bar.selectAll(".bar").data(d);
//update
update.enter().append("rect").merge(update)
.attr("class", "bar")
.attr("x", function(d) { return x(new Date(formatTime(new Date(d.date)))); })
.attr("y", function(d) { return y(0); })
.attr("height", function(d) { return height - y(0); })
.attr("width", "2")
.transition().duration(800)
.attr("height", function(d) { return height - y(d.count); })
.attr("y", function(d) { return y(d.count); });
//remove
update.exit().remove();
//hover over tooltip
bar.selectAll(".bar")
.on("mouseover",(d,i)=>{
//change color of the bar
// update.style("fill","blue")
console.log(d);
// d3.select(this).attr("class","select");
var tip=d3.select(".tooltip");
// console.log(d)
//show date,time,text for each array //enter tip
var updateTip=tip.selectAll(".content").data(d.values)
updateTip.enter().append("div").attr("class","content")
.merge(updateTip)
.html((d,i)=>{
return "<span id='time'>"+d.date+"<br>"+(d.hour+1)+":00"+"</span>"+"<br>"+"<br>"+"<span id='tweet'>"+d.text +"</span>"+ "<br>"+"<br>"+"<br>"+"<br>"
})
.style("opacity",0.5)
.transition().duration(200)
.style("opacity",1.0);
// updateTip.exit().remove();
});
}
body{
font-family: monospace;
font-size: 9px;
font-weight: 200;
}
.click{
position: absolute;
width:80%;
left:10%;
top:20%;
z-index: 10;
padding: 20px;
box-sizing: border-box;
}
button{
border-color:black;
border-radius: 3px;
background-color: rgba(225,225,225,.3);
color:white;
font-family: monospace;
}
button:active{
background-color: rgba(225,225,225,.7);
}
.plot{
border: 1px solid black;
height:60vh;
width:80%;
top:20%;
left:10%;
margin:0;
position:absolute;
background-color:black;
}
.bar{
fill:white;
}
.bar:hover{
opacity:.5;
}
.domain{
visibility: hidden;
}
.tick line{
visibility: hidden;
}
text{
fill:white;
}
.tooltip{
height: 70%;
width:20%;
position: absolute;
background-color:rgba(225,225,225,.15);
border-radius: 5px;
right:20px;
top:20px;
overflow: scroll;
padding-top: 20px;
box-sizing: border-box;
}
/*.opacity-footer{
height:5%;
width:16%;
position:fixed;
border-radius: inherit;
z-index: 20;
background: linear-gradient(to bottom, rgba(225,225,225,.0) , rgba(225,225,225,.2));
}*/
.content{
display: inline-block;
width:80%;
margin-left: 10%;
right:0;
color:white;
}
#time{
font-size: 11px;
opacity: .5;
}
[{"date":"2016-11-27T08:00:00.000Z","count":1,"values":[{"id":803099827798241300,"created_at":"Mon Nov 28 04:54:54 +0000 2016","date":"November 27, 2016","hour":20,"text":"RT @hellocojo: okay so we just got in an accident and everyone is okay. it's not funny but i'm in the backseat and https://t.co/l0HWLC1swk"}]},{"date":"2016-11-26T08:00:00.000Z","count":1,"values":[{"id":802718754413092900,"created_at":"Sun Nov 27 03:40:39 +0000 2016","date":"November 26, 2016","hour":19,"text":"RT @lexsIoan: happy thanksgiving america https://t.co/JECjAJTan6"}]},{"date":"2016-11-22T08:00:00.000Z","count":1,"values":[{"id":801172874694369300,"created_at":"Tue Nov 22 21:17:53 +0000 2016","date":"November 22, 2016","hour":13,"text":"RT @TowsonHorse: is there a Black Friday deal for college tuition or is that not a thing"}]},{"date":"2016-11-21T08:00:00.000Z","count":1,"values":[{"id":800872912878182400,"created_at":"Tue Nov 22 01:25:56 +0000 2016","date":"November 21, 2016","hour":17,"text":"RT @KardashianReact: when the only person you talk to is busy https://t.co/YKsTOjmYjX"}]},{"date":"2016-11-19T08:00:00.000Z","count":1,"values":[{"id":800171036096561200,"created_at":"Sun Nov 20 02:56:56 +0000 2016","date":"November 19, 2016","hour":18,"text":"RT @Raine4ver: Just gonna leave this here https://t.co/6exDtMIMrF"}]},{"date":"2016-11-14T08:00:00.000Z","count":1,"values":[{"id":798383141433942000,"created_at":"Tue Nov 15 04:32:28 +0000 2016","date":"November 14, 2016","hour":20,"text":"RT @ImVarTho: Love seeing my artwork on phones!!! Bless 🙏🏽 https://t.co/xUA9MDaX7W"}]},{"date":"2016-11-06T07:00:00.000Z","count":1,"values":[{"id":795329924127199200,"created_at":"Sun Nov 06 18:20:05 +0000 2016","date":"November 06, 2016","hour":10,"text":"RT @J4CKMULL: this girl got bullied over her skin color, so her mom decided to do a self love exercise &amp; it's the best thing ever https://t…"}]},{"date":"2016-11-03T07:00:00.000Z","count":2,"values":[{"id":794347863484563500,"created_at":"Fri Nov 04 01:17:43 +0000 2016","date":"November 03, 2016","hour":18,"text":"RT @KardashianReact: Shia Labeouf always dresses like he's always running late for a 8 am class https://t.co/ykTrX0olWK"},{"id":794347570252353500,"created_at":"Fri Nov 04 01:16:33 +0000 2016","date":"November 03, 2016","hour":18,"text":"RT @ImVarTho: Go check out @L_Bell26 new song \"Rappin Athlete\" #UntilThePostInterview https://t.co/mIVDi3RopV"}]},{"date":"2016-11-01T07:00:00.000Z","count":1,"values":[{"id":793568525642141700,"created_at":"Tue Nov 01 21:40:54 +0000 2016","date":"November 01, 2016","hour":14,"text":"RT @girlposts: \"Why couldn't I just be Elsa\" https://t.co/xq7CV7HGEF"}]},{"date":"2016-10-30T07:00:00.000Z","count":1,"values":[{"id":792903046011367400,"created_at":"Mon Oct 31 01:36:32 +0000 2016","date":"October 30, 2016","hour":18,"text":"RT @KardashianReact: Vanessa Hudgens and Austin Butler are definition of adorable https://t.co/gFB9W46Wvp"}]},{"date":"2016-10-23T07:00:00.000Z","count":1,"values":[{"id":790304195324747800,"created_at":"Sun Oct 23 21:29:37 +0000 2016","date":"October 23, 2016","hour":14,"text":"RT @sophadenise: It's not your job to worry about the things you can't control, give it to God."}]},{"date":"2016-10-22T07:00:00.000Z","count":5,"values":[{"id":789749624919777300,"created_at":"Sat Oct 22 08:45:58 +0000 2016","date":"October 22, 2016","hour":1,"text":"RT @segalwolk: When u wake up for class and u gotta think about the attendance policy and how many classes u missed already https://t.co/na…"},{"id":789748652877111300,"created_at":"Sat Oct 22 08:42:06 +0000 2016","date":"October 22, 2016","hour":1,"text":"You're gonna hit me up at 4 in the morning for this ? 😒 now I can't go back to sleep"},{"id":789746118452056000,"created_at":"Sat Oct 22 08:32:02 +0000 2016","date":"October 22, 2016","hour":1,"text":"RT @willis_cj: I cry every time bruh.😂 https://t.co/ptJ97gCVXc"},{"id":789744945338855400,"created_at":"Sat Oct 22 08:27:22 +0000 2016","date":"October 22, 2016","hour":1,"text":"RT @CornBossUp: I can legit do this ALL DAY with the right person 😩😭 https://t.co/f2out25WfC"},{"id":789742953518342100,"created_at":"Sat Oct 22 08:19:27 +0000 2016","date":"October 22, 2016","hour":1,"text":"RT @WORLDSTARC0MEDY: \"You get this shit, cause I'm lost?\" https://t.co/YUH1ygdOKN"}]},{"date":"2016-10-20T07:00:00.000Z","count":2,"values":[{"id":789304587081490400,"created_at":"Fri Oct 21 03:17:32 +0000 2016","date":"October 20, 2016","hour":20,"text":"RT @bombblackgirlss: the cast of Martin attending Tommy's funeral. RIP Tommy Ford you will truly be missed https://t.co/l13KdvLiJQ"},{"id":789234827216162800,"created_at":"Thu Oct 20 22:40:20 +0000 2016","date":"October 20, 2016","hour":15,"text":"Its always an argument 🙄"}]},{"date":"2016-10-17T07:00:00.000Z","count":1,"values":[{"id":788228372966977500,"created_at":"Tue Oct 18 04:01:03 +0000 2016","date":"October 17, 2016","hour":21,"text":"RT @asia_mae_: anytime i lay down I instantly fall sleep 👵🏽 #ImOld"}]},{"date":"2016-10-16T07:00:00.000Z","count":1,"values":[{"id":787782171498995700,"created_at":"Sun Oct 16 22:28:00 +0000 2016","date":"October 16, 2016","hour":15,"text":"RT @FreddyAmazin: Ellen needs to chill lmao 😭 https://t.co/TpB3kLZQZ8"}]},{"date":"2016-10-14T07:00:00.000Z","count":1,"values":[{"id":787137458211131400,"created_at":"Sat Oct 15 03:46:09 +0000 2016","date":"October 14, 2016","hour":20,"text":"RT @KardashianReact: she snapchatted them building a chandelier together THIS IS SO FUNNY https://t.co/usMWdpof1c"}]},{"date":"2016-09-16T07:00:00.000Z","count":1,"values":[{"id":776964987873030100,"created_at":"Sat Sep 17 02:04:23 +0000 2016","date":"September 16, 2016","hour":19}]},{"date":"2016-08-28T07:00:00.000Z","count":4,"values":[{"id":770049092680556500,"created_at":"Mon Aug 29 00:03:05 +0000 2016","date":"August 28, 2016","hour":17},{"id":770049056332738600,"created_at":"Mon Aug 29 00:02:56 +0000 2016","date":"August 28, 2016","hour":17},{"id":770048160907587600,"created_at":"Sun Aug 28 23:59:23 +0000 2016","date":"August 28, 2016","hour":16},{"id":770048666988113900,"created_at":"Mon Aug 29 00:01:23 +0000 2016","date":"August 28, 2016","hour":17}]},{"date":"2016-09-03T07:00:00.000Z","count":3,"values":[{"id":772263985584504800,"created_at":"Sun Sep 04 02:44:16 +0000 2016","date":"September 03, 2016","hour":19},{"id":772265835536658400,"created_at":"Sun Sep 04 02:51:37 +0000 2016","date":"September 03, 2016","hour":19},{"id":772260071141216300,"created_at":"Sun Sep 04 02:28:43 +0000 2016","date":"September 03, 2016","hour":19}]},{"date":"2016-08-18T07:00:00.000Z","count":1,"values":[{"id":766424691812819000,"created_at":"Fri Aug 19 00:01:00 +0000 2016","date":"August 18, 2016","hour":17}]},{"date":"2016-08-20T07:00:00.000Z","count":1,"values":[{"id":767087945350320100,"created_at":"Sat Aug 20 19:56:32 +0000 2016","date":"August 20, 2016","hour":12}]},{"date":"2016-08-02T07:00:00.000Z","count":1,"values":[{"id":760605549352194000,"created_at":"Tue Aug 02 22:37:48 +0000 2016","date":"August 02, 2016","hour":15}]},{"date":"2016-10-03T07:00:00.000Z","count":1,"values":[{"id":783073015151988700,"created_at":"Mon Oct 03 22:35:30 +0000 2016","date":"October 03, 2016","hour":15,"text":"RT @KardashianReact: It's October 3rd https://t.co/p6h4Bbpe88"}]},{"date":"2016-09-02T07:00:00.000Z","count":2,"values":[{"id":771835423689543700,"created_at":"Fri Sep 02 22:21:19 +0000 2016","date":"September 02, 2016","hour":15},{"id":771835325484195800,"created_at":"Fri Sep 02 22:20:56 +0000 2016","date":"September 02, 2016","hour":15}]},{"date":"2016-10-04T07:00:00.000Z","count":2,"values":[{"id":783474993472548900,"created_at":"Wed Oct 05 01:12:49 +0000 2016","date":"October 04, 2016","hour":18,"text":"RT @KardashianReact: Makes me happy 😍 https://t.co/trjr4FbSX3"},{"id":783312036465782800,"created_at":"Tue Oct 04 14:25:17 +0000 2016","date":"October 04, 2016","hour":7,"text":"RT @KardashianReact: bitch: \"who the fuck are you talking to?\" \n\nme: https://t.co/cWfnmU9RCm"}]},{"date":"2016-08-26T07:00:00.000Z","count":2,"values":[{"id":769333286757883900,"created_at":"Sat Aug 27 00:38:43 +0000 2016","date":"August 26, 2016","hour":17},{"id":769359839319494700,"created_at":"Sat Aug 27 02:24:14 +0000 2016","date":"August 26, 2016","hour":19}]},{"date":"2016-08-31T07:00:00.000Z","count":1,"values":[{"id":771169120616194000,"created_at":"Thu Sep 01 02:13:40 +0000 2016","date":"August 31, 2016","hour":19}]},{"date":"2016-09-12T07:00:00.000Z","count":1,"values":[{"id":775346414306136000,"created_at":"Mon Sep 12 14:52:45 +0000 2016","date":"September 12, 2016","hour":7}]},{"date":"2016-08-14T07:00:00.000Z","count":2,"values":[{"id":764995994547130400,"created_at":"Mon Aug 15 01:23:52 +0000 2016","date":"August 14, 2016","hour":18},{"id":764995858223865900,"created_at":"Mon Aug 15 01:23:20 +0000 2016","date":"August 14, 2016","hour":18}]},{"date":"2016-08-13T07:00:00.000Z","count":2,"values":[{"id":764516679867043800,"created_at":"Sat Aug 13 17:39:15 +0000 2016","date":"August 13, 2016","hour":10},{"id":764685993827901400,"created_at":"Sun Aug 14 04:52:02 +0000 2016","date":"August 13, 2016","hour":21}]},{"date":"2016-09-22T07:00:00.000Z","count":1,"values":[{"id":779173677808123900,"created_at":"Fri Sep 23 04:20:55 +0000 2016","date":"September 22, 2016","hour":21,"text":"RT @jasonsproblem: When ur momma died from Alzheimer's, your sister died in plane crash &amp; husband in a car accident but you still alive htt…"}]},{"date":"2016-08-01T07:00:00.000Z","count":1,"values":[{"id":760261347233833000,"created_at":"Mon Aug 01 23:50:04 +0000 2016","date":"August 01, 2016","hour":16}]},{"date":"2016-09-01T07:00:00.000Z","count":1,"values":[{"id":771543884518142000,"created_at":"Fri Sep 02 03:02:51 +0000 2016","date":"September 01, 2016","hour":20}]},{"date":"2016-08-08T07:00:00.000Z","count":2,"values":[{"id":762862905314250800,"created_at":"Tue Aug 09 04:07:44 +0000 2016","date":"August 08, 2016","hour":21},{"id":762862564485193700,"created_at":"Tue Aug 09 04:06:23 +0000 2016","date":"August 08, 2016","hour":21}]},{"date":"2016-08-22T07:00:00.000Z","count":1,"values":[{"id":767843754648735700,"created_at":"Mon Aug 22 21:59:51 +0000 2016","date":"August 22, 2016","hour":14}]},{"date":"2016-09-17T07:00:00.000Z","count":1,"values":[{"id":777307797184589800,"created_at":"Sun Sep 18 00:46:35 +0000 2016","date":"September 17, 2016","hour":17}]},{"date":"2016-08-09T07:00:00.000Z","count":1,"values":[{"id":763197952768618500,"created_at":"Wed Aug 10 02:19:06 +0000 2016","date":"August 09, 2016","hour":19}]},{"date":"2016-09-06T07:00:00.000Z","count":2,"values":[{"id":773350383263617000,"created_at":"Wed Sep 07 02:41:14 +0000 2016","date":"September 06, 2016","hour":19},{"id":773355690811416600,"created_at":"Wed Sep 07 03:02:19 +0000 2016","date":"September 06, 2016","hour":20}]},{"date":"2016-09-08T07:00:00.000Z","count":3,"values":[{"id":773987400980856800,"created_at":"Thu Sep 08 20:52:31 +0000 2016","date":"September 08, 2016","hour":13},{"id":774033013139247100,"created_at":"Thu Sep 08 23:53:45 +0000 2016","date":"September 08, 2016","hour":16},{"id":774032896852127700,"created_at":"Thu Sep 08 23:53:18 +0000 2016","date":"September 08, 2016","hour":16}]},{"date":"2016-10-06T07:00:00.000Z","count":1,"values":[{"id":784240663516684300,"created_at":"Fri Oct 07 03:55:19 +0000 2016","date":"October 06, 2016","hour":20,"text":"RT @ImVarTho: Hope everyone in Florida is able to stay safe."}]},{"date":"2016-09-20T07:00:00.000Z","count":2,"values":[{"id":778243422469648400,"created_at":"Tue Sep 20 14:44:25 +0000 2016","date":"September 20, 2016","hour":7,"text":"RT @NcredibleNCFan: #FANPICS: @NickCannon at #TowsonUniversity #WildNOnTour #WildnOut #NcredibleGang https://t.co/Wi4Yq5tlMW"},{"id":778244033625854000,"created_at":"Tue Sep 20 14:46:51 +0000 2016","date":"September 20, 2016","hour":7,"text":"RT @AnimalPlizanet: When you know bae a good woman https://t.co/QAQtKmwtTk"}]},{"date":"2016-09-25T07:00:00.000Z","count":2,"values":[{"id":780210386427576300,"created_at":"Mon Sep 26 01:00:26 +0000 2016","date":"September 25, 2016","hour":18,"text":"RT @venturaaa: Everyone is getting engaged 😍😭 I love it!!"},{"id":780210442778140700,"created_at":"Mon Sep 26 01:00:39 +0000 2016","date":"September 25, 2016","hour":18,"text":"RT @ImVarTho: Man... I owe the @Eagles and @jmattjmattjmatt the biggest thank you in the world!!!!! #MyFiancé https://t.co/eFyArVuqTr"}]},{"date":"2016-08-07T07:00:00.000Z","count":1,"values":[{"id":762410886317215700,"created_at":"Sun Aug 07 22:11:34 +0000 2016","date":"August 07, 2016","hour":15}]},{"date":"2016-08-12T07:00:00.000Z","count":1,"values":[{"id":764284845409337300,"created_at":"Sat Aug 13 02:18:01 +0000 2016","date":"August 12, 2016","hour":19}]},{"date":"2016-08-10T07:00:00.000Z","count":1,"values":[{"id":763442466821279700,"created_at":"Wed Aug 10 18:30:42 +0000 2016","date":"August 10, 2016","hour":11}]}]
[{"date":"2017-02-21T08:00:00.000Z","count":7,"values":[{"id":834286765246644200,"created_at":"Wed Feb 22 06:20:39 +0000 2017","date":"February 21, 2017","hour":22,"text":"RT @AnnCoulter: Illegal immigrant Dreamer arrested for rape of a THREE YEAR OLD CHILD in AZ - https://t.co/27LZOHNs65 #DeportDreamers"},{"id":834285995113709600,"created_at":"Wed Feb 22 06:17:36 +0000 2017","date":"February 21, 2017","hour":22,"text":"RT @gatewaypundit: Still crazy after all these years... @SunsaraTaylor #GetHelp https://t.co/hsU0b2F8cW"},{"id":834115573348974600,"created_at":"Tue Feb 21 19:00:24 +0000 2017","date":"February 21, 2017","hour":11,"text":"RT @RealJamesWoods: Christians are genocide victims and should get priority in refugee order https://t.co/6qIigw7kSM"},{"id":834114454107385900,"created_at":"Tue Feb 21 18:55:57 +0000 2017","date":"February 21, 2017","hour":10,"text":"RT @SandraHartle: #BlackHistoryMonth did U know @potus Trump saved the Harlem Hoops program for young minorities? Didn't think he was raci…"},{"id":834113122357096400,"created_at":"Tue Feb 21 18:50:40 +0000 2017","date":"February 21, 2017","hour":10,"text":"RT @chuckwoolery: You need to listen to this. Then ask yourself WHY? https://t.co/9rMLpsgBld"},{"id":834109012367011800,"created_at":"Tue Feb 21 18:34:20 +0000 2017","date":"February 21, 2017","hour":10,"text":"RT @SandraTXAS: Last Night in Sweden &amp; every night the Sweden incident:covering up migrant rape \n\n https://t.co/8YErV0arut\n\n#immigration\n#M…"},{"id":834108088055713800,"created_at":"Tue Feb 21 18:30:39 +0000 2017","date":"February 21, 2017","hour":10,"text":"RT @charliekirk11: We just got word that our @TPUSA chapter at @SantaClaraUniv was DENIED AGAIN! \n\nThey will soon regret this decision! Tim…"}]},{"date":"2017-02-19T08:00:00.000Z","count":1,"values":[{"id":833547522144616400,"created_at":"Mon Feb 20 05:23:10 +0000 2017","date":"February 19, 2017","hour":21,"text":"RT @daily_squid: Is it just me or does everyone have one Beyoncé eyebrow and one Jay-Z eyebrow? #eyebrows #Cantgetitright"}]},{"date":"2017-02-17T08:00:00.000Z","count":1,"values":[{"id":832662998158176300,"created_at":"Fri Feb 17 18:48:23 +0000 2017","date":"February 17, 2017","hour":10,"text":"RT @GOPLeader: Tomorrow, we’ll vote to overturn Obama’s #TitleX abortion funding rule. https://t.co/rLxAVjaq5C"}]},{"date":"2017-02-15T08:00:00.000Z","count":2,"values":[{"id":831996666001621000,"created_at":"Wed Feb 15 22:40:37 +0000 2017","date":"February 15, 2017","hour":14,"text":"@marthachrs love it!!!"},{"id":831994636960948200,"created_at":"Wed Feb 15 22:32:33 +0000 2017","date":"February 15, 2017","hour":14,"text":"RT @FoxNews: .@POTUS: \"We will never forget what the Jewish people have endured.\" https://t.co/AXVkqjFNDS"}]},{"date":"2017-02-14T08:00:00.000Z","count":3,"values":[{"id":831754872433344500,"created_at":"Wed Feb 15 06:39:49 +0000 2017","date":"February 14, 2017","hour":22,"text":"@FoxNews @seanhannity @POTUS \n Yes! They are the worst losers ever! And their behavior will continue and they will continue to lose."},{"id":831588721405329400,"created_at":"Tue Feb 14 19:39:36 +0000 2017","date":"February 14, 2017","hour":11,"text":"RT @mitchellvii: Liberals prove that unless you are a Liberal, you can't be gay, black, Hispanic or a woman. #Liberals are the literal defi…"},{"id":831587790940958700,"created_at":"Tue Feb 14 19:35:54 +0000 2017","date":"February 14, 2017","hour":11,"text":"RT @V_of_Europe: Korea Warns Against Visiting Paris Migrant Suburbs After Men Loot, Try to Set Fire to Coach of Tourists. https://t.co/iUxu…"}]},{"date":"2017-02-13T08:00:00.000Z","count":5,"values":[{"id":831335087748874200,"created_at":"Tue Feb 14 02:51:45 +0000 2017","date":"February 13, 2017","hour":18,"text":"RT @FoxNews: Singer Joy Villa is facing backlash for wearing a Trump dress to the #Grammys, but her music sales have skyrocketed. https://t…"},{"id":831332562618441700,"created_at":"Tue Feb 14 02:41:42 +0000 2017","date":"February 13, 2017","hour":18,"text":"RT @THEHermanCain: Angela Merkel to start paying refugees to leave Germany voluntarily https://t.co/S152qtzal3 https://t.co/o5oZrTMPWy"},{"id":831329275332718600,"created_at":"Tue Feb 14 02:28:39 +0000 2017","date":"February 13, 2017","hour":18,"text":"So true! https://t.co/uXfieWI4ax"},{"id":831190299506569200,"created_at":"Mon Feb 13 17:16:24 +0000 2017","date":"February 13, 2017","hour":9,"text":"RT @thehill: Singer wears \"Make America Great Again\" dress at #Grammys https://t.co/aeKf5IfTHQ https://t.co/oZI6jPTGu3"},{"id":831188553568809000,"created_at":"Mon Feb 13 17:09:28 +0000 2017","date":"February 13, 2017","hour":9,"text":"RT @V_of_Europe: Muslims shout \"Allah Akbar\" during large-scale riots in Paris yesterday. https://t.co/kNMinhmbYy"}]},{"date":"2017-02-12T08:00:00.000Z","count":1,"values":[{"id":830993638616342500,"created_at":"Mon Feb 13 04:14:57 +0000 2017","date":"February 12, 2017","hour":20,"text":"#chancetherapper just killed it!!!! Yesssssssssss #GrammyAwards"}]},{"date":"2017-02-10T08:00:00.000Z","count":7,"values":[{"id":830279905707425800,"created_at":"Sat Feb 11 04:58:50 +0000 2017","date":"February 10, 2017","hour":20,"text":"@FoxNews None...#howboutthat"},{"id":830277261597237200,"created_at":"Sat Feb 11 04:48:19 +0000 2017","date":"February 10, 2017","hour":20,"text":"RT @FoxNews: .@CLewandowski_: This election was so clear...The Democrats' ideas have been completely decimated, the American people have re…"},{"id":830275327276494800,"created_at":"Sat Feb 11 04:40:38 +0000 2017","date":"February 10, 2017","hour":20,"text":"@foxandfriends @FoxNews Wait, she FELT like a criminal? Isn't she a criminal? Didn't she commit a felony? Isn't that why she is not welcome?"},{"id":830274108780838900,"created_at":"Sat Feb 11 04:35:47 +0000 2017","date":"February 10, 2017","hour":20,"text":"RT @PrisonPlanet: So when's the \"women's march\" on the Indonesian embassy or are y'all too busy being upset at Trump for words? https://t.c…"},{"id":830221323641172000,"created_at":"Sat Feb 11 01:06:02 +0000 2017","date":"February 10, 2017","hour":17,"text":"@realDonaldTrump is doing things we elected him to do.We want a secure nation.We want school choice.We want crimals removed! @oreillyfactor"},{"id":830186368303321100,"created_at":"Fri Feb 10 22:47:08 +0000 2017","date":"February 10, 2017","hour":14,"text":"RT @realDonaldTrump: SEE YOU IN COURT, THE SECURITY OF OUR NATION IS AT STAKE!"},{"id":830185319404290000,"created_at":"Fri Feb 10 22:42:58 +0000 2017","date":"February 10, 2017","hour":14,"text":"RT @SpeakerRyan: For the first time in many years, the Congress and the Presidency are united in defense of the unborn. https://t.co/NN1iIQ…"}]},{"date":"2017-02-09T08:00:00.000Z","count":3,"values":[{"id":829888890844676100,"created_at":"Fri Feb 10 03:05:04 +0000 2017","date":"February 09, 2017","hour":19,"text":"https://t.co/htlBSjoOKi"},{"id":829717575567290400,"created_at":"Thu Feb 09 15:44:20 +0000 2017","date":"February 09, 2017","hour":7,"text":"Linda could not answer the question about hate of women or gays! Does she support it? #Americasnewsroom @FoxNews"},{"id":829716762371436500,"created_at":"Thu Feb 09 15:41:06 +0000 2017","date":"February 09, 2017","hour":7,"text":"RT @SheriffClarke: Black kids use vouchers &amp; charters schools as a lifeline out of poverty. The Democrat Party will have none of that. http…"}]},{"date":"2017-02-07T08:00:00.000Z","count":2,"values":[{"id":829084506585980900,"created_at":"Tue Feb 07 21:48:44 +0000 2017","date":"February 07, 2017","hour":13,"text":"@Dexter_A_Taylor Oh gosh.....maybe you are pregnant????"},{"id":829082698471845900,"created_at":"Tue Feb 07 21:41:33 +0000 2017","date":"February 07, 2017","hour":13,"text":"RT @charliekirk11: Hey @SenatorDurbin I saw you protesting #DeVos today\n\nYou sent your 3 kids to private schools. Why prevent others from h…"}]},{"date":"2017-02-05T08:00:00.000Z","count":4,"values":[{"id":828442177181196300,"created_at":"Mon Feb 06 03:16:21 +0000 2017","date":"February 05, 2017","hour":19,"text":"Ummmm, is it first time in history #superbowl overtime????"},{"id":828440755953872900,"created_at":"Mon Feb 06 03:10:42 +0000 2017","date":"February 05, 2017","hour":19,"text":"Well, this whole thing was unexpected #SuperBowl"},{"id":828420798843125800,"created_at":"Mon Feb 06 01:51:24 +0000 2017","date":"February 05, 2017","hour":17,"text":"#ladygaga Killed it!!! #SuperBowl"},{"id":828386271756169200,"created_at":"Sun Feb 05 23:34:12 +0000 2017","date":"February 05, 2017","hour":15,"text":"Best coin toss I have ever seen!!!! #SuperBowl"}]},{"date":"2017-02-03T08:00:00.000Z","count":4,"values":[{"id":827686513852964900,"created_at":"Sat Feb 04 01:13:37 +0000 2017","date":"February 03, 2017","hour":17,"text":"Y'all if you love coffee and the USA then here ya go! You won't be sorry!!!!\n\nhttps://t.co/BgPEVckRhN"},{"id":827684715914260500,"created_at":"Sat Feb 04 01:06:28 +0000 2017","date":"February 03, 2017","hour":17,"text":"@FoxNews @RealDrGina They are wrong!"},{"id":827682665411260400,"created_at":"Sat Feb 04 00:58:19 +0000 2017","date":"February 03, 2017","hour":16,"text":"I enjoy @UberFacts but if they keep it up with the political bull I'm gonna have to #deleteuberfacts because it is starting to piss me off!"},{"id":827678897407922200,"created_at":"Sat Feb 04 00:43:21 +0000 2017","date":"February 03, 2017","hour":16,"text":"RT @foxandfriends: .@BurgessOwens: These protesters are atheists, Marxists, and socialists who are against our Judeo-Christian values and t…"}]},{"date":"2017-02-01T08:00:00.000Z","count":6,"values":[{"id":826998958006403100,"created_at":"Thu Feb 02 03:41:31 +0000 2017","date":"February 01, 2017","hour":19,"text":"RT @foxandfriends: Lord, protect Judge Gorsuch from the pack of rabid, liberal jackals (via @toddstarnes) https://t.co/k2oEu8eWuj"},{"id":826998656196829200,"created_at":"Thu Feb 02 03:40:19 +0000 2017","date":"February 01, 2017","hour":19,"text":"RT @JNTHN_LCKWD: Black Lives Matter activist yelling to voice support for \"killing people,” “killing the White House.” https://t.co/7VMCkr4…"},{"id":826972204814463000,"created_at":"Thu Feb 02 01:55:12 +0000 2017","date":"February 01, 2017","hour":17,"text":"RT @theblaze: Texas rep under police protection after numerous death threats from liberals over pro-life bill – TheBlaze - https://t.co/rHs…"},{"id":826851214990118900,"created_at":"Wed Feb 01 17:54:26 +0000 2017","date":"February 01, 2017","hour":9,"text":"#TomBrady Thank You for focusing on Football. It does not and should not matter who you voted for. Don't let the haters pull you in!"},{"id":826833450502148100,"created_at":"Wed Feb 01 16:43:51 +0000 2017","date":"February 01, 2017","hour":8,"text":"RT @FoxNews: .@JaySekulow: \"I think the authors or Roe v. Wade recognize it was bad law...This was a decision that should have been left to…"},{"id":826831200861950000,"created_at":"Wed Feb 01 16:34:54 +0000 2017","date":"February 01, 2017","hour":8,"text":"Great Idea! https://t.co/SrEOUxlS5r"}]},{"date":"2017-01-31T08:00:00.000Z","count":5,"values":[{"id":826514638242209800,"created_at":"Tue Jan 31 19:37:00 +0000 2017","date":"January 31, 2017","hour":11,"text":"RT @RameshPonnuru: \"I am not aware of any instance\" of DoJ refusing \"to defend a presumptively lawful executive action on this basis.\" http…"},{"id":826512961283960800,"created_at":"Tue Jan 31 19:30:20 +0000 2017","date":"January 31, 2017","hour":11,"text":"RT @ThomasSowell: “It is usually futile to try to talk facts and analysis to people who are enjoying a sense of moral superiority in their…"},{"id":826512783705567200,"created_at":"Tue Jan 31 19:29:38 +0000 2017","date":"January 31, 2017","hour":11,"text":"RT @chuckwoolery: No matter how many facts we throw their way, some people just don't wanna hear it. https://t.co/UN8qmo2mTj"},{"id":826511932236689400,"created_at":"Tue Jan 31 19:26:15 +0000 2017","date":"January 31, 2017","hour":11,"text":"RT @PrisonPlanet: Schumer 2015 vs Schumer 2017 https://t.co/RH9KbcF6Zt"},{"id":826510599429451800,"created_at":"Tue Jan 31 19:20:57 +0000 2017","date":"January 31, 2017","hour":11,"text":"It's kind of refreshing to have a #POTUS with some balls. A man who is doing what he said he would, what an idea! @TomiLahren @AnnCoulter"}]},{"date":"2017-01-30T08:00:00.000Z","count":2,"values":[{"id":826137736629338100,"created_at":"Mon Jan 30 18:39:19 +0000 2017","date":"January 30, 2017","hour":10,"text":"RT @Dexter_A_Taylor: Everything Trump promised he'd do he's doing. Can't do nothing but respect a man who keeps his word."},{"id":826137016190566400,"created_at":"Mon Jan 30 18:36:28 +0000 2017","date":"January 30, 2017","hour":10,"text":"I suffer from insufficient outrage. https://t.co/vSayyhXaBn"}]},{"date":"2017-01-28T08:00:00.000Z","count":1,"values":[{"id":825256320370692100,"created_at":"Sat Jan 28 08:16:53 +0000 2017","date":"January 28, 2017","hour":0,"text":"@FoxNews this lady should serve so much time in jail that she never sees the sun again. Or...just bring her to visit me."}]},{"date":"2017-01-27T08:00:00.000Z","count":8,"values":[{"id":825251607663231000,"created_at":"Sat Jan 28 07:58:10 +0000 2017","date":"January 27, 2017","hour":23,"text":"RT @LifeNewsHQ: President Donald Trump Slams Mainstream Media for Not Covering March for Life https://t.co/5BIr7tg68u https://t.co/tH3aY74p…"},{"id":825250479659692000,"created_at":"Sat Jan 28 07:53:41 +0000 2017","date":"January 27, 2017","hour":23,"text":"RT @FoxNews: Chili's Cancels Planned Parenthood Promotion After Complaints https://t.co/SdmU1lV4VX"},{"id":825248295018700800,"created_at":"Sat Jan 28 07:45:00 +0000 2017","date":"January 27, 2017","hour":23,"text":"RT @moriahdemartino: Pro-woman, pro-baby, pro-life.\n\n#marchforlife #whywemarch"},{"id":825247712543141900,"created_at":"Sat Jan 28 07:42:41 +0000 2017","date":"January 27, 2017","hour":23,"text":"RT @realDonaldTrump: .@VP Mike Pence will be speaking at today's #MarchForLife -- You have our full support! https://t.co/1jb53SEGV4"},{"id":825246829277278200,"created_at":"Sat Jan 28 07:39:11 +0000 2017","date":"January 27, 2017","hour":23,"text":"RT @KassyDillon: The crowds are still growing. #MarchForLife https://t.co/k1NDSfZnj9"},{"id":825246718782558200,"created_at":"Sat Jan 28 07:38:44 +0000 2017","date":"January 27, 2017","hour":23,"text":"RT @SenatorTimScott: Welcome to DC #MarchForLife!Every life is precious, and I am always amazed by your commitment to come hundreds of thou…"},{"id":825246638402846700,"created_at":"Sat Jan 28 07:38:25 +0000 2017","date":"January 27, 2017","hour":23,"text":"RT @SpeakerRyan: Today, as we #MarchforLife, it's a new dawn for the unborn. https://t.co/z81jJWzMMz https://t.co/90DT1DRnCz"},{"id":825066953995845600,"created_at":"Fri Jan 27 19:44:25 +0000 2017","date":"January 27, 2017","hour":11,"text":"RT @FoxNews: Rep. @MarshaBlackburn: Congress and the urgent need to protect infant lives https://t.co/xfwHoymRdn"}]},{"date":"2017-01-26T08:00:00.000Z","count":8,"values":[{"id":824732925438599200,"created_at":"Thu Jan 26 21:37:06 +0000 2017","date":"January 26, 2017","hour":13,"text":"Bahahha. Now this made me Lol!!! https://t.co/LAiL8AMSFu"},{"id":824668933546528800,"created_at":"Thu Jan 26 17:22:50 +0000 2017","date":"January 26, 2017","hour":9,"text":"RT @Flametrooper420: #BoycottChilis @ChilisSupport @Chilis As a black man Im asking why ur supporting an organization founded for@the purpo…"},{"id":824668814096945200,"created_at":"Thu Jan 26 17:22:21 +0000 2017","date":"January 26, 2017","hour":9,"text":"RT @MacDaddy611: My sons loved @Chilis but we'll NEVER go there again -\nPlenty of options at cos. that don't support killing innocent babie…"},{"id":824668785584042000,"created_at":"Thu Jan 26 17:22:14 +0000 2017","date":"January 26, 2017","hour":9,"text":"RT @hansauf: Chili's Restaurant supports a corrupt organization that sells baby parts. Pretty bold/stupid move on Chili's part.\n#BoycottChi…"},{"id":824668713282654200,"created_at":"Thu Jan 26 17:21:57 +0000 2017","date":"January 26, 2017","hour":9,"text":"RT @K1erry: Hey @Chilis My family will never step back into your restaurant again. Telling my friends too. I will take my money elsewhere #…"},{"id":824668033541173200,"created_at":"Thu Jan 26 17:19:15 +0000 2017","date":"January 26, 2017","hour":9,"text":"RT @SheriffClarke: People calling themselves \"pro choice\" are in denial about the horrors of abortion. It's inhumane, period. https://t.co/…"},{"id":824665851236384800,"created_at":"Thu Jan 26 17:10:35 +0000 2017","date":"January 26, 2017","hour":9,"text":"RT @FFL_of_America: Tomorrow, most of the media will suddenly quit their obsession with crowd size and ignore the many that march for life.…"},{"id":824664225310249000,"created_at":"Thu Jan 26 17:04:07 +0000 2017","date":"January 26, 2017","hour":9,"text":"Look what Chili's is doing. Let's not eat there. #boycottchilis https://t.co/rMwHChZkjm"}]},{"date":"2017-01-25T08:00:00.000Z","count":12,"values":[{"id":824500563756912600,"created_at":"Thu Jan 26 06:13:47 +0000 2017","date":"January 25, 2017","hour":22,"text":"RT @NeilWMcCabe: @PressSec said today that this is not a White House document.#fakenews\nhttps://t.co/Q75BhGiMhF"},{"id":824500046938968000,"created_at":"Thu Jan 26 06:11:44 +0000 2017","date":"January 25, 2017","hour":22,"text":"RT @kausmickey: 300 'Sanctuary Cities' blocked deportation of 17,000 illegal criminals https://t.co/qLvOvQa9J9 via @DCExaminer"},{"id":824496870722527200,"created_at":"Thu Jan 26 05:59:07 +0000 2017","date":"January 25, 2017","hour":21,"text":"RT @AnnCoulter: In 2008, 13-year old Aisha Ibrahim Duhulow was stoned to death for the “crime” of reporting that she had been raped."},{"id":824496862577262600,"created_at":"Thu Jan 26 05:59:05 +0000 2017","date":"January 25, 2017","hour":21,"text":"RT @AnnCoulter: In 2003, Heshu Yones had her throat slit by her father for dating outside their Muslim faith."},{"id":824325648248406000,"created_at":"Wed Jan 25 18:38:44 +0000 2017","date":"January 25, 2017","hour":10,"text":"RT @SpeakerRyan: Every parent should have the chance to choose a decent school for their child. https://t.co/X8bk1hETnq #SchoolChoice"},{"id":824322122751344600,"created_at":"Wed Jan 25 18:24:43 +0000 2017","date":"January 25, 2017","hour":10,"text":"Kerry O'Grady should be released from her duties! #yourefired Actions have Consequences!"},{"id":824320523916214300,"created_at":"Wed Jan 25 18:18:22 +0000 2017","date":"January 25, 2017","hour":10,"text":"If you insist on killing your child then I really don't want to pay for it. https://t.co/bmjESmy9qa"},{"id":824319399909789700,"created_at":"Wed Jan 25 18:13:54 +0000 2017","date":"January 25, 2017","hour":10,"text":"@chuckwoolery @dcexaminer This Lady should be fired &amp; everyone should know about it. Actions have consequences! It's time we rememeber that!"},{"id":824317340347203600,"created_at":"Wed Jan 25 18:05:43 +0000 2017","date":"January 25, 2017","hour":10,"text":"RT @RepMiaLove: Today I voted for H.R. 7, making the Hyde Amendment permanent and gov't-wide #NoTaxpayerFundedAbortions #WomensHealthNotAbo…"},{"id":824317201469542400,"created_at":"Wed Jan 25 18:05:10 +0000 2017","date":"January 25, 2017","hour":10,"text":"RT @FFL_of_America: Yes, I Am Equal. I’m Sorry You’re Offended By Us Women Who Lack A Victim Mindset. https://t.co/4tXzIbM0V6"},{"id":824317136545923100,"created_at":"Wed Jan 25 18:04:55 +0000 2017","date":"January 25, 2017","hour":10,"text":"RT @HouseJudiciary: 🚨✅ #BREAKING: The House just voted to permanently ban taxpayer funding for abortion. #prolife https://t.co/uZuS9sqzsT"},{"id":824317062864629800,"created_at":"Wed Jan 25 18:04:37 +0000 2017","date":"January 25, 2017","hour":10,"text":"RT @SeamusORegan: This was taken in Kabul, Afghanistan, 1972. I was there 34 years later. What I saw is unimaginable to these women. \n\nIt c…"}]},{"date":"2017-01-24T08:00:00.000Z","count":6,"values":[{"id":824046649873940500,"created_at":"Wed Jan 25 00:10:06 +0000 2017","date":"January 24, 2017","hour":16,"text":"RT @RepMiaLove: Standing up: #UnbornLivesMatter. #HydeAmendment #WomensHealthNotAbortion #AbortionIsNotHealthcare I believe in life, period…"},{"id":824043224562016300,"created_at":"Tue Jan 24 23:56:29 +0000 2017","date":"January 24, 2017","hour":15,"text":"RT @HouseJudiciary: Being voted on in the House today: #HR7 - No Taxpayer Funding for Abortion. Important legislation to make this ban perm…"},{"id":824026300276998100,"created_at":"Tue Jan 24 22:49:14 +0000 2017","date":"January 24, 2017","hour":14,"text":"@chuckwoolery @theblaze I can't wait to not watch her."},{"id":824024844081700900,"created_at":"Tue Jan 24 22:43:27 +0000 2017","date":"January 24, 2017","hour":14,"text":"RT @michellemalkin: The Atlantic has really, really degenerated. https://t.co/3RLKogBGIT"},{"id":823929296309915600,"created_at":"Tue Jan 24 16:23:46 +0000 2017","date":"January 24, 2017","hour":8,"text":"RT @larryelder: \"...74% of Californians want sanctuary cities ended; 65% of Hispanics, 70% of indies, 73% of Dems and 82% of GOP.\"\n\nhttps:/…"},{"id":823923197796110300,"created_at":"Tue Jan 24 15:59:32 +0000 2017","date":"January 24, 2017","hour":7,"text":"RT @JanMorganMedia: So, all you pink vagina hat idiots: \nDid you know the organizer of your event Linda Sarsour, was recently spotted... ht…"}]},{"date":"2017-01-23T08:00:00.000Z","count":1,"values":[{"id":823592432965189600,"created_at":"Mon Jan 23 18:05:12 +0000 2017","date":"January 23, 2017","hour":10,"text":"RT @antonia_okafor: The Women's March Banned This Pro-Life Group. Here is How They Got Revenge via @TheIJR @students4lifehq https://t.co/2r…"}]},{"date":"2017-01-22T08:00:00.000Z","count":6,"values":[{"id":823371322193539100,"created_at":"Mon Jan 23 03:26:35 +0000 2017","date":"January 22, 2017","hour":19,"text":"@cvaldary what she said made no sense whatsoever... but that's how they roll."},{"id":823238887803863000,"created_at":"Sun Jan 22 18:40:20 +0000 2017","date":"January 22, 2017","hour":10,"text":"RT @FoxNews: .@AlvedaCKing: \"If you push out the pro-life message, who's going to represent those little girls who are being aborted?\" http…"},{"id":823238081704788000,"created_at":"Sun Jan 22 18:37:08 +0000 2017","date":"January 22, 2017","hour":10,"text":"@FoxNews Get Well Soon!!!!"},{"id":823237499103408100,"created_at":"Sun Jan 22 18:34:49 +0000 2017","date":"January 22, 2017","hour":10,"text":"@FoxNews He will go. In 8 years when @mike_pence is elected POTUS. :)"},{"id":823236483758878700,"created_at":"Sun Jan 22 18:30:47 +0000 2017","date":"January 22, 2017","hour":10,"text":"RT @TheWorldsFrates: My uber driver couldn't have said it better: \"All the people, they come to complain?\" #WomensMarch"},{"id":823230476513067000,"created_at":"Sun Jan 22 18:06:55 +0000 2017","date":"January 22, 2017","hour":10,"text":"RT @dakota_moyer: Tried to start a @TPUSA chapter on my college campus 3 times... and 3 times I was denied.. but Liberal groups are ok."}]},{"date":"2017-01-21T08:00:00.000Z","count":13,"values":[{"id":823036824927043600,"created_at":"Sun Jan 22 05:17:25 +0000 2017","date":"January 21, 2017","hour":21,"text":"@WilliamRodgers That's just how they roll."},{"id":823035532993331200,"created_at":"Sun Jan 22 05:12:16 +0000 2017","date":"January 21, 2017","hour":21,"text":"RT @clairecat22: Based on the hate I received today it's obvious #WomensMarch doesn't include all women. Thankfully I have @FFL_of_America…"},{"id":823035062530744300,"created_at":"Sun Jan 22 05:10:24 +0000 2017","date":"January 21, 2017","hour":21,"text":"@cvaldary Good! Because I really like you and I a rich white person! :)"},{"id":823034265306857500,"created_at":"Sun Jan 22 05:07:14 +0000 2017","date":"January 21, 2017","hour":21,"text":"RT @joshuadun: all my life, whenever I get bummed, nervous, anxious or sad, I use comedy and music to get me through. these guys have helpe…"},{"id":823032874312040400,"created_at":"Sun Jan 22 05:01:43 +0000 2017","date":"January 21, 2017","hour":21,"text":"@TomiLahren bhahahaaa. This made me spit my drink out!!!"},{"id":823032532832751600,"created_at":"Sun Jan 22 05:00:21 +0000 2017","date":"January 21, 2017","hour":21,"text":"RT @TomiLahren: Get it right. #TeamTomi https://t.co/G5pIAUQb1j"},{"id":823031071918948400,"created_at":"Sun Jan 22 04:54:33 +0000 2017","date":"January 21, 2017","hour":20,"text":"@Dexter_A_Taylor I will be there....wait, I'm totally pro life, will I still be invited?"},{"id":823030632032964600,"created_at":"Sun Jan 22 04:52:48 +0000 2017","date":"January 21, 2017","hour":20,"text":"@TomiLahren nope."},{"id":823030544925655000,"created_at":"Sun Jan 22 04:52:27 +0000 2017","date":"January 21, 2017","hour":20,"text":"RT @AnnCoulter: Women marching to protest Trump policy of... uh his policy that... well they're protesting against Trumps position that uh.…"},{"id":823006956877213700,"created_at":"Sun Jan 22 03:18:43 +0000 2017","date":"January 21, 2017","hour":19,"text":"RT @laurenacooley: Things women should march about but the #WomensMarch ignores\n\n1. Murder of unborn\n2. Oppression of women in Middle East…"},{"id":823006561840808000,"created_at":"Sun Jan 22 03:17:09 +0000 2017","date":"January 21, 2017","hour":19,"text":"RT @FoxNews: Pro-Life Feminist Calls Out 'Specific Type of Diversity' for Exclusion from DC March\nhttps://t.co/rRmEDXo4GY"},{"id":823006034583318500,"created_at":"Sun Jan 22 03:15:04 +0000 2017","date":"January 21, 2017","hour":19,"text":"RT @MarkYoungTruth: Here's an idea, if the women's march in DC wants to help women than protest this! https://t.co/o8J3RdWU29"},{"id":823004862740832300,"created_at":"Sun Jan 22 03:10:24 +0000 2017","date":"January 21, 2017","hour":19,"text":"RT @DiamondandSilk: .@DiamondandSilk celebrates. @realDonaldTrump has been sworn in and he is now the 45th President of the United States.…"}]},{"date":"2017-01-20T08:00:00.000Z","count":5,"values":[{"id":822678268226793500,"created_at":"Sat Jan 21 05:32:38 +0000 2017","date":"January 20, 2017","hour":21,"text":"RT @CloydRivers: Y’all remember when Conservatives did this durin’ Obama’s Inauguration? Me neither. Merica. https://t.co/hK0R71o84o"},{"id":822675704320000000,"created_at":"Sat Jan 21 05:22:27 +0000 2017","date":"January 20, 2017","hour":21,"text":"@JimGaffigan @twentyonepilots three of my favorite peeps!!! https://t.co/ZGZM4hhJ0X"},{"id":822550540144021500,"created_at":"Fri Jan 20 21:05:05 +0000 2017","date":"January 20, 2017","hour":13,"text":"RT @PeteBlackburn: “DAMMIT BILL YOU SAID WE WERE GOING TO BRUNCH\" https://t.co/ueJSfDZaSV"},{"id":822512891052130300,"created_at":"Fri Jan 20 18:35:29 +0000 2017","date":"January 20, 2017","hour":10,"text":"@FoxNews is kinda pissing me off. I wonder if we could just watch the process happen without listening to your pie holes? @ShepNewsTeam"},{"id":822512240519745500,"created_at":"Fri Jan 20 18:32:54 +0000 2017","date":"January 20, 2017","hour":10,"text":"Did someone on @FoxNews just say Obama, as beloved as he is, by all of us....who is he talking about? Man, how easy we forget."}]},{"date":"2017-01-18T08:00:00.000Z","count":2,"values":[{"id":821778147440029700,"created_at":"Wed Jan 18 17:55:52 +0000 2017","date":"January 18, 2017","hour":9,"text":"RT @TCofTN: We are here at the Capitol, eagerly awaiting Gov. @BillHaslam. Follow us for live updates. #TNLeg https://t.co/m7KQrcDft2"},{"id":821776785113313300,"created_at":"Wed Jan 18 17:50:28 +0000 2017","date":"January 18, 2017","hour":9,"text":"RT @ClarkBeckham: \"Let no man pull you low enough to hate him\" -Martin Luther King"}]},{"date":"2017-01-17T08:00:00.000Z","count":10,"values":[{"id":821609655654907900,"created_at":"Wed Jan 18 06:46:21 +0000 2017","date":"January 17, 2017","hour":22,"text":"RT @benshapiro: From left to right:\n- Lectured Pence\n- Called Iraqi terrorists \"minutemen\"\n- Sexually abused sister\n- Celebrates her 2 abor…"},{"id":821606016647393300,"created_at":"Wed Jan 18 06:31:53 +0000 2017","date":"January 17, 2017","hour":22,"text":"RT @GovMikeHuckabee: 53 Dem Congress members refuse to attend Inaugural; they could also skip showing up in Congress-that wouldn't make any…"},{"id":821605205951320000,"created_at":"Wed Jan 18 06:28:40 +0000 2017","date":"January 17, 2017","hour":22,"text":"@FoxNews I feel a lot of eye rolls coming!"},{"id":821603913149349900,"created_at":"Wed Jan 18 06:23:32 +0000 2017","date":"January 17, 2017","hour":22,"text":"@FoxNews @seanhannity @realDonaldTrump @GOP @TheDemocrats AMEN!!!!"},{"id":821603462081290200,"created_at":"Wed Jan 18 06:21:44 +0000 2017","date":"January 17, 2017","hour":22,"text":"RT @FoxNews: .@SeanHannity: \"Some of you [Dems] need to get a grip on reality…It’s your failed progressive policies that have been proven t…"},{"id":821602334929285100,"created_at":"Wed Jan 18 06:17:15 +0000 2017","date":"January 17, 2017","hour":22,"text":"RT @FoxNews: Ben Collins: \"@TheDemocrats, that have been so concerned about hacking...just released a guy that gave one of the largest leak…"},{"id":821582219059806200,"created_at":"Wed Jan 18 04:57:19 +0000 2017","date":"January 17, 2017","hour":20,"text":"@FoxNews @TuckerCarlson @FoxNewsInsider Russia didn't create anything.Wikileaks didn't write emails.Comney isn't the criminal.Ur DemPartySux"},{"id":821580442340036600,"created_at":"Wed Jan 18 04:50:16 +0000 2017","date":"January 17, 2017","hour":20,"text":"@SheriffClarke @rcpvideo \"Mediocre Negroes\" what is WRONG with these people? Such is the party of tolerance and acceptance......JERKS!"},{"id":821579174280302600,"created_at":"Wed Jan 18 04:45:14 +0000 2017","date":"January 17, 2017","hour":20,"text":"@RealJamesWoods I think it's more like 100% off.....her rocker :)"},{"id":821416203696697300,"created_at":"Tue Jan 17 17:57:38 +0000 2017","date":"January 17, 2017","hour":9,"text":"What in the WORLD is wrong with people!!!! https://t.co/htubStRxs9"}]},{"date":"2017-01-16T08:00:00.000Z","count":6,"values":[{"id":821078082450767900,"created_at":"Mon Jan 16 19:34:04 +0000 2017","date":"January 16, 2017","hour":11,"text":"RT @TezlynFigaro: Interesting there r only 2 tweets about Martin Luther King III meeting at #TrumpTowers I guess everyone is not home yet f…"},{"id":821077923339837400,"created_at":"Mon Jan 16 19:33:26 +0000 2017","date":"January 16, 2017","hour":11,"text":"RT @TezlynFigaro: Martin Luther King son just entered Trump towers.I look forward 2 hearing his comments 🤔I wonder will people support him…"},{"id":821075096324468700,"created_at":"Mon Jan 16 19:22:12 +0000 2017","date":"January 16, 2017","hour":11,"text":"RT @foxandfriends: .@mike_pence: I'm so disappointed in Rep. Lewis https://t.co/pkLKjxrYm0"},{"id":821073071658377200,"created_at":"Mon Jan 16 19:14:09 +0000 2017","date":"January 16, 2017","hour":11,"text":"RT @DanMartin_cards: GA Tech Climatologist Resigns.\n\nShe's Tired Of Academic Activists Pushing \"Human Cause\" Climate Change Without Suffici…"},{"id":821069046338768900,"created_at":"Mon Jan 16 18:58:10 +0000 2017","date":"January 16, 2017","hour":10,"text":"RT @TezlynFigaro: I guess since this was so long ago @RevJJackson changed his mind about how wonderful he said @realDonaldTrump was https:/…"},{"id":821068196132294700,"created_at":"Mon Jan 16 18:54:47 +0000 2017","date":"January 16, 2017","hour":10,"text":"RT @Dexter_A_Taylor: 💪🏾💪🏾💪🏾 https://t.co/ncbllNTLk3"}]},{"date":"2017-01-14T08:00:00.000Z","count":2,"values":[{"id":820519532083159000,"created_at":"Sun Jan 15 06:34:35 +0000 2017","date":"January 14, 2017","hour":22,"text":"RT @youngblackcon: If you're calling #SteveHarvey a coon for seeing the upcoming PRESIDENT about helping BLACK PEOPLE.\n\nYou are the PROBLEM."},{"id":820518196688093200,"created_at":"Sun Jan 15 06:29:17 +0000 2017","date":"January 14, 2017","hour":22,"text":"RT @FoxNews: Removed for good. https://t.co/VA3tPQJPJB https://t.co/csyDnYQ9Jw"}]},{"date":"2017-01-13T08:00:00.000Z","count":5,"values":[{"id":820120088590352400,"created_at":"Sat Jan 14 04:07:20 +0000 2017","date":"January 13, 2017","hour":20,"text":"@GOPLeader Thank you!!!"},{"id":820118838599618600,"created_at":"Sat Jan 14 04:02:22 +0000 2017","date":"January 13, 2017","hour":20,"text":"@RepMikeBishop @SpeakerRyan @HouseGOP THANK YOU!!!"},{"id":820118679434231800,"created_at":"Sat Jan 14 04:01:44 +0000 2017","date":"January 13, 2017","hour":20,"text":"@FoxNews @michellemalkin so excited I found you! I love intelligence and class. So few and far between right now it seems!"},{"id":820005606895534100,"created_at":"Fri Jan 13 20:32:26 +0000 2017","date":"January 13, 2017","hour":12,"text":"@FoxNews @realDonaldTrump \n I sure hope so!"},{"id":819973583439020000,"created_at":"Fri Jan 13 18:25:11 +0000 2017","date":"January 13, 2017","hour":10,"text":"RT @MarkYoungTruth: I love, ❤️ it when the crazy left launches a boycott against an American business and their sales go up. When will they…"}]},{"date":"2017-01-12T08:00:00.000Z","count":1,"values":[{"id":819756542031495200,"created_at":"Fri Jan 13 04:02:44 +0000 2017","date":"January 12, 2017","hour":20,"text":"RT @FoxNews: .@DennisDMZ: “I don’t watch award shows anymore because I read too much politics during the day and want to escape from it at…"}]},{"date":"2017-01-11T08:00:00.000Z","count":1,"values":[{"id":819275129708572700,"created_at":"Wed Jan 11 20:09:46 +0000 2017","date":"January 11, 2017","hour":12,"text":"RT @FoxNews: Smith: \"After 20 years of knowing @SenatorSessions, I have not seen the slightest evidence of racism b/c it does not exist\" in…"}]},{"date":"2017-01-07T08:00:00.000Z","count":2,"values":[{"id":817993475119575000,"created_at":"Sun Jan 08 07:16:56 +0000 2017","date":"January 07, 2017","hour":23,"text":"RT @TomiLahren: Trump supporters: every nasty and hateful comment hurled at us just validates why they lost the election. Hate on, loving L…"},{"id":817841516647477200,"created_at":"Sat Jan 07 21:13:06 +0000 2017","date":"January 07, 2017","hour":13,"text":"RT @WFNYScott: I've watched this no fewer than 30 times. https://t.co/4LcVgsifxs"}]},{"date":"2017-01-01T08:00:00.000Z","count":2,"values":[{"id":815787351691632600,"created_at":"Mon Jan 02 05:10:35 +0000 2017","date":"January 01, 2017","hour":21,"text":"I think the Russians did it. https://t.co/PyYMxsNsJe"},{"id":815740867734630400,"created_at":"Mon Jan 02 02:05:53 +0000 2017","date":"January 01, 2017","hour":18,"text":"RT @FoxNews: .@realDonaldTrump: \"We have to protect Israel. Israel, to me, is very, very important. We have to protect Israel.\" https://t.c…"}]},{"date":"2016-12-31T08:00:00.000Z","count":1,"values":[{"id":815419052067815400,"created_at":"Sun Jan 01 04:47:06 +0000 2017","date":"December 31, 2016","hour":20,"text":"Well, Mariah Carey just killed Rockin new years...... literally. It was super bad!"}]},{"date":"2016-12-30T08:00:00.000Z","count":1,"values":[{"id":814850908223893500,"created_at":"Fri Dec 30 15:09:30 +0000 2016","date":"December 30, 2016","hour":7,"text":"RT @FoxNews: “You will see President @realDonaldTrump having much stronger relationship with #Israel.” - @KellyannePolls https://t.co/ZturL…"}]},{"date":"2016-12-23T08:00:00.000Z","count":2,"values":[{"id":812309705422995500,"created_at":"Fri Dec 23 14:51:40 +0000 2016","date":"December 23, 2016","hour":6,"text":"RT @Dexter_A_Taylor: It's your choice to stay confused of the truth and blind to how things work"},{"id":812308777630306300,"created_at":"Fri Dec 23 14:47:59 +0000 2016","date":"December 23, 2016","hour":6,"text":"RT @FoxNews: WATCH: Ailing Marine vet gives #DonaldTrump, Gen. Mattis one final salute https://t.co/pmvBcPIQty"}]},{"date":"2016-12-21T08:00:00.000Z","count":1,"values":[{"id":811625800873209900,"created_at":"Wed Dec 21 17:34:04 +0000 2016","date":"December 21, 2016","hour":9,"text":"RT @Dexter_A_Taylor: I can't stress this enough https://t.co/IzI65H1BDM"}]},{"date":"2016-12-15T08:00:00.000Z","count":3,"values":[{"id":809641715854409700,"created_at":"Fri Dec 16 06:10:02 +0000 2016","date":"December 15, 2016","hour":22,"text":"It may just be me, but I don't care if I EVER see another poll again in my life. @FoxNews @realDonaldTrump @TomiLahren @Dexter_A_Taylor"},{"id":809641018488279000,"created_at":"Fri Dec 16 06:07:15 +0000 2016","date":"December 15, 2016","hour":22,"text":"@FoxNews no one cares about any polls...ever...."},{"id":809640905707757600,"created_at":"Fri Dec 16 06:06:48 +0000 2016","date":"December 15, 2016","hour":22,"text":"@FoxNews I'm not sure anyone, anywhere at any time is ever ever ever gonna listen to a poll again. Just sayin."}]},{"date":"2016-12-14T08:00:00.000Z","count":12,"values":[{"id":809278155269804000,"created_at":"Thu Dec 15 06:05:22 +0000 2016","date":"December 14, 2016","hour":22,"text":"RT @jeremycowart: My #VoicesofGBurg series has officially started. Just released our first image. We shot 4 portraits today. Many more to c…"},{"id":809276680376303600,"created_at":"Thu Dec 15 05:59:30 +0000 2016","date":"December 14, 2016","hour":21,"text":"RT @UTCoachJones: Thank you Gatlinburg! You are a strong community! #MountainTough #GoVols https://t.co/YO4xqIc7yf"},{"id":809275800239345700,"created_at":"Thu Dec 15 05:56:01 +0000 2016","date":"December 14, 2016","hour":21,"text":"@OldAPG well, now I can't remember :/"},{"id":809133624205475800,"created_at":"Wed Dec 14 20:31:03 +0000 2016","date":"December 14, 2016","hour":12,"text":"RT @AnnCoulter: On hearing the Fed's claim that US has \"full employment,\" Putin told Obama: \"OK, you win. Your fake news beats my fake news…"},{"id":809132348717629400,"created_at":"Wed Dec 14 20:25:59 +0000 2016","date":"December 14, 2016","hour":12,"text":"RT @zacbrownband: Gatlinburg, TN is open for business &amp; welcoming visitors! See you at the #MountainTough Benefit Show this Sat 12/17. http…"},{"id":809131577217323000,"created_at":"Wed Dec 14 20:22:55 +0000 2016","date":"December 14, 2016","hour":12,"text":"RT @CounterMoonbat: This is from the first page of the Paris Climate Agreement. But nah science isn't politicized. #StandUpForScience https…"},{"id":809101929615884300,"created_at":"Wed Dec 14 18:25:07 +0000 2016","date":"December 14, 2016","hour":10,"text":"https://t.co/57gi1ft5tn\nWow. This is a horrible problem!"},{"id":809097877091917800,"created_at":"Wed Dec 14 18:09:00 +0000 2016","date":"December 14, 2016","hour":10,"text":"@FoxNews good!!!"},{"id":809097833571819500,"created_at":"Wed Dec 14 18:08:50 +0000 2016","date":"December 14, 2016","hour":10,"text":"RT @FoxNews: German minister refuses to wear veil during Saudi Arabia trip https://t.co/JWV0L9AqD7 https://t.co/lw2Y8Qjkkn"},{"id":809096211605155800,"created_at":"Wed Dec 14 18:02:23 +0000 2016","date":"December 14, 2016","hour":10,"text":"RT @FoxNews: .@BillHemmer: \"Ohio is now the 16th state to limit abortions after 20 weeks.\" https://t.co/9igZapcaVG"},{"id":809096016305786900,"created_at":"Wed Dec 14 18:01:37 +0000 2016","date":"December 14, 2016","hour":10,"text":"RT @FoxNewsInsider: Oops! Stein's Recount Turns Up More Votes Than Voters in Detroit @foxandfriends https://t.co/1TXmnpJ7zD https://t.co/l5…"},{"id":809095690781593600,"created_at":"Wed Dec 14 18:00:19 +0000 2016","date":"December 14, 2016","hour":10,"text":"RT @FoxNews: Oops! Jill Stein​'s recount turns up more votes than voters in Detroit. https://t.co/07JXFBrnmi https://t.co/AklSKzqpRo"}]},{"date":"2016-12-13T08:00:00.000Z","count":20,"values":[{"id":808894016095916000,"created_at":"Wed Dec 14 04:38:56 +0000 2016","date":"December 13, 2016","hour":20,"text":"RT @gmannVOLS: Dolly Parton for Tennessee Athletic Director"},{"id":808893818405867500,"created_at":"Wed Dec 14 04:38:09 +0000 2016","date":"December 13, 2016","hour":20,"text":"RT @6News: .@BillHaslam to @DollyParton \"Thank you. We're incredibly grateful.\" LIVE: https://t.co/aix8B4WzTd #SmokyMountainsRise #WATE htt…"},{"id":808893740752445400,"created_at":"Wed Dec 14 04:37:50 +0000 2016","date":"December 13, 2016","hour":20,"text":"RT @DollyParton: Thank you @taylorswift13 &amp; @ACMawards for your generous donations of $100,000! #smokymountainsrise #mypeoplefund"},{"id":808882622059446300,"created_at":"Wed Dec 14 03:53:40 +0000 2016","date":"December 13, 2016","hour":19,"text":"Islands in the Stream!!!! LOVE IT!!!! @DollyParton Kenny Rogers!!! Sooooooo GREAT!!!! THANK YOU! #smokymountainsrise #mountaintough"},{"id":808875247629897700,"created_at":"Wed Dec 14 03:24:21 +0000 2016","date":"December 13, 2016","hour":19,"text":"@donmcleanonline starry starry night!!!! Thank you so much! #smokymountainsrise #mountaintough"},{"id":808870787797188600,"created_at":"Wed Dec 14 03:06:38 +0000 2016","date":"December 13, 2016","hour":19,"text":"No WAY!!! @HankJr we LOVE you!!! Thank You! #smokymountainsrise #mountaintough"},{"id":808869196142624800,"created_at":"Wed Dec 14 03:00:19 +0000 2016","date":"December 13, 2016","hour":19,"text":"Always have loved Alabama!!! Thank you for your support! #smokymountainsrise #mountaintough"},{"id":808863964390166500,"created_at":"Wed Dec 14 02:39:31 +0000 2016","date":"December 13, 2016","hour":18,"text":"@amygrant thank you for the tender Tennessee Christmas!!! You Rock! #smokymountainsrise #mountaintough"},{"id":808862856661844000,"created_at":"Wed Dec 14 02:35:07 +0000 2016","date":"December 13, 2016","hour":18,"text":"@JanuaryBeeler I can NOT send out a tweet without a typo.... for real!!"},{"id":808862092929470500,"created_at":"Wed Dec 14 02:32:05 +0000 2016","date":"December 13, 2016","hour":18,"text":"Yay yay yay!!!! This guy does such a great jib! #mountaintough #smokymountainsrise Mike Werner!!! https://t.co/xDDM02PKwE"},{"id":808861035725815800,"created_at":"Wed Dec 14 02:27:53 +0000 2016","date":"December 13, 2016","hour":18,"text":"@realDonaldTrump call the Smoky Mountain Telethon to give for fire victims. All the famous people are doing it!!!! #smokymountainsrise"},{"id":808860783522250800,"created_at":"Wed Dec 14 02:26:53 +0000 2016","date":"December 13, 2016","hour":18,"text":"Cindi Lauper!!!! Awesome!!! #smokymountainsrise"},{"id":808850109995876400,"created_at":"Wed Dec 14 01:44:28 +0000 2016","date":"December 13, 2016","hour":17,"text":"Yay!!! Paul Simon!!! #dollyparton #mountaintough"},{"id":808819922050621400,"created_at":"Tue Dec 13 23:44:31 +0000 2016","date":"December 13, 2016","hour":15,"text":"Recount Update Guys. Hillary lost...again, just a little bigger than before :) @realDonaldTrump #deplorables #Recount2016"},{"id":808819159727571000,"created_at":"Tue Dec 13 23:41:29 +0000 2016","date":"December 13, 2016","hour":15,"text":"RT @FoxNewsInsider: Indiana Town Removes Cross From Christmas Tree @foxandfriends https://t.co/0IxgNdOLJn https://t.co/ViFqgiLXD2"},{"id":808818819217104900,"created_at":"Tue Dec 13 23:40:08 +0000 2016","date":"December 13, 2016","hour":15,"text":"RT @AnnCoulter: Putin said he got the idea to use fake news to influence the election one day while watching CNN."},{"id":808818440505098200,"created_at":"Tue Dec 13 23:38:37 +0000 2016","date":"December 13, 2016","hour":15,"text":"@carrieball1974 where??? I'm getting one Friday."},{"id":808816897462505500,"created_at":"Tue Dec 13 23:32:30 +0000 2016","date":"December 13, 2016","hour":15,"text":"RT @sweetatertot2: #FakeNews CNN &amp; MSMBC now on a frantic search to see how they can tie Kanye West to the Russians &amp; White Supremacist #tr…"},{"id":808768129811746800,"created_at":"Tue Dec 13 20:18:42 +0000 2016","date":"December 13, 2016","hour":12,"text":"RT @sweetatertot2: BREAKING: CIA JUST confirmed the Russians hacked into Kanye West brain causing him to support Trump &amp; not the one he's s…"},{"id":808767495096111100,"created_at":"Tue Dec 13 20:16:11 +0000 2016","date":"December 13, 2016","hour":12,"text":"Tennessee people are THE BEST!!! https://t.co/DCODZHsDFR"}]},{"date":"2016-12-12T08:00:00.000Z","count":2,"values":[{"id":808351253453475800,"created_at":"Mon Dec 12 16:42:11 +0000 2016","date":"December 12, 2016","hour":8,"text":"RT @FoxNewsInsider: Netanyahu on @realDonaldTrump: 'His Support for Israel Is Clear' @foxandfriends https://t.co/g77Tbj65JW https://t.co/g4…"},{"id":808351006174183400,"created_at":"Mon Dec 12 16:41:12 +0000 2016","date":"December 12, 2016","hour":8,"text":"RT @ainsleyearhardt: We visited the Grand Ole Opry in #Nashville Behind the scenes tour next on @foxandfriends @FoxNews @opry #Opry #Countr…"}]},{"date":"2016-12-10T08:00:00.000Z","count":1,"values":[{"id":807750249393639400,"created_at":"Sun Dec 11 00:54:01 +0000 2016","date":"December 10, 2016","hour":16,"text":"RT @susiealcorn: Love for Dolly Parton...An Open Apology To Dolly Parton  https://t.co/1rj49ZXUmv via @wordpressdotcom"}]},{"date":"2016-12-08T08:00:00.000Z","count":3,"values":[{"id":807110899114725400,"created_at":"Fri Dec 09 06:33:28 +0000 2016","date":"December 08, 2016","hour":22,"text":"RT @DiamondandSilk: We will be respecting our American Flag again under a @realDonaldTrump Administration. @DiamondandSilk Love It! https:…"},{"id":806955970874273800,"created_at":"Thu Dec 08 20:17:50 +0000 2016","date":"December 08, 2016","hour":12,"text":"RT @GOPLeader: The 115th Congress can expect a very busy schedule; so get your rest, because the House will be working to Make America Grea…"},{"id":806955803169222700,"created_at":"Thu Dec 08 20:17:10 +0000 2016","date":"December 08, 2016","hour":12,"text":"@foxandfriends bye!!!!"}]},{"date":"2016-12-05T08:00:00.000Z","count":1,"values":[{"id":806023459356737500,"created_at":"Tue Dec 06 06:32:22 +0000 2016","date":"December 05, 2016","hour":22,"text":"RT @TravelGburg: It truly is a miracle how much of our beloved town still stands, strong as ever. For that, and for so much more, we are gr…"}]},{"date":"2016-12-02T08:00:00.000Z","count":8,"values":[{"id":804663705048903700,"created_at":"Fri Dec 02 12:29:11 +0000 2016","date":"December 02, 2016","hour":4,"text":"@foxandfriends Don't worry. He will get there!"},{"id":804663309958074400,"created_at":"Fri Dec 02 12:27:37 +0000 2016","date":"December 02, 2016","hour":4,"text":"My Beautiful Mountains this Morning #SmokyMountains #seviercountystrong #PrayForTheSmokies #GatlinburgStrong #Gatlinburg #prayforrain #GSMNP https://t.co/uxKm3x57hr"},{"id":804663054189334500,"created_at":"Fri Dec 02 12:26:36 +0000 2016","date":"December 02, 2016","hour":4,"text":"RT @carrieball1974: #mountaintough #seviercountystrong #GatlinburgStrong https://t.co/AXCC2kJ4Ky"},{"id":804662958324351000,"created_at":"Fri Dec 02 12:26:13 +0000 2016","date":"December 02, 2016","hour":4,"text":"RT @DiamondandSilk: .@DiamondandSilk give their Breaking News report for this week current events. Warning: Do not drink coffee while watch…"},{"id":804662041353093100,"created_at":"Fri Dec 02 12:22:35 +0000 2016","date":"December 02, 2016","hour":4,"text":"@foxandfriends We LOVE Dolly. She is Our People! #Smokymountainstrong"},{"id":804661368209162200,"created_at":"Fri Dec 02 12:19:54 +0000 2016","date":"December 02, 2016","hour":4,"text":"RT @FoxNews: Signs point to recovery after Tennessee wildfires, death toll rises to 11 https://t.co/8SvwoOZvrk https://t.co/IsmePNJ11y"},{"id":804661115682779100,"created_at":"Fri Dec 02 12:18:54 +0000 2016","date":"December 02, 2016","hour":4,"text":"My Heroes!!!! Thank you from my entire heart!!!!! #seviercounty #seviercountystrong #GatlinburgStrong #SmokiesStrong #SmokyMountains https://t.co/yfqZLMTobJ"},{"id":804659330574389200,"created_at":"Fri Dec 02 12:11:48 +0000 2016","date":"December 02, 2016","hour":4,"text":"RT @foxandfriends: Many Muslim-Americans suggest Trump presidency could help anti-terror fight https://t.co/2NpodsEs6v"}]},{"date":"2016-12-01T08:00:00.000Z","count":4,"values":[{"id":804536249067470800,"created_at":"Fri Dec 02 04:02:43 +0000 2016","date":"December 01, 2016","hour":20,"text":"RT @6News: We are #MountainTough. #WATE https://t.co/MNHTf6aLdV"},{"id":804536179874009100,"created_at":"Fri Dec 02 04:02:27 +0000 2016","date":"December 01, 2016","hour":20,"text":"It is so weird to get on twitter and see stuff happening that isn't about the #seviercounty fires. Its been all consuming #smokymtnstrong"},{"id":804533217864929300,"created_at":"Fri Dec 02 03:50:41 +0000 2016","date":"December 01, 2016","hour":19,"text":"RT @VisitMySmokies: We urge families to visit our area! Still hundreds of lodging options and activities! https://t.co/FNngtUDTfM"},{"id":804532770554998800,"created_at":"Fri Dec 02 03:48:54 +0000 2016","date":"December 01, 2016","hour":19,"text":"RT @TrixieSimone: Thank you to @realDonaldTrump for recognizing the tragedy in Sevier Co, TN w/the fires. @POTUS couldn't be bothered."}]},{"date":"2016-11-29T08:00:00.000Z","count":19,"values":[{"id":803848641828048900,"created_at":"Wed Nov 30 06:30:25 +0000 2016","date":"November 29, 2016","hour":22,"text":"RT @carrieball1974: #GatlinburgStrong 💙🇺🇸👮 https://t.co/nxkmgenyry"},{"id":803846950692986900,"created_at":"Wed Nov 30 06:23:42 +0000 2016","date":"November 29, 2016","hour":22,"text":"I live in an Awesome place, with the MOST Amazing people! The outpouring of love, help &amp; hope from OUR community is astonishing. #Gatlinburg"},{"id":803800231393562600,"created_at":"Wed Nov 30 03:18:03 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @wesrucker247: An elderly couple dressed as Santa and Mrs. Claus yesterday and gave stuffed animals to kids staying in wildfire shelters…"},{"id":803799851473453000,"created_at":"Wed Nov 30 03:16:33 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @realjknoxville: My heart goes out to all the families who have been affected by the wildfires currently raging thru my Eastern Tennesse…"},{"id":803799826282545200,"created_at":"Wed Nov 30 03:16:27 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @olivermorton78: Headed back home to Gatlinburg tomorrow to help the best I can. Love this place and my heart is… https://t.co/u9UW90mOtP"},{"id":803797601841770500,"created_at":"Wed Nov 30 03:07:36 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @TravelGburg: To donate to #Gatlinburg families and businesses affected by the #wildfires, please see below: https://t.co/lZFrRWTscU"},{"id":803797511160954900,"created_at":"Wed Nov 30 03:07:15 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @FoxNews: 3 dead as wildfires scorch 250 buildings in Tennessee https://t.co/aVvgfTXmr9 #FOXNewsUS https://t.co/oZelxwxxUu"},{"id":803797352607793200,"created_at":"Wed Nov 30 03:06:37 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @chrisfoster44: #Gatlinburg isn't some imaginary town that stops existing when your vacation ends. It's people's home, jobs, and livelih…"},{"id":803797220550180900,"created_at":"Wed Nov 30 03:06:05 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @alyssa_brewer03: Pray for our town 💕😔 https://t.co/mrCR2Khlco"},{"id":803796227955494900,"created_at":"Wed Nov 30 03:02:09 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @realDonaldTrump: My thoughts and prayers are with the great people of Tennessee during these terrible wildfires. Stay safe!"},{"id":803796184578007000,"created_at":"Wed Nov 30 03:01:58 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @SpeakerRyan: Praying for those in harm's way and for the emergency responders who are doing all they can to keep folks safe. https://t.…"},{"id":803796105519648800,"created_at":"Wed Nov 30 03:01:40 +0000 2016","date":"November 29, 2016","hour":19,"text":"RT @maddiegrace799: Home is where the heart is and my heart is in the mountains. So many memories were made there and I refuse to believe t…"},{"id":803795958823841800,"created_at":"Wed Nov 30 03:01:05 +0000 2016","date":"November 29, 2016","hour":19,"text":"Amazing people coming to help us! THANK YOU! #SmokyMountains #Gatlinburg #Seviercounty #PrayForTheSmokies https://t.co/2NGyaZQfwz"},{"id":803795164678459400,"created_at":"Wed Nov 30 02:57:55 +0000 2016","date":"November 29, 2016","hour":18,"text":"RT @FoxNews: Fox News Alert: 3 deaths confirmed in #Tennessee wildfires. https://t.co/BmTsmgL6cd"},{"id":803795144092844000,"created_at":"Wed Nov 30 02:57:50 +0000 2016","date":"November 29, 2016","hour":18,"text":"RT @FoxNews: President-elect @realDonaldTrump tweeted his thoughts and prayers for the people in #Tennessee affected by the wildfires. http…"},{"id":803794988681363500,"created_at":"Wed Nov 30 02:57:13 +0000 2016","date":"November 29, 2016","hour":18,"text":"My Mountains are less smoky tonight but still need rain It's devastating but we will overcome #Gatlinburg #Seviercounty #PrayForTheSmokies"},{"id":803793828331266000,"created_at":"Wed Nov 30 02:52:37 +0000 2016","date":"November 29, 2016","hour":18,"text":"@FoxNews @mike_pence Thank you!Pray for rain! #Gatlinburg #GatlinburgStrong #Seviercounty #EastTennessee #VOLUNTEERSTATE #PrayForTheSmokies"},{"id":803793211026276400,"created_at":"Wed Nov 30 02:50:09 +0000 2016","date":"November 29, 2016","hour":18,"text":"RT @victoriabporter: when i say that this breaks my heart, i mean that my stomach literally forms into knots.. #PrayForTheSmokies https://t…"},{"id":803793083552976900,"created_at":"Wed Nov 30 02:49:39 +0000 2016","date":"November 29, 2016","hour":18,"text":"RT @FoxNews: Wildfires scorch 250 buildings in Tennessee tourist area as thousands flee https://t.co/aVvgfTXmr9 #FOXNewsUS https://t.co/qw…"}]},{"date":"2016-11-28T08:00:00.000Z","count":1,"values":[{"id":803291489589661700,"created_at":"Mon Nov 28 17:36:30 +0000 2016","date":"November 28, 2016","hour":9,"text":"@StephanieHuske2 I have that same tray. Grandmother Morton gave it to Jim years ago because Santa's list says Jimmy! Merry Christmas!!!"}]},{"date":"2016-11-27T08:00:00.000Z","count":1,"values":[{"id":803068939248934900,"created_at":"Mon Nov 28 02:52:10 +0000 2016","date":"November 27, 2016","hour":18,"text":"RT @FoxNews: Israeli aircraft kills four ISIS militants in Syria. https://t.co/vNxnUWrUhm"}]},{"date":"2016-11-25T08:00:00.000Z","count":1,"values":[{"id":802163942281904100,"created_at":"Fri Nov 25 14:56:01 +0000 2016","date":"November 25, 2016","hour":6,"text":"RT @cvaldary: Arsonists have set fires in Israel. Keep Israelis in your thoughts and prayers. https://t.co/DdFgYb7Iom"}]},{"date":"2016-11-23T08:00:00.000Z","count":2,"values":[{"id":801624603143577600,"created_at":"Thu Nov 24 03:12:53 +0000 2016","date":"November 23, 2016","hour":19,"text":"RT @realDonaldTrump: Bus crash in Tennessee so sad &amp; so terrible. Condolences to all family members and loved ones. These beautiful childre…"},{"id":801622542792486900,"created_at":"Thu Nov 24 03:04:42 +0000 2016","date":"November 23, 2016","hour":19,"text":"RT @MarkYoungTruth: Eliminating the Electoral College is the decision to hand over all future presidential elections to Calif and NY. It's…"}]},{"date":"2016-11-22T08:00:00.000Z","count":3,"values":[{"id":801108160337604600,"created_at":"Tue Nov 22 17:00:43 +0000 2016","date":"November 22, 2016","hour":9,"text":"@DOglefishing you do that everyday!"},{"id":801104133990338600,"created_at":"Tue Nov 22 16:44:43 +0000 2016","date":"November 22, 2016","hour":8,"text":"RT @foxandfriends: University's student gov't berated by the school for throwing an America-themed party, calling it \"very alienating, divi…"},{"id":801103981036630000,"created_at":"Tue Nov 22 16:44:07 +0000 2016","date":"November 22, 2016","hour":8,"text":"RT @foxandfriends: Massachusetts college removes the American flag from campus after one was found burned on Veterans Day https://t.co/pUja…"}]},{"date":"2016-11-21T08:00:00.000Z","count":3,"values":[{"id":800909627588300800,"created_at":"Tue Nov 22 03:51:50 +0000 2016","date":"November 21, 2016","hour":19,"text":"@BigDaddyBremer mine got to 58° and the heat kicked on."},{"id":800907384390459400,"created_at":"Tue Nov 22 03:42:55 +0000 2016","date":"November 21, 2016","hour":19,"text":"RT @MarkDice: Green Day is trying to revive a failed career with their Anti-Trump rant. Plenty of morons out there, so they just might do…"},{"id":800882146453950500,"created_at":"Tue Nov 22 02:02:38 +0000 2016","date":"November 21, 2016","hour":18,"text":"Let us all keep #WoodmoreElementary in our prayers. God, be with these Families, Staff and Students. I can not imagine the pain and loss."}]},{"date":"2016-11-19T08:00:00.000Z","count":1,"values":[{"id":800188547970068500,"created_at":"Sun Nov 20 04:06:31 +0000 2016","date":"November 19, 2016","hour":20,"text":"Let's not ever buy, support, or do anything to help Sophie Theallet ever. #foxnews #firstladyTrump @realDonaldTrump #sheisbeautiful"}]},{"date":"2016-11-18T08:00:00.000Z","count":4,"values":[{"id":799857405047803900,"created_at":"Sat Nov 19 06:10:40 +0000 2016","date":"November 18, 2016","hour":22,"text":"@carrieball1974 it was probably the Butcher."},{"id":799857157625749500,"created_at":"Sat Nov 19 06:09:41 +0000 2016","date":"November 18, 2016","hour":22,"text":"RT @SpeakerRyan: RT to agree → President Obama should not advance any new regulations during his final days in office. https://t.co/HHgE6wj…"},{"id":799855736834715600,"created_at":"Sat Nov 19 06:04:02 +0000 2016","date":"November 18, 2016","hour":22,"text":"RT @AlburtEnstun: Dog: That noise probably wasn't anything to worry about\n\nDog to Dog: Bark just in case it's not https://t.co/pEJUrNyEC3"},{"id":799763037431402500,"created_at":"Fri Nov 18 23:55:41 +0000 2016","date":"November 18, 2016","hour":15,"text":"RT @Stu_Davidson: Planned Parenthood revealed today that for every adoption they performed 160 abortions. Let that sink in for a second."}]},{"date":"2016-11-17T08:00:00.000Z","count":1,"values":[{"id":799512409107009500,"created_at":"Fri Nov 18 07:19:47 +0000 2016","date":"November 17, 2016","hour":23,"text":"@AnnCoulter I see what you did there!!! Fat chance...Teehee"}]},{"date":"2016-11-16T08:00:00.000Z","count":4,"values":[{"id":799031555075276800,"created_at":"Wed Nov 16 23:29:02 +0000 2016","date":"November 16, 2016","hour":15,"text":"RT @AnnCoulter: FBI: Legit Hate Crimes More Prevalent in Blue States https://t.co/pOTNFvIPSr Coulter: Hoax Hate Crimes More Prevalent In Co…"},{"id":799029838703185900,"created_at":"Wed Nov 16 23:22:13 +0000 2016","date":"November 16, 2016","hour":15,"text":"RT @FoxNewsInsider: Report: More Than Half of Anti-Trump Protesters Arrested in Oregon Didn't Vote https://t.co/kVcbdpOlP9 https://t.co/3hH…"},{"id":799026488624422900,"created_at":"Wed Nov 16 23:08:54 +0000 2016","date":"November 16, 2016","hour":15,"text":"RT @FoxNews: Minnesota woman blames drunken driving crash on the election https://t.co/uT1Hzqgfgr https://t.co/ImJiB2krnj"},{"id":799025498731008000,"created_at":"Wed Nov 16 23:04:58 +0000 2016","date":"November 16, 2016","hour":15,"text":"RT @amylutz4: This is the edge of campus at @DePaulU. Free speech to the right of me, censorship to the left. #yafoncampus https://t.co/Hnk…"}]},{"date":"2016-11-15T08:00:00.000Z","count":1,"values":[{"id":798660471595421700,"created_at":"Tue Nov 15 22:54:29 +0000 2016","date":"November 15, 2016","hour":14,"text":"RT @RealJamesWoods: Thank you. https://t.co/EPMKKUL979"}]},{"date":"2016-11-14T08:00:00.000Z","count":6,"values":[{"id":798391636145434600,"created_at":"Tue Nov 15 05:06:14 +0000 2016","date":"November 14, 2016","hour":21,"text":"RT @FoxNews: US soldiers killed in suicide bombing at Bagram Airfield identified https://t.co/zNEG0vO4jp https://t.co/HKfMB8qDUD"},{"id":798192088797974500,"created_at":"Mon Nov 14 15:53:18 +0000 2016","date":"November 14, 2016","hour":7,"text":"RT @TomiLahren: I'll cover it. All day. You're not alone and the mainstream is gonna get a shakeup. #draintheswamp https://t.co/C39B0bEHj3"},{"id":798191100074655700,"created_at":"Mon Nov 14 15:49:22 +0000 2016","date":"November 14, 2016","hour":7,"text":"RT @foxandfriends: Air Force veteran Thaddeus Alexander’s message to anti-Trump protesters is going viral… https://t.co/chLUqY1NXx"},{"id":798189795335934000,"created_at":"Mon Nov 14 15:44:11 +0000 2016","date":"November 14, 2016","hour":7,"text":"@TezlynFigaro @HuffPostPol #draintheswamp"},{"id":798189059759886300,"created_at":"Mon Nov 14 15:41:16 +0000 2016","date":"November 14, 2016","hour":7,"text":"RT @charliekirk11: Daughter of slain Dallas cop no longer allowed to give first serve at volleyball game due to \"shocking election results\"…"},{"id":798186527213944800,"created_at":"Mon Nov 14 15:31:12 +0000 2016","date":"November 14, 2016","hour":7,"text":"#Thanksgiving is coming &amp; I for 1 am Very Thankful! Just heard @realDonaldTrump say he will appoint SCJ who are #ProLife #AnsweredPrayers !"}]},{"date":"2016-11-11T08:00:00.000Z","count":4,"values":[{"id":797185464369287200,"created_at":"Fri Nov 11 21:13:20 +0000 2016","date":"November 11, 2016","hour":13,"text":"Have you seen this? It is disgusting. This \"mother\" should be ashamed! @FoxNews @TomiLahren @DiamondandSilk https://t.co/cUwQEifmUb"},{"id":797183858810769400,"created_at":"Fri Nov 11 21:06:57 +0000 2016","date":"November 11, 2016","hour":13,"text":"RT @DiamondandSilk: The Media is Responsible for Stoking Fear. When fear comes knocking, answer the Door with Faith. \"Give Trump a Chance…"},{"id":797182820456296400,"created_at":"Fri Nov 11 21:02:49 +0000 2016","date":"November 11, 2016","hour":13,"text":"RT @FoxNews: Muslim student made up report of assault, robbery by man wearing 'Trump' hat, police say https://t.co/tI4QaLTZgu"},{"id":797181416694018000,"created_at":"Fri Nov 11 20:57:15 +0000 2016","date":"November 11, 2016","hour":12,"text":"RT @foxandfriends: FALSE REPORTS: Louisiana student lied about being attacked by alleged Trump supporters https://t.co/jNz0L3G0A1"}]},{"date":"2016-11-10T08:00:00.000Z","count":5,"values":[{"id":796834625809170400,"created_at":"Thu Nov 10 21:59:13 +0000 2016","date":"November 10, 2016","hour":13,"text":"RT @TomiLahren: A protest is an objection to a grievance. If it's just a bunch of sore losers, it's called a tantrum. #MAGA"},{"id":796833979521450000,"created_at":"Thu Nov 10 21:56:39 +0000 2016","date":"November 10, 2016","hour":13,"text":"@AnnCoulter what the hell does \"Confront Whiteness\" mean???"},{"id":796723143972888600,"created_at":"Thu Nov 10 14:36:14 +0000 2016","date":"November 10, 2016","hour":6,"text":"RT @jasonkillam: Donald Trump holds high the flag for gay equality https://t.co/VKMQbKGgO8"},{"id":796720735565779000,"created_at":"Thu Nov 10 14:26:40 +0000 2016","date":"November 10, 2016","hour":6,"text":"RT @StacyOnTheRight: Stop blaming white people for Trumps win last night. America voted for actual change. https://t.co/UlISJcOIIg"},{"id":796720605508890600,"created_at":"Thu Nov 10 14:26:09 +0000 2016","date":"November 10, 2016","hour":6,"text":"RT @FoxNews: Wildfires create smokey haze across southern states, prompting health warning https://t.co/j9mcsOMsUD"}]},{"date":"2016-11-09T08:00:00.000Z","count":22,"values":[{"id":796532665482674200,"created_at":"Thu Nov 10 01:59:20 +0000 2016","date":"November 09, 2016","hour":17,"text":"RT @chuckwoolery: Some are demonstrating in the streets of big cities like someone got shot by the police. The Left is disgusting."},{"id":796509025139621900,"created_at":"Thu Nov 10 00:25:24 +0000 2016","date":"November 09, 2016","hour":16,"text":"@AnnCoulter @FoxBusiness we are!"},{"id":796488869264887800,"created_at":"Wed Nov 09 23:05:19 +0000 2016","date":"November 09, 2016","hour":15,"text":"@FredZeppelin12 @alinneabryan isn't #Californiasecession broke and is constantly needed federal money to survive. Well anyway...bye!!!"},{"id":796485859625365500,"created_at":"Wed Nov 09 22:53:21 +0000 2016","date":"November 09, 2016","hour":14,"text":"RT @FoxNews: .@netanyahu says he is confident that he &amp; @realDonaldTrump will continue to strengthen the alliance between the #UnitedStates…"},{"id":796485400982421500,"created_at":"Wed Nov 09 22:51:32 +0000 2016","date":"November 09, 2016","hour":14,"text":"@TheFive how do y'all not constantly roll your eyes at Juan???? Good Grief!"},{"id":796451475111215100,"created_at":"Wed Nov 09 20:36:43 +0000 2016","date":"November 09, 2016","hour":12,"text":"RT @HLange4: Why do millennials think an election is only about social issues? How about national security? Economy? Protecting our Constit…"},{"id":796411997072064500,"created_at":"Wed Nov 09 17:59:51 +0000 2016","date":"November 09, 2016","hour":9,"text":"RT @Dexter_A_Taylor: Sure did 🇺🇸 https://t.co/eNXT9CtIxM"},{"id":796396160407797800,"created_at":"Wed Nov 09 16:56:55 +0000 2016","date":"November 09, 2016","hour":8,"text":"RT @antonia_okafor: .@HillaryClinton 's concession speech until she starts quoting scripture... 😒#Election2016 https://t.co/iUUX3psonV"},{"id":796395480213241900,"created_at":"Wed Nov 09 16:54:13 +0000 2016","date":"November 09, 2016","hour":8,"text":"Bye bye"},{"id":796393961493561300,"created_at":"Wed Nov 09 16:48:11 +0000 2016","date":"November 09, 2016","hour":8,"text":"@chuckwoolery I am so over him!"},{"id":796388350626328600,"created_at":"Wed Nov 09 16:25:53 +0000 2016","date":"November 09, 2016","hour":8,"text":"@olivermorton78 so, were you surprised with how well he did?"},{"id":796379519326318600,"created_at":"Wed Nov 09 15:50:48 +0000 2016","date":"November 09, 2016","hour":7,"text":"@Dexter_A_Taylor @nikkih0227 my goodness where are people getting this stuff? Do they ever listen, study or read anything about candidates?"},{"id":796378391125643300,"created_at":"Wed Nov 09 15:46:19 +0000 2016","date":"November 09, 2016","hour":7,"text":"RT @GOPLeader: Donald Trump and Congressional Republicans will lead. Now is the time for our country to unite and build a better future for…"},{"id":796377590273548300,"created_at":"Wed Nov 09 15:43:08 +0000 2016","date":"November 09, 2016","hour":7,"text":"@foxandfriends @Varneyco and that is EXACTLY what we need!!!"},{"id":796377422442664000,"created_at":"Wed Nov 09 15:42:28 +0000 2016","date":"November 09, 2016","hour":7,"text":"@OfficeScenes @ashbethh yasssssssssasas."},{"id":796376819306025000,"created_at":"Wed Nov 09 15:40:04 +0000 2016","date":"November 09, 2016","hour":7,"text":"@TomiLahren I am shocked by the hate being spewed from the oh so tolerant left!"},{"id":796375280755556400,"created_at":"Wed Nov 09 15:33:57 +0000 2016","date":"November 09, 2016","hour":7,"text":"@TomiLahren YES!!! We Did!!! Thank you for your voice during all this."},{"id":796262691149115400,"created_at":"Wed Nov 09 08:06:34 +0000 2016","date":"November 09, 2016","hour":0,"text":"The forgotten people of America will be forgotten no longer! @realDonaldTrump @FoxNews"},{"id":796262378648305700,"created_at":"Wed Nov 09 08:05:19 +0000 2016","date":"November 09, 2016","hour":0,"text":"I love this country!!!"},{"id":796262200151306200,"created_at":"Wed Nov 09 08:04:37 +0000 2016","date":"November 09, 2016","hour":0,"text":"@DOglefishing 100%"},{"id":796261999411953700,"created_at":"Wed Nov 09 08:03:49 +0000 2016","date":"November 09, 2016","hour":0,"text":"RT @megynkelly: .@realDonaldTrump: “Now it’s time for America to bind the wounds of division.” #ElectionNight"},{"id":796261862123966500,"created_at":"Wed Nov 09 08:03:16 +0000 2016","date":"November 09, 2016","hour":0,"text":"RT @femnangel: Republicans have Presidency, House and Senate"}]},{"date":"2016-11-08T08:00:00.000Z","count":118,"values":[{"id":796258582031401000,"created_at":"Wed Nov 09 07:50:14 +0000 2016","date":"November 08, 2016","hour":23,"text":"Wow wow wow wow wow!! @realDonaldTrump @FoxNews"},{"id":796257534613094400,"created_at":"Wed Nov 09 07:46:04 +0000 2016","date":"November 08, 2016","hour":23,"text":"RT @FoxNews: .@mike_pence: \"This is a historic night. The American people have spoken and the American people have elected their new champi…"},{"id":796257004914442200,"created_at":"Wed Nov 09 07:43:58 +0000 2016","date":"November 08, 2016","hour":23,"text":"It's been a long, fun ride y'all!!! Now let's get to work!!!"},{"id":796256863046291500,"created_at":"Wed Nov 09 07:43:24 +0000 2016","date":"November 08, 2016","hour":23,"text":"RT @young__conserv: Donald Trump is officially the 45th President of the United States of America!"},{"id":796256333108510700,"created_at":"Wed Nov 09 07:41:18 +0000 2016","date":"November 08, 2016","hour":23,"text":"RT @FoxNews: Fox News projects @realDonaldTrump wins the presidency. #ElectionNight #FoxNews2016 https://t.co/1mOTU5I6st"},{"id":796256258005274600,"created_at":"Wed Nov 09 07:41:00 +0000 2016","date":"November 08, 2016","hour":23,"text":"And just like that!!!! @FoxNews"},{"id":796254299462443000,"created_at":"Wed Nov 09 07:33:13 +0000 2016","date":"November 08, 2016","hour":23,"text":"@Dexter_A_Taylor @GOPBlackChick how do you know this?"},{"id":796249755454238700,"created_at":"Wed Nov 09 07:15:09 +0000 2016","date":"November 08, 2016","hour":23,"text":"@MarkYoungTruth @chuckwoolery @smoIsabrina Yes! I wasn't sure what was going on. Punctuation is a great thing."},{"id":796249360749260800,"created_at":"Wed Nov 09 07:13:35 +0000 2016","date":"November 08, 2016","hour":23,"text":"@Dexter_A_Taylor @TomiLahren yes, I busted out laughing!!!"},{"id":796248973824684000,"created_at":"Wed Nov 09 07:12:03 +0000 2016","date":"November 08, 2016","hour":23,"text":"@TomiLahren no gloating! Now it's time to get to work!"},{"id":796244836017930200,"created_at":"Wed Nov 09 06:55:37 +0000 2016","date":"November 08, 2016","hour":22,"text":"If @realDonaldTrump does not do the things he said he would do....I swear....."},{"id":796244248341479400,"created_at":"Wed Nov 09 06:53:16 +0000 2016","date":"November 08, 2016","hour":22,"text":"@UShistory1700 @realDonaldTrump @FoxNews I hair don't even know how to deal with it."},{"id":796242678379843600,"created_at":"Wed Nov 09 06:47:02 +0000 2016","date":"November 08, 2016","hour":22,"text":"@UShistory1700 @realDonaldTrump @FoxNews OMG!!!!"},{"id":796242559727243300,"created_at":"Wed Nov 09 06:46:34 +0000 2016","date":"November 08, 2016","hour":22,"text":"@megynkelly you just made me like you a lot more than I already did. And that was a lot!"},{"id":796242397491503100,"created_at":"Wed Nov 09 06:45:55 +0000 2016","date":"November 08, 2016","hour":22,"text":"Why am I seeing #Pennsylvania called foe @realDonaldTrump on Twitter and not @FoxNews is it over?"},{"id":796241427672002600,"created_at":"Wed Nov 09 06:42:04 +0000 2016","date":"November 08, 2016","hour":22,"text":"RT @AnnCoulter: 1928 was last time Republicans had the White House, the House and the Senate."},{"id":796238688749580300,"created_at":"Wed Nov 09 06:31:11 +0000 2016","date":"November 08, 2016","hour":22,"text":"@olyazwerner @Dexter_A_Taylor @brxe_xo 100%"},{"id":796238452601851900,"created_at":"Wed Nov 09 06:30:15 +0000 2016","date":"November 08, 2016","hour":22,"text":"@SpeakerRyan has called to congratulate @realDonaldTrump maybe we forgive him. We shall see. But it's good he is trying! @FoxNews"},{"id":796237980574904300,"created_at":"Wed Nov 09 06:28:22 +0000 2016","date":"November 08, 2016","hour":22,"text":"@Dexter_A_Taylor now you got me in a Twitter fight :("},{"id":796237814069334000,"created_at":"Wed Nov 09 06:27:42 +0000 2016","date":"November 08, 2016","hour":22,"text":"Yes we have the senate! @fox #ElectionNight"},{"id":796236509816954900,"created_at":"Wed Nov 09 06:22:31 +0000 2016","date":"November 08, 2016","hour":22,"text":"@brxe_xo @Dexter_A_Taylor bahahahhahababab. So easy to get get under thin skin!"},{"id":796235895485722600,"created_at":"Wed Nov 09 06:20:05 +0000 2016","date":"November 08, 2016","hour":22,"text":"@Dexter_A_Taylor @OGShonny JESUS"},{"id":796235122131484700,"created_at":"Wed Nov 09 06:17:01 +0000 2016","date":"November 08, 2016","hour":22,"text":"@Dexter_A_Taylor @brxe_xo whoa. Now that's classy!"},{"id":796231144035455000,"created_at":"Wed Nov 09 06:01:12 +0000 2016","date":"November 08, 2016","hour":22,"text":"Thank goodness I get to sleep in....whenever sleep happens!!!@FoxNews #NeverHillary"},{"id":796229712288878600,"created_at":"Wed Nov 09 05:55:31 +0000 2016","date":"November 08, 2016","hour":21,"text":"CNN is gonna call #Wisconsin yay @FoxNews"},{"id":796228562114252800,"created_at":"Wed Nov 09 05:50:57 +0000 2016","date":"November 08, 2016","hour":21,"text":"@AnnCoulter I got a great car and a full tank of gas. Let's go!!!"},{"id":796228448352141300,"created_at":"Wed Nov 09 05:50:29 +0000 2016","date":"November 08, 2016","hour":21,"text":"At this point I think it is safe to say that we are sick of Washington D.C. and the crap they do. We are DONE! @FoxNews"},{"id":796223222366748700,"created_at":"Wed Nov 09 05:29:43 +0000 2016","date":"November 08, 2016","hour":21,"text":"@megynkelly I think it's more like the media is no fan of @realDonaldTrump @FoxNews"},{"id":796221940906229800,"created_at":"Wed Nov 09 05:24:38 +0000 2016","date":"November 08, 2016","hour":21,"text":"@AnnCoulter I honestly think we are done with this crap. We are ready to make things happen. So the peeps voted!!"},{"id":796221215702741000,"created_at":"Wed Nov 09 05:21:45 +0000 2016","date":"November 08, 2016","hour":21,"text":"Come on #pensilvania we need you!!!!"},{"id":796220412724211700,"created_at":"Wed Nov 09 05:18:34 +0000 2016","date":"November 08, 2016","hour":21,"text":"If the legacy of Obama is in jeopardy then maybe he should not have done such a crappy job! @FoxNews"},{"id":796218048717946900,"created_at":"Wed Nov 09 05:09:10 +0000 2016","date":"November 08, 2016","hour":21,"text":"@MicahAlexanderB I got you! I totally got you!!!!"},{"id":796217861081591800,"created_at":"Wed Nov 09 05:08:25 +0000 2016","date":"November 08, 2016","hour":21,"text":"@Dexter_A_Taylor @_madisonnn9 for GOD's sake"},{"id":796217668433014800,"created_at":"Wed Nov 09 05:07:39 +0000 2016","date":"November 08, 2016","hour":21,"text":"@AnnCoulter oh my gosh this mafe me bust out laughing!!!!"},{"id":796217421321404400,"created_at":"Wed Nov 09 05:06:40 +0000 2016","date":"November 08, 2016","hour":21,"text":"@MicahAlexanderB we got you!!"},{"id":796213178661306400,"created_at":"Wed Nov 09 04:49:49 +0000 2016","date":"November 08, 2016","hour":20,"text":"@AnnCoulter for real!!!"},{"id":796212498085146600,"created_at":"Wed Nov 09 04:47:07 +0000 2016","date":"November 08, 2016","hour":20,"text":"Would someone please tell Juan Williams to please shut the hell up?!?!?! @FoxNews"},{"id":796212101798907900,"created_at":"Wed Nov 09 04:45:32 +0000 2016","date":"November 08, 2016","hour":20,"text":"@ashbethh I'm doing my fair share!!! Just too many to wade through!!!"},{"id":796211191421042700,"created_at":"Wed Nov 09 04:41:55 +0000 2016","date":"November 08, 2016","hour":20,"text":"@AnnCoulter Yes.We.Have!"},{"id":796211029827059700,"created_at":"Wed Nov 09 04:41:17 +0000 2016","date":"November 08, 2016","hour":20,"text":"@Dexter_A_Taylor @Carliee_SupaBaD makes no sense!"},{"id":796210861786415100,"created_at":"Wed Nov 09 04:40:36 +0000 2016","date":"November 08, 2016","hour":20,"text":"#Gerogia Thank you!!!! @FoxNews"},{"id":796210013358399500,"created_at":"Wed Nov 09 04:37:14 +0000 2016","date":"November 08, 2016","hour":20,"text":"Wow @CNN finally counted #Florida how bout that!! @FoxNews"},{"id":796209042397995000,"created_at":"Wed Nov 09 04:33:23 +0000 2016","date":"November 08, 2016","hour":20,"text":"Is this gonna really be the biggest FU in history???? @FoxNews #NeverHillary #Elections2016 #ElectionNite"},{"id":796208395946721300,"created_at":"Wed Nov 09 04:30:49 +0000 2016","date":"November 08, 2016","hour":20,"text":"Oh my gosh. #Wisconsin the blue wall!!! @FoxNews"},{"id":796206995804143600,"created_at":"Wed Nov 09 04:25:15 +0000 2016","date":"November 08, 2016","hour":20,"text":"@Dexter_A_Taylor @tedcruz yep and when this is all done, let's drain the swamp."},{"id":796201424275251200,"created_at":"Wed Nov 09 04:03:06 +0000 2016","date":"November 08, 2016","hour":20,"text":"To Quote @POTUS if we win #Florida this is over.... well, how bout that!!!!@FoxNews #ElectionDay"},{"id":796200965108072400,"created_at":"Wed Nov 09 04:01:17 +0000 2016","date":"November 08, 2016","hour":20,"text":"@Dexter_A_Taylor yes yes yes yes"},{"id":796200930991632400,"created_at":"Wed Nov 09 04:01:09 +0000 2016","date":"November 08, 2016","hour":20,"text":"RT @Dexter_A_Taylor: To all my republicans out in Florida https://t.co/rWb1AM6noz"},{"id":796200851115307000,"created_at":"Wed Nov 09 04:00:50 +0000 2016","date":"November 08, 2016","hour":20,"text":"And #florida how bout them apples!!!! @FoxNews"},{"id":796200402756792300,"created_at":"Wed Nov 09 03:59:03 +0000 2016","date":"November 08, 2016","hour":19,"text":"@cheriemaylene yasssss GO TIMBOB!!!!"},{"id":796199049548492800,"created_at":"Wed Nov 09 03:53:40 +0000 2016","date":"November 08, 2016","hour":19,"text":"And thank you @cheriemaylene for your vote!!! North Carolina wants to make america great again!!!"},{"id":796198348747378700,"created_at":"Wed Nov 09 03:50:53 +0000 2016","date":"November 08, 2016","hour":19,"text":"RT @Dexter_A_Taylor: NORTH CAROLINAAAAAAA!!!!! #ElectionNight https://t.co/VUvU2h5E3N"},{"id":796198229251682300,"created_at":"Wed Nov 09 03:50:25 +0000 2016","date":"November 08, 2016","hour":19,"text":"@JanuaryBeeler bumped. Yet again...too excited!!!"},{"id":796197415040716800,"created_at":"Wed Nov 09 03:47:11 +0000 2016","date":"November 08, 2016","hour":19,"text":"I just fist bumper my husband and daughter!!!! #northcarolinafortrump #ElectionNight"},{"id":796197056910159900,"created_at":"Wed Nov 09 03:45:45 +0000 2016","date":"November 08, 2016","hour":19,"text":"Thank you #NorthCarolina @FoxNews"},{"id":796196725807583200,"created_at":"Wed Nov 09 03:44:26 +0000 2016","date":"November 08, 2016","hour":19,"text":"@FoxNews @realDonaldTrump we can come together."},{"id":796196602889334800,"created_at":"Wed Nov 09 03:43:57 +0000 2016","date":"November 08, 2016","hour":19,"text":"@DonaldJTrumpJr @TomiLahren this is the BEST photo!!!"},{"id":796196419816329200,"created_at":"Wed Nov 09 03:43:13 +0000 2016","date":"November 08, 2016","hour":19,"text":"@MarkYoungTruth @chuckwoolery I will give any of them a ride that needs it!"},{"id":796196115406327800,"created_at":"Wed Nov 09 03:42:01 +0000 2016","date":"November 08, 2016","hour":19,"text":"@MarkYoungTruth @chuckwoolery it is thrilling!!!"},{"id":796195778884730900,"created_at":"Wed Nov 09 03:40:40 +0000 2016","date":"November 08, 2016","hour":19,"text":"@Dexter_A_Taylor @hijabae_ it was just so painful :/"},{"id":796195690569498600,"created_at":"Wed Nov 09 03:40:19 +0000 2016","date":"November 08, 2016","hour":19,"text":"RT @FoxNews: NEWS ALERT: Republicans will retain control of the House. #ElectionNight #FoxNews2016 https://t.co/srb0kDQyAE"},{"id":796195654368460800,"created_at":"Wed Nov 09 03:40:11 +0000 2016","date":"November 08, 2016","hour":19,"text":"@kilmeade @HillaryClinton @foxandfriends never!!!"},{"id":796195179816505300,"created_at":"Wed Nov 09 03:38:18 +0000 2016","date":"November 08, 2016","hour":19,"text":"RT @CristinaCorbin: Trump wins critical swing state of Ohio #ElectionNight"},{"id":796192006645157900,"created_at":"Wed Nov 09 03:25:41 +0000 2016","date":"November 08, 2016","hour":19,"text":"@daily_squid yes you are!!!!"},{"id":796191817175879700,"created_at":"Wed Nov 09 03:24:56 +0000 2016","date":"November 08, 2016","hour":19,"text":"@Dexter_A_Taylor @hijabae_ I'm not these things and I voted for him."},{"id":796187224366862300,"created_at":"Wed Nov 09 03:06:41 +0000 2016","date":"November 08, 2016","hour":19,"text":"OMG I had to step away from my TV. Ahhahahah @FoxNews"},{"id":796183152800710700,"created_at":"Wed Nov 09 02:50:30 +0000 2016","date":"November 08, 2016","hour":18,"text":"@realDonaldTrump @mike_pence @MELANIATRUMP @EricTrump @DonaldJTrumpJr @IvankaTrump @TiffanyATrump @LaraLeaTrump y'all look like winners 2 me"},{"id":796182254485667800,"created_at":"Wed Nov 09 02:46:56 +0000 2016","date":"November 08, 2016","hour":18,"text":"@ashbethh nope. Not allowed. Sorry."},{"id":796180624046518300,"created_at":"Wed Nov 09 02:40:27 +0000 2016","date":"November 08, 2016","hour":18,"text":"@Dexter_A_Taylor @Stephen_Perkins it's what we were all saying. No body listens!!!!"},{"id":796177939322835000,"created_at":"Wed Nov 09 02:29:47 +0000 2016","date":"November 08, 2016","hour":18,"text":"@Dexter_A_Taylor yes! I am in #florida tonight. Let's paint the town red!!!!"},{"id":796174511330754600,"created_at":"Wed Nov 09 02:16:10 +0000 2016","date":"November 08, 2016","hour":18,"text":"@MarkYoungTruth @chuckwoolery yes yes yes!!!"},{"id":796170548392972300,"created_at":"Wed Nov 09 02:00:25 +0000 2016","date":"November 08, 2016","hour":18,"text":"Here we go here we go here we go\n@FoxNews"},{"id":796168949599785000,"created_at":"Wed Nov 09 01:54:04 +0000 2016","date":"November 08, 2016","hour":17,"text":"@megynkelly @GovMikeHuckabee @realDonaldTrump yes!!!!!!!!"},{"id":796168181396160500,"created_at":"Wed Nov 09 01:51:01 +0000 2016","date":"November 08, 2016","hour":17,"text":"@FoxNews @daily_squid I wish we had a great women to vote for. But we don't."},{"id":796166911415451600,"created_at":"Wed Nov 09 01:45:58 +0000 2016","date":"November 08, 2016","hour":17,"text":"On this election night, all I need is twitter and my daughter!! @FoxNews @daily_squid"},{"id":796166406484201500,"created_at":"Wed Nov 09 01:43:58 +0000 2016","date":"November 08, 2016","hour":17,"text":"Oh my. We are pulling away with #Flordia yes yes yes!!!! @FoxNews"},{"id":796166243694870500,"created_at":"Wed Nov 09 01:43:19 +0000 2016","date":"November 08, 2016","hour":17,"text":"@megynkelly my eyes!!!! My eyes are on Florida!!! @FoxNews"},{"id":796165547566264300,"created_at":"Wed Nov 09 01:40:33 +0000 2016","date":"November 08, 2016","hour":17,"text":"@maddiegrace799 I don't know what this means. But I wish I could help!!!"},{"id":796165160306176000,"created_at":"Wed Nov 09 01:39:00 +0000 2016","date":"November 08, 2016","hour":17,"text":"I cannot deal with hanging chads! #florida @FoxNews"},{"id":796164857091543000,"created_at":"Wed Nov 09 01:37:48 +0000 2016","date":"November 08, 2016","hour":17,"text":"You alright Karl?? @KarlRove @FoxNews"},{"id":796164567307026400,"created_at":"Wed Nov 09 01:36:39 +0000 2016","date":"November 08, 2016","hour":17,"text":"@MarkYoungTruth @chuckwoolery yea yes yes yes yes!!!!!"},{"id":796163414372577300,"created_at":"Wed Nov 09 01:32:04 +0000 2016","date":"November 08, 2016","hour":17,"text":"@JanuaryBeeler pull that is. I'm too excited!!!!"},{"id":796163270428266500,"created_at":"Wed Nov 09 01:31:30 +0000 2016","date":"November 08, 2016","hour":17,"text":"#florida is literally making me puly hair out!!!@FoxNews"},{"id":796163010192621600,"created_at":"Wed Nov 09 01:30:28 +0000 2016","date":"November 08, 2016","hour":17,"text":"Here we go here we go here we go!!!"},{"id":796162413523595300,"created_at":"Wed Nov 09 01:28:06 +0000 2016","date":"November 08, 2016","hour":17,"text":"@FoxNews @RepToddYoung good news!!!"},{"id":796161805194326000,"created_at":"Wed Nov 09 01:25:40 +0000 2016","date":"November 08, 2016","hour":17,"text":"89% in Florida. So I see pregnant chads in our futur??? Please no!!!! @FoxNews #NeverHillary"},{"id":796160660417744900,"created_at":"Wed Nov 09 01:21:08 +0000 2016","date":"November 08, 2016","hour":17,"text":"@chuckwoolery lime what do you mean? They are doing a good job? I can't imagine watching them."},{"id":796160141926289400,"created_at":"Wed Nov 09 01:19:04 +0000 2016","date":"November 08, 2016","hour":17,"text":"#Florida is tied with 87% in. Whoa. Killin me!!!!! #ElectionNight @FoxNews"},{"id":796159503662219300,"created_at":"Wed Nov 09 01:16:32 +0000 2016","date":"November 08, 2016","hour":17,"text":"#Tennessee knows what's up!!! @FoxNews"},{"id":796159100140875800,"created_at":"Wed Nov 09 01:14:56 +0000 2016","date":"November 08, 2016","hour":17,"text":"@FoxNews @marcorubio yes!!!!"},{"id":796157037717651500,"created_at":"Wed Nov 09 01:06:44 +0000 2016","date":"November 08, 2016","hour":17,"text":"#florida is making me crazy! @FoxNews"},{"id":796155303792414700,"created_at":"Wed Nov 09 00:59:50 +0000 2016","date":"November 08, 2016","hour":16,"text":"Here we go here we go here we go!!!!!!"},{"id":796154652165308400,"created_at":"Wed Nov 09 00:57:15 +0000 2016","date":"November 08, 2016","hour":16,"text":"I keep seeing Tennessee every time I look at fox. I LOVE my home!!! #Tennessee @FoxNews"},{"id":796153864965783600,"created_at":"Wed Nov 09 00:54:07 +0000 2016","date":"November 08, 2016","hour":16,"text":"7 minutes!!!! Come on Florida!!!!@FoxNews"},{"id":796150649243189200,"created_at":"Wed Nov 09 00:41:21 +0000 2016","date":"November 08, 2016","hour":16,"text":"RT @Dexter_A_Taylor: LETS GO TRUMP!!!!"},{"id":796150512529842200,"created_at":"Wed Nov 09 00:40:48 +0000 2016","date":"November 08, 2016","hour":16,"text":"@megynkelly @KarlRove oh Karl say it isn't so!"},{"id":796150244832645100,"created_at":"Wed Nov 09 00:39:44 +0000 2016","date":"November 08, 2016","hour":16,"text":"https://t.co/9HFzQnfaao"},{"id":796147849809580000,"created_at":"Wed Nov 09 00:30:13 +0000 2016","date":"November 08, 2016","hour":16,"text":"Here we go here we go here we go....again @FoxNews"},{"id":796147707459018800,"created_at":"Wed Nov 09 00:29:39 +0000 2016","date":"November 08, 2016","hour":16,"text":"@antonia_okafor totally driving me crazy!!!"},{"id":796146269957853200,"created_at":"Wed Nov 09 00:23:57 +0000 2016","date":"November 08, 2016","hour":16,"text":"RT @FoxNews: National Popular Vote - with 2% in, @realDonaldTrump leads @HillaryClinton 55.4% to 41.4%. #ElectionNight #FoxNews2016 https:/…"},{"id":796146098427588600,"created_at":"Wed Nov 09 00:23:16 +0000 2016","date":"November 08, 2016","hour":16,"text":"RT @FoxNews: Moments ago, @mike_pence tweeted in response to @realDonaldTrump winning Indiana. #ElectionNight #Election2016 https://t.co/QG…"},{"id":796145804432015400,"created_at":"Wed Nov 09 00:22:06 +0000 2016","date":"November 08, 2016","hour":16,"text":"Oh no extended hours!!! I feel like this may be a while! @FoxNews"},{"id":796141219755806700,"created_at":"Wed Nov 09 00:03:53 +0000 2016","date":"November 08, 2016","hour":16,"text":"Wow too much Info at once. My mind is already blowing up!!! @FoxNews"},{"id":796140408795439100,"created_at":"Wed Nov 09 00:00:39 +0000 2016","date":"November 08, 2016","hour":16,"text":"Here we go here we go here we go!!! @FoxNews"},{"id":796139813367935000,"created_at":"Tue Nov 08 23:58:17 +0000 2016","date":"November 08, 2016","hour":15,"text":"@SheriffClarke I'm trying!!! I really am!!!"},{"id":796139731138576400,"created_at":"Tue Nov 08 23:57:58 +0000 2016","date":"November 08, 2016","hour":15,"text":"I feel like its been 100 years. Now it's 3 minutes away!!! @FoxNews"},{"id":796138962721116200,"created_at":"Tue Nov 08 23:54:54 +0000 2016","date":"November 08, 2016","hour":15,"text":"7 minutes y'all. I'm so excited for change!!! @FoxNews #NeverHillary @realDonaldTrump #ElectionDay #ElectionNight #Elections2016"},{"id":796133749306101800,"created_at":"Tue Nov 08 23:34:11 +0000 2016","date":"November 08, 2016","hour":15,"text":"30 minutes y'all! @FoxNews #NeverHillary #Benghazi @realDonaldTrump #AbortionIsMurder"},{"id":796133225039102000,"created_at":"Tue Nov 08 23:32:06 +0000 2016","date":"November 08, 2016","hour":15,"text":"@davidtravis1960 @FoxNews whatever. We are draining the swamp anyway!"},{"id":796132961204731900,"created_at":"Tue Nov 08 23:31:04 +0000 2016","date":"November 08, 2016","hour":15,"text":"I want the Presidency, Senate and House. Then we could really get some stuff done!"},{"id":796131077291176000,"created_at":"Tue Nov 08 23:23:34 +0000 2016","date":"November 08, 2016","hour":15,"text":"I don't know who this red headed Christina is but I don't like her @FoxNews"},{"id":796127567870824400,"created_at":"Tue Nov 08 23:09:38 +0000 2016","date":"November 08, 2016","hour":15,"text":"RT @VOICEOFCHID: Black activists: VOTE FOR HILLARY!\n*Hillary wins*\nBlack activists: Hillary, what's your agenda for African Americans?\nHill…"},{"id":796126742306029600,"created_at":"Tue Nov 08 23:06:21 +0000 2016","date":"November 08, 2016","hour":15,"text":"I would love to go to the polls with my daughter and vote for a woman. Not this time.But one day!!! #NeverHillary @realDonaldTrump @FoxNews"},{"id":796123359251664900,"created_at":"Tue Nov 08 22:52:54 +0000 2016","date":"November 08, 2016","hour":14,"text":"RT @realDonaldTrump: Just out according to @CNN: \"Utah officials report voting machine problems across entire country\""},{"id":796066945548296200,"created_at":"Tue Nov 08 19:08:44 +0000 2016","date":"November 08, 2016","hour":11,"text":"I hope everyone who has been chiming in for two years gets out and votes today!!!! TODAY IS THE DAY! USA USA USA USA"},{"id":796065973442908200,"created_at":"Tue Nov 08 19:04:52 +0000 2016","date":"November 08, 2016","hour":11,"text":"RT @rspin122112: @RealJamesWoods Butler Cty, PA experiencing machines that will not allow the voter to choose #Trump"},{"id":796065486559649800,"created_at":"Tue Nov 08 19:02:56 +0000 2016","date":"November 08, 2016","hour":11,"text":"RT @RealJamesWoods: The #Democrats will be relying on a level of #VoterFraud not seen since the 1960 #CookCounty atrocities. Report \"malfun…"},{"id":796016004627365900,"created_at":"Tue Nov 08 15:46:19 +0000 2016","date":"November 08, 2016","hour":7,"text":"RT @Dexter_A_Taylor: Wow! https://t.co/JbLyCTxJVz"}]},{"date":"2016-11-06T07:00:00.000Z","count":4,"values":[{"id":795475686316265500,"created_at":"Mon Nov 07 03:59:17 +0000 2016","date":"November 06, 2016","hour":19,"text":"RT @FoxNews: Voter fraud investigation - California woman sent 87 ballots addressed to others. https://t.co/ftF9KHMRyk"},{"id":795474928585887700,"created_at":"Mon Nov 07 03:56:16 +0000 2016","date":"November 06, 2016","hour":19,"text":"RT @grindingdude: BREAKING: TRUMP ATTACKER and Hillary Supporter – Has HIS DEAD GRANDMA VOTING at His Reno Address 6 times by mail https://…"},{"id":795315729830707200,"created_at":"Sun Nov 06 17:23:40 +0000 2016","date":"November 06, 2016","hour":9,"text":"RT @PrisonPlanet: Bernie supporter brings up Hillary's Wall Street connections, security drags him off stage, Hillary voters cheer. https:/…"},{"id":795313632884228100,"created_at":"Sun Nov 06 17:15:20 +0000 2016","date":"November 06, 2016","hour":9,"text":"RT @alinneabryan: Seriously. Beatings, shootings, vandalism. So many attacks on Trump rallies and supporters that have not been covered by…"}]},{"date":"2016-11-05T07:00:00.000Z","count":1,"values":[{"id":795118849616203800,"created_at":"Sun Nov 06 04:21:20 +0000 2016","date":"November 05, 2016","hour":21,"text":"RT @AshGoCrazyIII: If you vote for her because of this picture you are retarded https://t.co/Dqrd7vTiNb"}]},{"date":"2016-11-04T07:00:00.000Z","count":4,"values":[{"id":794729747834110000,"created_at":"Sat Nov 05 02:35:11 +0000 2016","date":"November 04, 2016","hour":19,"text":"@chuckwoolery :("},{"id":794556635398242300,"created_at":"Fri Nov 04 15:07:18 +0000 2016","date":"November 04, 2016","hour":8,"text":"@RealJamesWoods @washingtonpost \n the most ridiculous thing I have ever read. I laughed the whole way through it. It would make a great skit"},{"id":794555589661782000,"created_at":"Fri Nov 04 15:03:09 +0000 2016","date":"November 04, 2016","hour":8,"text":"RT @JustAdorabIe: Hello https://t.co/2mbAwmSPQE"},{"id":794555543679602700,"created_at":"Fri Nov 04 15:02:58 +0000 2016","date":"November 04, 2016","hour":8,"text":"RT @foxandfriends: 'Voter fraud'? California woman sent dozens of ballots addressed to others https://t.co/4ENiMuXOOZ"}]},{"date":"2016-11-03T07:00:00.000Z","count":1,"values":[{"id":794390070899998700,"created_at":"Fri Nov 04 04:05:26 +0000 2016","date":"November 03, 2016","hour":21,"text":"RT @TEN_GOP: BREAKING: #VoterFraud by counting tens of thousands of ineligible mail in Hillary votes being reported in Broward County, Flor…"}]},{"date":"2016-11-02T07:00:00.000Z","count":2,"values":[{"id":793963799631929300,"created_at":"Wed Nov 02 23:51:35 +0000 2016","date":"November 02, 2016","hour":16,"text":"RT @foxandfriends: .@CissieGLynch breaks from her family's tradition and endorses @realDonaldTrump for president https://t.co/2RZJZc2c0i ht…"},{"id":793858049635082200,"created_at":"Wed Nov 02 16:51:22 +0000 2016","date":"November 02, 2016","hour":9,"text":"RT @charliekirk11: Youth for Trump in OH tried to buy @Snapchat filter. Kept getting denied\n\nFor kicks they tried to buy student for Hillar…"}]},{"date":"2016-10-31T07:00:00.000Z","count":5,"values":[{"id":793254407437688800,"created_at":"Tue Nov 01 00:52:43 +0000 2016","date":"October 31, 2016","hour":17,"text":"RT @FoxNews: Utah mom told to abort high-risk pregnancy pens heartfelt letter 6 months after son's birth https://t.co/woEAAcCYX1 https://t…"},{"id":793153818938765300,"created_at":"Mon Oct 31 18:13:01 +0000 2016","date":"October 31, 2016","hour":11,"text":"@joshua_davidb shut it"},{"id":793150511755198500,"created_at":"Mon Oct 31 17:59:52 +0000 2016","date":"October 31, 2016","hour":10,"text":"RT @weknowwhatsbest: Yes, Pres Obama fully endorses for president the person his own administration has under criminal investigation. \nIt's…"},{"id":793150126881697800,"created_at":"Mon Oct 31 17:58:20 +0000 2016","date":"October 31, 2016","hour":10,"text":"RT @RealJamesWoods: New email shows DNC boss giving Clinton camp debate question in advance // Just another example of #RiggedMedia https:…"},{"id":793149259243786200,"created_at":"Mon Oct 31 17:54:54 +0000 2016","date":"October 31, 2016","hour":10,"text":"@joshua_davidb shut it"}]},{"date":"2016-10-30T07:00:00.000Z","count":3,"values":[{"id":792840004796121100,"created_at":"Sun Oct 30 21:26:02 +0000 2016","date":"October 30, 2016","hour":14,"text":"RT @FoxNews: .@SenRonJohnson: \"President Obama​ was emailing Secretary Clinton at ClintonEmail dot com. He had to know.\" #SundayFutures @Ma…"},{"id":792794522199752700,"created_at":"Sun Oct 30 18:25:18 +0000 2016","date":"October 30, 2016","hour":11,"text":"RT @FoxNews: 3 Arrested for Voter Fraud in Key Swing States\nhttps://t.co/zXIZvKlPjL"},{"id":792792738685124600,"created_at":"Sun Oct 30 18:18:12 +0000 2016","date":"October 30, 2016","hour":11,"text":"RT @Vol_Updates: Coming off a bye week, our team just did not look normal. Something was definitely off."}]},{"date":"2016-10-29T07:00:00.000Z","count":2,"values":[{"id":792577898733600800,"created_at":"Sun Oct 30 04:04:31 +0000 2016","date":"October 29, 2016","hour":21,"text":"RT @gamma_ray239: Democrats showing up for early voting today!!! https://t.co/rdeQOIlp8x"},{"id":792410126246379500,"created_at":"Sat Oct 29 16:57:51 +0000 2016","date":"October 29, 2016","hour":9,"text":"RT @AmiriKing: Suprisingly, Hillary has a ton of support from our military.\n\nI hear that a large amount of Civil War veterans are voting fo…"}]},{"date":"2016-10-28T07:00:00.000Z","count":8,"values":[{"id":792219809022939100,"created_at":"Sat Oct 29 04:21:35 +0000 2016","date":"October 28, 2016","hour":21,"text":"RT @ThemisSal: BREAKING: @HillaryClinton SPOTTED IN WHITE BRONCO ON THE 405 https://t.co/TojGOPDFEG"},{"id":792215862841311200,"created_at":"Sat Oct 29 04:05:55 +0000 2016","date":"October 28, 2016","hour":21,"text":"RT @antonia_okafor: All those \"Republicans for @HillaryClinton \" right now... #wikileaks #fbi https://t.co/se2Ql640D9"},{"id":792095576284360700,"created_at":"Fri Oct 28 20:07:56 +0000 2016","date":"October 28, 2016","hour":13,"text":"RT @TomiLahren: Freedom Friday! https://t.co/9QVimskmSp"},{"id":792095400840888300,"created_at":"Fri Oct 28 20:07:14 +0000 2016","date":"October 28, 2016","hour":13,"text":"RT @CristinaCorbin: NBC: The FBI will re-open the investigation into Hillary Clinton's email server https://t.co/V271M5Pzhh via @nbcnews"},{"id":792095300395597800,"created_at":"Fri Oct 28 20:06:50 +0000 2016","date":"October 28, 2016","hour":13,"text":"RT @chuckwoolery: Maryland Trump Supporter: They Switched My Vote to Hillary https://t.co/OPpaXCk5tN via @realalexjones"},{"id":792095264924401700,"created_at":"Fri Oct 28 20:06:42 +0000 2016","date":"October 28, 2016","hour":13,"text":"RT @chuckwoolery: Man Charged With Filing Fake Voter Registration Applications in Va. https://t.co/SHJSonweoS via @nbcwashington"},{"id":792095237845966800,"created_at":"Fri Oct 28 20:06:35 +0000 2016","date":"October 28, 2016","hour":13,"text":"RT @chuckwoolery: Two women busted for election fraud in Miami-Dade https://t.co/kplWSw2Caq"},{"id":792092966106136600,"created_at":"Fri Oct 28 19:57:34 +0000 2016","date":"October 28, 2016","hour":12,"text":"RT @foxandfriends: The FBI spent more time questioning Angelina Jolie in child abuse probe than they did questioning Hillary Clinton for em…"}]},{"date":"2016-10-27T07:00:00.000Z","count":2,"values":[{"id":791672218119991300,"created_at":"Thu Oct 27 16:05:40 +0000 2016","date":"October 27, 2016","hour":9,"text":"@carrieball1974 @AHSFX everybody gonna die!"},{"id":791671491242893300,"created_at":"Thu Oct 27 16:02:46 +0000 2016","date":"October 27, 2016","hour":9,"text":"RT @FoxNews: .@RandPaul: \"They want to have a single-payer system completely run by the government and I think that would be a disaster for…"}]},{"date":"2016-10-26T07:00:00.000Z","count":8,"values":[{"id":791457444966895600,"created_at":"Thu Oct 27 01:52:14 +0000 2016","date":"October 26, 2016","hour":18,"text":"RT @patti_rhea: @JanuaryBeeler it's back! https://t.co/bU13MloTJc"},{"id":791457271410819100,"created_at":"Thu Oct 27 01:51:32 +0000 2016","date":"October 26, 2016","hour":18,"text":"@patti_rhea @TweetLikeAGirI yasssssssssss"},{"id":791394961283514400,"created_at":"Wed Oct 26 21:43:56 +0000 2016","date":"October 26, 2016","hour":14,"text":"@chuckwoolery got it!!"},{"id":791381425719222300,"created_at":"Wed Oct 26 20:50:09 +0000 2016","date":"October 26, 2016","hour":13,"text":"RT @twentyonepilots: we’ll be performing at the 2016 @AMAs. https://t.co/hqytyRKDW6 https://t.co/RyTBetRVjP"},{"id":791355612546363400,"created_at":"Wed Oct 26 19:07:35 +0000 2016","date":"October 26, 2016","hour":12,"text":"RT @BigDaddyBremer: I'd like to take this moment to appreciate my liberal friends who have the common sense not to support Hillary https://…"},{"id":791355562692870100,"created_at":"Wed Oct 26 19:07:23 +0000 2016","date":"October 26, 2016","hour":12,"text":"RT @BigDaddyBremer: I don't know if Trump can fix it or not. To be honest I don't care for him all that much but Hillary Clinton? That's a…"},{"id":791355499543457800,"created_at":"Wed Oct 26 19:07:08 +0000 2016","date":"October 26, 2016","hour":12,"text":"RT @BigDaddyBremer: At this point in time, if you're referring to my country as the government, then you are 100% correct in saying I have…"},{"id":791355228671119400,"created_at":"Wed Oct 26 19:06:03 +0000 2016","date":"October 26, 2016","hour":12,"text":"RT @foxandfriends: Voters in Texas say machines changed Trump votes to Clinton, as petition to remove \"Soros-owned voting machines\" reaches…"}]},{"date":"2016-10-25T07:00:00.000Z","count":3,"values":[{"id":791132112158068700,"created_at":"Wed Oct 26 04:19:28 +0000 2016","date":"October 25, 2016","hour":21,"text":"Tennessee is greater than 50% now that's just great!!! https://t.co/aWSUHCSxHp"},{"id":790946247960043500,"created_at":"Tue Oct 25 16:00:55 +0000 2016","date":"October 25, 2016","hour":9,"text":"RT @chuckwoolery: #Conservatives sitting on the sidelines not voting for #Trump in order to save Conservatism or the #RepublicanParty is #P…"},{"id":790942749612712000,"created_at":"Tue Oct 25 15:47:01 +0000 2016","date":"October 25, 2016","hour":8,"text":"RT @chuckwoolery: #ObamaCare Alone should be the #bombshell that defeats #Hillary and the #Democrats the s fall. It's all lies."}]},{"date":"2016-10-23T07:00:00.000Z","count":1,"values":[{"id":790390496380072000,"created_at":"Mon Oct 24 03:12:33 +0000 2016","date":"October 23, 2016","hour":20,"text":"RT @ABCPolitics: Church bells ring for first time in 2 years after Iraqi forces liberate Christian town of Bartella en route to Mosul https…"}]},{"date":"2016-10-22T07:00:00.000Z","count":2,"values":[{"id":790001523551907800,"created_at":"Sun Oct 23 01:26:55 +0000 2016","date":"October 22, 2016","hour":18,"text":"RT @BlackSheep_UTK: There are only two types of Knoxville weather: https://t.co/mECGsl4fZv"},{"id":789992323312517100,"created_at":"Sun Oct 23 00:50:21 +0000 2016","date":"October 22, 2016","hour":17,"text":"RT @twentyonepilots: Josh and I can't believe we get to play our music in Russia.\nSo proud.\nMoscow was amazing.\nSt. Petersburg tomorrow."}]},{"date":"2016-10-21T07:00:00.000Z","count":2,"values":[{"id":789604127114494000,"created_at":"Fri Oct 21 23:07:48 +0000 2016","date":"October 21, 2016","hour":16,"text":"RT @BabyAnimalPics: First Pit Bull police dog in New York! https://t.co/eHZg8pG5wQ"},{"id":789507789106405400,"created_at":"Fri Oct 21 16:44:59 +0000 2016","date":"October 21, 2016","hour":9,"text":"RT @chuckwoolery: The Left treats the #Constitution like it's a misunderstood child."}]},{"date":"2016-10-20T07:00:00.000Z","count":6,"values":[{"id":789304717755187200,"created_at":"Fri Oct 21 03:18:03 +0000 2016","date":"October 20, 2016","hour":20,"text":"RT @phillipfulmer: Great being on the field to honor the best QB to ever play the game. Congrats to Peyton! Go Vols! https://t.co/qsR…"},{"id":789304238581178400,"created_at":"Fri Oct 21 03:16:09 +0000 2016","date":"October 20, 2016","hour":20,"text":"RT @IngrahamAngle: YES. @TedCruz totally right. https://t.co/w6Ous5OkCB"},{"id":789287118967156700,"created_at":"Fri Oct 21 02:08:08 +0000 2016","date":"October 20, 2016","hour":19,"text":"@chuckwoolery https://t.co/vryTeg2Eh3"},{"id":789286391125377000,"created_at":"Fri Oct 21 02:05:14 +0000 2016","date":"October 20, 2016","hour":19,"text":"@FoxNews @HillaryClinton how would you know how that feels?"},{"id":789282722468405200,"created_at":"Fri Oct 21 01:50:39 +0000 2016","date":"October 20, 2016","hour":18,"text":"RT @Dexter_A_Taylor: If anything Trump is just exposing the fakes and non loyal people in our party and honestly we don't need people like…"},{"id":789250670247325700,"created_at":"Thu Oct 20 23:43:18 +0000 2016","date":"October 20, 2016","hour":16,"text":"RT @KiiNGKnockOut: The DNC is buying minority votes with Tax payer money. This has destroyed black and Hispanic communities and got us to w…"}]},{"date":"2016-10-19T07:00:00.000Z","count":65,"values":[{"id":788949077400707100,"created_at":"Thu Oct 20 03:44:52 +0000 2016","date":"October 19, 2016","hour":20,"text":"RT @ashbethh: When there's a debate I can always count on @JanuaryBeeler to be in my feed 😂😂"},{"id":788948861826035700,"created_at":"Thu Oct 20 03:44:01 +0000 2016","date":"October 19, 2016","hour":20,"text":"@ashbethh I get fired up!!!"},{"id":788948098064248800,"created_at":"Thu Oct 20 03:40:59 +0000 2016","date":"October 19, 2016","hour":20,"text":"@CeciliaMGardner @Dexter_A_Taylor and tonight she was bragging about their accomplishments there."},{"id":788941336317689900,"created_at":"Thu Oct 20 03:14:07 +0000 2016","date":"October 19, 2016","hour":20,"text":"@travisdkilgore I did have a small businesses. It was insurance based. 1 1/2 years after Affordable care act rolled out, my business tanked"},{"id":788937883700891600,"created_at":"Thu Oct 20 03:00:23 +0000 2016","date":"October 19, 2016","hour":20,"text":"RT @sam_welt: Hillary has the same mindset of LBJ. All talk, no action just to obtain minority votes. It's disgusting. https://t.co/GP9xa63…"},{"id":788932827349786600,"created_at":"Thu Oct 20 02:40:18 +0000 2016","date":"October 19, 2016","hour":19,"text":"VOTE! VOTE! VOTE! VOTE! VOTE! VOTE! VOTE! VOTE! VOTE! VOTE!\nVOTE! VOTE! VOTE! VOTE! VOTE! VOTE! VOTE! VOTE! VOTE! VOTE!\nVOTE! VOTE! #DEBATE"},{"id":788932418702946300,"created_at":"Thu Oct 20 02:38:40 +0000 2016","date":"October 19, 2016","hour":19,"text":"LAW! ORDER! &amp; JUSTICE!\n#debatenight #debate"},{"id":788932174321901600,"created_at":"Thu Oct 20 02:37:42 +0000 2016","date":"October 19, 2016","hour":19,"text":"@HillaryClinton will stand up for families. Unless you don't want your babies, those you can go ahead and kill! #debatenight #debate"},{"id":788931924764995600,"created_at":"Thu Oct 20 02:36:43 +0000 2016","date":"October 19, 2016","hour":19,"text":"@MarkYoungTruth @chuckwoolery and babies!"},{"id":788931817554321400,"created_at":"Thu Oct 20 02:36:17 +0000 2016","date":"October 19, 2016","hour":19,"text":"@chuckwoolery and don't forget to kill the babies!"},{"id":788930142739378200,"created_at":"Thu Oct 20 02:29:38 +0000 2016","date":"October 19, 2016","hour":19,"text":"@HillaryClinton looks like she really needs a nap! #debatenight"},{"id":788929945825194000,"created_at":"Thu Oct 20 02:28:51 +0000 2016","date":"October 19, 2016","hour":19,"text":"RT @MarkYoungTruth: Who do you think won this debate?"},{"id":788928731414835200,"created_at":"Thu Oct 20 02:24:01 +0000 2016","date":"October 19, 2016","hour":19,"text":"Lots of luck @HillaryClinton Thanks for doing such a great JOB! #debatenight"},{"id":788928562828935200,"created_at":"Thu Oct 20 02:23:21 +0000 2016","date":"October 19, 2016","hour":19,"text":"RT @AnnCoulter: How many Americans lie awake at night bc 1) Obamacare premium skyrocketed 2) Kids are addicted to heroin 3) Job's been outs…"},{"id":788927925936500700,"created_at":"Thu Oct 20 02:20:49 +0000 2016","date":"October 19, 2016","hour":19,"text":"I'm amazed that you think you can make us believe that you made a good deal with Iran. It's horrible and it may get all of us killed #debate"},{"id":788927402550321200,"created_at":"Thu Oct 20 02:18:44 +0000 2016","date":"October 19, 2016","hour":19,"text":"Google @HillaryClinton lies. Let's see what that will get us? #debatenight"},{"id":788927053655519200,"created_at":"Thu Oct 20 02:17:21 +0000 2016","date":"October 19, 2016","hour":19,"text":"RT @antonia_okafor: .@algore right now while @HillaryClinton talks about it being \"horrifying\" that @realDonaldTrump would not immediately…"},{"id":788926266657210400,"created_at":"Thu Oct 20 02:14:14 +0000 2016","date":"October 19, 2016","hour":19,"text":"RT @PizzaPartyBen: https://t.co/7o48TGli2t"},{"id":788926162818863100,"created_at":"Thu Oct 20 02:13:49 +0000 2016","date":"October 19, 2016","hour":19,"text":"She can't confront anything. She will not even admit we have a serious problem. She can't even say it! #debatenight"},{"id":788925681946071000,"created_at":"Thu Oct 20 02:11:54 +0000 2016","date":"October 19, 2016","hour":19,"text":"@DOglefishing @realDonaldTrump bhahahahahahhshshahah!!!!"},{"id":788925298725183500,"created_at":"Thu Oct 20 02:10:23 +0000 2016","date":"October 19, 2016","hour":19,"text":"RT @Drisch98: I CAN'T RETWEET THIS ENOUGH 👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏 https://t.co/6fcNoXLVxa"},{"id":788925139358396400,"created_at":"Thu Oct 20 02:09:45 +0000 2016","date":"October 19, 2016","hour":19,"text":"RT @AnnCoulter: Trump was obsessively asked if he'd pledge to support the GOP nominee. He agreed. They betrayed him."},{"id":788925091996282900,"created_at":"Thu Oct 20 02:09:34 +0000 2016","date":"October 19, 2016","hour":19,"text":"RT @TomiLahren: Dems need dead people, felons and illegals to vote to win elections. #debatenight"},{"id":788924737720156200,"created_at":"Thu Oct 20 02:08:09 +0000 2016","date":"October 19, 2016","hour":19,"text":"Lord have mercy with her smile! She really creeps me out!!! #debatenight"},{"id":788924566047367200,"created_at":"Thu Oct 20 02:07:28 +0000 2016","date":"October 19, 2016","hour":19,"text":"@realDonaldTrump with his taxes only followed the law. Why would he pay if he doesn't have to? Are people this stupid? #debatenight"},{"id":788924098415964200,"created_at":"Thu Oct 20 02:05:37 +0000 2016","date":"October 19, 2016","hour":19,"text":"No one cares about Donald Trump's taxes....No ONE!!!! #debatenight"},{"id":788923914986528800,"created_at":"Thu Oct 20 02:04:53 +0000 2016","date":"October 19, 2016","hour":19,"text":"Haitians do hate the Clintons!!! #debatenight"},{"id":788923753920999400,"created_at":"Thu Oct 20 02:04:15 +0000 2016","date":"October 19, 2016","hour":19,"text":"She thinks pushing gays off buildings is FUNNY????? #debatenight"},{"id":788923588518621200,"created_at":"Thu Oct 20 02:03:35 +0000 2016","date":"October 19, 2016","hour":19,"text":"Pivot pivot pivot!!!#debatenight"},{"id":788923506645831700,"created_at":"Thu Oct 20 02:03:16 +0000 2016","date":"October 19, 2016","hour":19,"text":"Yay! Someone brought up the Clinton Foundation! And she is still lying through her teeth!! #debatenight"},{"id":788922220567339000,"created_at":"Thu Oct 20 01:58:09 +0000 2016","date":"October 19, 2016","hour":18,"text":"@HillaryClinton you think its OK to get a child rapist out of jail. And threaten women who have been assaulted. #debatenight"},{"id":788921754131374100,"created_at":"Thu Oct 20 01:56:18 +0000 2016","date":"October 19, 2016","hour":18,"text":"RT @AnnCoulter: While he was running a company in the 70s she was getting a child rapist off in court."},{"id":788921676629102600,"created_at":"Thu Oct 20 01:55:59 +0000 2016","date":"October 19, 2016","hour":18,"text":"@travisdkilgore I'm talking about cuts across the board. I'm not sitting on any money. My taxes are out of control."},{"id":788921095558602800,"created_at":"Thu Oct 20 01:53:41 +0000 2016","date":"October 19, 2016","hour":18,"text":"@TomiLahren she always laughs. That creepy, freak me the F out, grin. I think it's her meds!!!"},{"id":788920574969913300,"created_at":"Thu Oct 20 01:51:37 +0000 2016","date":"October 19, 2016","hour":18,"text":"What you have done has turned out badly!!! #debatenight"},{"id":788920381914492900,"created_at":"Thu Oct 20 01:50:51 +0000 2016","date":"October 19, 2016","hour":18,"text":"@travisdkilgore we have??? Tax cuts don't work? I pay a shit ton of taxes. Nothing has been cut for me. If they were I'd pay my peeps more!"},{"id":788919959397085200,"created_at":"Thu Oct 20 01:49:10 +0000 2016","date":"October 19, 2016","hour":18,"text":"Was it not a Republican congress that pushed for the debt reduction while rapist Bill was POTUS? She can't take cred for that! #debatenight"},{"id":788919523017535500,"created_at":"Thu Oct 20 01:47:26 +0000 2016","date":"October 19, 2016","hour":18,"text":"We know you were in the Senate and that you were sec. of State. We also know that you haven't done ONE meaningful thing for 30yrs #debate"},{"id":788918986217885700,"created_at":"Thu Oct 20 01:45:18 +0000 2016","date":"October 19, 2016","hour":18,"text":"By the way. There is NOTHING wrong with massive tax cuts!!! #debatenight"},{"id":788918757599043600,"created_at":"Thu Oct 20 01:44:23 +0000 2016","date":"October 19, 2016","hour":18,"text":"RT @chuckwoolery: Well under Hillary if you survive being born you can have free college. #debatenight https://t.co/h0FNYK1ckL"},{"id":788918491378126800,"created_at":"Thu Oct 20 01:43:20 +0000 2016","date":"October 19, 2016","hour":18,"text":"RT @exjon: \"I want to make college debt-free. You won't get a bill for school. I want to ride a unicorn made of cotton candy.\""},{"id":788918247378694100,"created_at":"Thu Oct 20 01:42:22 +0000 2016","date":"October 19, 2016","hour":18,"text":"College will NOT be free. Someone will pay for it...like, me. No thanks! #debatenight"},{"id":788918004385914900,"created_at":"Thu Oct 20 01:41:24 +0000 2016","date":"October 19, 2016","hour":18,"text":"Do YOU pay woman as much as you do men that work for you? No, you don't. You should but dont #debatenight"},{"id":788916336898355200,"created_at":"Thu Oct 20 01:34:46 +0000 2016","date":"October 19, 2016","hour":18,"text":"Oh no @HillaryClinton is starting with that grin again! NIGHTMARES!!! #debatenight"},{"id":788915749133824000,"created_at":"Thu Oct 20 01:32:26 +0000 2016","date":"October 19, 2016","hour":18,"text":"GREAT PIVOT!!!! #debatenight"},{"id":788915627272446000,"created_at":"Thu Oct 20 01:31:57 +0000 2016","date":"October 19, 2016","hour":18,"text":"But did you say you want some open borders???? #debatenight"},{"id":788915500730445800,"created_at":"Thu Oct 20 01:31:27 +0000 2016","date":"October 19, 2016","hour":18,"text":"@Dexter_A_Taylor @strwberrybeatle id there is a person in there?They should have rights too.Cause they r a human and humans deserve rights"},{"id":788914083080785900,"created_at":"Thu Oct 20 01:25:49 +0000 2016","date":"October 19, 2016","hour":18,"text":"Well if Carla's parents are breaking the law...just cause they are sweetie pies...they are still breaking the law! #debatenight"},{"id":788913630100148200,"created_at":"Thu Oct 20 01:24:01 +0000 2016","date":"October 19, 2016","hour":18,"text":"@HillaryClinton her dream is to have \"open borders\" not a good idea!!! #debate #debatenight"},{"id":788913354165198800,"created_at":"Thu Oct 20 01:22:55 +0000 2016","date":"October 19, 2016","hour":18,"text":"I call BS. Most abortion cases are NOT because of health of the mother. It is murder of a person. We have legalized murder of people #debate"},{"id":788912894033350700,"created_at":"Thu Oct 20 01:21:05 +0000 2016","date":"October 19, 2016","hour":18,"text":"@HillaryClinton is okey dokey with killing children who could live if born. #debatenight it is NOT OK with me!"},{"id":788912468344963100,"created_at":"Thu Oct 20 01:19:24 +0000 2016","date":"October 19, 2016","hour":18,"text":"Yes!!! DEFUND PLANNED PARENTHOOD!!!!! DO YOU REMEMEBER THE BABIES BODY PARTS BEING SOLD?? #debatenight"},{"id":788911722673287200,"created_at":"Thu Oct 20 01:16:26 +0000 2016","date":"October 19, 2016","hour":18,"text":"The lying has begun #debatenight"},{"id":788911664871592000,"created_at":"Thu Oct 20 01:16:12 +0000 2016","date":"October 19, 2016","hour":18,"text":"Excuse me... there IS doubt...that you support the 2nd amendment. @HillaryClinton #debatenight"},{"id":788911029958737900,"created_at":"Thu Oct 20 01:13:41 +0000 2016","date":"October 19, 2016","hour":18,"text":"How many of those are legal gun owners Hillary? #debatenight"},{"id":788910912769892400,"created_at":"Thu Oct 20 01:13:13 +0000 2016","date":"October 19, 2016","hour":18,"text":"Guns!!!! Another huge issue. #debatenight she does NOT sopport the 2nd amendment."},{"id":788910493079515100,"created_at":"Thu Oct 20 01:11:33 +0000 2016","date":"October 19, 2016","hour":18,"text":"Is @realDonaldTrump voice weird tonight? #debatenight"},{"id":788910116724551700,"created_at":"Thu Oct 20 01:10:03 +0000 2016","date":"October 19, 2016","hour":18,"text":"@carrieball1974 no debate for you?"},{"id":788910048537751600,"created_at":"Thu Oct 20 01:09:47 +0000 2016","date":"October 19, 2016","hour":18,"text":"Everyone has rights....except babies....NO rights for babies!!!#debatenight"},{"id":788909851443236900,"created_at":"Thu Oct 20 01:09:00 +0000 2016","date":"October 19, 2016","hour":18,"text":"@TomiLahren coughing already"},{"id":788909647667212300,"created_at":"Thu Oct 20 01:08:11 +0000 2016","date":"October 19, 2016","hour":18,"text":"To me the supreme Court is the most important issue for this election. #debatenight"},{"id":788909282741751800,"created_at":"Thu Oct 20 01:06:44 +0000 2016","date":"October 19, 2016","hour":18,"text":"Here we go!!!! #debatenight"},{"id":788906725210411000,"created_at":"Thu Oct 20 00:56:35 +0000 2016","date":"October 19, 2016","hour":17,"text":"Y'all ready for this? #debatenight"},{"id":788906476647555100,"created_at":"Thu Oct 20 00:55:35 +0000 2016","date":"October 19, 2016","hour":17,"text":"@SteveMartinToGo Absolutely!"},{"id":788783865590607900,"created_at":"Wed Oct 19 16:48:23 +0000 2016","date":"October 19, 2016","hour":9,"text":"Where are all the environmental activists? Where is the outrage? https://t.co/C171db1gSM"}]},{"date":"2016-10-18T07:00:00.000Z","count":9,"values":[{"id":788465440259465200,"created_at":"Tue Oct 18 19:43:04 +0000 2016","date":"October 18, 2016","hour":12,"text":"RT @TomiLahren: So DNC/Hillary's hit squad pay people to incite violence at Trump rallies and yet the media is still covering Trump allegat…"},{"id":788463873854693400,"created_at":"Tue Oct 18 19:36:51 +0000 2016","date":"October 18, 2016","hour":12,"text":"@FoxNews @FoxNewsInsider https://t.co/yMr3ZLqGIq"},{"id":788425402553364500,"created_at":"Tue Oct 18 17:03:58 +0000 2016","date":"October 18, 2016","hour":10,"text":"@oreillyfactor https://t.co/yMr3ZLqGIq"},{"id":788425204095717400,"created_at":"Tue Oct 18 17:03:11 +0000 2016","date":"October 18, 2016","hour":10,"text":"@realDonaldTrump https://t.co/yMr3ZLqGIq"},{"id":788425067696914400,"created_at":"Tue Oct 18 17:02:39 +0000 2016","date":"October 18, 2016","hour":10,"text":"@AllenWest https://t.co/yMr3ZLqGIq"},{"id":788424991083728900,"created_at":"Tue Oct 18 17:02:20 +0000 2016","date":"October 18, 2016","hour":10,"text":"@foxnewspolitics @FoxNews @AdamShawNY https://t.co/yMr3ZLqGIq"},{"id":788424802054864900,"created_at":"Tue Oct 18 17:01:35 +0000 2016","date":"October 18, 2016","hour":10,"text":"@TomiLahren https://t.co/yMr3ZLqGIq"},{"id":788424704600186900,"created_at":"Tue Oct 18 17:01:12 +0000 2016","date":"October 18, 2016","hour":10,"text":"@SheriffClarke https://t.co/yMr3ZLqGIq"},{"id":788424360289853400,"created_at":"Tue Oct 18 16:59:50 +0000 2016","date":"October 18, 2016","hour":9,"text":"Oh my goodness?!?! Why isn't this everywhere?\nhttps://t.co/yMr3ZLqGIq\n@FoxNews @cnnbrk @MSNBC @CBSNews @BBCBreaking @BBCAMERICA @TomiLahren"}]},{"date":"2016-10-17T07:00:00.000Z","count":4,"values":[{"id":788046967108534300,"created_at":"Mon Oct 17 16:00:12 +0000 2016","date":"October 17, 2016","hour":9,"text":"RT @FoxNews: FBI releases docs showing a State Dept exec wanted changes to email classification that would benefit dept &amp; shield HRC, Herri…"},{"id":788037208758296600,"created_at":"Mon Oct 17 15:21:26 +0000 2016","date":"October 17, 2016","hour":8,"text":"RT @realDonaldTrump: Unbelievable. https://t.co/D7kpxlQPwU"},{"id":788033714840150000,"created_at":"Mon Oct 17 15:07:33 +0000 2016","date":"October 17, 2016","hour":8,"text":"@HeatherNauert @foxandfriends Well, let's give them some more money."},{"id":788032325326020600,"created_at":"Mon Oct 17 15:02:01 +0000 2016","date":"October 17, 2016","hour":8,"text":"RT @foxandfriends: Trump vs Clinton on gun control https://t.co/HSOGoBKBvn"}]},{"date":"2016-10-16T07:00:00.000Z","count":21,"values":[{"id":787837528883601400,"created_at":"Mon Oct 17 02:07:58 +0000 2016","date":"October 16, 2016","hour":19,"text":"RT @DRUDGE: Media CAN'T cover WikiLeaks Podesta shitstorm - because so much of it involves them! Will take a generation to recover from thi…"},{"id":787836603377025000,"created_at":"Mon Oct 17 02:04:18 +0000 2016","date":"October 16, 2016","hour":19,"text":"RT @PrisonPlanet: Reminder: Bill Clinton given $1 million birthday check by Qatar.\n\nQatar funds ISIS, throws gays in jail &amp; legalizes rape…"},{"id":787830443286618100,"created_at":"Mon Oct 17 01:39:49 +0000 2016","date":"October 16, 2016","hour":18,"text":"@OnMessageForHer @AnnCoulter for real!!!"},{"id":787829773695344600,"created_at":"Mon Oct 17 01:37:09 +0000 2016","date":"October 16, 2016","hour":18,"text":"@TPCarney @AnnCoulter @TheFix bahahahahhaha. Does ANYONE really believe this crap???"},{"id":787827280710164500,"created_at":"Mon Oct 17 01:27:15 +0000 2016","date":"October 16, 2016","hour":18,"text":"RT @AnnCoulter: A black boxer speaks up; Ruth Ginsburg backs down: Mayweather declares ‘All Lives Matter’, calls out Kaepernick https://t.c…"},{"id":787812751523483600,"created_at":"Mon Oct 17 00:29:31 +0000 2016","date":"October 16, 2016","hour":17,"text":"RT @THEHermanCain: No, I won't bail on Trump after the next firestorm either https://t.co/cj0yzdTsEr https://t.co/ICC0OstDzV"},{"id":787772925491327000,"created_at":"Sun Oct 16 21:51:16 +0000 2016","date":"October 16, 2016","hour":14,"text":"@realDonaldTrump Don't attack Republicans. Let them go. Deal with later. Focus on HRC and election. We are paying attention. We won't forget"},{"id":787771198973222900,"created_at":"Sun Oct 16 21:44:24 +0000 2016","date":"October 16, 2016","hour":14,"text":"RT @DeplorableChri1: Jill Stein endorses Donald Trump over Hillary Clinton https://t.co/HJYmmDCrAR"},{"id":787771173652226000,"created_at":"Sun Oct 16 21:44:18 +0000 2016","date":"October 16, 2016","hour":14,"text":"RT @KelemenCari: Don't believe the polls, believe your eyes.\n👇🏻This is Tim Kaine's \"rally\" today in Miami, FL. Attendance: 50 https://t.co/…"},{"id":787769744120164400,"created_at":"Sun Oct 16 21:38:37 +0000 2016","date":"October 16, 2016","hour":14,"text":"RT @PrisonPlanet: Former Bernie campaign director endorses Trump, slams Hillary's elitism.\n\nPowerful rant. https://t.co/KzVMkmy9mz"},{"id":787769602000298000,"created_at":"Sun Oct 16 21:38:03 +0000 2016","date":"October 16, 2016","hour":14,"text":"RT @mposner: WaPo can't print any of these WikiLeaks stories -- because it implicates them as an active participant in the Team Clinton cab…"},{"id":787769224357740500,"created_at":"Sun Oct 16 21:36:33 +0000 2016","date":"October 16, 2016","hour":14,"text":"RT @GOPBlackChick: WikiLeaks emails show Clinton campaign collected data to discredit Bill Clinton accuser https://t.co/y7Hv6z1pIn"},{"id":787718209579483100,"created_at":"Sun Oct 16 18:13:50 +0000 2016","date":"October 16, 2016","hour":11,"text":"@MicahAlexanderB let's do it babe!!!"},{"id":787648024197468200,"created_at":"Sun Oct 16 13:34:57 +0000 2016","date":"October 16, 2016","hour":6,"text":"@MicahAlexanderB I'm gonna Jeremiah 29:11 you....side note, Jer 29:11 also a life saver!!!!"},{"id":787647678591098900,"created_at":"Sun Oct 16 13:33:35 +0000 2016","date":"October 16, 2016","hour":6,"text":"@MicahAlexanderB who is upset? Non one should be upset? Why can peeps have a convo without peeps getting upset? #whycantwejusttalk"},{"id":787647411481030700,"created_at":"Sun Oct 16 13:32:31 +0000 2016","date":"October 16, 2016","hour":6,"text":"@MicahAlexanderB They are Christians who are in a band."},{"id":787645591195033600,"created_at":"Sun Oct 16 13:25:17 +0000 2016","date":"October 16, 2016","hour":6,"text":"@MicahAlexanderB I'm not sure...but he does say the spirit specifically many times. #threeinonebro"},{"id":787644171104378900,"created_at":"Sun Oct 16 13:19:38 +0000 2016","date":"October 16, 2016","hour":6,"text":"@MicahAlexanderB No THING can save a life eternally on it's own .If that is what you are looking for you won't find it in ANY music."},{"id":787643059081089000,"created_at":"Sun Oct 16 13:15:13 +0000 2016","date":"October 16, 2016","hour":6,"text":"@MicahAlexanderB \n\"We're driving toward the morning, son\nWhere all your blood is washed away and all you did will be undone.\""},{"id":787641540751396900,"created_at":"Sun Oct 16 13:09:11 +0000 2016","date":"October 16, 2016","hour":6,"text":"@MicahAlexanderB Worship music? Always funny to me. This music, for a suicidal person can save a life. As it was intended, Thank GOD for it"},{"id":787641061900378100,"created_at":"Sun Oct 16 13:07:17 +0000 2016","date":"October 16, 2016","hour":6,"text":"@MicahAlexanderB no. My love. You are wrong in this one. It's not subliminal and it not sometimes. Promise! I can break it down. Life saver!"}]},{"date":"2016-10-15T07:00:00.000Z","count":9,"values":[{"id":787525797166874600,"created_at":"Sun Oct 16 05:29:16 +0000 2016","date":"October 15, 2016","hour":22,"text":"@MicahAlexanderB it 100% is Jesus music. I can help you if you need it!!! |-/"},{"id":787405570668048400,"created_at":"Sat Oct 15 21:31:31 +0000 2016","date":"October 15, 2016","hour":14,"text":"@MicahAlexanderB we are a 2nd half team!!! Watch out!!!"},{"id":787405469467881500,"created_at":"Sat Oct 15 21:31:07 +0000 2016","date":"October 15, 2016","hour":14,"text":"That missed feild goal is a omen for the 2nd half!!! GBO baby!!! #BAMAvsTENN"},{"id":787404677579100200,"created_at":"Sat Oct 15 21:27:59 +0000 2016","date":"October 15, 2016","hour":14,"text":"@UShistory1700 yes! Also, my son Stefen is getting his PhD from University of Virginia. Jefferson designed the campus and it is amazing!"},{"id":787404220378918900,"created_at":"Sat Oct 15 21:26:10 +0000 2016","date":"October 15, 2016","hour":14,"text":"@MicahAlexanderB how bout that field goal there......."},{"id":787394801507377200,"created_at":"Sat Oct 15 20:48:44 +0000 2016","date":"October 15, 2016","hour":13,"text":"@MicahAlexanderB how bout them vols baby?!?!?!??!"},{"id":787393653492756500,"created_at":"Sat Oct 15 20:44:10 +0000 2016","date":"October 15, 2016","hour":13,"text":"@MicahAlexanderB I will....right after we beat you!!!! #BAMAvsTENN"},{"id":787393305722093600,"created_at":"Sat Oct 15 20:42:47 +0000 2016","date":"October 15, 2016","hour":13,"text":"GBO #tnvs #BAMAvsTENN"},{"id":787392950225342500,"created_at":"Sat Oct 15 20:41:23 +0000 2016","date":"October 15, 2016","hour":13,"text":"GBO"}]},{"date":"2016-10-14T07:00:00.000Z","count":9,"values":[{"id":787131885046693900,"created_at":"Sat Oct 15 03:24:00 +0000 2016","date":"October 14, 2016","hour":20,"text":"RT @rbooth3: @JanuaryBeeler https://t.co/o9UUHO3cC7"},{"id":787131868521062400,"created_at":"Sat Oct 15 03:23:56 +0000 2016","date":"October 14, 2016","hour":20,"text":"@rbooth3 @BoobieTheGoat yasssss! I'm gonna hold ya to it!!!"},{"id":787004485679849500,"created_at":"Fri Oct 14 18:57:45 +0000 2016","date":"October 14, 2016","hour":11,"text":"RT @kinni00: The same day it was announced that Scalia was dead, Podesta &amp; cronies were already talking about who to replace him with #Wome…"},{"id":787003633158197200,"created_at":"Fri Oct 14 18:54:22 +0000 2016","date":"October 14, 2016","hour":11,"text":"RT @twentyonepilots: https://t.co/xcgVbcFCx1"},{"id":786954788432994300,"created_at":"Fri Oct 14 15:40:17 +0000 2016","date":"October 14, 2016","hour":8,"text":"@TomiLahren bhahahahaaaa. This made me laugh out loud. Some people and their own stupidity!"},{"id":786954579938127900,"created_at":"Fri Oct 14 15:39:27 +0000 2016","date":"October 14, 2016","hour":8,"text":"RT @AnnCoulter: Beyonce, cited by Michelle Obama as role model for her daughters, sings about \"pussy curvalicious, served delicious.\" Oh my…"},{"id":786954465836347400,"created_at":"Fri Oct 14 15:39:00 +0000 2016","date":"October 14, 2016","hour":8,"text":"RT @BenjaminSWatson: “Therefore having overlooked the times of ignorance, God is now declaring to men that all people everywhere should rep…"},{"id":786954352728633300,"created_at":"Fri Oct 14 15:38:33 +0000 2016","date":"October 14, 2016","hour":8,"text":"RT @Democrat_4Trump: Hillary's campaign lets workers rip up republican registration forms with impunity, without reporting it. Fraud! http…"},{"id":786952340825903100,"created_at":"Fri Oct 14 15:30:33 +0000 2016","date":"October 14, 2016","hour":8,"text":"RT @aCommonWhteGirl: Weather: *drops below 70*\nMe: *whispers* christmas https://t.co/e5wMpWKXIi"}]},{"date":"2016-10-13T07:00:00.000Z","count":2,"values":[{"id":786639543696920600,"created_at":"Thu Oct 13 18:47:36 +0000 2016","date":"October 13, 2016","hour":11,"text":"RT @FoxNews: Gingrich: Trump could beat Hillary by a margin that would be startling, but to do that he's got to focus in a way he's not use…"},{"id":786638720032055300,"created_at":"Thu Oct 13 18:44:20 +0000 2016","date":"October 13, 2016","hour":11,"text":"RT @ThePatriot143: RT=&gt;&gt;CAUGHT ON VIDEO=&gt; #CrookedHillary Supporters Commit Voter Fraud in Las Vegas — Again! https://t.co/uoMhwHmQKR"}]},{"date":"2016-10-11T07:00:00.000Z","count":8,"values":[{"id":785963664889241600,"created_at":"Tue Oct 11 22:01:54 +0000 2016","date":"October 11, 2016","hour":15,"text":"RT @Scarlett210: BREAKING NEWS: Donna Brazile saw questions anchors were going to ask b4 debate &amp; gave them to campaign. #debate #PodestaEm…"},{"id":785881223780446200,"created_at":"Tue Oct 11 16:34:19 +0000 2016","date":"October 11, 2016","hour":9,"text":"RT @chuckwoolery: Gun control keeps us safe, right? Wrong! Learn the facts on a new Blunt Force Truth. https://t.co/fp0YyHgii5 https://t.co…"},{"id":785880796838006800,"created_at":"Tue Oct 11 16:32:37 +0000 2016","date":"October 11, 2016","hour":9,"text":"RT @garydailydrift: Why media wont cover?@realDonaldTrump needs touse on Clinton at next debate @FoxNews @LouDobbs @oreillyfactor @brithume…"},{"id":785880582496526300,"created_at":"Tue Oct 11 16:31:46 +0000 2016","date":"October 11, 2016","hour":9,"text":"RT @cvaldary: Amazing: Real recording of shofar blast across the city of Jerusalem. https://t.co/mlBGzxn4ax"},{"id":785872203325648900,"created_at":"Tue Oct 11 15:58:28 +0000 2016","date":"October 11, 2016","hour":8,"text":"Oh no!!! Donald Trump thinks some women are more beautiful than others. Oh the horror....oh the shame.... https://t.co/viAWlpCBaL"},{"id":785869892012666900,"created_at":"Tue Oct 11 15:49:17 +0000 2016","date":"October 11, 2016","hour":8,"text":"@realDonaldTrump good!"},{"id":785868286487588900,"created_at":"Tue Oct 11 15:42:54 +0000 2016","date":"October 11, 2016","hour":8,"text":"RT @foxandfriends: .@IngrahamAngle: I am appalled at the idea that we're going to sacrifice 3 seats on the Supreme Court...because of Donal…"},{"id":785867611401752600,"created_at":"Tue Oct 11 15:40:13 +0000 2016","date":"October 11, 2016","hour":8,"text":"RT @foxandfriends: Hillary Clinton in 2013 private speech: They can't possibly vet all those refugees; don't know if jihadists are coming i…"}]},{"date":"2016-10-10T07:00:00.000Z","count":14,"values":[{"id":785707445364678700,"created_at":"Tue Oct 11 05:03:47 +0000 2016","date":"October 10, 2016","hour":22,"text":"Hillary Clinton needs to buy this, cause they were such good friends :) bhahahaaa https://t.co/njkcMM6uV2"},{"id":785705094574735400,"created_at":"Tue Oct 11 04:54:26 +0000 2016","date":"October 10, 2016","hour":21,"text":"But this was totally ok...even funny to the left. https://t.co/NnoteZCGMq"},{"id":785703583685705700,"created_at":"Tue Oct 11 04:48:26 +0000 2016","date":"October 10, 2016","hour":21,"text":"RT @RealJamesWoods: \"My dream is a hemispheric common market, with open trade and open borders.” - @HillaryClinton #Invasion https://t.co…"},{"id":785703442572570600,"created_at":"Tue Oct 11 04:47:53 +0000 2016","date":"October 10, 2016","hour":21,"text":"RT @RealJamesWoods: When will #ClintonFluffer @jaketapper have these #BillClinton rape victims on his show? He had \"Miss Universe\" on to te…"},{"id":785689746508959700,"created_at":"Tue Oct 11 03:53:27 +0000 2016","date":"October 10, 2016","hour":20,"text":"RT @PrisonPlanet: VIDEO: African-American man kicked out of Hillary event for wearing Bill Clinton RAPE t-shirt. https://t.co/x3iCNjFGRU"},{"id":785661179125432300,"created_at":"Tue Oct 11 01:59:56 +0000 2016","date":"October 10, 2016","hour":18,"text":"This is what it has come too....good grief! https://t.co/zAawN8dvUP"},{"id":785606947928150000,"created_at":"Mon Oct 10 22:24:26 +0000 2016","date":"October 10, 2016","hour":15,"text":"@FoxNews @realDonaldTrump @SpeakerRyan @FoxNewsInsider that's OK Mr. Trump. We are ALL paying attention the ones who walk away. Let em go."},{"id":785527033497526300,"created_at":"Mon Oct 10 17:06:53 +0000 2016","date":"October 10, 2016","hour":10,"text":"@SpeakerRyan is off my list....or rather he is NOW on my $@#&amp; List. No more votes for him. And that's sad cause I liked him a lot. https://t.co/TlS57hCWMG"},{"id":785525648542531600,"created_at":"Mon Oct 10 17:01:23 +0000 2016","date":"October 10, 2016","hour":10,"text":"My Tennessee peeps, TODAY is the LAST day U can register to vote before the election. So make sure U do!!!! #VoteYourFuture #ClintonVsTrump"},{"id":785521757310578700,"created_at":"Mon Oct 10 16:45:55 +0000 2016","date":"October 10, 2016","hour":9,"text":"@TezlynFigaro always!!!"},{"id":785515012185915400,"created_at":"Mon Oct 10 16:19:07 +0000 2016","date":"October 10, 2016","hour":9,"text":"No one needs the career Politicians. Let them go. We can do this without them. Then let's NEVER elect them for anything again! #TrumpWon"},{"id":785513719585321000,"created_at":"Mon Oct 10 16:13:59 +0000 2016","date":"October 10, 2016","hour":9,"text":"RT @CarmenMar55: Stay the course, Mr Trump! #debate https://t.co/IZW1FIEwIp"},{"id":785513645908242400,"created_at":"Mon Oct 10 16:13:41 +0000 2016","date":"October 10, 2016","hour":9,"text":"RT @antonia_okafor: 2day has a special place in my heart. I hope 1 day, mental illness will be taken as seriously as any physical ailment #…"},{"id":785502677409013800,"created_at":"Mon Oct 10 15:30:06 +0000 2016","date":"October 10, 2016","hour":8,"text":"RT @JanMorganMedia: Republican cowards who denigrate Trump, with our Supreme Court in jeopardy, put personal interest before America's futu…"}]},{"date":"2016-09-19T07:00:00.000Z","count":2,"values":[{"id":777971126865502200,"created_at":"Mon Sep 19 20:42:25 +0000 2016","date":"September 19, 2016","hour":13},{"id":778100161805516800,"created_at":"Tue Sep 20 05:15:09 +0000 2016","date":"September 19, 2016","hour":22,"text":"RT @Drunk_America: Remember that time Michelle Obama used Bill Clinton's cheating to say Hillary shouldn't be President? I do. https://t.c…"}]},{"date":"2016-09-15T07:00:00.000Z","count":16,"values":[{"id":776485643245322200,"created_at":"Thu Sep 15 18:19:38 +0000 2016","date":"September 15, 2016","hour":11},{"id":776484120293576700,"created_at":"Thu Sep 15 18:13:35 +0000 2016","date":"September 15, 2016","hour":11},{"id":776437962074533900,"created_at":"Thu Sep 15 15:10:10 +0000 2016","date":"September 15, 2016","hour":8},{"id":776451825138401300,"created_at":"Thu Sep 15 16:05:15 +0000 2016","date":"September 15, 2016","hour":9},{"id":776443465164914700,"created_at":"Thu Sep 15 15:32:02 +0000 2016","date":"September 15, 2016","hour":8},{"id":776442308644311000,"created_at":"Thu Sep 15 15:27:26 +0000 2016","date":"September 15, 2016","hour":8},{"id":776484860969889800,"created_at":"Thu Sep 15 18:16:31 +0000 2016","date":"September 15, 2016","hour":11},{"id":776446546669809700,"created_at":"Thu Sep 15 15:44:17 +0000 2016","date":"September 15, 2016","hour":8},{"id":776486056522715100,"created_at":"Thu Sep 15 18:21:16 +0000 2016","date":"September 15, 2016","hour":11},{"id":776452622542774300,"created_at":"Thu Sep 15 16:08:25 +0000 2016","date":"September 15, 2016","hour":9},{"id":776444153668350000,"created_at":"Thu Sep 15 15:34:46 +0000 2016","date":"September 15, 2016","hour":8},{"id":776442913521709000,"created_at":"Thu Sep 15 15:29:50 +0000 2016","date":"September 15, 2016","hour":8},{"id":776439962090614800,"created_at":"Thu Sep 15 15:18:07 +0000 2016","date":"September 15, 2016","hour":8},{"id":776452340660383700,"created_at":"Thu Sep 15 16:07:18 +0000 2016","date":"September 15, 2016","hour":9},{"id":776483107067224000,"created_at":"Thu Sep 15 18:09:33 +0000 2016","date":"September 15, 2016","hour":11},{"id":776451329363370000,"created_at":"Thu Sep 15 16:03:17 +0000 2016","date":"September 15, 2016","hour":9}]},{"date":"2016-09-18T07:00:00.000Z","count":6,"values":[{"id":777700289696571400,"created_at":"Mon Sep 19 02:46:12 +0000 2016","date":"September 18, 2016","hour":19},{"id":777701998099521500,"created_at":"Mon Sep 19 02:53:00 +0000 2016","date":"September 18, 2016","hour":19},{"id":777700241659170800,"created_at":"Mon Sep 19 02:46:01 +0000 2016","date":"September 18, 2016","hour":19},{"id":777755088404222000,"created_at":"Mon Sep 19 06:23:57 +0000 2016","date":"September 18, 2016","hour":23},{"id":777545964999569400,"created_at":"Sun Sep 18 16:32:58 +0000 2016","date":"September 18, 2016","hour":9},{"id":777545111387398100,"created_at":"Sun Sep 18 16:29:35 +0000 2016","date":"September 18, 2016","hour":9}]},{"date":"2016-09-10T07:00:00.000Z","count":8,"values":[{"id":774842988417679400,"created_at":"Sun Sep 11 05:32:18 +0000 2016","date":"September 10, 2016","hour":22},{"id":774771213474431000,"created_at":"Sun Sep 11 00:47:06 +0000 2016","date":"September 10, 2016","hour":17},{"id":774772437804281900,"created_at":"Sun Sep 11 00:51:58 +0000 2016","date":"September 10, 2016","hour":17},{"id":774778812995342300,"created_at":"Sun Sep 11 01:17:18 +0000 2016","date":"September 10, 2016","hour":18},{"id":774781928797003800,"created_at":"Sun Sep 11 01:29:41 +0000 2016","date":"September 10, 2016","hour":18},{"id":774789272926912500,"created_at":"Sun Sep 11 01:58:52 +0000 2016","date":"September 10, 2016","hour":18},{"id":774772336377618400,"created_at":"Sun Sep 11 00:51:34 +0000 2016","date":"September 10, 2016","hour":17},{"id":774819557240430600,"created_at":"Sun Sep 11 03:59:12 +0000 2016","date":"September 10, 2016","hour":20}]},{"date":"2016-09-13T07:00:00.000Z","count":2,"values":[{"id":775664223900885000,"created_at":"Tue Sep 13 11:55:36 +0000 2016","date":"September 13, 2016","hour":4},{"id":775800639674720300,"created_at":"Tue Sep 13 20:57:40 +0000 2016","date":"September 13, 2016","hour":13}]},{"date":"2016-08-27T07:00:00.000Z","count":2,"values":[{"id":769726622513655800,"created_at":"Sun Aug 28 02:41:42 +0000 2016","date":"August 27, 2016","hour":19},{"id":769580440772612100,"created_at":"Sat Aug 27 17:00:49 +0000 2016","date":"August 27, 2016","hour":10}]},{"date":"2016-09-26T07:00:00.000Z","count":38,"values":[{"id":780584376031739900,"created_at":"Tue Sep 27 01:46:32 +0000 2016","date":"September 26, 2016","hour":18,"text":"@BlkMan4Trump fox is doing good. They aren't really saying much and letting the candidates play out."},{"id":780590813222887400,"created_at":"Tue Sep 27 02:12:07 +0000 2016","date":"September 26, 2016","hour":19,"text":"RT @BlkMan4Trump: Hillary thinks the situation in Chicago isn't dire and pure hell? Bitch obviously has never been here. #Debatenight We ne…"},{"id":780455633531375600,"created_at":"Mon Sep 26 17:14:57 +0000 2016","date":"September 26, 2016","hour":10,"text":"I would hate to have to do it, but to protect my family, I would in a heartbeat. I have and should ALWAYS have that right! https://t.co/yemq7dfaBM"},{"id":780453416913035300,"created_at":"Mon Sep 26 17:06:09 +0000 2016","date":"September 26, 2016","hour":10,"text":"RT @larryelder: DEBATE NIGHT: 10 THINGS HILLARY MAY DROP ON TRUMP--AND HOW TRUMP SHOULD RESPOND\n\nhttps://t.co/NY1YMQZcKe\n\n#debates https://…"},{"id":780595069879484400,"created_at":"Tue Sep 27 02:29:02 +0000 2016","date":"September 26, 2016","hour":19,"text":"@JimGaffigan I was certain he was talking about me. I just put black tape over my computer camera."},{"id":780454978557206500,"created_at":"Mon Sep 26 17:12:21 +0000 2016","date":"September 26, 2016","hour":10,"text":"RT @FoxNews: .@Judgenap: It appears FBI was told to exonerate #HillaryClinton 'at all costs' https://t.co/bd7iPXVIKm"},{"id":780613902812020700,"created_at":"Tue Sep 27 03:43:52 +0000 2016","date":"September 26, 2016","hour":20,"text":"RT @BlkMan4Trump: #debatenight This woman has a lot of room to talk. Her husband raped women while President and she defended them."},{"id":780590902825906200,"created_at":"Tue Sep 27 02:12:28 +0000 2016","date":"September 26, 2016","hour":19,"text":"RT @Dexter_A_Taylor: If we as black people want to see a change in America we have to stop voting for people that only care about us when i…"},{"id":780584163611213800,"created_at":"Tue Sep 27 01:45:41 +0000 2016","date":"September 26, 2016","hour":18,"text":"RT @TomiLahren: Infrastructure but I don't want keystoneXL. Equal pay but I paid my female interns less. Atta girl Hillary. #debatenight"},{"id":780589988454998000,"created_at":"Tue Sep 27 02:08:50 +0000 2016","date":"September 26, 2016","hour":19,"text":"@Dexter_A_Taylor she is lime nails a chalk board... while on fire.....eating glass."},{"id":780599051016429600,"created_at":"Tue Sep 27 02:44:51 +0000 2016","date":"September 26, 2016","hour":19,"text":"RT @_Makada_: Donald Trump: You called blacks superpredators! \n\n#DebateNight #Debates #Trump16 https://t.co/aXfnME1s8P"},{"id":780597658176122900,"created_at":"Tue Sep 27 02:39:19 +0000 2016","date":"September 26, 2016","hour":19,"text":"Women shouldn't get paid the SAME if they don't do as good of a job as a man.It shouldn't be about sex it should be about work #debatenight"},{"id":780583256399970300,"created_at":"Tue Sep 27 01:42:05 +0000 2016","date":"September 26, 2016","hour":18,"text":"RT @kilmeade: What? Hillary's say @realDonaldTrump doesn't decrease corp taxes in inaccurate but who cares @foxandfriends"},{"id":780595184098828300,"created_at":"Tue Sep 27 02:29:29 +0000 2016","date":"September 26, 2016","hour":19,"text":"RT @megynkelly: .@realDonaldTrump: \"What did we learn with DNC [hack]? We learned that @BernieSanders was taken advantage of by your people…"},{"id":780615668655882200,"created_at":"Tue Sep 27 03:50:53 +0000 2016","date":"September 26, 2016","hour":20,"text":"RT @Varneyco: .@realDonaldTrump: \"black communities in inner cities have been badly treated...\" #debatenight"},{"id":780591824016666600,"created_at":"Tue Sep 27 02:16:08 +0000 2016","date":"September 26, 2016","hour":19,"text":"RT @Dexter_A_Taylor: Honestly Trump is saying the truth about this race issue"},{"id":780584695666966500,"created_at":"Tue Sep 27 01:47:48 +0000 2016","date":"September 26, 2016","hour":18,"text":"@FoxNews @HillaryClinton @realDonaldTrump you would know very well if he was hiding something. Since you are a pro at it!"},{"id":780535672201502700,"created_at":"Mon Sep 26 22:33:00 +0000 2016","date":"September 26, 2016","hour":15,"text":"RT @immigrant4trump: I am NOT with Serial Liar Crooked Hillary Clinton #debatenight #Debates2016 #Debates https://t.co/vRfB799UpU"},{"id":780592698608713700,"created_at":"Tue Sep 27 02:19:36 +0000 2016","date":"September 26, 2016","hour":19,"text":"@Dexter_A_Taylor sorry for all my auto corrects. I'm just say too worked up!"},{"id":780582855617437700,"created_at":"Tue Sep 27 01:40:29 +0000 2016","date":"September 26, 2016","hour":18,"text":"RT @TomiLahren: The WEALTHY create jobs!!!! #debatenight"},{"id":780583710756339700,"created_at":"Tue Sep 27 01:43:53 +0000 2016","date":"September 26, 2016","hour":18,"text":"RT @FoxNews: Trump: \"I will release my tax returns... when she releases her 33,000 emails that have been deleted.\" #debatenight #debates #D…"},{"id":780592555721392100,"created_at":"Tue Sep 27 02:19:02 +0000 2016","date":"September 26, 2016","hour":19,"text":"@FoxNews @realDonaldTrump @HillaryClinton NO IT DOESN'T!!!!"},{"id":780581953615568900,"created_at":"Tue Sep 27 01:36:54 +0000 2016","date":"September 26, 2016","hour":18,"text":"Something HE is hiding? You have got to be kidding me!!! #33emails"},{"id":780589711719096300,"created_at":"Tue Sep 27 02:07:44 +0000 2016","date":"September 26, 2016","hour":19,"text":"@HillaryClinton cyber security is so important because it's so EASY to hide your emails!!! Bhahahah #debatenight"},{"id":780615437298044900,"created_at":"Tue Sep 27 03:49:58 +0000 2016","date":"September 26, 2016","hour":20,"text":"I just told @nbcwashington who I think is winning. Cast your vote now! #Debates #NBC4DC\nhttps://t.co/IDSAASagaQ"},{"id":780583188238311400,"created_at":"Tue Sep 27 01:41:49 +0000 2016","date":"September 26, 2016","hour":18,"text":"RT @charliekirk11: When Hillary says she wants the fact checkers to intervene she is really asking the media to help her out."},{"id":780584196901306400,"created_at":"Tue Sep 27 01:45:49 +0000 2016","date":"September 26, 2016","hour":18,"text":"RT @realDonaldTrump: .@HillaryClinton has been part of the rigged DC system for 30 years? Why would we take policy advice from her? #Debate…"},{"id":780613437235798000,"created_at":"Tue Sep 27 03:42:01 +0000 2016","date":"September 26, 2016","hour":20,"text":"RT @megynkelly: .@realDonaldTrump: “Hillary has experience, but it’s bad experience.” #DebateNight #debates"},{"id":780598553689354200,"created_at":"Tue Sep 27 02:42:52 +0000 2016","date":"September 26, 2016","hour":19,"text":"@Everything_TN I was so happy to sew all the Tennessee stuff. But after the things you have tweeted tonight. NO THANKS!!! BYE!!!"},{"id":780593156786102300,"created_at":"Tue Sep 27 02:21:25 +0000 2016","date":"September 26, 2016","hour":19,"text":"@BlkMan4Trump exactly."},{"id":780452722319515600,"created_at":"Mon Sep 26 17:03:23 +0000 2016","date":"September 26, 2016","hour":10,"text":"@antonia_okafor bhahahahha. This is great!!!!"},{"id":780613818804277200,"created_at":"Tue Sep 27 03:43:32 +0000 2016","date":"September 26, 2016","hour":20,"text":"@FoxNews @HillaryClinton @realDonaldTrump and this is a woman who threatened women that were assaulted by a man."},{"id":780602646705168400,"created_at":"Tue Sep 27 02:59:08 +0000 2016","date":"September 26, 2016","hour":19,"text":"I love him but @LesterHoltNBC interrupted @realDonaldTrump several times and not once @HillaryClinton. Anyone else notice this? @FoxNews"},{"id":780584729515061200,"created_at":"Tue Sep 27 01:47:56 +0000 2016","date":"September 26, 2016","hour":18,"text":"RT @Dexter_A_Taylor: So then release the emails!!! #debatenight"},{"id":780595960909029400,"created_at":"Tue Sep 27 02:32:34 +0000 2016","date":"September 26, 2016","hour":19,"text":"RT @Dexter_A_Taylor: Hilary has a plan to defeat ISIS but won't even own up to what happened to in Benghazi. Please pay attention people. #…"},{"id":780614113688952800,"created_at":"Tue Sep 27 03:44:42 +0000 2016","date":"September 26, 2016","hour":20,"text":"I think lying to #Benghazi families is Crooked Hillary's Worst Lie. See the full list: https://t.co/K1ffFrmw4j\nhttps://t.co/X0z5d4tkuF"},{"id":780582390158729200,"created_at":"Tue Sep 27 01:38:38 +0000 2016","date":"September 26, 2016","hour":18,"text":"@HillaryClinton you have hidden at every single turn. And you tell us @realDonaldTrump is hiding from us. You lie every time you talk!!"},{"id":780456416259825700,"created_at":"Mon Sep 26 17:18:04 +0000 2016","date":"September 26, 2016","hour":10,"text":"@TomiLahren No. Her voice makes my skin crawl. Ewwwwwwww"}]},{"date":"2016-08-03T07:00:00.000Z","count":13,"values":[{"id":760940137857572900,"created_at":"Wed Aug 03 20:47:21 +0000 2016","date":"August 03, 2016","hour":13},{"id":760926514514894800,"created_at":"Wed Aug 03 19:53:13 +0000 2016","date":"August 03, 2016","hour":12},{"id":760940485536059400,"created_at":"Wed Aug 03 20:48:43 +0000 2016","date":"August 03, 2016","hour":13},{"id":761046586168225800,"created_at":"Thu Aug 04 03:50:20 +0000 2016","date":"August 03, 2016","hour":20},{"id":760892134148960300,"created_at":"Wed Aug 03 17:36:36 +0000 2016","date":"August 03, 2016","hour":10},{"id":760890561561788400,"created_at":"Wed Aug 03 17:30:21 +0000 2016","date":"August 03, 2016","hour":10},{"id":760952198511681500,"created_at":"Wed Aug 03 21:35:16 +0000 2016","date":"August 03, 2016","hour":14},{"id":760989254151471100,"created_at":"Thu Aug 04 00:02:31 +0000 2016","date":"August 03, 2016","hour":17},{"id":760939205358981100,"created_at":"Wed Aug 03 20:43:38 +0000 2016","date":"August 03, 2016","hour":13},{"id":761045035101990900,"created_at":"Thu Aug 04 03:44:10 +0000 2016","date":"August 03, 2016","hour":20},{"id":760910159904378900,"created_at":"Wed Aug 03 18:48:13 +0000 2016","date":"August 03, 2016","hour":11},{"id":760910150685356000,"created_at":"Wed Aug 03 18:48:11 +0000 2016","date":"August 03, 2016","hour":11},{"id":760938910264528900,"created_at":"Wed Aug 03 20:42:28 +0000 2016","date":"August 03, 2016","hour":13}]},{"date":"2016-10-09T07:00:00.000Z","count":80,"values":[{"id":785298553870557200,"created_at":"Mon Oct 10 01:59:00 +0000 2016","date":"October 09, 2016","hour":18,"text":"My 2nd favorite moment so far!!! https://t.co/58iovEo3xL"},{"id":785295410348687400,"created_at":"Mon Oct 10 01:46:30 +0000 2016","date":"October 09, 2016","hour":18,"text":"I'm so glad he said it! https://t.co/4y6HplRdNO"},{"id":785292610055221200,"created_at":"Mon Oct 10 01:35:22 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @charliekirk11: \"Because you would be in JAIL\" \n\n#Debate"},{"id":785312523482464300,"created_at":"Mon Oct 10 02:54:30 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @AnnCoulter: MSNBC's Nicole Wallace seriously just said about Trump: HE WAS REALLY SCARY!"},{"id":785312746082594800,"created_at":"Mon Oct 10 02:55:23 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @mike_pence: Congrats to my running mate @realDonaldTrump on a big debate win! Proud to stand with you as we #MAGA."},{"id":785297246187171800,"created_at":"Mon Oct 10 01:53:48 +0000 2016","date":"October 09, 2016","hour":18,"text":"@TezlynFigaro @realDonaldTrump yasssssss!!!! Please run! I will head up anything you need girl!!!"},{"id":785301722105155600,"created_at":"Mon Oct 10 02:11:35 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @Dexter_A_Taylor: She said she was saddened by the picture of the little Syrian boy but when it comes to our troops in Benghazi she coul…"},{"id":785292789902737400,"created_at":"Mon Oct 10 01:36:05 +0000 2016","date":"October 09, 2016","hour":18,"text":"@TezlynFigaro @realDonaldTrump she usually has a hard time finding real people who are with her!! #debates"},{"id":785291587995639800,"created_at":"Mon Oct 10 01:31:19 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @Dexter_A_Taylor: The Hillary you all love #debate https://t.co/LeNZy4ExDS"},{"id":785299789659242500,"created_at":"Mon Oct 10 02:03:54 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @exjon: You're worried about Russian aggression, Hillary? #debates https://t.co/yI9yoJAUNx"},{"id":785308079546130400,"created_at":"Mon Oct 10 02:36:51 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @TopTierU: When you see the victims you thought you'd never see again\n#debates https://t.co/QbDkm8iFR6"},{"id":785329429568491500,"created_at":"Mon Oct 10 04:01:41 +0000 2016","date":"October 09, 2016","hour":21,"text":"RT @realIgorTot: #debate https://t.co/n1NdZ9JufH"},{"id":785306529746473000,"created_at":"Mon Oct 10 02:30:41 +0000 2016","date":"October 09, 2016","hour":19,"text":"Bill is saying \"yall please , I have to take her home with me\" poor guy! #debate https://t.co/soeqjfF7lv"},{"id":785306943342510100,"created_at":"Mon Oct 10 02:32:20 +0000 2016","date":"October 09, 2016","hour":19,"text":"Did y'all know flies are attracted to poop? #debate"},{"id":785289505670508500,"created_at":"Mon Oct 10 01:23:02 +0000 2016","date":"October 09, 2016","hour":18,"text":"Hold the applause for @realDonaldTrump but not for @HillaryClinton #debates"},{"id":785290078893375500,"created_at":"Mon Oct 10 01:25:19 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @Dexter_A_Taylor: Is Donald Trump on trial or is this a Townhall debate #debate"},{"id":785295797139021800,"created_at":"Mon Oct 10 01:48:02 +0000 2016","date":"October 09, 2016","hour":18,"text":"Who is \"they\" Hillary???? #debates"},{"id":785296059467653100,"created_at":"Mon Oct 10 01:49:05 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @TomiLahren: Place Muslim sensitivity above national security and you get San Bernardino, Orlando, Chattanooga, Boston, NYC. Need I go o…"},{"id":785290865992273900,"created_at":"Mon Oct 10 01:28:27 +0000 2016","date":"October 09, 2016","hour":18,"text":"I thought she didn't even know what the C meant!!!! #debates"},{"id":785329165490806800,"created_at":"Mon Oct 10 04:00:38 +0000 2016","date":"October 09, 2016","hour":21,"text":"RT @FoxBusiness: Kathleen Willey: \"[@HillaryClinton] is a fake feminist. A champion of women does not attack the victims of sexual assault…"},{"id":785307941301788700,"created_at":"Mon Oct 10 02:36:18 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @MZHemingway: “What are you looking for in SCOTUS justice?”\nClinton: Killing all the babies."},{"id":785300848599371800,"created_at":"Mon Oct 10 02:08:07 +0000 2016","date":"October 09, 2016","hour":19,"text":"@FoxNews @HillaryClinton what were these results?"},{"id":785293312462721000,"created_at":"Mon Oct 10 01:38:10 +0000 2016","date":"October 09, 2016","hour":18,"text":"How bout we give it all back to the insurance companies and let them go across state lines and be competitive #debates"},{"id":785305766819303400,"created_at":"Mon Oct 10 02:27:39 +0000 2016","date":"October 09, 2016","hour":19,"text":"https://t.co/Jih5TOHWK6"},{"id":785305902328918000,"created_at":"Mon Oct 10 02:28:12 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @mschlapp: Hillary apologizes for deplorables then explains why all of us are racist and deplorable"},{"id":785289792170840000,"created_at":"Mon Oct 10 01:24:11 +0000 2016","date":"October 09, 2016","hour":18,"text":"If that is how a friend talks about you like like who needs an enemy??? #debates"},{"id":785330993913704400,"created_at":"Mon Oct 10 04:07:54 +0000 2016","date":"October 09, 2016","hour":21,"text":"RT @charliekirk11: When Trump starts mentioning all your rape victims #Debate #Clinton https://t.co/pa6GfwGYE8"},{"id":785313558305333200,"created_at":"Mon Oct 10 02:58:37 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @KathyShelton_: Hillary if you want to help the children so much… Why didn’t you help me when I was 12 and let my rapist go free? #debate"},{"id":785294493511671800,"created_at":"Mon Oct 10 01:42:51 +0000 2016","date":"October 09, 2016","hour":18,"text":"@TomiLahren evert single time! #debates"},{"id":785292275328790500,"created_at":"Mon Oct 10 01:34:03 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @Dexter_A_Taylor: So what those emails were all a hoax or something"},{"id":785291710532247600,"created_at":"Mon Oct 10 01:31:48 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @TezlynFigaro: Opps @realDonaldTrump compares his words to what Bill actually did while @HillaryClinton stood by idle! lol she started i…"},{"id":785291086373658600,"created_at":"Mon Oct 10 01:29:19 +0000 2016","date":"October 09, 2016","hour":18,"text":"She only lies. It's all she can do. She. Can not do anything else!!! #debates"},{"id":785300747323715600,"created_at":"Mon Oct 10 02:07:43 +0000 2016","date":"October 09, 2016","hour":19,"text":"@Dexter_A_Taylor @nickgourevitch nick, why would he pay taxes when the law stats that he does not have to? Would you?"},{"id":785302138679234600,"created_at":"Mon Oct 10 02:13:14 +0000 2016","date":"October 09, 2016","hour":19,"text":"Who is this female moderator? Why does she think we care what she says? She is not part of the debate? I don't care for her #debate"},{"id":785294341489033200,"created_at":"Mon Oct 10 01:42:15 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @realDonaldTrump: ATTN: @HillaryClinton - Why did five of your staffers need FBI IMMUNITY?! #BigLeagueTruth #Debates"},{"id":785294310040141800,"created_at":"Mon Oct 10 01:42:08 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @TomiLahren: Anything to avoid taking about emails. And we care about your emails. #debate"},{"id":785290295189438500,"created_at":"Mon Oct 10 01:26:11 +0000 2016","date":"October 09, 2016","hour":18,"text":"What the hell is she smiling about....it's just not funny to me! @realDonaldTrump @HillaryClinton #debates"},{"id":785291758661886000,"created_at":"Mon Oct 10 01:31:59 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @pees_n_ski: I'd take an asshole over a pathological liar who's selling out this country any day #debate https://t.co/jTcZC1AH6q"},{"id":785306169841594400,"created_at":"Mon Oct 10 02:29:15 +0000 2016","date":"October 09, 2016","hour":19,"text":"@BretBaier @NigerInnisTTP @realDonaldTrump @billclinton @ChelseaClinton bahahhaha. This was when they talked about Bill poopooing OCare!"},{"id":785301065121996800,"created_at":"Mon Oct 10 02:08:58 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @PRMoore1: What abt the heartbreaking story of the MEN who defended Ambassador Stevens? I've never seen such open bias from \"moderators…"},{"id":785293682534527000,"created_at":"Mon Oct 10 01:39:38 +0000 2016","date":"October 09, 2016","hour":18,"text":"@TomiLahren but she can't do anything else! #debates"},{"id":785293130824159200,"created_at":"Mon Oct 10 01:37:27 +0000 2016","date":"October 09, 2016","hour":18,"text":"Oh yea Bill CLARIFIED Obama care being a disaster and what he meant after he got home and got chewed out by you!!! #debates"},{"id":785297073411280900,"created_at":"Mon Oct 10 01:53:07 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @rachelfarm04: Please bring up the Clinton Foundation #DebateWithFFL https://t.co/uC9NObLLnp"},{"id":785298091100414000,"created_at":"Mon Oct 10 01:57:09 +0000 2016","date":"October 09, 2016","hour":18,"text":"Hillary's smile is so disturbing!!! I really freaks me out! #debates https://t.co/Wgyy0FZpUN"},{"id":785309802419347500,"created_at":"Mon Oct 10 02:43:41 +0000 2016","date":"October 09, 2016","hour":19,"text":"@Dexter_A_Taylor clearly. Now let's see how it spins!"},{"id":785299348728913900,"created_at":"Mon Oct 10 02:02:09 +0000 2016","date":"October 09, 2016","hour":19,"text":"@brithume @ZarrJeff Well, that's just not nice. I think Brit is very interesting."},{"id":785290508054634500,"created_at":"Mon Oct 10 01:27:01 +0000 2016","date":"October 09, 2016","hour":18,"text":"Cause you'd be in Jail!!!! @HillaryClinton #debates"},{"id":785234031579394000,"created_at":"Sun Oct 09 21:42:36 +0000 2016","date":"October 09, 2016","hour":14,"text":"@FoxNewsSunday @FoxNews @johnpodesta @HillaryClinton U have got to be kidding us!!! I Know U think USA voters are stupid, but THIS stupid?"},{"id":785331630672150500,"created_at":"Mon Oct 10 04:10:26 +0000 2016","date":"October 09, 2016","hour":21,"text":"RT @FoxNews: Giuliani: \"Martha Stewart went to jail for lying to the FBI one time. [@HillaryClinton] did it - 39 times she had no recollect…"},{"id":785316703928479700,"created_at":"Mon Oct 10 03:11:07 +0000 2016","date":"October 09, 2016","hour":20,"text":"RT @diana_west_: Clinton Spokesman To Trump: ‘Go Fuck Yourself’ https://t.co/y5oiorseAg via @dailycaller"},{"id":785296625753129000,"created_at":"Mon Oct 10 01:51:20 +0000 2016","date":"October 09, 2016","hour":18,"text":"Oh that Abraham Lincoln thingy was studied. I can see them now, OK how are we gonna address this? Oh, I know. Let's talk about ummm Lincoln!"},{"id":785313837767659500,"created_at":"Mon Oct 10 02:59:44 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @KathyShelton_: Thank you @RealDonaldTrump for standing up for me before my rapist's defender Hillary Clinton. #debate"},{"id":785295049416290300,"created_at":"Mon Oct 10 01:45:04 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @6News: Share of @facebook conversation through first fifteen minutes of debate. #debates #WATE https://t.co/yiDUOq96ig"},{"id":785307183994896400,"created_at":"Mon Oct 10 02:33:17 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @sam_welt: what about the CONSTITUTION as a priority when selecting Supreme Court justices, @HillaryClinton?!"},{"id":785290774736883700,"created_at":"Mon Oct 10 01:28:05 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @TomiLahren: She wants open trade and open borders. Remember that. #debate"},{"id":785304624710324200,"created_at":"Mon Oct 10 02:23:07 +0000 2016","date":"October 09, 2016","hour":19,"text":"That smiling she keeps doing y'all. What a freaky freak!! #debate"},{"id":785305826906939400,"created_at":"Mon Oct 10 02:27:54 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @TezlynFigaro: Guess what HC? saying members of Congress dont like @realDonaldTrump MEANS NOTHING bc we DONT trust MEMBERS OF CONGRESS,…"},{"id":785331183596863500,"created_at":"Mon Oct 10 04:08:39 +0000 2016","date":"October 09, 2016","hour":21,"text":"RT @charliekirk11: He paid hundreds of millions in payroll taxes. Do you know what those are? Nope. You never hired anyone in your life. ht…"},{"id":785300882984284200,"created_at":"Mon Oct 10 02:08:15 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @TomiLahren: And what else happened when you were Sec of State? In Libya? #debate"},{"id":785308294143471600,"created_at":"Mon Oct 10 02:37:42 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @KathyShelton_: I don’t care if Trump said gross things. I care that Hillary Clinton lied, terrorized, &amp; mocked me, defending my rapist."},{"id":785310772763193300,"created_at":"Mon Oct 10 02:47:33 +0000 2016","date":"October 09, 2016","hour":19,"text":"@booksbygeorge @NigerInnisTTP hands down!!!"},{"id":785297355402641400,"created_at":"Mon Oct 10 01:54:14 +0000 2016","date":"October 09, 2016","hour":18,"text":"@BigDaddyBremer @realDonaldTrump I'm getting a t shirt tomorrow!!!"},{"id":785296928669970400,"created_at":"Mon Oct 10 01:52:32 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @TeamTrump: .@realDonaldTrump will enforce all laws concerning the protection of classified information. NO ONE will be above the law! #…"},{"id":785300049139896300,"created_at":"Mon Oct 10 02:04:56 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @WayneDupreeShow: Kathleen Willey stood in defense for Trump but also has a message for Bill Clinton #ClintonIsARapist #Debates2016 http…"},{"id":785300517886931000,"created_at":"Mon Oct 10 02:06:48 +0000 2016","date":"October 09, 2016","hour":19,"text":"Maybe lime when she was getting shot after she got off that plane? Oh no wait...that was a lie too @HillaryClinton @realDonaldTrump #debate"},{"id":785294004766113800,"created_at":"Mon Oct 10 01:40:55 +0000 2016","date":"October 09, 2016","hour":18,"text":"@Dexter_A_Taylor you can see it on her face #debates"},{"id":785298982180229100,"created_at":"Mon Oct 10 02:00:42 +0000 2016","date":"October 09, 2016","hour":19,"text":"If the Law allows you to take it. You take it!!! Like what you go and say No no..let me give you money! #debate"},{"id":785307351871926300,"created_at":"Mon Oct 10 02:33:57 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @Dexter_A_Taylor: Exactly!!! https://t.co/T2b0GA8c4b"},{"id":785291221371531300,"created_at":"Mon Oct 10 01:29:51 +0000 2016","date":"October 09, 2016","hour":18,"text":"@TezlynFigaro @TeamCavuto and I can't wait to hear what you say!!"},{"id":785296124194148400,"created_at":"Mon Oct 10 01:49:20 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @RTSportsTalk: Clinton: \"It's a good thing that Donald isn't in charge of the justice system\"\n\nTrump: \"Because you'd be in jail\" https:/…"},{"id":785295494029246500,"created_at":"Mon Oct 10 01:46:50 +0000 2016","date":"October 09, 2016","hour":18,"text":"She so mad at the Russians tho #debates"},{"id":785307408570523600,"created_at":"Mon Oct 10 02:34:11 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @TexasGOP: We all know that #Hillary wants a liberal Supreme Court that will remove #2A rights. Let's send #Hillary a message. #debate h…"},{"id":785296856888684500,"created_at":"Mon Oct 10 01:52:15 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @RepubGrlProbs: Trump: \"Because you'd be in jail\" #debate https://t.co/oCx9Sk24f1"},{"id":785298669826211800,"created_at":"Mon Oct 10 01:59:27 +0000 2016","date":"October 09, 2016","hour":18,"text":"#debate https://t.co/NY0uNzNkLo"},{"id":785290955419029500,"created_at":"Mon Oct 10 01:28:48 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @TomiLahren: His leaks make him look like an ass. Her leaks compromise national security. #debate"},{"id":785292256093704200,"created_at":"Mon Oct 10 01:33:58 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @Dexter_A_Taylor: False really?!?!"},{"id":785300216832417800,"created_at":"Mon Oct 10 02:05:36 +0000 2016","date":"October 09, 2016","hour":19,"text":"@BenjaminSWatson for real!!!!"},{"id":785297377489883100,"created_at":"Mon Oct 10 01:54:19 +0000 2016","date":"October 09, 2016","hour":18,"text":"RT @BigDaddyBremer: \"Because you'd be in jail\" -@realDonaldTrump quote of the century"},{"id":785312707524296700,"created_at":"Mon Oct 10 02:55:14 +0000 2016","date":"October 09, 2016","hour":19,"text":"RT @kilmeade: Second best news for @realDonaldTrump just happened..@GovPenceIN just congratulated his running mate..not dropping out.. @fox…"},{"id":785295964277870600,"created_at":"Mon Oct 10 01:48:42 +0000 2016","date":"October 09, 2016","hour":18,"text":"@Dexter_A_Taylor nope....no she won't and she didn't. #debates"}]},{"date":"2016-10-08T07:00:00.000Z","count":30,"values":[{"id":784980866120298500,"created_at":"Sun Oct 09 04:56:37 +0000 2016","date":"October 08, 2016","hour":21,"text":"RT @ChristiChat: How can \"journalist\" Megyn Kelly continue to attack TRUMP for objectifying women? Can any of his detractors be taken serio…"},{"id":784973331032191000,"created_at":"Sun Oct 09 04:26:40 +0000 2016","date":"October 08, 2016","hour":21,"text":"RT @malshaysutton: I swear UT football is THE most fun to watch"},{"id":784749479266291700,"created_at":"Sat Oct 08 13:37:10 +0000 2016","date":"October 08, 2016","hour":6,"text":"RT @FoxNews: .@HillaryClinton on \"open borders.\" https://t.co/yf3a2Zz8M3"},{"id":784972810594623500,"created_at":"Sun Oct 09 04:24:36 +0000 2016","date":"October 08, 2016","hour":21,"text":"RT @twentyonepilots: it’s saturday night. https://t.co/JfZfwZCq4r"},{"id":784982134586867700,"created_at":"Sun Oct 09 05:01:39 +0000 2016","date":"October 08, 2016","hour":22,"text":"Kick 'em when they're up\nKick 'em when they're down\nKick 'em when they're up\nKick 'em all around...They LOVE dirty laundry!!!"},{"id":784771943929176000,"created_at":"Sat Oct 08 15:06:26 +0000 2016","date":"October 08, 2016","hour":8,"text":"RT @BlkMan4Trump: #BillClintonIsaRapist #BillClintonIsRapist https://t.co/b8hgGdeygX"},{"id":784759383918010400,"created_at":"Sat Oct 08 14:16:31 +0000 2016","date":"October 08, 2016","hour":7,"text":"ANYONE remember @HillaryClinton audio tape LAUGHING @ getting a rapist off 2 months time served? Victim12yrs That's worse to me @TomiLahren"},{"id":784972965314125800,"created_at":"Sun Oct 09 04:25:13 +0000 2016","date":"October 08, 2016","hour":21,"text":"RT @atensnut: Hillary calls Trump's remarks \"horrific\" while she lives with and protects a \"Rapist\". Her actions are horrific."},{"id":784981445659852800,"created_at":"Sun Oct 09 04:58:55 +0000 2016","date":"October 08, 2016","hour":21,"text":"@LouDobbs @gatewaypundit good. I'm so upset with him. Im sure he has never said anything wrong. Kick when their up..kick em when their down!"},{"id":784762436628996100,"created_at":"Sat Oct 08 14:28:39 +0000 2016","date":"October 08, 2016","hour":7,"text":"@MicahAlexanderB oh my. I must meet this pup."},{"id":784768934302117900,"created_at":"Sat Oct 08 14:54:28 +0000 2016","date":"October 08, 2016","hour":7,"text":"@HillaryClinton @NigerInnisTTP I wonder about all the American female victims you have silenced!?? Your love for females makes me throw up!"},{"id":784979858132656100,"created_at":"Sun Oct 09 04:52:37 +0000 2016","date":"October 08, 2016","hour":21,"text":"@brithume @RedState these GOPs are going to make me leave the republican party forever. I'm so sick of this kick em when their down!"},{"id":784972484642603000,"created_at":"Sun Oct 09 04:23:19 +0000 2016","date":"October 08, 2016","hour":21,"text":"@ashbethh they tried. They truely did!"},{"id":784763698439225300,"created_at":"Sat Oct 08 14:33:40 +0000 2016","date":"October 08, 2016","hour":7,"text":"@TezlynFigaro @FoxNews @cthagod ANYONE remember HRC audio of her LAUGHING at getting a rapist off? Victim was 12. That's just worse to me."},{"id":784762620335235100,"created_at":"Sat Oct 08 14:29:23 +0000 2016","date":"October 08, 2016","hour":7,"text":"RT @TezlynFigaro: Trump SAID the same thing that almost every Rapper N America said- just as Bill Clinton ACTUALLY DID what almost every ra…"},{"id":784770944954949600,"created_at":"Sat Oct 08 15:02:28 +0000 2016","date":"October 08, 2016","hour":8,"text":"They keep finding bodies in #Haiti and all we are talking about is a man saying P***y."},{"id":784971233423085600,"created_at":"Sun Oct 09 04:18:20 +0000 2016","date":"October 08, 2016","hour":21,"text":"RT @AnnCoulter: I can't find anyone who wasn’t anti-Trump “withdrawing” support? Media: ANA NAVARRO, BEN SASSE &amp; BILL KRISTOL WON'T SUPPORT…"},{"id":784834854059909100,"created_at":"Sat Oct 08 19:16:25 +0000 2016","date":"October 08, 2016","hour":12,"text":"@sourwaffles @ExposeHillary we have two choices...she is worse."},{"id":784888204075814900,"created_at":"Sat Oct 08 22:48:25 +0000 2016","date":"October 08, 2016","hour":15,"text":"RT @AllenWest: In wake of Trump tape, Clinton rape accusers SPEAK OUT\nhttps://t.co/PxduTjE5Vz https://t.co/Ttjs7X1c0g"},{"id":784835041176199200,"created_at":"Sat Oct 08 19:17:10 +0000 2016","date":"October 08, 2016","hour":12,"text":"RT @SheriffClarke: When Bill Clinton had sex in the Oval Office with a 19 yr-old intern using a cigar, left told us it was no big deal and…"},{"id":784973143123177500,"created_at":"Sun Oct 09 04:25:56 +0000 2016","date":"October 08, 2016","hour":21,"text":"@FoxNews @LarrySabato @realDonaldTrump @HillaryClinton I'm a woman and I am 100% #neverhilary"},{"id":784764090430419000,"created_at":"Sat Oct 08 14:35:14 +0000 2016","date":"October 08, 2016","hour":7,"text":"RT @atensnut: I was 35 years old when Bill Clinton, Ark. Attorney General raped me and Hillary tried to silence me. I am now 73....it neve…"},{"id":784753508323102700,"created_at":"Sat Oct 08 13:53:11 +0000 2016","date":"October 08, 2016","hour":6,"text":"https://t.co/VF4QNh5XxK"},{"id":784772553743228900,"created_at":"Sat Oct 08 15:08:51 +0000 2016","date":"October 08, 2016","hour":8,"text":"@ExposeHillary @sourwaffles I remember Hillary Clinton's audio tape of her LAUGHING @ getting a rapist off. Victim was 12 That's worse to me"},{"id":784771770578526200,"created_at":"Sat Oct 08 15:05:45 +0000 2016","date":"October 08, 2016","hour":8,"text":"RT @BlkMan4Trump: #BillClintonIsRapist Mr. Clinton exposed his penis (which was erect) and told me to \"kiss it.\" -Paula Jones https://t.co/…"},{"id":784969216592011300,"created_at":"Sun Oct 09 04:10:19 +0000 2016","date":"October 08, 2016","hour":21,"text":"RT @SheriffClarke: Sanctimonious GOP pols did not call for Clinton to step down after secret server or deleted emails were discovered. Corr…"},{"id":784762522486407200,"created_at":"Sat Oct 08 14:29:00 +0000 2016","date":"October 08, 2016","hour":7,"text":"RT @cthagod: I don't do selective morality. Y'all know I hate Trump but I'd be a hypocrite acting like I haven't talked like that about wom…"},{"id":784983230881501200,"created_at":"Sun Oct 09 05:06:01 +0000 2016","date":"October 08, 2016","hour":22,"text":"Holy Crap. If @realDonaldTrump said sand ni * * er he would be burned at the stake!!! https://t.co/jVlcBbDCv8"},{"id":784970608597532700,"created_at":"Sun Oct 09 04:15:51 +0000 2016","date":"October 08, 2016","hour":21,"text":"Weren't we wanting to get away from establishment GOPs anyway? BYE!!! @FoxNews @TomiLahren @SpeakerRyan @SheriffClarke #clintonlewinski2016"},{"id":784760401925967900,"created_at":"Sat Oct 08 14:20:34 +0000 2016","date":"October 08, 2016","hour":7,"text":"@BlkMan4Trump remember Hillary's audio tape of her LAUGHING at getting a rapist off with 2months? victim was 12. That's just worse to me."}]},{"date":"2016-09-08T07:00:00.000Z","count":2,"values":[{"id":774127257639981000,"created_at":"Fri Sep 09 06:08:15 +0000 2016","date":"September 08, 2016","hour":23},{"id":773993211253710800,"created_at":"Thu Sep 08 21:15:36 +0000 2016","date":"September 08, 2016","hour":14}]},{"date":"2016-09-05T07:00:00.000Z","count":3,"values":[{"id":772849282567114800,"created_at":"Mon Sep 05 17:30:02 +0000 2016","date":"September 05, 2016","hour":10},{"id":772846646786789400,"created_at":"Mon Sep 05 17:19:34 +0000 2016","date":"September 05, 2016","hour":10},{"id":772845920127815700,"created_at":"Mon Sep 05 17:16:40 +0000 2016","date":"September 05, 2016","hour":10}]},{"date":"2016-09-27T07:00:00.000Z","count":5,"values":[{"id":780849819325792300,"created_at":"Tue Sep 27 19:21:19 +0000 2016","date":"September 27, 2016","hour":12,"text":"@AlwaysAmerica1 @BlkMan4Trump What is that?!!?!?!?!?!? I MUST know!! Anyone know?!?!?!?"},{"id":780821062518992900,"created_at":"Tue Sep 27 17:27:02 +0000 2016","date":"September 27, 2016","hour":10,"text":"@jasonkillam when in a city I Uber everywhere!!! Love it!"},{"id":780955932138278900,"created_at":"Wed Sep 28 02:22:58 +0000 2016","date":"September 27, 2016","hour":19,"text":"58% increase.... 58 percent!!!!!! https://t.co/7iqetQIJ7I"},{"id":780744600290025500,"created_at":"Tue Sep 27 12:23:12 +0000 2016","date":"September 27, 2016","hour":5,"text":"@FoxNews I hope they don't give in. We don't negotiate with terrorist."},{"id":780851145946304500,"created_at":"Tue Sep 27 19:26:35 +0000 2016","date":"September 27, 2016","hour":12,"text":"Goodness gracious! https://t.co/j9w4POGOWS"}]},{"date":"2016-08-07T07:00:00.000Z","count":3,"values":[{"id":762319380332089300,"created_at":"Sun Aug 07 16:07:58 +0000 2016","date":"August 07, 2016","hour":9},{"id":762319293346447400,"created_at":"Sun Aug 07 16:07:37 +0000 2016","date":"August 07, 2016","hour":9},{"id":762314832645386200,"created_at":"Sun Aug 07 15:49:53 +0000 2016","date":"August 07, 2016","hour":8}]},{"date":"2016-09-21T07:00:00.000Z","count":15,"values":[{"id":778794494854561800,"created_at":"Thu Sep 22 03:14:11 +0000 2016","date":"September 21, 2016","hour":20,"text":"RT @megynkelly: Mark Fuhrman: “This is not a protest. This is an unlawful assembly – this is a riot.” #KellyFile"},{"id":778683067355377700,"created_at":"Wed Sep 21 19:51:25 +0000 2016","date":"September 21, 2016","hour":12,"text":"RT @foxandfriends: History teacher's lesson includes stomping American Flag in classroom | @toddstarnes https://t.co/LCaC5ghdvB https://t.c…"},{"id":778686846557573100,"created_at":"Wed Sep 21 20:06:26 +0000 2016","date":"September 21, 2016","hour":13,"text":"RT @HalleyBorderCol: Has to be seen to be believed! #CrookedHillary spokesperson Robby Mook has cringeworthy meltdown on #MorningJoe\n\"Why a…"},{"id":778682239957602300,"created_at":"Wed Sep 21 19:48:07 +0000 2016","date":"September 21, 2016","hour":12,"text":"@carrieball1974 my favorite!!!"},{"id":778796037041455100,"created_at":"Thu Sep 22 03:20:19 +0000 2016","date":"September 21, 2016","hour":20,"text":"RT @foxandfriends: A question for Charlotte: How does looting a Walmart, burning a truck advance your cause? | @toddstarnes https://t.co/Zy…"},{"id":778687025658474500,"created_at":"Wed Sep 21 20:07:08 +0000 2016","date":"September 21, 2016","hour":13,"text":"@HalleyBorderCol this is hilarious and scary all at the same time!"},{"id":778792678809034800,"created_at":"Thu Sep 22 03:06:58 +0000 2016","date":"September 21, 2016","hour":20,"text":"@BenjaminSWatson it is is not for the weary or faint of heart, that is for sure!!!"},{"id":778795206992855000,"created_at":"Thu Sep 22 03:17:01 +0000 2016","date":"September 21, 2016","hour":20,"text":"RT @MarkDice: Chris Rock tells black people how they can avoid getting shot by police. \"First, obey the law.\" https://t.co/fqUoNs1nWE #Ch…"},{"id":778795691594383400,"created_at":"Thu Sep 22 03:18:56 +0000 2016","date":"September 21, 2016","hour":20,"text":"RT @BlkMan4Trump: #CharlotteProtest Embarrassment to the human race. idiot killed by a Black cop must b racism - Time to Riot and Loot - St…"},{"id":778683571384963100,"created_at":"Wed Sep 21 19:53:25 +0000 2016","date":"September 21, 2016","hour":12,"text":"RT @ChristiChat: Left view blacks as property &amp; conservative blacks as stolen property\n\n@DanielBice \n@WisDems\n@journalsentinel \n@Huffington…"},{"id":778796525472186400,"created_at":"Thu Sep 22 03:22:15 +0000 2016","date":"September 21, 2016","hour":20,"text":"RT @cvaldary: Do not swerve to the right or to the left; turn your foot away from evil. #Charlotte"},{"id":778629961401921500,"created_at":"Wed Sep 21 16:20:23 +0000 2016","date":"September 21, 2016","hour":9,"text":"@BlkMan4Trump I still love you!"},{"id":778797008949608400,"created_at":"Thu Sep 22 03:24:10 +0000 2016","date":"September 21, 2016","hour":20,"text":"RT @FoxNews: Mayor Giuliani: \"We have gone back 8-10 yrs in our race relationships b/c of what @BarackObama...@LorettaLynch &amp; @HillaryClint…"},{"id":778689531214037000,"created_at":"Wed Sep 21 20:17:06 +0000 2016","date":"September 21, 2016","hour":13,"text":"RT @datrumpnation1: @SabaRMC does a fantastic job in support of Trump's national security policies! Americans of all backgrounds coming to…"},{"id":778795017460744200,"created_at":"Thu Sep 22 03:16:16 +0000 2016","date":"September 21, 2016","hour":20,"text":"RT @BlkMan4Trump: What did you expect would happen? Now go home and stop being animals. https://t.co/DtnRvilPsZ"}]},{"date":"2016-09-25T07:00:00.000Z","count":13,"values":[{"id":780172479050444800,"created_at":"Sun Sep 25 22:29:48 +0000 2016","date":"September 25, 2016","hour":15,"text":"RT @hectormorenco: Obama's legacy.\n\nMASS SHOOTINGS: \nReagan = 11 \nBush Sr. = 12 \nClinton = 23 \nBush Jr. = 16 \nObama = 165 \n\n#Obama \n#BlackL…"},{"id":780225909014011900,"created_at":"Mon Sep 26 02:02:07 +0000 2016","date":"September 25, 2016","hour":19,"text":"RT @Haven_Jade: I swear the Vols have the best fanbase in the SEC"},{"id":780218106354491400,"created_at":"Mon Sep 26 01:31:06 +0000 2016","date":"September 25, 2016","hour":18,"text":"@lenny1340V2 @BlkMan4Trump @DarHuddleston @NYRican4Trump Well, let's not let that happen!!!"},{"id":780221212714729500,"created_at":"Mon Sep 26 01:43:27 +0000 2016","date":"September 25, 2016","hour":18,"text":"RT @hoodsonco: Moderator: \"Do you agree with Hillary's position on this issue?\"\nTrump: \"Which Hillary?\"\n#TrumpSoftballs https://t.co/mVE8uG…"},{"id":780137003513966600,"created_at":"Sun Sep 25 20:08:50 +0000 2016","date":"September 25, 2016","hour":13,"text":"@NYRican4Trump @BlkMan4Trump OK.It just struck me as weird, cause the guy died and people loved him.I thought maybe there was something 2 it"},{"id":780220900528488400,"created_at":"Mon Sep 26 01:42:13 +0000 2016","date":"September 25, 2016","hour":18,"text":"RT @ChatRevolve: #TrumpSoftballs #HillaryClinton has planted corrupt campaign offices all across Florida. Here is one in #LakeWorth we prot…"},{"id":780127195821989900,"created_at":"Sun Sep 25 19:29:52 +0000 2016","date":"September 25, 2016","hour":12,"text":"@BlkMan4Trump I don't understand this tweet. I don't know anything about him, but what does your tweet mean?"},{"id":780079065000730600,"created_at":"Sun Sep 25 16:18:36 +0000 2016","date":"September 25, 2016","hour":9,"text":"RT @Morgan_Parker: Nine months from now Knoxville will have its largest baby boom ever and a record breaking number of children named Butch"},{"id":780221595616940000,"created_at":"Mon Sep 26 01:44:58 +0000 2016","date":"September 25, 2016","hour":18,"text":"This one had me rolling!!! https://t.co/EszKI3dfrN"},{"id":780080228425146400,"created_at":"Sun Sep 25 16:23:14 +0000 2016","date":"September 25, 2016","hour":9,"text":"Let's go @daily_squid"},{"id":780219247913992200,"created_at":"Mon Sep 26 01:35:39 +0000 2016","date":"September 25, 2016","hour":18,"text":"@brithume @fje600 I'm a Hard Core Conservative, Only ever voted Republican, AND red is my favorite color.....I still think that is silly!"},{"id":780121519095775200,"created_at":"Sun Sep 25 19:07:18 +0000 2016","date":"September 25, 2016","hour":12,"text":"@LoseGainLive I feel your pain"},{"id":780167159012028400,"created_at":"Sun Sep 25 22:08:40 +0000 2016","date":"September 25, 2016","hour":15,"text":"@BlkMan4Trump @NYRican4Trump I TOTALLY get it. Have you heard ANY stories about ISIS using chemical weapons against US soldiers? Me either!"}]},{"date":"2016-10-07T07:00:00.000Z","count":5,"values":[{"id":784624082709057500,"created_at":"Sat Oct 08 05:18:53 +0000 2016","date":"October 07, 2016","hour":22,"text":"@Dexter_A_Taylor @marcorubio U must be perfect person. But I am sure glad there hasn't been a hot mic on me for A LOT of things I have said!"},{"id":784626822059270100,"created_at":"Sat Oct 08 05:29:46 +0000 2016","date":"October 07, 2016","hour":22,"text":"@Dexter_A_Taylor You misunderstood.Totally agree with u. Tweet was about Rubio. &amp; Now Ryan is out.R we goona let trash talk get HRC elected?"},{"id":784613916538204200,"created_at":"Sat Oct 08 04:38:29 +0000 2016","date":"October 07, 2016","hour":21,"text":"RT @staggerlee420: @cristinalaila1 https://t.co/wcU0XhfSNS"},{"id":784620059780083700,"created_at":"Sat Oct 08 05:02:54 +0000 2016","date":"October 07, 2016","hour":22,"text":"RT @ANTHONYBLOGAN: Hillary laughed about getting a child rapist she defended off with a light sentence on tape, liberal media ignores it, n…"},{"id":784624841676709900,"created_at":"Sat Oct 08 05:21:54 +0000 2016","date":"October 07, 2016","hour":22,"text":"I so wish @SpeakerRyan would not cxl campaigning. Are we Really gonna let trash talk pave the way to electing a murderering liar? @FoxNews"}]},{"date":"2016-09-20T07:00:00.000Z","count":9,"values":[{"id":778309846278037500,"created_at":"Tue Sep 20 19:08:22 +0000 2016","date":"September 20, 2016","hour":12,"text":"Does anyone else notice that @HillaryClinton is starting to say and even do things @realDonaldTrump has been saying and doing?"},{"id":778445126469201900,"created_at":"Wed Sep 21 04:05:55 +0000 2016","date":"September 20, 2016","hour":21,"text":"RT @FoxNews: .@marcthiessen: \"Why didn't [HRC] give us a better visa system...when she was in charge of the dept. that is in charge of issu…"},{"id":778266833908555800,"created_at":"Tue Sep 20 16:17:27 +0000 2016","date":"September 20, 2016","hour":9,"text":"RT @cheriemaylene: @realDonaldTrump and she's now saying we need to vet refugees- also copying you. Sincerest form of flattery?"},{"id":778442473882333200,"created_at":"Wed Sep 21 03:55:23 +0000 2016","date":"September 20, 2016","hour":20,"text":"@carrieball1974 what in the world happened???"},{"id":778310620768768000,"created_at":"Tue Sep 20 19:11:26 +0000 2016","date":"September 20, 2016","hour":12,"text":"@oreillyfactor who is this guy? The things he said are ridiculous. Does he ever say WHY? What does he base these views on?"},{"id":778425471583281200,"created_at":"Wed Sep 21 02:47:49 +0000 2016","date":"September 20, 2016","hour":19,"text":"RT @foxnewspolitics: Clinton email wiper appears to have asked online how to hide 'VIP' info https://t.co/xMfT3A0c8M via @maximlott https:/…"},{"id":778310652343488500,"created_at":"Tue Sep 20 19:11:34 +0000 2016","date":"September 20, 2016","hour":12,"text":"RT @oreillyfactor: Outrageous Accusation Goes Unchallenged on MSNBC https://t.co/ZAgMKIQKb6"},{"id":778441247652401200,"created_at":"Wed Sep 21 03:50:30 +0000 2016","date":"September 20, 2016","hour":20,"text":"@BlkMan4Trump this is mixed up. It says no he would not have been killed or yes he would still be alive. Those are the same things. :)"},{"id":778309036764790800,"created_at":"Tue Sep 20 19:05:09 +0000 2016","date":"September 20, 2016","hour":12,"text":"Only a few more days until I see the Love of my life! #besthusband #bestfriend"}]},{"date":"2016-10-04T07:00:00.000Z","count":10,"values":[{"id":783519061695197200,"created_at":"Wed Oct 05 04:07:56 +0000 2016","date":"October 04, 2016","hour":21,"text":"RT @Kimberly_Corban: Kaine: \"Last thing we should do is punish women who make choices.\" Great. Then get out of my way as I choose between a…"},{"id":783516734955393000,"created_at":"Wed Oct 05 03:58:41 +0000 2016","date":"October 04, 2016","hour":20,"text":"RT @TomiLahren: So the unborn shouldn't have any rights… But illegals should get sanctuary cities and Obamacare? #VPDebate"},{"id":783277741923823600,"created_at":"Tue Oct 04 12:09:00 +0000 2016","date":"October 04, 2016","hour":5,"text":"RT @foxandfriends: .@brunelldonald: We've given 8 years under Barack Obama and the promises from the Democratic party never came https://t.…"},{"id":783442641098797000,"created_at":"Tue Oct 04 23:04:15 +0000 2016","date":"October 04, 2016","hour":16,"text":"RT @MichiganMan_2: Only 2 teams have 2 wins against current top 25 teams:\nMichigan\nTennessee"},{"id":783519887054504000,"created_at":"Wed Oct 05 04:11:12 +0000 2016","date":"October 04, 2016","hour":21,"text":"RT @alinneabryan: Alabama high school student assaulted over BLM post where he backed cops, police say https://t.co/lci9ltIbtf\n \n#BLM needs…"},{"id":783505406534582300,"created_at":"Wed Oct 05 03:13:40 +0000 2016","date":"October 04, 2016","hour":20,"text":"@BenjaminSWatson @drmoore yea....I'm watching forensic files."},{"id":783517104096108500,"created_at":"Wed Oct 05 04:00:09 +0000 2016","date":"October 04, 2016","hour":21,"text":"RT @brithume: Kaine uses term \"reproductive choice\" to refer to abortion. It may be a choice but it sure is not \"reproductive.\""},{"id":783442326937079800,"created_at":"Tue Oct 04 23:03:01 +0000 2016","date":"October 04, 2016","hour":16,"text":"@SpeakerRyan like me"},{"id":783515998481707000,"created_at":"Wed Oct 05 03:55:45 +0000 2016","date":"October 04, 2016","hour":20,"text":"RT @daily_squid: This is the day the Lord has made! #NationalTacoDay https://t.co/CSgYuaauv4"},{"id":783494159684530200,"created_at":"Wed Oct 05 02:28:58 +0000 2016","date":"October 04, 2016","hour":19,"text":"@brithume @Mattlar2016 Brit, this one made me bust out laughing!!!"}]},{"date":"2016-09-23T07:00:00.000Z","count":17,"values":[{"id":779510462547370000,"created_at":"Sat Sep 24 02:39:11 +0000 2016","date":"September 23, 2016","hour":19,"text":"RT @VolNetwork_IMG: Jon Gruden has his game face on! #VolsGameFace #DISHCares https://t.co/OtGzJLJhEI"},{"id":779528145527513100,"created_at":"Sat Sep 24 03:49:27 +0000 2016","date":"September 23, 2016","hour":20,"text":"Peace will WIN and fear will lose!\n#Charlotte #PrayForCharlotte #twentyonepilots"},{"id":779536242279116800,"created_at":"Sat Sep 24 04:21:37 +0000 2016","date":"September 23, 2016","hour":21,"text":"@ashbethh pop tart unless there is more than one. Then it's pop tarts. But what does it matter? Just eat the whole box!!!"},{"id":779513026730942500,"created_at":"Sat Sep 24 02:49:22 +0000 2016","date":"September 23, 2016","hour":19,"text":"RT @C_Hope32: Gameday ready 🍊🍊 https://t.co/NJhqfmGnKT"},{"id":779332102760333300,"created_at":"Fri Sep 23 14:50:27 +0000 2016","date":"September 23, 2016","hour":7,"text":"RT @larryelder: A white racist would applaud #BlackLivesMatter for slandering cops, causing them to pull back--and thus INCREASING black-on…"},{"id":779529151850094600,"created_at":"Sat Sep 24 03:53:27 +0000 2016","date":"September 23, 2016","hour":20,"text":"@SheriffClarke 11 seconds"},{"id":779511770574643200,"created_at":"Sat Sep 24 02:44:23 +0000 2016","date":"September 23, 2016","hour":19,"text":"RT @BlkMan4Trump: Thanks @JamesFrancoTV And @RobertDowneyJr I'm voting for Trump because of you !!!! Make America Great Again !!! https://…"},{"id":779553742874087400,"created_at":"Sat Sep 24 05:31:10 +0000 2016","date":"September 23, 2016","hour":22,"text":"RT @Vol_Updates: When you're entering the toughest month of the schedule &amp; everyone is hurt but you're still an optimistic Vols fan 😅 https…"},{"id":779332873606328300,"created_at":"Fri Sep 23 14:53:31 +0000 2016","date":"September 23, 2016","hour":7,"text":"This is 100% true! And when the government created housing for the black community with low incomes, Fathers were NOT allowed with them. https://t.co/sma21664g3"},{"id":779531584408002600,"created_at":"Sat Sep 24 04:03:07 +0000 2016","date":"September 23, 2016","hour":21,"text":"This is the best way to do it. The more she talks the more people see that they really don't like her at all! https://t.co/sIGfGij0RS"},{"id":779534500082638800,"created_at":"Sat Sep 24 04:14:42 +0000 2016","date":"September 23, 2016","hour":21,"text":"Yes! Yes! Yes!!! https://t.co/pBHclLbiMo"},{"id":779535545412251600,"created_at":"Sat Sep 24 04:18:51 +0000 2016","date":"September 23, 2016","hour":21,"text":"@larryelder this made me laugh harder than I have laughed in a looooong time! Thank You!!!!"},{"id":779512959789834200,"created_at":"Sat Sep 24 02:49:06 +0000 2016","date":"September 23, 2016","hour":19,"text":"RT @davidwhitice80: Another clown spotting in Knoxville https://t.co/v1h7pWyqr7"},{"id":779536407723401200,"created_at":"Sat Sep 24 04:22:17 +0000 2016","date":"September 23, 2016","hour":21,"text":"RT @CollegeGameDay: Neyland at night: the calm before the storm. https://t.co/Eh2snvDyh5"},{"id":779534884364816400,"created_at":"Sat Sep 24 04:16:14 +0000 2016","date":"September 23, 2016","hour":21,"text":"RT @Vol_Updates: RETWEET if you think the streak ends tomorrow! #BeatFlorida 🍊⚪️🍊 https://t.co/1fAVWyJc2r"},{"id":779512540103581700,"created_at":"Sat Sep 24 02:47:26 +0000 2016","date":"September 23, 2016","hour":19,"text":"RT @TheGOPReport: Obama said he takes black people not voting as a personal insult. Why doesn't he take black people looting &amp; rioting as a…"},{"id":779509719337545700,"created_at":"Sat Sep 24 02:36:14 +0000 2016","date":"September 23, 2016","hour":19,"text":"RT @larryelder: Black cop. Black PD head. Black AG. Black prez. How do you complain about \"institutional racism\" if blacks run the institut…"}]},{"date":"2016-09-11T07:00:00.000Z","count":1,"values":[{"id":775199583588810800,"created_at":"Mon Sep 12 05:09:17 +0000 2016","date":"September 11, 2016","hour":22}]},{"date":"2016-09-29T07:00:00.000Z","count":2,"values":[{"id":781572122153975800,"created_at":"Thu Sep 29 19:11:29 +0000 2016","date":"September 29, 2016","hour":12,"text":"RT @TomiLahren: Hillary scandals: Whitewater, Benghazi, Emails, Clinton Foundation, Health lies. Trump scandals: Called woman fat 20 yrs ag…"},{"id":781536546411409400,"created_at":"Thu Sep 29 16:50:07 +0000 2016","date":"September 29, 2016","hour":9,"text":"@Atlantic_LIVE @SpeakerRyan \nBC/BS is pulling out of Tennessee because of how much they have lost......"}]},{"date":"2016-10-01T07:00:00.000Z","count":10,"values":[{"id":782254151812182000,"created_at":"Sat Oct 01 16:21:38 +0000 2016","date":"October 01, 2016","hour":9,"text":"RT @Always_Trump: #BasementDwellers Reminder that Bernie Sanders told his supporters to not listen to him if he ever told them who to vote…"},{"id":782428666106118100,"created_at":"Sun Oct 02 03:55:05 +0000 2016","date":"October 01, 2016","hour":20,"text":"RT @princess2684720: Scoot over #Deplorables we Bernie #BasementDwellers are going to need some room in that basket!"},{"id":782424648529088500,"created_at":"Sun Oct 02 03:39:07 +0000 2016","date":"October 01, 2016","hour":20,"text":"Yasssssss GBO!!!!!!!! https://t.co/kvZikG6G4t"},{"id":782254523972718600,"created_at":"Sat Oct 01 16:23:06 +0000 2016","date":"October 01, 2016","hour":9,"text":"RT @Vol_Updates: RETWEET if you believe the #Vols are going to destroy Georgia today to move to 5-0!\n#BeatUGA 🍊⚪️🍊⚪️🍊 https://t.co/0VAA5tPf…"},{"id":782255079801880600,"created_at":"Sat Oct 01 16:25:19 +0000 2016","date":"October 01, 2016","hour":9,"text":"RT @Vol_Updates: Less than 24 hours remain until it's officially GAME TIME!! \n#GoVols 🍊⚪️🍊⚪️ https://t.co/VXilwNwrfg"},{"id":782254096111763500,"created_at":"Sat Oct 01 16:21:24 +0000 2016","date":"October 01, 2016","hour":9,"text":"RT @immigrant4trump: Hillary Clinton Is The War On Women, Enabler, Used Threats To Silence Bill’s Sexual Assault Victims #ClintonScandals #…"},{"id":782428992360030200,"created_at":"Sun Oct 02 03:56:23 +0000 2016","date":"October 01, 2016","hour":20,"text":"RT @MikePenceVP: 25% of Americans are deplorable &amp; irredeemable. \n20% are \"hopeless #BasementDwellers\"\n13% are \"super predators\"\nWho does H…"},{"id":782430117360439300,"created_at":"Sun Oct 02 04:00:51 +0000 2016","date":"October 01, 2016","hour":21,"text":"RT @TomiLahren: Hey Bernie supporters, looks like Hillary thinks you're desperate losers too. Welcome to the deplorable club. #NeverHillary"},{"id":782252318175748100,"created_at":"Sat Oct 01 16:14:20 +0000 2016","date":"October 01, 2016","hour":9,"text":"RT @VibeHi: It's right here. Stop falling for the same old tricks. Police brutality stories are a distraction. #Hotep https://t.co/c8ImbNoZ…"},{"id":782424502403735600,"created_at":"Sun Oct 02 03:38:32 +0000 2016","date":"October 01, 2016","hour":20,"text":"RT @Vol_Updates: \"What's it like being a Vols fan?\" https://t.co/QqLX3CjLb8"}]},{"date":"2016-09-07T07:00:00.000Z","count":2,"values":[{"id":773669753529503700,"created_at":"Wed Sep 07 23:50:17 +0000 2016","date":"September 07, 2016","hour":16},{"id":773669300183920600,"created_at":"Wed Sep 07 23:48:29 +0000 2016","date":"September 07, 2016","hour":16}]},{"date":"2016-09-30T07:00:00.000Z","count":13,"values":[{"id":781997404891537400,"created_at":"Fri Sep 30 23:21:24 +0000 2016","date":"September 30, 2016","hour":16,"text":"Yes!!!!! This is what everyone should be saying!!! #Bengazi #neverforget #HillaryLiesMatter https://t.co/AXx90Yyfpz"},{"id":782060863624736800,"created_at":"Sat Oct 01 03:33:34 +0000 2016","date":"September 30, 2016","hour":20,"text":"@SpeakerRyan like in #Tennessee it's just all so ridiculous!"},{"id":781917696678060000,"created_at":"Fri Sep 30 18:04:40 +0000 2016","date":"September 30, 2016","hour":11,"text":"RT @megynkelly: Yes, @HillaryClinton, do 30 min w/@maryjblige, &amp; then perhaps u will finally sit w/me, instead of just using my name to hit…"},{"id":781926929549168600,"created_at":"Fri Sep 30 18:41:22 +0000 2016","date":"September 30, 2016","hour":11,"text":"I care more about @HillaryClinton taking money from those who abuse,rape kill woman, gays &amp; Christians than @realDonaldTrump name calling."},{"id":782062216744996900,"created_at":"Sat Oct 01 03:38:57 +0000 2016","date":"September 30, 2016","hour":20,"text":"RT @ClassySnobbb: #LoveTrumpsHateBecause calling someone \"unattractive\" is nothing in comparison to letting 4 men die in Benghazi."},{"id":781925983603548200,"created_at":"Fri Sep 30 18:37:36 +0000 2016","date":"September 30, 2016","hour":11,"text":"RT @TheLastRefuge2: Twitter is continually shadow banning this tweet --&gt; https://t.co/e70zzqo3Hs"},{"id":781927173850538000,"created_at":"Fri Sep 30 18:42:20 +0000 2016","date":"September 30, 2016","hour":11,"text":"I care more about @HillaryClinton classified emails more than @realDonaldTrump name calling."},{"id":781925799201046500,"created_at":"Fri Sep 30 18:36:52 +0000 2016","date":"September 30, 2016","hour":11,"text":"So it's OK to make public @realDonaldTrump depo but nothing @HillaryClinton has given depo on? I care more about #Bengazi then calling names"},{"id":781915913842991100,"created_at":"Fri Sep 30 17:57:35 +0000 2016","date":"September 30, 2016","hour":10,"text":"RT @FoxNews: HS football player raises #Americanflag when he sees school doesn't have one https://t.co/7FRmUNP89I"},{"id":782064892517941200,"created_at":"Sat Oct 01 03:49:35 +0000 2016","date":"September 30, 2016","hour":20,"text":"@BlkMan4Trump people are crazy"},{"id":781927382232039400,"created_at":"Fri Sep 30 18:43:10 +0000 2016","date":"September 30, 2016","hour":11,"text":"I care more about the health care disaster in my home state #tennessee than I do about @realDonaldTrump name calling"},{"id":781927689661845500,"created_at":"Fri Sep 30 18:44:23 +0000 2016","date":"September 30, 2016","hour":11,"text":"I care more about @HillaryClinton threatening sexual harassment victims more that @realDonaldTrump name calling"},{"id":782064654298320900,"created_at":"Sat Oct 01 03:48:38 +0000 2016","date":"September 30, 2016","hour":20,"text":"RT @BlkMan4Trump: #LoveTrumpsHateBecause Don't use @Snopes to get your facts. It's Two Liberal hacks who use Google and get caught lying a…"}]},{"date":"2016-09-02T07:00:00.000Z","count":4,"values":[{"id":771810897128030200,"created_at":"Fri Sep 02 20:43:52 +0000 2016","date":"September 02, 2016","hour":13},{"id":771811937575440400,"created_at":"Fri Sep 02 20:48:00 +0000 2016","date":"September 02, 2016","hour":13},{"id":771812144836935700,"created_at":"Fri Sep 02 20:48:49 +0000 2016","date":"September 02, 2016","hour":13},{"id":771811778997215200,"created_at":"Fri Sep 02 20:47:22 +0000 2016","date":"September 02, 2016","hour":13}]},{"date":"2016-10-02T07:00:00.000Z","count":4,"values":[{"id":782736949845057500,"created_at":"Mon Oct 03 00:20:06 +0000 2016","date":"October 02, 2016","hour":17,"text":"RT @Vol_Football: Hail yes. 🍊🍊🍊 https://t.co/ha6hOARBjZ"},{"id":782597368462078000,"created_at":"Sun Oct 02 15:05:27 +0000 2016","date":"October 02, 2016","hour":8,"text":"RT @FIirtationship: *weather drops 2 degrees* https://t.co/VVhq9YDrk3"},{"id":782718170947878900,"created_at":"Sun Oct 02 23:05:28 +0000 2016","date":"October 02, 2016","hour":16,"text":"RT @chucksmithnfl: And now we celebrate! #VolsOnTop #TENNvsUGA #VFL https://t.co/tBo8ErWqlM"},{"id":782739660967645200,"created_at":"Mon Oct 03 00:30:52 +0000 2016","date":"October 02, 2016","hour":17,"text":"@BenjaminSWatson you are so awesome and I love you....but there isn't much better than Rocky Top! Go Big Orange!!!"}]},{"date":"2016-09-16T07:00:00.000Z","count":3,"values":[{"id":776972020407939100,"created_at":"Sat Sep 17 02:32:19 +0000 2016","date":"September 16, 2016","hour":19},{"id":776690542503661600,"created_at":"Fri Sep 16 07:53:50 +0000 2016","date":"September 16, 2016","hour":0},{"id":776810792867995600,"created_at":"Fri Sep 16 15:51:40 +0000 2016","date":"September 16, 2016","hour":8}]},{"date":"2016-09-17T07:00:00.000Z","count":4,"values":[{"id":777347242252505100,"created_at":"Sun Sep 18 03:23:19 +0000 2016","date":"September 17, 2016","hour":20},{"id":777348282687295500,"created_at":"Sun Sep 18 03:27:27 +0000 2016","date":"September 17, 2016","hour":20},{"id":777349066992808000,"created_at":"Sun Sep 18 03:30:34 +0000 2016","date":"September 17, 2016","hour":20},{"id":777348554109120500,"created_at":"Sun Sep 18 03:28:32 +0000 2016","date":"September 17, 2016","hour":20}]},{"date":"2016-08-02T07:00:00.000Z","count":2,"values":[{"id":760554384048750600,"created_at":"Tue Aug 02 19:14:30 +0000 2016","date":"August 02, 2016","hour":12},{"id":760553371300466700,"created_at":"Tue Aug 02 19:10:28 +0000 2016","date":"August 02, 2016","hour":12}]},{"date":"2016-08-01T07:00:00.000Z","count":2,"values":[{"id":760098018083340300,"created_at":"Mon Aug 01 13:01:04 +0000 2016","date":"August 01, 2016","hour":6},{"id":760147544982904800,"created_at":"Mon Aug 01 16:17:52 +0000 2016","date":"August 01, 2016","hour":9}]},{"date":"2016-09-28T07:00:00.000Z","count":3,"values":[{"id":781282265875750900,"created_at":"Wed Sep 28 23:59:42 +0000 2016","date":"September 28, 2016","hour":16,"text":"RT @BlkMan4Trump: RT This please - Make it viral. https://t.co/MtDnAhyFm8"},{"id":781154758518341600,"created_at":"Wed Sep 28 15:33:02 +0000 2016","date":"September 28, 2016","hour":8,"text":"RT @twentyonepilots: on October 8th your band takes the most famous stage in television. incredibly honored. https://t.co/wacimOdxxH"},{"id":781280890232180700,"created_at":"Wed Sep 28 23:54:14 +0000 2016","date":"September 28, 2016","hour":16,"text":"RT @cheriemaylene: @FoxNews @HillaryClinton who's going to pay for it?"}]},{"date":"2016-09-01T07:00:00.000Z","count":3,"values":[{"id":771502826262556700,"created_at":"Fri Sep 02 00:19:42 +0000 2016","date":"September 01, 2016","hour":17},{"id":771436223596531700,"created_at":"Thu Sep 01 19:55:02 +0000 2016","date":"September 01, 2016","hour":12},{"id":771436665718071300,"created_at":"Thu Sep 01 19:56:48 +0000 2016","date":"September 01, 2016","hour":12}]},{"date":"2016-09-24T07:00:00.000Z","count":3,"values":[{"id":779825238997602300,"created_at":"Sat Sep 24 23:30:00 +0000 2016","date":"September 24, 2016","hour":16,"text":"https://t.co/vVCEflQa6Y"},{"id":779812359263154200,"created_at":"Sat Sep 24 22:38:49 +0000 2016","date":"September 24, 2016","hour":15,"text":"How bout then VOLS?!!!! #floridavstennessee #FloridaGators #tnvols #tnfan"},{"id":779905935594709000,"created_at":"Sun Sep 25 04:50:39 +0000 2016","date":"September 24, 2016","hour":21,"text":"RT @mbeaty3: Ducks pulling soooo many trucks tonight! 🏈🍊🙌🏼😍 #vols #volunteers #tennessee #collegefootball #neyland #rockytop #TNvsFL"}]},{"date":"2016-08-05T07:00:00.000Z","count":8,"values":[{"id":761610233047384000,"created_at":"Fri Aug 05 17:10:04 +0000 2016","date":"August 05, 2016","hour":10},{"id":761612523372175400,"created_at":"Fri Aug 05 17:19:10 +0000 2016","date":"August 05, 2016","hour":10},{"id":761615657385467900,"created_at":"Fri Aug 05 17:31:37 +0000 2016","date":"August 05, 2016","hour":10},{"id":761614728129110000,"created_at":"Fri Aug 05 17:27:55 +0000 2016","date":"August 05, 2016","hour":10},{"id":761613795525615600,"created_at":"Fri Aug 05 17:24:13 +0000 2016","date":"August 05, 2016","hour":10},{"id":761609624441290800,"created_at":"Fri Aug 05 17:07:39 +0000 2016","date":"August 05, 2016","hour":10},{"id":761613864857440300,"created_at":"Fri Aug 05 17:24:30 +0000 2016","date":"August 05, 2016","hour":10},{"id":761763815885332500,"created_at":"Sat Aug 06 03:20:21 +0000 2016","date":"August 05, 2016","hour":20}]},{"date":"2016-09-14T07:00:00.000Z","count":3,"values":[{"id":776224405307416600,"created_at":"Thu Sep 15 01:01:34 +0000 2016","date":"September 14, 2016","hour":18},{"id":776224900520538100,"created_at":"Thu Sep 15 01:03:32 +0000 2016","date":"September 14, 2016","hour":18},{"id":776224229293428700,"created_at":"Thu Sep 15 01:00:52 +0000 2016","date":"September 14, 2016","hour":18}]},{"date":"2016-08-06T07:00:00.000Z","count":2,"values":[{"id":762030277266907100,"created_at":"Sat Aug 06 20:59:10 +0000 2016","date":"August 06, 2016","hour":13},{"id":761937143178596400,"created_at":"Sat Aug 06 14:49:05 +0000 2016","date":"August 06, 2016","hour":7}]},{"date":"2016-08-04T07:00:00.000Z","count":3,"values":[{"id":761219850014515200,"created_at":"Thu Aug 04 15:18:49 +0000 2016","date":"August 04, 2016","hour":8},{"id":761274548302078000,"created_at":"Thu Aug 04 18:56:10 +0000 2016","date":"August 04, 2016","hour":11},{"id":761218297727688700,"created_at":"Thu Aug 04 15:12:39 +0000 2016","date":"August 04, 2016","hour":8}]},{"date":"2016-08-17T07:00:00.000Z","count":6,"values":[{"id":765991354514214900,"created_at":"Wed Aug 17 19:19:05 +0000 2016","date":"August 17, 2016","hour":12},{"id":765993459337560000,"created_at":"Wed Aug 17 19:27:26 +0000 2016","date":"August 17, 2016","hour":12},{"id":765991036573409300,"created_at":"Wed Aug 17 19:17:49 +0000 2016","date":"August 17, 2016","hour":12},{"id":765995037037563900,"created_at":"Wed Aug 17 19:33:42 +0000 2016","date":"August 17, 2016","hour":12},{"id":765992046566006800,"created_at":"Wed Aug 17 19:21:50 +0000 2016","date":"August 17, 2016","hour":12},{"id":765995410821374000,"created_at":"Wed Aug 17 19:35:12 +0000 2016","date":"August 17, 2016","hour":12}]},{"date":"2016-09-04T07:00:00.000Z","count":1,"values":[{"id":772619434049409000,"created_at":"Mon Sep 05 02:16:42 +0000 2016","date":"September 04, 2016","hour":19}]},{"date":"2016-09-22T07:00:00.000Z","count":12,"values":[{"id":778995798105329700,"created_at":"Thu Sep 22 16:34:05 +0000 2016","date":"September 22, 2016","hour":9,"text":"RT @FoxNews: Mark Fuhrman: \"We wouldn't want the facts to get in the way of a really good riot.\" #Hannity https://t.co/zNDTkztESF"},{"id":779014221422010400,"created_at":"Thu Sep 22 17:47:18 +0000 2016","date":"September 22, 2016","hour":10,"text":"I hate eggs. Like I really, really, really hate eggs."},{"id":778996770827341800,"created_at":"Thu Sep 22 16:37:57 +0000 2016","date":"September 22, 2016","hour":9,"text":"Good way to have your voices heard and your cause furthered! Breaking, Stealing, and Looting. You guys must be so proud. https://t.co/054mP3Mp0q"},{"id":779036959503224800,"created_at":"Thu Sep 22 19:17:39 +0000 2016","date":"September 22, 2016","hour":12,"text":"RT @BlkMan4Trump: For the #ImWithHer #Hillary people. https://t.co/xgrth4lczn"},{"id":778995640353325000,"created_at":"Thu Sep 22 16:33:28 +0000 2016","date":"September 22, 2016","hour":9,"text":"@SheriffClarke @DailySignal are you kidding me? People r dying..DYING in the most horrible unimaginable ways and this is a narrative fight?"},{"id":779155663742173200,"created_at":"Fri Sep 23 03:09:20 +0000 2016","date":"September 22, 2016","hour":20,"text":"@FoxNews @DimitriNRoberts Really? Nobody wants anyone else to die? I'm sure I saw video of it being open season on white people. And more!"},{"id":779001021708308500,"created_at":"Thu Sep 22 16:54:51 +0000 2016","date":"September 22, 2016","hour":9,"text":"But wait.....it was a Black Cop who shot this armed man....correct??? https://t.co/KHFcz29Nij"},{"id":779003699175755800,"created_at":"Thu Sep 22 17:05:29 +0000 2016","date":"September 22, 2016","hour":10,"text":"@maddiegrace799 Hello Beautiful Girl!!! I hope this birthday is your best yet!!!! Love you!"},{"id":779045790450872300,"created_at":"Thu Sep 22 19:52:45 +0000 2016","date":"September 22, 2016","hour":12,"text":"RT @ThePatriot143: The Shocking Truth About Hillary's October Surprise #TerribleDebateQuestions https://t.co/4Y9fBdgZ3c"},{"id":779037328400642000,"created_at":"Thu Sep 22 19:19:07 +0000 2016","date":"September 22, 2016","hour":12,"text":"RT @BlkMan4Trump: Think about it https://t.co/lLt3WgElCQ"},{"id":778997747882070000,"created_at":"Thu Sep 22 16:41:50 +0000 2016","date":"September 22, 2016","hour":9,"text":"Well, that didn't last long. https://t.co/HS2wFk7EDl"},{"id":779002705222201300,"created_at":"Thu Sep 22 17:01:32 +0000 2016","date":"September 22, 2016","hour":10,"text":"RT @gunvote: Clinton has said publicly that she sees Australia’s gun confiscation as a successful model that should be considered in the U.…"}]},{"date":"2016-08-18T07:00:00.000Z","count":2,"values":[{"id":766307632248488000,"created_at":"Thu Aug 18 16:15:51 +0000 2016","date":"August 18, 2016","hour":9},{"id":766308476880613400,"created_at":"Thu Aug 18 16:19:12 +0000 2016","date":"August 18, 2016","hour":9}]},{"date":"2016-08-24T07:00:00.000Z","count":1,"values":[{"id":768661640384503800,"created_at":"Thu Aug 25 04:09:50 +0000 2016","date":"August 24, 2016","hour":21}]},{"date":"2016-08-19T07:00:00.000Z","count":1,"values":[{"id":766833666211319800,"created_at":"Sat Aug 20 03:06:07 +0000 2016","date":"August 19, 2016","hour":20}]},{"date":"2016-09-06T07:00:00.000Z","count":1,"values":[{"id":773266904186286100,"created_at":"Tue Sep 06 21:09:31 +0000 2016","date":"September 06, 2016","hour":14}]},{"date":"2016-10-03T07:00:00.000Z","count":1,"values":[{"id":782933654699970600,"created_at":"Mon Oct 03 13:21:44 +0000 2016","date":"October 03, 2016","hour":6,"text":"RT @foxandfriends: 1000+ illegal aliens found on voter rolls in the crucial battleground state of Virginia (via @FoxFriendsFirst) https://t…"}]},{"date":"2016-08-25T07:00:00.000Z","count":2,"values":[{"id":768969019449827300,"created_at":"Fri Aug 26 00:31:15 +0000 2016","date":"August 25, 2016","hour":17},{"id":768969974866145300,"created_at":"Fri Aug 26 00:35:03 +0000 2016","date":"August 25, 2016","hour":17}]},{"date":"2016-10-05T07:00:00.000Z","count":1,"values":[{"id":783702082054393900,"created_at":"Wed Oct 05 16:15:11 +0000 2016","date":"October 05, 2016","hour":9,"text":"@TezlynFigaro @Varneyco @DailyCaller ummmmm....I know! I have a list of things, and if woman are listening and watching they know too."}]}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment