From ceb67767984d8d045b99523b890996ad2ed0270e Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Thu, 15 Oct 2020 18:31:42 -0400 Subject: [PATCH 01/20] first commit toward python topic spider --- .../common/src/python/mediawords/util/mail.py | 7 + .../tests/python/mediawords/util/test_mail.py | 5 + .../src/python/topics_base/alert.py | 33 + apps/topics-base/tests/python/test_alert.py | 53 + .../src/python/topics_mine/mine.py | 1086 +++++++++++++++++ 5 files changed, 1184 insertions(+) create mode 100644 apps/topics-base/src/python/topics_base/alert.py create mode 100644 apps/topics-base/tests/python/test_alert.py create mode 100644 apps/topics-mine/src/python/topics_mine/mine.py diff --git a/apps/common/src/python/mediawords/util/mail.py b/apps/common/src/python/mediawords/util/mail.py index 3e75702f6d..939676bbf2 100644 --- a/apps/common/src/python/mediawords/util/mail.py +++ b/apps/common/src/python/mediawords/util/mail.py @@ -13,6 +13,8 @@ # Environment variable that, when set, will prevent the package from actually sending the email __ENV_MAIL_DO_NO_SEND = 'MEDIACLOUD_MAIL_DO_NOT_SEND' +# queue a list of test messages sent for validation +_sent_test_messages = [] class McSendEmailException(Exception): """send_email() exception.""" @@ -27,6 +29,10 @@ def disable_test_mode(): del os.environ[__ENV_MAIL_DO_NO_SEND] +def sent_test_messages(): + return _sent_test_messages + + def test_mode_is_enabled() -> bool: return __ENV_MAIL_DO_NO_SEND in os.environ @@ -123,6 +129,7 @@ def send_email(message: Message) -> bool: mime_message.attach(message_part) if test_mode_is_enabled(): + _sent_test_messages.append(message) log.info("Test mode is enabled, not actually sending any email.") log.debug("Omitted email:\n\n%s" % mime_message.as_string()) diff --git a/apps/common/tests/python/mediawords/util/test_mail.py b/apps/common/tests/python/mediawords/util/test_mail.py index 11415e26c3..cbc2f79843 100644 --- a/apps/common/tests/python/mediawords/util/test_mail.py +++ b/apps/common/tests/python/mediawords/util/test_mail.py @@ -4,6 +4,7 @@ Message, send_email, send_text_email, + sent_test_messages, enable_test_mode as enable_mail_test_mode, disable_test_mode as disable_mail_test_mode, ) @@ -29,6 +30,10 @@ def test_send_mail(self): ) assert send_email(message) + sent_message = sent_test_messages().pop() + + assert sent_message == message + def test_send_text_email(self): assert send_text_email( to='nowhere@mediacloud.org', diff --git a/apps/topics-base/src/python/topics_base/alert.py b/apps/topics-base/src/python/topics_base/alert.py new file mode 100644 index 0000000000..6472429676 --- /dev/null +++ b/apps/topics-base/src/python/topics_base/alert.py @@ -0,0 +1,33 @@ +from mediawords.util.log import create_logger +log = create_logger(__name__) + +import mediawords.util.mail +import topics_base.config +import topics_base.messages + +def send_topic_alert(db, topic, message): + """ send an alert about significant activity on the topic to all users with at least write access to the topic""" + + emails = db.query( + """ + select distinct au.email + from auth_users au + join topic_permissions tp using (auth_users_id) + where + tp.permission in ('admin', 'write') and + tp.topics_id = %(a)s + """, + {'a': topic['topics_id']}).flat() + + emails.extend(topics_base.config.TopicsBaseConfig.topic_alert_emails()) + + emails = set(emails) + + for email in emails: + message = topics_base.messages.TopicSpiderUpdateMessage( + to=email, + topic_name=topic['name'], + topic_url="https://topics.mediacloud.org/#/topics/topic['topics_id']/summary", + topic_spider_status=message, + ) + mediawords.util.mail.send_email(message) diff --git a/apps/topics-base/tests/python/test_alert.py b/apps/topics-base/tests/python/test_alert.py new file mode 100644 index 0000000000..e075dd7d2b --- /dev/null +++ b/apps/topics-base/tests/python/test_alert.py @@ -0,0 +1,53 @@ +import hashlib + +from mediawords.db import connect_to_db +import mediawords.test.db.create +import mediawords.util.mail +import topics_base.alert +from topics_base.config import TopicsBaseConfig + +from mediawords.util.log import create_logger + +log = create_logger(__name__) + +def _create_permission(db, topic, permission): + au = { + 'email': f'{permission}@bar.com', + 'password_hash': 'x' * 137, + 'full_name': 'foo bar'} + au = db.create('auth_users', au) + + tp = { + 'topics_id': topic['topics_id'], + 'auth_users_id': au['auth_users_id'], + 'permission': permission} + tp = db.create('topic_permissions', tp) + + return au + + +def test_topic_alert(): + db = mediawords.db.connect_to_db() + + topic = mediawords.test.db.create.create_test_topic(db, 'test') + + au_admin = _create_permission(db, topic, 'admin') + au_read = _create_permission(db, topic, 'read') + au_write = _create_permission(db, topic, 'write') + + mediawords.util.mail.enable_test_mode() + + test_message = 'foobarbat' + + topics_base.alert.send_topic_alert(db, topic, test_message) + + sent_mails = mediawords.util.mail.sent_test_messages() + + expected_emails = [au['email'] for au in (au_admin, au_write)] + TopicsBaseConfig.topic_alert_emails() + got_emails = [m.to[0] for m in sent_mails] + + assert len(sent_mails) == len(expected_emails) + + assert set(got_emails) == set(expected_emails) + + diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py new file mode 100644 index 0000000000..0595999c12 --- /dev/null +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -0,0 +1,1086 @@ +""" +topic spider implementation + +this package implements the parent spider job, which runs the initial seed queries and then queues and +manages the children jobs to fetch and extract links, to fetch social media data, and so on. + +the topic mining process is described in doc/topic_mining.markdown. + +""" + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +import mediawords.tm.alert +import mediawords.tm.fetchtopicposts +import mediawords.tm.stories +import mediawords.dbi.stories +import mediawords.dbi.stories.guessdate +import mediawords.job.broker +import mediawords.job.statefulbroker +import mediawords.solr +import mediawords.solr.query +import mediawords.util.sql + +# total time to wait for fetching of social media metrics +MAX_SOCIAL_MEDIA_FETCH_TIME = (60 * 60 * 24) + +# add new links in chunks of this size +ADD_NEW_LINKS_CHUNK_SIZE = 10_000 + +# extract story links in chunks of this size +EXTRACT_STORY_LINKS_CHUNK_SIZE = 1000 + +# query this many topic_links at a time to spider +SPIDER_LINKS_CHUNK_SIZE = 100_000 + +# die if the error rate for link fetch or link extract jobs is greater than this +MAX_JOB_ERROR_RATE = 0.02 + +# timeout when polling for jobs to finish +JOB_POLL_TIMEOUT = 300 + +# number of seconds to wait when polling for jobs to finish +JOB_POLL_WAIT = 5 + +# if more than this many seed urls are imported, dedup stories before as well as after spidering +MIN_SEED_IMPORT_FOR_PREDUP_STORIES = 50_000 + +# how many link extraction jobs per 1000 can we ignore if they hang +MAX_LINK_EXTRACTION_TIMEOUT = 10 + +# how long to wait to timeout link extraction +LINK_EXTRACTION_POLL_TIMEOUT = 60 + +# if mine_topic is run with the test_mode option, set this true and do not try to queue extractions +_test_mode = None + +def update_topic_state(db, state_updater, message): + """ update topics.state in the database""" + + log.info("update topic state: message") + + unless (state_updater) { + # Shouldn't happen but let's just test it here + ERROR "State updater is unset." + return + + eval { + state_updater.update_job_state_message(db, message) + + if $@: + + die "Error updating job state: $@" + +# return true if the publish date of the story is within 7 days of the topic date range or if the +def story_within_topic_date_range(db, topic, story): + """ story is undateable""" + + if not story['publish_date']: + + return 1 + + story_date = substr(story['publish_date'], 0, 10) + + start_date = topic['start_date'] + start_date = mediawords.util.sql.increment_day(start_date, -7) + start_date = substr(start_date, 0, 10) + + end_date = topic['end_date'] + end_date = mediawords.util.sql.increment_day(end_date, 7) + end_date = substr(end_date, 0, 10) + + if (story_date ge start_date) and (story_date le end_date): + + return 1 + + return mediawords.dbi.stories.guessdate.is_undateable(db, story) + +# submit jobs to extract links from the given stories and then poll to wait for the stories to be processed within +def generate_topic_links(db, topic, stories): + """ the jobs pool""" + + INFO "generate topic links: " . len(stories) + + topic_links = [] + + if topic['platform'] ne 'web': + + log.info("skip link generation for non web topic") + return + + stories_ids_table = db.get_temporary_ids_table([map { _['stories_id'] } stories]) + + db.query(< topic['topics_id'] }, # + ) + + log.debug("queued link extraction for story story['title'] story['url'].") + + log.info("waiting for " . len( queued_stories_ids) . " link extraction jobs to finish" ) + + queued_ids_table = db.get_temporary_ids_table(queued_stories_ids) + + # poll every JOB_POLL_WAIT seconds waiting for the jobs to complete. die if the number of stories left to process + # has not shrunk for EXTRACTION_POLL_TIMEOUT seconds. + prev_num_queued_stories = len(stories) + last_change_time = time() + while 1: + + queued_stories = db.query(< LINK_EXTRACTION_POLL_TIMEOUT ) + + ids_list = join(', ', queued_stories) + if num_queued_stories > MAX_LINK_EXTRACTION_TIMEOUT: + + LOGDIE( "Timed out waiting for story link extraction (ids_list)." ) + + db.query(< topics.max_stories because this check is expensive and we don't +def die_if_max_stories_exceeded(db, topic): + """ care if the topic goes over by a few thousand stories, we only actually run the check randmly 1/1000 of the time""" + + my (num_topic_stories) = db.query(< topic['max_stories']: + + LOGDIE("topic has num_topic_stories stories, which exceeds topic max stories of topic['max_stories']") + +def queue_topic_fetch_url(tfu, domain_timeout): + """ add the topic_fetch_url to the fetch_link job queue. try repeatedly on failure.""" + + domain_timeout //= _test_mode ? 0 : undef + + mediawords.job.broker.new('mediawords.job.tm.fetchlink').add_to_queue( + + 'topic_fetch_urls_id': tfu['topic_fetch_urls_id'], + 'domain_timeout': domain_timeout + + ) + +def create_and_queue_topic_fetch_urls(db, topic, fetch_links): + """ create topic_fetch_urls rows correpsonding to the links and queue a FetchLink job for each. return the tfu rows.""" + + tfus = [] + for link in fetch_links: + + if (link['topic_links_id'] and not db.find_by_id( 'topic_links', link['topic_links_id']) ) + + next + + tfu = db.create( + 'topic_fetch_urls', + + 'topics_id': topic['topics_id'], + 'url': link['url'], + 'state': 'pending', + 'assume_match': mediawords.util.python.normalize_boolean_for_db(link['assume_match']), + 'topic_links_id': link['topic_links_id'], + + ) + push(tfus, tfu) + + queue_topic_fetch_url(tfu) + + return tfus + +def _fetch_twitter_urls(db, topic, tfu_ids_list): + + twitter_tfu_ids = db.query(< 0: + + return + + tfu_ids_table = db.get_temporary_ids_table(twitter_tfu_ids) + + mediawords.job.broker.new('mediawords.job.tm.fetchtwitterurls').add_to_queue( + { 'topic_fetch_urls_ids': twitter_tfu_ids } + ) + + log.info("waiting for fetch twitter urls job for " . len( twitter_tfu_ids) . " urls" ) + + # poll every sleep_time seconds waiting for the jobs to complete. die if the number of stories left to process + # has not shrunk for large_timeout seconds. warn but continue if the number of stories left to process + # is only 5% of the total and short_timeout has passed (this is to make the topic not hang entirely because + # of one link extractor job error). + prev_num_queued_urls = len(twitter_tfu_ids) + last_change_time = time() + while 1: + + queued_tfus = db.query(< JOB_POLL_TIMEOUT ) + + LOGDIE("Timed out waiting for twitter fetching.\n" . Dumper( queued_tfus) ) + + log.info("num_queued_urls twitter urls left to fetch ...") + + prev_num_queued_urls = num_queued_urls + sleep(JOB_POLL_WAIT) + +def show_pending_urls(pending_urls): + """ list a sample of the pending urls for fetching""" + + num_pending_urls = len(pending_urls) + + num_printed_urls = List::Util::min(num_pending_urls, 3) + + my shuffled_ids = List::Util::shuffle(0 .. ( num_pending_urls - 1) ) + + for id (shuffled_ids[ 0 .. in num_printed_urls - 1) ]: + + url = pending_urls->[id] + log.info("pending url: url['url'] [url['state']: url['fetch_date']]") + +# fetch the given links by creating topic_fetch_urls rows and sending them to the FetchLink queue +def fetch_links(db, topic, fetch_links): + """ for processing. wait for the queue to complete and returnt the resulting topic_fetch_urls.""" + + log.info("fetch_links: queue links") + tfus = create_and_queue_topic_fetch_urls(db, topic, fetch_links) + num_queued_links = len(fetch_links) + + log.info("waiting for fetch link queue: num_queued_links queued") + + tfu_ids_list = join(',', map { int( _['topic_fetch_urls_id']) } tfus ) + + requeues = 0 + max_requeues = 1 + max_requeue_jobs = 100 + requeue_timeout = 30 + instant_requeued = 0 + + # once the pool is this small, just requeue everything with a 0 per site throttle + instant_queue_size = 25 + + # how many times to requeues everything if there is no change for JOB_POLL_TIMEOUT seconds + full_requeues = 0 + max_full_requeues = 1 + + last_pending_change = time() + last_num_pending_urls = 0 + while 1: + + pending_urls = db.query(< requeue_timeout: + and ( requeues < max_requeues) + and (num_pending_urls < max_requeue_jobs) ) + + log.info("requeueing fetch_link num_pending_urls jobs ... [requeue requeues]") + + # requeue with a domain_timeout of 0 so that requeued urls can ignore throttling + map { queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', _), 0 ) } pending_url_ids + ++requeues + last_pending_change = time() + + if time_since_change > JOB_POLL_TIMEOUT: + + if full_requeues < max_full_requeues: + + map { queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', _) ) } pending_url_ids + ++full_requeues + last_pending_change = time() + + else + + for id in pending_url_ids: + + db.update_by_id('topic_fetch_urls', id, { 'state': 'error', message => 'timed out' }) + + log.info("timed out " . len( pending_url_ids) . " urls" ) + + if num_pending_urls < last_num_pending_urls: + + last_pending_change = time() + + last_num_pending_urls = num_pending_urls + + sleep(JOB_POLL_WAIT) + + _fetch_twitter_urls(db, topic, tfu_ids_list) + + log.info("fetch_links: update topic seed urls") + db.query(< end_date: + return 1 + + if start_date: + + start_date = Time::Piece.strptime(start_date, "Y-m-d") + if month_date < start_date: + return 1 + + return 0 + +# Call search_solr_for_stories_ids() above and then query PostgreSQL for the stories returned by Solr. +def __search_for_stories(db, params): + """ Include stories.* and media_name as the returned fields.""" + + stories_ids = mediawords.solr.search_solr_for_stories_ids(db, params) + + stories = [map { { 'stories_id': _ } } stories_ids] + + stories = mediawords.dbi.stories.attach_story_meta_data_to_stories(db, stories) + + stories = [grep { _['url'] } stories] + + return stories + +def import_solr_seed_query_month(db, topic, month_offset): + """ import a single month of the solr seed query. we do this to avoid giant queries that timeout in solr.""" + + if not topic['platform'] == 'web': + + return 0 + + solr_query = mediawords.solr.query.get_full_solr_query_for_topic(db, topic, undef, undef, month_offset) + + # this should return undef once the month_offset gets too big + if not solr_query: + return undef + + if not _import_month_within_respider_date(topic, month_offset): + return 1 + + max_stories = topic['max_stories'] + + # if solr maxes out on returned stories, it returns a few documents less than the rows= parameter, so we + # assume that we hit the solr max if we are within 5% of the ma stories + max_returned_stories = max_stories * 0.95 + + INFO "import solr seed query month offset month_offset" + solr_query['rows'] = max_stories + + stories = __search_for_stories(db, solr_query) + + if (len( stories) > max_returned_stories ) + + die("solr_seed_query returned more than max_returned_stories stories") + + INFO "adding " . len(stories) . " stories to topic_seed_urls" + + topic_seed_urls = [] + for story in stories: + + push( + topic_seed_urls, + + 'topics_id': topic['topics_id'], + 'url': story['url'], + 'stories_id': story['stories_id'], + 'assume_match': 'f' + + ) + + insert_topic_seed_urls(db, topic_seed_urls) + + return 1 + +# import stories intro topic_seed_urls from solr by running +# topic['solr_seed_query'] against solr. if the solr query has +def import_solr_seed_query(db, topic): + """ already been imported, do nothing.""" + + log.info("import solr seed query") + + if topic['solr_seed_query_run']: + + return + + month_offset = 0 + while (import_solr_seed_query_month( db, topic, month_offset++) ) { } + + db.query("update topics set solr_seed_query_run = 't' where topics_id = ?", topic['topics_id']) + +def all_facebook_data_fetched(db, topic): + """ return true if there are no stories without facebook data""" + + null_facebook_story = db.query(< MAX_JOB_ERROR_RATE: + + die("Fetch error rate of fetch_error_rate is greater than max of MAX_JOB_ERROR_RATE") + + link_stats = db.query(< 0 ) as error + from topic_stories + where topics_id = ? + group by (length( link_mine_error) > 0 ) +SQL + + my (num_link_errors, num_link_successes) = (0, 0) + for s in link_stats: + + if (s['error']) { num_link_errors += s['num'] } + else { num_link_successes += s['num'] } + + link_error_rate = num_link_errors / (num_link_errors + num_link_successes + 1) + + log.info( "Link error rate: link_error_rate (num_link_errors / num_link_successes)" ) + + if link_error_rate > MAX_JOB_ERROR_RATE: + + die("link error rate of link_error_rate is greater than max of MAX_JOB_ERROR_RATE") + +def import_urls_from_seed_queries(db, topic, state_updater): + """ import urls from seed query """ + + topic_seed_queries = db.query( + "select * from topic_seed_queries where topics_id = ?", topic['topics_id'] ).hashes() + + num_queries = len(topic_seed_queries) + + if (( num_queries not = 1) and (topic['mode'] == 'url_sharing')) + + die("exactly one topic seed query required per url_sharing topic") + + if topic['mode'] == 'web': + + log.debug("import seed urls from solr") + update_topic_state(db, state_updater, "importing solr seed query") + import_solr_seed_query(db, topic) + + for tsq in topic_seed_queries: + + tsq_dump = tsq['topic_seed_queries_id'] + fetcher = mediawords.tm.fetchtopicposts.get_post_fetcher(tsq) + if not fetcher: + die("unable to import seed urls for platform/source of seed query: tsq_dump") + + log.debug("import seed urls from fetch_topic_posts:\ntsq_dump") + mediawords.tm.fetchtopicposts.fetch_topic_posts(db, tsq) + + db.query(<= \2 and + s.publish_date <= \1 and + ts.topics_id = \3 +SQL + if snapshots_id: + + db.update_by_id('snapshots', snapshots_id, { 'start_date': topic['start_date'] }) + db.query(<= \1 and + s.publish_date <= \2 and + ts.topics_id = \3 +SQL + + if snapshots_id: + + db.update_by_id('snapshots', snapshots_id, { 'end_date': topic['end_date'] }) + db.query(< ? +SQL + + db.update_by_id('topics', topic['topics_id'], + { 'respider_stories': 'f', respider_start_date => undef, respider_end_date => undef }) + +# mine the given topic for links and to recursively discover new stories on the web. +# options: +# import_only - only run import_seed_urls and import_solr_seed and exit +# skip_post_processing - skip social media fetching and snapshotting +def do_mine_topic(db, topic, options, state_updater): + """ snapshots_id - associate topic with the given existing snapshot""" + + map { options['_'] or= 0 } qw/import_only skip_post_processing test_mode/ + + update_topic_state(db, state_updater, "importing seed urls") + import_urls_from_seed_queries(db, topic, state_updater) + + update_topic_state(db, state_updater, "setting stories respidering...") + set_stories_respidering(db, topic, options['snapshots_id']) + + # this may put entires into topic_seed_urls, so run it before import_seed_urls. + # something is breaking trying to call this perl. commenting out for time being since we only need + # this when we very rarely change the foreign_rss_links field of a media source - hal + # update_topic_state(db, state_updater, "merging foreign rss stories") + # mediawords.tm.stories.merge_foreign_rss_stories(db, topic) + + update_topic_state(db, state_updater, "importing seed urls") + if (import_seed_urls( db, topic, state_updater) > MIN_SEED_IMPORT_FOR_PREDUP_STORIES ) + + # merge dup stories before as well as after spidering to avoid extra spidering work + update_topic_state(db, state_updater, "merging duplicate stories") + mediawords.tm.stories.find_and_merge_dup_stories(db, topic) + + unless (options['import_only']) + + update_topic_state(db, state_updater, "running spider") + run_spider(db, topic, state_updater) + + check_job_error_rate(db, topic) + + # merge dup media and stories again to catch dups from spidering + update_topic_state(db, state_updater, "merging duplicate stories") + mediawords.tm.stories.find_and_merge_dup_stories(db, topic) + + update_topic_state(db, state_updater, "merging duplicate media stories") + mediawords.tm.stories.merge_dup_media_stories(db, topic) + + if not options['skip_post_processing']: + + update_topic_state(db, state_updater, "fetching social media data") + fetch_social_media_data(db, topic) + + update_topic_state(db, state_updater, "snapshotting") + snapshot_args = { 'topics_id': topic['topics_id'], snapshots_id => options['snapshots_id'] } + mediawords.job.statefulbroker.new('mediawords.job.tm.snapshottopic').add_to_queue(snapshot_args) + +def mine_topic(db, topic, options, state_updater): + """ wrap do_mine_topic in eval and handle errors and state""" + + # the topic spider can sit around for long periods doing solr queries, so we need to make sure the postgres + # connection does not get timed out + db.query("set idle_in_transaction_session_timeout = 0") + + prev_test_mode = _test_mode + + if options['test_mode']: + + _test_mode = 1 + + if topic['state'] ne 'running': + + mediawords.tm.alert.send_topic_alert(db, topic, "started topic spidering") + + eval { do_mine_topic(db, topic, options, state_updater) } + if $@: + + error = $@ + mediawords.tm.alert.send_topic_alert(db, topic, "aborted topic spidering due to error") + LOGDIE(error) + + _test_mode = prev_test_mode + +1 From 6f9f38ce5240d5428dfa190ad502cc842908ff1e Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Mon, 19 Oct 2020 15:02:32 -0400 Subject: [PATCH 02/20] progress on python spider migration --- .../src/python/topics_mine/mine.py | 389 +++++++++--------- 1 file changed, 191 insertions(+), 198 deletions(-) diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 0595999c12..05ef9bd204 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -7,13 +7,8 @@ the topic mining process is described in doc/topic_mining.markdown. """ +from time import sleep, time -from mediawords.util.log import create_logger -log = create_logger(__name__) - -import mediawords.tm.alert -import mediawords.tm.fetchtopicposts -import mediawords.tm.stories import mediawords.dbi.stories import mediawords.dbi.stories.guessdate import mediawords.job.broker @@ -21,18 +16,25 @@ import mediawords.solr import mediawords.solr.query import mediawords.util.sql +import topics_base.alert +import topics_base.fetch_topic_posts +import topics_base.stories + +from mediawords.util.log import create_logger +log = create_logger(__name__) + # total time to wait for fetching of social media metrics MAX_SOCIAL_MEDIA_FETCH_TIME = (60 * 60 * 24) # add new links in chunks of this size -ADD_NEW_LINKS_CHUNK_SIZE = 10_000 +ADD_NEW_LINKS_CHUNK_SIZE = 10000 # extract story links in chunks of this size EXTRACT_STORY_LINKS_CHUNK_SIZE = 1000 # query this many topic_links at a time to spider -SPIDER_LINKS_CHUNK_SIZE = 100_000 +SPIDER_LINKS_CHUNK_SIZE = 100000 # die if the error rate for link fetch or link extract jobs is greater than this MAX_JOB_ERROR_RATE = 0.02 @@ -44,7 +46,7 @@ JOB_POLL_WAIT = 5 # if more than this many seed urls are imported, dedup stories before as well as after spidering -MIN_SEED_IMPORT_FOR_PREDUP_STORIES = 50_000 +MIN_SEED_IMPORT_FOR_PREDUP_STORIES = 50000 # how many link extraction jobs per 1000 can we ignore if they hang MAX_LINK_EXTRACTION_TIMEOUT = 10 @@ -60,80 +62,76 @@ def update_topic_state(db, state_updater, message): log.info("update topic state: message") - unless (state_updater) { + if not state_updater: # Shouldn't happen but let's just test it here - ERROR "State updater is unset." + log.warning("State updater is unset.") return - eval { - state_updater.update_job_state_message(db, message) - - if $@: + state_updater.update_job_state_message(db, message) - die "Error updating job state: $@" # return true if the publish date of the story is within 7 days of the topic date range or if the def story_within_topic_date_range(db, topic, story): """ story is undateable""" if not story['publish_date']: - return 1 - story_date = substr(story['publish_date'], 0, 10) + story_date = (story['publish_date'])[0:10] start_date = topic['start_date'] start_date = mediawords.util.sql.increment_day(start_date, -7) - start_date = substr(start_date, 0, 10) + start_date = start_date[0:10] end_date = topic['end_date'] end_date = mediawords.util.sql.increment_day(end_date, 7) - end_date = substr(end_date, 0, 10) - - if (story_date ge start_date) and (story_date le end_date): + end_date = end_date[0:10] + if (story_date >= start_date) and (story_date <= end_date): return 1 return mediawords.dbi.stories.guessdate.is_undateable(db, story) -# submit jobs to extract links from the given stories and then poll to wait for the stories to be processed within def generate_topic_links(db, topic, stories): - """ the jobs pool""" + """ + submit jobs to extract links from the given stories and then poll to wait for the stories to be processed + within the jobs pool + """ - INFO "generate topic links: " . len(stories) + log.info(f"generate topic links: {len(stories)}") topic_links = [] - if topic['platform'] ne 'web': - + if topic['platform'] <> 'web': log.info("skip link generation for non web topic") return - stories_ids_table = db.get_temporary_ids_table([map { _['stories_id'] } stories]) + stories_ids_table = db.get_temporary_ids_table([s['stories_id'] for s in stories]) - db.query(< topic['topics_id'] }, # ) - log.debug("queued link extraction for story story['title'] story['url'].") + log.debug(f"queued link extraction for story {story['title']} {story['url']}.") - log.info("waiting for " . len( queued_stories_ids) . " link extraction jobs to finish" ) + log.info(f"waiting for {len(queued_stories_ids)} link extraction jobs to finish") queued_ids_table = db.get_temporary_ids_table(queued_stories_ids) @@ -141,117 +139,121 @@ def generate_topic_links(db, topic, stories): # has not shrunk for EXTRACTION_POLL_TIMEOUT seconds. prev_num_queued_stories = len(stories) last_change_time = time() - while 1: - - queued_stories = db.query(< prev_num_queued_stories: last_change_time = time() - if ( ( time() - last_change_time ) > LINK_EXTRACTION_POLL_TIMEOUT ) - ids_list = join(', ', queued_stories) + if (time() - last_change_time) > LINK_EXTRACTION_POLL_TIMEOUT: + ids_list = ','.join(queued_stories) if num_queued_stories > MAX_LINK_EXTRACTION_TIMEOUT: + raise MCTopicMineError(f"Timed out waiting for story link extraction ({ids_list}).") - LOGDIE( "Timed out waiting for story link extraction (ids_list)." ) + db.query( + """ + update topic_stories set link_mine_error = 'time out' + where stories_id = any(%(b)s) and topics_id = %(a)s + """, + {'a': topic['topics_id'], 'b': queued_stories}) - db.query(< topics.max_stories because this check is expensive and we don't + def die_if_max_stories_exceeded(db, topic): - """ care if the topic goes over by a few thousand stories, we only actually run the check randmly 1/1000 of the time""" + """ + raise an MCTopicMineMaxStoriesException topic_stories > topics.max_stories. + """ - my (num_topic_stories) = db.query(< topic['max_stories']: + raise MCTopicMineMaxStoriesException(f"{num_topic_stories stories} > {topic['max_stories']}") - LOGDIE("topic has num_topic_stories stories, which exceeds topic max stories of topic['max_stories']") def queue_topic_fetch_url(tfu, domain_timeout): """ add the topic_fetch_url to the fetch_link job queue. try repeatedly on failure.""" - domain_timeout //= _test_mode ? 0 : undef - - mediawords.job.broker.new('mediawords.job.tm.fetchlink').add_to_queue( + domain_timeout = 0 if _test_mode else None - 'topic_fetch_urls_id': tfu['topic_fetch_urls_id'], - 'domain_timeout': domain_timeout - - ) + JobBroker(queue_name='MediaWords::Job::TM::FetchLink').add_to_queue( + topic_fetch_urls_id=tfu['topic_fetch_urls_id'], + domain_timeout=domain_timeout) def create_and_queue_topic_fetch_urls(db, topic, fetch_links): - """ create topic_fetch_urls rows correpsonding to the links and queue a FetchLink job for each. return the tfu rows.""" - + """ + create topic_fetch_urls rows correpsonding to the links and queue a FetchLink job for each. + + return the tfu rows. + """ tfus = [] for link in fetch_links: - - if (link['topic_links_id'] and not db.find_by_id( 'topic_links', link['topic_links_id']) ) - + if link['topic_links_id'] and not db.find_by_id( 'topic_links', link['topic_links_id']): next - tfu = db.create( - 'topic_fetch_urls', + tfu = { + 'topics_id': topic['topics_id'], + 'url': link['url'], + 'state': 'pending', + 'assume_match': mediawords.util.python.normalize_boolean_for_db(link['assume_match']), + 'topic_links_id': link['topic_links_id']} + tfu = db.create('topic_fetch_urls', tfu) - 'topics_id': topic['topics_id'], - 'url': link['url'], - 'state': 'pending', - 'assume_match': mediawords.util.python.normalize_boolean_for_db(link['assume_match']), - 'topic_links_id': link['topic_links_id'], - - ) - push(tfus, tfu) + tfus.append(tfu) queue_topic_fetch_url(tfu) return tfus -def _fetch_twitter_urls(db, topic, tfu_ids_list): - - twitter_tfu_ids = db.query(< 0: +def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None + """ + Send topic_fetch_urls to fetch_twitter_urls queue and wait for the jobs to complete. + """ + twitter_tfu_ids = db.query( + """ + select topic_fetch_urls_id + from topic_fetch_urls tfu + where + tfu.state = 'tweet pending' and + tfu.topic_fetch_urls_id = any(%(a)s) + """, {'a': tfu_ids}).flat() + + if not twitter_tfu_ids: return tfu_ids_table = db.get_temporary_ids_table(twitter_tfu_ids) - mediawords.job.broker.new('mediawords.job.tm.fetchtwitterurls').add_to_queue( - { 'topic_fetch_urls_ids': twitter_tfu_ids } - ) + JobBroker(queue_name='MediaWords::Job::TM::FetchTwitterUrls').add_to_queue( + { 'topic_fetch_urls_ids': twitter_tfu_ids}) - log.info("waiting for fetch twitter urls job for " . len( twitter_tfu_ids) . " urls" ) + log.info(f"waiting for fetch twitter urls job for {len(twitter_tfu_ids)} urls") # poll every sleep_time seconds waiting for the jobs to complete. die if the number of stories left to process # has not shrunk for large_timeout seconds. warn but continue if the number of stories left to process @@ -259,58 +261,55 @@ def _fetch_twitter_urls(db, topic, tfu_ids_list): # of one link extractor job error). prev_num_queued_urls = len(twitter_tfu_ids) last_change_time = time() - while 1: - - queued_tfus = db.query(< prev_num_queued_urls: last_change_time = time() - if ( ( time() - last_change_time ) > JOB_POLL_TIMEOUT ) - LOGDIE("Timed out waiting for twitter fetching.\n" . Dumper( queued_tfus) ) + if (time() - last_change_time) > JOB_POLL_TIMEOUT): + raise McTopicMineTimeoutError(f"Timed out waiting for twitter fetching {queued_tfus}") - log.info("num_queued_urls twitter urls left to fetch ...") + log.info(f"{num_queued_urls} twitter urls left to fetch ...") prev_num_queued_urls = num_queued_urls sleep(JOB_POLL_WAIT) -def show_pending_urls(pending_urls): - """ list a sample of the pending urls for fetching""" - +def list_pending_urls(pending_urls: list) -> str: + """list a sample of the pending urls for fetching""" num_pending_urls = len(pending_urls) - num_printed_urls = List::Util::min(num_pending_urls, 3) - - my shuffled_ids = List::Util::shuffle(0 .. ( num_pending_urls - 1) ) + num_printed_urls = min(num_pending_urls, 3) - for id (shuffled_ids[ 0 .. in num_printed_urls - 1) ]: + urls = shuffle(num_pending_urls)[0:num_printed_urls] - url = pending_urls->[id] - log.info("pending url: url['url'] [url['state']: url['fetch_date']]") + return "\n".join([f"pending url: {url['url']} [{url['state']}: {url['fetch_date']}]" for url in urls]) -# fetch the given links by creating topic_fetch_urls rows and sending them to the FetchLink queue -def fetch_links(db, topic, fetch_links): - """ for processing. wait for the queue to complete and returnt the resulting topic_fetch_urls.""" +def fetch_links(db: DatabaseHandle, topic: dict, fetch_links: dict) -> None: + """ + fetch the given links by creating topic_fetch_urls rows and sending them to the FetchLink queue + for processing. wait for the queue to complete and returnt the resulting topic_fetch_urls. + """ log.info("fetch_links: queue links") tfus = create_and_queue_topic_fetch_urls(db, topic, fetch_links) num_queued_links = len(fetch_links) - log.info("waiting for fetch link queue: num_queued_links queued") + log.info(f"waiting for fetch link queue: {num_queued_links} queued") - tfu_ids_list = join(',', map { int( _['topic_fetch_urls_id']) } tfus ) + tfu_ids = [tfu['topic_fetch_urls_id'] for tfu in tfus] requeues = 0 max_requeues = 1 @@ -327,68 +326,59 @@ def fetch_links(db, topic, fetch_links): last_pending_change = time() last_num_pending_urls = 0 - while 1: - - pending_urls = db.query(< requeue_timeout: - and ( requeues < max_requeues) - and (num_pending_urls < max_requeue_jobs) ) - - log.info("requeueing fetch_link num_pending_urls jobs ... [requeue requeues]") + if (time_since_change > requeue_timeout and + requeues < max_requeues and + num_pending_urls < max_requeue_jobs): + log.info(f"requeueing fetch_link {num_pending_urls} jobs ... [{requeue} requeues]") # requeue with a domain_timeout of 0 so that requeued urls can ignore throttling - map { queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', _), 0 ) } pending_url_ids - ++requeues + [queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', id), 0) for id in pending_url_ids] + requeues += 1 last_pending_change = time() if time_since_change > JOB_POLL_TIMEOUT: - if full_requeues < max_full_requeues: - - map { queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', _) ) } pending_url_ids - ++full_requeues + [queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', id)) for id in pending_url_ids] + full_requeues += 1 last_pending_change = time() - else - for id in pending_url_ids: + db.update_by_id('topic_fetch_urls', id, {'state': 'error', message => 'timed out'}) - db.update_by_id('topic_fetch_urls', id, { 'state': 'error', message => 'timed out' }) - - log.info("timed out " . len( pending_url_ids) . " urls" ) + log.info(f"timed out {len(pending_url_ids)} urls") if num_pending_urls < last_num_pending_urls: - last_pending_change = time() last_num_pending_urls = num_pending_urls @@ -398,38 +388,41 @@ def fetch_links(db, topic, fetch_links): _fetch_twitter_urls(db, topic, tfu_ids_list) log.info("fetch_links: update topic seed urls") - db.query(< MIN_SEED_IMPORT_FOR_PREDUP_STORIES ) # merge dup stories before as well as after spidering to avoid extra spidering work update_topic_state(db, state_updater, "merging duplicate stories") - mediawords.tm.stories.find_and_merge_dup_stories(db, topic) + topics_base.stories.find_and_merge_dup_stories(db, topic) unless (options['import_only']) @@ -1043,10 +1036,10 @@ def do_mine_topic(db, topic, options, state_updater): # merge dup media and stories again to catch dups from spidering update_topic_state(db, state_updater, "merging duplicate stories") - mediawords.tm.stories.find_and_merge_dup_stories(db, topic) + topics_base.stories.find_and_merge_dup_stories(db, topic) update_topic_state(db, state_updater, "merging duplicate media stories") - mediawords.tm.stories.merge_dup_media_stories(db, topic) + topics_base.stories.merge_dup_media_stories(db, topic) if not options['skip_post_processing']: @@ -1072,13 +1065,13 @@ def mine_topic(db, topic, options, state_updater): if topic['state'] ne 'running': - mediawords.tm.alert.send_topic_alert(db, topic, "started topic spidering") + topics_base.alert.send_topic_alert(db, topic, "started topic spidering") eval { do_mine_topic(db, topic, options, state_updater) } if $@: error = $@ - mediawords.tm.alert.send_topic_alert(db, topic, "aborted topic spidering due to error") + topics_base.alert.send_topic_alert(db, topic, "aborted topic spidering due to error") LOGDIE(error) _test_mode = prev_test_mode From 27311e2c8d3dab042239a09d45399d91db5c99ee Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Wed, 2 Dec 2020 14:46:50 +0000 Subject: [PATCH 03/20] more progress on mine.py, including some working unit tests --- .../python/mediawords/util/url/__init__.py | 2 +- .../extract_story_links.py | 3 + .../src/python/topics_mine/mine.py | 812 +++++++++--------- .../tests/python/test_generate_topic_links.py | 29 + apps/topics-mine/tests/python/test_mine.py | 15 + dev/run_test.py | 2 +- 6 files changed, 465 insertions(+), 398 deletions(-) create mode 100644 apps/topics-mine/tests/python/test_generate_topic_links.py create mode 100644 apps/topics-mine/tests/python/test_mine.py diff --git a/apps/common/src/python/mediawords/util/url/__init__.py b/apps/common/src/python/mediawords/util/url/__init__.py index 531bc26508..1f82207c5c 100644 --- a/apps/common/src/python/mediawords/util/url/__init__.py +++ b/apps/common/src/python/mediawords/util/url/__init__.py @@ -178,7 +178,7 @@ def normalize_url(url: str) -> str: url = fix_common_url_mistakes(url) try: - url = canonical_url(url) + url = canonical_url(url) except Exception as ex: raise McNormalizeURLException("Unable to get canonical URL: %s" % str(ex)) diff --git a/apps/topics-extract-story-links/src/python/topics_extract_story_links/extract_story_links.py b/apps/topics-extract-story-links/src/python/topics_extract_story_links/extract_story_links.py index 949643f11f..23d154ba83 100644 --- a/apps/topics-extract-story-links/src/python/topics_extract_story_links/extract_story_links.py +++ b/apps/topics-extract-story-links/src/python/topics_extract_story_links/extract_story_links.py @@ -73,6 +73,9 @@ def _get_youtube_embed_links(db: DatabaseHandler, story: dict) -> List[str]: "select * from downloads where stories_id = %(a)s order by stories_id limit 1", {'a': story['stories_id']}).hash() + if not download: + return [] + html = fetch_content(db, download) soup = BeautifulSoup(html, 'lxml') diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 05ef9bd204..4a989a4a71 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -5,20 +5,21 @@ manages the children jobs to fetch and extract links, to fetch social media data, and so on. the topic mining process is described in doc/topic_mining.markdown. - """ + +import datetime from time import sleep, time +from typing import Optional +from mediawords.db import DatabaseHandler import mediawords.dbi.stories -import mediawords.dbi.stories.guessdate -import mediawords.job.broker -import mediawords.job.statefulbroker +from mediawords.job import JobBroker, StatefulJobBroker, StateUpdater import mediawords.solr import mediawords.solr.query import mediawords.util.sql import topics_base.alert -import topics_base.fetch_topic_posts import topics_base.stories +import topics_mine.fetch_topic_posts from mediawords.util.log import create_logger log = create_logger(__name__) @@ -36,7 +37,7 @@ # query this many topic_links at a time to spider SPIDER_LINKS_CHUNK_SIZE = 100000 -# die if the error rate for link fetch or link extract jobs is greater than this +# raise McTopicMineError if the error rate for link fetch or link extract jobs is greater than this MAX_JOB_ERROR_RATE = 0.02 # timeout when polling for jobs to finish @@ -57,7 +58,12 @@ # if mine_topic is run with the test_mode option, set this true and do not try to queue extractions _test_mode = None -def update_topic_state(db, state_updater, message): + +class McTopicMineError(Exception): + pass + + +def update_topic_state(db: DatabaseHandler, state_updater: Optional[StateUpdater], message: str) -> None: """ update topics.state in the database""" log.info("update topic state: message") @@ -70,12 +76,11 @@ def update_topic_state(db, state_updater, message): state_updater.update_job_state_message(db, message) -# return true if the publish date of the story is within 7 days of the topic date range or if the -def story_within_topic_date_range(db, topic, story): - """ story is undateable""" +def story_within_topic_date_range(topic: dict, story:dict) -> bool: + """return True if the publish date of the story is within 7 days of the topic date range or if it is undateable""" if not story['publish_date']: - return 1 + return True story_date = (story['publish_date'])[0:10] @@ -87,32 +92,29 @@ def story_within_topic_date_range(db, topic, story): end_date = mediawords.util.sql.increment_day(end_date, 7) end_date = end_date[0:10] - if (story_date >= start_date) and (story_date <= end_date): - return 1 + return story_date >= start_date and story_date <= end_date - return mediawords.dbi.stories.guessdate.is_undateable(db, story) - -def generate_topic_links(db, topic, stories): - """ - submit jobs to extract links from the given stories and then poll to wait for the stories to be processed - within the jobs pool - """ +def generate_topic_links(db: DatabaseHandler, topic: dict, stories: list): + """submit jobs to extract links from the stories and then poll to wait for the stories to be processed""" log.info(f"generate topic links: {len(stories)}") + if len(stories) < 1: + return + topic_links = [] - if topic['platform'] <> 'web': + if topic['platform'] != 'web': log.info("skip link generation for non web topic") return stories_ids_table = db.get_temporary_ids_table([s['stories_id'] for s in stories]) db.query( - """ + f""" update topic_stories set link_mined = 'f' where - stories_id in (select id from stories_ids_table) and + stories_id in (select id from {stories_ids_table}) and topics_id = %(a)s and link_mined = 't' """, @@ -120,14 +122,14 @@ def generate_topic_links(db, topic, stories): queued_stories_ids = [] for story in stories: - if not story_within_topic_date_range(db, topic, story): + if not story_within_topic_date_range(topic, story): next queued_stories_ids.append(story['stories_id']) - mediawords.job.broker.new('MediaWords.Job.TM.ExtractStoryLinks').add_to_queue( - { 'stories_id': story['stories_id'], topics_id => topic['topics_id'] }, # - ) + JobBroker(queue_name='MediaWords::Job::TM::ExtractStoryLinks').add_to_queue( + stories_id=story['stories_id'], + topics_id=topic['topics_id']) log.debug(f"queued link extraction for story {story['title']} {story['url']}.") @@ -135,15 +137,15 @@ def generate_topic_links(db, topic, stories): queued_ids_table = db.get_temporary_ids_table(queued_stories_ids) - # poll every JOB_POLL_WAIT seconds waiting for the jobs to complete. die if the number of stories left to process - # has not shrunk for EXTRACTION_POLL_TIMEOUT seconds. + # poll every JOB_POLL_WAIT seconds waiting for the jobs to complete. raise McTopicMineError if the number + # of stories left to process has not shrunk for EXTRACTION_POLL_TIMEOUT seconds. prev_num_queued_stories = len(stories) last_change_time = time() while True: queued_stories = db.query( - """ + f""" select stories_id from topic_stories - where stories_id in (select id from queued_ids_table) and topics_id = %(a)s and link_mined = 'f' + where stories_id in (select id from {queued_ids_table}) and topics_id = %(a)s and link_mined = 'f' """, {'a': topic['topics_id']}).flat() @@ -152,13 +154,13 @@ def generate_topic_links(db, topic, stories): if not num_queued_stories: break - if num_queued_stories <> prev_num_queued_stories: + if num_queued_stories != prev_num_queued_stories: last_change_time = time() if (time() - last_change_time) > LINK_EXTRACTION_POLL_TIMEOUT: ids_list = ','.join(queued_stories) if num_queued_stories > MAX_LINK_EXTRACTION_TIMEOUT: - raise MCTopicMineError(f"Timed out waiting for story link extraction ({ids_list}).") + raise McTopicMineError(f"Timed out waiting for story link extraction ({ids_list}).") db.query( """ @@ -175,9 +177,9 @@ def generate_topic_links(db, topic, stories): sleep(JOB_POLL_WAIT) db.query( - """ + f""" update topic_stories set link_mined = 't' - where stories_id in (select id from stories_ids_table) and topics_id = %(a)s and link_mined = 'f' + where stories_id in (select id from {stories_ids_table}) and topics_id = %(a)s and link_mined = 'f' """, {'a': topic['topics_id']}) @@ -187,14 +189,13 @@ def generate_topic_links(db, topic, stories): def die_if_max_stories_exceeded(db, topic): """ raise an MCTopicMineMaxStoriesException topic_stories > topics.max_stories. - """ - + """ num_topic_stories = db.query( "select count(*) from topic_stories where topics_id = %(a)s", - {'a': topic['topics_id';]}).flat()[0] + {'a': topic['topics_id']}).flat()[0] if num_topic_stories > topic['max_stories']: - raise MCTopicMineMaxStoriesException(f"{num_topic_stories stories} > {topic['max_stories']}") + raise McTopicMineError(f"{num_topic_stories} stories > {topic['max_stories']}") def queue_topic_fetch_url(tfu, domain_timeout): @@ -206,15 +207,16 @@ def queue_topic_fetch_url(tfu, domain_timeout): topic_fetch_urls_id=tfu['topic_fetch_urls_id'], domain_timeout=domain_timeout) + def create_and_queue_topic_fetch_urls(db, topic, fetch_links): """ - create topic_fetch_urls rows correpsonding to the links and queue a FetchLink job for each. - + create topic_fetch_urls rows correpsonding to the links and queue a FetchLink job for each. + return the tfu rows. """ tfus = [] for link in fetch_links: - if link['topic_links_id'] and not db.find_by_id( 'topic_links', link['topic_links_id']): + if link['topic_links_id'] and not db.find_by_id('topic_links', link['topic_links_id']): next tfu = { @@ -232,7 +234,7 @@ def create_and_queue_topic_fetch_urls(db, topic, fetch_links): return tfus -def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None +def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None: """ Send topic_fetch_urls to fetch_twitter_urls queue and wait for the jobs to complete. """ @@ -251,11 +253,12 @@ def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None tfu_ids_table = db.get_temporary_ids_table(twitter_tfu_ids) JobBroker(queue_name='MediaWords::Job::TM::FetchTwitterUrls').add_to_queue( - { 'topic_fetch_urls_ids': twitter_tfu_ids}) + {'topic_fetch_urls_ids': twitter_tfu_ids}) log.info(f"waiting for fetch twitter urls job for {len(twitter_tfu_ids)} urls") - # poll every sleep_time seconds waiting for the jobs to complete. die if the number of stories left to process + # poll every sleep_time seconds waiting for the jobs to complete. + # raise McTopicMineError if the number of stories left to process # has not shrunk for large_timeout seconds. warn but continue if the number of stories left to process # is only 5% of the total and short_timeout has passed (this is to make the topic not hang entirely because # of one link extractor job error). @@ -263,10 +266,10 @@ def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None last_change_time = time() while True: queued_tfus = db.query( - """ + f""" select tfu.* from topic_fetch_urls tfu - join tfu_ids_table ids on (tfu.topic_fetch_urls_id = ids.id) + join {tfu_ids_table} ids on (tfu.topic_fetch_urls_id = ids.id) where state in ('tweet pending') """).hashes() @@ -276,17 +279,18 @@ def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None if num_queued_urls == 0: break - if num_queued_urls <> prev_num_queued_urls: + if num_queued_urls != prev_num_queued_urls: last_change_time = time() - if (time() - last_change_time) > JOB_POLL_TIMEOUT): - raise McTopicMineTimeoutError(f"Timed out waiting for twitter fetching {queued_tfus}") + if (time() - last_change_time) > JOB_POLL_TIMEOUT: + raise McTopicMineError(f"Timed out waiting for twitter fetching {queued_tfus}") log.info(f"{num_queued_urls} twitter urls left to fetch ...") prev_num_queued_urls = num_queued_urls sleep(JOB_POLL_WAIT) + def list_pending_urls(pending_urls: list) -> str: """list a sample of the pending urls for fetching""" num_pending_urls = len(pending_urls) @@ -297,7 +301,8 @@ def list_pending_urls(pending_urls: list) -> str: return "\n".join([f"pending url: {url['url']} [{url['state']}: {url['fetch_date']}]" for url in urls]) -def fetch_links(db: DatabaseHandle, topic: dict, fetch_links: dict) -> None: + +def fetch_links(db: DatabaseHandler, topic: dict, fetch_links: dict) -> None: """ fetch the given links by creating topic_fetch_urls rows and sending them to the FetchLink queue for processing. wait for the queue to complete and returnt the resulting topic_fetch_urls. @@ -350,31 +355,31 @@ def fetch_links(db: DatabaseHandle, topic: dict, fetch_links: dict) -> None: # if we only have a handful of job left, requeue them all once with a 0 domain throttle if not instant_requeued and num_pending_urls <= instant_queue_size: instant_requeued = 1 - [queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', id), 0) for id in pending_url_ids] + [queue_topic_fetch_url(db.require_by_id('topic_fetch_urls', id), 0) for id in pending_url_ids] sleep(JOB_POLL_WAIT) continue time_since_change = time() - last_pending_change # for some reason, the fetch_link queue is occasionally losing a small number of jobs. - if (time_since_change > requeue_timeout and - requeues < max_requeues and + if (time_since_change > requeue_timeout and + requeues < max_requeues and num_pending_urls < max_requeue_jobs): log.info(f"requeueing fetch_link {num_pending_urls} jobs ... [{requeue} requeues]") # requeue with a domain_timeout of 0 so that requeued urls can ignore throttling - [queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', id), 0) for id in pending_url_ids] + [queue_topic_fetch_url(db.require_by_id('topic_fetch_urls', id), 0) for id in pending_url_ids] requeues += 1 last_pending_change = time() if time_since_change > JOB_POLL_TIMEOUT: if full_requeues < max_full_requeues: - [queue_topic_fetch_url(db.require_by_id( 'topic_fetch_urls', id)) for id in pending_url_ids] + [queue_topic_fetch_url(db.require_by_id('topic_fetch_urls', id)) for id in pending_url_ids] full_requeues += 1 last_pending_change = time() - else + else: for id in pending_url_ids: - db.update_by_id('topic_fetch_urls', id, {'state': 'error', message => 'timed out'}) + db.update_by_id('topic_fetch_urls', id, {'state': 'error', 'message': 'timed out'}) log.info(f"timed out {len(pending_url_ids)} urls") @@ -408,13 +413,14 @@ def fetch_links(db: DatabaseHandle, topic: dict, fetch_links: dict) -> None: return completed_tfus + def add_new_links_chunk(db, topic, iteration, new_links): """ download any unmatched link in new_links, add it as a story, extract it, add any links to the topic_links list. - each hash within new_links can either be a topic_links hash or simply a hash with a { url } field. if + each hash within new_links can either be a topic_links hash or simply a hash with a {url} field. if the link is a topic_links hash, the topic_link will be updated in the database to point ref_stories_id - to the new link story. For each link, set the { story } field to the story found or created for the link. + to the new link story. For each link, set the {story} field to the story found or created for the link. """ die_if_max_stories_exceeded(db, topic) @@ -423,223 +429,240 @@ def add_new_links_chunk(db, topic, iteration, new_links): log.info("add_new_links_chunk: mark topic links spidered") link_ids = [l['topic_links_id'] for l in new_links if l['topic_links_id']] - db.query(< list: + """query the database for new links from stories below the given iteration.""" - log.info("spider new links chunk: i") + new_links = db.query( + """ + select tl.* + from + topic_links tl + join topic_stories ts using ( topics_id ) + where + tl.link_spidered = 'f' and + tl.stories_id = ts.stories_id and + (ts.iteration <= %(a)s or ts.iteration = 1000) and + ts.topics_id = %(b)s - new_links = db.query(< num_urls: + start_time = time() - update_topic_state(db, state_updater, "importing seed urls: i / num_urls") + update_topic_state(db, state_updater, f"importing seed urls: {i} / {num_urls}") - end = List::Util::min(i + ADD_NEW_LINKS_CHUNK_SIZE - 1, $#{ seed_urls }) + chunk_urls = seed_urls[i:i + ADD_NEW_LINKS_CHUNK_SIZE] - # verify that the seed urls are still there and not processed, in case we have mucked with them while spidering - urls_ids_list = join(',', map { int( _['topic_seed_urls_id']) } seed_urls[ i .. end] ) - seed_urls_chunk = db.query(< end_date: - return 1 + return True if start_date: - - start_date = Time::Piece.strptime(start_date, "Y-m-d") + start_date = datetime.datetime.strptime(topic['start_date'], '%Y-%m-%d') if month_date < start_date: - return 1 + return True + + return False - return 0 -# Call search_solr_for_stories_ids() above and then query PostgreSQL for the stories returned by Solr. -def __search_for_stories(db, params): - """ Include stories.* and media_name as the returned fields.""" +def _search_for_stories(db, params): + """Call search_solr_for_stories_ids() above and then query PostgreSQL for the stories returned by Solr. + + Include stories.* and media_name as the returned fields.""" stories_ids = mediawords.solr.search_solr_for_stories_ids(db, params) - stories = [map { { 'stories_id': _ } } stories_ids] + stories = {'stories_id': i for i in stories_ids} stories = mediawords.dbi.stories.attach_story_meta_data_to_stories(db, stories) - stories = [grep { _['url'] } stories] + stories = [s for s in stories if s['url']] return stories + def import_solr_seed_query_month(db, topic, month_offset): - """ import a single month of the solr seed query. we do this to avoid giant queries that timeout in solr.""" + """ import a single month of the solr seed query. we do this to avoid giant queries that timeout in solr. + return True if the month_offset is valid for the topic.""" if not topic['platform'] == 'web': + return False - return 0 - - solr_query = mediawords.solr.query.get_full_solr_query_for_topic(db, topic, undef, undef, month_offset) + solr_query = mediawords.solr.query.get_full_solr_query_for_topic(db=db, topic=topic, month_offset=month_offset) # this should return undef once the month_offset gets too big if not solr_query: - return undef + return False if not _import_month_within_respider_date(topic, month_offset): - return 1 + return True max_stories = topic['max_stories'] # if solr maxes out on returned stories, it returns a few documents less than the rows= parameter, so we - # assume that we hit the solr max if we are within 5% of the ma stories + # assume that we hit the solr max if we are within 5% of the max stories max_returned_stories = max_stories * 0.95 - INFO "import solr seed query month offset month_offset" + log.info(f"import solr seed query month offset {month_offset}") solr_query['rows'] = max_stories - stories = __search_for_stories(db, solr_query) - - if (len( stories) > max_returned_stories ) + stories = _search_for_stories(db, solr_query) - die("solr_seed_query returned more than max_returned_stories stories") + if len(stories) > max_returned_stories: + raise McTopicMineError(f"solr_seed_query returned more than {max_returned_stories} stories") - INFO "adding " . len(stories) . " stories to topic_seed_urls" + log.info(f"adding {len(stories)} stories to topic_seed_urls") topic_seed_urls = [] for story in stories: - - push( - topic_seed_urls, - - 'topics_id': topic['topics_id'], - 'url': story['url'], - 'stories_id': story['stories_id'], - 'assume_match': 'f' - - ) + tsu = { + 'topics_id': topic['topics_id'], + 'url': story['url'], + 'stories_id': story['stories_id'], + 'assume_match': 'f'} + topic_seed_urls.append(tsu) insert_topic_seed_urls(db, topic_seed_urls) - return 1 + return True + -# import stories intro topic_seed_urls from solr by running -# topic['solr_seed_query'] against solr. if the solr query has def import_solr_seed_query(db, topic): - """ already been imported, do nothing.""" + """ import stories into topic_seed_urls from solr by running topic['solr_seed_query'] against solr. + + if the solr query has already been imported, do nothing.""" log.info("import solr seed query") if topic['solr_seed_query_run']: - return month_offset = 0 - while (import_solr_seed_query_month( db, topic, month_offset++) ) { } + while import_solr_seed_query_month(db, topic, month_offset): + month_offset += 1 + pass + + db.query("update topics set solr_seed_query_run = 't' where topics_id = %(a)s", {'a': topic['topics_id']}) - db.query("update topics set solr_seed_query_run = 't' where topics_id = ?", topic['topics_id']) def all_facebook_data_fetched(db, topic): - """ return true if there are no stories without facebook data""" - - null_facebook_story = db.query(< MAX_JOB_ERROR_RATE: + raise McTopicMineError(f"Fetch error rate of {fetch_error_rate} is greater than {MAX_JOB_ERROR_RATE}") - die("Fetch error rate of fetch_error_rate is greater than max of MAX_JOB_ERROR_RATE") - - link_stats = db.query(< 0 ) as error - from topic_stories - where topics_id = ? - group by (length( link_mine_error) > 0 ) -SQL - - my (num_link_errors, num_link_successes) = (0, 0) - for s in link_stats: + link_stats = db.query( + """ + select count(*) num, (length( link_mine_error) > 0) as error + from topic_stories + where topics_id = %(a)s + group by (length(link_mine_error) > 0) + """, + {'a': topic['topics_id']}).hashes() - if (s['error']) { num_link_errors += s['num'] } - else { num_link_successes += s['num'] } + num_link_errors = sum([s['num'] for s in link_stats if s['error']]) + num_link_successes = sum([s['num'] for s in link_stats if not s['error']]) link_error_rate = num_link_errors / (num_link_errors + num_link_successes + 1) - log.info( "Link error rate: link_error_rate (num_link_errors / num_link_successes)" ) + log.info(f"Link error rate: {link_error_rate} ({num_link_errors} / {num_link_successes})") if link_error_rate > MAX_JOB_ERROR_RATE: + raise McTopicMineError(f"link error rate of {link_error_rate} is greater than {MAX_JOB_ERROR_RATE}") - die("link error rate of link_error_rate is greater than max of MAX_JOB_ERROR_RATE") def import_urls_from_seed_queries(db, topic, state_updater): """ import urls from seed query """ topic_seed_queries = db.query( - "select * from topic_seed_queries where topics_id = ?", topic['topics_id'] ).hashes() + "select * from topic_seed_queries where topics_id = %(a)s", + {'a': topic['topics_id']}).hashes() num_queries = len(topic_seed_queries) - if (( num_queries not = 1) and (topic['mode'] == 'url_sharing')) - - die("exactly one topic seed query required per url_sharing topic") + if num_queries != 1 and topic['mode'] == 'url_sharing': + raise McTopicMineError("exactly one topic seed query required per url_sharing topic") if topic['mode'] == 'web': - log.debug("import seed urls from solr") update_topic_state(db, state_updater, "importing solr seed query") import_solr_seed_query(db, topic) for tsq in topic_seed_queries: - tsq_dump = tsq['topic_seed_queries_id'] - fetcher = topics_base.fetch_topic_posts.get_post_fetcher(tsq) + fetcher = topics_base.fetch_topic_posts.get_post_fetcher(tsq) if not fetcher: - die("unable to import seed urls for platform/source of seed query: tsq_dump") + raise McTopicMineError(f"unable to import seed urls for platform/source of seed query: {tsq_dump}") - log.debug("import seed urls from fetch_topic_posts:\ntsq_dump") + log.debug(f"import seed urls from fetch_topic_posts:\n{tsq_dump}") topics_base.fetch_topic_posts.fetch_topic_posts(db, tsq) - db.query(<= %(b)s and + s.publish_date <= %(a)s and + ts.topics_id = %(c)s + """, + {'a': respider_start_date, 'b': topic['start_date'], 'c': topic['topics_id']}) - db.query(<= \2 and - s.publish_date <= \1 and - ts.topics_id = \3 -SQL if snapshots_id: - - db.update_by_id('snapshots', snapshots_id, { 'start_date': topic['start_date'] }) - db.query(<= \1 and - s.publish_date <= \2 and - ts.topics_id = \3 -SQL + db.query( + """ + update topic_stories ts set link_mined = 'f' + from stories s + where + ts.stories_id = s.stories_id and + s.publish_date >= %(a)s and + s.publish_date <= %(b)s and + ts.topics_id = %(c)s + """, + {'a': respider_end_date, 'b': topic['end_date'], 'b': topic['topics_id']}) if snapshots_id: + db.update_by_id('snapshots', snapshots_id, {'end_date': topic['end_date']}) + db.query( + """ + update timespans set archive_snapshots_id = snapshots_id, snapshots_id = null + where snapshots_id = %(a)s and end_date > %(b)s + """, + {'a': snapshots_id, 'b': respider_end_date}) - db.update_by_id('snapshots', snapshots_id, { 'end_date': topic['end_date'] }) - db.query(< ? -SQL + db.update_by_id( + 'topics', + topic['topics_id'], + {'respider_stories': 'f', 'respider_start_date': None, 'respider_end_date': None}) - db.update_by_id('topics', topic['topics_id'], - { 'respider_stories': 'f', respider_start_date => undef, respider_end_date => undef }) -# mine the given topic for links and to recursively discover new stories on the web. -# options: -# import_only - only run import_seed_urls and import_solr_seed and exit -# skip_post_processing - skip social media fetching and snapshotting def do_mine_topic(db, topic, options, state_updater): - """ snapshots_id - associate topic with the given existing snapshot""" + """ mine the given topic for links and to recursively discover new stories on the web. - map { options['_'] or= 0 } qw/import_only skip_post_processing test_mode/ + options: + import_only - only run import_seed_urls and import_solr_seed and exit + skip_post_processing - skip social media fetching and snapshotting + snapshots_id - associate topic with the given existing snapshot + """ + + [options.setdfault(f, None) for f in 'import_only skip_post_processing test_mode'.split()] update_topic_state(db, state_updater, "importing seed urls") import_urls_from_seed_queries(db, topic, state_updater) @@ -1021,14 +1049,12 @@ def do_mine_topic(db, topic, options, state_updater): # topics_base.stories.merge_foreign_rss_stories(db, topic) update_topic_state(db, state_updater, "importing seed urls") - if (import_seed_urls( db, topic, state_updater) > MIN_SEED_IMPORT_FOR_PREDUP_STORIES ) - + if import_seed_urls(db, topic, state_updater) > MIN_SEED_IMPORT_FOR_PREDUP_STORIES: # merge dup stories before as well as after spidering to avoid extra spidering work update_topic_state(db, state_updater, "merging duplicate stories") topics_base.stories.find_and_merge_dup_stories(db, topic) - unless (options['import_only']) - + if not options.get('import_only', False): update_topic_state(db, state_updater, "running spider") run_spider(db, topic, state_updater) @@ -1041,17 +1067,17 @@ def do_mine_topic(db, topic, options, state_updater): update_topic_state(db, state_updater, "merging duplicate media stories") topics_base.stories.merge_dup_media_stories(db, topic) - if not options['skip_post_processing']: - + if not options.get('skip_post_processing', False): update_topic_state(db, state_updater, "fetching social media data") fetch_social_media_data(db, topic) update_topic_state(db, state_updater, "snapshotting") - snapshot_args = { 'topics_id': topic['topics_id'], snapshots_id => options['snapshots_id'] } - mediawords.job.statefulbroker.new('mediawords.job.tm.snapshottopic').add_to_queue(snapshot_args) + snapshot_args = {'topics_id': topic['topics_id'], 'snapshots_id': options['snapshots_id']} + StatefulJobBroker(queue_name='MediaWords::Job::TM::SnapshotTopic').add_to_queue(snapshot_args) + def mine_topic(db, topic, options, state_updater): - """ wrap do_mine_topic in eval and handle errors and state""" + """ wrap do_mine_topic in try and handle errors and state""" # the topic spider can sit around for long periods doing solr queries, so we need to make sure the postgres # connection does not get timed out @@ -1059,21 +1085,15 @@ def mine_topic(db, topic, options, state_updater): prev_test_mode = _test_mode - if options['test_mode']: - - _test_mode = 1 - - if topic['state'] ne 'running': + _test_mode = options.get('test_mode', False) + if topic['state'] != 'running': topics_base.alert.send_topic_alert(db, topic, "started topic spidering") - eval { do_mine_topic(db, topic, options, state_updater) } - if $@: - - error = $@ + try: + do_mine_topic(db, topic, options, state_updater) + except Error as e: topics_base.alert.send_topic_alert(db, topic, "aborted topic spidering due to error") - LOGDIE(error) + raise e _test_mode = prev_test_mode - -1 diff --git a/apps/topics-mine/tests/python/test_generate_topic_links.py b/apps/topics-mine/tests/python/test_generate_topic_links.py new file mode 100644 index 0000000000..06a7f11975 --- /dev/null +++ b/apps/topics-mine/tests/python/test_generate_topic_links.py @@ -0,0 +1,29 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic, create_test_topic_stories +from topics_mine.mine import generate_topic_links + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_generate_topic_links(): + db = mediawords.db.connect_to_db() + + num_stories = 100 + + topic = create_test_topic(db, 'foo') + create_test_topic_stories(db, topic, 1, num_stories) + + stories = db.query("select * from stories").hashes() + + num_topic_stories = db.query("select count(*) from topic_stories").flat()[0] + assert num_topic_stories == num_stories + + db.query("update stories set description = 'http://foo.com/' || stories_id::text") + + generate_topic_links(db, topic, stories) + + num_unmined_stories = db.query("select count(*) from topic_stories where not link_mined").flat()[0] + assert num_unmined_stories == 0 + + num_mined_links = db.query("select count(*) from topic_links").flat()[0] + assert num_mined_links == num_stories diff --git a/apps/topics-mine/tests/python/test_mine.py b/apps/topics-mine/tests/python/test_mine.py new file mode 100644 index 0000000000..036c7b6747 --- /dev/null +++ b/apps/topics-mine/tests/python/test_mine.py @@ -0,0 +1,15 @@ +import mediawords.db +from topics_mine.mine import * + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_story_within_topic_date_range(): + topic = {'start_date': '2020-01-01', 'end_date': '2020-02-01'} + + assert story_within_topic_date_range(topic, {'publish_date': '2020-01-15'}) + assert story_within_topic_date_range(topic, {'publish_date': '2019-12-30'}) + assert story_within_topic_date_range(topic, {'publish_date': '2020-02-05'}) + assert not story_within_topic_date_range(topic, {'publish_date': '2021-01-15'}) + assert not story_within_topic_date_range(topic, {'publish_date': '2019-01-15'}) + assert story_within_topic_date_range(topic, {'publish_date': None}) diff --git a/dev/run_test.py b/dev/run_test.py index 99703d9f10..269aa1e4fd 100755 --- a/dev/run_test.py +++ b/dev/run_test.py @@ -68,7 +68,7 @@ def docker_test_commands(all_apps_dir: str, test_file: str, verbose: bool) -> Li if test_file.endswith('.py'): test_command = [ - 'py.test', '-s', '-vv', + 'py.test', '-s', '-p no:warnings' , # Disable cache because it won't be preserved '-p', 'no:cacheprovider', From f40d4cce745b63247975f8d5f836a12bcbc472b3 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Fri, 4 Dec 2020 17:47:40 +0000 Subject: [PATCH 04/20] more mine.py unit tests --- apps/topics-mine/docker-compose.tests.yml | 22 ++++++++++ .../src/python/topics_mine/mine.py | 30 ++++++++----- .../tests/python/test_fetch_links.py | 33 +++++++++++++++ .../tests/python/test_fetch_twitter_urls.py | 42 +++++++++++++++++++ dev/run_test.py | 2 +- 5 files changed, 117 insertions(+), 12 deletions(-) create mode 100644 apps/topics-mine/tests/python/test_fetch_links.py create mode 100644 apps/topics-mine/tests/python/test_fetch_twitter_urls.py diff --git a/apps/topics-mine/docker-compose.tests.yml b/apps/topics-mine/docker-compose.tests.yml index 4c149ac2c4..6eee673554 100644 --- a/apps/topics-mine/docker-compose.tests.yml +++ b/apps/topics-mine/docker-compose.tests.yml @@ -40,6 +40,7 @@ services: - postgresql-pgbouncer - rabbitmq-server - topics-fetch-link + - topics-fetch-twitter-urls - topics-extract-story-links # 1) test_topics_mine.t calls topics-fetch-link # 2) topics-fetch-link calls _try_fetch_topic_url() @@ -125,6 +126,27 @@ services: source: ./../rabbitmq-server/conf/ target: /etc/rabbitmq/ + topics-fetch-twitter-urls: + image: dockermediacloud/topics-fetch-twitter-urls:latest + init: true + stop_signal: SIGKILL + volumes: + - type: bind + source: ./../topics-fetch-twitter-urls/bin/ + target: /opt/mediacloud/bin/ + - type: bind + source: ./../topics-fetch-twitter-urls/src/ + target: /opt/mediacloud/src/topics-fetch-twitter-urls/ + - type: bind + source: ./../topics-base/src/ + target: /opt/mediacloud/src/topics-base/ + - type: bind + source: ./../common/src/ + target: /opt/mediacloud/src/common/ + depends_on: + - postgresql-pgbouncer + - rabbitmq-server + topics-fetch-link: image: dockermediacloud/topics-fetch-link:latest init: true diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 4a989a4a71..a2f0ffd1bd 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -8,6 +8,7 @@ """ import datetime +import random from time import sleep, time from typing import Optional @@ -198,7 +199,7 @@ def die_if_max_stories_exceeded(db, topic): raise McTopicMineError(f"{num_topic_stories} stories > {topic['max_stories']}") -def queue_topic_fetch_url(tfu, domain_timeout): +def queue_topic_fetch_url(tfu:dict, domainm_timeout:Optional[int] = None): """ add the topic_fetch_url to the fetch_link job queue. try repeatedly on failure.""" domain_timeout = 0 if _test_mode else None @@ -208,7 +209,7 @@ def queue_topic_fetch_url(tfu, domain_timeout): domain_timeout=domain_timeout) -def create_and_queue_topic_fetch_urls(db, topic, fetch_links): +def create_and_queue_topic_fetch_urls(db:DatabaseHandler, topic:dict, fetch_links:list) -> list: """ create topic_fetch_urls rows correpsonding to the links and queue a FetchLink job for each. @@ -216,15 +217,20 @@ def create_and_queue_topic_fetch_urls(db, topic, fetch_links): """ tfus = [] for link in fetch_links: - if link['topic_links_id'] and not db.find_by_id('topic_links', link['topic_links_id']): + topic_links_id = link.get('topic_links_id', None) + assume_match = link.get('assume_match', False) + + # if this link has an associated topics_link row but that row has been deleted, ignore it. + # this can be used to delete spam urls from topic_links during the spidering process. + if topic_links_id and not db.find_by_id('topic_links', topic_links_id): next tfu = { 'topics_id': topic['topics_id'], 'url': link['url'], 'state': 'pending', - 'assume_match': mediawords.util.python.normalize_boolean_for_db(link['assume_match']), - 'topic_links_id': link['topic_links_id']} + 'assume_match': assume_match, + 'topic_links_id': topic_links_id} tfu = db.create('topic_fetch_urls', tfu) tfus.append(tfu) @@ -253,7 +259,7 @@ def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None tfu_ids_table = db.get_temporary_ids_table(twitter_tfu_ids) JobBroker(queue_name='MediaWords::Job::TM::FetchTwitterUrls').add_to_queue( - {'topic_fetch_urls_ids': twitter_tfu_ids}) + topic_fetch_urls_ids=twitter_tfu_ids) log.info(f"waiting for fetch twitter urls job for {len(twitter_tfu_ids)} urls") @@ -297,7 +303,8 @@ def list_pending_urls(pending_urls: list) -> str: num_printed_urls = min(num_pending_urls, 3) - urls = shuffle(num_pending_urls)[0:num_printed_urls] + random.shuffle(pending_urls) + urls = pending_urls[0:num_printed_urls] return "\n".join([f"pending url: {url['url']} [{url['state']}: {url['fetch_date']}]" for url in urls]) @@ -305,7 +312,7 @@ def list_pending_urls(pending_urls: list) -> str: def fetch_links(db: DatabaseHandler, topic: dict, fetch_links: dict) -> None: """ fetch the given links by creating topic_fetch_urls rows and sending them to the FetchLink queue - for processing. wait for the queue to complete and returnt the resulting topic_fetch_urls. + for processing. wait for the queue to complete and return the resulting topic_fetch_urls. """ log.info("fetch_links: queue links") @@ -390,7 +397,7 @@ def fetch_links(db: DatabaseHandler, topic: dict, fetch_links: dict) -> None: sleep(JOB_POLL_WAIT) - _fetch_twitter_urls(db, topic, tfu_ids_list) + _fetch_twitter_urls(db, topic, tfu_ids) log.info("fetch_links: update topic seed urls") db.query( @@ -401,9 +408,10 @@ def fetch_links(db: DatabaseHandler, topic: dict, fetch_links: dict) -> None: where tfu.url = tsu.url and tfu.stories_id is not null and - tfu.topic_fetch_urls_id in (tfu_ids_list) and + tfu.topic_fetch_urls_id = any(%(a)s) and tfu.topics_id = tsu.topics_id - """) + """, + {'a': tfu_ids}) completed_tfus = db.query( "select * from topic_fetch_urls where topic_fetch_urls_id = any(%(a)s)", diff --git a/apps/topics-mine/tests/python/test_fetch_links.py b/apps/topics-mine/tests/python/test_fetch_links.py new file mode 100644 index 0000000000..553b235ae9 --- /dev/null +++ b/apps/topics-mine/tests/python/test_fetch_links.py @@ -0,0 +1,33 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic +from topics_mine.mine import fetch_links + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_fetch_links(): + db = mediawords.db.connect_to_db() + + topic = create_test_topic(db, 'foo') + + num_urls = 100 + + # add a bunch of urls with bad urls. the fetch-link job will fail with a python error + # but that's fine becase all we are testing here is that each url makes it into the job pool + + links = [{'url': f"INVALID URL {i}"} for i in range(num_urls)] + + fetch_links(db, topic, links) + + log.warning(db.query("select * from topic_fetch_urls").hashes()) + return + + # if every url passed to the queue gets tagged with a url error, that means they all got processed + # by the fetch-twitter-urls pool + count_processed_tfus = db.query( + """ + select count(*) from topic_fetch_urls + where state = 'python error' and message like '%McFetchTwitterUrlsDataException%' + """).flat()[0] + + assert count_processed_tfus == num_urls diff --git a/apps/topics-mine/tests/python/test_fetch_twitter_urls.py b/apps/topics-mine/tests/python/test_fetch_twitter_urls.py new file mode 100644 index 0000000000..888cd12836 --- /dev/null +++ b/apps/topics-mine/tests/python/test_fetch_twitter_urls.py @@ -0,0 +1,42 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic +from topics_mine.mine import _fetch_twitter_urls + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_fetch_twitter_urls(): + db = mediawords.db.connect_to_db() + + topic = create_test_topic(db, 'foo') + + num_urls = 100 + + # add a bunch of urls with non-twitter urls. the fetch-twitter-urls job will fail with a python error + # when the urls cannot be parsed for twitter statuses, but that's fine becase all we are testing here + # is that each url makes it into the fetch_twitter_url job pool + + tfus = [] + for i in range(num_urls): + tfu = { + 'topics_id': topic['topics_id'], + 'url': 'http://not.a.twitter.url', + 'state': 'tweet pending' + } + tfu = db.create("topic_fetch_urls", tfu) + + tfus.append(tfu) + + tfu_ids = [tfu['topic_fetch_urls_id'] for tfu in tfus] + + _fetch_twitter_urls(db, topic, tfu_ids) + + # if every url passed to the queue gets tagged with a url error, that means they all got processed + # by the fetch-twitter-urls pool + count_processed_tfus = db.query( + """ + select count(*) from topic_fetch_urls + where state = 'python error' and message like '%McFetchTwitterUrlsDataException%' + """).flat()[0] + + assert count_processed_tfus == num_urls diff --git a/dev/run_test.py b/dev/run_test.py index 269aa1e4fd..72b1c92525 100755 --- a/dev/run_test.py +++ b/dev/run_test.py @@ -68,7 +68,7 @@ def docker_test_commands(all_apps_dir: str, test_file: str, verbose: bool) -> Li if test_file.endswith('.py'): test_command = [ - 'py.test', '-s', '-p no:warnings' , + 'py.test', '-s', '-vv', # Disable cache because it won't be preserved '-p', 'no:cacheprovider', From 67a62464d0829b41260157ef39be1bb6759edc35 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Fri, 4 Dec 2020 18:32:39 +0000 Subject: [PATCH 05/20] add add_new_links test and fix fetch_links test --- .../src/python/topics_mine/mine.py | 20 +++++------ .../tests/python/test_add_new_links.py | 34 +++++++++++++++++++ .../tests/python/test_fetch_links.py | 12 +------ 3 files changed, 45 insertions(+), 21 deletions(-) create mode 100644 apps/topics-mine/tests/python/test_add_new_links.py diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index a2f0ffd1bd..41144887c4 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -10,7 +10,7 @@ import datetime import random from time import sleep, time -from typing import Optional +from typing import Optional, Callable from mediawords.db import DatabaseHandler import mediawords.dbi.stories @@ -124,7 +124,7 @@ def generate_topic_links(db: DatabaseHandler, topic: dict, stories: list): queued_stories_ids = [] for story in stories: if not story_within_topic_date_range(topic, story): - next + continue queued_stories_ids.append(story['stories_id']) @@ -223,7 +223,7 @@ def create_and_queue_topic_fetch_urls(db:DatabaseHandler, topic:dict, fetch_link # if this link has an associated topics_link row but that row has been deleted, ignore it. # this can be used to delete spam urls from topic_links during the spidering process. if topic_links_id and not db.find_by_id('topic_links', topic_links_id): - next + continue tfu = { 'topics_id': topic['topics_id'], @@ -456,7 +456,7 @@ def save_metrics(db, topic, iteration, num_links, elapsed_time): db.create('topic_spider_metrics', topic_spider_metric) -def add_new_links(db, topic, iteration, new_links, state_updater): +def add_new_links(db:DatabaseHandler, topic:dict, iteration:int, new_links:list, state_updater:Callable) -> None: """call add_new_links in chunks of ADD_NEW_LINKS_CHUNK_SIZE""" log.info("add new links") @@ -469,14 +469,14 @@ def add_new_links(db, topic, iteration, new_links, state_updater): i = 0 while i < num_links: - start_time = time + start_time = time() update_topic_state(db, state_updater, f"spider_progress iteration links: {i} / {num_links}") - chunk_links = new_links[i, i + ADD_NEW_LINKS_CHUNK_SIZE] + chunk_links = new_links[i:i + ADD_NEW_LINKS_CHUNK_SIZE] add_new_links_chunk(db, topic, iteration, chunk_links) - elapsed_time = time - start_time + elapsed_time = time() - start_time save_metrics(db, topic, iteration, len(chunk_links), elapsed_time) i += ADD_NEW_LINKS_CHUNK_SIZE @@ -516,7 +516,7 @@ def spider_new_links(db, topic, iteration, state_updater): new_links = get_new_links(iteration, topic['topics_id']) if not new_links: - last + break add_new_links(db, topic, iteration, new_links, state_updater) @@ -580,14 +580,14 @@ def mine_topic_stories(db, topic): ts.link_mined = false and ts.topics_id = %(a)s limit %(b)s - """, {'a': topic['topics_id'], 'b': EXTRACT_STORT_LINKS_CHUNK_SIZE}).hashes() + """, {'a': topic['topics_id'], 'b': EXTRACT_STORY_LINKS_CHUNK_SIZE}).hashes() num_stories = len(stories) generate_topic_links(db, topic, stories) if num_stories < EXTRACT_STORY_LINKS_CHUNK_SIZE: - last + break def import_seed_urls(db, topic, state_updater): diff --git a/apps/topics-mine/tests/python/test_add_new_links.py b/apps/topics-mine/tests/python/test_add_new_links.py new file mode 100644 index 0000000000..41c036290a --- /dev/null +++ b/apps/topics-mine/tests/python/test_add_new_links.py @@ -0,0 +1,34 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic, create_test_topic_stories +import topics_mine.mine + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_fetch_links(): + db = mediawords.db.connect_to_db() + + num_urls = 100 + + topic = create_test_topic(db, 'foo') + create_test_topic_stories(db, topic, 1, num_urls); + + # add a bunch of urls with bad urls. the fetch-link job will fail with a python error + # but that's fine becase all we are testing here is that each url makes it into the job pool + db.query("delete from topic_links") + links = db.query( + """ + insert into topic_links (topics_id, stories_id, url) + select topics_id, stories_id, 'U ' || stories_id::text from topic_stories + returning * + """).hashes() + + topics_mine.mine.ADD_NEW_LINKS_CHUNK_SIZE = int(num_urls / 2) - 1 + + topics_mine.mine.add_new_links(db, topic, 1, links, None) + + count_processed_tfus = db.query("select count(*) from topic_fetch_urls where state = 'request failed'").flat()[0] + assert count_processed_tfus == num_urls + + count_spidered_links = db.query("select count(*) from topic_links where link_spidered").flat()[0] + assert count_spidered_links == num_urls diff --git a/apps/topics-mine/tests/python/test_fetch_links.py b/apps/topics-mine/tests/python/test_fetch_links.py index 553b235ae9..e87dfb8aaa 100644 --- a/apps/topics-mine/tests/python/test_fetch_links.py +++ b/apps/topics-mine/tests/python/test_fetch_links.py @@ -19,15 +19,5 @@ def test_fetch_links(): fetch_links(db, topic, links) - log.warning(db.query("select * from topic_fetch_urls").hashes()) - return - - # if every url passed to the queue gets tagged with a url error, that means they all got processed - # by the fetch-twitter-urls pool - count_processed_tfus = db.query( - """ - select count(*) from topic_fetch_urls - where state = 'python error' and message like '%McFetchTwitterUrlsDataException%' - """).flat()[0] - + count_processed_tfus = db.query("select count(*) from topic_fetch_urls where state = 'request failed'").flat()[0] assert count_processed_tfus == num_urls From 7c6a943313a47521bd70690419bbd13ddd48fa6c Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Fri, 4 Dec 2020 19:41:25 +0000 Subject: [PATCH 06/20] more mine.py unit tests --- .../src/python/topics_mine/mine.py | 4 +-- .../tests/python/test_mine_topic_stories.py | 21 ++++++++++++ .../tests/python/test_spider_new_links.py | 32 +++++++++++++++++++ 3 files changed, 55 insertions(+), 2 deletions(-) create mode 100644 apps/topics-mine/tests/python/test_mine_topic_stories.py create mode 100644 apps/topics-mine/tests/python/test_spider_new_links.py diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 41144887c4..6deed55104 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -484,7 +484,7 @@ def add_new_links(db:DatabaseHandler, topic:dict, iteration:int, new_links:list, mine_topic_stories(db, topic) -def get_new_links(iteration: int, topics_id: int) -> list: +def get_new_links(db: DatabaseHandler, iteration: int, topics_id: int) -> list: """query the database for new links from stories below the given iteration.""" new_links = db.query( @@ -513,7 +513,7 @@ def spider_new_links(db, topic, iteration, state_updater): while True: log.info(f"spider new links chunk: {i}") - new_links = get_new_links(iteration, topic['topics_id']) + new_links = get_new_links(db, iteration, topic['topics_id']) if not new_links: break diff --git a/apps/topics-mine/tests/python/test_mine_topic_stories.py b/apps/topics-mine/tests/python/test_mine_topic_stories.py new file mode 100644 index 0000000000..76a686ac5f --- /dev/null +++ b/apps/topics-mine/tests/python/test_mine_topic_stories.py @@ -0,0 +1,21 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic, create_test_topic_stories +import topics_mine.mine + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_fetch_links(): + db = mediawords.db.connect_to_db() + + num_urls = 100 + + topic = create_test_topic(db, 'foo') + create_test_topic_stories(db, topic, 1, num_urls); + + topics_mine.mine.EXTRACT_STORY_LINKS_CHUNK_SIZE = int(num_urls / 2) - 1 + + topics_mine.mine.mine_topic_stories(db, topic) + + count_spidered_stories = db.query("select count(*) from topic_stories where link_mined").flat()[0] + assert count_spidered_stories == num_urls diff --git a/apps/topics-mine/tests/python/test_spider_new_links.py b/apps/topics-mine/tests/python/test_spider_new_links.py new file mode 100644 index 0000000000..88657de29b --- /dev/null +++ b/apps/topics-mine/tests/python/test_spider_new_links.py @@ -0,0 +1,32 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic, create_test_topic_stories +import topics_mine.mine + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_fetch_links(): + db = mediawords.db.connect_to_db() + + num_urls = 10 + + topic = create_test_topic(db, 'foo') + create_test_topic_stories(db, topic, 1, num_urls); + + # add a bunch of urls with bad urls. the fetch-link job will fail with a python error + # but that's fine becase all we are testing here is that each url makes it into the job pool + db.query("delete from topic_links") + links = db.query( + """ + insert into topic_links (topics_id, stories_id, url) + select topics_id, stories_id, 'U ' || stories_id::text from topic_stories + returning * + """).hashes() + + topics_mine.mine.spider_new_links(db, topic, 1, None) + + count_processed_tfus = db.query("select count(*) from topic_fetch_urls where state = 'request failed'").flat()[0] + assert count_processed_tfus == num_urls + + count_spidered_links = db.query("select count(*) from topic_links where link_spidered").flat()[0] + assert count_spidered_links == num_urls From 58e6dde4e765b8196f5a11a0eb8e405302692d6d Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Tue, 8 Dec 2020 05:02:04 +0000 Subject: [PATCH 07/20] more mine.py unit tests --- .../src/python/topics_mine/mine.py | 16 ++++-- .../test_import_month_within_respider_date.t | 56 ------------------- .../test_import_month_with_respider_date.py | 38 +++++++++++++ .../tests/python/test_import_seed_urls.py | 29 ++++++++++ .../test_import_solr_seed_query_month.py | 55 ++++++++++++++++++ 5 files changed, 132 insertions(+), 62 deletions(-) delete mode 100644 apps/topics-mine/tests/perl/test_import_month_within_respider_date.t create mode 100644 apps/topics-mine/tests/python/test_import_month_with_respider_date.py create mode 100644 apps/topics-mine/tests/python/test_import_seed_urls.py create mode 100644 apps/topics-mine/tests/python/test_import_solr_seed_query_month.py diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 6deed55104..47a120ec12 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -8,6 +8,7 @@ """ import datetime +from dateutil.relativedelta import relativedelta import random from time import sleep, time from typing import Optional, Callable @@ -436,7 +437,7 @@ def add_new_links_chunk(db, topic, iteration, new_links): topic_fetch_urls = fetch_links(db, topic, new_links) log.info("add_new_links_chunk: mark topic links spidered") - link_ids = [l['topic_links_id'] for l in new_links if l['topic_links_id']] + link_ids = [l['topic_links_id'] for l in new_links if 'topic_links_id' in l] db.query( "update topic_links set link_spidered = 't' where topic_links_id = any(%(a)s)", @@ -622,7 +623,7 @@ def import_seed_urls(db, topic, state_updater): # process these in chunks in case we have to start over so that we don't have to redo the whole batch num_urls = len(seed_urls) i = 0 - while i > num_urls: + while i < num_urls: start_time = time() update_topic_state(db, state_updater, f"importing seed urls: {i} / {num_urls}") @@ -703,18 +704,21 @@ def _import_month_within_respider_date(topic, month_offset): start_date = topic['respider_start_date'] or '' end_date = topic['respider_end_date'] or '' - if not topic['respider_stories'] and (start_date or end_date): + if not (topic['respider_stories'] and (start_date or end_date)): return True - month_date = datetime.datetime.strptime(topic['start_date'], '%Y-%m-%d') + datetime.timedelta(months=month_offset) + month_date = datetime.datetime.strptime(topic['start_date'], '%Y-%m-%d') + relativedelta(months=month_offset) + log.warning(month_date) if end_date: - end_date = datetime.datetime.strptime(end_date, '%Y-%m-%d') + datetime.timedelta(months=-1) + end_date = datetime.datetime.strptime(end_date, '%Y-%m-%d') + relativedelta(months=-1) + log.warning(f"end_date: {end_date}") if month_date > end_date: return True if start_date: - start_date = datetime.datetime.strptime(topic['start_date'], '%Y-%m-%d') + start_date = datetime.datetime.strptime(start_date, '%Y-%m-%d') + log.warning(f"start_date: {start_date}") if month_date < start_date: return True diff --git a/apps/topics-mine/tests/perl/test_import_month_within_respider_date.t b/apps/topics-mine/tests/perl/test_import_month_within_respider_date.t deleted file mode 100644 index 091b27c979..0000000000 --- a/apps/topics-mine/tests/perl/test_import_month_within_respider_date.t +++ /dev/null @@ -1,56 +0,0 @@ -use strict; -use warnings; - -# test TM::Mine::_import_month_within_respider_date - -use English '-no_match_vars'; - -use Test::More; - -use MediaWords::TM::Mine; - -sub test_import_month_within_respider_date() -{ - my $topic = { - start_date => '2019-01-01', - end_date => '2019-06-01', - respider_stories => 'f', - respider_start_date => undef, - respider_end_date => undef - }; - - # if none of the respider setting are correct, we should always return true - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 0 ) ); - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 1 ) ); - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 100 ) ); - - # if respider_stories is true but neither respider date is set, always return true - $topic->{ respider_stories } = 1; - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 0 ) ); - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 1 ) ); - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 100 ) ); - - # should only import the dates after the respider end date - $topic->{ respider_end_date } = '2019-05-01'; - ok( !MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 0 ) ); - ok( !MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 3 ) ); - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 4 ) ); - - # make sure we capture the whole previous month if the end date is within a month - $topic->{ respider_end_date } = '2019-04-02'; - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 3 ) ); - - # should only import the dates before the repsider start date - $topic->{ respider_start_date } = '2019-02-01'; - ok( MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 0 ) ); - ok( !MediaWords::TM::Mine::_import_month_within_respider_date( $topic, 1 ) ); -} - -sub main -{ - test_import_month_within_respider_date(); - - done_testing(); -} - -main(); diff --git a/apps/topics-mine/tests/python/test_import_month_with_respider_date.py b/apps/topics-mine/tests/python/test_import_month_with_respider_date.py new file mode 100644 index 0000000000..2a82fcafa5 --- /dev/null +++ b/apps/topics-mine/tests/python/test_import_month_with_respider_date.py @@ -0,0 +1,38 @@ +from topics_mine.mine import _import_month_within_respider_date + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_import_month_with_respider_date(): + topic = { + 'start_date': '2019-01-01', + 'end_date': '2019-06-01', + 'respider_stories': 'f', + 'respider_start_date': None, + 'respider_end_date': None} + + # if none of the respider setting are correct, we should always return true + assert _import_month_within_respider_date(topic, 0) + assert _import_month_within_respider_date(topic, 1) + assert _import_month_within_respider_date(topic, 100) + + # if respider_stories is true but neither respider date is set, always return true + topic['respider_stories'] = 1 + assert _import_month_within_respider_date(topic, 0) + assert _import_month_within_respider_date(topic, 1) + assert _import_month_within_respider_date(topic, 100) + + # should only import the dates after the respider end date + topic['respider_end_date'] = '2019-05-01' + assert not _import_month_within_respider_date(topic, 0) + assert not _import_month_within_respider_date(topic, 3) + assert _import_month_within_respider_date(topic, 4) + + # make sure we capture the whole previous month if the end date is within a month + topic['respider_end_date'] = '2019-04-02' + assert _import_month_within_respider_date(topic, 3) + + # should only import the dates before the repsider start date + topic['respider_start_date'] = '2019-02-01' + assert _import_month_within_respider_date(topic, 0) + assert not _import_month_within_respider_date(topic, 1) diff --git a/apps/topics-mine/tests/python/test_import_seed_urls.py b/apps/topics-mine/tests/python/test_import_seed_urls.py new file mode 100644 index 0000000000..a62d74c100 --- /dev/null +++ b/apps/topics-mine/tests/python/test_import_seed_urls.py @@ -0,0 +1,29 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic +import topics_mine.mine + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_fetch_links(): + db = mediawords.db.connect_to_db() + + num_urls = 100 + + topic = create_test_topic(db, 'foo') + + for i in range(num_urls): + tsu = { + 'topics_id': topic['topics_id'], + 'processed': 'false', + 'url': f'INVALID URL {i}'} + db.create('topic_seed_urls', tsu) + + topics_mine.mine.ADD_NEW_LINKS_CHUNK_SIZE = int(num_urls / 2) - 1 + topics_mine.mine.import_seed_urls(db, topic, None) + + count_processed_tfus = db.query("select count(*) from topic_fetch_urls where state = 'request failed'").flat()[0] + assert count_processed_tfus == num_urls + + count_processed_urls = db.query("select count(*) from topic_seed_urls where processed").flat()[0] + assert count_processed_urls == num_urls diff --git a/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py b/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py new file mode 100644 index 0000000000..689d1bd3e8 --- /dev/null +++ b/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py @@ -0,0 +1,55 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic +from mediawords.test.solr import create_test_story_stack_for_indexing, setup_test_index +import topics_mine.mine + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_import_solr_seed_query_month(): + db = mediawords.db.connect_to_db() + + num_stories = 100 + + topic = create_test_topic(db, 'foo') + + stack = {'medium_1': {'feed_1': [f"story_{_}" for _ in range(num_stories)]}} + create_test_story_stack_for_indexing(db, stack) + + all_media = db.query("select * from media").hashes() + all_stories = db.query("select * from stories").hashes() + + topic['start_date'] = '2020-01-01' + topic['end_date'] = '2020-06-01' + topic['solr_seed_query'] = '*:*' + topic['solr_seed_query_run'] = False + + # distribute one story each day. this is kludgy but should work from a fresh databse with + # sequential stories_ids. assumes that there are fewer stories than days in the date range above + db.query( + "update stories set publish_date = %(a)s + ((stories_id::text || ' days')::interval)", + {'a': topic['start_date']}) + + setup_test_index() + + i = 0 + while import_solr_seed_query_month(db, topic, i): + date_stories = db.query( + """ + select * from stories + where + publish_date > %(a)s + interval %(b)s || ' months' and + publish_date < %(a)s + interval %(c)s || ' months' + """, + {'a': topic['start_date'], 'b': i, 'c': i + 1}).hashes() + + date_stories_urls = [s['url'] for s in stories] + + count_topic_seed_urls = db.query( + "select count(*) from topic_seed_urls where url = any(%(a)s)", + {'a': date_stories_urls}).flat()[0] + + assert len(date_stories) == count_topic_seed_urls, f"topic seed urls for month offset {i}" + + + From 2deaec86547d5fa3426f1a8124a6a94c39f86d53 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Mon, 14 Dec 2020 15:18:47 +0000 Subject: [PATCH 08/20] add unit test for import_solr_seed_query_montnh --- apps/topics-mine/docker-compose.tests.yml | 57 +++++++++++++++++++ .../test_import_solr_seed_query_month.py | 10 ++-- 2 files changed, 63 insertions(+), 4 deletions(-) diff --git a/apps/topics-mine/docker-compose.tests.yml b/apps/topics-mine/docker-compose.tests.yml index 6eee673554..e38ab06b27 100644 --- a/apps/topics-mine/docker-compose.tests.yml +++ b/apps/topics-mine/docker-compose.tests.yml @@ -48,6 +48,8 @@ services: # 4) generate_story() calls _extract_story() # 5) _extract_story() runs a remote extraction job - extract-and-vector + - solr-shard-01 + - import-solr-data-for-testing extract-and-vector: image: dockermediacloud/extract-and-vector:latest @@ -194,3 +196,58 @@ services: - postgresql-pgbouncer # Uses extractor HTTP service directly to get raw extracted HTML: - extract-article-from-page + + import-solr-data-for-testing: + image: dockermediacloud/import-solr-data-for-testing:latest + init: true + environment: + MC_SOLR_IMPORT_MAX_QUEUED_STORIES: 100000 + stop_signal: SIGKILL + volumes: + - type: bind + source: ./../import-solr-data-for-testing/bin/ + target: /opt/mediacloud/bin/ + - type: bind + source: ./../import-solr-data/src/ + target: /opt/mediacloud/src/import-solr-data/ + - type: bind + source: ./../common/src/ + target: /opt/mediacloud/src/common/ + depends_on: + - postgresql-pgbouncer + - solr-shard-01 + + solr-shard-01: + image: dockermediacloud/solr-shard:latest + init: true + stop_signal: SIGKILL + environment: + MC_SOLR_SHARD_COUNT: "1" + expose: + - 8983 + volumes: + - type: bind + source: ./../solr-base/src/solr/ + target: /usr/src/solr/ + - type: bind + source: ./../solr-shard/bin/solr-shard.sh + target: /solr-shard.sh + depends_on: + - solr-zookeeper + + solr-zookeeper: + image: dockermediacloud/solr-zookeeper:latest + init: true + stop_signal: SIGKILL + expose: + - 2181 + - 2888 + - 3888 + volumes: + - type: bind + source: ./../solr-zookeeper/conf/ + target: /opt/zookeeper/conf/ + - type: bind + source: ./../solr-zookeeper/bin/zookeeper.sh + target: /zookeeper.sh + diff --git a/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py b/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py index 689d1bd3e8..1783e1d396 100644 --- a/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py +++ b/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py @@ -26,11 +26,13 @@ def test_import_solr_seed_query_month(): # distribute one story each day. this is kludgy but should work from a fresh databse with # sequential stories_ids. assumes that there are fewer stories than days in the date range above - db.query( - "update stories set publish_date = %(a)s + ((stories_id::text || ' days')::interval)", - {'a': topic['start_date']}) + stories = db.query("select * from stories").hashes() + for (i, story) in enumerate(stories): + db.query( + "update stories set publish_date = %(a)s::timestamp + ((%(b)s || ' days')::interval)", + {'a': topic['start_date'], 'b': i}) - setup_test_index() + setup_test_index(db) i = 0 while import_solr_seed_query_month(db, topic, i): From 502f5386b281bd55cce134b818cc98de04bef043 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Sat, 19 Dec 2020 19:13:20 +0000 Subject: [PATCH 09/20] add unit test for test_import_solr_seed_query_month --- .../src/python/topics_mine/mine.py | 18 ++++------ .../test_import_solr_seed_query_month.py | 34 +++++++++++++------ 2 files changed, 31 insertions(+), 21 deletions(-) diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 47a120ec12..5c3ba8cb77 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -542,7 +542,7 @@ def get_spider_progress_description(db, topic, iteration, total_links): {'a': topics_id}).flat()[0] return ( - f"spidering iteration: {iteration} stories last iteration / total: " + + f"spidering iteration: {iteration} stories last iteration / total: " f"{stories_last_iteration} / {total_stories} links queued: {queued_links} iteration links: {total_links}" ) @@ -691,7 +691,7 @@ def insert_topic_seed_urls(db, topic_seed_urls): log.info(f"inserting {len(topic_seed_urls)} topic seed urls ...") for tsu in topic_seed_urls: - insert_tsu = {f: tsup[f] for f in ('stories_id', 'url', 'topics_id', 'assume_match')} + insert_tsu = {f: tsu[f] for f in ('stories_id', 'url', 'topics_id', 'assume_match')} db.create('topic_seed_urls', insert_tsu) @@ -725,18 +725,14 @@ def _import_month_within_respider_date(topic, month_offset): return False -def _search_for_stories(db, params): - """Call search_solr_for_stories_ids() above and then query PostgreSQL for the stories returned by Solr. +def _search_for_stories_urls(db, params): + """Call search_solr_for_stories_ids() and then query postgres for the stories urls. - Include stories.* and media_name as the returned fields.""" + Return dicts with stories_id and url fields.""" stories_ids = mediawords.solr.search_solr_for_stories_ids(db, params) - stories = {'stories_id': i for i in stories_ids} - - stories = mediawords.dbi.stories.attach_story_meta_data_to_stories(db, stories) - - stories = [s for s in stories if s['url']] + stories = db.query("select stories_id,url from stories where stories_id = any(%(a)s)", {'a': stories_ids}).hashes() return stories @@ -766,7 +762,7 @@ def import_solr_seed_query_month(db, topic, month_offset): log.info(f"import solr seed query month offset {month_offset}") solr_query['rows'] = max_stories - stories = _search_for_stories(db, solr_query) + stories = _search_for_stories_urls(db, solr_query) if len(stories) > max_returned_stories: raise McTopicMineError(f"solr_seed_query returned more than {max_returned_stories} stories") diff --git a/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py b/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py index 1783e1d396..c59fdf712a 100644 --- a/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py +++ b/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py @@ -9,7 +9,7 @@ def test_import_solr_seed_query_month(): db = mediawords.db.connect_to_db() - num_stories = 100 + num_stories = 200 topic = create_test_topic(db, 'foo') @@ -24,34 +24,48 @@ def test_import_solr_seed_query_month(): topic['solr_seed_query'] = '*:*' topic['solr_seed_query_run'] = False + db.update_by_id('topics', topic['topics_id'], topic) + + for m in all_media: + db.query( + "insert into topics_media_map (topics_id, media_id) values (%(a)s, %(b)s)", + {'a': topic['topics_id'], 'b': m['media_id']}) + # distribute one story each day. this is kludgy but should work from a fresh databse with - # sequential stories_ids. assumes that there are fewer stories than days in the date range above + # sequential stories_ids. assumes that there are more stories than days in the date range above stories = db.query("select * from stories").hashes() for (i, story) in enumerate(stories): db.query( - "update stories set publish_date = %(a)s::timestamp + ((%(b)s || ' days')::interval)", - {'a': topic['start_date'], 'b': i}) + """ + update stories set publish_date = %(a)s::timestamp + ((%(b)s || ' days')::interval) + where stories_id = %(c)s + """, + {'a': topic['start_date'], 'b': i, 'c': story['stories_id']}) setup_test_index(db) i = 0 - while import_solr_seed_query_month(db, topic, i): + while topics_mine.mine.import_solr_seed_query_month(db, topic, i): date_stories = db.query( """ select * from stories where - publish_date > %(a)s + interval %(b)s || ' months' and - publish_date < %(a)s + interval %(c)s || ' months' + publish_date >= %(a)s::timestamp + ((%(b)s || ' months')::interval) and + publish_date <= %(a)s::timestamp + ((%(c)s || ' months')::interval) and + publish_date <= %(d)s """, - {'a': topic['start_date'], 'b': i, 'c': i + 1}).hashes() + {'a': topic['start_date'], 'b': i, 'c': i + 1, 'd': topic['end_date']}).hashes() - date_stories_urls = [s['url'] for s in stories] + date_stories_urls = [s['url'] for s in date_stories] count_topic_seed_urls = db.query( - "select count(*) from topic_seed_urls where url = any(%(a)s)", + "select count(distinct url) from topic_seed_urls where url = any(%(a)s)", {'a': date_stories_urls}).flat()[0] + assert len(date_stories) > 0, f"offset {i}" assert len(date_stories) == count_topic_seed_urls, f"topic seed urls for month offset {i}" + i += 1 + From 9840044c3d04db7326000b0d309cebd091a66c09 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Mon, 21 Dec 2020 05:27:32 +0000 Subject: [PATCH 10/20] add unit test for import_solr_seed_query --- .../src/python/topics_mine/test.py | 47 +++++++++++++++++++ .../python/test_import_solr_seed_query.py | 29 ++++++++++++ .../test_import_solr_seed_query_month.py | 35 +------------- 3 files changed, 78 insertions(+), 33 deletions(-) create mode 100644 apps/topics-mine/src/python/topics_mine/test.py create mode 100644 apps/topics-mine/tests/python/test_import_solr_seed_query.py diff --git a/apps/topics-mine/src/python/topics_mine/test.py b/apps/topics-mine/src/python/topics_mine/test.py new file mode 100644 index 0000000000..efb2d6b156 --- /dev/null +++ b/apps/topics-mine/src/python/topics_mine/test.py @@ -0,0 +1,47 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic +from mediawords.test.solr import create_test_story_stack_for_indexing, setup_test_index +import topics_mine.mine + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def create_topic_for_import(db: mediawords.db.DatabaseHandler, num_stories : int = 200) -> dict: + """create a test topic and stories for import into the topic. + + return the topic. + """ + topic = create_test_topic(db, 'import') + + stack = {'medium_1': {'feed_1': [f"story_{_}" for _ in range(num_stories)]}} + create_test_story_stack_for_indexing(db, stack) + + all_media = db.query("select * from media").hashes() + all_stories = db.query("select * from stories").hashes() + + topic['start_date'] = '2020-01-01' + topic['end_date'] = '2020-06-01' + topic['solr_seed_query'] = '*:*' + topic['solr_seed_query_run'] = False + + db.update_by_id('topics', topic['topics_id'], topic) + + for m in all_media: + db.query( + "insert into topics_media_map (topics_id, media_id) values (%(a)s, %(b)s)", + {'a': topic['topics_id'], 'b': m['media_id']}) + + # distribute one story each day. this is kludgy but should work from a fresh databse with + # sequential stories_ids. assumes that there are more stories than days in the date range above + stories = db.query("select * from stories").hashes() + for (i, story) in enumerate(stories): + db.query( + """ + update stories set publish_date = %(a)s::timestamp + ((%(b)s || ' days')::interval) + where stories_id = %(c)s + """, + {'a': topic['start_date'], 'b': i, 'c': story['stories_id']}) + + setup_test_index(db) + + return topic diff --git a/apps/topics-mine/tests/python/test_import_solr_seed_query.py b/apps/topics-mine/tests/python/test_import_solr_seed_query.py new file mode 100644 index 0000000000..dd0e5a7f2e --- /dev/null +++ b/apps/topics-mine/tests/python/test_import_solr_seed_query.py @@ -0,0 +1,29 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic +from mediawords.test.solr import create_test_story_stack_for_indexing, setup_test_index +import topics_mine.mine +import topics_mine.test + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_import_solr_seed_query(): + db = mediawords.db.connect_to_db() + num_stories = 200 + + topic = topics_mine.test.create_topic_for_import(db=db, num_stories=num_stories) + + topics_mine.mine.import_solr_seed_query(db, topic) + + date_stories = db.query( + "select * from stories where publish_date <= %(a)s", + {'a': topic['end_date']}).hashes() + + date_stories_urls = [s['url'] for s in date_stories] + + count_topic_seed_urls = db.query( + "select count(distinct url) from topic_seed_urls where url = any(%(a)s)", + {'a': date_stories_urls}).flat()[0] + + assert len(date_stories) > 0, f"offset {i}" + assert len(date_stories) == count_topic_seed_urls, f"topic seed urls for month offset {i}" diff --git a/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py b/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py index c59fdf712a..bd88388022 100644 --- a/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py +++ b/apps/topics-mine/tests/python/test_import_solr_seed_query_month.py @@ -2,47 +2,16 @@ from mediawords.test.db.create import create_test_topic from mediawords.test.solr import create_test_story_stack_for_indexing, setup_test_index import topics_mine.mine +import topics_mine.test from mediawords.util.log import create_logger log = create_logger(__name__) def test_import_solr_seed_query_month(): db = mediawords.db.connect_to_db() - num_stories = 200 - topic = create_test_topic(db, 'foo') - - stack = {'medium_1': {'feed_1': [f"story_{_}" for _ in range(num_stories)]}} - create_test_story_stack_for_indexing(db, stack) - - all_media = db.query("select * from media").hashes() - all_stories = db.query("select * from stories").hashes() - - topic['start_date'] = '2020-01-01' - topic['end_date'] = '2020-06-01' - topic['solr_seed_query'] = '*:*' - topic['solr_seed_query_run'] = False - - db.update_by_id('topics', topic['topics_id'], topic) - - for m in all_media: - db.query( - "insert into topics_media_map (topics_id, media_id) values (%(a)s, %(b)s)", - {'a': topic['topics_id'], 'b': m['media_id']}) - - # distribute one story each day. this is kludgy but should work from a fresh databse with - # sequential stories_ids. assumes that there are more stories than days in the date range above - stories = db.query("select * from stories").hashes() - for (i, story) in enumerate(stories): - db.query( - """ - update stories set publish_date = %(a)s::timestamp + ((%(b)s || ' days')::interval) - where stories_id = %(c)s - """, - {'a': topic['start_date'], 'b': i, 'c': story['stories_id']}) - - setup_test_index(db) + topic = topics_mine.test.create_topic_for_import(db=db, num_stories=num_stories) i = 0 while topics_mine.mine.import_solr_seed_query_month(db, topic, i): From febe00c56f911254011bf41f41601af10c5f084c Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Mon, 21 Dec 2020 05:57:58 +0000 Subject: [PATCH 11/20] add unit test for fetch_social_media_data --- apps/topics-mine/docker-compose.tests.yml | 26 +++++++++++++++++++ .../src/python/topics_mine/mine.py | 15 ++++++----- .../python/test_fetch_social_media_data.py | 25 ++++++++++++++++++ 3 files changed, 59 insertions(+), 7 deletions(-) create mode 100644 apps/topics-mine/tests/python/test_fetch_social_media_data.py diff --git a/apps/topics-mine/docker-compose.tests.yml b/apps/topics-mine/docker-compose.tests.yml index e38ab06b27..3c0b0f3482 100644 --- a/apps/topics-mine/docker-compose.tests.yml +++ b/apps/topics-mine/docker-compose.tests.yml @@ -50,6 +50,7 @@ services: - extract-and-vector - solr-shard-01 - import-solr-data-for-testing + - facebook-fetch-story-stats extract-and-vector: image: dockermediacloud/extract-and-vector:latest @@ -251,3 +252,28 @@ services: source: ./../solr-zookeeper/bin/zookeeper.sh target: /zookeeper.sh + facebook-fetch-story-stats: + image: dockermediacloud/facebook-fetch-story-stats:latest + init: true + stop_signal: SIGKILL + environment: + MC_FACEBOOK_APP_ID: "IGNORE NOT NEEDED" + MC_FACEBOOK_APP_SECRET: "IGNORE NOT NEEEDED" + volumes: + - type: bind + source: ./../facebook-fetch-story-stats/bin/ + target: /opt/mediacloud/bin/ + - type: bind + source: ./../facebook-fetch-story-stats/src/ + target: /opt/mediacloud/src/facebook-fetch-story-stats/ + - type: bind + source: ./../facebook-fetch-story-stats/tests/ + target: /opt/mediacloud/tests/ + - type: bind + source: ./../common/src/ + target: /opt/mediacloud/src/common/ + depends_on: + - postgresql-pgbouncer + - rabbitmq-server + + diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 5c3ba8cb77..c6b58e578d 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -843,14 +843,15 @@ def _add_topic_stories_to_facebook_queue(db, topic): log.debug("No stories found for topic 'topic['name']'") for ss in stories: - if (ss['facebook_api_error'] - or not defined(ss['facebook_api_collect_date']) - or not defined(ss['facebook_share_count']) - or not defined(ss['facebook_comment_count'])): - log.debug(f"Adding job for story {stories_id}") + if (ss['facebook_api_error'] or + ss['facebook_api_collect_date'] is None or + ss['facebook_share_count'] is None or + ss['facebook_comment_count'] is None): + log.debug(f"Adding job for story {ss['stories_id']}") args = {'stories_id': ss['stories_id']} - JobBroker(queue_name='MediaWords::Job::Facebook::FetchStoryStats').add_to_queue(args) + JobBroker(queue_name='MediaWords::Job::Facebook::FetchStoryStats').add_to_queue( + stories_id=ss['stories_id']) def fetch_social_media_data(db, topic): @@ -872,7 +873,7 @@ def fetch_social_media_data(db, topic): for i in range(retries): if all_facebook_data_fetched(db, topic): return - time.sleep(poll_wait) + sleep(poll_wait) raise McTopicMineError("Timed out waiting for social media data") diff --git a/apps/topics-mine/tests/python/test_fetch_social_media_data.py b/apps/topics-mine/tests/python/test_fetch_social_media_data.py new file mode 100644 index 0000000000..cec7c7f437 --- /dev/null +++ b/apps/topics-mine/tests/python/test_fetch_social_media_data.py @@ -0,0 +1,25 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic, create_test_topic_stories +from topics_mine.mine import fetch_social_media_data + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_fetch_social_media_data(): + db = mediawords.db.connect_to_db() + + num_stories = 20 + + topic = create_test_topic(db, 'foo') + create_test_topic_stories(db, topic, 1, num_stories) + + db.query("update stories set url = stories_id::text") + + fetch_social_media_data(db, topic) + + num_fetched_stories = db.query( + "select count(*) from story_statistics where facebook_api_error like '%URL is not HTTP%'").flat()[0] + + log.warning(db.query("select facebook_api_error from story_statistics").flat()) + + assert num_fetched_stories == num_stories From 8d4a69aa1e1d37ac649b41dab7560f6493d52b00 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Mon, 21 Dec 2020 06:30:32 +0000 Subject: [PATCH 12/20] add unit test for check_job_error_rate --- .../tests/python/test_check_error_rate.py | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 apps/topics-mine/tests/python/test_check_error_rate.py diff --git a/apps/topics-mine/tests/python/test_check_error_rate.py b/apps/topics-mine/tests/python/test_check_error_rate.py new file mode 100644 index 0000000000..c8cbc4fe94 --- /dev/null +++ b/apps/topics-mine/tests/python/test_check_error_rate.py @@ -0,0 +1,60 @@ +import unittest + +import mediawords.db +from mediawords.test.db.create import create_test_topic, create_test_topic_stories +from topics_mine.mine import check_job_error_rate, McTopicMineError + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +class TestCheckJobErrorRate(unittest.TestCase): + + def test_check_error_Rate(self): + db = mediawords.db.connect_to_db() + + topic = create_test_topic(db, 'foo') + + # first call should not raise an error because there are not topic_fetch_urls + check_job_error_rate(db, topic) + + num_tfus = 100 + + for i in range(num_tfus): + tfu = { + 'topics_id': topic['topics_id'], + 'url': str(i), + 'state': 'pending' + } + db.create('topic_fetch_urls', tfu) + + # still should not return an error with all pending tfus + check_job_error_rate(db, topic) + + db.query("update topic_fetch_urls set state = 'python error' where url = '1'") + + # only one error, so still no exception + check_job_error_rate(db, topic) + + db.query("update topic_fetch_urls set state = 'python error'") + + # now with all errors we should get an exception + self.assertRaises(McTopicMineError, check_job_error_rate, db, topic) + + db.query("update topic_fetch_urls set state = 'pending'") + + num_stories = 100 + + create_test_topic_stories(db, topic, num_stories) + + # should not return an error with no errors in topic_stories + check_job_error_rate(db, topic) + + db.query("update topic_stories set link_mine_error = 'test error' where stories_id = 1") + + # still should not throw an exception with only one error + check_job_error_rate(db, topic) + + db.query("update topic_stories set link_mine_error = 'test error'") + + # now throw an exception since there are too many errors + self.assertRaises(McTopicMineError, check_job_error_rate, db, topic) From e641d0457afe3359fa68dd5ef91293cbdbc71464 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Tue, 22 Dec 2020 04:02:53 +0000 Subject: [PATCH 13/20] update mine.py to remove obsolete topic mode code --- apps/topics-mine/src/python/topics_mine/mine.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index c6b58e578d..18b862be56 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -929,15 +929,9 @@ def import_urls_from_seed_queries(db, topic, state_updater): "select * from topic_seed_queries where topics_id = %(a)s", {'a': topic['topics_id']}).hashes() - num_queries = len(topic_seed_queries) - - if num_queries != 1 and topic['mode'] == 'url_sharing': - raise McTopicMineError("exactly one topic seed query required per url_sharing topic") - - if topic['mode'] == 'web': - log.debug("import seed urls from solr") - update_topic_state(db, state_updater, "importing solr seed query") - import_solr_seed_query(db, topic) + log.debug("import seed urls from solr") + update_topic_state(db, state_updater, "importing solr seed query") + import_solr_seed_query(db, topic) for tsq in topic_seed_queries: tsq_dump = tsq['topic_seed_queries_id'] From cb1fd32c7561720413957420dc9ff4b7cd85e2a4 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Sat, 26 Dec 2020 17:31:14 +0000 Subject: [PATCH 14/20] add test for import_seed_urls_from_seed_queries --- .../src/python/topics_mine/mine.py | 4 +- .../test_import_urls_from_seed_queries.py | 43 +++++++++++++++++++ 2 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 apps/topics-mine/tests/python/test_import_urls_from_seed_queries.py diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 18b862be56..f3edc55f5d 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -935,12 +935,12 @@ def import_urls_from_seed_queries(db, topic, state_updater): for tsq in topic_seed_queries: tsq_dump = tsq['topic_seed_queries_id'] - fetcher = topics_base.fetch_topic_posts.get_post_fetcher(tsq) + fetcher = topics_mine.fetch_topic_posts.get_post_fetcher(tsq) if not fetcher: raise McTopicMineError(f"unable to import seed urls for platform/source of seed query: {tsq_dump}") log.debug(f"import seed urls from fetch_topic_posts:\n{tsq_dump}") - topics_base.fetch_topic_posts.fetch_topic_posts(db, tsq) + topics_mine.fetch_topic_posts.fetch_topic_posts(db, tsq) db.query( """ diff --git a/apps/topics-mine/tests/python/test_import_urls_from_seed_queries.py b/apps/topics-mine/tests/python/test_import_urls_from_seed_queries.py new file mode 100644 index 0000000000..694a11c4a5 --- /dev/null +++ b/apps/topics-mine/tests/python/test_import_urls_from_seed_queries.py @@ -0,0 +1,43 @@ +import csv +import io + +import mediawords.db +from mediawords.test.db.create import create_test_topic, create_test_topic_stories +import topics_mine.mine + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_import_urls_from_seed_queries(): + db = mediawords.db.connect_to_db() + + num_stories = 100 + + topic = create_test_topic(db, 'foo') + topic['pattern'] = '.*' + topic = db.update_by_id('topics', topic['topics_id'], topic) + + date = topic['start_date'] + + posts = [{'author': i, 'publish_date': date, 'content': f'http://u.u/{i}'} for i in range(num_stories)] + + csv_io = io.StringIO() + csv_writer = csv.DictWriter(csv_io, fieldnames=posts[0].keys()) + csv_writer.writeheader() + [csv_writer.writerow(p) for p in posts] + + seed_csv = csv_io.getvalue() + + tsq = { + 'topics_id': topic['topics_id'], + 'source': 'csv', + 'platform': 'generic_post', + 'query': seed_csv + } + tsq = db.create('topic_seed_queries', tsq) + + topics_mine.mine.import_urls_from_seed_queries(db, topic, None) + + num_tsus = db.query("select count(distinct url) from topic_seed_urls").flat()[0] + + assert num_tsus == num_stories From 0a315531b53d38d375fb669705ae813efbdfaf78 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Sat, 26 Dec 2020 18:09:26 +0000 Subject: [PATCH 15/20] add test for respidering --- .../src/python/topics_mine/mine.py | 2 +- .../topics-mine/tests/python/test_respider.py | 105 ++++++++++++++++++ 2 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 apps/topics-mine/tests/python/test_respider.py diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index f3edc55f5d..5e4e2413b1 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -1011,7 +1011,7 @@ def set_stories_respidering(db, topic, snapshots_id): s.publish_date <= %(b)s and ts.topics_id = %(c)s """, - {'a': respider_end_date, 'b': topic['end_date'], 'b': topic['topics_id']}) + {'a': respider_end_date, 'b': topic['end_date'], 'c': topic['topics_id']}) if snapshots_id: db.update_by_id('snapshots', snapshots_id, {'end_date': topic['end_date']}) diff --git a/apps/topics-mine/tests/python/test_respider.py b/apps/topics-mine/tests/python/test_respider.py new file mode 100644 index 0000000000..f58725a71a --- /dev/null +++ b/apps/topics-mine/tests/python/test_respider.py @@ -0,0 +1,105 @@ +import mediawords.db +from mediawords.test.db.create import create_test_topic, create_test_topic_stories +import mediawords.util.sql +import topics_mine.mine + +from mediawords.util.log import create_logger +log = create_logger(__name__) + +def test_fetch_social_media_data(): + db = mediawords.db.connect_to_db() + + topic = create_test_topic(db, 'foo') + + topic['start_date'] = '2017-01-01' + topic['end_date'] = '2018-01-01' + + topic = db.update_by_id( + 'topics', + topic['topics_id'], + { 'max_stories': 0, 'start_date': '2017-01-01', 'end_date': '2018-01-01' } + ) + + num_stories = 101 + create_test_topic_stories(db, topic, 1, num_stories) + + # no respidering without respider_stories + db.query("update topic_stories set link_mined = 't'") + + topics_mine.mine.set_stories_respidering(db, topic, None) + + got_num_respider_stories = db.query( "select count(*) from topic_stories where not link_mined" ).flat()[0] + assert got_num_respider_stories == 0 + + # respider everything with respider_stories but no dates + topic['respider_stories'] = 1 + + db.query("update topic_stories set link_mined = 't'") + + topics_mine.mine.set_stories_respidering(db, topic, None) + + got_num_respider_stories = db.query( "select count(*) from topic_stories where not link_mined" ).flat()[0] + assert got_num_respider_stories == num_stories + + # respider stories within the range of changed dates + topic_update = { + 'respider_stories': 't', + 'respider_end_date': topic['end_date'], + 'respider_start_date': topic['start_date'], + 'end_date': '2019-01-01', + 'start_date': '2016-01-01' + } + + topic = db.update_by_id('topics', topic['topics_id'], topic_update) + + db.query("update topic_stories set link_mined = 't'") + + num_date_changes = 10 + db.query("update stories set publish_date = '2017-06-01'") + db.query( + """ + update stories set publish_date = %(a)s where stories_id in + (select stories_id from stories order by stories_id limit %(b)s) + """, + {'a': '2018-06-01', 'b': num_date_changes}) + db.query( + """ + update stories set publish_date = %(a)s where stories_id in + (select stories_id from stories order by stories_id desc limit %(b)s) + """, + {'a': '2016-06-01', 'b': num_date_changes}) + + snapshot = { + 'topics_id': topic['topics_id'], + 'snapshot_date': mediawords.util.sql.sql_now(), + 'start_date': topic['start_date'], + 'end_date': topic['end_date']} + + snapshot = db.create('snapshots', snapshot) + + timespan_dates = [['2017-01-01', '2017-01-31'], ['2017-12-20', '2018-01-20'], ['2016-12-20', '2017-01-20']] + + for dates in timespan_dates: + (start_date, end_date) = dates + timespan = { + 'snapshots_id': snapshot['snapshots_id'], + 'start_date': start_date, + 'end_date': end_date, + 'period': 'monthly', + 'story_count': 0, + 'story_link_count': 0, + 'medium_count': 0, + 'medium_link_count': 0, + 'post_count': 0} + + timespan = db.create('timespans', timespan) + + topics_mine.mine.set_stories_respidering(db, topic, snapshot['snapshots_id']) + + got_num_respider_stories = db.query("select count(*) from topic_stories where not link_mined").flat()[0] + assert got_num_respider_stories == 2 * num_date_changes + + got_num_archived_timespans = db.query( + "select count(*) from timespans where archive_snapshots_id = %(a)s", + {'a': snapshot['snapshots_id']}).flat()[0] + assert got_num_archived_timespans == 2 From 321e31579598fc340b261657988fabce2906fa30 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Sun, 27 Dec 2020 04:41:32 +0000 Subject: [PATCH 16/20] start migrating test_tm_mine.t to python --- .../tools/bin/dev/jumpstart_perl_to_python.pl | 6 + apps/topics-mine/Dockerfile | 9 + apps/topics-mine/src/requirements.txt | 2 + apps/topics-mine/tests/python/test_mine.py | 405 +++++++++++++++++- 4 files changed, 412 insertions(+), 10 deletions(-) create mode 100644 apps/topics-mine/src/requirements.txt diff --git a/apps/tools/bin/dev/jumpstart_perl_to_python.pl b/apps/tools/bin/dev/jumpstart_perl_to_python.pl index c59879d842..4dcce4317e 100755 --- a/apps/tools/bin/dev/jumpstart_perl_to_python.pl +++ b/apps/tools/bin/dev/jumpstart_perl_to_python.pl @@ -119,6 +119,12 @@ sub main # eq -> == $code =~ s/ eq / == /g; + # undef to None + $code =~ s/undef/None/g; + + # add paerns to common db methods + $code =~ s/(hash(es)?|flat)$/$1()/; + print $code; } diff --git a/apps/topics-mine/Dockerfile b/apps/topics-mine/Dockerfile index 15b9d5eef0..b76aee1295 100644 --- a/apps/topics-mine/Dockerfile +++ b/apps/topics-mine/Dockerfile @@ -12,6 +12,15 @@ RUN \ # true +# Install Python dependencies +COPY src/requirements.txt /var/tmp/ +RUN \ + cd /var/tmp/ && \ + pip3 install -r requirements.txt && \ + rm requirements.txt && \ + rm -rf /root/.cache/ && \ + true + # Install Perl dependencies COPY src/cpanfile /var/tmp/ RUN \ diff --git a/apps/topics-mine/src/requirements.txt b/apps/topics-mine/src/requirements.txt new file mode 100644 index 0000000000..7d5173a96e --- /dev/null +++ b/apps/topics-mine/src/requirements.txt @@ -0,0 +1,2 @@ +# test text generation +lorem diff --git a/apps/topics-mine/tests/python/test_mine.py b/apps/topics-mine/tests/python/test_mine.py index 036c7b6747..b553341b7c 100644 --- a/apps/topics-mine/tests/python/test_mine.py +++ b/apps/topics-mine/tests/python/test_mine.py @@ -1,15 +1,400 @@ +import random +import socket +import time + +import lorem + import mediawords.db -from topics_mine.mine import * +import mediawords.test.hash_server +import mediawords.util.sql +from mediawords.util.web.user_agent import UserAgent +from mediawords.util.web.user_agent.request.request import Request + +import topics_mine.mine from mediawords.util.log import create_logger log = create_logger(__name__) -def test_story_within_topic_date_range(): - topic = {'start_date': '2020-01-01', 'end_date': '2020-02-01'} - - assert story_within_topic_date_range(topic, {'publish_date': '2020-01-15'}) - assert story_within_topic_date_range(topic, {'publish_date': '2019-12-30'}) - assert story_within_topic_date_range(topic, {'publish_date': '2020-02-05'}) - assert not story_within_topic_date_range(topic, {'publish_date': '2021-01-15'}) - assert not story_within_topic_date_range(topic, {'publish_date': '2019-01-15'}) - assert story_within_topic_date_range(topic, {'publish_date': None}) +BASE_PORT = 8890 + +NUM_SITES = 5 +NUM_PAGES_PER_SITE = 10 +NUM_LINKS_PER_PAGE = 2 + +TOPIC_PATTERN = 'FOOBARBAZ' + +def get_html_link(page): + return page['url'] + +def lorem_sentences(n: int) -> str: + return ' '.join([lorem.sentence() for i in range(n)]) + +def generate_content_for_site(site): + body = lorem_sentences(5) + + return f""" + + + site['title'] + + +

+ body +

+ + + """ + +def generate_content_for_page(site, page): + num_links = len(page['links']) + num_paragraphs = int(random.randint(1, 10) + 3) + num_links + + paragraphs = [] + + for i in range(num_paragraphs): + text = lorem_sentences(5) + if i < num_links: + html_link = get_html_link(page['links'][i]) + text += " html_link" + + paragraphs.append(text) + + if random.randint(0, 1) < 1: + paragraphs.append(lorem.sentence() + " TOPIC_PATTERN") + page['matches_topic'] = 1 + + dead_link_text = lorem_sentences(5) + dead_link_text += f" dead link" + + paragraphs.append(dead_link_text) + + body = "\n\n".join([f"

\n{p}\n

" for p in paragraphs]) + + return f""" + + + {page['title']} + + + {body} + + + """ + +def generate_content_for_sites(sites): + + for site in sites: + site['content'] = generate_content_for_site(site) + + for p in site['pages']: + p['content'] = generate_content_for_page(site, p) + +def get_test_sites(): + """ generate test set of sites""" + sites = [] + pages = [] + + # base_port = BASE_PORT + int(rand( 200) ) + base_port = BASE_PORT + + for site_id in range(NUM_SITES): + port = base_port + site_id + # other containers will access this host to we have to set the actual hostname instead of just localhost + host = socket.gethostname() + + site = { + 'port': port, + 'id': site_id, + 'url': f"http://{host}:{port}/", + 'title': "site {site_id}", + 'pages': [] + } + + num_pages = int(random.randint(1, NUM_PAGES_PER_SITE)) + 1 + for page_id in range(num_pages): + date = mediawords.util.sql.get_sql_date_from_epoch(time.time() - (random.randint(1, 365) * 86400)) + + path = f"page-{page_id}" + + page = { + 'id': page_id, + 'path': f"/{path}", + 'url': f"{site['url']}{path}", + 'title': f"page {page_id}", + 'pubish_date': date, + 'links': [] + } + + pages.append(page) + site['pages'].append(page) + + sites.append(site) + + for page in pages: + num_links = int(random.randint(1, NUM_LINKS_PER_PAGE)) + for link_id in range(num_links): + linked_page_id = int(random.randint(1, len(pages))) + linked_page = pages[linked_page_id] + + if not mediawords.util.url.urls_are_equal(page['url'], linked_page['url']): + page['links'].append(linked_page) + + generate_content_for_sites(sites) + + return sites + +def add_site_media(db, sites): + """add a medium for each site so that the spider can find the medium that corresponds to each url""" + for s in sites: + s['medium'] = db.create('media', {'url': s['url'], 'name': s['title']}) + +def start_hash_servers(sites): + hash_servers = [] + + for site in sites: + site_hash = {} + site_hash['/'] = site['content'] + + for p in site['pages']: + site_hash[p['path']] = p['content'] + + hs = mediawords.test.hash_server.HashServer(port=site['port'], pages=site_hash) + + log.debug(f"starting hash server {site['id']}") + + hs.start() + + hash_servers.append(hs) + + # wait for the hash servers to start + time.sleep(1) + + return hash_servers + +def validate_page(label, url, expected_content): + + log.debug(f"test page: {label} {url}") + + ua = UserAgent() + request = Request('get', url) + response = ua.request(request) + + assert response.is_success(), f"request success: {label} {url}" + + got_content = response.decoded_content() + + log.debug("got content") + + assert got_content == expected_content + +def validate_pages(sites): + for site in sites: + log.debug(f"testing pages for site {site['id']}") + validate_page(f"site {site['id']}", site['url'], site['content']) + + [validate_page(f"page {site['id']} p{['id']}", p['url'], p['content']) for p in site['pages']] + +def seed_unlinked_urls(db, topic, sites): + all_pages = [] + [all_pages.extend(s['pages']) for s in sites] + + # do not seed urls that are linked directly from a page that is a topic match. + # this forces the test to succesfully discover those pages through spidering. + non_seeded_url_lookup = {} + for page in all_pages: + if page['matches_topic']: + for l in page['links']: + non_seeded_url_lookup[l['url']] = 1 + + seed_pages = [] + for page in all_pages: + if non_seeded_url_lookup[page['url']]: + log.debug(f"non seeded url: {page['url']}") + else: + log.debug(f"seed url: {page['url']}") + seed_pages.append(page) + + [db.create('topic_seed_urls', {'topics_id': topic['topics_id'], 'url': p['url']}) for p in seed_pages] + +def create_topic(db, sites): + now = mediawords.util.sql.sql_now() + start_date = mediawords.util.sql.increment_day(now, -30) + end_date = mediawords.util.sql.increment_day(now, 30) + + topic = { + 'name': 'test topic', + 'description': 'test topic', + 'pattern': TOPIC_PATTERN, + 'solr_seed_query': 'stories_id:0', + 'solr_seed_query_run': 't', + 'start_date': start_date, + 'end_date': end_date, + 'job_queue': 'mc', + 'max_stories': 100_000, + 'platform': 'web' + } + topic = db.create('topics', topic) + + seed_unlinked_urls(db, topic, sites) + + # avoid race condition in TM::Mine + db.create('tag_sets', {'name': 'extractor_version'}) + + return topic + +def validate_topic_stories(db, topic, sites): + topic_stories = db.query( + """ + select cs.*, s.* + from topic_stories cs + join stories s on (s.stories_id = cs.stories_id) + where cs.topics_id = %(a)s + """, + {'a': topic['topics_id']}) + + all_pages = [] + [all_pages.extend(s['pages']) for s in sites] + + log.debug(f"ALL PAGES: {len(all_pages)}") + + topic_pages = [p for p in all_pages if p['matches_topic']] + + log.debug(f"TOPIC PAGES: {len(topic_pages)}") + + topic_pages_lookup = {'url': s for s in topic_stories} + + for topic_story in topic_stories: + assert topic_pages_lookup[topic_story['url']] + del topic_pages_lookup[topic_story['url']] + + assert len(topic_pages_lookup) == 0 + + # Wait for pending URLs to disappear + WAIT_PENDING_SECONDS = 10 + pending_count = 0 + pending_retry = 0 + while pending_retry <= WAIT_PENDING_SECONDS: + pending_count = db.query("select count(*) from topic_fetch_urls where state ='pending'").flat()[0] + if pending_count > 0: + log.warning("Still pending_count URLs are pending, will retry shortly") + time.sleep(1) + else: + log.info("No more pending URLs, continuing") + break + + pending_retry += 1 + + assert pending_count == 0, f"After waiting {WAIT_PENDING_SECONDS} some URLs are still in 'pending' state" + + dead_link_count = db.query( "select count(*) from topic_fetch_urls where state ='request failed'" ).flat()[0] + assert dead_link_count== len( topic_pages), "dead link count" + + if dead_link_count != len(topic_pages): + fetch_states = db.query("select count(*), state from topic_fetch_urls group by state" ).hashes() + log.warning(f"fetch states: {fetch_states}") + + fetch_errors = db.query("select * from topic_fetch_urls where state = 'python error'").hashes() + log.warning(f"fetch errors: {fetch_errors}") + +def validate_topic_links(db, topic, sites): + cid = topic['topics_id'] + + cl = db.query("select * from topic_links").hashes() + + all_pages = [] + [all_pages.extend(s['pages']) for s in sites] + + for page in all_pages: + if not page['matches_topic']: + continue + + for link in page['links']: + if not link['matches_topic']: + continue + + topic_links = db.query( + """ + select * + from topic_links cl + join stories s on (cl.stories_id = s.stories_id) + where + s.url = %(a)s and + cl.url = %(b)s and + cl.topics_id = %(c)s + """, + {'a': page['url'], 'b': link['url'], 'c': cid}).hashes() + + assert len(topic_links) == 1, f"number of topic_links for {page['url']} -> {link['url']}" + + topic_spider_metric = db.query( + "select sum(links_processed) links_processed from topic_spider_metrics where topics_id = %(a)s", + {'a': cid}).hashes() + + assert topic_spider_metric,"topic spider metrics exist" + assert topic_spider_metric['links_processed'] > len(cl), "metrics links_processed greater than topic_links" + +def validate_for_errors(db): + """ test that no errors exist in the topics or snapshots tables""" + error_topics = db.query("select * from topics where state = 'error'").hashes() + + assert len( error_topics) == 0, f"topic errors: {error_topics}" + + error_snapshots = db.query("select * from snapshots where state = 'error'").hashes() + + assert len( error_snapshots) == 0, f"snapshot errors:{error_snapshots}" + +def validate_spider_results(db, topic, sites): + validate_topic_stories(db, topic, sites) + validate_topic_links(db, topic, sites) + validate_for_errors(db) + +def get_site_structure(sites): + meta_sites = [] + for site in sites: + meta_site = {'url': site['url'] } + for page in site['pages']: + meta_page = {'url': page['url'], 'matches_topic': page['matches_topic'], 'links': []} + [meta_page['links'].append(l['url']) for l in page['links']] + + if page['matches_topic'] and meta_page['matches_topic']: + meta_page['content'] = page['content'] + + meta_site['pages'].append(meta_page) + + meta_sites.append(meta_site) + + return meta_sites + +def test_mine(): + # we pseudo-randomly generate test data, but we want repeatable tests + random.seed(3) + + db = mediawords.db.connect_to_db() + + mediawords.util.mail.enable_test_mode() + + sites = get_test_sites() + + log.debiug(f"SITE STRUCTURE {get_site_structure(sites)}") + + add_site_media(db, sites) + + hash_servers = start_hash_servers(sites) + + validate_pages(sites) + + topic = create_topic(db, sites) + + mine_args = { + 'topics_id': topic['topics_id'], + 'skip_post_processing': 1, + 'cache_broken_downloads': 0, + 'import_only': 0, + 'skip_outgoing_foreign_rss_links': 0, + 'test_mode': 1} + + topics_mine.mine.mine_topic(db, topic, mine_args) + + validate_spider_results(db, topic, sites) + + [hs.stop for hs in hash_servers] From 99771a1b23aed17fb7ddc546cd931eefc68f2a47 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Mon, 28 Dec 2020 17:36:41 +0000 Subject: [PATCH 17/20] add working test_mine.py integration test --- .../src/python/topics_mine/mine.py | 31 +++----- apps/topics-mine/tests/python/test_mine.py | 73 ++++++++++--------- 2 files changed, 50 insertions(+), 54 deletions(-) diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 5e4e2413b1..fa3c464b68 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -57,9 +57,8 @@ # how long to wait to timeout link extraction LINK_EXTRACTION_POLL_TIMEOUT = 60 -# if mine_topic is run with the test_mode option, set this true and do not try to queue extractions -_test_mode = None - +# domain timeout for link fetching +DOMAIN_TIMEOUT = None class McTopicMineError(Exception): pass @@ -203,11 +202,9 @@ def die_if_max_stories_exceeded(db, topic): def queue_topic_fetch_url(tfu:dict, domainm_timeout:Optional[int] = None): """ add the topic_fetch_url to the fetch_link job queue. try repeatedly on failure.""" - domain_timeout = 0 if _test_mode else None - JobBroker(queue_name='MediaWords::Job::TM::FetchLink').add_to_queue( topic_fetch_urls_id=tfu['topic_fetch_urls_id'], - domain_timeout=domain_timeout) + domain_timeout=DOMAIN_TIMEOUT) def create_and_queue_topic_fetch_urls(db:DatabaseHandler, topic:dict, fetch_links:list) -> list: @@ -859,10 +856,6 @@ def fetch_social_media_data(db, topic): log.info("fetch social media data") - # test spider should be able to run with job broker, so we skip social media collection - if _test_mode: - return - cid = topic['topics_id'] _add_topic_stories_to_facebook_queue(db, topic) @@ -1028,7 +1021,7 @@ def set_stories_respidering(db, topic, snapshots_id): {'respider_stories': 'f', 'respider_start_date': None, 'respider_end_date': None}) -def do_mine_topic(db, topic, options, state_updater): +def do_mine_topic(db, topic, options): """ mine the given topic for links and to recursively discover new stories on the web. options: @@ -1037,7 +1030,9 @@ def do_mine_topic(db, topic, options, state_updater): snapshots_id - associate topic with the given existing snapshot """ - [options.setdfault(f, None) for f in 'import_only skip_post_processing test_mode'.split()] + [options.setdefault(f, None) for f in 'state_updater import_only skip_post_processing snapshots_id'.split()] + + state_updater = options['state_updater'] update_topic_state(db, state_updater, "importing seed urls") import_urls_from_seed_queries(db, topic, state_updater) @@ -1079,24 +1074,18 @@ def do_mine_topic(db, topic, options, state_updater): StatefulJobBroker(queue_name='MediaWords::Job::TM::SnapshotTopic').add_to_queue(snapshot_args) -def mine_topic(db, topic, options, state_updater): +def mine_topic(db, topic, **options): """ wrap do_mine_topic in try and handle errors and state""" # the topic spider can sit around for long periods doing solr queries, so we need to make sure the postgres # connection does not get timed out db.query("set idle_in_transaction_session_timeout = 0") - prev_test_mode = _test_mode - - _test_mode = options.get('test_mode', False) - if topic['state'] != 'running': topics_base.alert.send_topic_alert(db, topic, "started topic spidering") try: - do_mine_topic(db, topic, options, state_updater) - except Error as e: + do_mine_topic(db, topic, options) + except Exception as e: topics_base.alert.send_topic_alert(db, topic, "aborted topic spidering due to error") raise e - - _test_mode = prev_test_mode diff --git a/apps/topics-mine/tests/python/test_mine.py b/apps/topics-mine/tests/python/test_mine.py index b553341b7c..e41b48b2d1 100644 --- a/apps/topics-mine/tests/python/test_mine.py +++ b/apps/topics-mine/tests/python/test_mine.py @@ -45,9 +45,13 @@ def generate_content_for_site(site): """ +def randindex(n): + """generate a random int >= 0 and < n.""" + return random.randint(0, n - 1) + def generate_content_for_page(site, page): num_links = len(page['links']) - num_paragraphs = int(random.randint(1, 10) + 3) + num_links + num_paragraphs = int(randindex(10) + 3) + num_links paragraphs = [] @@ -55,12 +59,12 @@ def generate_content_for_page(site, page): text = lorem_sentences(5) if i < num_links: html_link = get_html_link(page['links'][i]) - text += " html_link" + text += f" {html_link}" paragraphs.append(text) - if random.randint(0, 1) < 1: - paragraphs.append(lorem.sentence() + " TOPIC_PATTERN") + if randindex(2) < 1: + paragraphs.append(lorem.sentence() + f" {TOPIC_PATTERN}") page['matches_topic'] = 1 dead_link_text = lorem_sentences(5) @@ -82,7 +86,6 @@ def generate_content_for_page(site, page): """ def generate_content_for_sites(sites): - for site in sites: site['content'] = generate_content_for_site(site) @@ -106,13 +109,13 @@ def get_test_sites(): 'port': port, 'id': site_id, 'url': f"http://{host}:{port}/", - 'title': "site {site_id}", + 'title': f"site {site_id}", 'pages': [] } - num_pages = int(random.randint(1, NUM_PAGES_PER_SITE)) + 1 + num_pages = int(randindex(NUM_PAGES_PER_SITE)) + 1 for page_id in range(num_pages): - date = mediawords.util.sql.get_sql_date_from_epoch(time.time() - (random.randint(1, 365) * 86400)) + date = mediawords.util.sql.get_sql_date_from_epoch(time.time() - (randindex(365) * 86400)) path = f"page-{page_id}" @@ -122,7 +125,8 @@ def get_test_sites(): 'url': f"{site['url']}{path}", 'title': f"page {page_id}", 'pubish_date': date, - 'links': [] + 'links': [], + 'matches_topic': False } pages.append(page) @@ -131,9 +135,9 @@ def get_test_sites(): sites.append(site) for page in pages: - num_links = int(random.randint(1, NUM_LINKS_PER_PAGE)) + num_links = int(randindex(NUM_LINKS_PER_PAGE)) for link_id in range(num_links): - linked_page_id = int(random.randint(1, len(pages))) + linked_page_id = int(randindex(len(pages))) linked_page = pages[linked_page_id] if not mediawords.util.url.urls_are_equal(page['url'], linked_page['url']): @@ -208,7 +212,7 @@ def seed_unlinked_urls(db, topic, sites): seed_pages = [] for page in all_pages: - if non_seeded_url_lookup[page['url']]: + if non_seeded_url_lookup.get(page['url'], False): log.debug(f"non seeded url: {page['url']}") else: log.debug(f"seed url: {page['url']}") @@ -250,21 +254,23 @@ def validate_topic_stories(db, topic, sites): join stories s on (s.stories_id = cs.stories_id) where cs.topics_id = %(a)s """, - {'a': topic['topics_id']}) + {'a': topic['topics_id']}).hashes() all_pages = [] [all_pages.extend(s['pages']) for s in sites] - log.debug(f"ALL PAGES: {len(all_pages)}") + log.warning(f"ALL PAGES: {len(all_pages)}") topic_pages = [p for p in all_pages if p['matches_topic']] - log.debug(f"TOPIC PAGES: {len(topic_pages)}") + log.warning(f"TOPIC PAGES: {len(topic_pages)}") + + topic_pages_lookup = {s['url']: s for s in topic_stories} - topic_pages_lookup = {'url': s for s in topic_stories} + log.warning(f"TOPIC PAGES LOOKUP: {len(topic_pages_lookup)}") for topic_story in topic_stories: - assert topic_pages_lookup[topic_story['url']] + assert topic_pages_lookup.get(topic_story['url'], False) del topic_pages_lookup[topic_story['url']] assert len(topic_pages_lookup) == 0 @@ -286,20 +292,24 @@ def validate_topic_stories(db, topic, sites): assert pending_count == 0, f"After waiting {WAIT_PENDING_SECONDS} some URLs are still in 'pending' state" - dead_link_count = db.query( "select count(*) from topic_fetch_urls where state ='request failed'" ).flat()[0] - assert dead_link_count== len( topic_pages), "dead link count" + dead_link_count = db.query( "select count(*) from topic_fetch_urls where state ='request failed'").flat()[0] + dead_pages_count = db.query("select count(*) from topic_fetch_urls where url like '%dead%'").flat()[0] - if dead_link_count != len(topic_pages): + if dead_link_count != dead_pages_count: fetch_states = db.query("select count(*), state from topic_fetch_urls group by state" ).hashes() log.warning(f"fetch states: {fetch_states}") fetch_errors = db.query("select * from topic_fetch_urls where state = 'python error'").hashes() log.warning(f"fetch errors: {fetch_errors}") + assert dead_link_count == dead_pages_count, "dead link count" + def validate_topic_links(db, topic, sites): cid = topic['topics_id'] - cl = db.query("select * from topic_links").hashes() + topic_links = db.query("select * from topic_links").hashes() + + log.warning(f"TOPIC LINKS: {len(topic_links)}") all_pages = [] [all_pages.extend(s['pages']) for s in sites] @@ -328,10 +338,10 @@ def validate_topic_links(db, topic, sites): topic_spider_metric = db.query( "select sum(links_processed) links_processed from topic_spider_metrics where topics_id = %(a)s", - {'a': cid}).hashes() + {'a': cid}).hash() assert topic_spider_metric,"topic spider metrics exist" - assert topic_spider_metric['links_processed'] > len(cl), "metrics links_processed greater than topic_links" + assert topic_spider_metric['links_processed'] > len(topic_links), "metrics links_processed greater than topic_links" def validate_for_errors(db): """ test that no errors exist in the topics or snapshots tables""" @@ -351,7 +361,7 @@ def validate_spider_results(db, topic, sites): def get_site_structure(sites): meta_sites = [] for site in sites: - meta_site = {'url': site['url'] } + meta_site = {'url': site['url'], 'pages': []} for page in site['pages']: meta_page = {'url': page['url'], 'matches_topic': page['matches_topic'], 'links': []} [meta_page['links'].append(l['url']) for l in page['links']] @@ -375,7 +385,7 @@ def test_mine(): sites = get_test_sites() - log.debiug(f"SITE STRUCTURE {get_site_structure(sites)}") + log.debug(f"SITE STRUCTURE {get_site_structure(sites)}") add_site_media(db, sites) @@ -385,15 +395,12 @@ def test_mine(): topic = create_topic(db, sites) - mine_args = { - 'topics_id': topic['topics_id'], - 'skip_post_processing': 1, - 'cache_broken_downloads': 0, - 'import_only': 0, - 'skip_outgoing_foreign_rss_links': 0, - 'test_mode': 1} + topics_mine.mine.DOMAIN_TIMEOUT = 0 - topics_mine.mine.mine_topic(db, topic, mine_args) + topics_mine.mine.mine_topic( + db=db, + topic=topic, + skip_post_processing=True) validate_spider_results(db, topic, sites) From 99a75029f2894832ab4c5530168fd8a41e88ef82 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Tue, 29 Dec 2020 05:00:43 +0000 Subject: [PATCH 18/20] merge in Mine.pm updates and clean out perl files --- apps/topics-mine/Dockerfile | 14 +- apps/topics-mine/bin/mine_topic.pl | 69 - apps/topics-mine/bin/mine_topic.py | 36 + apps/topics-mine/bin/topics_mine_worker.pl | 17 - apps/topics-mine/bin/topics_mine_worker.py | 13 + apps/topics-mine/src/cpanfile | 3 - .../src/perl/MediaWords/Config/TopicsMine.pm | 36 - .../src/perl/MediaWords/TM/FetchTopicPosts.pm | 11 - .../src/perl/MediaWords/TM/Mine.pm | 1197 ----------------- .../src/perl/MediaWords/TM/Worker.pm | 95 -- .../src/python/topics_mine/mine.py | 82 +- .../tests/data/ch/ch-posts-2016-01-01.json | 1 - .../tests/data/ch/ch-posts-2016-01-02.json | 1 - .../tests/data/ch/ch-posts-2016-01-03.json | 1 - .../tests/data/ch/ch-posts-2016-01-04.json | 1 - .../tests/data/ch/ch-posts-2016-01-05.json | 1 - .../MediaWords/TM/Mine/AddTestTopicStories.pm | 27 - .../Mine/test_die_if_max_stories_exceeded.t | 52 - .../Mine/test_import_urls_from_seed_query.t | 87 -- .../perl/MediaWords/TM/Mine/test_respider.t | 122 -- .../tests/perl/test_cd_live_stories.t | 183 --- apps/topics-mine/tests/perl/test_tm_mine.t | 557 -------- 22 files changed, 121 insertions(+), 2485 deletions(-) delete mode 100755 apps/topics-mine/bin/mine_topic.pl create mode 100755 apps/topics-mine/bin/mine_topic.py delete mode 100755 apps/topics-mine/bin/topics_mine_worker.pl create mode 100755 apps/topics-mine/bin/topics_mine_worker.py delete mode 100644 apps/topics-mine/src/cpanfile delete mode 100644 apps/topics-mine/src/perl/MediaWords/Config/TopicsMine.pm delete mode 100644 apps/topics-mine/src/perl/MediaWords/TM/FetchTopicPosts.pm delete mode 100644 apps/topics-mine/src/perl/MediaWords/TM/Mine.pm delete mode 100644 apps/topics-mine/src/perl/MediaWords/TM/Worker.pm delete mode 100644 apps/topics-mine/tests/data/ch/ch-posts-2016-01-01.json delete mode 100644 apps/topics-mine/tests/data/ch/ch-posts-2016-01-02.json delete mode 100644 apps/topics-mine/tests/data/ch/ch-posts-2016-01-03.json delete mode 100644 apps/topics-mine/tests/data/ch/ch-posts-2016-01-04.json delete mode 100644 apps/topics-mine/tests/data/ch/ch-posts-2016-01-05.json delete mode 100644 apps/topics-mine/tests/perl/MediaWords/TM/Mine/AddTestTopicStories.pm delete mode 100755 apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_die_if_max_stories_exceeded.t delete mode 100644 apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_import_urls_from_seed_query.t delete mode 100755 apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_respider.t delete mode 100644 apps/topics-mine/tests/perl/test_cd_live_stories.t delete mode 100644 apps/topics-mine/tests/perl/test_tm_mine.t diff --git a/apps/topics-mine/Dockerfile b/apps/topics-mine/Dockerfile index b76aee1295..5e4eca104a 100644 --- a/apps/topics-mine/Dockerfile +++ b/apps/topics-mine/Dockerfile @@ -21,23 +21,13 @@ RUN \ rm -rf /root/.cache/ && \ true -# Install Perl dependencies -COPY src/cpanfile /var/tmp/ -RUN \ - cd /var/tmp/ && \ - cpm install --global --resolver 02packages --no-prebuilt --mirror "$MC_PERL_CPAN_MIRROR" && \ - rm cpanfile && \ - rm -rf /root/.perl-cpm/ && \ - true - # Copy sources COPY src/ /opt/mediacloud/src/topics-mine/ -ENV PERL5LIB="/opt/mediacloud/src/topics-mine/perl:${PERL5LIB}" \ - PYTHONPATH="/opt/mediacloud/src/topics-mine/python:${PYTHONPATH}" +ENV PYTHONPATH="/opt/mediacloud/src/topics-mine/python:${PYTHONPATH}" # Copy worker script COPY bin /opt/mediacloud/bin USER mediacloud -CMD ["topics_mine_worker.pl"] +CMD ["topics_mine_worker.py"] diff --git a/apps/topics-mine/bin/mine_topic.pl b/apps/topics-mine/bin/mine_topic.pl deleted file mode 100755 index 14c275fe35..0000000000 --- a/apps/topics-mine/bin/mine_topic.pl +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; - -use Modern::Perl "2015"; -use MediaWords::CommonLibs; - -use Getopt::Long; - -use MediaWords::DB; -use MediaWords::TM::CLI; -use MediaWords::TM::Mine; - -sub main -{ - my ( $topic_opt, $import_only, $skip_post_processing, $snapshots_id, $resume_snapshot ); - - binmode( STDOUT, 'utf8' ); - binmode( STDERR, 'utf8' ); - - $| = 1; - - Getopt::Long::GetOptions( - "topic=s" => \$topic_opt, - "import_only!" => \$import_only, - "resume_snapshot!" => \$resume_snapshot, - "skip_post_processing!" => \$skip_post_processing, - "snapshots_id=i" => \$snapshots_id - ) || return; - - my $args_list = [ qw(import_only skip_post_processing snapshots_id resume_snapshot) ]; - my $optional_args = join( ' ', map { "[ --$_ ]" } @{ $args_list } ); - die( "usage: $0 --topic < id > $optional_args" ) unless ( $topic_opt ); - - my $db = MediaWords::DB::connect_to_db(); - my $topics = MediaWords::TM::CLI::require_topics_by_opt( $db, $topic_opt ); - unless ( $topics ) - { - die "Unable to find topics for option '$topic_opt'"; - } - - for my $topic ( @{ $topics } ) - { - my $topics_id = $topic->{ topics_id }; - INFO "Processing topic $topics_id..."; - - if ( $resume_snapshot ) - { - ( $snapshots_id ) = $db->query( <flat(); -select * from snapshots where topics_id = ? order by snapshots_id desc limit 1 -SQL - die( "no snapshot found for topic $topic->{ topics_id }" ) unless ( $snapshots_id ); - } - - my $args = { - topics_id => $topics_id, - import_only => $import_only, - skip_post_processing => $skip_post_processing, - snapshots_id => $snapshots_id, - }; - - MediaWords::TM::Mine::mine_topic( $db, $topic, $args ); - - INFO "Done processing topic $topics_id."; - } -} - -main(); diff --git a/apps/topics-mine/bin/mine_topic.py b/apps/topics-mine/bin/mine_topic.py new file mode 100755 index 0000000000..de0084c1ed --- /dev/null +++ b/apps/topics-mine/bin/mine_topic.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python3 + +import argparse + +from mediawords.db import connect_to_db +from topics_mine.mine import mine_topic + +def main(): + """run mine_topic with cli args.""" + parser = argparse.ArgumentParser(description="Run topics_mine job.") + parser.add_argument("-t", "--topics_id", type=int, required=True) + parser.add_argument("-s", "--snapshots_id", type=int, required=False) + parser.add_argument("-r", "--resume_snapshot", type=bool, required=False) + parser.add_argument("-i", "--import_only", type=bool, required=False) + parser.add_argument("-p", "--skip_post_processing", type=bool, required=False) + args = parser.parse_args() + + snapshots_id = args.snapshots_id + if args.resume_snapshot: + snapshots_id = db.query( + "select snapshots_id from snapshots where topics_id = %(a)s order by snapshots_id desc limit 1", + {'a': args.topics_id}).flat()[0] + + + db = connect_to_db() + + topic = db.require_by_id('topics', args.topics_id) + + mine_topic( + db=db, + topic=topic, + snapshots_id=snapshots_id, + import_only=args.import_only, + skip_post_processing=args.skip_post_processing) + +main() diff --git a/apps/topics-mine/bin/topics_mine_worker.pl b/apps/topics-mine/bin/topics_mine_worker.pl deleted file mode 100755 index 7f4636ebe5..0000000000 --- a/apps/topics-mine/bin/topics_mine_worker.pl +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; - -use Modern::Perl "2015"; -use MediaWords::CommonLibs; - -use MediaWords::TM::Worker; - - -sub main() -{ - MediaWords::TM::Worker::start_topics_mine_worker( 'MediaWords::Job::TM::MineTopic' ); -} - -main(); diff --git a/apps/topics-mine/bin/topics_mine_worker.py b/apps/topics-mine/bin/topics_mine_worker.py new file mode 100755 index 0000000000..019af5db36 --- /dev/null +++ b/apps/topics-mine/bin/topics_mine_worker.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 + +from mediawords.job import JobBroker +from mediawords.util.log import create_logger +from topics_mine.mine import run_worker_job + +log = create_logger(__name__) + +QUEUE_NAME = 'MediaWords::Job::TM::Mine' + +if __name__ == '__main__': + app = JobBroker(queue_name=QUEUE_NAME) + app.start_worker(handler=run_worker_job) diff --git a/apps/topics-mine/src/cpanfile b/apps/topics-mine/src/cpanfile deleted file mode 100644 index dca604e1ea..0000000000 --- a/apps/topics-mine/src/cpanfile +++ /dev/null @@ -1,3 +0,0 @@ -requires 'Date::Format'; -requires 'Text::Lorem::More'; -requires 'Time::Piece'; diff --git a/apps/topics-mine/src/perl/MediaWords/Config/TopicsMine.pm b/apps/topics-mine/src/perl/MediaWords/Config/TopicsMine.pm deleted file mode 100644 index 2f521c07f8..0000000000 --- a/apps/topics-mine/src/perl/MediaWords/Config/TopicsMine.pm +++ /dev/null @@ -1,36 +0,0 @@ -package MediaWords::Util::Config::TopicsMine; - -use strict; -use warnings; - -use Modern::Perl "2015"; - -# Deliberately don't include MediaWords::CommonLibs as it includes this package itself - -{ - package MediaWords::Util::Config::TopicsMine::PythonProxy; - - use strict; - use warnings; - - use Modern::Perl "2015"; - use MediaWords::CommonLibs; - - use MediaWords::Util::Python; - - MediaWords::Util::Python::import_python_module( __PACKAGE__, 'topics_mine.config' ); - - 1; -} - -sub _python_config() -{ - return MediaWords::Util::Config::TopicsMine::PythonProxy::TopicsMineConfig->new(); -} - -sub crimson_hexagon_api_key() -{ - return _python_config()->crimson_hexagon_api_key(); -} - -1; diff --git a/apps/topics-mine/src/perl/MediaWords/TM/FetchTopicPosts.pm b/apps/topics-mine/src/perl/MediaWords/TM/FetchTopicPosts.pm deleted file mode 100644 index 7bb4f454d7..0000000000 --- a/apps/topics-mine/src/perl/MediaWords/TM/FetchTopicPosts.pm +++ /dev/null @@ -1,11 +0,0 @@ -package MediaWords::TM::FetchTopicPosts; - -use strict; -use warnings; - -use Modern::Perl "2015"; -use MediaWords::CommonLibs; - -import_python_module( __PACKAGE__, 'topics_mine.fetch_topic_posts' ); - -1; diff --git a/apps/topics-mine/src/perl/MediaWords/TM/Mine.pm b/apps/topics-mine/src/perl/MediaWords/TM/Mine.pm deleted file mode 100644 index c546653b1a..0000000000 --- a/apps/topics-mine/src/perl/MediaWords/TM/Mine.pm +++ /dev/null @@ -1,1197 +0,0 @@ -package MediaWords::TM::Mine; - -=head1 NAME - -MediaWords::TM::Mine - topic spider implementation - -=head1 SYNOPSIS - - MediaWords::TM::Mine::mine_topic( $db, $options ); - -=head1 DESCRIPTION - -The topic mining process is described in doc/topic_mining.markdown. - -=cut - -use strict; -use warnings; - -use Modern::Perl "2015"; -use MediaWords::CommonLibs; - -use Getopt::Long; -use List::MoreUtils; -use List::Util; -use Readonly; -use Time::Piece; - -use MediaWords::TM::Alert; -use MediaWords::TM::FetchTopicPosts; -use MediaWords::TM::Stories; -use MediaWords::DBI::Stories; -use MediaWords::DBI::Stories::GuessDate; -use MediaWords::Job::Broker; -use MediaWords::Job::StatefulBroker; -use MediaWords::Solr; -use MediaWords::Solr::Query; -use MediaWords::Util::SQL; - -# total time to wait for fetching of social media metrics -Readonly my $MAX_SOCIAL_MEDIA_FETCH_TIME => ( 60 * 60 * 24 ); - -# add new links in chunks of this size -Readonly my $ADD_NEW_LINKS_CHUNK_SIZE => 10_000; - -# extract story links in chunks of this size -Readonly my $EXTRACT_STORY_LINKS_CHUNK_SIZE => 1000; - -# query this many topic_links at a time to spider -Readonly my $SPIDER_LINKS_CHUNK_SIZE => 100_000; - -# die if the error rate for link fetch or link extract jobs is greater than this -Readonly my $MAX_JOB_ERROR_RATE => 0.02; - -# timeout when polling for jobs to finish -Readonly my $JOB_POLL_TIMEOUT => 300; - -# number of seconds to wait when polling for jobs to finish -Readonly my $JOB_POLL_WAIT => 5; - -# if more than this many seed urls are imported, dedup stories before as well as after spidering -Readonly my $MIN_SEED_IMPORT_FOR_PREDUP_STORIES => 50_000; - -# how many link extraction jobs per 1000 can we ignore if they hang -Readonly my $MAX_LINK_EXTRACTION_TIMEOUT => 10; - -# how long to wait to timeout link extraction -Readonly my $LINK_EXTRACTION_POLL_TIMEOUT => 60; - -# if mine_topic is run with the test_mode option, set this true and do not try to queue extractions -my $_test_mode; - -# update topics.state in the database -sub update_topic_state($$$) -{ - my ( $db, $state_updater, $message ) = @_; - - INFO( "update topic state: $message" ); - - unless ( $state_updater ) { - # Shouldn't happen but let's just test it here - ERROR "State updater is unset."; - return; - } - - eval { - $state_updater->update_job_state_message( $db, $message ); - }; - if ( $@ ) - { - die "Error updating job state: $@"; - } -} - -# return true if the publish date of the story is within 7 days of the topic date range or if the -# story is undateable -sub story_within_topic_date_range -{ - my ( $db, $topic, $story ) = @_; - - return 1 unless ( $story->{ publish_date } ); - - my $story_date = substr( $story->{ publish_date }, 0, 10 ); - - my $start_date = $topic->{ start_date }; - $start_date = MediaWords::Util::SQL::increment_day( $start_date, -7 ); - $start_date = substr( $start_date, 0, 10 ); - - my $end_date = $topic->{ end_date }; - $end_date = MediaWords::Util::SQL::increment_day( $end_date, 7 ); - $end_date = substr( $end_date, 0, 10 ); - - return 1 if ( ( $story_date ge $start_date ) && ( $story_date le $end_date ) ); - - return MediaWords::DBI::Stories::GuessDate::is_undateable( $db, $story ); -} - -# submit jobs to extract links from the given stories and then poll to wait for the stories to be processed within -# the jobs pool -sub generate_topic_links -{ - my ( $db, $topic, $stories ) = @_; - - INFO "generate topic links: " . scalar( @{ $stories } ); - - my $topic_links = []; - - if ( $topic->{ platform } ne 'web' ) - { - INFO( "skip link generation for non web topic" ); - return; - } - - my $stories_ids_table = $db->get_temporary_ids_table( [ map { $_->{ stories_id } } @{ $stories } ] ); - - $db->query( <{ topics_id } ); -update topic_stories set link_mined = 'f' - where - stories_id in ( select id from $stories_ids_table ) and - topics_id = ? and - link_mined = 't' -SQL - - my $queued_stories_ids = []; - for my $story ( @{ $stories } ) - { - next unless ( story_within_topic_date_range( $db, $topic, $story ) ); - - push( @{ $queued_stories_ids }, $story->{ stories_id } ); - - MediaWords::Job::Broker->new( 'MediaWords::Job::TM::ExtractStoryLinks' )->add_to_queue( - { stories_id => $story->{ stories_id }, topics_id => $topic->{ topics_id } }, # - ); - - TRACE( "queued link extraction for story $story->{ title } $story->{ url }." ); - } - - INFO( "waiting for " . scalar( @{ $queued_stories_ids } ) . " link extraction jobs to finish" ); - - my $queued_ids_table = $db->get_temporary_ids_table( $queued_stories_ids ); - - # poll every $JOB_POLL_WAIT seconds waiting for the jobs to complete. die if the number of stories left to process - # has not shrunk for $EXTRACTION_POLL_TIMEOUT seconds. - my $prev_num_queued_stories = scalar( @{ $stories } ); - my $last_change_time = time(); - while ( 1 ) - { - my $queued_stories = $db->query( <{ topics_id } )->flat(); -select stories_id from topic_stories - where stories_id in ( select id from $queued_ids_table ) and topics_id = ? and link_mined = 'f' -SQL - - my $num_queued_stories = scalar( @{ $queued_stories } ); - - last unless ( $num_queued_stories ); - - $last_change_time = time() if ( $num_queued_stories != $prev_num_queued_stories ); - if ( ( time() - $last_change_time ) > $LINK_EXTRACTION_POLL_TIMEOUT ) - { - my $ids_list = join( ', ', @{ $queued_stories } ); - if ( $num_queued_stories > $MAX_LINK_EXTRACTION_TIMEOUT ) - { - LOGDIE( "Timed out waiting for story link extraction ($ids_list)." ); - } - - $db->query( <{ topics_id } ); -update topic_stories set link_mine_error = 'time out' where stories_id in ( $ids_list ) and topics_id = ? -SQL - last; - } - - INFO( "$num_queued_stories stories left in link extraction pool...." ); - - $prev_num_queued_stories = $num_queued_stories; - sleep( $JOB_POLL_WAIT ); - } - - $db->query( <{ topics_id } ); -update topic_stories set link_mined = 't' - where stories_id in ( select id from $stories_ids_table ) and topics_id = ? and link_mined = 'f' -SQL - - $db->query( "discard temp" ); -} - -# die() with an appropriate error if topic_stories > topics.max_stories; because this check is expensive and we don't -# care if the topic goes over by a few thousand stories, we only actually run the check randmly 1/1000 of the time -sub die_if_max_stories_exceeded($$) -{ - my ( $db, $topic ) = @_; - - my ( $num_topic_stories ) = $db->query( <{ topics_id } )->flat; -select count(*) from topic_stories where topics_id = ? -SQL - - if ( $num_topic_stories > $topic->{ max_stories } ) - { - LOGDIE( "topic has $num_topic_stories stories, which exceeds topic max stories of $topic->{ max_stories }" ); - } -} - -# add the topic_fetch_url to the fetch_link job queue. try repeatedly on failure. -sub queue_topic_fetch_url($;$) -{ - my ( $tfu, $domain_timeout ) = @_; - - $domain_timeout //= $_test_mode ? 0 : undef; - - MediaWords::Job::Broker->new( 'MediaWords::Job::TM::FetchLink' )->add_to_queue( - { - topic_fetch_urls_id => $tfu->{ topic_fetch_urls_id }, - domain_timeout => $domain_timeout - } - ); -} - -# create topic_fetch_urls rows correpsonding to the links and queue a FetchLink job for each. return the tfu rows. -sub create_and_queue_topic_fetch_urls($$$) -{ - my ( $db, $topic, $fetch_links ) = @_; - - my $tfus = []; - for my $link ( @{ $fetch_links } ) - { - if ( $link->{ topic_links_id } && !$db->find_by_id( 'topic_links', $link->{ topic_links_id } ) ) - { - next; - } - my $tfu = $db->create( - 'topic_fetch_urls', - { - topics_id => $topic->{ topics_id }, - url => $link->{ url }, - state => 'pending', - assume_match => MediaWords::Util::Python::normalize_boolean_for_db( $link->{ assume_match } ), - topic_links_id => $link->{ topic_links_id }, - } - ); - push( @{ $tfus }, $tfu ); - - queue_topic_fetch_url( $tfu ); - } - - return $tfus; -} - -sub _fetch_twitter_urls($$$) -{ - my ( $db, $topic, $tfu_ids_list ) = @_; - - my $twitter_tfu_ids = $db->query( <flat(); -select topic_fetch_urls_id - from topic_fetch_urls tfu - where - tfu.state = 'tweet pending' and - tfu.topic_fetch_urls_id in ( $tfu_ids_list ) -SQL - - return unless ( scalar( @{ $twitter_tfu_ids } ) > 0 ); - - my $tfu_ids_table = $db->get_temporary_ids_table( $twitter_tfu_ids ); - - MediaWords::Job::Broker->new( 'MediaWords::Job::TM::FetchTwitterUrls' )->add_to_queue( - { topic_fetch_urls_ids => $twitter_tfu_ids } - ); - - INFO( "waiting for fetch twitter urls job for " . scalar( @{ $twitter_tfu_ids } ) . " urls" ); - - # poll every $sleep_time seconds waiting for the jobs to complete. die if the number of stories left to process - # has not shrunk for $large_timeout seconds. warn but continue if the number of stories left to process - # is only 5% of the total and short_timeout has passed (this is to make the topic not hang entirely because - # of one link extractor job error). - my $prev_num_queued_urls = scalar( @{ $twitter_tfu_ids } ); - my $last_change_time = time(); - while ( 1 ) - { - my $queued_tfus = $db->query( <hashes(); -select tfu.* - from topic_fetch_urls tfu - join $tfu_ids_table ids on ( tfu.topic_fetch_urls_id = ids.id ) - where - state in ('tweet pending') -SQL - - my $num_queued_urls = scalar( @{ $queued_tfus } ); - - last if ( $num_queued_urls == 0 ); - - $last_change_time = time() if ( $num_queued_urls != $prev_num_queued_urls ); - if ( ( time() - $last_change_time ) > $JOB_POLL_TIMEOUT ) - { - LOGDIE( "Timed out waiting for twitter fetching.\n" . Dumper( $queued_tfus ) ); - } - - INFO( "$num_queued_urls twitter urls left to fetch ..." ); - - $prev_num_queued_urls = $num_queued_urls; - sleep( $JOB_POLL_WAIT ); - } -} - -# list a sample of the pending urls for fetching -sub show_pending_urls($) -{ - my ( $pending_urls ) = @_; - - my $num_pending_urls = scalar( @{ $pending_urls } ); - - my $num_printed_urls = List::Util::min( $num_pending_urls, 3 ); - - my @shuffled_ids = List::Util::shuffle( 0 .. ( $num_pending_urls - 1 ) ); - - for my $id ( @shuffled_ids[ 0 .. ( $num_printed_urls - 1 ) ] ) - { - my $url = $pending_urls->[ $id ]; - INFO( "pending url: $url->{ url } [$url->{ state }: $url->{ fetch_date }]" ); - } -} - -# fetch the given links by creating topic_fetch_urls rows and sending them to the FetchLink queue -# for processing. wait for the queue to complete and returnt the resulting topic_fetch_urls. -sub fetch_links -{ - my ( $db, $topic, $fetch_links ) = @_; - - INFO( "fetch_links: queue links" ); - my $tfus = create_and_queue_topic_fetch_urls( $db, $topic, $fetch_links ); - my $num_queued_links = scalar( @{ $fetch_links } ); - - INFO( "waiting for fetch link queue: $num_queued_links queued" ); - - my $tfu_ids_list = join( ',', map { int( $_->{ topic_fetch_urls_id } ) } @{ $tfus } ); - - my $requeues = 0; - my $max_requeues = 1; - my $max_requeue_jobs = 100; - my $requeue_timeout = 30; - my $instant_requeued = 0; - - # once the pool is this small, just requeue everything with a 0 per site throttle - my $instant_queue_size = 25; - - # how many times to requeues everything if there is no change for $JOB_POLL_TIMEOUT seconds - my $full_requeues = 0; - my $max_full_requeues = 1; - - my $last_pending_change = time(); - my $last_num_pending_urls = 0; - while ( 1 ) - { - my $pending_urls = $db->query( <hashes(); -select *, coalesce( fetch_date::text, 'null' ) fetch_date - from topic_fetch_urls - where - topic_fetch_urls_id in ( $tfu_ids_list ) and - state in ( 'pending', 'requeued' ) -SQL - - my $pending_url_ids = [ map { $_->{ topic_fetch_urls_id } } @{ $pending_urls } ]; - - my $num_pending_urls = scalar( @{ $pending_url_ids } ); - - INFO( "waiting for fetch link queue: $num_pending_urls links remaining ..." ); - - show_pending_urls( $pending_urls ); - - last if ( $num_pending_urls < 1 ); - - # if we only have a handful of job left, requeue them all once with a 0 domain throttle - if ( !$instant_requeued && ( $num_pending_urls <= $instant_queue_size ) ) - { - $instant_requeued = 1; - map { queue_topic_fetch_url( $db->require_by_id( 'topic_fetch_urls', $_ ), 0 ) } @{ $pending_url_ids }; - sleep( $JOB_POLL_WAIT ); - next; - } - - my $time_since_change = time() - $last_pending_change; - - # for some reason, the fetch_link queue is occasionally losing a small number of jobs. - if ( ( $time_since_change > $requeue_timeout ) - && ( $requeues < $max_requeues ) - && ( $num_pending_urls < $max_requeue_jobs ) ) - { - INFO( "requeueing fetch_link $num_pending_urls jobs ... [requeue $requeues]" ); - - # requeue with a domain_timeout of 0 so that requeued urls can ignore throttling - map { queue_topic_fetch_url( $db->require_by_id( 'topic_fetch_urls', $_ ), 0 ) } @{ $pending_url_ids }; - ++$requeues; - $last_pending_change = time(); - } - - if ( $time_since_change > $JOB_POLL_TIMEOUT ) - { - if ( $full_requeues < $max_full_requeues ) - { - map { queue_topic_fetch_url( $db->require_by_id( 'topic_fetch_urls', $_ ) ) } @{ $pending_url_ids }; - ++$full_requeues; - $last_pending_change = time(); - } - else - { - for my $id ( @{ $pending_url_ids } ) - { - $db->update_by_id( 'topic_fetch_urls', $id, { state => 'error', message => 'timed out' } ); - } - INFO( "timed out " . scalar( @{ $pending_url_ids } ) . " urls" ); - } - } - - $last_pending_change = time() if ( $num_pending_urls < $last_num_pending_urls ); - - $last_num_pending_urls = $num_pending_urls; - - sleep( $JOB_POLL_WAIT ); - } - - _fetch_twitter_urls( $db, $topic, $tfu_ids_list ); - - INFO( "fetch_links: update topic seed urls" ); - $db->query( <query( <hashes(); -select * from topic_fetch_urls where topic_fetch_urls_id in ( $tfu_ids_list ) -SQL - - INFO( "completed fetch link queue" ); - - return $completed_tfus; -} - -# download any unmatched link in new_links, add it as a story, extract it, add any links to the topic_links list. -# each hash within new_links can either be a topic_links hash or simply a hash with a { url } field. if -# the link is a topic_links hash, the topic_link will be updated in the database to point ref_stories_id -# to the new link story. For each link, set the { story } field to the story found or created for the link. -sub add_new_links_chunk($$$$) -{ - my ( $db, $topic, $iteration, $new_links ) = @_; - - die_if_max_stories_exceeded( $db, $topic ); - - INFO( "add_new_links_chunk: fetch_links" ); - my $topic_fetch_urls = fetch_links( $db, $topic, $new_links ); - - INFO( "add_new_links_chunk: mark topic links spidered" ); - my $link_ids = [ grep { $_ } map { $_->{ topic_links_id } } @{ $new_links } ]; - $db->query( < $topic->{ topics_id }, - iteration => $iteration, - links_processed => $num_links, - elapsed_time => $elapsed_time - }; - - $db->create( 'topic_spider_metrics', $topic_spider_metric ); -} - -# call add_new_links in chunks of $ADD_NEW_LINKS_CHUNK_SIZE so we don't lose too much work when we restart the spider -sub add_new_links($$$$;$) -{ - my ( $db, $topic, $iteration, $new_links, $state_updater ) = @_; - - INFO( "add new links" ); - - return unless ( @{ $new_links } ); - - # randomly shuffle the links because it is better for downloading (which has per medium throttling) and extraction - # (which has per medium locking) to distribute urls from the same media source randomly among the list of links. the - # link mining and solr seeding routines that feed most links to this function tend to naturally group links - # from the same media source together. - my $shuffled_links = [ List::Util::shuffle( @{ $new_links } ) ]; - - my $spider_progress = get_spider_progress_description( $db, $topic, $iteration, scalar( @{ $shuffled_links } ) ); - - my $num_links = scalar( @{ $shuffled_links } ); - for ( my $i = 0 ; $i < $num_links ; $i += $ADD_NEW_LINKS_CHUNK_SIZE ) - { - my $start_time = time; - - update_topic_state( $db, $state_updater, "$spider_progress; iteration links: $i / $num_links" ); - - my $end = List::Util::min( $i + $ADD_NEW_LINKS_CHUNK_SIZE - 1, $#{ $shuffled_links } ); - add_new_links_chunk( $db, $topic, $iteration, [ @{ $shuffled_links }[ $i .. $end ] ] ); - - my $elapsed_time = time - $start_time; - save_metrics( $db, $topic, $iteration, $end - $i, $elapsed_time ); - } - - mine_topic_stories( $db, $topic ); -} - -# find any links for the topic of this iteration or less that have not already been spidered and call -# add_new_links on them. -sub spider_new_links($$$;$) -{ - my ( $db, $topic, $iteration, $state_updater ) = @_; - - for ( my $i = 0 ; ; $i++ ) - { - INFO( "spider new links chunk: $i" ); - - my $new_links = $db->query( <{ topics_id }, $SPIDER_LINKS_CHUNK_SIZE )->hashes; -select tl.* from topic_links tl, topic_stories ts - where - tl.link_spidered = 'f' and - tl.stories_id = ts.stories_id and - ( ts.iteration <= \$1 or ts.iteration = 1000 ) and - ts.topics_id = \$2 and - tl.topics_id = \$2 - - limit \$3 -END - - last unless ( @{ $new_links } ); - - add_new_links( $db, $topic, $iteration, $new_links, $state_updater ); - } -} - -# get short text description of spidering progress -sub get_spider_progress_description($$$$) -{ - my ( $db, $topic, $iteration, $total_links ) = @_; - - INFO( "get spider progress description" ); - - my $cid = $topic->{ topics_id }; - - my ( $total_stories ) = $db->query( <flat; -select count(*) from topic_stories where topics_id = ? -SQL - - my ( $stories_last_iteration ) = $db->query( <flat; -select count(*) from topic_stories where topics_id = ? and iteration = ? - 1 -SQL - - my ( $queued_links ) = $db->query( <flat; -select count(*) from topic_links where topics_id = ? and link_spidered = 'f' -SQL - - return "spidering iteration: $iteration; stories last iteration / total: " . - "$stories_last_iteration / $total_stories; links queued: $queued_links; iteration links: $total_links"; -} - -# run the spider over any new links, for $num_iterations iterations -sub run_spider($$;$) -{ - my ( $db, $topic, $state_updater ) = @_; - - INFO( "run spider" ); - - # before we run the spider over links, we need to make sure links have been generated for all existing stories - mine_topic_stories( $db, $topic ); - - map { spider_new_links( $db, $topic, $topic->{ max_iterations }, $state_updater ) } ( 1 .. $topic->{ max_iterations } ); -} - -# mine for links any stories in topic_stories for this topic that have not already been mined -sub mine_topic_stories -{ - my ( $db, $topic ) = @_; - - INFO( "mine topic stories" ); - - # skip for non-web topic, because the below query grows very large without ever mining links - if ( $topic->{ platform } ne 'web' ) - { - INFO( "skip link generation for non-web topic" ); - return; - } - - # chunk the story extractions so that one big topic does not take over the entire queue - my $i = 0; - while ( 1 ) - { - $i += $EXTRACT_STORY_LINKS_CHUNK_SIZE; - INFO( "mine topic stories: chunked $i ..." ); - my $stories = $db->query( <{ topics_id }, $EXTRACT_STORY_LINKS_CHUNK_SIZE )->hashes; - select s.*, ts.link_mined, ts.redirect_url - from snap.live_stories s - join topic_stories ts on ( s.stories_id = ts.stories_id and s.topics_id = ts.topics_id ) - where - ts.link_mined = false and - ts.topics_id = ? - limit ? -SQL - - my $num_stories = scalar( @{ $stories } ); - - last if ( $num_stories == 0 ); - - generate_topic_links( $db, $topic, $stories ); - - last if ( $num_stories < $EXTRACT_STORY_LINKS_CHUNK_SIZE ); - } -} - -# import all topic_seed_urls that have not already been processed; -# return 1 if new stories were added to the topic and 0 if not -sub import_seed_urls($$;$) -{ - my ( $db, $topic, $state_updater ) = @_; - - INFO( "import seed urls" ); - - my $topics_id = $topic->{ topics_id }; - - # take care of any seed urls with urls that we have already processed for this topic - $db->query( <query( <hashes; -select * from topic_seed_urls where topics_id = ? and processed = 'f' order by random() -END - - return 0 unless ( @{ $seed_urls } ); - - # process these in chunks in case we have to start over so that we don't have to redo the whole batch - my $num_urls = scalar( @{ $seed_urls } ); - for ( my $i = 0 ; $i < $num_urls ; $i += $ADD_NEW_LINKS_CHUNK_SIZE ) - { - my $start_time = time; - - update_topic_state( $db, $state_updater, "importing seed urls: $i / $num_urls" ); - - my $end = List::Util::min( $i + $ADD_NEW_LINKS_CHUNK_SIZE - 1, $#{ $seed_urls } ); - - # verify that the seed urls are still there and not processed, in case we have mucked with them while spidering - my $urls_ids_list = join( ',', map { int( $_->{ topic_seed_urls_id } ) } @{ $seed_urls }[ $i .. $end] ); - my $seed_urls_chunk = $db->query( <hashes(); -select * from topic_seed_urls where topic_seed_urls_id in ( $urls_ids_list ) and not processed -SQL - - add_new_links_chunk( $db, $topic, 0, $seed_urls_chunk ); - - my $ids_list = join( ',', map { int( $_->{ topic_seed_urls_id } ) } @{ $seed_urls_chunk } ); - - # update topic_seed_urls that were actually fetched - $db->query( <query( <query( - <{ topics_id } - ); - - return scalar( @{ $seed_urls } ); -} - - -# insert a list of topic seed urls -sub insert_topic_seed_urls -{ - my ( $db, $topic_seed_urls ) = @_; - - INFO "inserting " . scalar( @{ $topic_seed_urls } ) . " topic seed urls ..."; - - for my $tsu ( @{ $topic_seed_urls } ) - { - my $insert_tsu; - map { $insert_tsu->{ $_ } = $tsu->{ $_ } } qw/stories_id url topics_id assume_match/; - $db->create( 'topic_seed_urls', $insert_tsu ); - } -} - -# return true if the given month offset is within the dates that should be respidered. always return true -# if there are not respider dates -sub _import_month_within_respider_date($$) -{ - my ( $topic, $month_offset ) = @_; - - my $start_date = $topic->{ respider_start_date } || '';; - my $end_date = $topic->{ respider_end_date } || ''; - - return 1 unless ( $topic->{ respider_stories } && ( $start_date || $end_date ) ); - - my $month_date = Time::Piece->strptime( $topic->{ start_date }, "%Y-%m-%d" )->add_months( $month_offset ); - - if ( $end_date ) - { - my $end_date = Time::Piece->strptime( $end_date, "%Y-%m-%d" )->add_months( -1 ); - return 1 if ( $month_date > $end_date ); - } - - if ( $start_date ) - { - my $start_date = Time::Piece->strptime( $start_date, "%Y-%m-%d" ); - return 1 if ( $month_date < $start_date ); - } - - return 0; -} - -# Call search_solr_for_stories_ids() above and then query PostgreSQL for the stories returned by Solr. -# Include stories.* and media_name as the returned fields. -sub __search_for_stories($$) -{ - my ( $db, $params ) = @_; - - my $stories_ids = MediaWords::Solr::search_solr_for_stories_ids( $db, $params ); - - my $stories = [ map { { stories_id => $_ } } @{ $stories_ids } ]; - - $stories = MediaWords::DBI::Stories::attach_story_meta_data_to_stories( $db, $stories ); - - $stories = [ grep { $_->{ url } } @{ $stories } ]; - - return $stories; -} - -# import a single month of the solr seed query. we do this to avoid giant queries that timeout in solr. -sub import_solr_seed_query_month($$$) -{ - my ( $db, $topic, $month_offset ) = @_; - - return 0 unless ( $topic->{ platform } eq 'web' ); - - my $solr_query = MediaWords::Solr::Query::get_full_solr_query_for_topic( $db, $topic, undef, undef, $month_offset ); - - # this should return undef once the month_offset gets too big - return undef unless ( $solr_query ); - - return 1 unless ( _import_month_within_respider_date( $topic, $month_offset ) ); - - my $max_stories = $topic->{ max_stories }; - - # if solr maxes out on returned stories, it returns a few documents less than the rows= parameter, so we - # assume that we hit the solr max if we are within 5% of the ma stories - my $max_returned_stories = $max_stories * 0.95; - - INFO "import solr seed query month offset $month_offset"; - $solr_query->{ rows } = $max_stories; - - my $stories = __search_for_stories( $db, $solr_query ); - - if ( scalar( @{ $stories } ) > $max_returned_stories ) - { - die( "solr_seed_query returned more than $max_returned_stories stories" ); - } - - INFO "adding " . scalar( @{ $stories } ) . " stories to topic_seed_urls"; - - my $topic_seed_urls = []; - for my $story ( @{ $stories } ) - { - push( - @{ $topic_seed_urls }, - { - topics_id => $topic->{ topics_id }, - url => $story->{ url }, - stories_id => $story->{ stories_id }, - assume_match => 'f' - } - ); - } - - insert_topic_seed_urls( $db, $topic_seed_urls ); - - return 1; -} - -# import stories intro topic_seed_urls from solr by running -# topic->{ solr_seed_query } against solr. if the solr query has -# already been imported, do nothing. -sub import_solr_seed_query -{ - my ( $db, $topic ) = @_; - - INFO( "import solr seed query" ); - - return if ( $topic->{ solr_seed_query_run } ); - - my $month_offset = 0; - while ( import_solr_seed_query_month( $db, $topic, $month_offset++ ) ) { } - - $db->query( "update topics set solr_seed_query_run = 't' where topics_id = ?", $topic->{ topics_id } ); -} - -# return true if there are no stories without facebook data -sub all_facebook_data_fetched -{ - my ( $db, $topic ) = @_; - - my $null_facebook_story = $db->query( <{ topics_id } )->hash; -select 1 - from topic_stories cs - left join story_statistics ss on ( cs.stories_id = ss.stories_id ) - where - cs.topics_id = ? and - ss.facebook_api_error is null and - ( - ss.stories_id is null or - ss.facebook_share_count is null or - ss.facebook_comment_count is null or - ss.facebook_api_collect_date is null - ) - limit 1 -SQL - - return !$null_facebook_story; -} - -# add all topic stories without facebook data to the queue -sub __add_topic_stories_to_facebook_queue($$) -{ - my ( $db, $topic ) = @_; - - my $topics_id = $topic->{ topics_id }; - - my $stories = $db->query( <hashes; -SELECT ss.*, cs.stories_id - FROM topic_stories cs - left join story_statistics ss on ( cs.stories_id = ss.stories_id ) - WHERE cs.topics_id = ? - ORDER BY cs.stories_id -END - - unless ( scalar @{ $stories } ) - { - DEBUG( "No stories found for topic '$topic->{ name }'" ); - } - - for my $ss ( @{ $stories } ) - { - my $stories_id = $ss->{ stories_id }; - my $args = { stories_id => $stories_id }; - - if ( $ss->{ facebook_api_error } - or !defined( $ss->{ facebook_api_collect_date } ) - or !defined( $ss->{ facebook_share_count } ) - or !defined( $ss->{ facebook_comment_count } ) ) - { - DEBUG( "Adding job for story $stories_id" ); - MediaWords::Job::Broker->new( 'MediaWords::Job::Facebook::FetchStoryStats' )->add_to_queue( $args ); - } - } -} - -# send high priority jobs to fetch facebook data for all stories that don't yet have it -sub fetch_social_media_data ($$) -{ - my ( $db, $topic ) = @_; - - INFO( "fetch social media data" ); - - # test spider should be able to run with job broker, so we skip social media collection - return if ( $_test_mode ); - - my $cid = $topic->{ topics_id }; - - __add_topic_stories_to_facebook_queue( $db, $topic ); - - my $poll_wait = 30; - my $retries = int( $MAX_SOCIAL_MEDIA_FETCH_TIME / $poll_wait ) + 1; - - for my $i ( 1 .. $retries ) - { - return if ( all_facebook_data_fetched( $db, $topic ) ); - sleep $poll_wait; - } - - LOGCONFESS( "Timed out waiting for social media data" ); -} - -# die if the error rate for link extraction or link fetching is too high -sub check_job_error_rate($$) -{ - my ( $db, $topic ) = @_; - - INFO( "check job error rate" ); - - my $fetch_stats = $db->query( <{ topics_id } )->hashes(); -select count(*) num, ( state = 'python error' ) as error - from topic_fetch_urls - where topics_id = ? - group by ( state = 'python error' ) -SQL - - my ( $num_fetch_errors, $num_fetch_successes ) = ( 0, 0 ); - for my $s ( @{ $fetch_stats } ) - { - if ( $s->{ error } ) { $num_fetch_errors += $s->{ num } } - else { $num_fetch_successes += $s->{ num } } - } - - my $fetch_error_rate = $num_fetch_errors / ( $num_fetch_errors + $num_fetch_successes + 1 ); - - INFO( "Fetch error rate: $fetch_error_rate ($num_fetch_errors / $num_fetch_successes)" ); - - if ( $fetch_error_rate > $MAX_JOB_ERROR_RATE ) - { - die( "Fetch error rate of $fetch_error_rate is greater than max of $MAX_JOB_ERROR_RATE" ); - } - - my $link_stats = $db->query( <{ topics_id } )->hashes(); -select count(*) num, ( length( link_mine_error) > 0 ) as error - from topic_stories - where topics_id = ? - group by ( length( link_mine_error ) > 0 ) -SQL - - my ( $num_link_errors, $num_link_successes ) = ( 0, 0 ); - for my $s ( @{ $link_stats } ) - { - if ( $s->{ error } ) { $num_link_errors += $s->{ num } } - else { $num_link_successes += $s->{ num } } - } - - my $link_error_rate = $num_link_errors / ( $num_link_errors + $num_link_successes + 1 ); - - INFO( "Link error rate: $link_error_rate ($num_link_errors / $num_link_successes)" ); - - if ( $link_error_rate > $MAX_JOB_ERROR_RATE ) - { - die( "link error rate of $link_error_rate is greater than max of $MAX_JOB_ERROR_RATE" ); - } -} - -# import urls from seed query -sub import_urls_from_seed_queries($$;$) -{ - my ( $db, $topic, $state_updater ) = @_; - - my $topic_seed_queries = $db->query( - "select * from topic_seed_queries where topics_id = ?", $topic->{ topics_id } )->hashes(); - - my $num_queries = scalar( @{ $topic_seed_queries } ); - - if ( ( $num_queries != 1 ) && ( $topic->{ mode } eq 'url_sharing' )) - { - die( "exactly one topic seed query required per url_sharing topic" ); - } - - if ( $topic->{ mode } eq 'web' ) - { - DEBUG( "import seed urls from solr" ); - update_topic_state( $db, $state_updater, "importing solr seed query" ); - import_solr_seed_query( $db, $topic ); - } - - for my $tsq ( @{ $topic_seed_queries } ) - { - my $tsq_dump = $tsq->{ topic_seed_queries_id }; - my $fetcher = MediaWords::TM::FetchTopicPosts::get_post_fetcher( $tsq ); - die( "unable to import seed urls for platform/source of seed query: $tsq_dump" ) unless ( $fetcher ); - - DEBUG( "import seed urls from fetch_topic_posts:\n$tsq_dump" ); - MediaWords::TM::FetchTopicPosts::fetch_topic_posts( $db, $tsq ); - } - - $db->query( <{ topics_id } ); -insert into topic_seed_urls ( url, topics_id, assume_match, source, topic_seed_queries_id, topic_post_urls_id ) - select distinct - tpu.url, - tsq.topics_id, - false, - 'topic_seed_queries', - tsq.topic_seed_queries_id, - tpu.topic_post_urls_id - from - topic_post_urls tpu - join topic_posts tp using ( topic_posts_id ) - join topic_post_days tpd using ( topic_post_days_id ) - join topic_seed_queries tsq using ( topic_seed_queries_id ) - where - tsq.topics_id = ? - on conflict ( topic_post_urls_id ) do nothing -SQL -} - -# if the query or dates have changed, set topic_stories.link_mined to false for the impacted stories so that -# they will be respidered -sub set_stories_respidering($$$) -{ - my ( $db, $topic, $snapshots_id ) = @_; - - return unless ( $topic->{ respider_stories } ); - - my $respider_start_date = $topic->{ respider_start_date }; - my $respider_end_date = $topic->{ respider_end_date }; - - if ( !$respider_start_date && !$respider_end_date ) - { - $db->query( "update topic_stories set link_mined = 'f' where topics_id = ?", $topic->{ topics_id } ); - return; - } - - if ( $respider_start_date ) - { - $db->query( <{ start_date }, $topic->{ topics_id } ); -update topic_stories ts set link_mined = 'f' - from stories s - where - ts.stories_id = s.stories_id and - s.publish_date >= \$2 and - s.publish_date <= \$1 and - ts.topics_id = \$3 -SQL - if ( $snapshots_id ) - { - $db->update_by_id( 'snapshots', $snapshots_id, { start_date => $topic->{ start_date } } ); - $db->query( <query( <{ end_date }, $topic->{ topics_id } ); -update topic_stories ts set link_mined = 'f' - from stories s - where - ts.stories_id = s.stories_id and - s.publish_date >= \$1 and - s.publish_date <= \$2 and - ts.topics_id = \$3 -SQL - - if ( $snapshots_id ) - { - $db->update_by_id( 'snapshots', $snapshots_id, { end_date => $topic->{ end_date } } ); - $db->query( < ? -SQL - } - } - - $db->update_by_id( 'topics', $topic->{ topics_id }, - { respider_stories => 'f', respider_start_date => undef, respider_end_date => undef } ); -} - - -# mine the given topic for links and to recursively discover new stories on the web. -# options: -# import_only - only run import_seed_urls and import_solr_seed and exit -# skip_post_processing - skip social media fetching and snapshotting -# snapshots_id - associate topic with the given existing snapshot -sub do_mine_topic($$;$$) -{ - my ( $db, $topic, $options, $state_updater ) = @_; - - map { $options->{ $_ } ||= 0 } qw/import_only skip_post_processing test_mode/; - - update_topic_state( $db, $state_updater, "importing seed urls" ); - import_urls_from_seed_queries( $db, $topic, $state_updater ); - - update_topic_state( $db, $state_updater, "setting stories respidering..." ); - set_stories_respidering( $db, $topic, $options->{ snapshots_id } ); - - # this may put entires into topic_seed_urls, so run it before import_seed_urls. - # something is breaking trying to call this perl. commenting out for time being since we only need - # this when we very rarely change the foreign_rss_links field of a media source - hal - # update_topic_state( $db, $state_updater, "merging foreign rss stories" ); - # MediaWords::TM::Stories::merge_foreign_rss_stories( $db, $topic ); - - update_topic_state( $db, $state_updater, "importing seed urls" ); - if ( import_seed_urls( $db, $topic, $state_updater ) > $MIN_SEED_IMPORT_FOR_PREDUP_STORIES ) - { - # merge dup stories before as well as after spidering to avoid extra spidering work - update_topic_state( $db, $state_updater, "merging duplicate stories" ); - MediaWords::TM::Stories::find_and_merge_dup_stories( $db, $topic ); - } - - unless ( $options->{ import_only } ) - { - update_topic_state( $db, $state_updater, "running spider" ); - run_spider( $db, $topic, $state_updater ); - - check_job_error_rate( $db, $topic ); - - # merge dup media and stories again to catch dups from spidering - update_topic_state( $db, $state_updater, "merging duplicate stories" ); - MediaWords::TM::Stories::find_and_merge_dup_stories( $db, $topic ); - - update_topic_state( $db, $state_updater, "merging duplicate media stories" ); - MediaWords::TM::Stories::merge_dup_media_stories( $db, $topic ); - - if ( !$options->{ skip_post_processing } ) - { - update_topic_state( $db, $state_updater, "fetching social media data" ); - fetch_social_media_data( $db, $topic ); - - update_topic_state( $db, $state_updater, "snapshotting" ); - my $snapshot_args = { topics_id => $topic->{ topics_id }, snapshots_id => $options->{ snapshots_id } }; - MediaWords::Job::StatefulBroker->new( 'MediaWords::Job::TM::SnapshotTopic' )->add_to_queue( $snapshot_args ); - } - } -} - -# wrap do_mine_topic in eval and handle errors and state -sub mine_topic ($$;$$) -{ - my ( $db, $topic, $options, $state_updater ) = @_; - - # the topic spider can sit around for long periods doing solr queries, so we need to make sure the postgres - # connection does not get timed out - $db->query( "set idle_in_transaction_session_timeout = 0" ); - - my $prev_test_mode = $_test_mode; - - $_test_mode = 1 if ( $options->{ test_mode } ); - - if ( $topic->{ state } ne 'running' ) - { - MediaWords::TM::Alert::send_topic_alert( $db, $topic, "started topic spidering" ); - } - - eval { do_mine_topic( $db, $topic, $options, $state_updater ); }; - if ( $@ ) - { - my $error = $@; - MediaWords::TM::Alert::send_topic_alert( $db, $topic, "aborted topic spidering due to error" ); - LOGDIE( $error ); - } - - $_test_mode = $prev_test_mode; -} - -1; diff --git a/apps/topics-mine/src/perl/MediaWords/TM/Worker.pm b/apps/topics-mine/src/perl/MediaWords/TM/Worker.pm deleted file mode 100644 index ce467d6869..0000000000 --- a/apps/topics-mine/src/perl/MediaWords/TM/Worker.pm +++ /dev/null @@ -1,95 +0,0 @@ -package MediaWords::TM::Worker; - -# -# Run through stories found for the given topic and find all the links in -# each story. -# -# For each link, try to find whether it matches any given story. If it doesn't, -# create a new story. Add that story's links to the queue if it matches the -# pattern for the topic. Write the resulting stories and links to -# topic_stories and topic_links. -# -# Options: -# -# * dedup_stories - run story deduping code over existing topic stories; -# only necessary to rerun new dedup code -# -# * import_only - only run import_seed_urls and import_solr_seed and return -# - -use strict; -use warnings; - -use Modern::Perl "2015"; -use MediaWords::CommonLibs; - -use MediaWords::DB; -use MediaWords::Job::Lock; -use MediaWords::Job::State; -use MediaWords::Job::State::ExtraTable; -use MediaWords::Job::StatefulBroker; -use MediaWords::TM::Mine; - - -sub run_job($) -{ - my $args = shift; - - my $db = MediaWords::DB::connect_to_db(); - - my $topics_id = $args->{ topics_id }; - my $import_only = $args->{ import_only } // 0; - my $cache_broken_downloads = $args->{ cache_broken_downloads } // 0; - my $skip_outgoing_foreign_rss_links = $args->{ skip_outgoing_foreign_rss_links } // 0; - my $skip_post_processing = $args->{ skip_post_processing } // 0; - my $test_mode = $args->{ test_mode } // 0; - my $snapshots_id = $args->{ snapshots_id } // undef; - - my $state_updater = $args->{ state_updater }; - - unless ( $topics_id ) - { - die "'topics_id' is not set."; - } - - unless ( $state_updater ) { - die "State updater is not set."; - } - - my $topic = $db->find_by_id( 'topics', $topics_id ) - or die( "Unable to find topic '$topics_id'" ); - - my $options = { - import_only => $import_only, - cache_broken_downloads => $cache_broken_downloads, - skip_outgoing_foreign_rss_links => $skip_outgoing_foreign_rss_links, - skip_post_processing => $skip_post_processing, - test_mode => $test_mode, - snapshots_id => $snapshots_id - }; - - MediaWords::TM::Mine::mine_topic( $db, $topic, $options, $state_updater ); -} - -sub start_topics_mine_worker($) -{ - my $queue_name = shift; - - my $app = MediaWords::Job::StatefulBroker->new( $queue_name ); - - my $lock = MediaWords::Job::Lock->new( - - # Define this here so that ::MineTopicPublic operates on the same lock - 'MediaWords::Job::TM::MineTopic', - - # Only run one job for each topic at a time - 'topics_id', - - ); - - my $extra_table = MediaWords::Job::State::ExtraTable->new( 'topics', 'state', 'message' ); - my $state = MediaWords::Job::State->new( $extra_table ); - $app->start_worker( \&run_job, $lock, $state ); -} - -1; diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index fa3c464b68..3aed60ee7d 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -14,6 +14,7 @@ from typing import Optional, Callable from mediawords.db import DatabaseHandler +from mediawords.db.locks import get_session_lock, release_session_lock import mediawords.dbi.stories from mediawords.job import JobBroker, StatefulJobBroker, StateUpdater import mediawords.solr @@ -26,6 +27,8 @@ from mediawords.util.log import create_logger log = create_logger(__name__) +# lock_type to send to get_session_lock +LOCK_TYPE = 'MediaWords::Job::TM::MineTopic' # total time to wait for fetching of social media metrics MAX_SOCIAL_MEDIA_FETCH_TIME = (60 * 60 * 24) @@ -43,7 +46,7 @@ MAX_JOB_ERROR_RATE = 0.02 # timeout when polling for jobs to finish -JOB_POLL_TIMEOUT = 300 +JOB_POLL_TIMEOUT = 600 # number of seconds to wait when polling for jobs to finish JOB_POLL_WAIT = 5 @@ -55,7 +58,7 @@ MAX_LINK_EXTRACTION_TIMEOUT = 10 # how long to wait to timeout link extraction -LINK_EXTRACTION_POLL_TIMEOUT = 60 +LINK_EXTRACTION_POLL_TIMEOUT = 600 # domain timeout for link fetching DOMAIN_TIMEOUT = None @@ -184,7 +187,7 @@ def generate_topic_links(db: DatabaseHandler, topic: dict, stories: list): """, {'a': topic['topics_id']}) - db.query("discard temp") + db.query(f"drop table {stories_ids_table}") def die_if_max_stories_exceeded(db, topic): @@ -242,6 +245,9 @@ def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None """ Send topic_fetch_urls to fetch_twitter_urls queue and wait for the jobs to complete. """ + # we run into quota limitations sometimes and need a longer timeout + twitter_poll_timeout = JOB_POLL_TIMEOUT * 5 + twitter_tfu_ids = db.query( """ select topic_fetch_urls_id @@ -286,7 +292,7 @@ def _fetch_twitter_urls(db: DatabaseHandler, topic: dict, tfu_ids: list) -> None if num_queued_urls != prev_num_queued_urls: last_change_time = time() - if (time() - last_change_time) > JOB_POLL_TIMEOUT: + if (time() - last_change_time) > twitter_poll_timeout: raise McTopicMineError(f"Timed out waiting for twitter fetching {queued_tfus}") log.info(f"{num_queued_urls} twitter urls left to fetch ...") @@ -378,13 +384,15 @@ def fetch_links(db: DatabaseHandler, topic: dict, fetch_links: dict) -> None: last_pending_change = time() if time_since_change > JOB_POLL_TIMEOUT: - if full_requeues < max_full_requeues: + if num_pending_urls > max_requeue_jobs: + raise McTopicMineError("Timed out waiting for fetch link queue") + elif full_requeues < max_full_requeues: [queue_topic_fetch_url(db.require_by_id('topic_fetch_urls', id)) for id in pending_url_ids] full_requeues += 1 last_pending_change = time() else: for id in pending_url_ids: - db.update_by_id('topic_fetch_urls', id, {'state': 'error', 'message': 'timed out'}) + db.update_by_id('topic_fetch_urls', id, {'state': 'python error', 'message': 'timed out'}) log.info(f"timed out {len(pending_url_ids)} urls") @@ -507,17 +515,41 @@ def get_new_links(db: DatabaseHandler, iteration: int, topics_id: int) -> list: def spider_new_links(db, topic, iteration, state_updater): """call add_new_links on topic_links for which link_spidered is false.""" - i = 0 while True: - log.info(f"spider new links chunk: {i}") + log.info("querying new links ...") + + db.query("drop table if exists _new_links") - new_links = get_new_links(db, iteration, topic['topics_id']) + num_new_links = db.query( + """ + create temporary table _new_links as + select tl.* + from topic_links tl, topic_stories ts + where + tl.link_spidered = 'f' and + tl.stories_id = ts.stories_id and + (ts.iteration <= %(a)s or ts.iteration = 1000) and + ts.topics_id = %(b)s and + tl.topics_id = %(b)s + order by random() + """, + {'a': iteration, 'b': topic['topics_id']}).rows() - if not new_links: + db.query("create index _new_links_tl on _new_links (topic_links_id)") + + if num_new_links < 1: break - add_new_links(db, topic, iteration, new_links, state_updater) + log.info(f"found {num_new_links} new links") + + while True: + new_links = db.query("select * from _new_links limit %(a)s", {'a': SPIDER_LINKS_CHUNK_SIZE}).hashes() + if not new_links: + break + tl_ids = [n['topic_links_id'] for n in new_links] + db.query("delete from _new_links where topic_links_id = any(%(a)s)", {'a': tl_ids}) + add_new_links(db, topic, iteration, new_links, state_updater) def get_spider_progress_description(db, topic, iteration, total_links): """get short text description of spidering progress""" @@ -1028,8 +1060,8 @@ def do_mine_topic(db, topic, options): import_only - only run import_seed_urls and import_solr_seed and exit skip_post_processing - skip social media fetching and snapshotting snapshots_id - associate topic with the given existing snapshot + state_updater - object that implements mediawords.job.StateUpdater """ - [options.setdefault(f, None) for f in 'state_updater import_only skip_post_processing snapshots_id'.split()] state_updater = options['state_updater'] @@ -1084,8 +1116,34 @@ def mine_topic(db, topic, **options): if topic['state'] != 'running': topics_base.alert.send_topic_alert(db, topic, "started topic spidering") + get_session_lock(db=db, lock_type=LOCK_TYPE, lock_id=topic['topics_id']) + try: do_mine_topic(db, topic, options) except Exception as e: topics_base.alert.send_topic_alert(db, topic, "aborted topic spidering due to error") raise e + + release_session_lock(db=db, lock_type=LOCK_TYPE, lock_id=topic['topics_id']) + + +def run_worker_job(topics_id: int, snapshots_id: Optional[int] = None) -> None: + """run a topics-mine worker job.""" + if isinstance(snapshots_id, bytes): + snapshots_id = decode_object_from_bytes_if_needed(snapshots_id) + if snapshots_id is not None: + snapshots_id = int(snapshots_id) + + if isinstance(topics_id, bytes): + topics_id = decode_object_from_bytes_if_needed(topics_id) + if topics_id is not None: + topics_id = int(topics_id) + + if not bool(topics_id): + raise McTopicMineException("topics_id must be set") + + db = connect_to_db() + + topic = db.require_by_id('topics', topics_id) + + mine_topic(db=db, topic=topic, snapshots_id=snapshots_id) diff --git a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-01.json b/apps/topics-mine/tests/data/ch/ch-posts-2016-01-01.json deleted file mode 100644 index b466f30749..0000000000 --- a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-01.json +++ /dev/null @@ -1 +0,0 @@ -{"posts":[{"url":"http://twitter.com/18tdg1/status/682775544929345536","title":"","type":"Twitter","language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Love_thy_selfs/status/682845392552210432","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/oceanbcake/status/682729781578711040","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.22},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KPomeranke/status/682732512905269248","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tmhstn/status/683005702709886977","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/AprilLashley/status/682848472815538177","title":"","type":"Twitter","location":"Manila, National Capital Region, PHL","geolocation":{"id":"PHL.National Capital Region.Manila","name":"Manila","country":"PHL","state":"National Capital Region","city":"Manila"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/jeff46101/status/682822799463985152","title":"","type":"Twitter","location":"Hong Kong, Kowloon City, HKG","geolocation":{"id":"HKG.Kowloon City.Hong Kong","name":"Hong Kong","country":"HKG","state":"Kowloon City","city":"Hong Kong"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/bash1040/status/682838610329079808","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/OLMC1/status/682731081511092224","title":"","type":"Twitter","location":"New York, NY 10460, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10460"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/oceanbcake/status/682729241838915585","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AbnInfVet/status/682731594113658881","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JaayZen/status/682981957534380032","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"43150"},"language":"en","authorKlout":59,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/Sa21Edu/status/683016999945940993","title":"","type":"Twitter","language":"es","authorKlout":10,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":1.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/christa_dorsett/status/682738611066941440","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/oceanbcake/status/682730015906082817","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/682854255506554880","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/Llyrin/status/682731618528833536","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/donaldo_trampa/status/682943086398418944","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821235,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.36},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.25},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/THETOLEDO/status/682963695442345985","title":"","type":"Twitter","location":"MEX","geolocation":{"id":"MEX","name":"Mexico","country":"MEX"},"language":"es","authorKlout":25,"assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[]},{"url":"http://twitter.com/schwingcat/status/682718690069069826","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Carloos_Aguilar/status/682762101576736768","title":"","type":"Twitter","location":"Monterrey, Nuevo Leon, MEX","geolocation":{"id":"MEX.Nuevo Leon.Monterrey","name":"Monterrey","country":"MEX","state":"Nuevo Leon","city":"Monterrey"},"language":"es","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[]},{"url":"http://twitter.com/tim_dash1/status/682742763960446976","title":"","type":"Twitter","language":"en","authorKlout":12,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/oceanbcake/status/682729170909048832","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/coltoeee/status/682760664700551168","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/toms602/status/682726370431119360","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/N_I_N_E_R_S/status/682755862696296451","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PaulGarrettATX/status/682922306130153473","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.14},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/bed_ken/status/682900193570852864","title":"","type":"Twitter","language":"en","authorKlout":24,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kateloving/status/682726373404835840","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":59,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JimboGevaux/status/682990108858028033","title":"","type":"Twitter","location":"London, Greater London, GBR","geolocation":{"id":"GBR.Greater London.London","name":"London","country":"GBR","state":"Greater London","city":"London"},"language":"en","authorKlout":20,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bweN_diorD/status/682949477737611264","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":12,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.43},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/pinecohen/status/682722053603094529","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.03},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.28}]},{"url":"http://twitter.com/Nachumlist/status/682719751236235265","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":59,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.03},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.28}]},{"url":"http://twitter.com/michellermsc/status/682728264419282945","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.37},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/mattlyonsms/status/683045604566667269","title":"","type":"Twitter","location":"MO, USA","geolocation":{"id":"USA.MO","name":"Missouri","country":"USA","state":"MO"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.2},{"emotionId":4404821233,"emotionName":"Neutral","score":0.34},{"emotionId":4404821232,"emotionName":"Fear","score":0.26},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chavezz_23/status/682921234636615680","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.37},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/jeep4wd4me/status/683051341946744832","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.37},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MariaUzetaM/status/682745781770559488","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.37},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/HumbertoAmz/status/682728527494434816","title":"","type":"Twitter","location":"MEX","geolocation":{"id":"MEX","name":"Mexico","country":"MEX"},"language":"en","authorKlout":43,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.37},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/JTS_1957/status/682715289339858944","title":"","type":"Twitter","location":"Ft Worth, TX, USA","geolocation":{"id":"USA.TX.Ft Worth","name":"Ft. Worth","country":"USA","state":"TX","city":"Ft Worth"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.84},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/brxndonlee/status/682943016554872835","title":"","type":"Twitter","language":"en","authorKlout":23,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.37},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/Brandon4Times/status/682806409650556930","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/mgm1175/status/682715638071226369","title":"","type":"Twitter","location":"Nashville, TN 37064, USA","geolocation":{"id":"USA.TN.Nashville","name":"Nashville","country":"USA","state":"TN","city":"Nashville","zipcode":"37064"},"language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.84},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kmw___333/status/682729829486211072","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.37},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/PatriciaAHenso1/status/683040483547856896","title":"","type":"Twitter","location":"Little Rock, AR 72023, USA","geolocation":{"id":"USA.AR.Little Rock","name":"Little Rock","country":"USA","state":"AR","city":"Little Rock","zipcode":"72023"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JHWalz32/status/683041699548016640","title":"","type":"Twitter","language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mrmik1234/status/683062257312399361","title":"","type":"Twitter","location":"Washington, DC, DC, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC"},"language":"en","authorKlout":56,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AmyWMIGOPTeam/status/683043858280747010","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SteveSanAntone/status/682797448482299904","title":"","type":"Twitter","location":"San Antonio, TX 78201, USA","geolocation":{"id":"USA.TX.San Antonio","name":"San Antonio","country":"USA","state":"TX","city":"San Antonio","zipcode":"78201"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/city_smitty/status/683043194473443333","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DorvalTony/status/683030777785798656","title":"","type":"Twitter","location":"Ottawa, ON, CAN","geolocation":{"id":"CAN.ON.Ottawa","name":"Ottawa","country":"CAN","state":"ON","city":"Ottawa"},"language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Phishie_Philly/status/683027330244173824","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"19133"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/QaziSaqiba/status/682712994606886912","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.63},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/vicinus_ken/status/683032431482376192","title":"","type":"Twitter","language":"en","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Burleson4Bernie/status/682765027162492929","title":"","type":"Twitter","location":"TX 76028, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX","zipcode":"76028"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.47},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.08}]},{"url":"http://twitter.com/pjamericanpatri/status/683047060451414016","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JourneysNonnie/status/683059618134777856","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/W_Paul_Williams/status/683043891298340864","title":"","type":"Twitter","location":"Miami, FL, USA","geolocation":{"id":"USA.FL.Miami","name":"Miami","country":"USA","state":"FL","city":"Miami"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/IIIPConLibPat/status/683028532340068352","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/be_true_2_you/status/683043903532957696","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Bwdreyer/status/683043190086090752","title":"","type":"Twitter","location":"Austin, TX 78703, USA","geolocation":{"id":"USA.TX.Austin","name":"Austin","country":"USA","state":"TX","city":"Austin","zipcode":"78703"},"language":"en","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RepublicanAfro/status/683047403348336640","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Tidefan101Mark/status/682725977030553600","title":"","type":"Twitter","location":"AL, USA","geolocation":{"id":"USA.AL","name":"Alabama","country":"USA","state":"AL"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/682731537264017409","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.25},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.0},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/mmalbtwins/status/683044971105120257","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ricnucjet55/status/683060295091093504","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"33126"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/angelathomas22/status/683048037866958848","title":"","type":"Twitter","language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/i_AM_theChange/status/682768293648699393","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.47},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.08}]},{"url":"http://twitter.com/bulakhtina89/status/682987323424935936","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KileyadisoS/status/683060431611654144","title":"","type":"Twitter","location":"Tampa, FL, USA","geolocation":{"id":"USA.FL.Tampa","name":"Tampa","country":"USA","state":"FL","city":"Tampa"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/afezio1952/status/683041924702408707","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hopingforachang/status/683061489951989761","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":63,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/railgirl1952/status/683042433068695553","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LeeTrumpster/status/683029359087632384","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PBarone160/status/683041208353046528","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JamesGreenBayWI/status/683056528279138304","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rohann8218/status/683030928176762880","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/crisbrooks98502/status/682767167582961664","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"95918"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.47},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.08}]},{"url":"http://twitter.com/Montana0323/status/683044869758136320","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorKlout":59,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/johncparnell/status/683046367715962880","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/maksimkamaryas1/status/683003170566598657","title":"","type":"Twitter","language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bja222/status/682763327915864064","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.47},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.08}]},{"url":"http://twitter.com/urbrian/status/683055016219807744","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":33,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/troyawalters/status/682757132207435776","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chesusjist/status/683003610624557056","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lgb156/status/682984079088697345","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/EVH1978/status/682786146980515841","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Grpacon/status/682788296909565957","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MenesesRudy/status/682837101738496000","title":"","type":"Twitter","location":"Houston, TX 77007, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston","zipcode":"77007"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ResistTyranny/status/682940297630904324","title":"","type":"Twitter","location":"CT, USA","geolocation":{"id":"USA.CT","name":"Connecticut","country":"USA","state":"CT"},"language":"en","authorKlout":66,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SaveFreedomUSA/status/682756063993683969","title":"","type":"Twitter","language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BossyBritches72/status/682770556354039808","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/saminhim/status/682786040159940609","title":"","type":"Twitter","location":"Kansas City, MO, USA","geolocation":{"id":"USA.MO.Kansas City","name":"Kansas City","country":"USA","state":"MO","city":"Kansas City"},"language":"en","authorKlout":59,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/stevenburns131/status/682806895753613316","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CSmurfhunter/status/682729693028716545","title":"","type":"Twitter","language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Laughtino/status/683051787436204032","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":14,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.04},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.58},{"emotionId":4404821233,"emotionName":"Neutral","score":0.02},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/nodramahea/status/682940639227559936","title":"","type":"Twitter","location":"New York, NY 11226, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"11226"},"language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Dorunda/status/682757245243899904","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BalconyBreeze/status/682757541214859264","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LyndaG1963/status/682935163714695168","title":"","type":"Twitter","language":"en","authorKlout":63,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_melagen/status/682940934594494464","title":"","type":"Twitter","location":"Manila, National Capital Region, PHL","geolocation":{"id":"PHL.National Capital Region.Manila","name":"Manila","country":"PHL","state":"National Capital Region","city":"Manila"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/briantp73/status/682757447899992064","title":"","type":"Twitter","location":"Memphis, TN 38606, USA","geolocation":{"id":"USA.TN.Memphis","name":"Memphis","country":"USA","state":"MS","city":"Memphis","zipcode":"38606"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sheilasheila58/status/682772689388449792","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MrPoliglot/status/682786651840491520","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jmelone277/status/682922627279753216","title":"","type":"Twitter","location":"Philadelphia, PA 19133, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia","zipcode":"19133"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kimwhocries/status/682786180149194752","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/djtito/status/682845914743070720","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.7},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BiaLaGreca/status/682736779775086592","title":"","type":"Twitter","location":"Rio de Janeiro, RJ, BRA","geolocation":{"id":"BRA.RJ.Rio de Janeiro","name":"Rio de Janeiro","country":"BRA","state":"RJ","city":"Rio de Janeiro"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/badmoon46/status/682744052790464512","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dualkoondog/status/682931648627789824","title":"","type":"Twitter","location":"Atlanta, GA, USA","geolocation":{"id":"USA.GA.Atlanta","name":"Atlanta","country":"USA","state":"GA","city":"Atlanta"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/YackyDoodleDnDy/status/682956541327224833","title":"","type":"Twitter","location":"San Jose, San Jose, CRI","geolocation":{"id":"CRI.San Jose.San Jose","name":"San Jose","country":"CRI","state":"San Jose","city":"San Jose"},"language":"en","authorKlout":54,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BettyeBear/status/682951304235323392","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wright2you_kim/status/682797168764280832","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cut_the_crap_ec/status/682786957747957760","title":"","type":"Twitter","location":"Tel Aviv-Yafo, Tel Aviv, ISR","geolocation":{"id":"ISR.Tel Aviv.Tel Aviv-Yafo","name":"Tel Aviv-Yafo","country":"ISR","state":"Tel Aviv","city":"Tel Aviv-Yafo"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/monolisso75/status/682932221347418112","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ChargerGreg/status/682756564403359744","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":59,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TSfromNYC/status/682936412916826116","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"10103"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SexiestPatriot/status/682931465739460609","title":"","type":"Twitter","location":"Irvine, CA 92806, USA","geolocation":{"id":"USA.CA.Irvine","name":"Irvine","country":"USA","state":"CA","city":"Irvine","zipcode":"92806"},"language":"en","authorKlout":71,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Katzekraus/status/682932724202512388","title":"","type":"Twitter","location":"Minneapolis, MN 55415, USA","geolocation":{"id":"USA.MN.Minneapolis","name":"Minneapolis","country":"USA","state":"MN","city":"Minneapolis","zipcode":"55415"},"language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/IndeCardio/status/682942717245177856","title":"","type":"Twitter","language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Shopgirl49/status/682755851145187328","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sharihope1/status/682786116525637632","title":"","type":"Twitter","location":"MO, USA","geolocation":{"id":"USA.MO","name":"Missouri","country":"USA","state":"MO"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lnichols8/status/683045674556866560","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/phil200269/status/682755379063726080","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":64,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hardinmtp3/status/682940973358383104","title":"","type":"Twitter","language":"en","authorKlout":27,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/steph93065/status/682785745002610688","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":72,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DebndanfarrDeb/status/682935530711957504","title":"","type":"Twitter","location":"PRI","geolocation":{"id":"PRI","name":"Puerto Rico","country":"PRI"},"language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/xD4RKHAWK/status/682934202774491138","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mencey_Bentor/status/683003791659122688","title":"","type":"Twitter","location":"Santa Cruz de Tenerife, Canary Is, ESP","geolocation":{"id":"ESP.Canary Is.Santa Cruz de Tenerife","name":"Santa Cruz de Tenerife","country":"ESP","state":"Canary Is","city":"Santa Cruz de Tenerife"},"language":"es","authorKlout":24,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/XalerBomo/status/683007295639261184","title":"","type":"Twitter","language":"en","authorKlout":21,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/trzrpug/status/682788060505870336","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/misshome888/status/682786674791677952","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PaulGarrettATX/status/682926460919676928","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.52},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/kiraz0h/status/682898860893696001","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ben_peace16/status/683023301099307008","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/GhettoNigerian/status/682863193664823296","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RCAFRAF/status/683039918507954176","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ilvon/status/682921077824163840","title":"","type":"Twitter","location":"Sofia, Grad Sofiya, BGR","geolocation":{"id":"BGR.Grad Sofiya.Sofia","name":"Sofia","country":"BGR","state":"Grad Sofiya","city":"Sofia"},"language":"en","authorKlout":11,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RamonSomoza/status/682844466881761280","title":"","type":"Twitter","location":"Madrid, Madrid, ESP","geolocation":{"id":"ESP.Madrid.Madrid","name":"Madrid","country":"ESP","state":"Madrid","city":"Madrid"},"language":"es","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/db93297b16254d4/status/682791832577650688","title":"","type":"Twitter","language":"en","authorKlout":22,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/residentfFL/status/683017382911152128","title":"","type":"Twitter","location":"Jacksonville, FL 32207, USA","geolocation":{"id":"USA.FL.Jacksonville","name":"Jacksonville","country":"USA","state":"FL","city":"Jacksonville","zipcode":"32207"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ShastaLake1975/status/683021011747405824","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BradGerstman/status/682830664878534657","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.84},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/krroynesdal/status/682727506168905729","title":"","type":"Twitter","location":"Charlottesville, VA, USA","geolocation":{"id":"USA.VA.Charlottesville","name":"Charlottesville","country":"USA","state":"VA","city":"Charlottesville"},"language":"en","authorKlout":31,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FreebandzAjani/status/682942761641836544","title":"","type":"Twitter","location":"GA, USA","geolocation":{"id":"USA.GA","name":"Georgia","country":"USA","state":"GA"},"language":"en","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.63},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Bumpyknight/status/682747084756414464","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/theVitaGuys/status/682836890039418880","title":"","type":"Twitter","location":"Portland, OR 98661, USA","geolocation":{"id":"USA.OR.Portland","name":"Portland","country":"USA","state":"WA","city":"Portland","zipcode":"98661"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ocalmgrande/status/683069996650598400","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/donnahri/status/683051208232316933","title":"","type":"Twitter","language":"en","authorKlout":16,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/VoteOrlyTaitz/status/682869666730131460","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.35},{"emotionId":4404821232,"emotionName":"Fear","score":0.26},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/loveitall4/status/682794081034973184","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/donnahri/status/683051020092616704","title":"","type":"Twitter","language":"en","authorKlout":16,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/suartcat4/status/682835283545427970","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cottsala_gladys/status/682985739663982592","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JakielMirka/status/682996598595436544","title":"","type":"Twitter","language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/politicsiq/status/683024801032605696","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.24},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.4},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/katehmiller17/status/682819420138418176","title":"","type":"Twitter","language":"en","authorKlout":16,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kitgainer2002/status/682845062963671040","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/godsofrockradio/status/682985108966539265","title":"","type":"Twitter","location":"Reno, NV, USA","geolocation":{"id":"USA.NV.Reno","name":"Reno","country":"USA","state":"NV","city":"Reno"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/pepsi7965/status/682983164604592128","title":"","type":"Twitter","location":"Denver, CO 80218, USA","geolocation":{"id":"USA.CO.Denver","name":"Denver","country":"USA","state":"CO","city":"Denver","zipcode":"80218"},"language":"en","authorKlout":54,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dawngpsalm63/status/682983141087129601","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mommags2579/status/683027204738015232","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NJ","city":"New York"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/teb065/status/682809421366431745","title":"","type":"Twitter","location":"PA 19465, USA","geolocation":{"id":"USA.PA","name":"Pennsylvania","country":"USA","state":"PA","zipcode":"19465"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.09},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.91},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.76},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.12},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/vonhammer/status/682913711300980736","title":"","type":"Twitter","location":"New London, CT 06378, USA","geolocation":{"id":"USA.CT.New London","name":"New London","country":"USA","state":"CT","city":"New London","zipcode":"06378"},"language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/truthglow/status/682969184603639808","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RichardTBurnett/status/682982521131274240","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":65,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mkmonday/status/682982640941711360","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/woitekj/status/682994396887932928","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/NUFCinnocent/status/683062081537601536","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cottsala_gladys/status/682986572757663744","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/roxyloveslucy/status/683056343331258368","title":"","type":"Twitter","location":"IN, USA","geolocation":{"id":"USA.IN","name":"Indiana","country":"USA","state":"IN"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/AneelaFirework/status/683074976400838656","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/atutushkinsa/status/682777294587310080","title":"","type":"Twitter","location":"Moscow, Central, RUS","geolocation":{"id":"RUS.Central.Moscow","name":"Moscow","country":"RUS","state":"Central","city":"Moscow"},"language":"en","authorKlout":13,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/jeep4wd4me/status/683052006064451584","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/BARRYCUDA3/status/683064793398390785","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Happy2BMom1/status/683065285331435521","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/jthres/status/683029883748921345","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.41},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.51}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.01},{"emotionId":4404821232,"emotionName":"Fear","score":0.9},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kaitlynnlarson/status/682960260399681536","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.47},{"emotionId":4404821233,"emotionName":"Neutral","score":0.27},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/the_kramester/status/682756373080346624","title":"","type":"Twitter","location":"Ft Myers, FL, USA","geolocation":{"id":"USA.FL.Ft Myers","name":"Ft. Myers","country":"USA","state":"FL","city":"Ft Myers"},"language":"en","authorKlout":35,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.09},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.9}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.43},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/michaellahamel/status/682833866059583488","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.47},{"emotionId":4404821233,"emotionName":"Neutral","score":0.27},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rayinman/status/683062273276014592","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/AlfredoRuizSnch/status/682970476541513728","title":"","type":"Twitter","location":"Bordeaux, Aquitaine, FRA","geolocation":{"id":"FRA.Aquitaine.Bordeaux","name":"Bordeaux","country":"FRA","state":"Aquitaine","city":"Bordeaux"},"language":"es","authorKlout":13,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/illMATTics/status/683015804288380933","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/T_among_Js/status/682727920553426945","title":"","type":"Twitter","language":"en","authorKlout":20,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LeRatton/status/682800772547883008","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/StanRedner/status/682732943043878912","title":"","type":"Twitter","language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SteveJurevicius/status/683040723483148289","title":"","type":"Twitter","location":"OH, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/didikmangkupra/status/682958714408570880","title":"","type":"Twitter","language":"en","authorKlout":13,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.22},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/thevampdavey/status/683032734466502656","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/pleighboii/status/682941417295970304","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/davidstyles0000/status/682989292398850048","title":"","type":"Twitter","language":"fr","authorKlout":16,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[]},{"url":"http://twitter.com/philXchimchar/status/682731395479764992","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lindafoxy1grace/status/682978273853222912","title":"","type":"Twitter","language":"en","authorKlout":24,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/J_Owczarzak/status/682917652298395648","title":"","type":"Twitter","location":"Raleigh, NC 27587, USA","geolocation":{"id":"USA.NC.Raleigh","name":"Raleigh","country":"USA","state":"NC","city":"Raleigh","zipcode":"27587"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dan_delusional/status/682732932113510400","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.22},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Doookss/status/683017323888820224","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FrankdeMonbrun/status/682994961906712576","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/msftgrl/status/683016576329736192","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/marknroolane1/status/683018572235280385","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SDGabor/status/682741349481746432","title":"","type":"Twitter","location":"Los Angeles, CA 90006, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90006"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/phasedmalum/status/683033500392407040","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"92123"},"language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/deethinks/status/682914643979964416","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rebelMj/status/682979147392618500","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MarcelKidder/status/682772311242633217","title":"","type":"Twitter","location":"Lowell, MA, USA","geolocation":{"id":"USA.MA.Lowell","name":"Lowell","country":"USA","state":"MA","city":"Lowell"},"language":"en","authorKlout":11,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/KarenRegis/status/683044760236392448","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mukescastaway/status/683020746541510656","title":"","type":"Twitter","location":"St Louis, MO, USA","geolocation":{"id":"USA.MO.St Louis","name":"St. Louis","country":"USA","state":"MO","city":"St Louis"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/BethCol77455974/status/683042769540091904","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NofilDemple/status/682716163919351809","title":"","type":"Twitter","location":"Iloilo, Western Visayas (Region VI), PHL","geolocation":{"id":"PHL.Western Visayas (Region VI).Iloilo","name":"Iloilo","country":"PHL","state":"Western Visayas (Region VI)","city":"Iloilo"},"language":"en","authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.12},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.88},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.46},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/JamboR1989/status/682744559756034048","title":"","type":"Twitter","location":"Santa Fe, NM 87505, USA","geolocation":{"id":"USA.NM.Santa Fe","name":"Santa Fe","country":"USA","state":"NM","city":"Santa Fe","zipcode":"87505"},"language":"en","authorKlout":60,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.1},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.88}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.0},{"emotionId":4404821236,"emotionName":"Disgust","score":0.24},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/parkerc2112/status/683048053293461504","title":"","type":"Twitter","language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sardnas51/status/683041434178486272","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/littlepiggies72/status/682751492579704833","title":"","type":"Twitter","location":"AL, USA","geolocation":{"id":"USA.AL","name":"Alabama","country":"USA","state":"AL"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.0},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.09},{"emotionId":4404821232,"emotionName":"Fear","score":0.83},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Jalennock/status/683050245513699329","title":"","type":"Twitter","location":"Trenton, NJ 08542, USA","geolocation":{"id":"USA.NJ.Trenton","name":"Trenton","country":"USA","state":"NJ","city":"Trenton","zipcode":"08542"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SteveJurevicius/status/683041121694515200","title":"","type":"Twitter","location":"OH, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/aheffne/status/683041284714553344","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Neymarish_livin/status/683069407942152192","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.44},{"emotionId":4404821232,"emotionName":"Fear","score":0.35},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DemRaider/status/683049932501061632","title":"","type":"Twitter","language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/enzinesan/status/683044649099870208","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.24},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.74}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.0},{"emotionId":4404821236,"emotionName":"Disgust","score":0.88},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/arjun3847/status/683054117552582656","title":"","type":"Twitter","location":"NJ 08810, USA","geolocation":{"id":"USA.NJ","name":"New Jersey","country":"USA","state":"NJ","zipcode":"08810"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mrmars663/status/682912093134286848","title":"","type":"Twitter","location":"Sinaloa, MEX","geolocation":{"id":"MEX.Sinaloa","name":"Sinaloa","country":"MEX","state":"Sinaloa"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.75},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.24}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RamonSomoza/status/682975834877988865","title":"","type":"Twitter","location":"Madrid, Madrid, ESP","geolocation":{"id":"ESP.Madrid.Madrid","name":"Madrid","country":"ESP","state":"Madrid","city":"Madrid"},"language":"es","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/Adamitv/status/682997499108392960","title":"","type":"Twitter","location":"ZAF","geolocation":{"id":"ZAF","name":"South Africa","country":"ZAF"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Jmart4info/status/683006643844456448","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":56,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Whiskey_Houston/status/683057832401346560","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/walkerwaffles/status/682731547015917568","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/WhizChem/status/682731424886173701","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/Tim_ACAB/status/682997643790913537","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Jrblackewhite/status/683022099397611520","title":"","type":"Twitter","language":"pt","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[]},{"url":"http://twitter.com/ZolaniNkomo/status/683002345307910146","title":"","type":"Twitter","location":"Pretoria, Gauteng, ZAF","geolocation":{"id":"ZAF.Gauteng.Pretoria","name":"Pretoria","country":"ZAF","state":"Gauteng","city":"Pretoria"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/polishedoffinc/status/682771938255568896","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.53},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.3},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/oshima9/status/682999792616644608","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/davidpwil/status/682771716519673856","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.05},{"emotionId":4404821232,"emotionName":"Fear","score":0.52},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/SpudLovr/status/682731152923340800","title":"","type":"Twitter","location":"WI, USA","geolocation":{"id":"USA.WI","name":"Wisconsin","country":"USA","state":"WI"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/starrick1/status/682804939605852160","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.87}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.27},{"emotionId":4404821233,"emotionName":"Neutral","score":0.23},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/2B_Painfree/status/682782993560162304","title":"","type":"Twitter","language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/bchek833/status/682780678157631489","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/scsmorishita/status/682778288054353920","title":"","type":"Twitter","language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.13},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.87},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AndrewsHarley/status/683043981488422913","title":"","type":"Twitter","language":"en","authorKlout":57,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/09072021/status/682773504970772480","title":"","type":"Twitter","location":"Springfield, IL 62701, USA","geolocation":{"id":"USA.IL.Springfield","name":"Springfield","country":"USA","state":"IL","city":"Springfield","zipcode":"62701"},"language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BeverlySimcic/status/683044418392317952","title":"","type":"Twitter","location":"Pittsburgh, PA 15112, USA","geolocation":{"id":"USA.PA.Pittsburgh","name":"Pittsburgh","country":"USA","state":"PA","city":"Pittsburgh","zipcode":"15112"},"language":"en","authorKlout":63,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/IanClark95/status/683050427563294720","title":"","type":"Twitter","language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BorderWall/status/683045226676641792","title":"","type":"Twitter","language":"en","authorKlout":52,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/GeorgiaForTrump/status/683044076720119810","title":"","type":"Twitter","location":"Atlanta, GA 30309, USA","geolocation":{"id":"USA.GA.Atlanta","name":"Atlanta","country":"USA","state":"GA","city":"Atlanta","zipcode":"30309"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/tangiers33/status/683042959797780480","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/sliter_alex/status/682933602716270592","title":"","type":"Twitter","language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/trumpology/status/683042831330455552","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Boazziz/status/683043768728162304","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/catwiilson/status/682747591059111937","title":"","type":"Twitter","language":"en","authorKlout":30,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/682783636337238016","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.11}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Nutellaa_Is_Bae/status/683062518588112896","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LynnMoo37618860/status/683048299323109376","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Lou80560009/status/682991896277422081","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.12},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.18},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.09},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/mjmclarty02/status/682782400464605184","title":"","type":"Twitter","language":"en","authorKlout":18,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chirsmasxmas/status/682806912455290880","title":"","type":"Twitter","language":"en","authorKlout":11,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mosher66/status/682842099025317889","title":"","type":"Twitter","language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/sliter_alex/status/682935611779502082","title":"","type":"Twitter","language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/GomezLouison/status/683049223412166656","title":"","type":"Twitter","language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/readark_/status/682969048028704768","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/drewuntil/status/682961350570688512","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/kn0wJauregui/status/682961021720485888","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"es","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/shekittylauren/status/682960763464617984","title":"","type":"Twitter","language":"es","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/GotchYaSon/status/683038740969816066","title":"","type":"Twitter","location":"Pittsburgh, PA 15112, USA","geolocation":{"id":"USA.PA.Pittsburgh","name":"Pittsburgh","country":"USA","state":"PA","city":"Pittsburgh","zipcode":"15112"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/B_reallyjust_B/status/682757596307140614","title":"","type":"Twitter","location":"Buffalo, NY 14208, USA","geolocation":{"id":"USA.NY.Buffalo","name":"Buffalo","country":"USA","state":"NY","city":"Buffalo","zipcode":"14208"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/desertpyr0/status/682976201049255936","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.13},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.14},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/feelingscabeyox/status/682733019333967872","title":"","type":"Twitter","language":"es","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/ohmnomnomnom/status/682993968611590144","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ILIKESOMERS/status/682980474361360385","title":"","type":"Twitter","location":"Johor Bahru, Johor, MYS","geolocation":{"id":"MYS.Johor.Johor Bahru","name":"Johor Bahru","country":"MYS","state":"Johor","city":"Johor Bahru"},"language":"es","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/reidtheg1/status/682852051857063936","title":"","type":"Twitter","location":"Lansing, MI, USA","geolocation":{"id":"USA.MI.Lansing","name":"Lansing","country":"USA","state":"MI","city":"Lansing"},"language":"en","authorKlout":32,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PlatosStudent/status/682973810128236544","title":"","type":"Twitter","location":"Hamilton, ON, CAN","geolocation":{"id":"CAN.ON.Hamilton","name":"Hamilton","country":"CAN","state":"ON","city":"Hamilton"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.13},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.14},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/OpalescentMoon/status/682826383765078016","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.76},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FALLTABOY/status/682961215610556417","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"es","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/zealouswellness/status/683037598311407616","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/streamcabello/status/682963549736583168","title":"","type":"Twitter","language":"es","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/johnmanko/status/683040109197979649","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/htjauregui/status/682961534558011393","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":18,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/SarahElOtmani/status/682955954623778817","title":"","type":"Twitter","location":"Lille, Nord-Pas-de-Calais, FRA","geolocation":{"id":"FRA.Nord-Pas-de-Calais.Lille","name":"Lille","country":"FRA","state":"Nord-Pas-de-Calais","city":"Lille"},"language":"es","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/Ricky_Vaughn99/status/682970621643501568","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":72,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.13},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.14},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ableffort/status/682981075157659648","title":"","type":"Twitter","language":"es","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/r0cksg/status/683000455979470848","title":"","type":"Twitter","language":"es","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/lylasreinando/status/682964191645462528","title":"","type":"Twitter","language":"es","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/handstoally/status/682986616575660032","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/sadybeaches/status/683043894406311936","title":"","type":"Twitter","location":"Cape Town, Western Cape, ZAF","geolocation":{"id":"ZAF.Western Cape.Cape Town","name":"Cape Town","country":"ZAF","state":"Western Cape","city":"Cape Town"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TammyKosiancic/status/683043006652399616","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SCDWC/status/683000090877771777","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.15},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/kismetlong/status/683056279678496768","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DriggersJudy/status/683043625396211713","title":"","type":"Twitter","location":"Charlotte, NC, USA","geolocation":{"id":"USA.NC.Charlotte","name":"Charlotte","country":"USA","state":"NC","city":"Charlotte"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SelMill/status/683053444232396801","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LEISUREGODDESS/status/682720384995557376","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":51,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.16},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.84},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/petpolarbear/status/682963784277823489","title":"","type":"Twitter","location":"NOR","geolocation":{"id":"NOR","name":"Norway","country":"NOR"},"language":"en","authorKlout":23,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.14},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/bigmoneysucks/status/683044301182504960","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/UUMJeff/status/683041590827466752","title":"","type":"Twitter","location":"CT, USA","geolocation":{"id":"USA.CT","name":"Connecticut","country":"USA","state":"CT"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SteveJurevicius/status/683041373407281152","title":"","type":"Twitter","location":"OH, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Kathy_Hallacy/status/683042870681440256","title":"","type":"Twitter","location":"Joplin, MO 64801, USA","geolocation":{"id":"USA.MO.Joplin","name":"Joplin","country":"USA","state":"MO","city":"Joplin","zipcode":"64801"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/OnlyTruthReign/status/683051716829442050","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/iluvpoppies/status/683067366738104320","title":"","type":"Twitter","location":"Hagerstown, MD, USA","geolocation":{"id":"USA.MD.Hagerstown","name":"Hagerstown","country":"USA","state":"MD","city":"Hagerstown"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rockerride/status/683052925657157638","title":"","type":"Twitter","location":"PA, USA","geolocation":{"id":"USA.PA","name":"Pennsylvania","country":"USA","state":"PA"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Keeba23/status/683068284460085248","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RealPro4Real/status/682748077573300225","title":"","type":"Twitter","location":"Las Vegas, NV 89102, USA","geolocation":{"id":"USA.NV.Las Vegas","name":"Las Vegas","country":"USA","state":"NV","city":"Las Vegas","zipcode":"89102"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/IvoryDove/status/682769427650068480","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":60,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.4},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.51},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.83},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GatlinMicheal/status/682975547736100866","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/LowCountryKat/status/683056070038827010","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/philly1gleek/status/682780588529594368","title":"","type":"Twitter","location":"Philadelphia, PA 19133, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia","zipcode":"19133"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.17},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HippiesAreEvil/status/682723216100442112","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821230,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.04},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.83},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.13}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.32},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/karrisawijgaar4/status/683052047084687362","title":"","type":"Twitter","location":"ON, CAN","geolocation":{"id":"CAN.ON","name":"Ontario","country":"CAN","state":"ON"},"language":"en","authorKlout":13,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.27},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.7},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.83},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/truthglow/status/682968954546089984","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/judy_hanks/status/683016854089015296","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gppart/status/683060164035874817","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/oldmanrichard/status/682772719478308864","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.4},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.51},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.83},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DanieleScalia1/status/682884646670053376","title":"","type":"Twitter","location":"Rome, Lazio, ITA","geolocation":{"id":"ITA.Lazio.Rome","name":"Rome","country":"ITA","state":"Lazio","city":"Rome"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sdgrumbine/status/682723061972504582","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/EYE_KILL_IT/status/682733285336723456","title":"","type":"Twitter","language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/JamiaStarheart/status/682731873110482944","title":"","type":"Twitter","location":"MA 02657, USA","geolocation":{"id":"USA.MA","name":"Massachusetts","country":"USA","state":"MA","zipcode":"02657"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/SpudLovr/status/682731739194724352","title":"","type":"Twitter","location":"WI, USA","geolocation":{"id":"USA.WI","name":"Wisconsin","country":"USA","state":"WI"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/WhizChem/status/682731972129615873","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/grethm85/status/682743824104484864","title":"","type":"Twitter","location":"Appleton, WI 54911, USA","geolocation":{"id":"USA.WI.Appleton","name":"Appleton","country":"USA","state":"WI","city":"Appleton","zipcode":"54911"},"language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/bchek833/status/682780789747134464","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/djtito/status/682816283197485056","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/s3bland57/status/682733276088287232","title":"","type":"Twitter","location":"Madison, WI 53706, USA","geolocation":{"id":"USA.WI.Madison","name":"Madison","country":"USA","state":"WI","city":"Madison","zipcode":"53706"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/alllibertynews/status/682724103896301569","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/mdjacksondallas/status/682732853184966656","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/ItsTauOk/status/682796305555550208","title":"","type":"Twitter","location":"Johannesburg, Gauteng, ZAF","geolocation":{"id":"ZAF.Gauteng.Johannesburg","name":"Johannesburg","country":"ZAF","state":"Gauteng","city":"Johannesburg"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/swell/status/682731892664172544","title":"","type":"Twitter","location":"WI 53965, USA","geolocation":{"id":"USA.WI","name":"Wisconsin","country":"USA","state":"WI","zipcode":"53965"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/BrettHulseyWI/status/682741071730749440","title":"","type":"Twitter","location":"Madison, WI 53706, USA","geolocation":{"id":"USA.WI.Madison","name":"Madison","country":"USA","state":"WI","city":"Madison","zipcode":"53706"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.19}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/deshaangel/status/682756516689145856","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jeep4wd4me/status/683051567453474817","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/grxciebell/status/682801188044017665","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/pcfyher/status/682741292682612738","title":"","type":"Twitter","location":"FRA","geolocation":{"id":"FRA","name":"France","country":"FRA"},"language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/arianaaakardash/status/682729610438676481","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Elexsis_Nicole/status/682749224706936832","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jjarbeunchima/status/682738941334654976","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sliter_alex/status/682940424483287040","title":"","type":"Twitter","language":"it","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[]},{"url":"http://twitter.com/Oligarchs_Suck/status/683015274782568448","title":"","type":"Twitter","language":"en","authorKlout":33,"assignedCategoryId":4404821235,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.81}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.43},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/beyarianag/status/682748770812051457","title":"","type":"Twitter","location":"Pittsburgh, PA 15112, USA","geolocation":{"id":"USA.PA.Pittsburgh","name":"Pittsburgh","country":"USA","state":"PA","city":"Pittsburgh","zipcode":"15112"},"language":"en","authorKlout":28,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/txmlinsley/status/682742632473296898","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/realkibum/status/682738561876111361","title":"","type":"Twitter","location":"FRA","geolocation":{"id":"FRA","name":"France","country":"FRA"},"language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tuhneeyuh/status/682733738858557440","title":"","type":"Twitter","location":"Charlotte, NC, USA","geolocation":{"id":"USA.NC.Charlotte","name":"Charlotte","country":"USA","state":"NC","city":"Charlotte"},"language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/terryono420/status/682729299221295104","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/malumsjauregui/status/682751250715250688","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mora16Oscar/status/682762843276578816","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jortiller/status/682749603981070337","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/greg_olivia24/status/682765036125851648","title":"","type":"Twitter","language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/feelstyIes/status/682740877048033280","title":"","type":"Twitter","location":"Paris, Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France.Paris","name":"Paris","country":"FRA","state":"Ile-de-France","city":"Paris"},"language":"en","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_Stan_C_/status/682754167782424576","title":"","type":"Twitter","location":"Tema, Greater Accra, GHA","geolocation":{"id":"GHA.Greater Accra.Tema","name":"Tema","country":"GHA","state":"Greater Accra","city":"Tema"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ghostsight/status/682741320872493056","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/thebootymen/status/682757151660609536","title":"","type":"Twitter","location":"Richmond, VA, USA","geolocation":{"id":"USA.VA.Richmond","name":"Richmond","country":"USA","state":"VA","city":"Richmond"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/notkibum/status/682738522227257344","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ThatsMY_Bitch/status/682750089492742144","title":"","type":"Twitter","location":"Miami, FL 33126, USA","geolocation":{"id":"USA.FL.Miami","name":"Miami","country":"USA","state":"FL","city":"Miami","zipcode":"33126"},"language":"en","authorKlout":22,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NorthDakotaHemp/status/682914430837895169","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.14},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.16},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/princessebulma/status/682747461279059971","title":"","type":"Twitter","location":"Paris, Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France.Paris","name":"Paris","country":"FRA","state":"Ile-de-France","city":"Paris"},"language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LtrHZ/status/682741720627458049","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KKKenTV/status/682739579351207936","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hopefullhoseok/status/682735150262693889","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/fallawaysus/status/682745132873957376","title":"","type":"Twitter","location":"San Francisco, CA 94114, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94114"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chebkhaledntwt/status/682898230011650049","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hansolharmony/status/682734460320657408","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/marquiise_/status/682751268662579201","title":"","type":"Twitter","location":"Dallas, TX, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/veniscola/status/682757081150164993","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jdgro3253/status/683007130069151744","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.18},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/aneese___/status/683049250893225985","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"fr","authorKlout":45,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.19},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.81},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/lovesnamjoon/status/682733042838863872","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wasashoot/status/682754384929931264","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/justinftbeth_/status/682756607185321984","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mariusjuh1/status/683038296432328704","title":"","type":"Twitter","language":"it","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[]},{"url":"http://twitter.com/98schild/status/682741122238644224","title":"","type":"Twitter","language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ariaverax/status/682789682808147968","title":"","type":"Twitter","location":"Manila, National Capital Region, PHL","geolocation":{"id":"PHL.National Capital Region.Manila","name":"Manila","country":"PHL","state":"National Capital Region","city":"Manila"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tanginiaz_/status/682749411965849600","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MKopca/status/682750695624146944","title":"","type":"Twitter","location":"Dallas, TX 75040, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75040"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/s0ulchels_/status/682741254522716160","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ssandraalbeer/status/682735336183742464","title":"","type":"Twitter","language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/creamvilla/status/682732628206841857","title":"","type":"Twitter","location":"SAU","geolocation":{"id":"SAU","name":"Saudi Arabia","country":"SAU"},"language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Bayan_rashdan/status/682767172045647872","title":"","type":"Twitter","language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bearhugsboca/status/682756165802037248","title":"","type":"Twitter","language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/imen_th/status/682904848975720448","title":"","type":"Twitter","location":"Paris, Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France.Paris","name":"Paris","country":"FRA","state":"Ile-de-France","city":"Paris"},"language":"en","authorKlout":29,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/saadeglitter/status/682743541290905600","title":"","type":"Twitter","location":"Paris, Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France.Paris","name":"Paris","country":"FRA","state":"Ile-de-France","city":"Paris"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HideEverything/status/682934698176331777","title":"","type":"Twitter","language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Wanderlust4lyf/status/682747894366081025","title":"","type":"Twitter","language":"en","authorKlout":29,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ZQU4D/status/682741351901990912","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/erinbarnesy/status/682751839968870400","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/connorswaIhs/status/682751441623232512","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HannahErhodes/status/682760386135887874","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Danielaaas23/status/682752709787713536","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/anderlxng/status/683072417158316032","title":"","type":"Twitter","location":"Belgrade, Grad Beograd, SRB","geolocation":{"id":"SRB.Grad Beograd.Belgrade","name":"Belgrade","country":"SRB","state":"Grad Beograd","city":"Belgrade"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/fatnorma12/status/682734556215037952","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/veyzuss/status/682750878722473984","title":"","type":"Twitter","language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LarryNiamLiLo/status/682752241468440576","title":"","type":"Twitter","location":"Queensland, AUS","geolocation":{"id":"AUS.Queensland","name":"Queensland","country":"AUS","state":"Queensland"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/unouiscorn/status/682755640318509056","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sebliee/status/682734680861478913","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":24,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/fettyeol/status/682753452330618881","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheRealZiaa/status/682747263186149376","title":"","type":"Twitter","language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/smithxo_/status/682813200941842432","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MilliePalmer12/status/682761169053036545","title":"","type":"Twitter","location":"Brighton, South East, GBR","geolocation":{"id":"GBR.South East.Brighton","name":"Brighton","country":"GBR","state":"South East","city":"Brighton"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dreamfaeri/status/682733318979325954","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":23,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/steffmuniz/status/682750059046252544","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/merveilliam/status/682740949550804993","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/vansftburberry/status/682741239209316352","title":"","type":"Twitter","language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_hiraaaa/status/682757371874160640","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":31,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gallavishy/status/682741084062089216","title":"","type":"Twitter","location":"Moscow, Central, RUS","geolocation":{"id":"RUS.Central.Moscow","name":"Moscow","country":"RUS","state":"Central","city":"Moscow"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/royaIbloods/status/682742252033191936","title":"","type":"Twitter","location":"Nottingham, East Midlands, GBR","geolocation":{"id":"GBR.East Midlands.Nottingham","name":"Nottingham","country":"GBR","state":"East Midlands","city":"Nottingham"},"language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/muddy2468/status/682812994477142016","title":"","type":"Twitter","language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kplakeable/status/682816604732690432","title":"","type":"Twitter","language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/noahrkidney/status/682956271901892608","title":"","type":"Twitter","location":"Burlington, VT 05401, USA","geolocation":{"id":"USA.VT.Burlington","name":"Burlington","country":"USA","state":"VT","city":"Burlington","zipcode":"05401"},"language":"en","authorKlout":18,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/salomelonghurst/status/682942657161760768","title":"","type":"Twitter","language":"en","authorKlout":20,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Britney_Atebe/status/682770702995472384","title":"","type":"Twitter","language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WonderlxndLarry/status/682749321696116736","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/laureenn5/status/682729100365004800","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/smileroncer/status/682743139661148161","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/castleofbricks_/status/682751057265602560","title":"","type":"Twitter","location":"London, Greater London, GBR","geolocation":{"id":"GBR.Greater London.London","name":"London","country":"GBR","state":"Greater London","city":"London"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/amin7fbgm/status/682780600172810240","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/k_nicole1821/status/682754012987314176","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/eggteenager/status/682815021475172353","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":23,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MathildeZain/status/682912019390017537","title":"","type":"Twitter","location":"FRA","geolocation":{"id":"FRA","name":"France","country":"FRA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PoetryUnwritten/status/682740946040188929","title":"","type":"Twitter","language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_parasomnia/status/682738184652861441","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":24,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PeterMcLeod15/status/682752282790858754","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Namjooniexhorse/status/682943297761992704","title":"","type":"Twitter","location":"Paris, Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France.Paris","name":"Paris","country":"FRA","state":"Ile-de-France","city":"Paris"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/frkzme/status/682746282113404929","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/thefaketeni/status/682728921536671744","title":"","type":"Twitter","location":"Toronto, ON, CAN","geolocation":{"id":"CAN.ON.Toronto","name":"Toronto","country":"CAN","state":"ON","city":"Toronto"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LITTLESEASAM/status/682752446456676352","title":"","type":"Twitter","location":"Melbourne, Victoria, AUS","geolocation":{"id":"AUS.Victoria.Melbourne","name":"Melbourne","country":"AUS","state":"Victoria","city":"Melbourne"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Minha_Valeria_/status/682753248600535041","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Makulaaaaa/status/682747287110561794","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/calumbxssist/status/682748225405759489","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/orionslime/status/682732490457518080","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/femellealien/status/682750073629851650","title":"","type":"Twitter","location":"New Orleans, LA 70117, USA","geolocation":{"id":"USA.LA.New Orleans","name":"New Orleans","country":"USA","state":"LA","city":"New Orleans","zipcode":"70117"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/parac05m/status/682733271126556676","title":"","type":"Twitter","language":"en","authorKlout":17,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wanderlustafi/status/682754967120293888","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Newbrokenharmos/status/682747767538774018","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/xoxocaroline_/status/682744275008905217","title":"","type":"Twitter","language":"en","authorKlout":27,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TRESTHICK/status/682728878847180802","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ARlANAGASM/status/682754977329201152","title":"","type":"Twitter","location":"JOR","geolocation":{"id":"JOR","name":"Jordan","country":"JOR"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/amajaej/status/682747435521716224","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/des21214000/status/682807750334803969","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":25,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ravenclaw0/status/682762504838189056","title":"","type":"Twitter","language":"en","authorKlout":13,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]}],"totalPostsAvailable":3778,"status":"success"} \ No newline at end of file diff --git a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-02.json b/apps/topics-mine/tests/data/ch/ch-posts-2016-01-02.json deleted file mode 100644 index a8da84e856..0000000000 --- a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-02.json +++ /dev/null @@ -1 +0,0 @@ -{"posts":[{"url":"http://twitter.com/oceanbcake/status/683425782153121792","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/oceanbcake/status/683426489346297856","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SogueroEjercito/status/683378585915273217","title":"","type":"Twitter","language":"es","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":1.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/MsAvaArmstrong/status/683426229131808769","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":64,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SogaaPorSiempre/status/683411113334161408","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"es","authorKlout":44,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":1.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/PWilliamsD/status/683426958198358016","title":"","type":"Twitter","location":"MA, USA","geolocation":{"id":"USA.MA","name":"Massachusetts","country":"USA","state":"MA"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/thisaintmyland/status/683181638294044673","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sandyaschneider/status/683235980296466432","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":65,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/wood_brdwood68/status/683354137262731264","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WaynoSoCal/status/683103025066446849","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CANDELABRA9/status/683260142737993729","title":"","type":"Twitter","language":"en","authorKlout":11,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.99},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.64},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.23},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/TweesTweets/status/683330104798392320","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/The_News_Time__/status/683284614803136512","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.2},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/oceanbcake/status/683426744175427585","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.52},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JohnnyAnnihilat/status/683234940780056576","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/The_Phat_Kat/status/683353828872175616","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Zwoodbutcher/status/683102790097358848","title":"","type":"Twitter","language":"en","authorKlout":58,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jCar89000/status/683235221890727936","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/chass2008/status/683101755664658432","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AbnInfVet/status/683101079337177089","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/killerspaghett1/status/683177522993868800","title":"","type":"Twitter","location":"CA 91730, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA","zipcode":"91730"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/job_fusion/status/683339996368101376","title":"","type":"Twitter","location":"San Francisco, CA 94114, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94114"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.7},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/DubsLikeWoe/status/683318060921581569","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":19,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.8},{"emotionId":4404821233,"emotionName":"Neutral","score":0.05},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/briantsugawa224/status/683105380931522560","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/risdstudent1/status/683101412268572672","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/glenrnewd/status/683354233664438272","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":35,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PastaLegion/status/683163113340973056","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/elaineyvette1/status/683437552225787904","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sigstarget/status/683101772282396672","title":"","type":"Twitter","location":"Las Vegas, NV 89102, USA","geolocation":{"id":"USA.NV.Las Vegas","name":"Las Vegas","country":"USA","state":"NV","city":"Las Vegas","zipcode":"89102"},"language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/coolwitchcat/status/683432208145772544","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/canthoupicture/status/683135120371417089","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/duchi41/status/683372904050905088","title":"","type":"Twitter","language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.9},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/donaldo_trampa/status/683158214087700480","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/donaldo_trampa/status/683233766144348160","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.31},{"emotionId":4404821233,"emotionName":"Neutral","score":0.35},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Marisacordero3/status/683409032309116928","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90006"},"language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.22},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.34},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/leonierose_320/status/683183189007798273","title":"","type":"Twitter","location":"ON, CAN","geolocation":{"id":"CAN.ON","name":"Ontario","country":"CAN","state":"ON"},"language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.42},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/looouisee_/status/683416755805511680","title":"","type":"Twitter","location":"RUS","geolocation":{"id":"RUS","name":"Russia","country":"RUS"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.09},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bysbl/status/683127125268795393","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.09},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/T_E_D_1949/status/683297027661389824","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.53},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.2},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/dibsonirishboy/status/683147687991054336","title":"","type":"Twitter","location":"Alicante, Valenciana, ESP","geolocation":{"id":"ESP.Valenciana.Alicante","name":"Alicante","country":"ESP","state":"Valenciana","city":"Alicante"},"language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/dsistelIagibson/status/683336364184735745","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/H_K_Marie/status/683288975071576064","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.47},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Pkrbkrmary/status/683099378479828992","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ready2016/status/683412969309380608","title":"","type":"Twitter","language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.39},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/BraveHeart7714/status/683098114803261440","title":"","type":"Twitter","language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ChrisWMitchell/status/683133809496166400","title":"","type":"Twitter","location":"Mesa, AZ, USA","geolocation":{"id":"USA.AZ.Mesa","name":"Mesa","country":"USA","state":"AZ","city":"Mesa"},"language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Chrizamo/status/683351269797441536","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chloestadler/status/683359842157891584","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/vickyunderhill/status/683120469923373056","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/joemonroe5/status/683080367180525570","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ScotchJLK/status/683133280963567620","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PattyDs50/status/683112184323436544","title":"","type":"Twitter","location":"NH, USA","geolocation":{"id":"USA.NH","name":"New Hampshire","country":"USA","state":"NH"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/donttread10/status/683109732945637376","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mason_Dixon_Pat/status/683215811515953152","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Jinnobi33/status/683107677497524224","title":"","type":"Twitter","location":"MS, USA","geolocation":{"id":"USA.MS","name":"Mississippi","country":"USA","state":"MS"},"language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cottsala_gladys/status/683105639921405952","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MrHinNH/status/683126273720344578","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/army1man1/status/683111500697985024","title":"","type":"Twitter","language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/408motors/status/683147206434680832","title":"","type":"Twitter","location":"Orlando, FL 32812, USA","geolocation":{"id":"USA.FL.Orlando","name":"Orlando","country":"USA","state":"FL","city":"Orlando","zipcode":"32812"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/GuyMonzeglio/status/683081081008984064","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/canneyoung1/status/683105365110710273","title":"","type":"Twitter","location":"NGA","geolocation":{"id":"NGA","name":"Nigeria","country":"NGA"},"language":"en","authorKlout":56,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/deb_sadie/status/683125135356788736","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Tea4Freedom/status/683117385973301248","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.55},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/cajun032759/status/683117668031967232","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.55},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/dxrpi/status/683108752984129536","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":57,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/democrapssuck/status/683308716293251072","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":54,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/luce_pyre/status/683138703359774720","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KenMurakami/status/683215471517106180","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NJMike319/status/683124209812373504","title":"","type":"Twitter","location":"NJ, USA","geolocation":{"id":"USA.NJ","name":"New Jersey","country":"USA","state":"NJ"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/leomvictory/status/683125486629826560","title":"","type":"Twitter","language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.04},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.95},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.35},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/ProudLovatiic/status/683357572112498689","title":"","type":"Twitter","language":"en","authorKlout":25,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cturtle31/status/683108065713852417","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dee4414/status/683311403390885890","title":"","type":"Twitter","language":"en","authorKlout":31,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JimmyRae4senate/status/683291138799833088","title":"","type":"Twitter","language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.03},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.13},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.33},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/AndrewArlink/status/683079974367014912","title":"","type":"Twitter","language":"en","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/5kidsaremine/status/683105150915969024","title":"","type":"Twitter","location":"Indianapolis, IN 46202, USA","geolocation":{"id":"USA.IN.Indianapolis","name":"Indianapolis","country":"USA","state":"IN","city":"Indianapolis","zipcode":"46202"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tropicallyharry/status/683378530483216384","title":"","type":"Twitter","language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Kyrieharanczak/status/683359385079300096","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/daddysluke/status/683362015419699201","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Laurens4Ted/status/683119239067119616","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wstpatriot/status/683304487230914560","title":"","type":"Twitter","location":"VA, USA","geolocation":{"id":"USA.VA","name":"Virginia","country":"USA","state":"VA"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PattyWheeler12/status/683305050442186754","title":"","type":"Twitter","location":"Atlanta, GA 30309, USA","geolocation":{"id":"USA.GA.Atlanta","name":"Atlanta","country":"USA","state":"GA","city":"Atlanta","zipcode":"30309"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DalyMcEverK/status/683086746242920448","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sm89458003/status/683354819118120961","title":"","type":"Twitter","language":"en","authorKlout":25,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SherifSherif18/status/683348599565094912","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"19131"},"language":"en","authorKlout":18,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.19},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.23},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.3},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/RobinLeJavier/status/683375459493634050","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JoyceBruns/status/683112490067087360","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BigDuhie1955/status/683105557658484736","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mkahnerx82/status/683215065961644032","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/djross95/status/683299104135446528","title":"","type":"Twitter","location":"Philadelphia, PA, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KimDorey2/status/683313045863411714","title":"","type":"Twitter","language":"en","authorKlout":13,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CarloAlterego/status/683106605408337920","title":"","type":"Twitter","location":"ITA","geolocation":{"id":"ITA","name":"Italy","country":"ITA"},"language":"en","authorKlout":58,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Fairfax51/status/683299678541066241","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/alamairs/status/683215748471246848","title":"","type":"Twitter","location":"Sydney, New South Wales, AUS","geolocation":{"id":"AUS.New South Wales.Sydney","name":"Sydney","country":"AUS","state":"New South Wales","city":"Sydney"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/damemoto2011/status/683125212045389824","title":"","type":"Twitter","location":"Tokyo, Tokyo, JPN","geolocation":{"id":"JPN.Tokyo.Tokyo","name":"Tokyo","country":"JPN","state":"Tokyo","city":"Tokyo"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/stevegbell1981/status/683215989564141568","title":"","type":"Twitter","language":"en","authorKlout":27,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/thedmanbklyn/status/683130075659812864","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Margee11/status/683298441053650944","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":60,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BoydReady1/status/683125184203640832","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BreenAllen/status/683110596011687936","title":"","type":"Twitter","language":"en","authorKlout":19,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dennear/status/683178625139474432","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Ja18Jay/status/683354306158792704","title":"","type":"Twitter","language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/9975Ts/status/683131415718789120","title":"","type":"Twitter","language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/david_betch/status/683386214792179712","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/angelathomas22/status/683106292177727488","title":"","type":"Twitter","language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/theidealtwit/status/683328059521503232","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FreedomChild3/status/683104642738302976","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":65,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Manoloparis_/status/683412507994779650","title":"","type":"Twitter","location":"Bogota, Bogota, COL","geolocation":{"id":"COL.Bogota.Bogota","name":"Bogota","country":"COL","state":"Bogota","city":"Bogota"},"language":"it","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/TIMENOUT/status/683123951409704960","title":"","type":"Twitter","language":"en","authorKlout":66,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LeeSutton4/status/683129513455292417","title":"","type":"Twitter","language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cgpb/status/683331979899744256","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DanforthYachts/status/683218069041352704","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KShambli/status/683124442474528768","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mackette52/status/683117106670518272","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.55},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/iKrazox/status/683353481328095232","title":"","type":"Twitter","language":"en","authorKlout":33,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/UpInTheHills/status/683075339719815169","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":54,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Kloryssa44/status/683376526746906628","title":"","type":"Twitter","location":"Pays de la Loire, FRA","geolocation":{"id":"FRA.Pays de la Loire","name":"Pays de la Loire","country":"FRA","state":"Pays de la Loire"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rwmccrory/status/683115779592564737","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/mltucker2/status/683118118466666496","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.55},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/evastaxin/status/683178478863298560","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LorraineCaracc1/status/683214940199489537","title":"","type":"Twitter","location":"Las Vegas, NV 89102, USA","geolocation":{"id":"USA.NV.Las Vegas","name":"Las Vegas","country":"USA","state":"NV","city":"Las Vegas","zipcode":"89102"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MissCandio/status/683105684704096256","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LUISMPEREZ3/status/683397123635691521","title":"","type":"Twitter","location":"Tucson, AZ 85719, USA","geolocation":{"id":"USA.AZ.Tucson","name":"Tucson","country":"USA","state":"AZ","city":"Tucson","zipcode":"85719"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.05},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.38},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.05},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.07}]},{"url":"http://twitter.com/pinnie99/status/683126254980194305","title":"","type":"Twitter","location":"PA, USA","geolocation":{"id":"USA.PA","name":"Pennsylvania","country":"USA","state":"PA"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HippieChickify/status/683075979409936385","title":"","type":"Twitter","location":"Atlanta, GA, USA","geolocation":{"id":"USA.GA.Atlanta","name":"Atlanta","country":"USA","state":"GA","city":"Atlanta"},"language":"en","authorKlout":27,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GaylynR/status/683108919770664961","title":"","type":"Twitter","location":"Oklahoma City, OK, USA","geolocation":{"id":"USA.OK.Oklahoma City","name":"Oklahoma City","country":"USA","state":"OK","city":"Oklahoma City"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Veart/status/683108162224795649","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":14,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mimi_saulino/status/683407024068112384","title":"","type":"Twitter","language":"en","authorKlout":61,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Razorswiftz/status/683410072714743808","title":"","type":"Twitter","location":"NGA","geolocation":{"id":"NGA","name":"Nigeria","country":"NGA"},"language":"en","authorKlout":15,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/garthkirkwood/status/683388230545346564","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cottsala_gladys/status/683408312528801793","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LindaEpai457450/status/683410295889510400","title":"","type":"Twitter","language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DonThato_/status/683265792545308672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.07}]},{"url":"http://twitter.com/a_ababj/status/683116048837509120","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.28},{"emotionId":4404821232,"emotionName":"Fear","score":0.23},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/a_ababj/status/683111393218805760","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.28},{"emotionId":4404821232,"emotionName":"Fear","score":0.23},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Terryc44Curtis/status/683332603588571136","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/alexandraheuser/status/683081226220077057","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.19},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/suspiciousrobot/status/683284015747608576","title":"","type":"Twitter","language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_ababj/status/683116158942236672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.28},{"emotionId":4404821232,"emotionName":"Fear","score":0.23},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Wolf_Oaks/status/683314386556063744","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_ababj/status/683116104575664128","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.28},{"emotionId":4404821232,"emotionName":"Fear","score":0.23},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ShellyLeigh123/status/683324877844041728","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JRedberger/status/683106771242627072","title":"","type":"Twitter","language":"en","authorKlout":13,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JoshuaBuice/status/683122098458464256","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wheeliesmom/status/683316174323585024","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.6},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/LeRuscino/status/683179855245099008","title":"","type":"Twitter","location":"MCO","geolocation":{"id":"MCO","name":"Monaco","country":"MCO"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/dspm_mx/status/683198444341608448","title":"","type":"Twitter","location":"Veracruz, Veracruz, MEX","geolocation":{"id":"MEX.Veracruz.Veracruz","name":"Veracruz","country":"MEX","state":"Veracruz","city":"Veracruz"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DrdaveAnddee/status/683118197302640640","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheCarbonator/status/683329410796261376","title":"","type":"Twitter","location":"RUS","geolocation":{"id":"RUS","name":"Russia","country":"RUS"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/agatha290/status/683082346879397889","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ready2016/status/683425418733420544","title":"","type":"Twitter","language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/historyscoper/status/683117036092940288","title":"","type":"Twitter","location":"Denver, CO, USA","geolocation":{"id":"USA.CO.Denver","name":"Denver","country":"USA","state":"CO","city":"Denver"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.11},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/bowen_sandra/status/683135422927507456","title":"","type":"Twitter","language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DeusVultUSMC/status/683328898227171331","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/TreesDanceAlone/status/683413200780431361","title":"","type":"Twitter","location":"San Francisco, CA 94114, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94114"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/IL9CD4Bernie/status/683398129329152000","title":"","type":"Twitter","location":"IL, USA","geolocation":{"id":"USA.IL","name":"Illinois","country":"USA","state":"IL"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/loudavis2000/status/683103261168029700","title":"","type":"Twitter","location":"Tacoma, WA 98405, USA","geolocation":{"id":"USA.WA.Tacoma","name":"Tacoma","country":"USA","state":"WA","city":"Tacoma","zipcode":"98405"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/BraceroWAPA/status/683419743198535680","title":"","type":"Twitter","location":"San Juan, Puerto Rico, PRI","geolocation":{"id":"PRI.Puerto Rico.San Juan","name":"San Juan","country":"PRI","state":"Puerto Rico","city":"San Juan"},"language":"es","authorKlout":20,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/Bernie2K16/status/683397287066890240","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AnonDroidNet/status/683181379538948098","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/mackette52/status/683117050835910657","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ktd101551/status/683412369804902401","title":"","type":"Twitter","language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kkwyant/status/683121380624236544","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/pal29b/status/683314150924144640","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sweetromance/status/683126742794563584","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":60,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KAIJUKING23/status/683396822199578624","title":"","type":"Twitter","location":"Orlando, FL 32812, USA","geolocation":{"id":"USA.FL.Orlando","name":"Orlando","country":"USA","state":"FL","city":"Orlando","zipcode":"32812"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cathyspartanj/status/683118419810582529","title":"","type":"Twitter","language":"en","authorKlout":59,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sarahdfls/status/683277578514395136","title":"","type":"Twitter","location":"Paris, Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France.Paris","name":"Paris","country":"FRA","state":"Ile-de-France","city":"Paris"},"language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SutterMGreaves1/status/683333585282043904","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":20,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/RosenellKeene/status/683124418873266176","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/baileycirce/status/683131991810818048","title":"","type":"Twitter","location":"Atlanta, GA 30309, USA","geolocation":{"id":"USA.GA.Atlanta","name":"Atlanta","country":"USA","state":"GA","city":"Atlanta","zipcode":"30309"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BLUIZK81/status/683123534042759168","title":"","type":"Twitter","language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/T17R_TEdinger/status/683124576960647168","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/C4Constitution/status/683122080209104897","title":"","type":"Twitter","language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mackette52/status/683116907902402560","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.35},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/laurencristmann/status/683123614737133571","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Amberis4LSU/status/683116647759003650","title":"","type":"Twitter","location":"AL, USA","geolocation":{"id":"USA.AL","name":"Alabama","country":"USA","state":"AL"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/fallenandroo/status/683342277587013632","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"53545"},"language":"en","authorKlout":23,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.32},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mackette52/status/683116970133295105","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Janetlarose1/status/683118859793108992","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Cmhogan473/status/683123389117140992","title":"","type":"Twitter","location":"Chicago, IL, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Christy18835752/status/683119072398020608","title":"","type":"Twitter","location":"AR, USA","geolocation":{"id":"USA.AR","name":"Arkansas","country":"USA","state":"AR"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SpeakOutClearly/status/683279646721363968","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/frjennie7/status/683176173791215617","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TXChiks4Trump/status/683373121617805313","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/superocean522/status/683415478535106560","title":"","type":"Twitter","language":"es","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/Dmbsr312/status/683263582088335360","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/alexandraheuser/status/683081185401159680","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MaxCUA/status/683134704569159681","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":56,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/dewebb72/status/683152878928670721","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/LexiD17/status/683201056004677632","title":"","type":"Twitter","location":"CA 94041, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA","zipcode":"94041"},"language":"en","authorKlout":28,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/patriotmom2911/status/683137347601477633","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/EB_imconfus/status/683134630623490049","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":60,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/LibertyHead1913/status/683127238011703296","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DebHiers1/status/683093361771855872","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Awgjohn/status/683137715341254656","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Robertfata1/status/683336759950852096","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/AnonDroidNet/status/683124105994874880","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Verdesto/status/683135878626029568","title":"","type":"Twitter","location":"CA 92284, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA","zipcode":"92284"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Tesla_X/status/683115860857237504","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/katypillar70/status/683151274779357184","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Tole732/status/683092643677630465","title":"","type":"Twitter","language":"es","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/IndieScent/status/683410007996641280","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RlorCATO/status/683090641719537665","title":"","type":"Twitter","language":"es","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/Skywaalkeeeer/status/683285713031434240","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/netwrkguy/status/683399352669241344","title":"","type":"Twitter","location":"Seattle, WA 98109, USA","geolocation":{"id":"USA.WA.Seattle","name":"Seattle","country":"USA","state":"WA","city":"Seattle","zipcode":"98109"},"language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mackette52/status/683117145430056961","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.0},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/geraardotorres/status/683101014514380801","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/_FabianPizarro/status/683087640883793920","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"es","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/ready2016/status/683076720266629120","title":"","type":"Twitter","language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.15},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.62},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ciclistrock/status/683289354509365248","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/DJFORFREEDOM/status/683288077142458369","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hornse/status/683416001417986048","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/pancho_1988/status/683095330653630468","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/iSpooker/status/683103769186414592","title":"","type":"Twitter","language":"es","authorKlout":22,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/CalmSour/status/683091294034522113","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/mackette52/status/683116751740076032","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/sebastianpaxe/status/683086185586143233","title":"","type":"Twitter","language":"es","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/Hoogueeto/status/683091087968329728","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/RodrigoA1925/status/683085903892451328","title":"","type":"Twitter","language":"es","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/gonzaleznomas/status/683349342426644481","title":"","type":"Twitter","location":"Temuco, La Araucania, CHL","geolocation":{"id":"CHL.La Araucania.Temuco","name":"Temuco","country":"CHL","state":"La Araucania","city":"Temuco"},"language":"es","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/galaxybxbe/status/683427429701017601","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":21,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.35},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.09},{"emotionId":4404821232,"emotionName":"Fear","score":0.24},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/LorcoDeRemate/status/683095039430541313","title":"","type":"Twitter","language":"es","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/gonza_maza/status/683099422905995264","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/CarlosEsDelAlbo/status/683086138194657280","title":"","type":"Twitter","language":"es","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/Yo77777777777/status/683115443037597697","title":"","type":"Twitter","language":"es","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/ricthesaint/status/683087215644295168","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/Claudio__AGL/status/683285527324405760","title":"","type":"Twitter","location":"Concepcion, Bio-Bio, CHL","geolocation":{"id":"CHL.Bio-Bio.Concepcion","name":"Concepcion","country":"CHL","state":"Bio-Bio","city":"Concepcion"},"language":"es","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/T_E_D_1949/status/683297566226792448","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RaulVB/status/683091656967499776","title":"","type":"Twitter","language":"es","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/JacquesHamish/status/683095910591631360","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":30,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/kithoodelaUC/status/683086354604011521","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/giovareuk/status/683086816577196032","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/_AngeloGotelli_/status/683286041902604288","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/YungVo72/status/683410451640680449","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":40,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.1},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rm55m0/status/683244644491214848","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ZMagerz/status/683123999593902080","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/SOymmmh/status/683307591762620416","title":"","type":"Twitter","location":"IRL","geolocation":{"id":"IRL","name":"Ireland","country":"IRL"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Spray_Anything/status/683256158644080641","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KeattsTom/status/683244576912601088","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/doccolorado/status/683352546161762304","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/ItayDonanhirsh/status/683103619713925120","title":"","type":"Twitter","location":"San Francisco, CA 94596, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94596"},"language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/whispers34/status/683127311017758720","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FortineraZar/status/683246490173751297","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FreedomTrucker/status/683241801419886592","title":"","type":"Twitter","location":"WA, USA","geolocation":{"id":"USA.WA","name":"Washington","country":"USA","state":"WA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/YngConsrvatvGrl/status/683244811244146688","title":"","type":"Twitter","language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Ridolas/status/683136582656856065","title":"","type":"Twitter","location":"Paris, Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France.Paris","name":"Paris","country":"FRA","state":"Ile-de-France","city":"Paris"},"language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/OfficialDeej_/status/683320562366726144","title":"","type":"Twitter","language":"en","authorKlout":28,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/samsimmonss/status/683223411825471488","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90006"},"language":"en","authorKlout":79,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/stylestomlinsun/status/683123431160692736","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WillemLafluer/status/683238985070702592","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mackette52/status/683116492163026944","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/subzero095/status/683080405239619584","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":17,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KarenCyars2/status/683383208344424448","title":"","type":"Twitter","language":"en","authorKlout":21,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ashlynn_nacole/status/683262238677987328","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mackette52/status/683116925501751296","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/elyssalol/status/683103885955739648","title":"","type":"Twitter","location":"Tucson, AZ 85719, USA","geolocation":{"id":"USA.AZ.Tucson","name":"Tucson","country":"USA","state":"AZ","city":"Tucson","zipcode":"85719"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Benjii_mannn/status/683410087923208192","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"78201"},"language":"en","authorKlout":41,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.1},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PatinGA2/status/683249921181511681","title":"","type":"Twitter","location":"Atlanta, GA, USA","geolocation":{"id":"USA.GA.Atlanta","name":"Atlanta","country":"USA","state":"GA","city":"Atlanta"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TomSupmanbro/status/683343912417624064","title":"","type":"Twitter","location":"San Francisco, CA 94601, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94601"},"language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/enzinesan/status/683378348265885696","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.24},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.74}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.0},{"emotionId":4404821236,"emotionName":"Disgust","score":0.88},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Virginia4USA/status/683372137952997376","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.46},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/toptradesmen/status/683270530330398720","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.16},{"emotionId":4404821233,"emotionName":"Neutral","score":0.47},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KgKathryn/status/683099947311345664","title":"","type":"Twitter","location":"Sacramento, CA 95819, USA","geolocation":{"id":"USA.CA.Sacramento","name":"Sacramento","country":"USA","state":"CA","city":"Sacramento","zipcode":"95819"},"language":"en","authorKlout":62,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.14},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/politicsiq/status/683180848242233344","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.31},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/JKsSpicyLatina/status/683406211811680260","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.19},{"emotionId":4404821233,"emotionName":"Neutral","score":0.4},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/Django_Jack/status/683372413539717120","title":"","type":"Twitter","language":"en","authorKlout":29,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.12},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.88},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.23},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.7},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LucasBarreraF/status/683231840036085760","title":"","type":"Twitter","location":"Valencia, Valenciana, ESP","geolocation":{"id":"ESP.Valenciana.Valencia","name":"Valencia","country":"ESP","state":"Valenciana","city":"Valencia"},"language":"es","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/gcharlesxoxo/status/683322581081034752","title":"","type":"Twitter","location":"Miami, FL 33126, USA","geolocation":{"id":"USA.FL.Miami","name":"Miami","country":"USA","state":"FL","city":"Miami","zipcode":"33126"},"language":"en","authorKlout":63,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.46},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/follownewsnow/status/683243512050024448","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.06},{"emotionId":4404821232,"emotionName":"Fear","score":0.62},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/sheryl_monk/status/683097499251388416","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.14},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/RamonSomoza/status/683362389119520768","title":"","type":"Twitter","location":"Madrid, Madrid, ESP","geolocation":{"id":"ESP.Madrid.Madrid","name":"Madrid","country":"ESP","state":"Madrid","city":"Madrid"},"language":"es","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/jj300/status/683323219005161472","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.1},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.88}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.24},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.14},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/DAMSASHH/status/683078523569967105","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"33050"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.2},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.43},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/misstrishoh/status/683085266396000256","title":"","type":"Twitter","location":"OH, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.32},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DarleneHBrook/status/683384957205622784","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mackette52/status/683114659914891265","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.4},{"emotionId":4404821233,"emotionName":"Neutral","score":0.45},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/omahabe2/status/683200330524405760","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.53},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.3},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/jtblogs/status/683286809128910848","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.32},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/shagmar73/status/683204046526803968","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.53},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.3},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/cancerbero_real/status/683380168254078976","title":"","type":"Twitter","location":"Mexico City, Distrito Federal, MEX","geolocation":{"id":"MEX.Distrito Federal.Mexico City","name":"Mexico City","country":"MEX","state":"Distrito Federal","city":"Mexico City"},"language":"es","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[]},{"url":"http://twitter.com/RooseveltChaun/status/683425993755758592","title":"","type":"Twitter","language":"en","authorKlout":55,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.43},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.55},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.87},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.06},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/haroldweichold1/status/683340953956974592","title":"","type":"Twitter","language":"en","authorKlout":17,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/reedstiles123/status/683422431009181696","title":"","type":"Twitter","language":"en","authorKlout":16,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/onahunttoday/status/683312410430668801","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.42},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/cottsala_gladys/status/683122532833046528","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Nutellaa_Is_Bae/status/683085792894320640","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ridley48A/status/683316446861111296","title":"","type":"Twitter","location":"VA, USA","geolocation":{"id":"USA.VA","name":"Virginia","country":"USA","state":"VA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.42},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/PicatronPica/status/683399449842954240","title":"","type":"Twitter","language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Slenophile/status/683277559656742912","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/taminespr/status/683314810839154688","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.42},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/audreyfashion4/status/683357147673919488","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gcamp4/status/683108426071724033","title":"","type":"Twitter","location":"UT, USA","geolocation":{"id":"USA.UT","name":"Utah","country":"USA","state":"UT"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/PicatronPica/status/683398208798732290","title":"","type":"Twitter","language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/deciplecake/status/683388072944336896","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.36},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.13}]},{"url":"http://twitter.com/9975Ts/status/683133621700431873","title":"","type":"Twitter","language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/John_Beewley/status/683225684483768320","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.11}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.06},{"emotionId":4404821232,"emotionName":"Fear","score":0.73},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/215Dev_/status/683386245456728065","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":60,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.36},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.13}]},{"url":"http://twitter.com/SagDecWho/status/683236243195490304","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/pjmccluskey/status/683305696402751488","title":"","type":"Twitter","location":"Dublin, Dublin, IRL","geolocation":{"id":"IRL.Dublin.Dublin","name":"Dublin","country":"IRL","state":"Dublin","city":"Dublin"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GusPunkMCPE/status/683099661981241345","title":"","type":"Twitter","language":"en","authorKlout":18,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/im4DJTrump/status/683118906559586304","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/noahramm/status/683418227888787456","title":"","type":"Twitter","language":"en","authorKlout":16,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/MartinDoyleIT/status/683301098585763840","title":"","type":"Twitter","location":"Dublin, Dublin, IRL","geolocation":{"id":"IRL.Dublin.Dublin","name":"Dublin","country":"IRL","state":"Dublin","city":"Dublin"},"language":"en","authorKlout":57,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/steve_thorpe7/status/683293713443983360","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Aceentity/status/683108694934945792","title":"","type":"Twitter","language":"en","authorKlout":26,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jeanee5TAM/status/683330296486309888","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/leonierose_320/status/683182694591676416","title":"","type":"Twitter","location":"ON, CAN","geolocation":{"id":"CAN.ON","name":"Ontario","country":"CAN","state":"ON"},"language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.11}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Britanniacomms/status/683291634142953473","title":"","type":"Twitter","location":"London, Greater London, GBR","geolocation":{"id":"GBR.Greater London.London","name":"London","country":"GBR","state":"Greater London","city":"London"},"language":"en","authorKlout":80,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/swterry91/status/683319317308411904","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mackette52/status/683116982686842880","title":"","type":"Twitter","location":"Harrisburg, PA, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DarleenRusnak/status/683315986699689985","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"40031"},"language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.42},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/kimberly010960/status/683135153472815104","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/NoParty2016/status/683318504385343489","title":"","type":"Twitter","location":"West Palm Beach, FL 34684, USA","geolocation":{"id":"USA.FL.West Palm Beach","name":"West Palm Beach","country":"USA","state":"FL","city":"West Palm Beach","zipcode":"34684"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/topbunmalik/status/683203845053386752","title":"","type":"Twitter","language":"en","authorKlout":51,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.52},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tatianaruizz1/status/683210196219506688","title":"","type":"Twitter","language":"en","authorKlout":19,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/ShellyLeigh123/status/683118413271543808","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/cathyspartanj/status/683117900757118976","title":"","type":"Twitter","language":"en","authorKlout":59,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/victorciles/status/683322155753418753","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/Slenophile/status/683278284449288192","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/debbietexaslg/status/683115673598296066","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/jsage99/status/683380621675212804","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/LeslieWix/status/683124300564557824","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.35},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/codymfhughes/status/683386201756307456","title":"","type":"Twitter","language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.36},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.13}]},{"url":"http://twitter.com/Kenziebell__/status/683075750187028480","title":"","type":"Twitter","location":"IN, USA","geolocation":{"id":"USA.IN","name":"Indiana","country":"USA","state":"IN"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.36},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.13}]},{"url":"http://twitter.com/Brunnabreu23/status/683277690552610816","title":"","type":"Twitter","language":"es","authorKlout":22,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/leticiaatriaga/status/683142450714689536","title":"","type":"Twitter","language":"en","authorKlout":18,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/camilatakeyou/status/683152133168955393","title":"","type":"Twitter","language":"es","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/debilityhansen/status/683345905857245188","title":"","type":"Twitter","language":"es","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/Jinah_Dane97/status/683347366531837952","title":"","type":"Twitter","location":"Monterrey, Nuevo Leon, MEX","geolocation":{"id":"MEX.Nuevo Leon.Monterrey","name":"Monterrey","country":"MEX","state":"Nuevo Leon","city":"Monterrey"},"language":"es","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/PatriotRider/status/683345787376525313","title":"","type":"Twitter","location":"Buffalo, NY 14208, USA","geolocation":{"id":"USA.NY.Buffalo","name":"Buffalo","country":"USA","state":"NY","city":"Buffalo","zipcode":"14208"},"language":"en","authorKlout":56,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jaurediamonds/status/683153648428290048","title":"","type":"Twitter","location":"San Juan, Puerto Rico, PRI","geolocation":{"id":"PRI.Puerto Rico.San Juan","name":"San Juan","country":"PRI","state":"Puerto Rico","city":"San Juan"},"language":"es","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/TerpsFan1994/status/683346241959366656","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lelamorales21/status/683152057981743104","title":"","type":"Twitter","location":"San Juan, Puerto Rico, PRI","geolocation":{"id":"PRI.Puerto Rico.San Juan","name":"San Juan","country":"PRI","state":"Puerto Rico","city":"San Juan"},"language":"es","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/bixbsflaws/status/683152289989660672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"es","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/Bill_Huff/status/683081536925728768","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/juanaldama7/status/683356013647556608","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Evelyn4312/status/683345495268306944","title":"","type":"Twitter","language":"es","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/MCCANNSHARMONY/status/683152066928349184","title":"","type":"Twitter","location":"San Juan, Puerto Rico, PRI","geolocation":{"id":"PRI.Puerto Rico.San Juan","name":"San Juan","country":"PRI","state":"Puerto Rico","city":"San Juan"},"language":"es","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/Manuela5Jimenez/status/683159477743415302","title":"","type":"Twitter","location":"Bogota, Bogota, COL","geolocation":{"id":"COL.Bogota.Bogota","name":"Bogota","country":"COL","state":"Bogota","city":"Bogota"},"language":"es","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/SrtSayago/status/683345506056179712","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"es","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/Stefazapata13/status/683346193393553409","title":"","type":"Twitter","location":"COL","geolocation":{"id":"COL","name":"Colombia","country":"COL"},"language":"es","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/5HMyLifeAndSun/status/683345379526586369","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":35,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/Hazzxtommo/status/683344468360196096","title":"","type":"Twitter","location":"San Juan, Puerto Rico, PRI","geolocation":{"id":"PRI.Puerto Rico.San Juan","name":"San Juan","country":"PRI","state":"Puerto Rico","city":"San Juan"},"language":"es","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/drunkjxregui/status/683152423272108033","title":"","type":"Twitter","location":"Mexico City, Distrito Federal, MEX","geolocation":{"id":"MEX.Distrito Federal.Mexico City","name":"Mexico City","country":"MEX","state":"Distrito Federal","city":"Mexico City"},"language":"es","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/07_alex13/status/683160295246696448","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"es","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/bieberftyoyo/status/683152245936926720","title":"","type":"Twitter","location":"NY, USA","geolocation":{"id":"USA.NY","name":"New York","country":"USA","state":"NY"},"language":"es","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/hwhittle74/status/683330783113789441","title":"","type":"Twitter","location":"TN, USA","geolocation":{"id":"USA.TN","name":"Tennessee","country":"USA","state":"TN"},"language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mikeeyboobear70/status/683345814836514816","title":"","type":"Twitter","language":"es","authorKlout":26,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/laurendrunk_/status/683344133528915968","title":"","type":"Twitter","language":"es","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/CAMREN__GIRL/status/683348845003157504","title":"","type":"Twitter","language":"es","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/gulfcoastbred/status/683417705110700033","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Emma5HLJ/status/683345317169766400","title":"","type":"Twitter","language":"es","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/Mariana_2034/status/683345485126569984","title":"","type":"Twitter","language":"es","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/laurenojitos/status/683345332806221824","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"es","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/njpre/status/683075397936910337","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.4},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.22},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/lumelphicharmic/status/683291081518256129","title":"","type":"Twitter","language":"pt","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/leginfo/status/683080322561380352","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wanessarps91/status/683292147223773185","title":"","type":"Twitter","location":"Crato, CE, BRA","geolocation":{"id":"BRA.CE.Crato","name":"Crato","country":"BRA","state":"CE","city":"Crato"},"language":"pt","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/WickNWares/status/683095521712447488","title":"","type":"Twitter","language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AMOROSOSLUAR/status/683291283092336640","title":"","type":"Twitter","language":"pt","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/DeeAndee7/status/683101124316930048","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Suz_Todd/status/683089008751153152","title":"","type":"Twitter","location":"IL, USA","geolocation":{"id":"USA.IL","name":"Illinois","country":"USA","state":"IL"},"language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chesterbadger3/status/683088198411485184","title":"","type":"Twitter","location":"San Francisco, CA 94114, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94114"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/singletrackdan/status/683091104095449088","title":"","type":"Twitter","location":"Nashville, TN 37201, USA","geolocation":{"id":"USA.TN.Nashville","name":"Nashville","country":"USA","state":"TN","city":"Nashville","zipcode":"37201"},"language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/uptownknowles/status/683155528827187200","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.15},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.84},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.14},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.47},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PresSanders1/status/683088004143919104","title":"","type":"Twitter","location":"Las Cruces, NM 88001, USA","geolocation":{"id":"USA.NM.Las Cruces","name":"Las Cruces","country":"USA","state":"NM","city":"Las Cruces","zipcode":"88001"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sampuzzo/status/683088700100591616","title":"","type":"Twitter","location":"MA, USA","geolocation":{"id":"USA.MA","name":"Massachusetts","country":"USA","state":"MA"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ReneNowb/status/683310376499425280","title":"","type":"Twitter","language":"es","authorKlout":28,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[]},{"url":"http://twitter.com/JonMart9923/status/683092865778487296","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Shorty_xxx3/status/683163999463161856","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.16},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.84},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LeidyR8/status/683392772401844224","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.79},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.84},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/azannaphx/status/683087536596496385","title":"","type":"Twitter","location":"Phoenix, AZ 85013, USA","geolocation":{"id":"USA.AZ.Phoenix","name":"Phoenix","country":"USA","state":"AZ","city":"Phoenix","zipcode":"85013"},"language":"en","authorKlout":60,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/orange_parrot19/status/683089790154059776","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Observer142/status/683089957364318211","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mercurial891/status/683092468036976641","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jjmartini21/status/683092265779073024","title":"","type":"Twitter","location":"Santa Barbara, CA 93105, USA","geolocation":{"id":"USA.CA.Santa Barbara","name":"Santa Barbara","country":"USA","state":"CA","city":"Santa Barbara","zipcode":"93105"},"language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DANGELSHIPPER/status/683302074633826304","title":"","type":"Twitter","location":"Sao Paulo, SP, BRA","geolocation":{"id":"BRA.SP.Sao Paulo","name":"Sao Paulo","country":"BRA","state":"SP","city":"Sao Paulo"},"language":"pt","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/winwarchr/status/683390434173956096","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/stevemeredith21/status/683349743347474432","title":"","type":"Twitter","language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/donaldo_trampa/status/683094238834388994","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.31},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.65}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.83},{"emotionId":4404821233,"emotionName":"Neutral","score":0.03},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/izadoreem/status/683335282410668033","title":"","type":"Twitter","language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/slobo66/status/683334215971123200","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rileyayyers/status/683293774496305152","title":"","type":"Twitter","location":"Auburn, AL, USA","geolocation":{"id":"USA.AL.Auburn","name":"Auburn","country":"USA","state":"AL","city":"Auburn"},"language":"en","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.11}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.17},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SydFromThe6/status/683371180598910976","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/saveusrepublic2/status/683351593379483648","title":"","type":"Twitter","location":"MS, USA","geolocation":{"id":"USA.MS","name":"Mississippi","country":"USA","state":"MS"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/larouti/status/683390698519842816","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gawrite/status/683391127760809984","title":"","type":"Twitter","language":"en","authorKlout":54,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/uliw315/status/683101807799857152","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/VaroYan/status/683360111985819648","title":"","type":"Twitter","location":"Yerevan, Erevan, ARM","geolocation":{"id":"ARM.Erevan.Yerevan","name":"Yerevan","country":"ARM","state":"Erevan","city":"Yerevan"},"language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HausOfTechPop/status/683127761758629888","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Iiberalteen/status/683184678480678912","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.13},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.63},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/clantro/status/683078057523941376","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.16},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.82}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/VRebeque/status/683279621765332992","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"pt","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/vampiremims/status/683311403151659008","title":"","type":"Twitter","location":"Seoul, Seoul, KOR","geolocation":{"id":"KOR.Seoul.Seoul","name":"Seoul","country":"KOR","state":"Seoul","city":"Seoul"},"language":"en","authorKlout":52,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.82},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/b_bigglehorn/status/683284047917744128","title":"","type":"Twitter","location":"Los Angeles, CA 90006, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90006"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/zxupstartzx/status/683131626398683136","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/adrianirvan/status/683311790877323268","title":"","type":"Twitter","location":"SGP","geolocation":{"id":"SGP","name":"Singapore","country":"SGP"},"language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DrAvariceJ/status/683392868908662784","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.15},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/jordan_walton20/status/683394019775377408","title":"","type":"Twitter","language":"en","authorKlout":24,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.48},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.49},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ajbuckner85/status/683078769800683520","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.16},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.82}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/clantro/status/683078036342702080","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.15}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.17},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.19},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/robertobenigno/status/683127246664667136","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MaryBakerArt/status/683425962915164162","title":"","type":"Twitter","location":"Boston, MA, USA","geolocation":{"id":"USA.MA.Boston","name":"Boston","country":"USA","state":"MA","city":"Boston"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.15},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.5},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/28Nadhifa/status/683145401260638208","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/djtito/status/683161155993530368","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/StephaniHarris2/status/683182164477915136","title":"","type":"Twitter","language":"en","authorKlout":14,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.61},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.35},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/anyiah_flores/status/683118712958758912","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":16,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DwayneRSaunders/status/683252602818068480","title":"","type":"Twitter","language":"es","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[]},{"url":"http://twitter.com/MariaPerez0115/status/683163743530815488","title":"","type":"Twitter","language":"en","authorKlout":18,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ryoassuka/status/683394291444547584","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/missnaevababy/status/683158455285235712","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ped_red/status/683396163425316866","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/lived93/status/683323098616213507","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.18},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sheepcuties/status/683394204811173888","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/GrumpyGreenRock/status/683397891994578945","title":"","type":"Twitter","language":"en","authorKlout":25,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Greeenguy111/status/683156958266941442","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":60,"assignedCategoryId":4404821235,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.81}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.43},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/dennis_reichel/status/683158693794443264","title":"","type":"Twitter","location":"West Palm Beach, FL 33404, USA","geolocation":{"id":"USA.FL.West Palm Beach","name":"West Palm Beach","country":"USA","state":"FL","city":"West Palm Beach","zipcode":"33404"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.81}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.43},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Xiox047/status/683394443345461248","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/strategeryG/status/683319979157106688","title":"","type":"Twitter","language":"en","authorKlout":12,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.18}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.23},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/TRANSFENRlS/status/683394456851185664","title":"","type":"Twitter","language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/JambaJoss/status/683141167752429568","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kansaikitty/status/683394394637090816","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Jelly_995/status/683396362172432384","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/feedsynbot/status/683430411569987584","title":"","type":"Twitter","language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.15},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.22},{"emotionId":4404821233,"emotionName":"Neutral","score":0.47},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Fixer_guy/status/683157523789037568","title":"","type":"Twitter","location":"OR, USA","geolocation":{"id":"USA.OR","name":"Oregon","country":"USA","state":"OR"},"language":"en","authorKlout":63,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.81}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.43},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Whitemexi_/status/683139610973581312","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Rand4Liberty/status/683248915441844224","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.17},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.49},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/softsuqa/status/683395189097000960","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/krannda/status/683394251783319555","title":"","type":"Twitter","location":"Hong Kong, Kowloon City, HKG","geolocation":{"id":"HKG.Kowloon City.Hong Kong","name":"Hong Kong","country":"HKG","state":"Kowloon City","city":"Hong Kong"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/xChibwex/status/683397492176764928","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/SADANlMEBOYZ/status/683393411504799744","title":"","type":"Twitter","language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/elsssaa_/status/683140165389295617","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.62},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.81},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BernNHK/status/683401275489128448","title":"","type":"Twitter","location":"Los Angeles, CA 90006, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90006"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/softcub/status/683173007829938177","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/maaaaiyiiii/status/683396083456684032","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/littlelychees/status/683395241722789888","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/mnonep/status/683399812075528192","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/ChillPedal/status/683394154156683264","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/PittsBern/status/683157512741367809","title":"","type":"Twitter","location":"Pittsburgh, PA 15112, USA","geolocation":{"id":"USA.PA.Pittsburgh","name":"Pittsburgh","country":"USA","state":"PA","city":"Pittsburgh","zipcode":"15112"},"language":"en","authorKlout":61,"assignedCategoryId":4404821235,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.81}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.43},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/TruthTCeremony/status/683404111224569856","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/shimizuk0h/status/683394263552507906","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/sasukepng/status/683395113087832067","title":"","type":"Twitter","location":"JPN","geolocation":{"id":"JPN","name":"Japan","country":"JPN"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]}],"totalPostsAvailable":2043,"status":"success"} \ No newline at end of file diff --git a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-03.json b/apps/topics-mine/tests/data/ch/ch-posts-2016-01-03.json deleted file mode 100644 index 3ef90d1f09..0000000000 --- a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-03.json +++ /dev/null @@ -1 +0,0 @@ -{"posts":[{"url":"http://twitter.com/hcabhawk/status/683760754919522304","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tduke8809/status/683759830260170752","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/peal21954/status/683758655636783104","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jctracy65/status/683757733976346629","title":"","type":"Twitter","language":"en","authorKlout":18,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Aine_Halona/status/683758762935599104","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/R_del_Mar/status/683617951971344384","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rdp24k/status/683761414297628672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/presidentdiary/status/683758330179792897","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mayfairmikey/status/683494697231368193","title":"","type":"Twitter","location":"Philadelphia, PA 19133, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia","zipcode":"19133"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.0},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Right_This_Ship/status/683757940092833792","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JimmyBo1313/status/683722786209161216","title":"","type":"Twitter","location":"NC, USA","geolocation":{"id":"USA.NC","name":"North Carolina","country":"USA","state":"NC"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/spyguy8080/status/683618231941070848","title":"","type":"Twitter","language":"en","authorKlout":62,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MikeHillfl/status/683437670278643712","title":"","type":"Twitter","location":"Pensacola, FL 32505, USA","geolocation":{"id":"USA.FL.Pensacola","name":"Pensacola","country":"USA","state":"FL","city":"Pensacola","zipcode":"32505"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/StoneColdChik/status/683757638232834048","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/presidentdiary/status/683757483622449152","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wrs1260/status/683624969843150848","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DianeMBooth/status/683759266214199297","title":"","type":"Twitter","location":"Honolulu, HI 96822, USA","geolocation":{"id":"USA.HI.Honolulu","name":"Honolulu","country":"USA","state":"HI","city":"Honolulu","zipcode":"96822"},"language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.52},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/spartandog1/status/683790542531072002","title":"","type":"Twitter","language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/coolsheep44/status/683441775487221761","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/presidentdiary/status/683758686360084480","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.52},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/grmasoon/status/683675286999699457","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/popuik36/status/683440899871883264","title":"","type":"Twitter","language":"en","authorKlout":13,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.33},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.25},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WayneSense/status/683681348817674241","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RibeiroSanz/status/683658958616301568","title":"","type":"Twitter","language":"es","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[]},{"url":"http://twitter.com/RadicalGrambo/status/683763200307933185","title":"","type":"Twitter","location":"OH, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.52},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CalaghanJuan/status/683659162337849344","title":"","type":"Twitter","language":"es","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[]},{"url":"http://twitter.com/AnonDroidNet/status/683796731679539200","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MarkHines3/status/683751960999137280","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"37201"},"language":"en","authorKlout":31,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/deathpizza_/status/683722104374726657","title":"","type":"Twitter","language":"en","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/K_Frye_/status/683754168138510340","title":"","type":"Twitter","language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dressjorts/status/683728077268992000","title":"","type":"Twitter","language":"en","authorKlout":19,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/massagedocMI/status/683734421770473472","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.49},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.31},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mikasumita/status/683579455256793088","title":"","type":"Twitter","location":"Bilbao, Pais Vasco, ESP","geolocation":{"id":"ESP.Pais Vasco.Bilbao","name":"Bilbao","country":"ESP","state":"Pais Vasco","city":"Bilbao"},"language":"en","authorKlout":42,"assignedCategoryId":4404821235,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.53},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.2},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/bobv48/status/683574837558771712","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.53},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.2},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/jeanee5TAM/status/683468619733282816","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JustinCrim/status/683482273480622083","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/frjennie7/status/683462506023526400","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SMolloyDVM/status/683662699809603585","title":"","type":"Twitter","language":"en","authorKlout":68,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CharlesSingley/status/683667304530456576","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/vigvets/status/683663171073118208","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HaightJoseph/status/683664519709720576","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MyrahBinx/status/683640989500719104","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York"},"language":"en","authorKlout":20,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mooseairborne/status/683656922369814528","title":"","type":"Twitter","language":"en","authorKlout":24,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.13},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/abebekassa11/status/683577109185466368","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.04},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.96},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TrueSoulution/status/683776306228662272","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/residentfFL/status/683664677197471746","title":"","type":"Twitter","location":"Jacksonville, FL 32207, USA","geolocation":{"id":"USA.FL.Jacksonville","name":"Jacksonville","country":"USA","state":"FL","city":"Jacksonville","zipcode":"32207"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/970TD/status/683663787619037184","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mlrisdon/status/683523219819761665","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/felimokelly/status/683716114879254528","title":"","type":"Twitter","location":"London, Greater London, GBR","geolocation":{"id":"GBR.Greater London.London","name":"London","country":"GBR","state":"Greater London","city":"London"},"language":"en","authorKlout":24,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/Gooseislooze/status/683439782249295873","title":"","type":"Twitter","language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/laviolettequeen/status/683787165155913729","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jackchampion49/status/683474835536650240","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/whomejenjen/status/683759919632224256","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/america_trump/status/683726202360741888","title":"","type":"Twitter","location":"Tampa, FL, USA","geolocation":{"id":"USA.FL.Tampa","name":"Tampa","country":"USA","state":"FL","city":"Tampa"},"language":"en","authorKlout":60,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/caradorman/status/683778067475623937","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Newsium/status/683665631934164993","title":"","type":"Twitter","location":"Sydney, New South Wales, AUS","geolocation":{"id":"AUS.New South Wales.Sydney","name":"Sydney","country":"AUS","state":"New South Wales","city":"Sydney"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.56},{"emotionId":4404821232,"emotionName":"Fear","score":0.22},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JERSEYFL1/status/683442221471895552","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Assyriangirll/status/683500113373741056","title":"","type":"Twitter","language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/EmilyVanSlay/status/683774263577440257","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dantegtmeyer/status/683472414777278468","title":"","type":"Twitter","language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hellspawn14/status/683616941022416897","title":"","type":"Twitter","language":"es","authorKlout":15,"assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.05},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[]},{"url":"http://twitter.com/NatvNewYorkr/status/683716725334904832","title":"","type":"Twitter","language":"en","authorKlout":57,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bazzcoggin/status/683756318868541441","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/blueocean5454/status/683441070999482370","title":"","type":"Twitter","language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DrottM/status/683497103868297217","title":"","type":"Twitter","language":"en","authorKlout":68,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/djrusty813/status/683499075686273024","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/elaineyvette1/status/683450766355333120","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.05},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.25},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.29},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/mdvgarcia/status/683478694673842176","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bennett1128/status/683726915463692288","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TomD0wnes/status/683724641844727810","title":"","type":"Twitter","language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/annnabellla__/status/683721252356358146","title":"","type":"Twitter","location":"Philadelphia, PA 19133, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia","zipcode":"19133"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KingJohnson_23/status/683700125198233603","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/noneofyours99/status/683662341670449152","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Stiggs_/status/683770551492603905","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nottommynguyen/status/683665642080354304","title":"","type":"Twitter","location":"Kagoshima, Kagoshima, JPN","geolocation":{"id":"JPN.Kagoshima.Kagoshima","name":"Kagoshima","country":"JPN","state":"Kagoshima","city":"Kagoshima"},"language":"en","authorKlout":31,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/healthandcents/status/683716209557147649","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":65,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Redheadedbird/status/683440542210850816","title":"","type":"Twitter","location":"Lubbock, TX 79410, USA","geolocation":{"id":"USA.TX.Lubbock","name":"Lubbock","country":"USA","state":"TX","city":"Lubbock","zipcode":"79410"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/noraalundqvist/status/683647320613883905","title":"","type":"Twitter","location":"Gdvle, Gavleborg, SWE","geolocation":{"id":"SWE.Gavleborg.Gdvle","name":"Gdvle","country":"SWE","state":"Gavleborg","city":"Gdvle"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RP_FREAK/status/683751088546136064","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":35,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Sarcona_Felix/status/683496322129915904","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CIndyStarbuck/status/683754787310047232","title":"","type":"Twitter","language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Hack031958/status/683728066334584832","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RoyWilson316/status/683720418805559296","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/trump2016fan/status/683756540378112005","title":"","type":"Twitter","location":"NV, USA","geolocation":{"id":"USA.NV","name":"Nevada","country":"USA","state":"NV"},"language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wyomobe/status/683757791429836800","title":"","type":"Twitter","location":"Cheyenne, WY 82001, USA","geolocation":{"id":"USA.WY.Cheyenne","name":"Cheyenne","country":"USA","state":"WY","city":"Cheyenne","zipcode":"82001"},"language":"en","authorKlout":54,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/luluroberts57/status/683723872433082368","title":"","type":"Twitter","location":"Sacramento, CA 95610, USA","geolocation":{"id":"USA.CA.Sacramento","name":"Sacramento","country":"USA","state":"CA","city":"Sacramento","zipcode":"95610"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/XO_JadaSimone/status/683727719075573760","title":"","type":"Twitter","language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BirdCat21/status/683721197759012864","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/terrygossett/status/683440969753034752","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/anti_fembot/status/683607253979688960","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jsspakoimettre/status/683696484580212737","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JasonMcCarter2/status/683470348340297729","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"37921"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gayswxnqueen/status/683775779436662789","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ruthsjofors/status/683777305580285956","title":"","type":"Twitter","language":"en","authorKlout":12,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/5b20be6386164f8/status/683711952980471808","title":"","type":"Twitter","language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hhaanniihh/status/683644545532334080","title":"","type":"Twitter","language":"en","authorKlout":23,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Dc37Deborah/status/683690344723169281","title":"","type":"Twitter","language":"en","authorKlout":62,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/__cl_/status/683722467542720512","title":"","type":"Twitter","location":"Belgrade, Grad Beograd, SRB","geolocation":{"id":"SRB.Grad Beograd.Belgrade","name":"Belgrade","country":"SRB","state":"Grad Beograd","city":"Belgrade"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/B01Nicole/status/683496419030921216","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NJ","city":"New York"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RogerRice10/status/683448389350981633","title":"","type":"Twitter","language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CamCammancam18/status/683720086490853377","title":"","type":"Twitter","language":"en","authorKlout":19,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GigiLs88/status/683470348604588032","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/marymac41/status/683490043240026112","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SpuhgLol/status/683745882781675520","title":"","type":"Twitter","language":"en","authorKlout":15,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gogreen200086/status/683442750830829568","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ReporterGreen/status/683439844836573184","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Nathankmr/status/683722706643251200","title":"","type":"Twitter","location":"Lille, Nord-Pas-de-Calais, FRA","geolocation":{"id":"FRA.Nord-Pas-de-Calais.Lille","name":"Lille","country":"FRA","state":"Nord-Pas-de-Calais","city":"Lille"},"language":"en","authorKlout":33,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PhillipsBryant1/status/683667852247748608","title":"","type":"Twitter","language":"en","authorKlout":27,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/madam_missus/status/683515872170754048","title":"","type":"Twitter","language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.08}]},{"url":"http://twitter.com/JianJianhui/status/683730608011526144","title":"","type":"Twitter","location":"Boston, MA 02453, USA","geolocation":{"id":"USA.MA.Boston","name":"Boston","country":"USA","state":"MA","city":"Boston","zipcode":"02453"},"language":"en","authorKlout":22,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BeachDreamin291/status/683769073688309761","title":"","type":"Twitter","language":"en","authorKlout":61,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KarrieGlover2/status/683539599566585856","title":"","type":"Twitter","location":"Denver, CO, USA","geolocation":{"id":"USA.CO.Denver","name":"Denver","country":"USA","state":"CO","city":"Denver"},"language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/marcydw1/status/683502914887786498","title":"","type":"Twitter","location":"MO, USA","geolocation":{"id":"USA.MO","name":"Missouri","country":"USA","state":"MO"},"language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PMgeezer/status/683446787491811328","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":59,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AaronMoser98/status/683720502980968449","title":"","type":"Twitter","language":"en","authorKlout":25,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/49f8f38790164c4/status/683443978054811648","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nachobill1/status/683751427819311106","title":"","type":"Twitter","language":"en","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LRbullies/status/683656946751266816","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"60607"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FIGHTFAN16/status/683764514454650882","title":"","type":"Twitter","language":"en","authorKlout":25,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AllanDudley3/status/683500084034547712","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MarkA0625/status/683440586637074432","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ChristineM114/status/683497275822325760","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MelindaB56/status/683439852977717248","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chance_rochlitz/status/683470036745338880","title":"","type":"Twitter","location":"WY, USA","geolocation":{"id":"USA.WY","name":"Wyoming","country":"USA","state":"WY"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Magnuso78/status/683770935984304129","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Patriot_Girl_TX/status/683768409364930560","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":60,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/georgewade370/status/683448232161218560","title":"","type":"Twitter","location":"TN, USA","geolocation":{"id":"USA.TN","name":"Tennessee","country":"USA","state":"TN"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SPFCTexas/status/683471788546764800","title":"","type":"Twitter","location":"Houston, TX 77007, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston","zipcode":"77007"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/samzydeco/status/683505791459024896","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BrittanyBoomx2/status/683442412027523072","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/eabha087/status/683758135148949505","title":"","type":"Twitter","language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Turbo_boosted/status/683689981488009216","title":"","type":"Twitter","language":"en","authorKlout":18,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SlyBeazy/status/683700221017210882","title":"","type":"Twitter","location":"Cleveland, OH 44115, USA","geolocation":{"id":"USA.OH.Cleveland","name":"Cleveland","country":"USA","state":"OH","city":"Cleveland","zipcode":"44115"},"language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mkmknani/status/683769403293306880","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"98226"},"language":"en","authorKlout":63,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LeighWells15/status/683481781257895938","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jamesroth65/status/683440047626928128","title":"","type":"Twitter","location":"Las Vegas, NV 89102, USA","geolocation":{"id":"USA.NV.Las Vegas","name":"Las Vegas","country":"USA","state":"NV","city":"Las Vegas","zipcode":"89102"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cm1555/status/683684156719656960","title":"","type":"Twitter","location":"New York, NY 11226, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"11226"},"language":"en","authorKlout":17,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/becenueint1947/status/683707945687846914","title":"","type":"Twitter","location":"Fort Lauderdale, FL 33024, USA","geolocation":{"id":"USA.FL.Fort Lauderdale","name":"Fort Lauderdale","country":"USA","state":"FL","city":"Fort Lauderdale","zipcode":"33024"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/macosta75/status/683560981428105217","title":"","type":"Twitter","location":"Alicante, Valenciana, ESP","geolocation":{"id":"ESP.Valenciana.Alicante","name":"Alicante","country":"ESP","state":"Valenciana","city":"Alicante"},"language":"es","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/becenueint1947/status/683705485887954944","title":"","type":"Twitter","location":"Fort Lauderdale, FL 33024, USA","geolocation":{"id":"USA.FL.Fort Lauderdale","name":"Fort Lauderdale","country":"USA","state":"FL","city":"Fort Lauderdale","zipcode":"33024"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.56},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RamonSomoza/status/683525456386117632","title":"","type":"Twitter","location":"Madrid, Madrid, ESP","geolocation":{"id":"ESP.Madrid.Madrid","name":"Madrid","country":"ESP","state":"Madrid","city":"Madrid"},"language":"es","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/donaldo_trampa/status/683789367048036352","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821230,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.22},{"emotionId":4404821233,"emotionName":"Neutral","score":0.03},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/TinaSackman1/status/683534741317009408","title":"","type":"Twitter","language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LLopezMooney330/status/683493056507719684","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JohnnyAnnihilat/status/683567938394181632","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.43},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Veteran4Trump/status/683799554873896960","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":60,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Dilly_D_69/status/683496449653391360","title":"","type":"Twitter","location":"Fresno, CA 93612, USA","geolocation":{"id":"USA.CA.Fresno","name":"Fresno","country":"USA","state":"CA","city":"Fresno","zipcode":"93612"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.61},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RiversInThaCut/status/683500104678916097","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.61},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/johneIway/status/683499177070833664","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.61},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/magdaborowik/status/683721552517574657","title":"","type":"Twitter","location":"Warsaw, Masovian, POL","geolocation":{"id":"POL.Masovian.Warsaw","name":"Warsaw","country":"POL","state":"Masovian","city":"Warsaw"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DennyTownMA/status/683669925454557184","title":"","type":"Twitter","location":"Worcester, MA 01540, USA","geolocation":{"id":"USA.MA.Worcester","name":"Worcester","country":"USA","state":"MA","city":"Worcester","zipcode":"01540"},"language":"en","authorKlout":21,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.04},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.93}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.2},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.2},{"emotionId":4404821233,"emotionName":"Neutral","score":0.2},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.07}]},{"url":"http://twitter.com/ShannDMalone2/status/683728058822582273","title":"","type":"Twitter","language":"en","authorKlout":19,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/efque/status/683690124450738176","title":"","type":"Twitter","location":"Kuala Lumpur, Kuala Lumpur, MYS","geolocation":{"id":"MYS.Kuala Lumpur.Kuala Lumpur","name":"Kuala Lumpur","country":"MYS","state":"Kuala Lumpur","city":"Kuala Lumpur"},"language":"en","authorKlout":43,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/RightWingLiars/status/683679793607356417","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.83},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/lolurnotmukeaf_/status/683752595287085056","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/vampire_iero/status/683689834821599234","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/sinagh2001/status/683727648946806785","title":"","type":"Twitter","location":"MD 21704, USA","geolocation":{"id":"USA.MD","name":"Maryland","country":"USA","state":"MD","zipcode":"21704"},"language":"en","authorKlout":24,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/GlitteryAlpaca/status/683752750178545665","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":31,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/earthtoreform/status/683641826197245952","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MEERKAT_MSU/status/683556552666660864","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"48824"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PaulGarrettATX/status/683671121506353152","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/PlexnMarcus/status/683740808625823744","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.45},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/follownewsnow/status/683692594304425984","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.22},{"emotionId":4404821227,"emotionName":"Joy","score":0.18},{"emotionId":4404821236,"emotionName":"Disgust","score":0.14},{"emotionId":4404821233,"emotionName":"Neutral","score":0.03},{"emotionId":4404821232,"emotionName":"Fear","score":0.37},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/kessmom22/status/683769164872417280","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NJ","city":"New York"},"language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Tumblrlover18/status/683756437907075073","title":"","type":"Twitter","location":"Chicago, IL, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago"},"language":"en","authorKlout":24,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/BraceroWAPA/status/683787547969990657","title":"","type":"Twitter","location":"San Juan, Puerto Rico, PRI","geolocation":{"id":"PRI.Puerto Rico.San Juan","name":"San Juan","country":"PRI","state":"Puerto Rico","city":"San Juan"},"language":"es","authorKlout":20,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/thisiskerah/status/683753020224454656","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Blurrybae/status/683687755315032064","title":"","type":"Twitter","language":"en","authorKlout":39,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/20akulpa/status/683690048659664896","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/RockyBalboa1066/status/683706629158760448","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rachelgoldiee/status/683756045806755840","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":22,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/plnovosat/status/683466692761026560","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/elaineyvette1/status/683445333427290112","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.92}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.17},{"emotionId":4404821231,"emotionName":"Surprise","score":0.21},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.16},{"emotionId":4404821233,"emotionName":"Neutral","score":0.36},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/elaineyvette1/status/683447917521145856","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/AnnDziadkowiec/status/683768421482299392","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.92},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/aspalleon/status/683743323891331072","title":"","type":"Twitter","location":"Leon, Castilla y Leon, ESP","geolocation":{"id":"ESP.Castilla y Leon.Leon","name":"Leon","country":"ESP","state":"Castilla y Leon","city":"Leon"},"language":"es","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/micheleadamo8/status/683599800181362688","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ornabouskila/status/683579709251272705","title":"","type":"Twitter","language":"en","authorKlout":35,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Amberis4LSU/status/683531469990412289","title":"","type":"Twitter","location":"AL, USA","geolocation":{"id":"USA.AL","name":"Alabama","country":"USA","state":"AL"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/JimmyMakaveli/status/683460254701613057","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":62,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.63},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/elaineyvette1/status/683442190538780672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/BigSteveFoster/status/683537437079941120","title":"","type":"Twitter","location":"Grand Junction, CO 81501, USA","geolocation":{"id":"USA.CO.Grand Junction","name":"Grand Junction","country":"USA","state":"CO","city":"Grand Junction","zipcode":"81501"},"language":"en","authorKlout":17,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/alonso_goya/status/683743905280602112","title":"","type":"Twitter","location":"Leon, Castilla y Leon, ESP","geolocation":{"id":"ESP.Castilla y Leon.Leon","name":"Leon","country":"ESP","state":"Castilla y Leon","city":"Leon"},"language":"es","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/kay_spire/status/683702799062794240","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/O_IrishT/status/683701753158721536","title":"","type":"Twitter","location":"TN, USA","geolocation":{"id":"USA.TN","name":"Tennessee","country":"USA","state":"TN"},"language":"en","authorKlout":60,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Minslay/status/683755121117904896","title":"","type":"Twitter","location":"ESP","geolocation":{"id":"ESP","name":"Spain","country":"ESP"},"language":"es","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/AntonioSilvan_/status/683738523942400001","title":"","type":"Twitter","language":"es","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/mossadkgb/status/683658532013654016","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LeonPTC/status/683722101807788032","title":"","type":"Twitter","location":"Leon, Castilla y Leon, ESP","geolocation":{"id":"ESP.Castilla y Leon.Leon","name":"Leon","country":"ESP","state":"Castilla y Leon","city":"Leon"},"language":"es","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/thuangelitho17/status/683480013421867008","title":"","type":"Twitter","language":"es","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.92},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/ButchJocson/status/683729996817383426","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/BrandonJLandry/status/683553348931469312","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/SMolloyDVM/status/683552722193260545","title":"","type":"Twitter","language":"en","authorKlout":68,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Born2RunJosh/status/683719724182679552","title":"","type":"Twitter","location":"OH, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH"},"language":"en","authorKlout":59,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DAMSASHH/status/683642103142977536","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"33050"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DavidKatalenas/status/683553877338161152","title":"","type":"Twitter","location":"Louisville, KY 40217, USA","geolocation":{"id":"USA.KY.Louisville","name":"Louisville","country":"USA","state":"KY","city":"Louisville","zipcode":"40217"},"language":"en","authorKlout":57,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/KevinCrabtree1/status/683794549093736448","title":"","type":"Twitter","location":"AZ, USA","geolocation":{"id":"USA.AZ","name":"Arizona","country":"USA","state":"AZ"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Yuuge_Trump_Fan/status/683655073658961920","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/rocio_balbuena/status/683493452252839936","title":"","type":"Twitter","location":"Malaga, Andalucia, ESP","geolocation":{"id":"ESP.Andalucia.Malaga","name":"Malaga","country":"ESP","state":"Andalucia","city":"Malaga"},"language":"es","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/tharunam/status/683501358545252354","title":"","type":"Twitter","language":"en","authorKlout":27,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.32},{"emotionId":4404821231,"emotionName":"Surprise","score":0.09},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.24},{"emotionId":4404821233,"emotionName":"Neutral","score":0.27},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/masuda_update/status/683724635012083714","title":"","type":"Twitter","location":"JPN","geolocation":{"id":"JPN","name":"Japan","country":"JPN"},"language":"en","authorKlout":13,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nene12011987/status/683460306287198208","title":"","type":"Twitter","location":"Taichung, Taichung City, TWN","geolocation":{"id":"TWN.Taichung City.Taichung","name":"Taichung","country":"TWN","state":"Changhua","city":"Taichung"},"language":"en","authorKlout":18,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/neilyoungchile/status/683635543176048640","title":"","type":"Twitter","language":"es","authorKlout":18,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[]},{"url":"http://twitter.com/franmanudelmor1/status/683590312686665728","title":"","type":"Twitter","language":"es","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[]},{"url":"http://twitter.com/mossadkgb/status/683658716923691008","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/wrs1260/status/683625052684849152","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GudBadAnFozzy/status/683629002855157760","title":"","type":"Twitter","location":"Blackpool, North West, GBR","geolocation":{"id":"GBR.North West.Blackpool","name":"Blackpool","country":"GBR","state":"North West","city":"Blackpool"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.28},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.14},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/follownewsnow/status/683526976393498624","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/masuda_update/status/683752313446477824","title":"","type":"Twitter","location":"JPN","geolocation":{"id":"JPN","name":"Japan","country":"JPN"},"language":"en","authorKlout":13,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GOPBriefingRoom/status/683725593553186816","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.27},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.32},{"emotionId":4404821233,"emotionName":"Neutral","score":0.13},{"emotionId":4404821232,"emotionName":"Fear","score":0.25},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/__GabrielleRose/status/683758478524022785","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nepenthes59/status/683748584551006209","title":"","type":"Twitter","language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AndrewInAustin/status/683703323770261504","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.19},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Tulak70/status/683571600097210368","title":"","type":"Twitter","location":"CZE","geolocation":{"id":"CZE","name":"Czech Republic","country":"CZE"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.22},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/wrs1260/status/683470808824606721","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821235,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.1},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.89}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.14},{"emotionId":4404821233,"emotionName":"Neutral","score":0.1},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/wincewong/status/683465597854683136","title":"","type":"Twitter","location":"San Francisco, CA 94114, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94114"},"language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/moliver3005/status/683447278166646784","title":"","type":"Twitter","language":"en","authorKlout":16,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nexus2019/status/683699676281868288","title":"","type":"Twitter","location":"Brisbane, Queensland, AUS","geolocation":{"id":"AUS.Queensland.Brisbane","name":"Brisbane","country":"AUS","state":"Queensland","city":"Brisbane"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.11}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/diablura77XD/status/683503551738294272","title":"","type":"Twitter","language":"es","authorKlout":30,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/swissmissak/status/683709055529963520","title":"","type":"Twitter","location":"AK, USA","geolocation":{"id":"USA.AK","name":"Alaska","country":"USA","state":"AK"},"language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DennisMarriott3/status/683787879722676225","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Asesole3/status/683573668832763904","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.22},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/dsmithson26/status/683731492489576450","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":26,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/becenueint1947/status/683705428140781569","title":"","type":"Twitter","location":"Fort Lauderdale, FL 33024, USA","geolocation":{"id":"USA.FL.Fort Lauderdale","name":"Fort Lauderdale","country":"USA","state":"FL","city":"Fort Lauderdale","zipcode":"33024"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.84},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/la_cates/status/683445419079254016","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":36,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.46},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/683755585293008896","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.22},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/683714474801418240","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.03},{"emotionId":4404821232,"emotionName":"Fear","score":0.78},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AOrozcoGuerrero/status/683745816671064064","title":"","type":"Twitter","location":"Cadiz, Andalucia, ESP","geolocation":{"id":"ESP.Andalucia.Cadiz","name":"Cadiz","country":"ESP","state":"Andalucia","city":"Cadiz"},"language":"es","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/suzost/status/683444615324672000","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.46},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Rebel_Bill/status/683446096018817025","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":64,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.46},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jangogh/status/683798693787598848","title":"","type":"Twitter","location":"NJ, USA","geolocation":{"id":"USA.NJ","name":"New Jersey","country":"USA","state":"NJ"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/RamonSomoza/status/683745655894839296","title":"","type":"Twitter","location":"Madrid, Madrid, ESP","geolocation":{"id":"ESP.Madrid.Madrid","name":"Madrid","country":"ESP","state":"Madrid","city":"Madrid"},"language":"es","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/a_ababj/status/683778309256167424","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.25},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.1},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/shaneovelli/status/683706447956471808","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.43},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.55},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.87},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.06},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/sjfalcigno/status/683449254984200192","title":"","type":"Twitter","location":"NC, USA","geolocation":{"id":"USA.NC","name":"North Carolina","country":"USA","state":"NC"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Kamikaze_98/status/683531387702386688","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_ababj/status/683778270932766720","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.25},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.1},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/a_ababj/status/683778476634013696","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.25},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.1},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/CynthCarp22/status/683787662428254209","title":"","type":"Twitter","language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Lg4Lg/status/683442616180998144","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_ababj/status/683778234131984385","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.25},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.1},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/efilnikcufecin7/status/683443175000768512","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York"},"language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_ababj/status/683778415716007936","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.25},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.1},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/leeleemunster/status/683443536444784640","title":"","type":"Twitter","language":"en","authorKlout":62,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/agos_canavesi/status/683510222443397120","title":"","type":"Twitter","language":"es","authorKlout":40,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.12},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.87},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/virgilrouse/status/683799184152084480","title":"","type":"Twitter","location":"NC, USA","geolocation":{"id":"USA.NC","name":"North Carolina","country":"USA","state":"NC"},"language":"en","authorKlout":12,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.86}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.12},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.5},{"emotionId":4404821233,"emotionName":"Neutral","score":0.05},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/zozopotamus/status/683794708775079936","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.13},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.86}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/Sara_AllTimeLow/status/683779317092978688","title":"","type":"Twitter","language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Karee_news/status/683774644327849984","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cuttiieharry/status/683741989645467648","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Bandlover8806/status/683532155335643136","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SteveRobertsESQ/status/683641300177039360","title":"","type":"Twitter","location":"New Orleans, LA 70117, USA","geolocation":{"id":"USA.LA.New Orleans","name":"New Orleans","country":"USA","state":"LA","city":"New Orleans","zipcode":"70117"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.13},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.86}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.43},{"emotionId":4404821233,"emotionName":"Neutral","score":0.38},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ssshanii/status/683453695179132928","title":"","type":"Twitter","location":"CA 92591, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA","zipcode":"92591"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/elaineyvette1/status/683444923387908096","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MR_barone2000/status/683742996756447232","title":"","type":"Twitter","location":"AZ, USA","geolocation":{"id":"USA.AZ","name":"Arizona","country":"USA","state":"AZ"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/jessfav16/status/683783740812869632","title":"","type":"Twitter","language":"en","authorKlout":17,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CRE4WLYYN00B/status/683792973021200385","title":"","type":"Twitter","language":"en","authorKlout":11,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RichardJSunkle/status/683775126131769345","title":"","type":"Twitter","location":"Lansing, MI 49201, USA","geolocation":{"id":"USA.MI.Lansing","name":"Lansing","country":"USA","state":"MI","city":"Lansing","zipcode":"49201"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/caseylynn231/status/683782287817740288","title":"","type":"Twitter","location":"Omaha, NE 68046, USA","geolocation":{"id":"USA.NE.Omaha","name":"Omaha","country":"USA","state":"NE","city":"Omaha","zipcode":"68046"},"language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sexgodzainmalik/status/683584452434370560","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Mega_Lati/status/683565322863919104","title":"","type":"Twitter","location":"ETH","geolocation":{"id":"ETH","name":"Ethiopia","country":"ETH"},"language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Birdywic/status/683796679330512896","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.13},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.86}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/Tsuchef/status/683488126518603776","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AlexisStolt/status/683792809824923650","title":"","type":"Twitter","location":"Minneapolis, MN, USA","geolocation":{"id":"USA.MN.Minneapolis","name":"Minneapolis","country":"USA","state":"MN","city":"Minneapolis"},"language":"en","authorKlout":18,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Sara_AllTimeLow/status/683780281313148928","title":"","type":"Twitter","language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/davidWeissman3/status/683774943901958149","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/caseylynn231/status/683784052105588736","title":"","type":"Twitter","location":"Omaha, NE 68046, USA","geolocation":{"id":"USA.NE.Omaha","name":"Omaha","country":"USA","state":"NE","city":"Omaha","zipcode":"68046"},"language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Mega_Lati/status/683566448074096640","title":"","type":"Twitter","location":"ETH","geolocation":{"id":"ETH","name":"Ethiopia","country":"ETH"},"language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/loquino82/status/683714955284221952","title":"","type":"Twitter","language":"es","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/i_ship_it_ok/status/683489755577843712","title":"","type":"Twitter","location":"Santiago, Santiago, DOM","geolocation":{"id":"DOM.Santiago.Santiago","name":"Santiago","country":"DOM","state":"Santiago","city":"Santiago"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Mandis_vit/status/683532721935761408","title":"","type":"Twitter","location":"Curitiba, PR, BRA","geolocation":{"id":"BRA.PR.Curitiba","name":"Curitiba","country":"BRA","state":"PR","city":"Curitiba"},"language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/toxicberry/status/683694893709934592","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.85}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheSagarKumar/status/683675375470272513","title":"","type":"Twitter","location":"Bhilai, Chhattisgarh, IND","geolocation":{"id":"IND.Chhattisgarh.Bhilai","name":"Bhilai","country":"IND","state":"Chhattisgarh","city":"Bhilai"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.34},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/realtybird/status/683690546963980289","title":"","type":"Twitter","location":"Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France","name":"ÃŽle-de-France","country":"FRA","state":"Ile-de-France"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.85}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/doccomicsisin/status/683690802510336000","title":"","type":"Twitter","location":"San Diego, CA 91913, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"91913"},"language":"en","authorKlout":46,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.85}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Leggz2451/status/683665537898037249","title":"","type":"Twitter","location":"Poughkeepsie, NY, USA","geolocation":{"id":"USA.NY.Poughkeepsie","name":"Poughkeepsie","country":"USA","state":"NY","city":"Poughkeepsie"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.09},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/hometorap/status/683717891334758405","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/strikesregui/status/683725500464918528","title":"","type":"Twitter","language":"es","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/geraldericsson/status/683466974156869633","title":"","type":"Twitter","location":"Pasadena, TX 77546, USA","geolocation":{"id":"USA.TX.Pasadena","name":"Pasadena","country":"USA","state":"TX","city":"Pasadena","zipcode":"77546"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/linc0lnpark/status/683688574374559746","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.85}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/J4UREGUID4RKS/status/683718837368438785","title":"","type":"Twitter","location":"CHL","geolocation":{"id":"CHL","name":"Chile","country":"CHL"},"language":"es","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/nonaprite/status/683724958887993344","title":"","type":"Twitter","location":"ITA","geolocation":{"id":"ITA","name":"Italy","country":"ITA"},"language":"es","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/mrsg1176/status/683750824397410307","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.24},{"emotionId":4404821234,"emotionName":"Anger","score":0.12}]},{"url":"http://twitter.com/PhysicianJobsIA/status/683749765729812481","title":"","type":"Twitter","language":"en","authorKlout":20,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.09}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/OHenryHernandez/status/683484891720204288","title":"","type":"Twitter","language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.15},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/KatCapps/status/683742655767953408","title":"","type":"Twitter","location":"Portland, OR 97232, USA","geolocation":{"id":"USA.OR.Portland","name":"Portland","country":"USA","state":"OR","city":"Portland","zipcode":"97232"},"language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.24},{"emotionId":4404821234,"emotionName":"Anger","score":0.12}]},{"url":"http://twitter.com/InternalMed_IA/status/683749768980398080","title":"","type":"Twitter","language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.09}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/iyamiyam/status/683742873104154625","title":"","type":"Twitter","location":"Los Angeles, CA, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.24},{"emotionId":4404821234,"emotionName":"Anger","score":0.12}]},{"url":"http://twitter.com/Medworking/status/683749762630156288","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.09}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/opticspolitics/status/683742780796067841","title":"","type":"Twitter","language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.24},{"emotionId":4404821234,"emotionName":"Anger","score":0.12}]},{"url":"http://twitter.com/colleenbrown711/status/683680123413999616","title":"","type":"Twitter","location":"Orlando, FL 32812, USA","geolocation":{"id":"USA.FL.Orlando","name":"Orlando","country":"USA","state":"FL","city":"Orlando","zipcode":"32812"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.11},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.14},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/InternalMedJob/status/683749771283058688","title":"","type":"Twitter","language":"en","authorKlout":28,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.09}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Kamikaze_98/status/683531310703357952","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/elaineyvette1/status/683443482489294848","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.84},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.12}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/NJMike319/status/683561141046505472","title":"","type":"Twitter","location":"NJ, USA","geolocation":{"id":"USA.NJ","name":"New Jersey","country":"USA","state":"NJ"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/big_pimpinjones/status/683474631961882625","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Crossbowman1/status/683464081588752384","title":"","type":"Twitter","location":"PA, USA","geolocation":{"id":"USA.PA","name":"Pennsylvania","country":"USA","state":"PA"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/isiahfortillo/status/683563895827509249","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TimClarke33/status/683527167720947712","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":31,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/roddyboiii/status/683473642013851648","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GioGetsBuckets/status/683472203753508864","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Scarlett210/status/683560875882606592","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Bellajane127/status/683751527169654784","title":"","type":"Twitter","language":"en","authorKlout":60,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/pattimagnon/status/683525167117553669","title":"","type":"Twitter","location":"Mexico City, Distrito Federal, MEX","geolocation":{"id":"MEX.Distrito Federal.Mexico City","name":"Mexico City","country":"MEX","state":"Distrito Federal","city":"Mexico City"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jchapelo/status/683474628891815936","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorKlout":13,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/budnikBruce/status/683541344459948035","title":"","type":"Twitter","location":"Los Angeles, CA 90006, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90006"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/William80019748/status/683577929213804544","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tnfortrump/status/683466387763924992","title":"","type":"Twitter","location":"Memphis, TN 38111, USA","geolocation":{"id":"USA.TN.Memphis","name":"Memphis","country":"USA","state":"TN","city":"Memphis","zipcode":"38111"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/elaineyvette1/status/683442231756234752","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.43},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kyle5033/status/683472567781343233","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tullyframe/status/683562257792409600","title":"","type":"Twitter","location":"OR, USA","geolocation":{"id":"USA.OR","name":"Oregon","country":"USA","state":"OR"},"language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MarkStahlbaum/status/683467357981949953","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jewelsoch/status/683512242629931008","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TimIsaiah_/status/683472851978989569","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/maddielittle32/status/683472069330210816","title":"","type":"Twitter","location":"AZ, USA","geolocation":{"id":"USA.AZ","name":"Arizona","country":"USA","state":"AZ"},"language":"en","authorKlout":36,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/delcaste/status/683562750996398080","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nathankirkwood/status/683464320521355264","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Defund_DC/status/683493705701957636","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dj2darrell/status/683702292764344320","title":"","type":"Twitter","language":"en","authorKlout":19,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.4},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.51},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.83},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LucySullivan888/status/683484899995598848","title":"","type":"Twitter","language":"en","authorKlout":62,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/while_im_alivee/status/683764754058366977","title":"","type":"Twitter","location":"Yuma, AZ 85365, USA","geolocation":{"id":"USA.AZ.Yuma","name":"Yuma","country":"USA","state":"AZ","city":"Yuma","zipcode":"85365"},"language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.83},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/alerdd/status/683622168777900032","title":"","type":"Twitter","location":"Arapiraca, AL, BRA","geolocation":{"id":"BRA.AL.Arapiraca","name":"Arapiraca","country":"BRA","state":"AL","city":"Arapiraca"},"language":"pt","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.17},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/_BrenoOP/status/683505746613514240","title":"","type":"Twitter","location":"Recife, PE, BRA","geolocation":{"id":"BRA.PE.Recife","name":"Recife","country":"BRA","state":"PE","city":"Recife"},"language":"pt","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.17},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/lolsalaam/status/683494867478024192","title":"","type":"Twitter","location":"Chennai, Tamil Nadu, IND","geolocation":{"id":"IND.Tamil Nadu.Chennai","name":"Chennai","country":"IND","state":"Tamil Nadu","city":"Chennai"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.63},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.28},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.1}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/jCar89000/status/683542246973517825","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.82}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/weltonetto/status/683520809407787009","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"pt","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.17},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/teryndeshler/status/683533721065017344","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.82}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/SpudLovr/status/683506260067663872","title":"","type":"Twitter","location":"WI, USA","geolocation":{"id":"USA.WI","name":"Wisconsin","country":"USA","state":"WI"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/josantanaz/status/683506144241926145","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"pt","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.17},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/Bruno6k/status/683507890066472960","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"pt","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.17},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/carlosrocha1896/status/683511301805572096","title":"","type":"Twitter","location":"Recife, PE, BRA","geolocation":{"id":"BRA.PE.Recife","name":"Recife","country":"BRA","state":"PE","city":"Recife"},"language":"pt","authorKlout":31,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.17},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/brewer_sarah28/status/683537499919011840","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.82}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/occupybergen/status/683635109040386049","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NJ","city":"New York"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/djtito/status/683564623451262982","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.82},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/captaainmorgan0/status/683541971776847872","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.82}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/0__0__o__0__0/status/683535620304711680","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.82}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/WishIWasAmish/status/683567254311571457","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.82}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/NoCommon_beauty/status/683647260413001728","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"20001"},"language":"en","authorKlout":29,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.18},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.82},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.6},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/baby_ligghhh/status/683460548458078208","title":"","type":"Twitter","language":"en","authorKlout":15,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.18},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.82},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.6},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/tonyelfurioso/status/683669996527071232","title":"","type":"Twitter","language":"es","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.15},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.82},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/titlexfight/status/683528092158001152","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":26,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/oye_jasssy/status/683485004257705984","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/SimplyKaylaM/status/683590079328067584","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/dinosaurjyp/status/683481422028496896","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/bakedwilder/status/683485380486639617","title":"","type":"Twitter","language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/littlecountess/status/683491297143861248","title":"","type":"Twitter","location":"Panama City, Panama, PAN","geolocation":{"id":"PAN.Panama.Panama City","name":"Panama City","country":"PAN","state":"Panama","city":"Panama City"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Misterrrowl/status/683768181580664832","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/kree__p/status/683531784781312000","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/elliotald3rson/status/683638267133190144","title":"","type":"Twitter","location":"London, Greater London, GBR","geolocation":{"id":"GBR.Greater London.London","name":"London","country":"GBR","state":"Greater London","city":"London"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/jkookfanclub/status/683486835427815425","title":"","type":"Twitter","language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/AlamoEdward/status/683785739088183296","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.81},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.52},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/LachesisRule/status/683696611411771392","title":"","type":"Twitter","location":"New York, NY 11226, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"11226"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/stephanieitm/status/683711132318613504","title":"","type":"Twitter","language":"en","authorKlout":28,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/yanderegal/status/683488545399566336","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/aniecemarie69/status/683735659132010496","title":"","type":"Twitter","language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/kagamikaneki/status/683501693221208065","title":"","type":"Twitter","language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/ibobbitt/status/683508894916685824","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":35,"assignedCategoryId":4404821235,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.17},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.81}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.43},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/PerfectlyUnwell/status/683517734840328192","title":"","type":"Twitter","location":"CAN","geolocation":{"id":"CAN","name":"Canada","country":"CAN"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/olitheghostgirl/status/683516882922557440","title":"","type":"Twitter","location":"Minneapolis, MN, USA","geolocation":{"id":"USA.MN.Minneapolis","name":"Minneapolis","country":"USA","state":"MN","city":"Minneapolis"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/ziamaurora/status/683481642250452992","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/kimjongtits/status/683508163354603520","title":"","type":"Twitter","location":"Krasnoyarsk, Siberian, RUS","geolocation":{"id":"RUS.Siberian.Krasnoyarsk","name":"Krasnoyarsk","country":"RUS","state":"Siberian","city":"Krasnoyarsk"},"language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/jaebeomtv/status/683481707429888001","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Brand_Nudes/status/683481376394350593","title":"","type":"Twitter","location":"Bakersfield, CA, USA","geolocation":{"id":"USA.CA.Bakersfield","name":"Bakersfield","country":"USA","state":"CA","city":"Bakersfield"},"language":"en","authorKlout":26,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/xEmiliaa/status/683495758780350465","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/brooke2029/status/683537297900437504","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/iheartswake/status/683483349432664064","title":"","type":"Twitter","location":"Melbourne, Victoria, AUS","geolocation":{"id":"AUS.Victoria.Melbourne","name":"Melbourne","country":"AUS","state":"Victoria","city":"Melbourne"},"language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/honestlylubum/status/683487232309727233","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":25,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/georgina_becca/status/683593169083092992","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Shane_TheMane/status/683798064226775040","title":"","type":"Twitter","location":"CA 92563, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA","zipcode":"92563"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/beyonceSMG/status/683481662026559489","title":"","type":"Twitter","language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/JIMINBAE95/status/683482019737776128","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Danrow_Dias/status/683732521406869507","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"02151"},"language":"en","authorKlout":26,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/oddpatton/status/683733732239486976","title":"","type":"Twitter","language":"en","authorKlout":22,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/chasezane/status/683509706560651264","title":"","type":"Twitter","location":"Salt Lake City, UT 84111, USA","geolocation":{"id":"USA.UT.Salt Lake City","name":"Salt Lake City","country":"USA","state":"UT","city":"Salt Lake City","zipcode":"84111"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/jamonica_w/status/683691294984634368","title":"","type":"Twitter","language":"en","authorKlout":35,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/httpzayndelrey/status/683481181858299904","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/cornflake_bench/status/683531442291265536","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/miss_z71/status/683495462486306816","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/irisxbennett/status/683683066578104320","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/sexiuhun/status/683481043555487744","title":"","type":"Twitter","language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/hoIdagainstme/status/683481358560174080","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/lianelkazzaz/status/683554354364690432","title":"","type":"Twitter","location":"Irvine, CA, USA","geolocation":{"id":"USA.CA.Irvine","name":"Irvine","country":"USA","state":"CA","city":"Irvine"},"language":"en","authorKlout":29,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Radxsmith/status/683516356172447744","title":"","type":"Twitter","location":"Boise, ID 83702, USA","geolocation":{"id":"USA.ID.Boise","name":"Boise","country":"USA","state":"ID","city":"Boise","zipcode":"83702"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Missy_Kidd/status/683460473761562625","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.17},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_robsongirl/status/683507752195379201","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/CareBearsHalo/status/683539124612165632","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/thatkidc_block/status/683487110028857344","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/April_xoxoxx1/status/683487098523893760","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":31,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/kay_gorney/status/683487640235196416","title":"","type":"Twitter","location":"Atlanta, GA 30328, USA","geolocation":{"id":"USA.GA.Atlanta","name":"Atlanta","country":"USA","state":"GA","city":"Atlanta","zipcode":"30328"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Meeriayahhh/status/683486046625992704","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/blackrepublican/status/683753400106921986","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":67,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.81}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.2},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/rachel__deng/status/683507883917484033","title":"","type":"Twitter","language":"en","authorKlout":28,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/chalkoutljnes/status/683516058079223809","title":"","type":"Twitter","location":"OH, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/stelenaispure/status/683542021332664320","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/mirandasteven42/status/683501670408454144","title":"","type":"Twitter","language":"en","authorKlout":16,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Chloetilley/status/683562671153758208","title":"","type":"Twitter","location":"London, Greater London, GBR","geolocation":{"id":"GBR.Greater London.London","name":"London","country":"GBR","state":"Greater London","city":"London"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.17}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.02},{"emotionId":4404821232,"emotionName":"Fear","score":0.43},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/kittenbae_/status/683498241204207616","title":"","type":"Twitter","language":"en","authorKlout":29,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/donna_dororich/status/683595394060795905","title":"","type":"Twitter","language":"en","authorKlout":18,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.13},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/susieejacuzzi/status/683768555255406592","title":"","type":"Twitter","language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Zouzou_Zorra/status/683763669575012353","title":"","type":"Twitter","location":"Paris, Ile-de-France, FRA","geolocation":{"id":"FRA.Ile-de-France.Paris","name":"Paris","country":"FRA","state":"Ile-de-France","city":"Paris"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/calImejongin/status/683487423154778112","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/summerrben/status/683522442153725957","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Broadway_girlxo/status/683536847054737412","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/ovoxonicolee/status/683485449428443136","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90006"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/adrianxzamora/status/683516224878202886","title":"","type":"Twitter","location":"Los Angeles, CA 90006, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90006"},"language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/MaloIeyempire/status/683481333289644032","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/strongestsky/status/683529157821644805","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/joycemfs/status/683747176221130752","title":"","type":"Twitter","location":"Allentown, PA 18062, USA","geolocation":{"id":"USA.PA.Allentown","name":"Allentown","country":"USA","state":"PA","city":"Allentown","zipcode":"18062"},"language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.6},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/rubyweasley/status/683493769790926848","title":"","type":"Twitter","language":"en","authorKlout":26,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/jetblackteens/status/683484723084001280","title":"","type":"Twitter","location":"Dover, DE, USA","geolocation":{"id":"USA.DE.Dover","name":"Dover","country":"USA","state":"DE","city":"Dover"},"language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/mystikkspiral/status/683490733269987328","title":"","type":"Twitter","location":"MN, USA","geolocation":{"id":"USA.MN","name":"Minnesota","country":"USA","state":"MN"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/MelanieLee28416/status/683531311106113537","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/starwart1/status/683735016472379392","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/klaroziamski/status/683540785044652032","title":"","type":"Twitter","location":"AZ, USA","geolocation":{"id":"USA.AZ","name":"Arizona","country":"USA","state":"AZ"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/celestialpizzah/status/683649024784728067","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NJ","city":"New York"},"language":"en","authorKlout":28,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/__fondlinson__/status/683531286279884800","title":"","type":"Twitter","language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/Sleepisforever/status/683490635530108928","title":"","type":"Twitter","location":"Houston, TX 77007, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston","zipcode":"77007"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/randyrdz_/status/683701297728507906","title":"","type":"Twitter","language":"en","authorKlout":13,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/dawnmememachine/status/683519314826231808","title":"","type":"Twitter","language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/skeletonhotline/status/683528379379900418","title":"","type":"Twitter","location":"ON, CAN","geolocation":{"id":"CAN.ON","name":"Ontario","country":"CAN","state":"ON"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/natalys__/status/683521480836055040","title":"","type":"Twitter","location":"San Antonio, TX 78201, USA","geolocation":{"id":"USA.TX.San Antonio","name":"San Antonio","country":"USA","state":"TX","city":"San Antonio","zipcode":"78201"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/slayenj/status/683522625880981504","title":"","type":"Twitter","location":"WA, USA","geolocation":{"id":"USA.WA","name":"Washington","country":"USA","state":"WA"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]},{"url":"http://twitter.com/frxancescxx/status/683533516139794432","title":"","type":"Twitter","location":"MD, USA","geolocation":{"id":"USA.MD","name":"Maryland","country":"USA","state":"MD"},"language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.81},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.14},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.34},{"emotionId":4404821234,"emotionName":"Anger","score":0.09}]}],"totalPostsAvailable":2599,"status":"success"} \ No newline at end of file diff --git a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-04.json b/apps/topics-mine/tests/data/ch/ch-posts-2016-01-04.json deleted file mode 100644 index da0057a241..0000000000 --- a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-04.json +++ /dev/null @@ -1 +0,0 @@ -{"posts":[{"url":"http://twitter.com/rondbusa/status/684129799447515136","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/presidentdiary/status/684129156091621377","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kbutler56/status/684130795078877185","title":"","type":"Twitter","location":"CAN","geolocation":{"id":"CAN","name":"Canada","country":"CAN"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jd_coz/status/683979282868232192","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FHetrick/status/683902531701886977","title":"","type":"Twitter","location":"AL, USA","geolocation":{"id":"USA.AL","name":"Alabama","country":"USA","state":"AL"},"language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.47},{"emotionId":4404821233,"emotionName":"Neutral","score":0.09},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/grandpooba5440/status/683865219605475330","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.39},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/jandefryn1/status/683961917728276480","title":"","type":"Twitter","language":"nl","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[]},{"url":"http://twitter.com/Melancolio/status/684100939821793280","title":"","type":"Twitter","language":"en","authorKlout":38,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.99},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.78},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.13},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/groundhogmum/status/683887993996881921","title":"","type":"Twitter","location":"Bristol, South West, GBR","geolocation":{"id":"GBR.South West.Bristol","name":"Bristol","country":"GBR","state":"South West","city":"Bristol"},"language":"en","authorKlout":58,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/freedomnow72/status/683854933024575488","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821234,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.62}]},{"url":"http://twitter.com/tedsecurity/status/683978203975688193","title":"","type":"Twitter","location":"Sydney, New South Wales, AUS","geolocation":{"id":"AUS.New South Wales.Sydney","name":"Sydney","country":"AUS","state":"New South Wales","city":"Sydney"},"language":"en","authorKlout":15,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.37},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/SfaLumberjack21/status/683853406809661440","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"77566"},"language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821234,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.62}]},{"url":"http://twitter.com/txlatinchic/status/683851868670263296","title":"","type":"Twitter","location":"Houston, TX 77007, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston","zipcode":"77007"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821234,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.62}]},{"url":"http://twitter.com/Youxia88/status/683851381078376449","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"29204"},"language":"en","authorKlout":49,"assignedCategoryId":4404821235,"assignedEmotionId":4404821234,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.62}]},{"url":"http://twitter.com/PhillipLaird/status/683869181779939329","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/hopingforachang/status/683862661046611968","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":63,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821234,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.62}]},{"url":"http://twitter.com/grandpooba5440/status/683865282511638528","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.31},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/slinksterlove27/status/683866149658976256","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":28,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FansOficialRR/status/684162229709606912","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"es","authorKlout":32,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.98},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/jasdye/status/684012061890867200","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/apungjaneliaaa/status/684021416828616704","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.09},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WordsOfMouth18/status/683880398384857089","title":"","type":"Twitter","location":"South Bend, IN 46601, USA","geolocation":{"id":"USA.IN.South Bend","name":"South Bend","country":"USA","state":"IN","city":"South Bend","zipcode":"46601"},"language":"en","authorKlout":20,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.37},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/jeremymasher/status/684017056430338048","title":"","type":"Twitter","location":"Myrtle Beach, SC 29577, USA","geolocation":{"id":"USA.SC.Myrtle Beach","name":"Myrtle Beach","country":"USA","state":"SC","city":"Myrtle Beach","zipcode":"29577"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/garbagepinecone/status/684018425191088128","title":"","type":"Twitter","location":"Myrtle Beach, SC 29577, USA","geolocation":{"id":"USA.SC.Myrtle Beach","name":"Myrtle Beach","country":"USA","state":"SC","city":"Myrtle Beach","zipcode":"29577"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/KarRoeding/status/684125393796894723","title":"","type":"Twitter","location":"Ottawa, ON, CAN","geolocation":{"id":"CAN.ON.Ottawa","name":"Ottawa","country":"CAN","state":"ON","city":"Ottawa"},"language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/FuturisticUFO/status/683844957937926144","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/AG_Legacy/status/684018594414473216","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/tiredblackgirl/status/683915741578448897","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/VictoriaSenese/status/684031901024284676","title":"","type":"Twitter","location":"Myrtle Beach, SC, USA","geolocation":{"id":"USA.SC.Myrtle Beach","name":"Myrtle Beach","country":"USA","state":"SC","city":"Myrtle Beach"},"language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ashattack212/status/683973491977248769","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DonGibsons/status/684090382536151040","title":"","type":"Twitter","location":"Vancouver, BC, CAN","geolocation":{"id":"CAN.BC.Vancouver","name":"Vancouver","country":"CAN","state":"BC","city":"Vancouver"},"language":"en","authorKlout":35,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.03},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.97},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/harrybrittsf/status/684070275483217920","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.03},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.97},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RoxanneGatihi/status/683913173380927488","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Baillleyypattle/status/684000934041538561","title":"","type":"Twitter","language":"en","authorKlout":24,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/_Kylestacey/status/684019446197948416","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/coolestgrandma8/status/683821514966188036","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rossisboss98/status/684017199078584320","title":"","type":"Twitter","location":"Myrtle Beach, SC, USA","geolocation":{"id":"USA.SC.Myrtle Beach","name":"Myrtle Beach","country":"USA","state":"SC","city":"Myrtle Beach"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/cbeelman/status/683812728591544320","title":"","type":"Twitter","language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/683973170735362048","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.16},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.44},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/CronoESP/status/684075484838293504","title":"","type":"Twitter","location":"ESP","geolocation":{"id":"ESP","name":"Spain","country":"ESP"},"language":"es","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/rubyraee_/status/683918071287824384","title":"","type":"Twitter","language":"en","authorKlout":35,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/salmaelnaggar_/status/684139940511223808","title":"","type":"Twitter","location":"EGY","geolocation":{"id":"EGY","name":"Egypt","country":"EGY"},"language":"en","authorKlout":22,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Parlay1992/status/683987687955656704","title":"","type":"Twitter","location":"VA, USA","geolocation":{"id":"USA.VA","name":"Virginia","country":"USA","state":"VA"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Eyesore42/status/683865673689202689","title":"","type":"Twitter","location":"Las Vegas, NV 89102, USA","geolocation":{"id":"USA.NV.Las Vegas","name":"Las Vegas","country":"USA","state":"NV","city":"Las Vegas","zipcode":"89102"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DaveKlucken/status/683831374223138816","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Youngpatriotcat/status/683870676176912385","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/roneverett0112/status/683834910403084289","title":"","type":"Twitter","location":"AL, USA","geolocation":{"id":"USA.AL","name":"Alabama","country":"USA","state":"AL"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nsaidian/status/683861868050558976","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Seth_M_Amos/status/683864674371256320","title":"","type":"Twitter","location":"IN, USA","geolocation":{"id":"USA.IN","name":"Indiana","country":"USA","state":"IN"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ShawnLillis1/status/684035808685375488","title":"","type":"Twitter","location":"Los Angeles, CA 90212, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90212"},"language":"en","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NJMike319/status/683861250485448705","title":"","type":"Twitter","location":"NJ, USA","geolocation":{"id":"USA.NJ","name":"New Jersey","country":"USA","state":"NJ"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BigDuhie1955/status/683981083495411712","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JONEEFRY/status/683862491663888384","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KayQuirk1/status/684117050944565248","title":"","type":"Twitter","location":"IA, USA","geolocation":{"id":"USA.IA","name":"Iowa","country":"USA","state":"IA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Karee_news/status/683864394686595073","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/simplylorilee/status/683827539056308225","title":"","type":"Twitter","language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/follownewsnow/status/684083717766172672","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/jensan1332/status/683831232325660672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MossyWill66/status/683833248342884352","title":"","type":"Twitter","language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JoeBravoYo/status/683835082428276736","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lwdobbs42/status/683866486826340357","title":"","type":"Twitter","location":"OR, USA","geolocation":{"id":"USA.OR","name":"Oregon","country":"USA","state":"OR"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gennut/status/683871852331048961","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hopingforachang/status/683836621469429760","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":63,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nolchickrobin/status/683824791556497409","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/byrdela/status/683832114618347520","title":"","type":"Twitter","language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DocBarry1/status/684056959557971968","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mikesmith8026/status/683894865424322560","title":"","type":"Twitter","language":"en","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hale4jesus/status/683864056931811328","title":"","type":"Twitter","language":"en","authorKlout":62,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PrimMrs/status/683824510890602496","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Rose75267272/status/683832653171146752","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/9975Ts/status/683875775431327745","title":"","type":"Twitter","language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/joepilot56/status/683836049789849602","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/michaelfromolg/status/683863752920317952","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Finalsign/status/683825885879910400","title":"","type":"Twitter","location":"NC, USA","geolocation":{"id":"USA.NC","name":"North Carolina","country":"USA","state":"NC"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/csirigiano/status/683864142097330176","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JVER1/status/683863894444609537","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":64,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lendavis3/status/683830972094267392","title":"","type":"Twitter","location":"Philadelphia, PA, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/skifflegirl/status/683826470578302976","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Shimmyfab/status/683825134562603009","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/brujeff77/status/683864387556257792","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AZWS/status/683861650810646529","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"85020"},"language":"en","authorKlout":65,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/az_valentine/status/683890762984124416","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FrankChanged/status/683866306890825728","title":"","type":"Twitter","location":"Salem, MA 01930, USA","geolocation":{"id":"USA.MA.Salem","name":"Salem","country":"USA","state":"MA","city":"Salem","zipcode":"01930"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jstines3/status/683861115546251264","title":"","type":"Twitter","language":"en","authorKlout":70,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jmdonsi/status/683831166189875200","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":57,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Rayna_Gangi/status/683830390952476672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jamiewheeler420/status/683861733874733058","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Shooters_Wife/status/683863447830839297","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":67,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/as_i_lie_awake/status/683862686824726529","title":"","type":"Twitter","location":"Austin, TX 78703, USA","geolocation":{"id":"USA.TX.Austin","name":"Austin","country":"USA","state":"TX","city":"Austin","zipcode":"78703"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/YoYoDietByBy/status/683834534597529600","title":"","type":"Twitter","location":"Bozeman, MT 59715, USA","geolocation":{"id":"USA.MT.Bozeman","name":"Bozeman","country":"USA","state":"MT","city":"Bozeman","zipcode":"59715"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mariann44764635/status/683833518519091200","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bill_mullen/status/683830923356434433","title":"","type":"Twitter","location":"GA, USA","geolocation":{"id":"USA.GA","name":"Georgia","country":"USA","state":"GA"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/odordoc1upton/status/683862726431633408","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dry2long/status/683864161261060097","title":"","type":"Twitter","language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mrtom2380/status/683833375489146884","title":"","type":"Twitter","language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/suzost/status/683831848846409728","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JosephEach/status/683972984290328577","title":"","type":"Twitter","language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PatVPeters/status/683830866095681538","title":"","type":"Twitter","language":"en","authorKlout":68,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Bitter_American/status/683824715757187072","title":"","type":"Twitter","location":"IL, USA","geolocation":{"id":"USA.IL","name":"Illinois","country":"USA","state":"IL"},"language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/THETXEMBASSY/status/683863512389582849","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":67,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/franksbrian/status/683826421765033984","title":"","type":"Twitter","language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jbaker50/status/683827723865841664","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":26,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/OCAmericans/status/683823777742860288","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bookelf44/status/683866651238871041","title":"","type":"Twitter","location":"KY 40342, USA","geolocation":{"id":"USA.KY","name":"Kentucky","country":"USA","state":"KY","zipcode":"40342"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ChgocadChic/status/683865236894429184","title":"","type":"Twitter","language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MrAlexBarron/status/684004687578714112","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/0b250bcd98d2494/status/683864882366693377","title":"","type":"Twitter","location":"MT, USA","geolocation":{"id":"USA.MT","name":"Montana","country":"USA","state":"MT"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/djl4752/status/683826318295838720","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LibertyHHenry/status/683824056106237952","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hodescalli/status/684147294531371008","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/don85375/status/683899381968277506","title":"","type":"Twitter","language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chrisrouthieaux/status/683840399593488384","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":27,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/thmsintdesign/status/683861749599186945","title":"","type":"Twitter","location":"Cleveland, OH 44115, USA","geolocation":{"id":"USA.OH.Cleveland","name":"Cleveland","country":"USA","state":"OH","city":"Cleveland","zipcode":"44115"},"language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Travelbug1955/status/683826552702828545","title":"","type":"Twitter","language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Retweetertweetz/status/684130750782910466","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/DonnaYorkiemo/status/683812953100009472","title":"","type":"Twitter","language":"en","authorKlout":26,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cindylclark1/status/683812324269027328","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AZWS/status/683812498953224192","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"85020"},"language":"en","authorKlout":65,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/B0S5M3X1CAN/status/683858624293175296","title":"","type":"Twitter","location":"Las Vegas, NV 89032, USA","geolocation":{"id":"USA.NV.Las Vegas","name":"Las Vegas","country":"USA","state":"NV","city":"Las Vegas","zipcode":"89032"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GetReal1953/status/683891922935533568","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mkorach103/status/683802373186306050","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/stanishr/status/683812716360810497","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/StupidBoomers/status/683892070851973125","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Angel__Kitty/status/683802860904157189","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Real_Estate_IM/status/683802341531856896","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/valleygalcandle/status/683804257141821440","title":"","type":"Twitter","location":"Hartford, CT, USA","geolocation":{"id":"USA.CT.Hartford","name":"Hartford","country":"USA","state":"CT","city":"Hartford"},"language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/maribellezza/status/683803653719756801","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JacquelineWoodm/status/684034531368673281","title":"","type":"Twitter","location":"San Francisco, CA 94114, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94114"},"language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hale4jesus/status/684036648166805504","title":"","type":"Twitter","language":"en","authorKlout":62,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/coffeegurl60/status/683804907804078085","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MD4MO/status/684024068807368704","title":"","type":"Twitter","location":"Kansas City, MO, USA","geolocation":{"id":"USA.MO.Kansas City","name":"Kansas City","country":"USA","state":"MO","city":"Kansas City"},"language":"en","authorKlout":28,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Camaro2girl/status/683803772720553984","title":"","type":"Twitter","location":"Houma, LA 70394, USA","geolocation":{"id":"USA.LA.Houma","name":"Houma","country":"USA","state":"LA","city":"Houma","zipcode":"70394"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/saveusrepublic2/status/683807995730341888","title":"","type":"Twitter","location":"MS, USA","geolocation":{"id":"USA.MS","name":"Mississippi","country":"USA","state":"MS"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sebaslpz44/status/683881019695476736","title":"","type":"Twitter","language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cook_robert_l/status/683906434996781057","title":"","type":"Twitter","location":"Richmond, VA, USA","geolocation":{"id":"USA.VA.Richmond","name":"Richmond","country":"USA","state":"VA","city":"Richmond"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AlmightyApe/status/683905834691203072","title":"","type":"Twitter","language":"en","authorKlout":26,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ParadigmPres/status/683804302008291328","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NJMike319/status/683892246882742272","title":"","type":"Twitter","location":"NJ, USA","geolocation":{"id":"USA.NJ","name":"New Jersey","country":"USA","state":"NJ"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/icmeptb/status/683893285610340356","title":"","type":"Twitter","location":"Cairo, Al Qahirah, EGY","geolocation":{"id":"EGY.Al Qahirah.Cairo","name":"Cairo","country":"EGY","state":"Al Qahirah","city":"Cairo"},"language":"en","authorKlout":21,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Derek_chavez13/status/683900204437778432","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GenXcon77/status/683811923708645376","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/angell__11/status/683904972732272640","title":"","type":"Twitter","language":"en","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/houstonfan00/status/683889277034364928","title":"","type":"Twitter","location":"Houston, TX, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston"},"language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DrDarrellCline/status/683807621841686529","title":"","type":"Twitter","location":"Everett, WA, USA","geolocation":{"id":"USA.WA.Everett","name":"Everett","country":"USA","state":"WA","city":"Everett"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Newsium/status/683877023563923457","title":"","type":"Twitter","location":"Sydney, New South Wales, AUS","geolocation":{"id":"AUS.New South Wales.Sydney","name":"Sydney","country":"AUS","state":"New South Wales","city":"Sydney"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.56},{"emotionId":4404821232,"emotionName":"Fear","score":0.22},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Ironicpenguin21/status/683862569728225281","title":"","type":"Twitter","language":"en","authorKlout":13,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/be_true_2_you/status/683946953189662725","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/M_Montalvo_2011/status/684010372269916160","title":"","type":"Twitter","language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bellreyy/status/683865181013848064","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ryanra/status/684010427869736960","title":"","type":"Twitter","location":"TN, USA","geolocation":{"id":"USA.TN","name":"Tennessee","country":"USA","state":"TN"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/walstonlBBJ/status/683913121140871169","title":"","type":"Twitter","location":"Murfreesboro, TN, USA","geolocation":{"id":"USA.TN.Murfreesboro","name":"Murfreesboro","country":"USA","state":"TN","city":"Murfreesboro"},"language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Newsium/status/684118617730846720","title":"","type":"Twitter","location":"Sydney, New South Wales, AUS","geolocation":{"id":"AUS.New South Wales.Sydney","name":"Sydney","country":"AUS","state":"New South Wales","city":"Sydney"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.56},{"emotionId":4404821232,"emotionName":"Fear","score":0.22},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NelsenNissah/status/684152362785763330","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/57phk/status/683814267229986817","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NJ","city":"New York"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/meowpuppy/status/683988181193068545","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/waretheresa1/status/683817019154808832","title":"","type":"Twitter","language":"en","authorKlout":25,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/alyssaelderkin/status/683860285535481857","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/marks1356/status/683814822241288196","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TrumpBMA2016/status/683802473279045632","title":"","type":"Twitter","language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bevfries/status/683819598186057729","title":"","type":"Twitter","location":"MO, USA","geolocation":{"id":"USA.MO","name":"Missouri","country":"USA","state":"MO"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Alexjm6j/status/683980299462668288","title":"","type":"Twitter","location":"Cork, Cork, IRL","geolocation":{"id":"IRL.Cork.Cork","name":"Cork","country":"IRL","state":"Cork","city":"Cork"},"language":"en","authorKlout":20,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Rockyusa1/status/683805895940304897","title":"","type":"Twitter","language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/corbin_pat/status/683833482871750656","title":"","type":"Twitter","language":"en","authorKlout":30,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BryannJr/status/683900531341828096","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PositivelyJoan/status/683901532480212992","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SaveFreedomUSA/status/684010582316584960","title":"","type":"Twitter","language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/quest23blue/status/683893079443505152","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mokramala99/status/684013734403125248","title":"","type":"Twitter","location":"HRV","geolocation":{"id":"HRV","name":"Croatia","country":"HRV"},"language":"en","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BesseMarsha/status/684136153537118208","title":"","type":"Twitter","location":"Dallas, TX, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas"},"language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mrmars663/status/684105156582084608","title":"","type":"Twitter","location":"Sinaloa, MEX","geolocation":{"id":"MEX.Sinaloa","name":"Sinaloa","country":"MEX","state":"Sinaloa"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HillShill24/status/684078545522548739","title":"","type":"Twitter","location":"OH 43113, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH","zipcode":"43113"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GrandOaksFarm/status/684017270759096320","title":"","type":"Twitter","location":"Houston, TX 77433, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston","zipcode":"77433"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LosKiern/status/683926694244167680","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HorseShort/status/684157345073500160","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kay_spire/status/684138574376120320","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jjliberty/status/684147864486973441","title":"","type":"Twitter","language":"en","authorKlout":51,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Cfgtocw/status/683804629126246400","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PhillipLaird/status/683869267272437760","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/EEGRC98/status/684120101310705664","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/EasybillBuc/status/684133985132371968","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CSAresu/status/684077356995063809","title":"","type":"Twitter","location":"Houston, TX 77007, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston","zipcode":"77007"},"language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/c_shepler/status/684156121192374272","title":"","type":"Twitter","language":"en","authorKlout":54,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/grandpooba5440/status/683865468348710912","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.41},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nanaziegler/status/683825514243616768","title":"","type":"Twitter","location":"Fort Pierce, FL, USA","geolocation":{"id":"USA.FL.Fort Pierce","name":"Fort Pierce","country":"USA","state":"FL","city":"Fort Pierce"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BOSSJEDIZOHAN/status/683977540080414721","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/doug69/status/683820898667724800","title":"","type":"Twitter","location":"MO, USA","geolocation":{"id":"USA.MO","name":"Missouri","country":"USA","state":"MO"},"language":"en","authorKlout":60,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KarMaeArn/status/684141656983998465","title":"","type":"Twitter","language":"en","authorKlout":25,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MomentMae/status/684120184945131521","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kristie_skaggs/status/684156337572327424","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":49,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sushilpunia/status/684005137329737728","title":"","type":"Twitter","location":"Delhi, Delhi, IND","geolocation":{"id":"IND.Delhi.Delhi","name":"Delhi","country":"IND","state":"Delhi","city":"Delhi"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.23},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Punkido/status/683810877762482177","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/edwhitesox/status/683898658807492608","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":49,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sugarcoated09/status/684157031373238272","title":"","type":"Twitter","location":"Killeen, TX 76549, USA","geolocation":{"id":"USA.TX.Killeen","name":"Killeen","country":"USA","state":"TX","city":"Killeen","zipcode":"76549"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/StanSteam2/status/684142559405330432","title":"","type":"Twitter","location":"Melbourne, Victoria, AUS","geolocation":{"id":"AUS.Victoria.Melbourne","name":"Melbourne","country":"AUS","state":"Victoria","city":"Melbourne"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Rockyusa1/status/683803834695692289","title":"","type":"Twitter","language":"en","authorKlout":36,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jeromeyee/status/684155639686234112","title":"","type":"Twitter","language":"en","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.06},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.94},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.51},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hoskzmv/status/683989755512528897","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"pt","authorKlout":17,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[]},{"url":"http://twitter.com/RamonSomoza/status/683988524220071936","title":"","type":"Twitter","location":"Madrid, Madrid, ESP","geolocation":{"id":"ESP.Madrid.Madrid","name":"Madrid","country":"ESP","state":"Madrid","city":"Madrid"},"language":"es","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/a_ababj/status/684162146381398016","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821234,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.16},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.24},{"emotionId":4404821234,"emotionName":"Anger","score":0.33}]},{"url":"http://twitter.com/alexq1lab/status/684077237797171200","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AATrafficSchool/status/683874462454943748","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/radrepubalways/status/684029165964783616","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Miztoole/status/684021974666981376","title":"","type":"Twitter","location":"Greenville, SC 29601, USA","geolocation":{"id":"USA.SC.Greenville","name":"Greenville","country":"USA","state":"SC","city":"Greenville","zipcode":"29601"},"language":"en","authorKlout":22,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AltNieuws/status/683967739883552768","title":"","type":"Twitter","language":"nl","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/shababnik1/status/684048811803672576","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JuanErnestoTG/status/684112256368390144","title":"","type":"Twitter","location":"Merida, Yucatan, MEX","geolocation":{"id":"MEX.Yucatan.Merida","name":"Merida","country":"MEX","state":"Yucatan","city":"Merida"},"language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/1truebible/status/684029624800645120","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/iowa_caucus/status/683922169487699968","title":"","type":"Twitter","language":"en","authorKlout":24,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/grandpooba5440/status/683865345250037760","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.23},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/livinggold11026/status/684029095865380864","title":"","type":"Twitter","language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.13},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/gary4205/status/684022623802527744","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ImmProfessor/status/684084136101822464","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90006"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.84},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/germanrom1207/status/683993136343986176","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.28},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/OTWFreeSpirit/status/684102668629995521","title":"","type":"Twitter","location":"Ottawa, ON, CAN","geolocation":{"id":"CAN.ON.Ottawa","name":"Ottawa","country":"CAN","state":"ON","city":"Ottawa"},"language":"en","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MRCANNIZZARO23/status/684146124236656642","title":"","type":"Twitter","language":"en","authorKlout":35,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/eda4461/status/684008245434945536","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":19,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/theratzpack/status/683965529783169024","title":"","type":"Twitter","language":"en","authorKlout":61,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MortgageRealty/status/684132803177508865","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/marie_kate2/status/684026101967007744","title":"","type":"Twitter","location":"Manchester, North West, GBR","geolocation":{"id":"GBR.North West.Manchester","name":"Manchester","country":"GBR","state":"North West","city":"Manchester"},"language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.6},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/mary122514/status/684003097891307520","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/skyjones55/status/684001629058666496","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":59,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Melanie_L3804/status/683908181249003520","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":31,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.25},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/iowa_caucus/status/684036227708747777","title":"","type":"Twitter","language":"en","authorKlout":24,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MJMuccianti/status/684055806589964289","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.92},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Gimme_Ammo/status/684096288770621440","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.92},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.45},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PamelaMcKay/status/683977112064278528","title":"","type":"Twitter","location":"PA, USA","geolocation":{"id":"USA.PA","name":"Pennsylvania","country":"USA","state":"PA"},"language":"en","authorKlout":26,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/love_icydelight/status/684025343406116864","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/StreetTeamAC/status/684151763214155776","title":"","type":"Twitter","location":"Baltimore, MD 21218, USA","geolocation":{"id":"USA.MD.Baltimore","name":"Baltimore","country":"USA","state":"MD","city":"Baltimore","zipcode":"21218"},"language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/SteelBackbone/status/683999775914614786","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/HBWtitle/status/684134924647940096","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"61036"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/EasybillBuc/status/683987969926103040","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MADE__USA/status/684001560238657536","title":"","type":"Twitter","language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/zoepuc37/status/683837279815741440","title":"","type":"Twitter","language":"en","authorKlout":12,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AllOutOfHope/status/683961220395864064","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.92}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.38},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ktd101551/status/684071069062307840","title":"","type":"Twitter","language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MargaretMcgui16/status/684002192567726080","title":"","type":"Twitter","language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Jebolizer/status/684036496580587521","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.72},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/aClassicLiberal/status/684101651276414977","title":"","type":"Twitter","language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Verona83/status/684002471195226113","title":"","type":"Twitter","location":"CA 95688, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA","zipcode":"95688"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/StanSteam2/status/684142308523032576","title":"","type":"Twitter","location":"Melbourne, Victoria, AUS","geolocation":{"id":"AUS.Victoria.Melbourne","name":"Melbourne","country":"AUS","state":"Victoria","city":"Melbourne"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Dollie_VAL/status/683872038881132545","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/shababnik1/status/684049045510336513","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.79},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/BSVLMJ/status/683882980092162048","title":"","type":"Twitter","location":"AZ, USA","geolocation":{"id":"USA.AZ","name":"Arizona","country":"USA","state":"AZ"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RichardTBurnett/status/683861916976984064","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":65,"assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/OgIrDoRaReLlAnO/status/684112915201273856","title":"","type":"Twitter","language":"es","authorKlout":24,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/poundedforlife/status/684148399311028224","title":"","type":"Twitter","location":"Akron, OH 44311, USA","geolocation":{"id":"USA.OH.Akron","name":"Akron","country":"USA","state":"OH","city":"Akron","zipcode":"44311"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Morgan_marando/status/684102263770603525","title":"","type":"Twitter","location":"Akron, OH 44311, USA","geolocation":{"id":"USA.OH.Akron","name":"Akron","country":"USA","state":"OH","city":"Akron","zipcode":"44311"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sf16604/status/684152551210676224","title":"","type":"Twitter","location":"Berlin, Berlin, DEU","geolocation":{"id":"DEU.Berlin.Berlin","name":"Berlin","country":"DEU","state":"Berlin","city":"Berlin"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.23},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SkaterTheArtist/status/684107547423436800","title":"","type":"Twitter","location":"Columbus, OH 43201, USA","geolocation":{"id":"USA.OH.Columbus","name":"Columbus","country":"USA","state":"OH","city":"Columbus","zipcode":"43201"},"language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/americatee_com/status/684061183477854208","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.16},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.36},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/delaney_grayy/status/684104308921634820","title":"","type":"Twitter","location":"OH, USA","geolocation":{"id":"USA.OH","name":"Ohio","country":"USA","state":"OH"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ethan_com12/status/684146166259429378","title":"","type":"Twitter","location":"Akron, OH 44311, USA","geolocation":{"id":"USA.OH.Akron","name":"Akron","country":"USA","state":"OH","city":"Akron","zipcode":"44311"},"language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Brunasdf/status/683982954369015808","title":"","type":"Twitter","location":"Campo Grande, MS, BRA","geolocation":{"id":"BRA.MS.Campo Grande","name":"Campo Grande","country":"BRA","state":"MS","city":"Campo Grande"},"language":"en","authorKlout":29,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/OmaTalley1/status/683862591471390720","title":"","type":"Twitter","location":"Irvine, CA, USA","geolocation":{"id":"USA.CA.Irvine","name":"Irvine","country":"USA","state":"CA","city":"Irvine"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/KevKrukk/status/684107626054029313","title":"","type":"Twitter","language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NelsenNissah/status/684152343080910850","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.23},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/49f8f38790164c4/status/683863661790818304","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/AnonDroidNet/status/684145342648954880","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.2},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BduayneAllen/status/683862849245020160","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.91}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.26},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/pedrosalazar420/status/684110456475283456","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"es","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/fercasa14/status/684074793470156800","title":"","type":"Twitter","location":"Bogota, Bogota, COL","geolocation":{"id":"COL.Bogota.Bogota","name":"Bogota","country":"COL","state":"Bogota","city":"Bogota"},"language":"es","authorKlout":59,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/RiveraMarcelo20/status/684113934912196609","title":"","type":"Twitter","language":"es","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/info_Ve/status/684097226654773248","title":"","type":"Twitter","location":"VEN","geolocation":{"id":"VEN","name":"Venezuela","country":"VEN"},"language":"es","authorKlout":60,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/maddzmcsteen/status/684101969997348864","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nikhoeck/status/684109987136835585","title":"","type":"Twitter","language":"es","authorKlout":15,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/JatirPapa/status/683955023340941312","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.33},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/charlesfrith/status/683894994994728962","title":"","type":"Twitter","location":"Bangkok, Central, THA","geolocation":{"id":"THA.Central.Bangkok","name":"Bangkok","country":"THA","state":"Central","city":"Bangkok"},"language":"en","authorKlout":65,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Grizzleyrider55/status/684070182759706624","title":"","type":"Twitter","location":"Kansas City, MO, USA","geolocation":{"id":"USA.MO.Kansas City","name":"Kansas City","country":"USA","state":"KS","city":"Kansas City"},"language":"en","authorKlout":15,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.1},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.9}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.14},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.29},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.23}]},{"url":"http://twitter.com/VinceMalumBono/status/684081212365770753","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Bobbysox8/status/683834468621238272","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/JatirPapa/status/683954974447894528","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.33},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/latexnfaketits/status/683899342445477888","title":"","type":"Twitter","language":"en","authorKlout":25,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/HRH_Mhairi/status/683905564133453824","title":"","type":"Twitter","location":"London, Greater London, GBR","geolocation":{"id":"GBR.Greater London.London","name":"London","country":"GBR","state":"Greater London","city":"London"},"language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/stealurgirl2/status/684012196976848897","title":"","type":"Twitter","language":"en","authorKlout":20,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/683928734022238208","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.18},{"emotionId":4404821233,"emotionName":"Neutral","score":0.6},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/looney_toon23/status/684162018086129664","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/r5hxrrygold/status/683945622697709568","title":"","type":"Twitter","location":"Mexico City, Distrito Federal, MEX","geolocation":{"id":"MEX.Distrito Federal.Mexico City","name":"Mexico City","country":"MEX","state":"Distrito Federal","city":"Mexico City"},"language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.9},{"emotionId":4404821232,"emotionName":"Fear","score":0.0},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/StephieGilley/status/683902397941465088","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Cavern1964/status/684100299888418817","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"es","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/ayyazsulehri/status/683928598512807936","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/TeffyKnowles/status/684162363931648001","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/Rockalbo15/status/684161358317883398","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/MoveGod/status/683853750612590592","title":"","type":"Twitter","location":"San Antonio, TX 78201, USA","geolocation":{"id":"USA.TX.San Antonio","name":"San Antonio","country":"USA","state":"TX","city":"San Antonio","zipcode":"78201"},"language":"en","authorKlout":38,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.1},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/joako6969/status/684053869652013056","title":"","type":"Twitter","location":"Mexico City, Distrito Federal, MEX","geolocation":{"id":"MEX.Distrito Federal.Mexico City","name":"Mexico City","country":"MEX","state":"Distrito Federal","city":"Mexico City"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ramos_ventura2/status/684161846065102849","title":"","type":"Twitter","location":"Rio de Janeiro, RJ, BRA","geolocation":{"id":"BRA.RJ.Rio de Janeiro","name":"Rio de Janeiro","country":"BRA","state":"RJ","city":"Rio de Janeiro"},"language":"pt","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/rockynickydog/status/684155848860536832","title":"","type":"Twitter","location":"Virginia Beach, VA, USA","geolocation":{"id":"USA.VA.Virginia Beach","name":"Virginia Beach","country":"USA","state":"VA","city":"Virginia Beach"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jgidd18/status/683918567486689280","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.7},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/crvgnabru/status/684123597267415040","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"pt","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/danielcrvg12/status/684105980821549056","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"pt","authorKlout":40,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/Paratisi/status/684157192019251200","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/crvgisa/status/684161660525887488","title":"","type":"Twitter","location":"Rio de Janeiro, RJ, BRA","geolocation":{"id":"BRA.RJ.Rio de Janeiro","name":"Rio de Janeiro","country":"BRA","state":"RJ","city":"Rio de Janeiro"},"language":"pt","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/Camilacrvg_/status/684123236917985285","title":"","type":"Twitter","location":"Rio de Janeiro, RJ, BRA","geolocation":{"id":"BRA.RJ.Rio de Janeiro","name":"Rio de Janeiro","country":"BRA","state":"RJ","city":"Rio de Janeiro"},"language":"pt","authorKlout":42,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/MIstressMichel2/status/683878045418049536","title":"","type":"Twitter","location":"Meridian, MS 39307, USA","geolocation":{"id":"USA.MS.Meridian","name":"Meridian","country":"USA","state":"MS","city":"Meridian","zipcode":"39307"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.21},{"emotionId":4404821232,"emotionName":"Fear","score":0.42},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jucrvg7/status/684124289587634176","title":"","type":"Twitter","location":"RJ, BRA","geolocation":{"id":"BRA.RJ","name":"Rio de Janeiro","country":"BRA","state":"RJ"},"language":"pt","authorKlout":36,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/Wtf_avila/status/684105818300661760","title":"","type":"Twitter","location":"RJ, BRA","geolocation":{"id":"BRA.RJ","name":"Rio de Janeiro","country":"BRA","state":"RJ"},"language":"pt","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/EvelynGarone/status/684143372139798528","title":"","type":"Twitter","location":"Phoenix, AZ 85013, USA","geolocation":{"id":"USA.AZ.Phoenix","name":"Phoenix","country":"USA","state":"AZ","city":"Phoenix","zipcode":"85013"},"language":"en","authorKlout":60,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Snap_Politics/status/684158784512475136","title":"","type":"Twitter","language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AbbraxaFetish/status/683835288188223488","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.7},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GuyLeeds/status/683836722589876224","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.7},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/donaldo_trampa/status/684138032686075905","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/815wrldtrvlr/status/684160872248438786","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/McGMaryland/status/683891230925692928","title":"","type":"Twitter","location":"MD, USA","geolocation":{"id":"USA.MD","name":"Maryland","country":"USA","state":"MD"},"language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.19},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.45},{"emotionId":4404821233,"emotionName":"Neutral","score":0.11},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/sobeit22/status/684143078072946688","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"83333"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/arrowsmithwoman/status/684114769557745664","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":59,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/nanaziegler/status/683809499291975681","title":"","type":"Twitter","location":"Fort Pierce, FL, USA","geolocation":{"id":"USA.FL.Fort Pierce","name":"Fort Pierce","country":"USA","state":"FL","city":"Fort Pierce"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.46},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Jlynch661/status/683937979396538368","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.53},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/actualdope/status/684118692473356288","title":"","type":"Twitter","language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.29},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PositivelyJoan/status/683937011233759232","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.53},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.31},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/loanlady123/status/683927118468661248","title":"","type":"Twitter","location":"Houston, TX 77007, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston","zipcode":"77007"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/RamonSomoza/status/683956805303545856","title":"","type":"Twitter","location":"Madrid, Madrid, ESP","geolocation":{"id":"ESP.Madrid.Madrid","name":"Madrid","country":"ESP","state":"Madrid","city":"Madrid"},"language":"es","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/PhillipLaird/status/683869148019949568","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/politicsiq/status/684068453758537728","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.11}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.38},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.11}]},{"url":"http://twitter.com/LucasBarreraF/status/684056180516368384","title":"","type":"Twitter","location":"Valencia, Valenciana, ESP","geolocation":{"id":"ESP.Valenciana.Valencia","name":"Valencia","country":"ESP","state":"Valenciana","city":"Valencia"},"language":"es","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.88},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/ranzo151/status/684138157881729024","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/_monicaalex/status/683900195088785408","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":36,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.76},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.87},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kateloving/status/684103829009362944","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":59,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/heyguysitshaley/status/684075039822495744","title":"","type":"Twitter","location":"Ann Arbor, MI 48104, USA","geolocation":{"id":"USA.MI.Ann Arbor","name":"Ann Arbor","country":"USA","state":"MI","city":"Ann Arbor","zipcode":"48104"},"language":"en","authorKlout":35,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/stephschatteman/status/684128169125900288","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.56},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/justinzipprich/status/683884320608632833","title":"","type":"Twitter","language":"en","authorKlout":15,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.87},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.01},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Brianin802/status/684110142003109892","title":"","type":"Twitter","location":"Burlington, VT, USA","geolocation":{"id":"USA.VT.Burlington","name":"Burlington","country":"USA","state":"VT","city":"Burlington"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/dennis_reichel/status/684093424014786561","title":"","type":"Twitter","location":"West Palm Beach, FL 33404, USA","geolocation":{"id":"USA.FL.West Palm Beach","name":"West Palm Beach","country":"USA","state":"FL","city":"West Palm Beach","zipcode":"33404"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/ZanoChen/status/684093977503645696","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorKlout":24,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/TheSagarKumar/status/684098246684340224","title":"","type":"Twitter","location":"Bhilai, Chhattisgarh, IND","geolocation":{"id":"IND.Chhattisgarh.Bhilai","name":"Bhilai","country":"IND","state":"Chhattisgarh","city":"Bhilai"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.11}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.08},{"emotionId":4404821232,"emotionName":"Fear","score":0.78},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Nikki_Doe/status/683899863180918785","title":"","type":"Twitter","language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.76},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.87},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/elllbey/status/683900736820899840","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.76},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.87},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/aplemkseriously/status/684137718184427520","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/LoveAmericaUSA1/status/683994149939458048","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.87},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Teapublicanways/status/684136027578064897","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.31},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/MoiraMrocca/status/684076360508305408","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/skyprism/status/683899615427559424","title":"","type":"Twitter","language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.76},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.87},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PhillipLaird/status/683869315381116929","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.09}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/TrippyKittty/status/683901063192309761","title":"","type":"Twitter","language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.76},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.87},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/theblackipino/status/684080560541712384","title":"","type":"Twitter","location":"Lansing, MI 48824, USA","geolocation":{"id":"USA.MI.Lansing","name":"Lansing","country":"USA","state":"MI","city":"Lansing","zipcode":"48824"},"language":"en","authorKlout":25,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.87},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/marilui21/status/684147235186020352","title":"","type":"Twitter","location":"Pueblo, CO 81003, USA","geolocation":{"id":"USA.CO.Pueblo","name":"Pueblo","country":"USA","state":"CO","city":"Pueblo","zipcode":"81003"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/andreitai/status/683852447308185600","title":"","type":"Twitter","location":"Guayaquil, Guayas, ECU","geolocation":{"id":"ECU.Guayas.Guayaquil","name":"Guayaquil","country":"ECU","state":"Guayas","city":"Guayaquil"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/fackinpeter/status/683885240373280768","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":59,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/maftuh1226/status/683935722760486912","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Stahp_Guise/status/684158522557362178","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MeganDawnBates/status/683888956090499072","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/PositivelyJoan/status/683936751199498241","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.55},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.24},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.21}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CBD_AIP/status/683976039542853632","title":"","type":"Twitter","location":"Houston, TX 77007, USA","geolocation":{"id":"USA.TX.Houston","name":"Houston","country":"USA","state":"TX","city":"Houston","zipcode":"77007"},"language":"en","authorKlout":35,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/LexanyV/status/683820346227572736","title":"","type":"Twitter","language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Shylaamane/status/683935478719115264","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Dlacyxvii/status/683981541505015808","title":"","type":"Twitter","language":"en","authorKlout":26,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/aysa_pooh/status/683817830580629504","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/ChgocadChic/status/683932913243566080","title":"","type":"Twitter","language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ApocalypsePop/status/683889147321290752","title":"","type":"Twitter","language":"en","authorKlout":16,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/__Chells/status/683934563601534976","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/_SBTrill_/status/683817625172967424","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":32,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/BoricuaCaramelo/status/683853986940727296","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"11226"},"language":"en","authorKlout":45,"assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.13},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.86}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.28},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.25},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.15}]},{"url":"http://twitter.com/sally_elbady/status/683896035261952000","title":"","type":"Twitter","location":"Alexandria, Al Iskandariyah, EGY","geolocation":{"id":"EGY.Al Iskandariyah.Alexandria","name":"Alexandria","country":"EGY","state":"Al Iskandariyah","city":"Alexandria"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.26},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.14},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Patrick_Sharpe_/status/684147801362710528","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/braydenchavez7/status/684130096534323200","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":24,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/yslhair/status/683865905303044096","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Snusgodbrizzy/status/684029776315592704","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/BonewiczRobby/status/683969317512282112","title":"","type":"Twitter","language":"en","authorKlout":16,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/maya_cooper/status/683933639160283136","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Fabaruchi/status/683821556968108032","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":24,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/gamergirl1236/status/683966163848564736","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/luke3001SJ/status/683932652508872704","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"95348"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Kelly_Khiid/status/683932785871044608","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Retrogirl01/status/683893286843461634","title":"","type":"Twitter","location":"WV, USA","geolocation":{"id":"USA.WV","name":"West Virginia","country":"USA","state":"WV"},"language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.09},{"emotionId":4404821227,"emotionName":"Joy","score":0.21},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.43},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/IllestCreation/status/683933126972801026","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"10103"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/rickthessizzlah/status/683933432502616064","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/charlesfrith/status/683888003110944768","title":"","type":"Twitter","location":"Bangkok, Central, THA","geolocation":{"id":"THA.Central.Bangkok","name":"Bangkok","country":"THA","state":"Central","city":"Bangkok"},"language":"en","authorKlout":65,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.26},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.14},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jdhlsc169/status/683979676923113473","title":"","type":"Twitter","location":"WV, USA","geolocation":{"id":"USA.WV","name":"West Virginia","country":"USA","state":"WV"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheReturn_Qui/status/683948190886965248","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/naternot/status/683979988501151744","title":"","type":"Twitter","location":"Philadelphia, PA 19133, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia","zipcode":"19133"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sneezus_/status/683964302471086080","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/i_ishinayat/status/683998805822406656","title":"","type":"Twitter","language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/mariamordonez/status/683822026054840321","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/fitzgeraldaula1/status/683825147434799104","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/LINDNLD/status/684062763342258176","title":"","type":"Twitter","language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/i_ishinayat/status/683996853994688512","title":"","type":"Twitter","language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ayeitsrachelok/status/683860121039048705","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/AndyCavster/status/683888633095581696","title":"","type":"Twitter","location":"Bristol, South West, GBR","geolocation":{"id":"GBR.South West.Bristol","name":"Bristol","country":"GBR","state":"South West","city":"Bristol"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.26},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.14},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/wraithvenge/status/684141832515776512","title":"","type":"Twitter","location":"Bowling Green, KY 42103, USA","geolocation":{"id":"USA.KY.Bowling Green","name":"Bowling Green","country":"USA","state":"KY","city":"Bowling Green","zipcode":"42103"},"language":"en","authorKlout":55,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.7},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KirstyMartin19/status/683927818925936640","title":"","type":"Twitter","location":"ARE","geolocation":{"id":"ARE","name":"United Arab Emirates","country":"ARE"},"language":"en","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.26},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.14},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/legasyFTW/status/683870930842595328","title":"","type":"Twitter","location":"JAM","geolocation":{"id":"JAM","name":"Jamaica","country":"JAM"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/moslayin/status/683888205259759616","title":"","type":"Twitter","location":"Cleveland, OH, USA","geolocation":{"id":"USA.OH.Cleveland","name":"Cleveland","country":"USA","state":"OH","city":"Cleveland"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/mistyfoggyriver/status/683991764135460864","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/OG_Serge/status/684006660696838144","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Judy_Taya/status/684135106408103936","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.7},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/contrarian11/status/683965012327686145","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jeribswafford/status/683888759138578432","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":23,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.14},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.86},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.27},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.24},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.05}]},{"url":"http://twitter.com/2728__/status/683987220936667136","title":"","type":"Twitter","location":"CHE","geolocation":{"id":"CHE","name":"Switzerland","country":"CHE"},"language":"en","authorKlout":39,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/LandonRicks_/status/683937261038235648","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Greymarch/status/683887563489202176","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PhockYou/status/684009778822004736","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/rubyjack1963/status/684032281619529729","title":"","type":"Twitter","language":"en","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.19},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.63}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/suzettepetillo/status/683888647087628288","title":"","type":"Twitter","language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.26},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.14},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NYCActivism/status/683847462373687297","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":43,"assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.13},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.86}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.28},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.25},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.15}]},{"url":"http://twitter.com/happy_stylinson/status/683822946490675205","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/sweatinggold/status/683845558872719360","title":"","type":"Twitter","location":"New York, NY 10103, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York","zipcode":"10103"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/melissaaroycee/status/683855724020117504","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/NadiaRosana_/status/683853015128911876","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/JennaS1618/status/683852260741353474","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.29},{"emotionId":4404821231,"emotionName":"Surprise","score":0.1},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.17},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/Kamikaze_98/status/684117415421071361","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.12},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.86}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.82},{"emotionId":4404821233,"emotionName":"Neutral","score":0.03},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gamergirl1236/status/683967910109253633","title":"","type":"Twitter","language":"en","authorKlout":31,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.15},{"emotionId":4404821233,"emotionName":"Neutral","score":0.46},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/occupySYDNEY/status/683844538159382528","title":"","type":"Twitter","location":"Sydney, New South Wales, AUS","geolocation":{"id":"AUS.New South Wales.Sydney","name":"Sydney","country":"AUS","state":"New South Wales","city":"Sydney"},"language":"en","authorKlout":61,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.13},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.86}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.28},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.21},{"emotionId":4404821233,"emotionName":"Neutral","score":0.25},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.15}]},{"url":"http://twitter.com/CxlTheClownShow/status/683897401929764864","title":"","type":"Twitter","language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.3},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/zapbrit/status/683934696380608513","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Fou2Cunnis/status/683921092965220352","title":"","type":"Twitter","location":"Languedoc-Roussillon, FRA","geolocation":{"id":"FRA.Languedoc-Roussillon","name":"Languedoc-Roussillon","country":"FRA","state":"Languedoc-Roussillon"},"language":"es","authorKlout":26,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.11}],"emotionScores":[]},{"url":"http://twitter.com/lilly0019/status/683867486803079168","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Louismybossx/status/683894754401214464","title":"","type":"Twitter","language":"es","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/brynn_kedraa/status/683868291429982208","title":"","type":"Twitter","language":"en","authorKlout":22,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.21},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TapatioPapi/status/683825274174046208","title":"","type":"Twitter","location":"Palm Springs, CA, USA","geolocation":{"id":"USA.CA.Palm Springs","name":"Palm Springs","country":"USA","state":"CA","city":"Palm Springs"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.36},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/rbdharmonizer/status/684084028006346752","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/nevadaneva/status/684024948600381441","title":"","type":"Twitter","language":"en","authorKlout":24,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.27},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_alinnecampos/status/684082452281868290","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"es","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/CaceresYulissa/status/683895164239241216","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/1tab3timesaday/status/684025984585175040","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.27},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chetimette/status/684129454076096512","title":"","type":"Twitter","language":"fr","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[]},{"url":"http://twitter.com/mediastrings/status/683836471476928512","title":"","type":"Twitter","location":"DEU","geolocation":{"id":"DEU","name":"Germany","country":"DEU"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.28},{"emotionId":4404821233,"emotionName":"Neutral","score":0.04},{"emotionId":4404821232,"emotionName":"Fear","score":0.48},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Pandacorn_swag/status/683932159443271680","title":"","type":"Twitter","language":"en","authorKlout":30,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/atlastcabello/status/684080891820421120","title":"","type":"Twitter","language":"es","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/gary4205/status/684022846662680576","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.27},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.39},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/regretsong/status/683820474086760449","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.12},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.36},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.42},{"emotionId":4404821232,"emotionName":"Fear","score":0.13},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/grandpooba5440/status/683859909180395520","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.71},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.25}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/akira2535/status/683998632446525440","title":"","type":"Twitter","language":"es","authorKlout":11,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/saskamare/status/683819633040691200","title":"","type":"Twitter","location":"CA 95603, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA","zipcode":"95603"},"language":"en","authorKlout":59,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.12},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/pwrposecabeyo/status/684082277765279744","title":"","type":"Twitter","language":"es","authorKlout":53,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/xrlxharrygirl/status/683894343699058690","title":"","type":"Twitter","location":"Mexico City, Distrito Federal, MEX","geolocation":{"id":"MEX.Distrito Federal.Mexico City","name":"Mexico City","country":"MEX","state":"Distrito Federal","city":"Mexico City"},"language":"es","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/colamanbb/status/683876482876227588","title":"","type":"Twitter","language":"es","authorKlout":11,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/carlos_angari/status/683860377818497024","title":"","type":"Twitter","language":"es","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/loun5566/status/683890183331172357","title":"","type":"Twitter","language":"es","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[]},{"url":"http://twitter.com/Saevyan/status/684084175985577985","title":"","type":"Twitter","location":"Malaga, Andalucia, ESP","geolocation":{"id":"ESP.Andalucia.Malaga","name":"Malaga","country":"ESP","state":"Andalucia","city":"Malaga"},"language":"es","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.11},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]}],"totalPostsAvailable":2764,"status":"success"} \ No newline at end of file diff --git a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-05.json b/apps/topics-mine/tests/data/ch/ch-posts-2016-01-05.json deleted file mode 100644 index cd9c7908fa..0000000000 --- a/apps/topics-mine/tests/data/ch/ch-posts-2016-01-05.json +++ /dev/null @@ -1 +0,0 @@ -{"posts":[{"url":"http://twitter.com/chance_rochlitz/status/684373638951243776","title":"","type":"Twitter","location":"WY, USA","geolocation":{"id":"USA.WY","name":"Wyoming","country":"USA","state":"WY"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/career4world/status/684389585233821696","title":"","type":"Twitter","location":"Uttar Pradesh, IND","geolocation":{"id":"IND.Uttar Pradesh","name":"Uttar Pradesh","country":"IND","state":"Uttar Pradesh"},"language":"en","authorKlout":24,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/oceanbcake/status/684181003628195841","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.22},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mingfuook/status/684375696337145857","title":"","type":"Twitter","language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/MRIrene/status/684354381123223552","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rgeis20/status/684491211340550144","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jackson_rashone/status/684385767838334976","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":10,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/pritambakshi501/status/684378897136353280","title":"","type":"Twitter","location":"Kolkata, West Bengal, IND","geolocation":{"id":"IND.West Bengal.Kolkata","name":"Kolkata","country":"IND","state":"West Bengal","city":"Kolkata"},"language":"en","authorKlout":59,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.3},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.18},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/oceanbcake/status/684489507991769088","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/odordoc1upton/status/684182356433989633","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/charlene_welch/status/684495689166880768","title":"","type":"Twitter","location":"Santa Rosa, CA 95476, USA","geolocation":{"id":"USA.CA.Santa Rosa","name":"Santa Rosa","country":"USA","state":"CA","city":"Santa Rosa","zipcode":"95476"},"language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FletcherCbpaws/status/684180839836561408","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/oceanbcake/status/684180365603278850","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.29},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NormanSie/status/684344275564285954","title":"","type":"Twitter","language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":1.0},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/oceanbcake/status/684181357589692416","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NamNix/status/684180432066375681","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dyniace/status/684500343619719168","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.9},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BenjaminIkuta/status/684301377556709376","title":"","type":"Twitter","location":"Vallejo, CA, USA","geolocation":{"id":"USA.CA.Vallejo","name":"Vallejo","country":"USA","state":"CA","city":"Vallejo"},"language":"en","authorKlout":25,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ktnicoll87/status/684224316242722816","title":"","type":"Twitter","location":"Rochester, NY, USA","geolocation":{"id":"USA.NY.Rochester","name":"Rochester","country":"USA","state":"NY","city":"Rochester"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.33},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/econgregation/status/684188949439315968","title":"","type":"Twitter","location":"Queensland, AUS","geolocation":{"id":"AUS.Queensland","name":"Queensland","country":"AUS","state":"Queensland"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/missb62/status/684237804671373312","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/politicsiq/status/684357760339726337","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821232,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.16},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.19},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/patdempsey58/status/684239497572167680","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/dbertles/status/684193303437426688","title":"","type":"Twitter","location":"Louisville, KY 47130, USA","geolocation":{"id":"USA.KY.Louisville","name":"Louisville","country":"USA","state":"IN","city":"Louisville","zipcode":"47130"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.52},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Cooking4Bernie/status/684220530464043012","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.33},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/myhealthcoach1/status/684209821101486080","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":54,"assignedCategoryId":4404821235,"assignedEmotionId":4404821228,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.99}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.51},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.16},{"emotionId":4404821233,"emotionName":"Neutral","score":0.0},{"emotionId":4404821232,"emotionName":"Fear","score":0.21},{"emotionId":4404821234,"emotionName":"Anger","score":0.07}]},{"url":"http://twitter.com/oceanbcake/status/684180307122102272","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ragtown48/status/684182099805343744","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/follownewsnow/status/684450362627985410","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.24},{"emotionId":4404821233,"emotionName":"Neutral","score":0.35},{"emotionId":4404821232,"emotionName":"Fear","score":0.27},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Happy2BMom1/status/684182069921079296","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FrankenGator/status/684259389339996160","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.24},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/odordoc1upton/status/684182556321943553","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.44},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.19},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/washumom/status/684239785012023297","title":"","type":"Twitter","location":"IL, USA","geolocation":{"id":"USA.IL","name":"Illinois","country":"USA","state":"IL"},"language":"en","authorKlout":59,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.99},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.17},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/samsunhaberport/status/684332677932122112","title":"","type":"Twitter","language":"tr","authorKlout":16,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/phyl1127/status/684506587076116480","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bobbiejaneV/status/684431375450116096","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/eshuman34/status/684188382445092865","title":"","type":"Twitter","location":"Lincoln, NE 68503, USA","geolocation":{"id":"USA.NE.Lincoln","name":"Lincoln","country":"USA","state":"NE","city":"Lincoln","zipcode":"68503"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NeBonnie/status/684478761606234112","title":"","type":"Twitter","language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MJK98123/status/684477900922470400","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/CuantoNosAmamos/status/684314786151055360","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"es","authorKlout":31,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.98},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/BLUIZK81/status/684477722643439617","title":"","type":"Twitter","language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/CarlsbadDreamin/status/684429323072225280","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/marcylauren/status/684428653317505024","title":"","type":"Twitter","location":"DE, USA","geolocation":{"id":"USA.DE","name":"Delaware","country":"USA","state":"DE"},"language":"en","authorKlout":59,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mansstory2/status/684495723434393600","title":"","type":"Twitter","location":"Colima, Colima, MEX","geolocation":{"id":"MEX.Colima.Colima","name":"Colima","country":"MEX","state":"Colima","city":"Colima"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/hale4jesus/status/684478267210903552","title":"","type":"Twitter","language":"en","authorKlout":62,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/soder606/status/684430014486417408","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Lucymax111/status/684480148943560704","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/CHHolte/status/684428925217419264","title":"","type":"Twitter","location":"MD 21704, USA","geolocation":{"id":"USA.MD","name":"Maryland","country":"USA","state":"MD","zipcode":"21704"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GlennLittle5/status/684479737020940290","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Montana0323/status/684478028383129600","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorKlout":59,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/politicsiq/status/684357759408603136","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.98},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.23},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/zzglamour/status/684454342427045889","title":"","type":"Twitter","language":"en","authorKlout":15,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.98},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.42},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nelsontheroad/status/684487954350391297","title":"","type":"Twitter","location":"Sao Paulo, SP, BRA","geolocation":{"id":"BRA.SP.Sao Paulo","name":"Sao Paulo","country":"BRA","state":"SP","city":"Sao Paulo"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.78},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.16},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.0},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.98},{"emotionId":4404821232,"emotionName":"Fear","score":0.0},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_ababj/status/684491497710862337","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/mariajoseraymo1/status/684172989064151040","title":"","type":"Twitter","location":"ESP","geolocation":{"id":"ESP","name":"Spain","country":"ESP"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.02},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.31},{"emotionId":4404821233,"emotionName":"Neutral","score":0.15},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.15}]},{"url":"http://twitter.com/a_ababj/status/684492319031070720","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/grantlander33/status/684432047050481664","title":"","type":"Twitter","language":"en","authorKlout":38,"assignedCategoryId":4404821235,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.03},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.11},{"emotionId":4404821231,"emotionName":"Surprise","score":0.11},{"emotionId":4404821227,"emotionName":"Joy","score":0.41},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.1},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.1}]},{"url":"http://twitter.com/a_ababj/status/684492193067708417","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/bumblebee_ve/status/684502442487107584","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.18},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/revsaint08/status/684498879979585537","title":"","type":"Twitter","language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.18},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/a_ababj/status/684492450031730688","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/KrisKB27/status/684189696843329537","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/kitgainer2002/status/684294893011779584","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.53},{"emotionId":4404821232,"emotionName":"Fear","score":0.2},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/Bellajane127/status/684497711001780224","title":"","type":"Twitter","language":"en","authorKlout":60,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.18},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/a_ababj/status/684492400547344384","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/a_ababj/status/684492151720284160","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/a_ababj/status/684492063602159617","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/romneydontcare/status/684247023948726273","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.5},{"emotionId":4404821233,"emotionName":"Neutral","score":0.26},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_ababj/status/684492126718005248","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/a_ababj/status/684492274093441025","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/a_ababj/status/684492359271202816","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/KevinBaisdon/status/684473441185972224","title":"","type":"Twitter","location":"TX 78613, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX","zipcode":"78613"},"language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/itsisxbellx/status/684494982728822784","title":"","type":"Twitter","language":"en","authorKlout":36,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.01},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.97}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.13},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.33},{"emotionId":4404821233,"emotionName":"Neutral","score":0.08},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.19}]},{"url":"http://twitter.com/a_ababj/status/684492098507112448","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/a_ababj/status/684492221073063936","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.97},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.51},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.06}]},{"url":"http://twitter.com/cssueta/status/684204266928607232","title":"","type":"Twitter","language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/gmiller1952/status/684198370643062784","title":"","type":"Twitter","language":"en","authorKlout":62,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/littlecricket10/status/684185041912643585","title":"","type":"Twitter","location":"TN, USA","geolocation":{"id":"USA.TN","name":"Tennessee","country":"USA","state":"TN"},"language":"en","authorKlout":22,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TexasSheBandit/status/684445541896302592","title":"","type":"Twitter","location":"ISR","geolocation":{"id":"ISR","name":"Israel","country":"ISR"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mountianmama64/status/684164587017650176","title":"","type":"Twitter","location":"TN, USA","geolocation":{"id":"USA.TN","name":"Tennessee","country":"USA","state":"TN"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.15},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.6},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/politicsiq/status/684266610287185920","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.16},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.45},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/dannyboy5368/status/684381101863731204","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ninobrown_ETP/status/684400316876455936","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"10169"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/gott_arun/status/684431349583839232","title":"","type":"Twitter","location":"Mexico City, Distrito Federal, MEX","geolocation":{"id":"MEX.Distrito Federal.Mexico City","name":"Mexico City","country":"MEX","state":"Distrito Federal","city":"Mexico City"},"language":"en","authorKlout":54,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.56},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/moorerock80/status/684382981633355776","title":"","type":"Twitter","language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kiwihighlander/status/684432239430516744","title":"","type":"Twitter","location":"Queensland, AUS","geolocation":{"id":"AUS.Queensland","name":"Queensland","country":"AUS","state":"Queensland"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.56},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ArunasHotma/status/684456762825662464","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"es","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/4everIndigo/status/684222869660803075","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ContemporaryOil/status/684162514209378305","title":"","type":"Twitter","location":"Bloomington, IL 61761, USA","geolocation":{"id":"USA.IL.Bloomington","name":"Bloomington","country":"USA","state":"IL","city":"Bloomington","zipcode":"61761"},"language":"en","authorKlout":22,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.33},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.22}]},{"url":"http://twitter.com/official_udha/status/684374438939246593","title":"","type":"Twitter","location":"Jakarta, Jakarta Raya, IDN","geolocation":{"id":"IDN.Jakarta Raya.Jakarta","name":"Jakarta","country":"IDN","state":"Jakarta Raya","city":"Jakarta"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DebndanfarrDeb/status/684365122412888064","title":"","type":"Twitter","location":"PRI","geolocation":{"id":"PRI","name":"Puerto Rico","country":"PRI"},"language":"en","authorKlout":63,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/bumblebee_ve/status/684503433722769408","title":"","type":"Twitter","language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.33},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.22}]},{"url":"http://twitter.com/AlamoEdward/status/684471820817309696","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/BradyCaseybrady/status/684182203694231552","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_SoundAround_/status/684374435982217217","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.13},{"emotionId":4404821233,"emotionName":"Neutral","score":0.49},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/fursnake7/status/684458781904797696","title":"","type":"Twitter","location":"Las Vegas, NV 89102, USA","geolocation":{"id":"USA.NV.Las Vegas","name":"Las Vegas","country":"USA","state":"NV","city":"Las Vegas","zipcode":"89102"},"language":"es","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/yesdog1942/status/684367630090780673","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.59},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/KnisleyBryan/status/684182986879705088","title":"","type":"Twitter","location":"IA, USA","geolocation":{"id":"USA.IA","name":"Iowa","country":"USA","state":"IA"},"language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/larryhouse/status/684185666989633536","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.96},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.15},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/brooklynnygirl/status/684220904587448320","title":"","type":"Twitter","location":"Los Angeles, CA 90006, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90006"},"language":"en","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/johneebegood2/status/684428347401748484","title":"","type":"Twitter","location":"Tuscaloosa, AL 35473, USA","geolocation":{"id":"USA.AL.Tuscaloosa","name":"Tuscaloosa","country":"USA","state":"AL","city":"Tuscaloosa","zipcode":"35473"},"language":"en","authorKlout":62,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lloyd_woods/status/684208641474428930","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LegginMegan/status/684209260260143104","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_weedle/status/684237647649214464","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Jack_Whiteman/status/684213706222362625","title":"","type":"Twitter","location":"Columbia, MO, USA","geolocation":{"id":"USA.MO.Columbia","name":"Columbia","country":"USA","state":"MO","city":"Columbia"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WhiskersBear11/status/684209655845892096","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/carbudd20/status/684212949603454976","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Scrufey21/status/684427626128080896","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/K1erry/status/684392609876422656","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":59,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/darongabeyan/status/684225185600417792","title":"","type":"Twitter","location":"Cairo, Al Qahirah, EGY","geolocation":{"id":"EGY.Al Qahirah.Cairo","name":"Cairo","country":"EGY","state":"Al Qahirah","city":"Cairo"},"language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ludy730/status/684392834187812864","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/westernagent/status/684390796091461632","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.36},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MIS_Investors/status/684399894384136193","title":"","type":"Twitter","language":"en","authorKlout":25,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DJpillz317/status/684503341984956417","title":"","type":"Twitter","location":"Bloomington, IN 47406, USA","geolocation":{"id":"USA.IN.Bloomington","name":"Bloomington","country":"USA","state":"IN","city":"Bloomington","zipcode":"47406"},"language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ddryan/status/684214717565538306","title":"","type":"Twitter","location":"Morgantown, WV 26505, USA","geolocation":{"id":"USA.WV.Morgantown","name":"Morgantown","country":"USA","state":"WV","city":"Morgantown","zipcode":"26505"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/G_Racie1/status/684265548876746752","title":"","type":"Twitter","location":"IN, USA","geolocation":{"id":"USA.IN","name":"Indiana","country":"USA","state":"IN"},"language":"en","authorKlout":37,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GripeO_Outreach/status/684435023089545216","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.04},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.37},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/TheOGSince93/status/684235823752019968","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/robertperry34/status/684216443253166081","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"14481"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HipHipJosee/status/684190187434414081","title":"","type":"Twitter","location":"Wheeling, WV, USA","geolocation":{"id":"USA.WV.Wheeling","name":"Wheeling","country":"USA","state":"WV","city":"Wheeling"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KristaHay/status/684208563175186432","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/blackmamba955/status/684212105734524928","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JoannaWoman991/status/684492052688584704","title":"","type":"Twitter","location":"IDN","geolocation":{"id":"IDN","name":"Indonesia","country":"IDN"},"language":"en","authorKlout":55,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.36},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.43},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Rad_shack/status/684232165186486272","title":"","type":"Twitter","language":"en","authorKlout":13,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jack17moore/status/684308544548671489","title":"","type":"Twitter","language":"en","authorKlout":20,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BradySmearman/status/684261075555057665","title":"","type":"Twitter","location":"Morgantown, WV 26505, USA","geolocation":{"id":"USA.WV.Morgantown","name":"Morgantown","country":"USA","state":"WV","city":"Morgantown","zipcode":"26505"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/claudswanamaker/status/684223970338553856","title":"","type":"Twitter","location":"Jacksonville, FL, USA","geolocation":{"id":"USA.FL.Jacksonville","name":"Jacksonville","country":"USA","state":"FL","city":"Jacksonville"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sweetromance/status/684182907347464192","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":59,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BonnieBrode/status/684208933989257216","title":"","type":"Twitter","location":"Austin, TX 78703, USA","geolocation":{"id":"USA.TX.Austin","name":"Austin","country":"USA","state":"TX","city":"Austin","zipcode":"78703"},"language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RickyRodge/status/684224178120192000","title":"","type":"Twitter","location":"Atlanta, GA 30309, USA","geolocation":{"id":"USA.GA.Atlanta","name":"Atlanta","country":"USA","state":"GA","city":"Atlanta","zipcode":"30309"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RickCed_/status/684224691272298496","title":"","type":"Twitter","language":"en","authorKlout":26,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AlexJChap/status/684247116747636736","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/HpEazzzy/status/684197412345364480","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BeefyBaize/status/684211162980970496","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/dani_roper/status/684228861530341380","title":"","type":"Twitter","location":"Gainesville, FL 32605, USA","geolocation":{"id":"USA.FL.Gainesville","name":"Gainesville","country":"USA","state":"FL","city":"Gainesville","zipcode":"32605"},"language":"en","authorKlout":33,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/thepizzaplacesf/status/684477795456528384","title":"","type":"Twitter","location":"San Francisco, CA 94114, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco","zipcode":"94114"},"language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/ChiefPowPow/status/684208401245667329","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nickel_less_/status/684288815981326336","title":"","type":"Twitter","location":"WV 26034, USA","geolocation":{"id":"USA.WV","name":"West Virginia","country":"USA","state":"WV","zipcode":"26034"},"language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/maxitori/status/684224314976112640","title":"","type":"Twitter","location":"ON, CAN","geolocation":{"id":"CAN.ON","name":"Ontario","country":"CAN","state":"ON"},"language":"en","authorKlout":30,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JortsEthan/status/684208353766068225","title":"","type":"Twitter","language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Bensongrl/status/684216951581851648","title":"","type":"Twitter","language":"en","authorKlout":19,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jtblogs/status/684415621006815232","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/thelenHA/status/684389096576413696","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/perriganps/status/684178062234267648","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Lordunger/status/684208718116962304","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BrysonLeger/status/684215090120421380","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RobertA87413263/status/684399961337798656","title":"","type":"Twitter","location":"Merced, CA 95348, USA","geolocation":{"id":"USA.CA.Merced","name":"Merced","country":"USA","state":"CA","city":"Merced","zipcode":"95348"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/credd10/status/684411845319331840","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":21,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rickhicks9/status/684214355273986048","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":24,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/layton_28/status/684208321075769344","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":32,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mm_galley/status/684292877300690944","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":29,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RueDevon/status/684208330990985216","title":"","type":"Twitter","location":"Salem, OR 97302, USA","geolocation":{"id":"USA.OR.Salem","name":"Salem","country":"USA","state":"OR","city":"Salem","zipcode":"97302"},"language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/arkayvi/status/684254370213400576","title":"","type":"Twitter","language":"en","authorKlout":13,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mariaa_lynn/status/684253218575126528","title":"","type":"Twitter","language":"en","authorKlout":38,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/joedawnn/status/684191644535500800","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bennyepstein/status/684211854520913920","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lurobson/status/684217663862771712","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":26,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/confusedenergy/status/684221629161803776","title":"","type":"Twitter","language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/joeterlaje/status/684210619784904704","title":"","type":"Twitter","location":"OR, USA","geolocation":{"id":"USA.OR","name":"Oregon","country":"USA","state":"OR"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/africonservativ/status/684217388066181120","title":"","type":"Twitter","location":"Lubbock, TX, USA","geolocation":{"id":"USA.TX.Lubbock","name":"Lubbock","country":"USA","state":"TX","city":"Lubbock"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/burkel__/status/684208666078220288","title":"","type":"Twitter","location":"Lexington, KY 40502, USA","geolocation":{"id":"USA.KY.Lexington","name":"Lexington","country":"USA","state":"KY","city":"Lexington","zipcode":"40502"},"language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sadboyjesua/status/684215715088338944","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Karloswith_a_k/status/684228166580224000","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KaysOlivia/status/684229338057736192","title":"","type":"Twitter","language":"en","authorKlout":30,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BlindsLeftPeg/status/684212471821893632","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mpk1999/status/684209378162012164","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Newsium/status/684450804984463360","title":"","type":"Twitter","location":"Sydney, New South Wales, AUS","geolocation":{"id":"AUS.New South Wales.Sydney","name":"Sydney","country":"AUS","state":"New South Wales","city":"Sydney"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.56},{"emotionId":4404821232,"emotionName":"Fear","score":0.22},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AmyNFeliciano/status/684209406536495104","title":"","type":"Twitter","language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/The_Matt_Piazza/status/684214749727469568","title":"","type":"Twitter","location":"Richmond, VA, USA","geolocation":{"id":"USA.VA.Richmond","name":"Richmond","country":"USA","state":"VA","city":"Richmond"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sourcasm/status/684212151708323841","title":"","type":"Twitter","location":"Delhi, Delhi, IND","geolocation":{"id":"IND.Delhi.Delhi","name":"Delhi","country":"IND","state":"Delhi","city":"Delhi"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/svenmeyerrr/status/684237988470079488","title":"","type":"Twitter","location":"Cape Town, Western Cape, ZAF","geolocation":{"id":"ZAF.Western Cape.Cape Town","name":"Cape Town","country":"ZAF","state":"Western Cape","city":"Cape Town"},"language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JWaReesS/status/684242112909422592","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.05},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.95}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.25},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.29},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ktnicoll87/status/684224457154539525","title":"","type":"Twitter","location":"Rochester, NY, USA","geolocation":{"id":"USA.NY.Rochester","name":"Rochester","country":"USA","state":"NY","city":"Rochester"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/guy_someone69/status/684229348681908224","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/westernagent/status/684390794514448384","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.12},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.36},{"emotionId":4404821232,"emotionName":"Fear","score":0.18},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ChickJerkin/status/684227853777408004","title":"","type":"Twitter","language":"en","authorKlout":12,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheNotoriousTKB/status/684194536877236224","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"84321"},"language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RayRaySharpay/status/684220094222712832","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Markerito/status/684245385217327105","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JackWilliamRtF/status/684235124733427712","title":"","type":"Twitter","location":"San Marcos, TX, USA","geolocation":{"id":"USA.TX.San Marcos","name":"San Marcos","country":"USA","state":"TX","city":"San Marcos"},"language":"en","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/smoakretz/status/684443792108294144","title":"","type":"Twitter","location":"Caen, Basse-Normandie, FRA","geolocation":{"id":"FRA.Basse-Normandie.Caen","name":"Caen","country":"FRA","state":"Basse-Normandie","city":"Caen"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KnightBLKRifle/status/684513671670853632","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Call_Me_SwaggyB/status/684208952763105280","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BrandonHacha/status/684208495747547136","title":"","type":"Twitter","location":"Fort Wayne, IN 46802, USA","geolocation":{"id":"USA.IN.Fort Wayne","name":"Fort Wayne","country":"USA","state":"IN","city":"Fort Wayne","zipcode":"46802"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mikemhall254/status/684227238531747841","title":"","type":"Twitter","location":"MN, USA","geolocation":{"id":"USA.MN","name":"Minnesota","country":"USA","state":"MN"},"language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/makweefah/status/684241494320889856","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_CFJ_/status/684508869582831616","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kellydcasey/status/684233954803580928","title":"","type":"Twitter","location":"New Braunfels, TX 78155, USA","geolocation":{"id":"USA.TX.New Braunfels","name":"New Braunfels","country":"USA","state":"TX","city":"New Braunfels","zipcode":"78155"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JamesMcfaddn/status/684234645530112000","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AbnerMiralda/status/684215621018632192","title":"","type":"Twitter","location":"Louisville, KY 40217, USA","geolocation":{"id":"USA.KY.Louisville","name":"Louisville","country":"USA","state":"KY","city":"Louisville","zipcode":"40217"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/goawaysarahh/status/684228958573867008","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AgainstDTrump/status/684237686496997376","title":"","type":"Twitter","language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/snorgen_/status/684217176400752643","title":"","type":"Twitter","language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/G_Slaw/status/684477064095920128","title":"","type":"Twitter","location":"Lansing, MI, USA","geolocation":{"id":"USA.MI.Lansing","name":"Lansing","country":"USA","state":"MI","city":"Lansing"},"language":"en","authorKlout":20,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/iAmZachAtzen/status/684208728590057473","title":"","type":"Twitter","location":"IA, USA","geolocation":{"id":"USA.IA","name":"Iowa","country":"USA","state":"IA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/boredbecky/status/684211553713926146","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/UvKLvr47/status/684221369597333506","title":"","type":"Twitter","language":"en","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Hydrogenillary/status/684272835083108352","title":"","type":"Twitter","location":"Singapore, Central Singapore, SGP","geolocation":{"id":"SGP.Central Singapore.Singapore","name":"Singapore","country":"SGP","state":"Central Singapore","city":"Singapore"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SwaggersunSwag/status/684208571727384576","title":"","type":"Twitter","location":"Lowell, MA 01832, USA","geolocation":{"id":"USA.MA.Lowell","name":"Lowell","country":"USA","state":"MA","city":"Lowell","zipcode":"01832"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Ray_William/status/684293419821346816","title":"","type":"Twitter","location":"Cairo, Al Qahirah, EGY","geolocation":{"id":"EGY.Al Qahirah.Cairo","name":"Cairo","country":"EGY","state":"Al Qahirah","city":"Cairo"},"language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SamGiles5/status/684224986912034816","title":"","type":"Twitter","language":"en","authorKlout":25,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WalterDacon1/status/684229935553056768","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TwristN/status/684212980989472769","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MarkHines3/status/684193751946891264","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"37201"},"language":"en","authorKlout":31,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheTylerRibeiro/status/684209199904100352","title":"","type":"Twitter","location":"MA 02767, USA","geolocation":{"id":"USA.MA","name":"Massachusetts","country":"USA","state":"MA","zipcode":"02767"},"language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KyleHilss/status/684223377733726208","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":30,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AllenGuist/status/684493408946135040","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Where_Is_Sylvia/status/684216639257243648","title":"","type":"Twitter","language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/snaredumber/status/684208285411487744","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TylerKern27/status/684208312972361728","title":"","type":"Twitter","location":"Harrisburg, PA 17033, USA","geolocation":{"id":"USA.PA.Harrisburg","name":"Harrisburg","country":"USA","state":"PA","city":"Harrisburg","zipcode":"17033"},"language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Allanhamilton12/status/684363252441165825","title":"","type":"Twitter","location":"IN, USA","geolocation":{"id":"USA.IN","name":"Indiana","country":"USA","state":"IN"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/684184747866632193","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.22},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.0},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chiefthief_/status/684209350668349442","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/OMGeeItsCarlee/status/684231042018836484","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":32,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/emmetbroaders/status/684194377799958528","title":"","type":"Twitter","location":"Dublin, Dublin, IRL","geolocation":{"id":"IRL.Dublin.Dublin","name":"Dublin","country":"IRL","state":"Dublin","city":"Dublin"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BitchSeat/status/684406716520206336","title":"","type":"Twitter","location":"Irvine, CA, USA","geolocation":{"id":"USA.CA.Irvine","name":"Irvine","country":"USA","state":"CA","city":"Irvine"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cassiefabulous/status/684259280258633728","title":"","type":"Twitter","language":"en","authorKlout":18,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/hilljam/status/684230379541143555","title":"","type":"Twitter","location":"Los Angeles, CA 90006, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90006"},"language":"en","authorKlout":51,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Quiz_Khalifa/status/684199477515841536","title":"","type":"Twitter","location":"Louisville, KY 40217, USA","geolocation":{"id":"USA.KY.Louisville","name":"Louisville","country":"USA","state":"KY","city":"Louisville","zipcode":"40217"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lvphillies08/status/684476624012615680","title":"","type":"Twitter","language":"en","authorKlout":62,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nathan_o453/status/684216084686356481","title":"","type":"Twitter","language":"en","authorKlout":17,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Fiqqy/status/684209068257349632","title":"","type":"Twitter","language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/no_fo_sho/status/684212412090871809","title":"","type":"Twitter","language":"en","authorKlout":31,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/QuencyK/status/684212931593109504","title":"","type":"Twitter","location":"Charleston, SC 29405, USA","geolocation":{"id":"USA.SC.Charleston","name":"Charleston","country":"USA","state":"SC","city":"Charleston","zipcode":"29405"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/haleighunt/status/684191799217225729","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/justart5/status/684218697473372160","title":"","type":"Twitter","location":"Kansas City, MO, USA","geolocation":{"id":"USA.MO.Kansas City","name":"Kansas City","country":"USA","state":"MO","city":"Kansas City"},"language":"en","authorKlout":17,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kinson_Mike/status/684214571834470401","title":"","type":"Twitter","location":"Washington, DC, DC 20147, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"VA","city":"Washington, DC","zipcode":"20147"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DeniseBronsdon/status/684477658906910721","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.36},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.43},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DrTrots/status/684248383087747072","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sockgameonfleek/status/684214354695294977","title":"","type":"Twitter","location":"Richmond, VA, USA","geolocation":{"id":"USA.VA.Richmond","name":"Richmond","country":"USA","state":"VA","city":"Richmond"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mFawster/status/684208463732424707","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":19,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/IAmCans69/status/684210127021469696","title":"","type":"Twitter","language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/iamIT4life/status/684405020813492224","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/realbigstriper/status/684401217276112896","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/NotChrisChavez/status/684275159377686528","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Toleman15/status/684220020600127488","title":"","type":"Twitter","language":"en","authorKlout":24,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MarkcyMarc/status/684230080566935552","title":"","type":"Twitter","location":"WA, USA","geolocation":{"id":"USA.WA","name":"Washington","country":"USA","state":"WA"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/keelyn_kotecki/status/684208682909995012","title":"","type":"Twitter","language":"en","authorKlout":48,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DclareDiane/status/684474389098700800","title":"","type":"Twitter","location":"MN, USA","geolocation":{"id":"USA.MN","name":"Minnesota","country":"USA","state":"MN"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BenHays2/status/684208635711336448","title":"","type":"Twitter","location":"Bryan, TX 77845, USA","geolocation":{"id":"USA.TX.Bryan","name":"Bryan","country":"USA","state":"TX","city":"Bryan","zipcode":"77845"},"language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/lyssrwatson/status/684212678777147392","title":"","type":"Twitter","location":"McAllen, TX, USA","geolocation":{"id":"USA.TX.McAllen","name":"McAllen","country":"USA","state":"TX","city":"McAllen"},"language":"en","authorKlout":15,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Jaycub_Tomhiss/status/684215141760679936","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/carizarbelaez/status/684425083432087553","title":"","type":"Twitter","location":"Ciudad Guayana, Bolivar, VEN","geolocation":{"id":"VEN.Bolivar.Ciudad Guayana","name":"Ciudad Guayana","country":"VEN","state":"Bolivar","city":"Ciudad Guayana"},"language":"es","authorKlout":17,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[]},{"url":"http://twitter.com/krissy_moo/status/684214121517027330","title":"","type":"Twitter","language":"en","authorKlout":35,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/GlennBagrowski/status/684174143940608000","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/missgubooty/status/684234491875864576","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_johnclark_/status/684208402780651520","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"48206"},"language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/robtdfischl/status/684401905716604928","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/The_Shines/status/684494140860567552","title":"","type":"Twitter","language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LoriCroghan/status/684208981636562945","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":31,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/weis_man/status/684210312476672000","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"65201"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheresaSchroe14/status/684222070012645377","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kennylizzz/status/684208689507508224","title":"","type":"Twitter","location":"Lake Charles, LA 70665, USA","geolocation":{"id":"USA.LA.Lake Charles","name":"Lake Charles","country":"USA","state":"LA","city":"Lake Charles","zipcode":"70665"},"language":"en","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/__Trend_/status/684213946975256576","title":"","type":"Twitter","language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/emilyholzheimer/status/684231383473061888","title":"","type":"Twitter","language":"en","authorKlout":36,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JRCarroll128/status/684217893035192320","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CJAllen33/status/684228819805450240","title":"","type":"Twitter","location":"Cincinnati, OH 45220, USA","geolocation":{"id":"USA.OH.Cincinnati","name":"Cincinnati","country":"USA","state":"OH","city":"Cincinnati","zipcode":"45220"},"language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/emmy_fluman/status/684225868315639808","title":"","type":"Twitter","location":"St Augustine, FL, USA","geolocation":{"id":"USA.FL.St Augustine","name":"St. Augustine","country":"USA","state":"FL","city":"St Augustine"},"language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DPrice_IsRight/status/684216195722133504","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Annie_fazio/status/684223857344049153","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chalekelley/status/684208858735230977","title":"","type":"Twitter","location":"Jacksonville, FL, USA","geolocation":{"id":"USA.FL.Jacksonville","name":"Jacksonville","country":"USA","state":"FL","city":"Jacksonville"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AIIArsenal/status/684208432698765312","title":"","type":"Twitter","language":"en","authorKlout":30,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Sociopathically/status/684191738890743808","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/bearclaw_22/status/684219360395673600","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Chomache/status/684204460655177728","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":23,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TMItch80/status/684192622387146752","title":"","type":"Twitter","location":"Portland, OR 97224, USA","geolocation":{"id":"USA.OR.Portland","name":"Portland","country":"USA","state":"OR","city":"Portland","zipcode":"97224"},"language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/itsicarlee/status/684448504463396865","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FionaShekuby/status/684224788315770880","title":"","type":"Twitter","location":"Santo Domingo, Distrito Nacional, DOM","geolocation":{"id":"DOM.Distrito Nacional.Santo Domingo","name":"Santo Domingo","country":"DOM","state":"Distrito Nacional","city":"Santo Domingo"},"language":"en","authorKlout":36,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BrittanyNazaruk/status/684210289080926209","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":31,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/irvingseoexpert/status/684437859814772736","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","authorKlout":19,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.14},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FairbanksPolice/status/684208728690696192","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/delong/status/684392186662653957","title":"","type":"Twitter","location":"San Francisco, CA, USA","geolocation":{"id":"USA.CA.San Francisco","name":"San Francisco","country":"USA","state":"CA","city":"San Francisco"},"language":"en","authorKlout":83,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Choateski48/status/684215643424567297","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Deecams/status/684211641232175105","title":"","type":"Twitter","language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AlamoEdward/status/684196044645613568","title":"","type":"Twitter","language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.44},{"emotionId":4404821232,"emotionName":"Fear","score":0.41},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Jake_May15/status/684221652679393282","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheBig_40/status/684214585977475072","title":"","type":"Twitter","language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/camille_f11/status/684215227957821441","title":"","type":"Twitter","language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jorts4dads/status/684218885873111040","title":"","type":"Twitter","location":"WA, USA","geolocation":{"id":"USA.WA","name":"Washington","country":"USA","state":"WA"},"language":"en","authorKlout":26,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/efugit14/status/684210470056673281","title":"","type":"Twitter","language":"en","authorKlout":37,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Zakydooda/status/684208364860141568","title":"","type":"Twitter","location":"Glasgow, South Western, GBR","geolocation":{"id":"GBR.South Western.Glasgow","name":"Glasgow","country":"GBR","state":"South Western","city":"Glasgow"},"language":"en","authorKlout":41,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/YouWantAnyMoore/status/684214409644929024","title":"","type":"Twitter","location":"Philadelphia, PA, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia"},"language":"en","authorKlout":43,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Jdxc2/status/684218367197102081","title":"","type":"Twitter","language":"en","authorKlout":25,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/joycemayte23/status/684209023411863552","title":"","type":"Twitter","language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/raqcitybitch/status/684223634966220800","title":"","type":"Twitter","language":"en","authorKlout":24,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MyPhillosophy/status/684211818097672192","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":27,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/michaelmcg7/status/684209016390553601","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JamesStech/status/684230652733091844","title":"","type":"Twitter","language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ClaytonTheCat/status/684224187481853952","title":"","type":"Twitter","location":"Raleigh, NC 27520, USA","geolocation":{"id":"USA.NC.Raleigh","name":"Raleigh","country":"USA","state":"NC","city":"Raleigh","zipcode":"27520"},"language":"en","authorKlout":28,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/carlton_cade/status/684248174005850113","title":"","type":"Twitter","language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MrDrMiller/status/684470922003128320","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":25,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Tizrobbie/status/684209602993360897","title":"","type":"Twitter","language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nAtE_thunderup/status/684209601395331072","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":36,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/marleyoloughlin/status/684226169974173696","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","authorKlout":36,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/FlacidTrip/status/684210009396346880","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Mallory_Morris/status/684362502038147077","title":"","type":"Twitter","location":"Little Rock, AR 72015, USA","geolocation":{"id":"USA.AR.Little Rock","name":"Little Rock","country":"USA","state":"AR","city":"Little Rock","zipcode":"72015"},"language":"en","authorKlout":36,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SamHatch4/status/684209680885780480","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RobMoxonChef/status/684476990129213440","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/chrislansford_/status/684334837411495936","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":38,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/generaldietz/status/684210975969513472","title":"","type":"Twitter","language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/suzettepetillo/status/684415914876379136","title":"","type":"Twitter","language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/trumpy17/status/684400279081627648","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.64},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Cooking4Bernie/status/684220724219895808","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":50,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ballensaaan/status/684227973763973121","title":"","type":"Twitter","language":"en","authorKlout":29,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ERlKK_/status/684232239492804608","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":26,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/espo_chris/status/684424529125441537","title":"","type":"Twitter","language":"en","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Captian_Shay/status/684192321684946944","title":"","type":"Twitter","location":"Albuquerque, NM 87124, USA","geolocation":{"id":"USA.NM.Albuquerque","name":"Albuquerque","country":"USA","state":"NM","city":"Albuquerque","zipcode":"87124"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/LowerThrash/status/684195104370868224","title":"","type":"Twitter","location":"MI, USA","geolocation":{"id":"USA.MI","name":"Michigan","country":"USA","state":"MI"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CalvinChildress/status/684229457910067202","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MrAquaSloth/status/684249845503098881","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":31,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JackGardn/status/684237969700552704","title":"","type":"Twitter","language":"en","authorKlout":29,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/oakiie4/status/684208571559604225","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":40,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Joey_Wittmann/status/684208522586943488","title":"","type":"Twitter","location":"Buffalo, NY, USA","geolocation":{"id":"USA.NY.Buffalo","name":"Buffalo","country":"USA","state":"NY","city":"Buffalo"},"language":"en","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/debbie_ceroni/status/684275242135646208","title":"","type":"Twitter","location":"Providence, RI, USA","geolocation":{"id":"USA.RI.Providence","name":"Providence","country":"USA","state":"RI","city":"Providence"},"language":"en","authorKlout":28,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/joeyyyyy_/status/684327114959499264","title":"","type":"Twitter","location":"Singapore, Central Singapore, SGP","geolocation":{"id":"SGP.Central Singapore.Singapore","name":"Singapore","country":"SGP","state":"Central Singapore","city":"Singapore"},"language":"en","authorKlout":27,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/KaylaWebb17/status/684233557695426560","title":"","type":"Twitter","language":"en","authorKlout":30,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/_Jackthesnack/status/684274347876290560","title":"","type":"Twitter","location":"Dallas, TX 75204, USA","geolocation":{"id":"USA.TX.Dallas","name":"Dallas","country":"USA","state":"TX","city":"Dallas","zipcode":"75204"},"language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Campaign4Bernie/status/684220957704216576","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":54,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.38},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.57},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ChapmanIvey/status/684211853443100672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Dfitz91/status/684191704925245440","title":"","type":"Twitter","location":"Philadelphia, PA 19133, USA","geolocation":{"id":"USA.PA.Philadelphia","name":"Philadelphia","country":"USA","state":"PA","city":"Philadelphia","zipcode":"19133"},"language":"en","authorKlout":27,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WhataWagner/status/684208451791159296","title":"","type":"Twitter","location":"Ft Worth, TX 76102, USA","geolocation":{"id":"USA.TX.Ft Worth","name":"Ft. Worth","country":"USA","state":"TX","city":"Ft Worth","zipcode":"76102"},"language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/WhyItTheDrummer/status/684210630543294464","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":36,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CaptainWidecock/status/684216128898469888","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":39,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/QueenofTacos/status/684219580932206592","title":"","type":"Twitter","location":"Denver, CO 80218, USA","geolocation":{"id":"USA.CO.Denver","name":"Denver","country":"USA","state":"CO","city":"Denver","zipcode":"80218"},"language":"en","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.95},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.48},{"emotionId":4404821232,"emotionName":"Fear","score":0.28},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PP15146407/status/684478896520052736","title":"","type":"Twitter","location":"OK 74937, USA","geolocation":{"id":"USA.OK","name":"Oklahoma","country":"USA","state":"OK","zipcode":"74937"},"language":"nl","authorKlout":59,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/sushilpunia/status/684307402343100417","title":"","type":"Twitter","location":"Delhi, Delhi, IND","geolocation":{"id":"IND.Delhi.Delhi","name":"Delhi","country":"IND","state":"Delhi","city":"Delhi"},"language":"en","authorKlout":46,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.23},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Gladari/status/684196983070916609","title":"","type":"Twitter","language":"en","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.75},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/RamonSomoza/status/684450807236841472","title":"","type":"Twitter","location":"Madrid, Madrid, ESP","geolocation":{"id":"ESP.Madrid.Madrid","name":"Madrid","country":"ESP","state":"Madrid","city":"Madrid"},"language":"es","authorKlout":60,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/003a04f8c2054b7/status/684477319709196289","title":"","type":"Twitter","language":"nl","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/_Abieru/status/684396711561695232","title":"","type":"Twitter","language":"en","authorKlout":35,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PositivelyJoan/status/684340947660836864","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AlamoEdward/status/684472158232293376","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.0},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/marybelichis/status/684487444616626176","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":41,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.08},{"emotionId":4404821236,"emotionName":"Disgust","score":0.16},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BeckyCausey/status/684475421002481668","title":"","type":"Twitter","language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.15},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.32},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/a_ababj/status/684162410081460224","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"90210"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821234,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.16},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.07},{"emotionId":4404821232,"emotionName":"Fear","score":0.24},{"emotionId":4404821234,"emotionName":"Anger","score":0.33}]},{"url":"http://twitter.com/AlamoEdward/status/684471940766015488","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.55},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/mrmars663/status/684180443533541377","title":"","type":"Twitter","location":"Sinaloa, MEX","geolocation":{"id":"MEX.Sinaloa","name":"Sinaloa","country":"MEX","state":"Sinaloa"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mrmars663/status/684285897580408832","title":"","type":"Twitter","location":"Sinaloa, MEX","geolocation":{"id":"MEX.Sinaloa","name":"Sinaloa","country":"MEX","state":"Sinaloa"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.77},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/carmenalbala/status/684277516622794752","title":"","type":"Twitter","location":"Gijon, Asturias, ESP","geolocation":{"id":"ESP.Asturias.Gijon","name":"Gijon","country":"ESP","state":"Asturias","city":"Gijon"},"language":"es","authorKlout":38,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/politicsiq/status/684459540159447040","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.94},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.18},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.23},{"emotionId":4404821233,"emotionName":"Neutral","score":0.44},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ktnicoll87/status/684250229273694208","title":"","type":"Twitter","location":"Rochester, NY, USA","geolocation":{"id":"USA.NY.Rochester","name":"Rochester","country":"USA","state":"NY","city":"Rochester"},"language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/aliwojo19/status/684294747356327936","title":"","type":"Twitter","language":"en","authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/nosleenlamente/status/684494147231854592","title":"","type":"Twitter","location":"Buenos Aires, Ciudad de Buenos Aires, ARG","geolocation":{"id":"ARG.Ciudad de Buenos Aires.Buenos Aires","name":"Buenos Aires","country":"ARG","state":"Ciudad de Buenos Aires","city":"Buenos Aires"},"language":"en","authorKlout":43,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.18},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JoyBuzz66/status/684288156531740672","title":"","type":"Twitter","location":"San Diego, CA 92123, USA","geolocation":{"id":"USA.CA.San Diego","name":"San Diego","country":"USA","state":"CA","city":"San Diego","zipcode":"92123"},"language":"en","authorKlout":15,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/demon_bait1/status/684184704019480576","title":"","type":"Twitter","location":"VA, USA","geolocation":{"id":"USA.VA","name":"Virginia","country":"USA","state":"VA"},"language":"en","authorKlout":32,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.07},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.93},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Lsa28/status/684378323217088512","title":"","type":"Twitter","location":"Nagoya, Aichi, JPN","geolocation":{"id":"JPN.Aichi.Nagoya","name":"Nagoya","country":"JPN","state":"Aichi","city":"Nagoya"},"language":"en","authorKlout":28,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.17},{"emotionId":4404821233,"emotionName":"Neutral","score":0.52},{"emotionId":4404821232,"emotionName":"Fear","score":0.06},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kamensky1955/status/684192725831401472","title":"","type":"Twitter","location":"Melbourne, FL 32907, USA","geolocation":{"id":"USA.FL.Melbourne","name":"Melbourne","country":"USA","state":"FL","city":"Melbourne","zipcode":"32907"},"language":"en","authorKlout":45,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CentFL4Trump/status/684282901459021824","title":"","type":"Twitter","location":"FL, USA","geolocation":{"id":"USA.FL","name":"Florida","country":"USA","state":"FL"},"language":"en","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.3},{"emotionId":4404821236,"emotionName":"Disgust","score":0.06},{"emotionId":4404821233,"emotionName":"Neutral","score":0.58},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/DefyingDogma/status/684249958170546181","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CarlosCM14/status/684209296687673344","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"es","authorKlout":45,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/KarenRegis/status/684249713315459072","title":"","type":"Twitter","location":"CO, USA","geolocation":{"id":"USA.CO","name":"Colorado","country":"USA","state":"CO"},"language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/follownewsnow/status/684191774537981953","title":"","type":"Twitter","location":"GBR","geolocation":{"id":"GBR","name":"United Kingdom","country":"GBR"},"language":"en","authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.73},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/PittsBern/status/684250135442944000","title":"","type":"Twitter","location":"Pittsburgh, PA 15112, USA","geolocation":{"id":"USA.PA.Pittsburgh","name":"Pittsburgh","country":"USA","state":"PA","city":"Pittsburgh","zipcode":"15112"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/AnonDroidNet/status/684437456406482944","title":"","type":"Twitter","language":"en","authorKlout":49,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.12},{"emotionId":4404821234,"emotionName":"Anger","score":0.07}]},{"url":"http://twitter.com/katz0081/status/684248821791068160","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.93},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.03},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.09},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.13},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.67},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JeanneFischer33/status/684495940917440512","title":"","type":"Twitter","location":"CA, USA","geolocation":{"id":"USA.CA","name":"California","country":"USA","state":"CA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PositivelyJoan/status/684351144210993152","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"es","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/Romanthewolf1/status/684450189768142848","title":"","type":"Twitter","location":"Denver, CO 80226, USA","geolocation":{"id":"USA.CO.Denver","name":"Denver","country":"USA","state":"CO","city":"Denver","zipcode":"80226"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.65},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.19},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.16}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.92},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/worldisahoax/status/684238466045972482","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DylanWithoutBob/status/684513107885031424","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":33,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/that_kid_twits/status/684485616860565504","title":"","type":"Twitter","language":"en","authorKlout":15,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/EddinBA/status/684189187185184769","title":"","type":"Twitter","location":"OK, USA","geolocation":{"id":"USA.OK","name":"Oklahoma","country":"USA","state":"OK"},"language":"en","authorKlout":16,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.08},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.92},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.19},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/asht0nhall/status/684506699504291840","title":"","type":"Twitter","location":"Springfield, MO 65714, USA","geolocation":{"id":"USA.MO.Springfield","name":"Springfield","country":"USA","state":"MO","city":"Springfield","zipcode":"65714"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/glutefisk/status/684496612580655105","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/caro_bartel/status/684378252715098112","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.05},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/burberryant/status/684490380151238656","title":"","type":"Twitter","location":"Dayton, OH 45402, USA","geolocation":{"id":"USA.OH.Dayton","name":"Dayton","country":"USA","state":"OH","city":"Dayton","zipcode":"45402"},"language":"en","authorKlout":59,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/susanpinkard/status/684354167796817920","title":"","type":"Twitter","language":"en","authorKlout":39,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DestinyandBruce/status/684237795641036801","title":"","type":"Twitter","language":"en","authorKlout":55,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.17},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.65},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/PaulPsian/status/684371276534800385","title":"","type":"Twitter","location":"Cincinnati, OH 45220, USA","geolocation":{"id":"USA.OH.Cincinnati","name":"Cincinnati","country":"USA","state":"OH","city":"Cincinnati","zipcode":"45220"},"language":"en","authorKlout":62,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/rosemarylowe105/status/684171680156004352","title":"","type":"Twitter","language":"en","authorKlout":52,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ravenwings0205/status/684389499388997633","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.86},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/negtwits/status/684441134517608448","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.26},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.61},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Angiequa/status/684253120784797696","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Bellajane127/status/684167330159460352","title":"","type":"Twitter","language":"en","authorKlout":60,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.12},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/J_Owczarzak/status/684507054002847745","title":"","type":"Twitter","location":"Raleigh, NC 27587, USA","geolocation":{"id":"USA.NC.Raleigh","name":"Raleigh","country":"USA","state":"NC","city":"Raleigh","zipcode":"27587"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mendezhappy/status/684203890753966081","title":"","type":"Twitter","location":"Palm Springs, CA 92262, USA","geolocation":{"id":"USA.CA.Palm Springs","name":"Palm Springs","country":"USA","state":"CA","city":"Palm Springs","zipcode":"92262"},"language":"en","authorKlout":33,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.54},{"emotionId":4404821232,"emotionName":"Fear","score":0.15},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TeeFlizzy/status/684514572456333313","title":"","type":"Twitter","language":"en","authorKlout":44,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ChristelleThiba/status/684379155597778944","title":"","type":"Twitter","location":"Extremadura, ESP","geolocation":{"id":"ESP.Extremadura","name":"Extremadura","country":"ESP","state":"Extremadura"},"language":"es","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/pig4801kj/status/684249193410478080","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.82},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/BR1DG3/status/684500314288951297","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/karenan29064381/status/684285654847459328","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":57,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.03},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.08},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/JWaReesS/status/684243541644582912","title":"","type":"Twitter","language":"en","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.92},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.1},{"emotionId":4404821233,"emotionName":"Neutral","score":0.37},{"emotionId":4404821232,"emotionName":"Fear","score":0.3},{"emotionId":4404821234,"emotionName":"Anger","score":0.03}]},{"url":"http://twitter.com/LeeMarkle2/status/684442569858658304","title":"","type":"Twitter","location":"Los Angeles, CA 90278, USA","geolocation":{"id":"USA.CA.Los Angeles","name":"Los Angeles","country":"USA","state":"CA","city":"Los Angeles","zipcode":"90278"},"language":"en","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.09},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.91},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.39},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ToddHagopian/status/684394999975407616","title":"","type":"Twitter","location":"Dayton, OH 45066, USA","geolocation":{"id":"USA.OH.Dayton","name":"Dayton","country":"USA","state":"OH","city":"Dayton","zipcode":"45066"},"language":"en","authorKlout":61,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/RiskRank/status/684166914625556480","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"75204"},"language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MarcRobisch/status/684189844562685952","title":"","type":"Twitter","location":"Chicago, IL 60607, USA","geolocation":{"id":"USA.IL.Chicago","name":"Chicago","country":"USA","state":"IL","city":"Chicago","zipcode":"60607"},"language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/cut_the_crap_ec/status/684168272036663296","title":"","type":"Twitter","location":"Tel Aviv-Yafo, Tel Aviv, ISR","geolocation":{"id":"ISR.Tel Aviv.Tel Aviv-Yafo","name":"Tel Aviv-Yafo","country":"ISR","state":"Tel Aviv","city":"Tel Aviv-Yafo"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.04},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.8},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/awakened2012/status/684396310909202432","title":"","type":"Twitter","language":"en","authorKlout":43,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/tomesimpson/status/684442459036872705","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"20001"},"language":"en","authorKlout":61,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.09},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.91},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.39},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/IanStumpf/status/684492221018669057","title":"","type":"Twitter","location":"Edmonton, AB, CAN","geolocation":{"id":"CAN.AB.Edmonton","name":"Edmonton","country":"CAN","state":"AB","city":"Edmonton"},"language":"en","authorKlout":27,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.16},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jford5002/status/684420060870381568","title":"","type":"Twitter","language":"en","authorKlout":40,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.04},{"emotionId":4404821233,"emotionName":"Neutral","score":0.88},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/azoreandiver/status/684362116271357953","title":"","type":"Twitter","language":"en","authorKlout":53,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.09},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kcBobzilla/status/684417253899517952","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":20,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.05},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.09},{"emotionId":4404821233,"emotionName":"Neutral","score":0.76},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/PositivelyJoan/status/684352068513955840","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.45},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.49}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.91},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/aliciaepetit/status/684177641491017728","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":34,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.1},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.08},{"emotionId":4404821233,"emotionName":"Neutral","score":0.66},{"emotionId":4404821232,"emotionName":"Fear","score":0.09},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/yumistw/status/684435625580359680","title":"","type":"Twitter","location":"BRA","geolocation":{"id":"BRA","name":"Brazil","country":"BRA"},"language":"en","authorKlout":28,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.34},{"emotionId":4404821233,"emotionName":"Neutral","score":0.6},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/paul_pyle/status/684396369927225348","title":"","type":"Twitter","location":"Caldwell, ID 83651, USA","geolocation":{"id":"USA.ID.Caldwell","name":"Caldwell","country":"USA","state":"ID","city":"Caldwell","zipcode":"83651"},"language":"en","authorKlout":42,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/kitgainer2002/status/684517021409648640","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.71},{"emotionId":4404821232,"emotionName":"Fear","score":0.19},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/drcmusic58/status/684439225505308672","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/GarionCoyote/status/684352587236274176","title":"","type":"Twitter","language":"en","authorKlout":57,"assignedCategoryId":4404821235,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.45},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.49}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.03},{"emotionId":4404821231,"emotionName":"Surprise","score":0.0},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.91},{"emotionId":4404821232,"emotionName":"Fear","score":0.01},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/MpMyLove/status/684210032502771712","title":"","type":"Twitter","location":"ITA","geolocation":{"id":"ITA","name":"Italy","country":"ITA"},"language":"es","authorKlout":37,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[]},{"url":"http://twitter.com/GiveMeLiberty56/status/684442570643095552","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":42,"assignedCategoryId":4404821230,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.09},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.91},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.39},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.41},{"emotionId":4404821232,"emotionName":"Fear","score":0.14},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/kinxbitz/status/684398455163338757","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":61,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.91},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.2},{"emotionId":4404821236,"emotionName":"Disgust","score":0.01},{"emotionId":4404821233,"emotionName":"Neutral","score":0.68},{"emotionId":4404821232,"emotionName":"Fear","score":0.05},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/PositivelyJoan/status/684351070156369920","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.09}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.9},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/littleangel911/status/684414110277054464","title":"","type":"Twitter","language":"en","authorKlout":60,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/dikemelgado/status/684265412515753984","title":"","type":"Twitter","location":"New York, NY, USA","geolocation":{"id":"USA.NY.New York","name":"New York","country":"USA","state":"NY","city":"New York"},"language":"en","authorKlout":26,"authorGender":"M","assignedCategoryId":4404821235,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.09},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.9}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.06},{"emotionId":4404821236,"emotionName":"Disgust","score":0.35},{"emotionId":4404821233,"emotionName":"Neutral","score":0.25},{"emotionId":4404821232,"emotionName":"Fear","score":0.23},{"emotionId":4404821234,"emotionName":"Anger","score":0.04}]},{"url":"http://twitter.com/missmiggle/status/684198469817466880","title":"","type":"Twitter","language":"en","authorKlout":42,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.1},{"emotionId":4404821236,"emotionName":"Disgust","score":0.0},{"emotionId":4404821233,"emotionName":"Neutral","score":0.85},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/MalennyOfficial/status/684503950335213568","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":20,"assignedCategoryId":4404821229,"assignedEmotionId":4404821236,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.47},{"emotionId":4404821233,"emotionName":"Neutral","score":0.27},{"emotionId":4404821232,"emotionName":"Fear","score":0.07},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sine_injuria/status/684414553539624960","title":"","type":"Twitter","location":"ITA","geolocation":{"id":"ITA","name":"Italy","country":"ITA"},"language":"en","authorKlout":53,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/Romanthewolf1/status/684450197162700800","title":"","type":"Twitter","location":"Denver, CO 80226, USA","geolocation":{"id":"USA.CO.Denver","name":"Denver","country":"USA","state":"CO","city":"Denver","zipcode":"80226"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.86},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.9},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/TheTRUMPetts/status/684458496545415168","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":57,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.09},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.07},{"emotionId":4404821231,"emotionName":"Surprise","score":0.08},{"emotionId":4404821227,"emotionName":"Joy","score":0.23},{"emotionId":4404821236,"emotionName":"Disgust","score":0.11},{"emotionId":4404821233,"emotionName":"Neutral","score":0.33},{"emotionId":4404821232,"emotionName":"Fear","score":0.16},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/ormedesmarais/status/684354353839403008","title":"","type":"Twitter","language":"en","authorKlout":44,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.09}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.9},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mrmars663/status/684210563346526208","title":"","type":"Twitter","location":"Sinaloa, MEX","geolocation":{"id":"MEX.Sinaloa","name":"Sinaloa","country":"MEX","state":"Sinaloa"},"language":"en","authorKlout":34,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.74},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.18},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.01},{"emotionId":4404821231,"emotionName":"Surprise","score":0.02},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.9},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/vcayulef/status/684207844254707712","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":47,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/ANGELODECORONEL/status/684210942377332736","title":"","type":"Twitter","location":"Coronel, Bio-Bio, CHL","geolocation":{"id":"CHL.Bio-Bio.Coronel","name":"Coronel","country":"CHL","state":"Bio-Bio","city":"Coronel"},"language":"es","authorKlout":51,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/osokine/status/684208339371307012","title":"","type":"Twitter","location":"CHL","geolocation":{"id":"CHL","name":"Chile","country":"CHL"},"language":"es","authorKlout":48,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/CambioClimatrol/status/684208762207485953","title":"","type":"Twitter","location":"Santiago, Region Metropolitana de Santiago, CHL","geolocation":{"id":"CHL.Region Metropolitana de Santiago.Santiago","name":"Santiago","country":"CHL","state":"Region Metropolitana de Santiago","city":"Santiago"},"language":"es","authorKlout":54,"assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.07},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[]},{"url":"http://twitter.com/romneydontcare/status/684246852200345600","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":22,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.04}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.06},{"emotionId":4404821231,"emotionName":"Surprise","score":0.12},{"emotionId":4404821227,"emotionName":"Joy","score":0.02},{"emotionId":4404821236,"emotionName":"Disgust","score":0.2},{"emotionId":4404821233,"emotionName":"Neutral","score":0.5},{"emotionId":4404821232,"emotionName":"Fear","score":0.1},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/markdijon/status/684186999507521536","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA","zipcode":"10103"},"language":"en","authorKlout":50,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.02},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.08}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.06},{"emotionId":4404821227,"emotionName":"Joy","score":0.07},{"emotionId":4404821236,"emotionName":"Disgust","score":0.05},{"emotionId":4404821233,"emotionName":"Neutral","score":0.74},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/AlamoEdward/status/684470568809148416","title":"","type":"Twitter","language":"it","authorKlout":44,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.9},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.08},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.02}],"emotionScores":[]},{"url":"http://twitter.com/PositivelyJoan/status/684350874429173760","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":56,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/CritchleyBob/status/684234887012864000","title":"","type":"Twitter","location":"Perth, Western Australia, AUS","geolocation":{"id":"AUS.Western Australia.Perth","name":"Perth","country":"AUS","state":"Western Australia","city":"Perth"},"language":"en","authorKlout":49,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/IsHillaryInJail/status/684192421115244544","title":"","type":"Twitter","location":"Washington, DC, DC 20001, USA","geolocation":{"id":"USA.DC.Washington, DC","name":"Washington, D.C.","country":"USA","state":"DC","city":"Washington, DC","zipcode":"20001"},"language":"en","authorKlout":42,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Katysovcik/status/684163458376568832","title":"","type":"Twitter","location":"Nova Iguacu, RJ, BRA","geolocation":{"id":"BRA.RJ.Nova Iguacu","name":"Nova Iguacu","country":"BRA","state":"RJ","city":"Nova Iguacu"},"language":"pt","authorKlout":50,"authorGender":"F","assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/DanielKusa/status/684229849255395328","title":"","type":"Twitter","location":"IN, USA","geolocation":{"id":"USA.IN","name":"Indiana","country":"USA","state":"IN"},"language":"en","authorKlout":52,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Scrufey21/status/684191681965522945","title":"","type":"Twitter","language":"en","authorKlout":41,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Beaudancer1/status/684230520020967424","title":"","type":"Twitter","location":"TX, USA","geolocation":{"id":"USA.TX","name":"Texas","country":"USA","state":"TX"},"language":"en","authorKlout":52,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sassyandcowgirl/status/684229349306806272","title":"","type":"Twitter","language":"en","authorKlout":56,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SusanSt08942260/status/684230168332877824","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/the19th_hole/status/684230450072518656","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":32,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SaveAslave/status/684228636753330176","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/panderkin41/status/684230844781858816","title":"","type":"Twitter","location":"KY, USA","geolocation":{"id":"USA.KY","name":"Kentucky","country":"USA","state":"KY"},"language":"en","authorKlout":51,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/ElCaushaOficial/status/684265968206364672","title":"","type":"Twitter","location":"Lima, Lima Province, PER","geolocation":{"id":"PER.Lima Province.Lima","name":"Lima","country":"PER","state":"Lima Province","city":"Lima"},"language":"en","authorKlout":22,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.22},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.62},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.01}]},{"url":"http://twitter.com/DrDarrellCline/status/684237560407654400","title":"","type":"Twitter","location":"Everett, WA, USA","geolocation":{"id":"USA.WA.Everett","name":"Everett","country":"USA","state":"WA","city":"Everett"},"language":"en","authorKlout":46,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/politicsiq/status/684184743710081025","title":"","type":"Twitter","language":"en","authorKlout":10,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.74},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.23},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.03}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/jose_almg/status/684461398211047424","title":"","type":"Twitter","language":"pt","authorKlout":22,"assignedCategoryId":4404821230,"assignedEmotionId":0,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.11},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.0}],"emotionScores":[]},{"url":"http://twitter.com/davhalter/status/684235168215777280","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":47,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/sandrajeanne48/status/684234963454013440","title":"","type":"Twitter","language":"en","authorKlout":46,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/barbya1/status/684231421175660544","title":"","type":"Twitter","location":"PA, USA","geolocation":{"id":"USA.PA","name":"Pennsylvania","country":"USA","state":"PA"},"language":"en","authorKlout":47,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.1},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.01}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.11},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.81},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/mountianmama64/status/684164631737319424","title":"","type":"Twitter","location":"TN, USA","geolocation":{"id":"USA.TN","name":"Tennessee","country":"USA","state":"TN"},"language":"en","authorKlout":45,"authorGender":"F","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.05},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.06}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.08},{"emotionId":4404821231,"emotionName":"Surprise","score":0.07},{"emotionId":4404821227,"emotionName":"Joy","score":0.04},{"emotionId":4404821236,"emotionName":"Disgust","score":0.07},{"emotionId":4404821233,"emotionName":"Neutral","score":0.69},{"emotionId":4404821232,"emotionName":"Fear","score":0.04},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/Auntiemels/status/684352966070022144","title":"","type":"Twitter","location":"USA","geolocation":{"id":"USA","name":"United States of America","country":"USA"},"language":"en","authorKlout":58,"assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.85},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.01},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.14}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.02},{"emotionId":4404821231,"emotionName":"Surprise","score":0.01},{"emotionId":4404821227,"emotionName":"Joy","score":0.03},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.89},{"emotionId":4404821232,"emotionName":"Fear","score":0.02},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]},{"url":"http://twitter.com/SwingerPearl/status/684225249194471424","title":"","type":"Twitter","language":"en","authorKlout":47,"assignedCategoryId":4404821230,"assignedEmotionId":4404821227,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.04},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.89},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.07}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.05},{"emotionId":4404821227,"emotionName":"Joy","score":0.56},{"emotionId":4404821236,"emotionName":"Disgust","score":0.02},{"emotionId":4404821233,"emotionName":"Neutral","score":0.28},{"emotionId":4404821232,"emotionName":"Fear","score":0.03},{"emotionId":4404821234,"emotionName":"Anger","score":0.02}]},{"url":"http://twitter.com/Romanthewolf1/status/684450177671770112","title":"","type":"Twitter","location":"Denver, CO 80226, USA","geolocation":{"id":"USA.CO.Denver","name":"Denver","country":"USA","state":"CO","city":"Denver","zipcode":"80226"},"language":"en","authorKlout":40,"authorGender":"M","assignedCategoryId":4404821229,"assignedEmotionId":4404821233,"categoryScores":[{"categoryId":4404821229,"categoryName":"Basic Neutral","score":0.89},{"categoryId":4404821230,"categoryName":"Basic Positive","score":0.06},{"categoryId":4404821235,"categoryName":"Basic Negative","score":0.05}],"emotionScores":[{"emotionId":4404821228,"emotionName":"Sadness","score":0.04},{"emotionId":4404821231,"emotionName":"Surprise","score":0.04},{"emotionId":4404821227,"emotionName":"Joy","score":0.01},{"emotionId":4404821236,"emotionName":"Disgust","score":0.03},{"emotionId":4404821233,"emotionName":"Neutral","score":0.78},{"emotionId":4404821232,"emotionName":"Fear","score":0.11},{"emotionId":4404821234,"emotionName":"Anger","score":0.0}]}],"totalPostsAvailable":3792,"status":"success"} \ No newline at end of file diff --git a/apps/topics-mine/tests/perl/MediaWords/TM/Mine/AddTestTopicStories.pm b/apps/topics-mine/tests/perl/MediaWords/TM/Mine/AddTestTopicStories.pm deleted file mode 100644 index 643bd6860b..0000000000 --- a/apps/topics-mine/tests/perl/MediaWords/TM/Mine/AddTestTopicStories.pm +++ /dev/null @@ -1,27 +0,0 @@ -package AddTestTopicStories; - -use strict; -use warnings; - -use MediaWords::CommonLibs; -use MediaWords::Test::DB::Create; -use MediaWords::TM::Stories; - -my $_topic_stories_medium_count = 0; - -sub add_test_topic_stories($$$$) -{ - my ( $db, $topic, $num_stories, $label ) = @_; - - my $medium = MediaWords::Test::DB::Create::create_test_medium( $db, "$label " . $_topic_stories_medium_count++ ); - my $feed = MediaWords::Test::DB::Create::create_test_feed( $db, $label, $medium ); - - for my $i ( 1 .. $num_stories ) - { - my $story = MediaWords::Test::DB::Create::create_test_story( $db, "$label $i", $feed ); - MediaWords::TM::Stories::add_to_topic_stories( $db, $story, $topic ); - $db->update_by_id( 'stories', $story->{ stories_id }, { publish_date => $topic->{ start_date } } ); - } -} - -1; diff --git a/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_die_if_max_stories_exceeded.t b/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_die_if_max_stories_exceeded.t deleted file mode 100755 index eb4f2bbdb8..0000000000 --- a/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_die_if_max_stories_exceeded.t +++ /dev/null @@ -1,52 +0,0 @@ -use strict; -use warnings; - -use Test::Deep; -use Test::More tests => 3; - -use MediaWords::CommonLibs; -use MediaWords::DB; -use MediaWords::Test::DB::Create; -use MediaWords::TM::Mine; - -use FindBin; -use lib $FindBin::Bin; - -use AddTestTopicStories; - -sub test_die_if_max_stories_exceeded($) -{ - my ( $db ) = @_; - - my $label = "test_die_if_max_stories_exceeded"; - - my $topic = MediaWords::Test::DB::Create::create_test_topic( $db, $label ); - - $topic = $db->update_by_id( 'topics', $topic->{ topics_id }, { max_stories => 0 } ); - - AddTestTopicStories::add_test_topic_stories( $db, $topic, 101, $label ); - - eval { MediaWords::TM::Mine::die_if_max_stories_exceeded( $db, $topic ); }; - ok( $@, "$label adding 101 stories to 0 max_stories topic generates error" ); - - $db->query( "delete from topic_stories where topics_id = ?", $topic->{ topics_id } ); - - $topic = $db->update_by_id( 'topics', $topic->{ topics_id }, { max_stories => 100 } ); - - AddTestTopicStories::add_test_topic_stories( $db, $topic, 99, $label ); - eval { MediaWords::TM::Mine::die_if_max_stories_exceeded( $db, $topic ); }; - ok( !$@, "$label adding 999 stories to a 100 max_stories does not generate an error: $@" ); - - AddTestTopicStories::add_test_topic_stories( $db, $topic, 102, $label ); - eval { MediaWords::TM::Mine::die_if_max_stories_exceeded( $db, $topic ); }; - ok( $@, "$label adding 2001 stories to a 100 max_stories generates an error" ); -} - -sub main -{ - my $db = MediaWords::DB::connect_to_db(); - - test_die_if_max_stories_exceeded( $db ); -} - -main(); diff --git a/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_import_urls_from_seed_query.t b/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_import_urls_from_seed_query.t deleted file mode 100644 index a8c3b29998..0000000000 --- a/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_import_urls_from_seed_query.t +++ /dev/null @@ -1,87 +0,0 @@ -use strict; -use warnings; - -use Test::Deep; -use Test::More; - -use MediaWords::CommonLibs; -use MediaWords::DB; -use MediaWords::Test::DB::Create; -use MediaWords::TM::Mine; - -use FindBin; -use lib $FindBin::Bin; - -sub test_import_urls_from_seed_queries($) -{ - my ( $db ) = @_; - - my $label = "test_import"; - - my $topic = MediaWords::Test::DB::Create::create_test_topic( $db, $label ); - - $topic->{ start_date } = '2019-01-01'; - $topic->{ end_date } = '2019-02-01'; - $topic->{ platform } = 'generic_post'; - $topic->{ mode } = 'web'; - $topic->{ pattern } = 'foo'; - - $topic = $db->update_by_id( 'topics', $topic->{ topics_id }, $topic ); - - # posts.append({ - # 'post_id': post_id, - # 'content': "sample post for id id %s" % test_url, - # 'publish_date': publish_date, - # 'url': test_url, - # 'author': 'user-%s' % user_id, - # 'channel': 'channel-%s' % user_id, - # }) - my $posts_csv = < $topic->{ topics_id }, - source => 'csv', - platform => 'generic_post', - query => $posts_csv - }; - my $topic_seed_query = $db->create( 'topic_seed_queries', $topic_seed_query_data ); - - $topic_seed_query_data->{ query } = $posts_2_csv; - my $topic_seed_query_2 = $db->create( 'topic_seed_queries', $topic_seed_query_data ); - - MediaWords::TM::Mine::import_urls_from_seed_queries( $db, $topic ); - - my $topic_posts = $db->query( <{ topics_id } )->hashes(); -select * - from topic_posts tp - join topic_post_days tpd using ( topic_post_days_id ) - join topic_seed_queries tsq using ( topic_seed_queries_id ) - where topics_id = ? -SQL - - is ( scalar( @{ $topic_posts } ), 2, "number of topic posts" ); - - my $tsus = $db->query( "select * from topic_seed_urls where topics_id = ?", $topic->{ topics_id } )->hashes(); - - is( scalar( @{ $tsus } ), 2, "number of seed urls" ); - -} - -sub main -{ - my $db = MediaWords::DB::connect_to_db(); - - test_import_urls_from_seed_queries( $db ); - - done_testing(); -} - -main(); diff --git a/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_respider.t b/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_respider.t deleted file mode 100755 index 019e075fd9..0000000000 --- a/apps/topics-mine/tests/perl/MediaWords/TM/Mine/test_respider.t +++ /dev/null @@ -1,122 +0,0 @@ -use strict; -use warnings; - -use Test::Deep; -use Test::More tests => 4; - -use MediaWords::CommonLibs; -use MediaWords::DB; -use MediaWords::Test::DB::Create; -use MediaWords::TM::Mine; - -use FindBin; -use lib $FindBin::Bin; - -use AddTestTopicStories; - -sub test_respider($) -{ - my ( $db ) = @_; - - my $label = "test_respider"; - - my $topic = MediaWords::Test::DB::Create::create_test_topic( $db, $label ); - - $topic->{ start_date } = '2017-01-01'; - $topic->{ end_date } = '2018-01-01'; - - $topic = $db->update_by_id( - 'topics', - $topic->{ topics_id }, - { max_stories => 0, start_date => '2017-01-01', end_date => '2018-01-01' } - ); - - my $num_topic_stories = 101; - AddTestTopicStories::add_test_topic_stories( $db, $topic, $num_topic_stories, $label ); - - # no respidering without respider_stories - $db->query( "update topic_stories set link_mined = 't'" ); - - MediaWords::TM::Mine::set_stories_respidering( $db, $topic, undef ); - - my ( $got_num_respider_stories ) = $db->query( "select count(*) from topic_stories where not link_mined" )->flat; - is( $got_num_respider_stories, 0, "no stories marked for respidering" ); - - # respider everything with respider_stories but no dates - $topic->{ respider_stories } = 1; - - $db->query( "update topic_stories set link_mined = 't'" ); - - MediaWords::TM::Mine::set_stories_respidering( $db, $topic, undef ); - - ( $got_num_respider_stories ) = $db->query( "select count(*) from topic_stories where not link_mined" )->flat; - is( $got_num_respider_stories, $num_topic_stories, "all stories marked for respidering" ); - - # respider stories within the range of changed dates - my $topic_update = { - respider_stories => 't', - respider_end_date => $topic->{ end_date }, - respider_start_date => $topic->{ start_date }, - end_date => '2019-01-01', - start_date => '2016-01-01', - }; - $topic = $db->update_by_id( 'topics', $topic->{ topics_id }, $topic_update ); - - $db->query( "update topic_stories set link_mined = 't'" ); - - my $num_date_changes = 10; - $db->query( "update stories set publish_date = '2017-06-01'" ); - $db->query( <query( < $topic->{ topics_id }, - snapshot_date => MediaWords::Util::SQL::sql_now(), - start_date => $topic->{ start_date }, - end_date => $topic->{ end_date } - }; - $snapshot = $db->create( 'snapshots', $snapshot ); - - my $timespan_dates = - [ [ '2017-01-01', '2017-01-31' ], [ '2017-12-20', '2018-01-20' ], [ '2016-12-20', '2017-01-20' ] ]; - for my $dates ( @{ $timespan_dates } ) - { - my ( $start_date, $end_date ) = @{ $dates }; - my $timespan = { - snapshots_id => $snapshot->{ snapshots_id }, - start_date => $start_date, - end_date => $end_date, - period => 'monthly', - story_count => 0, - story_link_count => 0, - medium_count => 0, - medium_link_count => 0, - post_count => 0 - }; - $timespan = $db->create( 'timespans', $timespan ); - } - - MediaWords::TM::Mine::set_stories_respidering( $db, $topic, $snapshot->{ snapshots_id } ); - - ( $got_num_respider_stories ) = $db->query( "select count(*) from topic_stories where not link_mined" )->flat; - is( $got_num_respider_stories, 2 * $num_date_changes, "dated stories marked for respidering" ); - - my ( $got_num_archived_timespans ) = - $db->query( "select count(*) from timespans where archive_snapshots_id = ?", $snapshot->{ snapshots_id } )->flat; - is( $got_num_archived_timespans, 2, "number of archive timespans" ); -} - -sub main -{ - my $db = MediaWords::DB::connect_to_db(); - - test_respider( $db ); -} - -main(); diff --git a/apps/topics-mine/tests/perl/test_cd_live_stories.t b/apps/topics-mine/tests/perl/test_cd_live_stories.t deleted file mode 100644 index f1faa7b413..0000000000 --- a/apps/topics-mine/tests/perl/test_cd_live_stories.t +++ /dev/null @@ -1,183 +0,0 @@ -use strict; -use warnings; - -# test that inserts and updates on stories in topic_stories are correctly mirrored to snap.live_stories - -use English '-no_match_vars'; - -use Test::More tests => 14; -use Test::Deep; - -use MediaWords::DB; -use MediaWords::Util::SQL; - -BEGIN -{ - use_ok( 'MediaWords::DB' ); -} - -sub add_topic_story -{ - my ( $db, $topic, $story ) = @_; - - $db->create( 'topic_stories', { stories_id => $story->{ stories_id }, topics_id => $topic->{ topics_id } } ); -} - -sub test_live_story_matches -{ - my ( $db, $topic, $story, $test_label ) = @_; - - my $live_story = $db->query( <{ topics_id }, $story->{ stories_id } )->hash; -select * from snap.live_stories where topics_id = ? and stories_id = ? -END - - delete( $live_story->{ topics_id } ); - delete( $live_story->{ topic_stories_id } ); - - $live_story->{ publish_date } =~ s/T/ /g; - $live_story->{ collect_date } =~ s/T/ /g; - $story->{ publish_date } =~ s/T/ /g; - $story->{ collect_date } =~ s/T/ /g; - - cmp_deeply( $live_story, $story, "$test_label: $story->{ title } should be in $topic->{ name } and match story" ); -} - -sub test_live_story_absent -{ - my ( $db, $topic, $story, $test_label ) = @_; - - my $live_story = $db->query( <{ topics_id }, $story->{ stories_id } )->hash; -select * from snap.live_stories where topics_id = ? and stories_id = ? -END - is( $live_story, undef, "$test_label: \$story->{ title } should be absent from \$topic->{ title }" ); -} - -sub update_story -{ - my ( $db, $story ) = @_; - - $story->{ url } ||= '/' . rand(); - $story->{ guid } ||= '/' . rand(); - $story->{ title } ||= ' ' . rand(); - $story->{ description } ||= ' ' . rand(); - $story->{ publish_date } = MediaWords::Util::SQL::get_sql_date_from_epoch( time() - int( rand( 100000 ) ) ); - $story->{ collect_date } = MediaWords::Util::SQL::get_sql_date_from_epoch( time() - int( rand( 100000 ) ) ); - - $db->update_by_id( 'stories', $story->{ stories_id }, $story ); - - return $db->find_by_id( 'stories', $story->{ stories_id } ); -} - -sub test_live_stories -{ - my ( $db ) = @_; - - my $medium = { - name => "test live stories", - url => "url://test/live/stories", - }; - $medium = $db->create( 'media', $medium ); - - my $topic_a = { - name => 'topic a', - pattern => '', - solr_seed_query => '', - solr_seed_query_run => 'f', - description => 'topic A', - start_date => '2017-01-01', - end_date => '2017-02-01', - job_queue => 'mc', - max_stories => 100_000, - platform => 'web' - }; - $topic_a = $db->create( 'topics', $topic_a ); - - my $topic_b = { - name => 'topic b', - pattern => '', - solr_seed_query => '', - solr_seed_query_run => 'f', - description => 'topic B', - start_date => '2017-01-01', - end_date => '2017-02-01', - job_queue => 'mc', - max_stories => 100_000, - platform => 'web' - }; - $topic_b = $db->create( 'topics', $topic_b ); - - my $story_a = { - media_id => $medium->{ media_id }, - url => 'url://story/a', - guid => 'guid://story/a', - title => 'story a', - description => 'description a', - publish_date => MediaWords::Util::SQL::get_sql_date_from_epoch( time() - 100000 ), - collect_date => MediaWords::Util::SQL::get_sql_date_from_epoch( time() - 200000 ), - full_text_rss => 't' - }; - $story_a = $db->create( 'stories', $story_a ); - - my $story_b = { - media_id => $medium->{ media_id }, - url => 'url://story/b', - guid => 'guid://story/b', - title => 'story b', - description => 'description b', - publish_date => MediaWords::Util::SQL::get_sql_date_from_epoch( time() - 300000 ), - collect_date => MediaWords::Util::SQL::get_sql_date_from_epoch( time() - 400000 ), - full_text_rss => 'f' - }; - $story_b = $db->create( 'stories', $story_b ); - - my $story_c = { - media_id => $medium->{ media_id }, - url => 'url://story/c', - guid => 'guid://story/c', - title => 'story c', - description => 'description c', - publish_date => MediaWords::Util::SQL::get_sql_date_from_epoch( time() - 500000 ), - collect_date => MediaWords::Util::SQL::get_sql_date_from_epoch( time() - 600000 ), - full_text_rss => 'f' - }; - $story_c = $db->create( 'stories', $story_c ); - - my $live_story = $db->query( "select * from snap.live_stories" )->hash; - is( $live_story, undef, "live stories empty before cs insert" ); - - add_topic_story( $db, $topic_a, $story_a ); - add_topic_story( $db, $topic_b, $story_b ); - add_topic_story( $db, $topic_a, $story_c ); - add_topic_story( $db, $topic_b, $story_c ); - - test_live_story_matches( $db, $topic_a, $story_a, "after insert" ); - test_live_story_absent( $db, $topic_b, $story_a, "after insert" ); - - test_live_story_matches( $db, $topic_b, $story_b, "after insert" ); - test_live_story_absent( $db, $topic_a, $story_b, "after insert" ); - - test_live_story_matches( $db, $topic_a, $story_c, "after insert" ); - test_live_story_matches( $db, $topic_b, $story_c, "after insert" ); - - $story_a = update_story( $db, $story_a ); - $story_b = update_story( $db, $story_b ); - $story_c = update_story( $db, $story_c ); - - test_live_story_matches( $db, $topic_a, $story_a, "after update" ); - test_live_story_absent( $db, $topic_b, $story_a, "after update" ); - - test_live_story_matches( $db, $topic_b, $story_b, "after update" ); - test_live_story_absent( $db, $topic_a, $story_b, "after update" ); - - test_live_story_matches( $db, $topic_a, $story_c, "after update" ); - test_live_story_matches( $db, $topic_b, $story_c, "after update" ); -} - -sub main -{ - my $db = MediaWords::DB::connect_to_db(); - - test_live_stories( $db ); -} - -main(); diff --git a/apps/topics-mine/tests/perl/test_tm_mine.t b/apps/topics-mine/tests/perl/test_tm_mine.t deleted file mode 100644 index 2f3d96805a..0000000000 --- a/apps/topics-mine/tests/perl/test_tm_mine.t +++ /dev/null @@ -1,557 +0,0 @@ -use strict; -use warnings; - -# basic intergration test for topic mapper's spider - -use Modern::Perl "2015"; -use MediaWords::CommonLibs; - -use English '-no_match_vars'; - -use Data::Dumper; -use Digest::MD5 qw(md5_hex); -use MediaWords::Test::HashServer; -use Readonly; -use Sys::Hostname; -use Test::More; -use Text::Lorem::More; - -use MediaWords::DB; -use MediaWords::TM::Mine; -use MediaWords::Util::SQL; -use MediaWords::Util::Web; - -Readonly my $BASE_PORT => 8890; - -Readonly my $NUM_SITES => 5; -Readonly my $NUM_PAGES_PER_SITE => 10; -Readonly my $NUM_LINKS_PER_PAGE => 2; - -Readonly my $TOPIC_PATTERN => 'FOOBARBAZ'; - -sub get_html_link($) -{ - my ( $page ) = @_; - - my $lorem = Text::Lorem::More->new(); - - if ( 0 && int( rand( 3 ) ) ) - { - return "" . $lorem->words( 2 ) . ""; - } - else - { - return $page->{ url }; - } -} - -sub generate_content_for_site($) -{ - my ( $site ) = @_; - - my $lorem = Text::Lorem::More->new(); - - my $body = $lorem->sentences( 5 ); - - return < - - $site->{ title } - - -

- $body -

- - -HTML -} - -sub generate_content_for_page($$) -{ - my ( $site, $page ) = @_; - - my $lorem = Text::Lorem::More->new(); - - my $num_links = scalar( @{ $page->{ links } } ); - my $num_paragraphs = int( rand( 10 ) + 3 ) + $num_links; - - my $paragraphs = []; - - for my $i ( 0 .. $num_paragraphs - 1 ) - { - my $text = $lorem->sentences( 5 ); - if ( $i < $num_links ) - { - my $html_link = get_html_link( $page->{ links }->[ $i ] ); - $text .= " $html_link"; - } - - push( @{ $paragraphs }, $text ); - } - - if ( rand( 2 ) < 1 ) - { - push( @{ $paragraphs }, $lorem->words( 10 ) . " $TOPIC_PATTERN" ); - $page->{ matches_topic } = 1; - } - - my $dead_link_text = $lorem->sentences( 5 ); - $dead_link_text .= " dead link"; - - push( @{ $paragraphs }, $dead_link_text ); - - my $body = join( "\n\n", map { "

\n$_\n

" } @{ $paragraphs } ); - - return < - - $page->{ title } - - - $body - - -HTML - -} - -sub generate_content_for_sites($) -{ - my ( $sites ) = @_; - - for my $site ( @{ $sites } ) - { - $site->{ content } = generate_content_for_site( $site ); - - for my $page ( @{ $site->{ pages } } ) - { - $page->{ content } = generate_content_for_page( $site, $page ); - } - } -} - -# generate test set of sites -sub get_test_sites() -{ - my $sites = []; - my $pages = []; - - # my $base_port = $BASE_PORT + int( rand( 200 ) ); - my $base_port = $BASE_PORT; - - for my $site_id ( 0 .. $NUM_SITES - 1 ) - { - my $port = $base_port + $site_id; - - my $site = { - port => $port, - id => $site_id, - - # Other containers will access this host to we have to set the - # actual hostname instead of just localhost - url => "http://" . Sys::Hostname::hostname . ":$port/", - - title => "site $site_id" - }; - - my $num_pages = int( rand( $NUM_PAGES_PER_SITE ) ) + 1; - for my $page_id ( 0 .. $num_pages - 1 ) - { - my $date = MediaWords::Util::SQL::get_sql_date_from_epoch( time() - ( rand( 365 ) * 86400 ) ); - - my $path = "page-$page_id"; - - my $page = { - id => $page_id, - path => "/$path", - url => "$site->{ url }$path", - title => "page $page_id", - pubish_date => $date, - links => [] - }; - - push( @{ $pages }, $page ); - push( @{ $site->{ pages } }, $page ); - } - - push( @{ $sites }, $site ); - } - - my $all_pages = []; - map { push( @{ $all_pages }, @{ $_->{ pages } } ) } @{ $sites }; - for my $page ( @{ $all_pages } ) - { - my $num_links = int( rand( $NUM_LINKS_PER_PAGE ) ); - for my $link_id ( 0 .. $num_links - 1 ) - { - my $linked_page_id = int( rand( scalar( @{ $all_pages } ) ) ); - my $linked_page = $all_pages->[ $linked_page_id ]; - - unless ( MediaWords::Util::URL::urls_are_equal( $page->{ url }, $linked_page->{ url } ) ) - { - push( @{ $page->{ links } }, $linked_page ); - } - } - } - - generate_content_for_sites( $sites ); - - return $sites; -} - -# add a medium for each site so that the topic mapper's spider can find the medium that corresponds to each url -sub add_site_media($$) -{ - my ( $db, $sites ) = @_; - - for my $site ( @{ $sites } ) - { - $site->{ medium } = $db->create( - 'media', - { - url => $site->{ url }, - name => $site->{ title }, - } - ); - } -} - -sub start_hash_servers($) -{ - my ( $sites ) = @_; - - my $hash_servers = []; - - for my $site ( @{ $sites } ) - { - my $site_hash = {}; - - $site_hash->{ '/' } = $site->{ content }; - - map { $site_hash->{ $_->{ path } } = $_->{ content } } @{ $site->{ pages } }; - - my $hs = MediaWords::Test::HashServer->new( $site->{ port }, $site_hash ); - - DEBUG "starting hash server $site->{ id }"; - - $hs->start(); - - push( @{ $hash_servers }, $hs ); - } - - # wait for the hash servers to start - sleep( 1 ); - - return $hash_servers; -} - -sub test_page($$$) -{ - my ( $label, $url, $expected_content ) = @_; - - TRACE "test page: $label $url"; - - my $ua = MediaWords::Util::Web::UserAgent->new(); - my $request = MediaWords::Util::Web::UserAgent::Request->new( 'GET', $url ); - my $response = $ua->request( $request ); - - ok( $response->is_success, "request success: $label $url" ); - - my $got_content = $response->decoded_content; - - TRACE "got content"; - - is( $got_content, $expected_content, "simple page test: $label" ); -} - -sub test_pages($) -{ - my ( $sites ) = @_; - - for my $site ( @{ $sites } ) - { - DEBUG "testing pages for site $site->{ id }"; - test_page( "site $site->{ id }", $site->{ url }, $site->{ content } ); - - map { test_page( "page $site->{ id } $_->{ id }", $_->{ url }, $_->{ content } ) } @{ $site->{ pages } }; - } -} - -sub seed_unlinked_urls($$$) -{ - my ( $db, $topic, $sites ) = @_; - - my $all_pages = []; - map { push( @{ $all_pages }, @{ $_->{ pages } } ) } @{ $sites }; - - # do not seed urls that are linked directly from a page that is a topic match. - # this forces the test to succesfully discover those pages through spidering. - my $non_seeded_url_lookup = {}; - for my $page ( @{ $all_pages } ) - { - if ( $page->{ matches_topic } ) - { - map { $non_seeded_url_lookup->{ $_->{ url } } = 1 } @{ $page->{ links } }; - } - } - - my $seed_pages = []; - for my $page ( @{ $all_pages } ) - { - if ( $non_seeded_url_lookup->{ $page->{ url } } ) - { - DEBUG( "non seeded url: $page->{ url }" ); - } - else - { - DEBUG( "seed url: $page->{ url }" ); - push( @{ $seed_pages }, $page ); - } - } - - for my $seed_page ( @{ $all_pages } ) - { - $db->create( - 'topic_seed_urls', - { - topics_id => $topic->{ topics_id }, - url => $seed_page->{ url } - } - ); - } -} - -sub create_topic($$) -{ - my ( $db, $sites ) = @_; - - my $now = MediaWords::Util::SQL::sql_now(); - my $start_date = MediaWords::Util::SQL::increment_day( $now, -30 ); - my $end_date = MediaWords::Util::SQL::increment_day( $now, 30 ); - - my $topic = $db->create( - 'topics', - { - name => 'test topic', - description => 'test topic', - pattern => $TOPIC_PATTERN, - solr_seed_query => 'stories_id:0', - solr_seed_query_run => 't', - start_date => $start_date, - end_date => $end_date, - job_queue => 'mc', - max_stories => 100_000, - platform => 'web' - } - ); - - seed_unlinked_urls( $db, $topic, $sites ); - - # avoid race condition in TM::Mine - $db->create( 'tag_sets', { name => 'extractor_version' } ); - - return $topic; -} - -sub test_topic_stories($$$) -{ - my ( $db, $topic, $sites ) = @_; - - my $topic_stories = $db->query( <{ topics_id } )->hashes; -select cs.*, s.* - from topic_stories cs - join stories s on ( s.stories_id = cs.stories_id ) - where cs.topics_id = ? -SQL - - my $all_pages = []; - map { push( @{ $all_pages }, @{ $_->{ pages } } ) } @{ $sites }; - - DEBUG "ALL PAGES: " . scalar( @{ $all_pages } ); - - my $topic_pages = [ grep { $_->{ matches_topic } } @{ $all_pages } ]; - - DEBUG "TOPIC PAGES: " . scalar( @{ $topic_pages } ); - - my $topic_pages_lookup = {}; - map { $topic_pages_lookup->{ $_->{ url } } = $_ } @{ $topic_stories }; - - for my $topic_story ( @{ $topic_stories } ) - { - ok( $topic_pages_lookup->{ $topic_story->{ url } }, "topic story found for topic page '$topic_story->{ url }'" ); - - delete( $topic_pages_lookup->{ $topic_story->{ url } } ); - } - - is( scalar( keys( %{ $topic_pages_lookup } ) ), - 0, "missing topic story for topic pages: " . Dumper( values( %{ $topic_pages_lookup } ) ) ); - - # Wait for pending URLs to disappear - Readonly my $WAIT_PENDING_SECONDS => 10; - my $pending_count = 0; - for ( my $pending_retry = 0; $pending_retry <= $WAIT_PENDING_SECONDS; ++$pending_retry ) { - ( $pending_count ) = $db->query( "select count(*) from topic_fetch_urls where state ='pending'" )->flat; - if ( $pending_count > 0 ) { - WARN "Still $pending_count URLs are pending, will retry shortly"; - sleep( 1 ); - } else { - INFO "No more pending URLs, continuing"; - last; - } - } - is( $pending_count, 0, "After waiting $WAIT_PENDING_SECONDS some URLs are still in 'pending' state" ); - - my ( $dead_link_count ) = $db->query( "select count(*) from topic_fetch_urls where state ='request failed'" )->flat; - is( $dead_link_count, scalar( @{ $topic_pages } ), "dead link count" ); - - if ( $dead_link_count != scalar( @{ $topic_pages } ) ) - { - my $fetch_states = $db->query( "select count(*), state from topic_fetch_urls group by state" )->hashes(); - WARN( "fetch states: " . Dumper( $fetch_states ) ); - - my $fetch_errors = $db->query( "select * from topic_fetch_urls where state = 'python error'" )->hashes(); - WARN( "fetch errors: " . Dumper( $fetch_errors ) ); - } -} - -sub test_topic_links($$$) -{ - my ( $db, $topic, $sites ) = @_; - - my $cid = $topic->{ topics_id }; - - my $cl = $db->query( "select * from topic_links" )->hashes; - - TRACE "topic links: " . Dumper( $cl ); - - my $all_pages = []; - map { push( @{ $all_pages }, @{ $_->{ pages } } ) } @{ $sites }; - - for my $page ( @{ $all_pages } ) - { - next if ( !$page->{ matches_topic } ); - - for my $link ( @{ $page->{ links } } ) - { - next unless ( $link->{ matches_topic } ); - - my $topic_links = $db->query( <{ url }, $link->{ url }, $cid )->hashes; -select * - from topic_links cl - join stories s on ( cl.stories_id = s.stories_id ) - where - s.url = \$1 and - cl.url = \$2 and - cl.topics_id = \$3 -SQL - - is( scalar( @{ $topic_links } ), 1, "number of topic_links for $page->{ url } -> $link->{ url }" ); - } - } - - my $topic_spider_metric = $db->query( <{ topics_id } )->hash; -select sum( links_processed ) links_processed from topic_spider_metrics where topics_id = ? -SQL - - ok( $topic_spider_metric, "topic spider metrics exist" ); - ok( $topic_spider_metric->{ links_processed } > scalar( @{ $cl } ), "metrics links_processed greater than topic_links" ); -} - -# test that no errors exist in the topics or snapshots tables -sub test_for_errors($) -{ - my ( $db ) = @_; - - my $error_topics = $db->query( "select * from topics where state = 'error'" )->hashes; - - ok( scalar( @{ $error_topics } ) == 0, "topic errors: " . Dumper( $error_topics ) ); - - my $error_snapshots = $db->query( "select * from snapshots where state = 'error'" )->hashes; - - ok( scalar( @{ $error_snapshots } ) == 0, "snapshot errors: " . Dumper( $error_snapshots ) ); -} - -sub test_spider_results($$$) -{ - my ( $db, $topic, $sites ) = @_; - - test_topic_stories( $db, $topic, $sites ); - - test_topic_links( $db, $topic, $sites ); - - test_for_errors( $db ); -} - -sub get_site_structure($) -{ - my ( $sites ) = @_; - - my $meta_sites = []; - for my $site ( @{ $sites } ) - { - my $meta_site = { url => $site->{ url } }; - for my $page ( @{ $site->{ pages } } ) - { - my $meta_page = { url => $page->{ url }, matches_topic => $page->{ matches_topic } }; - map { push( @{ $meta_page->{ links } }, $_->{ url } ) } @{ $page->{ links } }; - - $meta_page->{ content } = $page->{ content } - if ( $page->{ matches_topic } && $page->{ matches_topic } ); - - push( @{ $meta_site->{ pages } }, $meta_page ); - } - - push( @{ $meta_sites }, $meta_site ); - } - - return $meta_sites; -} - -sub test_spider($) -{ - my ( $db ) = @_; - - # we pseudo-randomly generate test data, but we want repeatable tests - srand( 3 ); - - MediaWords::Util::Mail::enable_test_mode(); - - my $sites = get_test_sites(); - - TRACE "SITE STRUCTURE " . Dumper( get_site_structure( $sites ) ); - - add_site_media( $db, $sites ); - - my $hash_servers = start_hash_servers( $sites ); - - test_pages( $sites ); - - my $topic = create_topic( $db, $sites ); - - my $mine_args = { - topics_id => $topic->{ topics_id }, - skip_post_processing => 1, # - cache_broken_downloads => 0, # - import_only => 0, # - skip_outgoing_foreign_rss_links => 0, # - test_mode => 1 - }; - - MediaWords::TM::Mine::mine_topic( $db, $topic, $mine_args ); - - test_spider_results( $db, $topic, $sites ); - - map { $_->stop } @{ $hash_servers }; -} - -sub main -{ - my $db = MediaWords::DB::connect_to_db(); - - test_spider( $db ); - - done_testing(); -} - -main(); From 6862d3b6bc422186c710f779ba3d925901976a70 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Tue, 29 Dec 2020 05:48:36 +0000 Subject: [PATCH 19/20] migrate topics-mine-public to python and add typehints to mine.py --- apps/topics-mine-public/Dockerfile | 2 +- .../bin/topics_mine_public_worker.pl | 20 -------- apps/topics-mine/bin/topics_mine_worker.py | 2 +- .../src/python/topics_mine/mine.py | 49 ++++++++++--------- apps/topics-mine/tests/python/test_mine.py | 12 ++--- 5 files changed, 33 insertions(+), 52 deletions(-) delete mode 100755 apps/topics-mine-public/bin/topics_mine_public_worker.pl diff --git a/apps/topics-mine-public/Dockerfile b/apps/topics-mine-public/Dockerfile index 9b927ea57f..ffc2625971 100644 --- a/apps/topics-mine-public/Dockerfile +++ b/apps/topics-mine-public/Dockerfile @@ -9,4 +9,4 @@ COPY bin /opt/mediacloud/bin USER mediacloud -CMD ["topics_mine_public_worker.pl"] +CMD ["topics_mine_public_worker.py"] diff --git a/apps/topics-mine-public/bin/topics_mine_public_worker.pl b/apps/topics-mine-public/bin/topics_mine_public_worker.pl deleted file mode 100755 index 724e8cd641..0000000000 --- a/apps/topics-mine-public/bin/topics_mine_public_worker.pl +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env perl -# -# This job is a copy of MineTopic but is used to run a separate job queue for topics requested by public users. -# - -use strict; -use warnings; - -use Modern::Perl "2015"; -use MediaWords::CommonLibs; - -use MediaWords::TM::Worker; - - -sub main() -{ - MediaWords::TM::Worker::start_topics_mine_worker( 'MediaWords::Job::TM::MineTopicPublic' ); -} - -main(); diff --git a/apps/topics-mine/bin/topics_mine_worker.py b/apps/topics-mine/bin/topics_mine_worker.py index 019af5db36..3eb0963105 100755 --- a/apps/topics-mine/bin/topics_mine_worker.py +++ b/apps/topics-mine/bin/topics_mine_worker.py @@ -6,7 +6,7 @@ log = create_logger(__name__) -QUEUE_NAME = 'MediaWords::Job::TM::Mine' +QUEUE_NAME = 'MediaWords::Job::TM::MineTopic' if __name__ == '__main__': app = JobBroker(queue_name=QUEUE_NAME) diff --git a/apps/topics-mine/src/python/topics_mine/mine.py b/apps/topics-mine/src/python/topics_mine/mine.py index 3aed60ee7d..1588b3446d 100644 --- a/apps/topics-mine/src/python/topics_mine/mine.py +++ b/apps/topics-mine/src/python/topics_mine/mine.py @@ -190,7 +190,7 @@ def generate_topic_links(db: DatabaseHandler, topic: dict, stories: list): db.query(f"drop table {stories_ids_table}") -def die_if_max_stories_exceeded(db, topic): +def die_if_max_stories_exceeded(db: DatabaseHandler, topic: dict) -> None: """ raise an MCTopicMineMaxStoriesException topic_stories > topics.max_stories. """ @@ -202,7 +202,7 @@ def die_if_max_stories_exceeded(db, topic): raise McTopicMineError(f"{num_topic_stories} stories > {topic['max_stories']}") -def queue_topic_fetch_url(tfu:dict, domainm_timeout:Optional[int] = None): +def queue_topic_fetch_url(tfu: dict, domainm_timeout: Optional[int] = None): """ add the topic_fetch_url to the fetch_link job queue. try repeatedly on failure.""" JobBroker(queue_name='MediaWords::Job::TM::FetchLink').add_to_queue( @@ -210,7 +210,7 @@ def queue_topic_fetch_url(tfu:dict, domainm_timeout:Optional[int] = None): domain_timeout=DOMAIN_TIMEOUT) -def create_and_queue_topic_fetch_urls(db:DatabaseHandler, topic:dict, fetch_links:list) -> list: +def create_and_queue_topic_fetch_urls(db: DatabaseHandler, topic: dict, fetch_links: list) -> list: """ create topic_fetch_urls rows correpsonding to the links and queue a FetchLink job for each. @@ -428,7 +428,7 @@ def fetch_links(db: DatabaseHandler, topic: dict, fetch_links: dict) -> None: return completed_tfus -def add_new_links_chunk(db, topic, iteration, new_links): +def add_new_links_chunk(db: DatabaseHandler, topic: dict, iteration: int, new_links: list) -> None: """ download any unmatched link in new_links, add it as a story, extract it, add any links to the topic_links list. @@ -449,7 +449,7 @@ def add_new_links_chunk(db, topic, iteration, new_links): {'a': link_ids}) -def save_metrics(db, topic, iteration, num_links, elapsed_time): +def save_metrics(db: DatabaseHandler, topic: dict, iteration: int, num_links: int, elapsed_time: int) -> None: """save a row in the topic_spider_metrics table to track performance of spider""" topic_spider_metric = { @@ -512,7 +512,8 @@ def get_new_links(db: DatabaseHandler, iteration: int, topics_id: int) -> list: return new_links -def spider_new_links(db, topic, iteration, state_updater): +def spider_new_links( + db: DatabaseHandler, topic: dict, iteration: int, state_updater: Optional[StateUpdater]) -> None: """call add_new_links on topic_links for which link_spidered is false.""" while True: @@ -551,7 +552,7 @@ def spider_new_links(db, topic, iteration, state_updater): db.query("delete from _new_links where topic_links_id = any(%(a)s)", {'a': tl_ids}) add_new_links(db, topic, iteration, new_links, state_updater) -def get_spider_progress_description(db, topic, iteration, total_links): +def get_spider_progress_description(db: DatabaseHandler, topic: dict, iteration: int, total_links: int) -> str: """get short text description of spidering progress""" log.info("get spider progress description") @@ -576,7 +577,7 @@ def get_spider_progress_description(db, topic, iteration, total_links): ) -def run_spider(db, topic, state_updater): +def run_spider(db: DatabaseHandler, topic: dict, state_updater: Optional[StateUpdater]) -> None: """run the spider over any new links, for num_iterations iterations""" log.info("run spider") @@ -587,7 +588,7 @@ def run_spider(db, topic, state_updater): [spider_new_links(db, topic, iterations, state_updater) for i in range(iterations)] -def mine_topic_stories(db, topic): +def mine_topic_stories(db: DatabaseHandler, topic: dict) -> None: """ mine for links any stories in topic_stories for this topic that have not already been mined""" log.info("mine topic stories") @@ -620,10 +621,10 @@ def mine_topic_stories(db, topic): break -def import_seed_urls(db, topic, state_updater): +def import_seed_urls(db: DatabaseHandler, topic: dict, state_updater: Optional[StateUpdater]) -> int: """ import all topic_seed_urls that have not already been processed - return 1 if new stories were added to the topic and 0 if not + return number of seed urls imported """ log.info("import seed urls") @@ -715,7 +716,7 @@ def import_seed_urls(db, topic, state_updater): return len(seed_urls) -def insert_topic_seed_urls(db, topic_seed_urls): +def insert_topic_seed_urls(db: DatabaseHandler, topic_seed_urls: list) -> None: """ insert a list of topic seed urls""" log.info(f"inserting {len(topic_seed_urls)} topic seed urls ...") @@ -724,7 +725,7 @@ def insert_topic_seed_urls(db, topic_seed_urls): db.create('topic_seed_urls', insert_tsu) -def _import_month_within_respider_date(topic, month_offset): +def _import_month_within_respider_date(topic: dict, month_offset: int) -> bool: """ return True if the given month offset is within the dates that should be respidered. always return True if there are no respider dates @@ -754,7 +755,7 @@ def _import_month_within_respider_date(topic, month_offset): return False -def _search_for_stories_urls(db, params): +def _search_for_stories_urls(db: DatabaseHandler, params: dict) -> list: """Call search_solr_for_stories_ids() and then query postgres for the stories urls. Return dicts with stories_id and url fields.""" @@ -766,7 +767,7 @@ def _search_for_stories_urls(db, params): return stories -def import_solr_seed_query_month(db, topic, month_offset): +def import_solr_seed_query_month(db: DatabaseHandler, topic: dict, month_offset: int) -> bool: """ import a single month of the solr seed query. we do this to avoid giant queries that timeout in solr. return True if the month_offset is valid for the topic.""" @@ -812,7 +813,7 @@ def import_solr_seed_query_month(db, topic, month_offset): return True -def import_solr_seed_query(db, topic): +def import_solr_seed_query(db: DatabaseHandler, topic: dict) -> None: """ import stories into topic_seed_urls from solr by running topic['solr_seed_query'] against solr. if the solr query has already been imported, do nothing.""" @@ -830,7 +831,7 @@ def import_solr_seed_query(db, topic): db.query("update topics set solr_seed_query_run = 't' where topics_id = %(a)s", {'a': topic['topics_id']}) -def all_facebook_data_fetched(db, topic): +def all_facebook_data_fetched(db: DatabaseHandler, topic: dict) -> bool: """ return True if there are no stories without facebook data""" null_facebook_story = db.query( @@ -854,7 +855,7 @@ def all_facebook_data_fetched(db, topic): return null_facebook_story is None -def _add_topic_stories_to_facebook_queue(db, topic): +def _add_topic_stories_to_facebook_queue(db: DatabaseHandler, topic: dict) -> None: """ add all topic stories without facebook data to the queue""" topics_id = topic['topics_id'] @@ -883,7 +884,7 @@ def _add_topic_stories_to_facebook_queue(db, topic): stories_id=ss['stories_id']) -def fetch_social_media_data(db, topic): +def fetch_social_media_data(db: DatabaseHandler, topic: dict) -> None: """ send jobs to fetch facebook data for all stories that don't yet have it""" log.info("fetch social media data") @@ -903,7 +904,7 @@ def fetch_social_media_data(db, topic): raise McTopicMineError("Timed out waiting for social media data") -def check_job_error_rate(db, topic): +def check_job_error_rate(db: DatabaseHandler, topic: dict) -> None: """ raise an error if error rate for link extraction or link fetching is too high""" log.info("check job error rate") @@ -947,7 +948,7 @@ def check_job_error_rate(db, topic): raise McTopicMineError(f"link error rate of {link_error_rate} is greater than {MAX_JOB_ERROR_RATE}") -def import_urls_from_seed_queries(db, topic, state_updater): +def import_urls_from_seed_queries(db: DatabaseHandler, topic: dict, state_updater: Optional[StateUpdater]) -> None: """ import urls from seed query """ topic_seed_queries = db.query( @@ -990,7 +991,7 @@ def import_urls_from_seed_queries(db, topic, state_updater): {'a': topic['topics_id']}) -def set_stories_respidering(db, topic, snapshots_id): +def set_stories_respidering(db: DatabaseHandler, topic: dict, snapshots_id: int) -> None: """ if the query or dates have changed, set topic_stories.link_mined to false so they will be respidered""" if not topic['respider_stories']: @@ -1053,7 +1054,7 @@ def set_stories_respidering(db, topic, snapshots_id): {'respider_stories': 'f', 'respider_start_date': None, 'respider_end_date': None}) -def do_mine_topic(db, topic, options): +def do_mine_topic(db: DatabaseHandler, topic: dict, options: dict) -> None: """ mine the given topic for links and to recursively discover new stories on the web. options: @@ -1106,7 +1107,7 @@ def do_mine_topic(db, topic, options): StatefulJobBroker(queue_name='MediaWords::Job::TM::SnapshotTopic').add_to_queue(snapshot_args) -def mine_topic(db, topic, **options): +def mine_topic(db: DatabaseHandler, topic: dict, **options: dict) -> None: """ wrap do_mine_topic in try and handle errors and state""" # the topic spider can sit around for long periods doing solr queries, so we need to make sure the postgres diff --git a/apps/topics-mine/tests/python/test_mine.py b/apps/topics-mine/tests/python/test_mine.py index e41b48b2d1..280e21e04e 100644 --- a/apps/topics-mine/tests/python/test_mine.py +++ b/apps/topics-mine/tests/python/test_mine.py @@ -259,15 +259,15 @@ def validate_topic_stories(db, topic, sites): all_pages = [] [all_pages.extend(s['pages']) for s in sites] - log.warning(f"ALL PAGES: {len(all_pages)}") + log.info(f"ALL PAGES: {len(all_pages)}") topic_pages = [p for p in all_pages if p['matches_topic']] - log.warning(f"TOPIC PAGES: {len(topic_pages)}") + log.info(f"TOPIC PAGES: {len(topic_pages)}") topic_pages_lookup = {s['url']: s for s in topic_stories} - log.warning(f"TOPIC PAGES LOOKUP: {len(topic_pages_lookup)}") + log.info(f"TOPIC PAGES LOOKUP: {len(topic_pages_lookup)}") for topic_story in topic_stories: assert topic_pages_lookup.get(topic_story['url'], False) @@ -297,10 +297,10 @@ def validate_topic_stories(db, topic, sites): if dead_link_count != dead_pages_count: fetch_states = db.query("select count(*), state from topic_fetch_urls group by state" ).hashes() - log.warning(f"fetch states: {fetch_states}") + log.info(f"fetch states: {fetch_states}") fetch_errors = db.query("select * from topic_fetch_urls where state = 'python error'").hashes() - log.warning(f"fetch errors: {fetch_errors}") + log.info(f"fetch errors: {fetch_errors}") assert dead_link_count == dead_pages_count, "dead link count" @@ -309,7 +309,7 @@ def validate_topic_links(db, topic, sites): topic_links = db.query("select * from topic_links").hashes() - log.warning(f"TOPIC LINKS: {len(topic_links)}") + log.info(f"TOPIC LINKS: {len(topic_links)}") all_pages = [] [all_pages.extend(s['pages']) for s in sites] From d26314cf747cecb1fa3a3abc4511de51d6a245c6 Mon Sep 17 00:00:00 2001 From: Hal Roberts Date: Tue, 29 Dec 2020 14:38:11 +0000 Subject: [PATCH 20/20] add missing bin directory --- .../bin/topics_mine_public_worker.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 apps/topics-mine-public/bin/topics_mine_public_worker.py diff --git a/apps/topics-mine-public/bin/topics_mine_public_worker.py b/apps/topics-mine-public/bin/topics_mine_public_worker.py new file mode 100755 index 0000000000..ac8b58b8c0 --- /dev/null +++ b/apps/topics-mine-public/bin/topics_mine_public_worker.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 + +from mediawords.job import JobBroker +from mediawords.util.log import create_logger +from topics_mine.mine import run_worker_job + +log = create_logger(__name__) + +QUEUE_NAME = 'MediaWords::Job::TM::MineTopicPublic' + +if __name__ == '__main__': + app = JobBroker(queue_name=QUEUE_NAME) + app.start_worker(handler=run_worker_job)