From d6051ca1a54f028a44b2513cbaa5aefaeb20e938 Mon Sep 17 00:00:00 2001 From: harshitsoni01 Date: Wed, 8 Jul 2020 00:29:28 +0530 Subject: [PATCH] final project --- .gitignore | 12 + App/app.py | 37 + App/dynamic_labelling.ipynb | 7213 + App/dynamic_labelling.py | 69 + App/feature.py | 30 + App/find_real_news.py | 24 + App/js/scripts.js | 56 + App/model_training.ipynb | 719 + App/pipeline_final.sav | Bin 0 -> 734157 bytes App/static/css/resultspagestyle.css | 239 + App/static/css/styles.css | 10842 + ...ke news on old school tv screen 504867.jpg | Bin 0 -> 130114 bytes .../img/Fake News in the digital world.jpg | Bin 0 -> 13158 bytes App/static/img/bg-masthead.jpg | Bin 0 -> 218077 bytes App/static/img/bg-signup.jpg | Bin 0 -> 535218 bytes App/static/img/computer.jpg | Bin 0 -> 151003 bytes App/static/img/content.jpg | Bin 0 -> 12850 bytes App/static/img/demo-image-01.jpg | Bin 0 -> 16538 bytes App/static/img/demo-image-02.jpg | Bin 0 -> 105114 bytes App/static/img/fake.jpg | Bin 0 -> 26702 bytes App/static/img/favicon.ico | Bin 0 -> 23462 bytes App/static/img/glitch.jpg | Bin 0 -> 52820 bytes App/static/img/ipad.png | Bin 0 -> 235936 bytes App/static/img/logo.jpeg | Bin 0 -> 75829 bytes App/static/img/sharing_news.png | Bin 0 -> 41130 bytes App/static/img/sharing_news_trans.svg | 1 + App/static/img/sky.jpg | Bin 0 -> 39632 bytes App/templates/index.html | 296 + App/templates/resultpage.html | 49 + App/train.py | 148 + App/translator.py | 18 + App/tweet_bot/last_seen_id.txt | 1 + App/tweet_bot/my_bot.py | 109 + App/tweet_bot/tweetbotnotebook.ipynb | 167 + App/tweet_scraper.py | 31 + README.md | 1 + csv_files/example1.csv | 6336 + datasets/fake_or_real_news.csv | 166355 +++++++++++++++ datasets/fake_real_final_dataset.csv | 23197 ++ requirements.txt | 85 + 40 files changed, 216035 insertions(+) create mode 100644 .gitignore create mode 100644 App/app.py create mode 100644 App/dynamic_labelling.ipynb create mode 100644 App/dynamic_labelling.py create mode 100644 App/feature.py create mode 100644 App/find_real_news.py create mode 100644 App/js/scripts.js create mode 100644 App/model_training.ipynb create mode 100644 App/pipeline_final.sav create mode 100644 App/static/css/resultspagestyle.css create mode 100644 App/static/css/styles.css create mode 100644 App/static/img/Download free vector of Fake news on old school tv screen 504867.jpg create mode 100644 App/static/img/Fake News in the digital world.jpg create mode 100644 App/static/img/bg-masthead.jpg create mode 100644 App/static/img/bg-signup.jpg create mode 100644 App/static/img/computer.jpg create mode 100644 App/static/img/content.jpg create mode 100644 App/static/img/demo-image-01.jpg create mode 100644 App/static/img/demo-image-02.jpg create mode 100644 App/static/img/fake.jpg create mode 100644 App/static/img/favicon.ico create mode 100644 App/static/img/glitch.jpg create mode 100644 App/static/img/ipad.png create mode 100644 App/static/img/logo.jpeg create mode 100644 App/static/img/sharing_news.png create mode 100644 App/static/img/sharing_news_trans.svg create mode 100644 App/static/img/sky.jpg create mode 100644 App/templates/index.html create mode 100644 App/templates/resultpage.html create mode 100644 App/train.py create mode 100644 App/translator.py create mode 100644 App/tweet_bot/last_seen_id.txt create mode 100644 App/tweet_bot/my_bot.py create mode 100644 App/tweet_bot/tweetbotnotebook.ipynb create mode 100644 App/tweet_scraper.py create mode 100644 README.md create mode 100644 csv_files/example1.csv create mode 100644 datasets/fake_or_real_news.csv create mode 100644 datasets/fake_real_final_dataset.csv create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c038b82 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +env/ +env5/ +App/Untitled.ipynb +App/Untitled1.ipynb +App/Untitled2.ipynb +Untitled.ipynb +__pycache__ +.ipynb_checkpoints +App/__pycache__ +.DS_Store +App/pipeline1.sav +Untitled1.ipynb \ No newline at end of file diff --git a/App/app.py b/App/app.py new file mode 100644 index 0000000..85cb93c --- /dev/null +++ b/App/app.py @@ -0,0 +1,37 @@ +from flask import Flask, abort, jsonify, request, render_template +import joblib +from feature import * +import json +from find_real_news import get_real_news # get real news from NewsAPI + +pipeline = joblib.load('./pipeline_final.sav') + +app = Flask(__name__) + + +@app.route('/') +def home(): + name = "TechnologIQ" + return render_template('index.html', name=name) + + +@app.route('/api', methods=['POST']) +def get_delay(): + + result = request.form + query_news = result['news'] + # returns dictionary with language, original text and translated text + translated_query = lang_translate(query_news) + cleaned_query = remove_punctuation_stopwords_lemma( + translated_query["final_text"]) + query = get_all_query(translated_query["final_text"]) + pred = pipeline.predict(query) + print(pred) + + # if news is fake, display alternative real news using NewsAPI + real_news = get_real_news(translated_query["final_text"]) + return render_template('resultpage.html', test="test2", pred=pred, translated_query=translated_query, cleaned_query=cleaned_query, real_news=real_news) + + +if __name__ == '__main__': + app.run(port=8080, debug=True) diff --git a/App/dynamic_labelling.ipynb b/App/dynamic_labelling.ipynb new file mode 100644 index 0000000..d544000 --- /dev/null +++ b/App/dynamic_labelling.ipynb @@ -0,0 +1,7213 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import joblib" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "df_read = pd.read_csv('datasets/example1.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0title
00You Can Smell Hillary’s Fear
11Watch The Exact Moment Paul Ryan Committed Pol...
22Kerry to go to Paris in gesture of sympathy
33Bernie supporters on Twitter erupt in anger ag...
44The Battle of New York: Why This Primary Matters
.........
63306330State Department says it can't find emails fro...
63316331The ‘P’ in PBS Should Stand for ‘Plutocratic’ ...
63326332Anti-Trump Protesters Are Tools of the Oligarc...
63336333In Ethiopia, Obama seeks progress on peace, se...
63346334Jeb Bush Is Suddenly Attacking Trump. Here's W...
\n", + "

6335 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 title\n", + "0 0 You Can Smell Hillary’s Fear\n", + "1 1 Watch The Exact Moment Paul Ryan Committed Pol...\n", + "2 2 Kerry to go to Paris in gesture of sympathy\n", + "3 3 Bernie supporters on Twitter erupt in anger ag...\n", + "4 4 The Battle of New York: Why This Primary Matters\n", + "... ... ...\n", + "6330 6330 State Department says it can't find emails fro...\n", + "6331 6331 The ‘P’ in PBS Should Stand for ‘Plutocratic’ ...\n", + "6332 6332 Anti-Trump Protesters Are Tools of the Oligarc...\n", + "6333 6333 In Ethiopia, Obama seeks progress on peace, se...\n", + "6334 6334 Jeb Bush Is Suddenly Attacking Trump. Here's W...\n", + "\n", + "[6335 rows x 2 columns]" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_read" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [], + "source": [ + "df_pred = pd.DataFrame(columns = ['title', 'label'])" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titlelabel
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [title, label]\n", + "Index: []" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1 = pd.DataFrame(columns = ['title', 'label'])\n", + "df1" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0labeltitle
0titleNaNNaN
\n", + "
" + ], + "text/plain": [ + " 0 label title\n", + "0 title NaN NaN" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1.append(['title'], \"hello\")" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0title
00You Can Smell Hillary’s Fear
11Watch The Exact Moment Paul Ryan Committed Pol...
22Kerry to go to Paris in gesture of sympathy
33Bernie supporters on Twitter erupt in anger ag...
44The Battle of New York: Why This Primary Matters
.........
63306330State Department says it can't find emails fro...
63316331The ‘P’ in PBS Should Stand for ‘Plutocratic’ ...
63326332Anti-Trump Protesters Are Tools of the Oligarc...
63336333In Ethiopia, Obama seeks progress on peace, se...
63346334Jeb Bush Is Suddenly Attacking Trump. Here's W...
\n", + "

6335 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 title\n", + "0 0 You Can Smell Hillary’s Fear\n", + "1 1 Watch The Exact Moment Paul Ryan Committed Pol...\n", + "2 2 Kerry to go to Paris in gesture of sympathy\n", + "3 3 Bernie supporters on Twitter erupt in anger ag...\n", + "4 4 The Battle of New York: Why This Primary Matters\n", + "... ... ...\n", + "6330 6330 State Department says it can't find emails fro...\n", + "6331 6331 The ‘P’ in PBS Should Stand for ‘Plutocratic’ ...\n", + "6332 6332 Anti-Trump Protesters Are Tools of the Oligarc...\n", + "6333 6333 In Ethiopia, Obama seeks progress on peace, se...\n", + "6334 6334 Jeb Bush Is Suddenly Attacking Trump. Here's W...\n", + "\n", + "[6335 rows x 2 columns]" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_pred\n", + "df_read" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['REAL']\n" + ] + } + ], + "source": [ + "pipeline = joblib.load('App/pipeline_final.sav')\n", + "text = \"You Can Smell Hillary’s Fear\"\n", + "text = [text]\n", + "pred = pipeline.predict(text)\n", + "print(pred)" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "You Can Smell Hillary’s Fear: ['REAL']\n", + "Watch The Exact Moment Paul Ryan Committed Political Suicide At A Trump Rally (VIDEO): ['FAKE']\n", + "Kerry to go to Paris in gesture of sympathy: ['REAL']\n", + "Bernie supporters on Twitter erupt in anger against the DNC: 'We tried to warn you!': ['FAKE']\n", + "The Battle of New York: Why This Primary Matters: ['REAL']\n", + "Tehran, USA: ['REAL']\n", + "Girl Horrified At What She Watches Boyfriend Do After He Left FaceTime On: ['FAKE']\n", + "‘Britain’s Schindler’ Dies at 106: ['REAL']\n", + "Fact check: Trump and Clinton at the 'commander-in-chief' forum: ['FAKE']\n", + "Iran reportedly makes new push for uranium concessions in nuclear talks: ['FAKE']\n", + "With all three Clintons in Iowa, a glimpse at the fire that has eluded Hillary Clinton’s campaign: ['REAL']\n", + "Donald Trump’s Shockingly Weak Delegate Game Somehow Got Even Worse: ['REAL']\n", + "Strong Solar Storm, Tech Risks Today | S0 News Oct.26.2016 [VIDEO]: ['REAL']\n", + "10 Ways America Is Preparing for World War 3: ['REAL']\n", + "Trump takes on Cruz, but lightly: ['REAL']\n", + "How women lead differently: ['REAL']\n", + "Shocking! Michele Obama & Hillary Caught Glamorizing Date Rape Promoters: ['REAL']\n", + "Hillary Clinton in HUGE Trouble After America Noticed SICK Thing Hidden in this Picture... * LIBERTY WRITERS NEWS: ['FAKE']\n", + "What's in that Iran bill that Obama doesn't like?: ['FAKE']\n", + "The 1 chart that explains everything you need to know about partisanship in America: ['REAL']\n", + "The slippery slope to Trump’s proposed ban on Muslims: ['FAKE']\n", + "Episode #160 – SUNDAY WIRE: ‘Hail to the Deplorables’ with special guest Randy J: ['REAL']\n", + "Hillary Clinton Makes A Bipartisan Appeal on Staten Island: ['REAL']\n", + "New Senate majority leader’s main goal for GOP: Don’t be scary: ['REAL']\n", + "‘Inferno’ and the Overpopulation Myth: ['REAL']\n", + "Anti-Trump forces seek last-ditch delegate revolt: ['REAL']\n", + "Sanders Trounces Clinton in W. Va. -- But Will It Make a Difference?: ['REAL']\n", + "Donald Trump Is Changing His Campaign Slogan to Prove He’s Not Racist: ['FAKE']\n", + "Pure chaos: Donald Trump’s campaign management offers a glimpse into his governing style (spoiler alert: it’s terrible): ['REAL']\n", + "Syrian War Report – November 1, 2016: Syrian Military Deploys Advanced T-90 Battle Tanks to Aleppo: ['REAL']\n", + "GOP insiders: Carly crushed it: ['REAL']\n", + "Jeffrey Sewell et al. : Metabiology face to face with Artificial Intelligence [VIDEO]: ['FAKE']\n", + "Why It’s Necessary To Relax Into A Stretch: ['REAL']\n", + "Brexit Encourages UK to Trade With Non-EU States, Including Russia: ['REAL']\n", + "2016 interview with Socrates: Another day of Life in the Empire! Are we near an endgame, or fools to ever ‘hope for change’? (6 of ?): ['FAKE']\n", + "Mike Pence Drapes Shawl Over Immodest Lady Justice Statue - The Onion - America's Finest News Source: ['FAKE']\n", + "First Ever Hindu Woman Elected into Congress: ['REAL']\n", + "Donald Groped Hillary in 2005! Trump and Weiner Sext Each Other!: ['REAL']\n", + "Ex-Assistant FBI Director: Clintons Are a Crime Family: ['REAL']\n", + "Hillary Wants Aggressively Interventionist Foreign Policy: ['REAL']\n", + "Both parties want to craft populist messages for 2016: ['FAKE']\n", + "First Take: Wall Street bids goodbye to June hike: ['REAL']\n", + "Real Disclosure! Secret Alien Base Found In Moon's Tycho Crater: ['FAKE']\n", + "Homeless Woman Protects Trump’s Walk of Fame Star From Violent Leftists: ['REAL']\n", + "With 3:20 a.m. tweet storm Saturday, Clinton continues to mock Trump’s Friday ‘meltdown’: ['FAKE']\n", + "220 ‘Significant’ Pipeline Spills Already This Year Exposes Troubling Safety Record: ['REAL']\n", + "Obama makes the right call to tough it out in Afghanistan: ['REAL']\n", + "Senate race rankings: Dems attack as GOP lays swing-state groundwork: ['REAL']\n", + "‘He didn’t know the boy didn’t want to be raped’ – court throws out Muslim migrant child sex charge and Germans are in shock: ['FAKE']\n", + "Pieczenik “Rogue FBI Agents and Wikileaks are Spearheading a Movement to Stop the Clintons from Stealing the White House” – TruthFeed: ['REAL']\n", + "American politics has reached peak polarization: ['FAKE']\n", + "Anti-Muhammad cartoon contest: Free speech or deliberately provocative? (+video): ['REAL']\n", + "3 Effects of Substance Abuse on Individual, Family and Community: ['REAL']\n", + "Tree Shaped Vertical Farms That Grow 24 Acres Of Urban Crops: ['REAL']\n", + "New Comment Features have been Added: ['REAL']\n", + "World's newspapers react to 'Hebdo' attack: ['FAKE']\n", + "Ying and Yang (the Gold and Silver Set-Up): ['REAL']\n", + "Closed primaries, 'warped' democracy?: ['REAL']\n", + "Police Turn In Badges Rather Than Incite Violence Against Standing Rock Protestors: ['REAL']\n", + "Donald Trump: Hillary Clinton has 'caused tremendous death': ['REAL']\n", + "Detroit women’s Halloween decorations depict ‘real-life horrors’ … such as shootings police by police: ['REAL']\n", + "Biden makes another surprise political stop: ['REAL']\n", + "Hillary Clinton's declining favorability numbers, in context: ['REAL']\n", + "Comment on Quid Pro Quo? Wikileaks Email Reveals Clinton Campaign Eyeing Paul Ryan’s Relative for Supreme Court by lenore.lee: ['REAL']\n", + "Hillary Clinton: The criminal investigation keeps moving forward: ['REAL']\n", + "Rubio’s parting shot at Trump: ['FAKE']\n", + "Loretta Lynch becomes first African-American woman AG.: ['FAKE']\n", + "Why it's funny Republicans are upset with Facebook: Column: ['FAKE']\n", + "FBI checking if Orlando shooter's wife knew attack plan but didn't warn police: ['FAKE']\n", + "Is google and YouTube in the Hillary's purse?: ['REAL']\n", + "Handicapping the Hispanic vote for 2016 GOPers: ['FAKE']\n", + "Truth Will Out Radio: The Laconia Incident: ['REAL']\n", + "GOP establishment nightmare? Ted Cruz vs. Donald Trump: ['FAKE']\n", + "Bernie Sanders lost poor voters in South Carolina by a big margin — a problem for his political revolution: ['FAKE']\n", + "Should I Get Botox?: ['REAL']\n", + "Jeb Bush Picks Up Endorsement From Lindsey Graham: ['REAL']\n", + "2016 Republican race enters a new, volatile phase: ['REAL']\n", + "‘Hands up, don’t shoot’ was built on a lie: ['REAL']\n", + "Lavrov and Kerry discuss Syrian settlement: ['REAL']\n", + "BREAKING : DOJ Says They Will “HELP” Review the 650K Emails – TruthFeed: ['REAL']\n", + "Bernie Sanders' call for ouster of two convention co-chairs rejected: ['REAL']\n", + "Five Reasons the New York Democratic Primary Felt Competitive: ['REAL']\n", + "To get around Congress, Obama turns to city halls: ['REAL']\n", + "Celebrity Deathmatch: Darkmoon Sages Make Their Final Predictions on US Election: ['REAL']\n", + "John Kerry: ISIS responsible for genocide: ['REAL']\n", + "Mitt Romney's Re-Invention As Anti-Poverty Warrior: ['REAL']\n", + "King: Fill the Supreme Court vacancy: ['REAL']\n", + "Ted Cruz is toast: It’s not just that he won’t be president — his days in the Senate are numbered, too: ['REAL']\n", + "Obama’s speech in Selma was an answer to those who question his love for America: ['FAKE']\n", + "Where Does Bernie Sanders Go From Here?: ['REAL']\n", + "Exclusive: GOP campaigns plot revolt against RNC: ['FAKE']\n", + "Revelation Unleashed: Unlocking The Mysteries Of The Bible’s Most Mysterious Book: ['REAL']\n", + "Silent Counter-Coup by 17 Intel Agencies To Stop Crooked Clintons [Video]: ['REAL']\n", + "Why Hillary Clinton, not Bernie Sanders, 'won' town hall: ['REAL']\n", + "French police hunt two brothers accused of Charlie Hebdo terror attack: ['FAKE']\n", + "The Mandela Effect was made by one overlooked 33 year old man, an ascended master (video and proof): ['FAKE']\n", + "CNN: One voter can make a difference by voting repeatedly: ['FAKE']\n", + "Give Social Security recipients a CEO-style raise: ['REAL']\n", + "Fireworks erupt between Trump and Bush, Rubio and Cruz at GOP debate: ['FAKE']\n", + "Obama, sounding like his critics, admits no 'complete strategy' for Iraq: ['REAL']\n", + "How Ted Cruz Became Ted Cruz: ['REAL']\n", + "Newly Approved GM Potatoes Have Potential to Silence Human Genes: ['FAKE']\n", + "Accord reached after Sanders sues the DNC over suspended access to critical voter list: ['FAKE']\n", + "Why the latest Patriot Act reform won’t be enough to rein in the NSA: ['REAL']\n", + "FBI expands probe of Clinton emails, launches independent classification review: ['REAL']\n", + "Where is Gary Johnson?: ['REAL']\n", + "The Arcturian Group by Marilyn Raffaele October 23, 2016 [VIDEO]: ['FAKE']\n", + "Nuclear weapons question: ['REAL']\n", + "Kevin MacDonald celebrates Trump’s Amazing Victory: ['REAL']\n", + "The amazing AquTru water filter, version 2.0, is now in stock: I've snagged 500 units for Natural News readers at a deep discount: ['REAL']\n", + "What happens if Clinton drops out?: ['REAL']\n", + "Brothers ID'd as suicide bombers in Belgium: ['REAL']\n", + "Glorifying Violence: ['REAL']\n", + "Russia may run out of patience and respond to USA's rudeness: ['REAL']\n", + "The David Duke Show: Hillary’s Treason and Why Trump & Duke Will Win: ['REAL']\n", + "Don't blame all immigrants for San Francisco shooting: ['REAL']\n", + "Netanyahu: I Won't Allow Israel to Be 'Submerged' by Refugees: ['FAKE']\n", + "APOCALYPSE NOW: Trump Voters Warn Of ‘Revolution’ If Clinton Wins: ['FAKE']\n", + "Geo-Engineering Unlikely to Work, Conservation Group Says: ['REAL']\n", + "3 Questions Ahead Of Tonight's Democratic Debate: ['REAL']\n", + "Obama's terror strategy is failing: US must heed lessons of 9/11: ['REAL']\n", + "“Bernie needs to be ground to a pulp.” Leaked Email to John Podesta in February: ['FAKE']\n", + "Selma 50 years on: John Lewis's recalls the march: ['REAL']\n", + "“We Were Long Overdue A Presidential Assassination Anyway”: ['REAL']\n", + "Flip-flop: Vox warns of serious risk of Election Day violence, and not the good kind either: ['FAKE']\n", + "Third-party presidential candidates fight for 15% in polls – and a spot in debates: ['FAKE']\n", + "Bush, Rubio and Kasich eye one another in the shadow of Trump: ['FAKE']\n", + "Comey Must Explain Why He Advised Obama Not to Publicly Accuse Russia of Hacking Democrats: ['FAKE']\n", + "Putin Congratulates Trump, Says Russia Is Ready To Restore Relations With The US: ['FAKE']\n", + "Monsieur Malbrough est Mort | New Eastern Outlook: ['REAL']\n", + "Conspiracy theories swirl around the death of Antonin Scalia: ['FAKE']\n", + "What is one more election thread, ehhh?: ['FAKE']\n", + "McCain: Trump doesn't understand Syria: ['FAKE']\n", + "Trump manager says 'undercover voters' will deliver win in US election: ['FAKE']\n", + "Re: WikiLeaks: ‘How is what Bill Clinton did different from what Bill Cosby did?’ #PodestaEmails20: ['FAKE']\n", + "REPORT: Megyn Trashes Trump, Newt… Then Murdoch Announces Replacements Are Available: ['FAKE']\n", + "Suspect captured in ‘ambush-style’ killings of two Iowa cops: ['REAL']\n", + "Re: 10 Things That Every American Should Know About Donald Trump’s Plan To Save The U.S. Economy: ['FAKE']\n", + "The next president can have a big impact on climate policy — even without Congress: ['REAL']\n", + "Look at the SHOCKING Number of Kids Born To Illegals in 2014: ['FAKE']\n", + "Mother And Daughter Remind MSNBC Reporter That Trump Has Black Supporters: ['REAL']\n", + "Justice Department Staffers Monitor Polls on Election Day: ['REAL']\n", + "Elizabeth Warren Just Blasted The FBI Director For Going After Hillary Instead Of Wall Street Crooks: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Poll: 71 percent of Dems think Clinton should keep running even if indicted: ['REAL']\n", + "Trumped!: ['REAL']\n", + "Is the Iran deal unraveling? Think again. | Institution: ['REAL']\n", + "Saturn’s Baffling Hexagon — The Raging Storm Four Times the Size of Earth has Changed Its Colors: ['FAKE']\n", + "Cyrus Mistry renames himself Rohit Sharma-Mistry, gets job back: ['REAL']\n", + "The FBI intervenes in the 2016 election: ['FAKE']\n", + "Re: If Donald Trump Wins, He Will Be 70 Years, 7 Months And 7 Days Old On His First Full Day In Office: ['REAL']\n", + "Shutdown clash to return in force by December: ['REAL']\n", + "Classless Obama Refuses Photo-Op of White House Welcome with Trump: ['FAKE']\n", + "Comment on Maryland Trump Supporter: They Switched My Vote to Hillary by misterdawg: ['REAL']\n", + "Stuff in the News That No One Is Talking About Because of the Election: ['FAKE']\n", + "Blizzard of charges and countercharges melts away as opinions of Trump and Clinton are frozen: ['FAKE']\n", + "Social Media Is Censoring FBI’s Re-Opened Clinton Email Investigation: ['FAKE']\n", + "Obama Inches Closer to Veto-Proof Support for Iran Nuclear Deal: ['FAKE']\n", + "How Clinton plans to stop Sanders' momentum: ['REAL']\n", + "Martin O’Malley Praises Senate Democrats for Holding Up Trade Deal: ['REAL']\n", + "Shi’ite Militias Join Iraq’s Mosul Attack: ['REAL']\n", + "‘Super PAC’ Gets Early Start on Pushing for a 2016 Clinton Campaign: ['FAKE']\n", + "Christianity under attack: US must do more to promote religious freedom: ['FAKE']\n", + "U.S. Taxpayers Pay AT&T Millions of Dollars a Year For the Privilege of Spying on Them: ['REAL']\n", + "VIDEO: Journalist Shot by Militarized Police at Standing Rock While Conducting an Interview: ['FAKE']\n", + "Buffett: If I Ran Fed, I Would Not Raise Rates Significantly: ['FAKE']\n", + "Are Tensions With Russia Even Real?: ['REAL']\n", + "Iran agrees to nuclear restrictions in framework deal with world powers: ['REAL']\n", + "Comment on This Is What Constipation Does To Your Body by THIS IS WHAT CONSTIPATION DOES TO YOUR BODY | TheHealthology: ['REAL']\n", + "Fifteen Quotes Proving False Flag Terrorism & the Existence of a ‘Shadow Government’: ['FAKE']\n", + "Bernie Sanders’s vast universe of donors, mapped: ['REAL']\n", + "Former Ambassador Andrew Young calls for end to water fluoridation, “Civil Rights Issue”: ['REAL']\n", + "Trump's New Ad Portraying 'Every Mother's Worst Nightmare' is Nothing Short of Chilling: ['REAL']\n", + "Undercover Video Exposes Obama’s Plan to Make American “Gun Laws” More Like Britain – TruthFeed: ['REAL']\n", + "So That Happened: Did Obama Forget That The GOP Runs Congress?: ['REAL']\n", + "Syrian War Report – November 2, 2016: ISIS and Al-Nusra Attempt to Cut Off Govt Supply Line to Aleppo: ['FAKE']\n", + "Should Christians Celebrate Halloween?: ['REAL']\n", + "Sunday in Charleston: Worship at Emanuel AME: ['REAL']\n", + "Only Making Matters Worse in Syria: ['FAKE']\n", + "FACT CHECK: Hillary Clinton's Speech To The Democratic Convention, Annotated: ['REAL']\n", + "BUSTED: Clinton Foundation Directly Tied To Plot To Steal Election: ['FAKE']\n", + "Connecticut Becomes First State To Boycott Indiana Over LGBT Discrimination Law: ['FAKE']\n", + "Scott Walker Confronts Doubts About His Grasp of Foreign Policy: ['REAL']\n", + "Iran carries out new ballistic missile test: ['FAKE']\n", + "Assange: Donald Trump Won’t Be Allowed to Win – Clinton & ISIS Funded by Same Interests: ['FAKE']\n", + "Why Joe Biden can't get no respect: ['REAL']\n", + "Come on, Paul Ryan must be running in 2016, right? Right?: ['FAKE']\n", + "Why Bernie Sanders needs to start winning big states — big: ['REAL']\n", + "Leaked: What’s in Obama’s trade deal: ['REAL']\n", + "Michael Moore admits no women ever melted the ice caps, bombs American history: ['FAKE']\n", + "Someone Isn't Telling The Truth About Freddie Gray's Death: ['REAL']\n", + "Prison employee pleaded not guilty to aiding escape of two murderers: ['FAKE']\n", + "Culchie Tries To Explain Rules Of 25 One More Time: ['REAL']\n", + "Election Day: No Legal Pot In Ohio; Democrats Lose In The South: ['FAKE']\n", + "President Trump: A colossal failure for democracy and our terrifying new reality: ['FAKE']\n", + "Who had to go :-): ['REAL']\n", + "Raqqa/Mosul: Politicians Fiddle As Middle East Burns: ['REAL']\n", + "Chris Christie losing home-state donors as Jeb Bush makes inroads: ['REAL']\n", + "Washington Home Depot store receives order for five-thousand gallons of gold exterior paint: ['REAL']\n", + "Western Lynch Mob on Russia Ties Itself up in Absurd Anots : Information: ['FAKE']\n", + "Can Sanders rally supporters around Clinton after DNC email leak?: ['REAL']\n", + "'Historic' climate deal in sight as nations parse final text: ['REAL']\n", + "We Live In A Time Where Each Individual Has Immense Power: ['REAL']\n", + "Trump slams 'corrupt' media, as more women make sexual assault claims: ['REAL']\n", + "Only Demented Imbeciles Want A Killary Reign Of Terror: ['FAKE']\n", + "This anti-Trump advert on the side of a bus is really visually clever and you have to see it in motion: ['REAL']\n", + "Americans Are So Disconnected From Reality That “Insouciant” Has Become An Euphemism: ['REAL']\n", + "The 5 unspoken rules for covering Hillary Clinton: ['REAL']\n", + "Hillary Melts Down Over Weiner In Public, PICS Prove Campaign Is Imploding: ['REAL']\n", + "Clinton Vs. Trump: Latest Electoral Prediction [Greg Laden's Blog] | Science and Technology: ['FAKE']\n", + "Jubilee Year of Mercy ends on November 20. Following Judgment?: ['REAL']\n", + "Iraq launches operation against ISIS in Anbar province: ['REAL']\n", + "UKIP MEPs Steven Woolfe & Mike Hookem reported to French police over Strasbourg scuffle: ['FAKE']\n", + "Justices Kennedy and Scalia and their divide on gay rights: ['REAL']\n", + "Justice Clarence Thomas Describes Washington DC As “Broken”: ['REAL']\n", + "The Week In Pictures – Week Of October 31, 2016 - The Onion - America's Finest News Source: ['FAKE']\n", + "Jeb Bush's Foreign Policy Plan: More Military Spending Will 'Encourage Peace': ['REAL']\n", + "John Kasich: He’s Conservative, but at Least He’s Sane: ['FAKE']\n", + "2006 Audio Emerges of Hillary Clinton Proposing Rigging Palestine Election: ['FAKE']\n", + "Authorities search for clues after raid thwarts potential 'Belgian Charlie Hebdo' attack: ['FAKE']\n", + "8 classic football banners of our time: ['REAL']\n", + "Tweetwave: ['REAL']\n", + "Trump’s Gettysburg Address against the New World Order: ['FAKE']\n", + "Debate Goals for the Democratic Candidates: ['REAL']\n", + "'Spinning up as we speak': Email shows Pentagon was ready to roll as Benghazi attack occurred: ['FAKE']\n", + "A Case Study On Why The Obamacare Lawsuit Is Based On Mythical History: ['REAL']\n", + "Trump Proudly Declares: Most Of The People I’ve Insulted Deserved It: ['REAL']\n", + "Dems sue GOP over Trump's 'rigged' complaints: ['FAKE']\n", + "US Airstrikes on Iraqi Army Slowing Advance on Mosul: ['REAL']\n", + "Iran letter blowback startles GOP: ['FAKE']\n", + "Clinton Camp Desperate, Russia Trains for WWIII: ['FAKE']\n", + "Donald Trump's GOP civil war: ['FAKE']\n", + "Comment on Tainted Measles Vaccine Kills More Than 50 Children In Syria by Tragic Deaths Used To Promote Vaccine Fear – On The Fence About Vaccines: ['FAKE']\n", + "Laura Bush hints she'd rather see Hillary as president: ['REAL']\n", + "Scott Walker, Rick Perry show limits of super PACs: ['REAL']\n", + "If Catcalls Were Politically Correct…: ['REAL']\n", + "Why Hillary Won't Unleash WWIII : Information: ['REAL']\n", + "Is It Time To Reconsider Lifetime Appointments To The Supreme Court?: ['REAL']\n", + "Clinton has delegates to win Dem nomination, AP reports; Sanders questions tally: ['REAL']\n", + "Hillary IMPLODES: Trump 'Took Everything...Paid Nothing To Support Us!': ['FAKE']\n", + "Trump says Obama born in US, ‘period’ – after new ‘birther’ dust-up: ['FAKE']\n", + "MH370: If debris is part of missing plane, what's next?: ['REAL']\n", + "GOOGLE PLANNED MASSIVE AI INTEGRATED SOCIAL NETWORK SPY TOOL FOR HILLARY CAMPAIGN IN 2014: ['FAKE']\n", + "Israel stole classified US information and used it to help congressional Republicans: ['FAKE']\n", + "\"America has a simple ideology\": how one of Russia's top US experts explains America: ['FAKE']\n", + "Poll shows Trump made up 13 points in under 2 weeks — now he likes polls again: ['FAKE']\n", + "Chaos on House floor as Dems, Republicans clash over LGBT proposal: ['FAKE']\n", + "New Study Links Fluoride Consumption To Hypothyroidism, Weight Gain, And Worse: ['FAKE']\n", + "Clinton, Sanders accuse Trump of inciting violence: ['REAL']\n", + "Memo to the Next Administration: Defense Spending Must Be For Actual Defense: ['REAL']\n", + "In New Responses, Hillary Clinton Insists Email Setup A Matter Of 'Convenience': ['REAL']\n", + "Trump mulls alternative options for making Mexico finance 'the wall': ['FAKE']\n", + "The circus of liars - America's three rings of evil clowns: ['REAL']\n", + "Donald Trump said ‘university’ was all about education. Actually, its goal was: ‘Sell, sell, sell!’: ['REAL']\n", + "Trump Has Forever Changed American Politics: ['FAKE']\n", + "Kerry Adviser Marie Harf in Twitter Fight Over Iran Nukes: ['FAKE']\n", + "The role of the US and Nato in EU relations with China, by Manlio Dinucci: ['REAL']\n", + "The Daily 202: Many African Americans unenthusiastically ‘settle’ for Hillary Clinton: ['REAL']\n", + "100,000 people have come to recent Bernie Sanders rallies. How does he do it?: ['REAL']\n", + "Trump The President: What Does That Mean For The World? - CounterCurrents.org: ['FAKE']\n", + "'You've been fleeced': Congress grills Kerry, Obama officials on Iran nuke deal: ['REAL']\n", + "What 20,000 pages of hacked WikiLeaks emails teach us about Hillary Clinton: ['FAKE']\n", + "Comment on Breaking: CDC Blocks Testimony of Their Senior Scientist Who Blew The Whistle on Severe Medical Malpractice by CDC Accused of Blocking Testimony from Senior Scientist — New York Malpractice & Injury Lawyer Blog: ['FAKE']\n", + "FOX News Just Admitted It Made Up Story About Hillary Being “Indicted” For Foundation: ['REAL']\n", + "Repudiating the Media: ['REAL']\n", + "Buchanan Smashes CNN Shill: ['FAKE']\n", + "The Impossible Is Happening: Cubs Win World Series and Yes… Hillary Clinton is Now Likely to be Indicted: ['REAL']\n", + "America After Election 2016: the Gullible and the Shattered - David Kerans: ['FAKE']\n", + "Anderson Cooper Absolutely OWNS Kellyanne Conway After FBI Clears Hillary…Again (VIDEO): ['REAL']\n", + "‘Schlonged!’ NYT: FBI reopened Hillary probe thanks to … ANTHONY WEINER?: ['REAL']\n", + "What do Americans really think of election coverage?: ['REAL']\n", + "Exclusive: Siege of Islamabad: ['FAKE']\n", + "The Fix Is In: NBC Affiliate Accidentally Posts Election Results A Week Early: Hillary Wins Presidency 42% to Trump’s 40%: ['REAL']\n", + "Lynch schools the wingnuts: How the right tried — and failed — to wound Obama’s AG nominee: ['FAKE']\n", + "Yes, Ted Cruz could win: ['FAKE']\n", + "‘Can’t build a wall, hands too small!’ – NYC anti-Trump protest (Streamed live): ['REAL']\n", + "Trump advisors try to pivot not fishtail: ['FAKE']\n", + "Christians drop, 'nones' soar in new religion portrait: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Comment on Brother of Clinton’s Campaign Chair is an Active Foreign Agent on the Saudi Arabian Payroll by marlene: ['REAL']\n", + "Inside the Deliberations of a Hillary Clinton Campaign Launch: ['REAL']\n", + "American Express disowns Pink Floyd singer Roger Waters because of pro-Palestinian views: ['REAL']\n", + "Clinton condemns Trump over Chicago violence: ['FAKE']\n", + "In France, a growing debate over why some speech is protected and some isn’t: ['FAKE']\n", + "President-Elect Donald Trump's First Televised Interview Since He Won the Election : Information: ['REAL']\n", + "North Carolina Hillary Supporter Brags on Facebook About Voting Multiple Times: ['REAL']\n", + "Russia reacts to UN aid chief's Aleppo 'kill zone' remarks: ['REAL']\n", + "Representative Government or Thugocracy?: ['FAKE']\n", + "Gay rights and religious liberty: Can Americans have both?: ['REAL']\n", + "As Rand Paul stalls, Ted Cruz seeks to pick up support among libertarians: ['REAL']\n", + "“A dream come true for Hillary Clinton”: Wall Street Journal editorial board rips Ted Cruz: ['REAL']\n", + "Obama Presses Putin to Strike Ukraine Peace Deal: ['FAKE']\n", + "Trumka: Disappointment with Obama, a warning for Hillary: ['REAL']\n", + "Pro-Palestinian Propaganda Lowering Standards of Truth in America: ['REAL']\n", + "Wingnuts have a death-grip on Congress: Why Paul Ryan can’t control the House GOP: ['FAKE']\n", + "Lifting weights could ward off dementia and make you smarter: ['REAL']\n", + "People excited about Christmas adverts told about rest of human culture: ['REAL']\n", + "State Department warns of possible terror attack in South Africa: ['FAKE']\n", + "Who Lost Iraq?: ['REAL']\n", + "Pope Francis implores Congress to accept immigrants as their own: ['FAKE']\n", + "Poll: Trump gains in Iowa, still dominates in New Hampshire: ['FAKE']\n", + "Rand Paul Goes on Senate Floor to Protest NSA Spying Measure: ['REAL']\n", + "China Airport Security Robot Gives Electroshocks: ['REAL']\n", + "Obama Details His Disappointment With Netanyahu In First Post-Election Comments: ['REAL']\n", + "Re: WikiLeaks: Neera Tanden has ANOTHER ringing endorsement for Hillary! (No, not really): ['REAL']\n", + "Reality Check: First Clinton v Trump presidential debate: ['FAKE']\n", + "Doomsday Election: ['REAL']\n", + "John Kasich’s Advice for Women to Prevent Sexual Assault: Avoid Parties “Where There’s a Lot of Alcohol”: ['REAL']\n", + "The system set Boehner up for failure: ['REAL']\n", + "Gay marriage victory at Supreme Court triggering backlash: ['FAKE']\n", + "Who rode it best? Jesse Jackson mounts up to fight pipeline; Leonardo DiCaprio to the rescue?: ['FAKE']\n", + "McCarthy drops out of speaker race as House asks: Who wants this job? (+video): ['REAL']\n", + "Democrats, Republicans in tight races as Iowans prepare to caucus: ['FAKE']\n", + "Iran: Why the best outcome now is to keep negotiating without reaching a deal: ['REAL']\n", + "NAZI Flying Saucers & A Permanent Base in Antarctica: ['REAL']\n", + "BREAKING: Man Brags on Facebook of Voting 3 Times… Then Reveals How He Did It: ['FAKE']\n", + "Furious parents slam ‘damaging’ BBC sex change show aimed at six-year-olds: ['FAKE']\n", + "Trump Family Say Trump Brand Has NOT Been Damaged: ['FAKE']\n", + "Rand Paul is flatlining: ['REAL']\n", + "Nurse Chris Christie Quarantined For Ebola Goes After Governor On Vaccines: ['FAKE']\n", + "Can Paul Ryan and Donald Trump coexist within the Republican Party?: ['REAL']\n", + "Cruz copying me on border wall, Trump says: ['REAL']\n", + "John Oliver: America’s Increasingly Segregated Schools Are ‘Very Rarely Equal in Any Way’ (Video): ['REAL']\n", + "The Rise of Mandatory Vaccinations Means the End of Medical Freedom: ['REAL']\n", + "Scientists Fascinated By Lake Under The Sea: Those Who Enter Never Come Out [Watch]: ['REAL']\n", + "Jeb Bush loses TV ad edge to Marco Rubio: ['REAL']\n", + "Russia, India Discuss FGFA Advanced Fighter, Su-30MKI Upgrade: ['REAL']\n", + "Our real police/race problem: Diverse forces, white resentment, and America’s persistent divides: ['REAL']\n", + "The Supreme Court cannot hide on Obamacare: ['FAKE']\n", + "BREAKING : TED CRUZ CALLS FOR SPECIAL PROSECUTOR TO INVESTIGATE HILLARY – TruthFeed: ['FAKE']\n", + "Poll: Hillary Clinton, Bernie Sanders both top Trump: ['FAKE']\n", + "Donald Trump revokes Washington Post press access (+video): ['REAL']\n", + "The Real Reason Obamacare is Coming Unglued: ['REAL']\n", + "How Jeb Bush can avoid being the Jon Huntsman of 2016: ['REAL']\n", + "Revived Clinton Email Scandal Killed By A Slew Of New Facts In Record Time: ['FAKE']\n", + "Iraq’s Skies Darken as Islamic State Torches Oil: ['REAL']\n", + "New Yorkers fight to overturn ballot selfie ban: ['REAL']\n", + "Poll finds Ben Carson knocks Donald Trump from top spot nationally: ['FAKE']\n", + "“I’m glad that he won”: The surprising Palestinian reaction to Netanyahu’s win: ['REAL']\n", + "George W. Bush’s Ethics Lawyer Files Complaint Against FBI Director James Comey: ['FAKE']\n", + "Netflix Ceo: TV’s Future includes Hallucination Pills: ['REAL']\n", + "Ernst to Trump: Stop with the name-calling: ['REAL']\n", + "Comment on Elections 2012-16 by BeamMeUpScotty: ['REAL']\n", + "After Debate Duke Says USA becoming Banana Republic: ['REAL']\n", + "NOW FIVE FBI FIELD OFFICES ARE PROBING CLINTON CHARITY, ADDING FUEL TO THE FIRE: ['REAL']\n", + "White House: GOP Has Failed to Put ‘Points on the Board’: ['FAKE']\n", + "The Daily 202: The presidency is Hillary Clinton’s to lose. Here are 12 ways she could lose it.: ['REAL']\n", + "Do Democrats Want What Bernie Wants, Or Just What Bernie Has?: ['REAL']\n", + "Podesta wiki leaks...We prefer Muslims over Christians....: ['REAL']\n", + "Critics Pounce on Madeleine Albright’s Exhortation to Women to Back Clinton: ['FAKE']\n", + "Clinton doubles down on disputed claim FBI found her email remarks 'truthful': ['REAL']\n", + "How the Clintons’ Haiti development plans succeed — and disappoint: ['REAL']\n", + "Of Course Facebook Is Biased. Its Real Problem Is That It Won’t Admit It.: ['FAKE']\n", + "Tax Calculator: The federal debt: ['REAL']\n", + "Trump and advisers remain split on how far to move toward the middle: ['REAL']\n", + "Clinton in the final stretch: winning over anti-Trump contingent may be best play: ['FAKE']\n", + "Australian taxpayers charged over $88 million for donation to corrupt Clinton Foundation: ['FAKE']\n", + "Vatican Ends Scrutiny Of U.S. Nuns: ['REAL']\n", + "How Clinton’s email scandal took root: ['REAL']\n", + "Jews ‘blamed for Holocaust’ at House of Lords event: ['REAL']\n", + "The Disappearing Middle: Electorate Way Less Moderate Than Past Primaries: ['REAL']\n", + "Hannity: WikiLeaks Has Proven That \"Everything The Conspiracy Theorists Said\" Was True: ['REAL']\n", + "Russia successfully tests its first-ever hypersonic weapon: ['REAL']\n", + "The Hulk Actor Mark Ruffalo Has Joined Standing Rock to Protest DAPL: ['REAL']\n", + "AP FACT CHECK: The Republican debaters and the facts: ['REAL']\n", + "Why the drop in income inequality?: ['REAL']\n", + "Walmart Goes Against The Grain Of Obama’s America With New Thanksgiving Ad: ['REAL']\n", + "Senate Makes History By Confirming Loretta Lynch As U.S. Attorney General: ['REAL']\n", + "Manhunt for escaped killers expands to Vermont: ['FAKE']\n", + "The Path To Total Dictatorship: America’s “Shadow Government” And Its Silent Coup: ['REAL']\n", + "To the Youth a Day After the Election: Another World Is Possible: ['REAL']\n", + "Physical Gold Demand and Fear: ['REAL']\n", + "Protester charged with shooting officers in Ferguson: ['FAKE']\n", + "Comment on U.S. war with Iran has already begun by جنگ ارزی آمریکا علیه ایران / مورد مطالعاتی سال 1390 - کدآمایی: ['FAKE']\n", + "It’s not the ‘locker-room’ talk. It’s the ‘lock her up’ talk.: ['REAL']\n", + "GOP braces for Trump loss, roiled by refusal to accept election results: ['FAKE']\n", + "If You Have One Of These Old VHS Tapes It May Be Worth Over $1000: ['REAL']\n", + "Obama: Trump is ‘unfit to serve as president’: ['FAKE']\n", + "Pope Francis met Kim Davis: why it matters in fight over religious freedom (+video): ['FAKE']\n", + "Study: Phytochemical Found In Broccoli And Cauliflower Attacks Prostate Cancer Cells: ['REAL']\n", + "David Duke wins Louisiana Senate Debate in Landslide despite BLM Riots: ['REAL']\n", + "Paris Tragedy Could Shake Up 2016 Race: ['REAL']\n", + "Hillary Clinton Is Now Radioactive – SoT #122: ['REAL']\n", + "2016's first GOP debate: Six things to look for in Charleston: ['FAKE']\n", + "Black Hawk crashes off Florida; human remains found: ['REAL']\n", + "VIDEO: Creepy Clown Gets Pistol-Whipped!: ['REAL']\n", + "THE VISION THING ‘16 : Information: ['REAL']\n", + "Drudge, Koch, Soros, Bezos: These 4 non-politicians will determine the next president: ['REAL']\n", + "The Other Way of Knowing: ['REAL']\n", + "Obama and Putin outline competing visions on Syria: ['REAL']\n", + "Comment on Police Officer’s Wife Caught Faking a Robbery In a Scheme To Frame Black Lives Matter by The Cat's Vagina (Nasty Woman): ['REAL']\n", + "Is the GOP losing Walmart?: ['FAKE']\n", + "Supreme Court Decides to Weigh in On Transgender Rights: ['REAL']\n", + "If Hillary Clinton Is Charged With Obstruction Of Justice She Could Go To Prison For 20 Years: ['FAKE']\n", + "'Top secret' emails on Clinton server discussed drone program, may reference classified info: ['REAL']\n", + "Miracles Man: Metaxas Vs. Closed Minds And A Closed Universe: ['REAL']\n", + "Obamacare Premiums Spike an Average of 25%!: ['REAL']\n", + "Collective Consciousness – The Individual is Gone: ['REAL']\n", + "Obama on gun control: His emotional evolution: ['REAL']\n", + "What Scientists Found Inside This 800-Year-Old Pot... Is Changing History!: ['REAL']\n", + "The Clock Is Ticking And Republicans Still Have No Serious Obamacare Alternative: ['FAKE']\n", + "Trump treads on tradition in New Hampshire: ['FAKE']\n", + "GOP presidential candidates hammer on 'top secret' Clinton emails in final days before Iowa Caucus: ['FAKE']\n", + "Cleveland, Justice Department Reach Policing Deal: ['REAL']\n", + "Physicists Say Consciousness Should Be Considered A State of Matter: The “Non Physical” Is Real: ['FAKE']\n", + "A GOP Weekend, Courtesy Of The Koch Network And Citizens United: ['FAKE']\n", + "Juan Williams: My bets on Trump, Clinton vice presidential picks: ['FAKE']\n", + "How Trump And Clinton Are Framing Their Closing Arguments: ['FAKE']\n", + "Scott Walker and questioning Obama’s faith: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "What Is Hillary’s Greatest Accomplishment?: ['REAL']\n", + "Iranians Spend $2.1b on Beauty Products Annually, 3 Times more than Their European Counterparts: ['REAL']\n", + "Sanders, Trump easily win West Virginia primary; Trump picks up Nebraska too: ['FAKE']\n", + "Clinton, Sanders to Face Off in 1st Democrat Debate: ['FAKE']\n", + "#InNorthDakota ~~ PALESTINIANS STAND WITH THE SIOUX: ['FAKE']\n", + "Human remains suggest explosion brought down EgyptAir plane, forensics official says: ['REAL']\n", + "US officials scanning terror databases in search for Paris attack suspects: ['REAL']\n", + "ISIS Declares It Will kill Palestinians “One By One”’, Yet Remains Quiet On Israel: ['REAL']\n", + "Hillary, The Political Scientist: ['REAL']\n", + "BOOM! This Is How President Reagan Handled Protesters: \"Negotiate? What is there to negotiate?\" [Video] » 100percentfedUp.com: ['REAL']\n", + "Clinton Picks Up The First Major Labor Endorsement Of 2016: ['FAKE']\n", + "Links 11/12/16: ['REAL']\n", + "Obama: Syria war unlikely to end during his presidency: ['FAKE']\n", + "'Blue and Brave': Illinois town rallies around police as search for officer's killer goes on: ['REAL']\n", + "Senate Advances Bill To Approve Keystone Pipeline Despite Obama's Veto Threat: ['REAL']\n", + "Comment on Indoor Gardening Made Easy: The Nutritower! by Indoor Gardening Made Easy: The Nutritower! – Collective EvolutionGardening Business News UK | Gardening Business News UK: ['REAL']\n", + "US abstains from UN vote calling for end to Cuban embargo: ['FAKE']\n", + "Young Turks Finds Out Why Trump Is About To Lose Utah For Republicans For First Time In Decades (VIDEO): ['FAKE']\n", + "Comment on Mayor de Blasio claims hot dog carts are causing global warming by Dr. Eowyn: ['REAL']\n", + "Momentum to bar Syrian refugees slows: ['FAKE']\n", + "New evidence that the legal immigration system discriminates against Latin Americans: ['REAL']\n", + "America Might Not Deserve Trump, But Dems and Hillary Deserved To Lose: ['FAKE']\n", + "Media turn blind eye to Hillary Clinton’s glaring mistakes: ['REAL']\n", + "State Department admits to deliberately cutting briefing footage on Iran deal: ['REAL']\n", + "U.S. Economy Added 271,000 Jobs In October, Beating Expectations: ['REAL']\n", + "Hillary Clinton narrowly wins Kentucky, a state Bernie Sanders needed by huge margins: ['REAL']\n", + "No, it's not 'World War 3': ['REAL']\n", + "49 killed in shooting at Florida nightclub in possible act of Islamic terror: ['FAKE']\n", + "Just Another Day In the Life of the Clinton Crime Family: ['REAL']\n", + "Muslims regularly use “Inshallah” (“God Willing” in Arabic) and nobody calls it ‘Christophobic’ hate speech…so why is “Deus Vult” (“God Willing” in Latin) graffiti being called ‘Islamophobic’ Crusader hate speech?: ['REAL']\n", + "Extreme rhetoric helping Cruz, Trump, Duke leaders say: ['FAKE']\n", + "Hillary Clinton, FBI and the Real November Surprise : Information: ['REAL']\n", + "The Benghazi bust: Trey Gowdy and his GOP colleagues embarrassed themselves: ['FAKE']\n", + "Obama seeks global climate pact in Paris, amid resistance at home: ['REAL']\n", + "2 deaths possibly linked to 'superbug' at UCLA hospital after 7 infected, 179 exposed: ['REAL']\n", + "Breaking: Ivanka Trump Makes Tragic Announcement Both Donald Trump and Supporters Are Shocked (Video) | Prophecy: ['FAKE']\n", + "GOP Senator Silences the Entire Room With Remark About War Hero Opponent's Heritage at Debate: ['FAKE']\n", + "2:00PM Election Day Water Cooler 11/8/2016: ['REAL']\n", + "News: A Somber Moment: Cubs Fans All Over The World Are Still Too Sad About Princess Diana To Celebrate The Cubs’ World Series: ['REAL']\n", + "Clinton media campaign follows BuzzFeed model: ['REAL']\n", + "Your Facebook Page Could Land You In a FEMA Camp: ['REAL']\n", + "Watching These 55 ISIS Terrorists Get Blown to Smithereens is Sure to Brighten Your Day: ['REAL']\n", + "Exclusive: More than 100 lawsuits, disputes over taxes tied to Trump and his companies: ['REAL']\n", + "Your dog probably has better healthcare than you do: ['REAL']\n", + "Get Ready For Civil Unrest: Survey Finds That Most Americans Are Concerned About Election Violence: ['REAL']\n", + "Historic firsts fill evening at Democratic National Convention: ['REAL']\n", + "Retired Bishop Explains Why The Catholic Church Invented Hell [Watch]: ['REAL']\n", + "Cruz camp responds to Rubio Photoshop flap, brushes off criticism: ['REAL']\n", + "Will a No-Fly Zone Help the People of Aleppo?: ['REAL']\n", + "Experts Recommend Breaking Down Crushing Defeats Into Smaller, More Manageable Failures - The Onion - America's Finest News Source: ['FAKE']\n", + "Comment on Score one for the Second Amendment: Pizza Hut worker shoots, kills attempted robber by lynnmccrann: ['REAL']\n", + "War on Drugs Heading in Wrong Direction?: ['FAKE']\n", + "It Begins: Crowds Mass In Major Cities: DC, LA, NYC, Philly, Portland, More… | Will It Escalate? | “95% Chance Of Widespread Violence”: ['REAL']\n", + "Hillary Fan SLEEPS At Rally! Snoozy Smurf Steals Show! (ABC News) Coconut Creek FLA: ['REAL']\n", + "Neighbors Smell Smoke At Muslim Home, What They See In Window Is Horrific: ['REAL']\n", + "Ben Carson Throws Support Behind Donald Trump: ['REAL']\n", + "The Middle East Crises Trump Inherits Could Still Suck Him in: ['REAL']\n", + "Clinton and Trump: How they view ISIS, Putin, and US generals: ['FAKE']\n", + "John Kirby and the US State Department Blatantly Support Terrorists - Henry Kamens: ['REAL']\n", + "Paul Ryan’s big speaker hangup is reportedly his family. For a male lawmaker, that’s unusual.: ['REAL']\n", + "McCarthy withdraws from speaker race, vote postponed: ['REAL']\n", + "Joe Giambrone on Hollywood’s Shameless & Underhanded Assault on Political Truth: ['FAKE']\n", + "The immigration swamp: ['REAL']\n", + "Blame government, not markets for monopoly: ['REAL']\n", + "'America is already strong': Obama continues Democrats' optimism: ['REAL']\n", + "Why the DNC's mysteriously hacked oppo file on Trump is a big yawn: ['REAL']\n", + "Hillary Clinton: ‘No role whatsoever for American soldiers on the ground’ in Iraq: ['REAL']\n", + "Donald Trump: The key to his success (Opinion): ['REAL']\n", + "For First Time, Trump Shrinks In Spotlight; Fiorina Steals Show: ['FAKE']\n", + "Carrot Top To Give Nobel Awards At Drive Thru Window: ['REAL']\n", + "Scott Walker's stealth 2016 strategy: ['FAKE']\n", + "Gauis Publius: TPP Has Picked Up a Powerful Enemy — Black Lives Matter: ['REAL']\n", + "Training French soldiers to supervise Daesh: ['FAKE']\n", + "Let’s Make 2016 the Last Endless American Election: ['FAKE']\n", + "November 8 Is (Finally) Here: An Abridged Election Day Resource Guide: ['REAL']\n", + "Going Back to the Future in 2016?: ['FAKE']\n", + "A bad night for front-runners and a good night for governors: ['REAL']\n", + "How public funding of elections makes politics even more polarized: ['REAL']\n", + "Gaming Obamacare: ['FAKE']\n", + "The Anatomy of Crisis and the Decline of US Empire: ['FAKE']\n", + "Uncovered audio: Hillary was ‘adamantly against illegal immigrants’: ['FAKE']\n", + "Obama says world should address ‘grievances’ that terrorists exploit: ['REAL']\n", + "7 Ways To Prepare For An Economic Crisis: ['FAKE']\n", + "Press must share the blame: The shallow, ratings-obsessed media is as responsible for Trump as the GOP: ['FAKE']\n", + "14 Days to Do 14 Things, If Hillary’s Indicted-Extreme Violence Expected: ['FAKE']\n", + "Daesh abducts 1000s near Mosul to use them as human shields: UN: ['FAKE']\n", + "Oregon Standoff Leaders Acquitted For Malheur Wildlife Refuge Takeover: ['REAL']\n", + "Muslims Start Chanting Allah On Plane, Flight Attendant Quickly Shuts Them Up: ['FAKE']\n", + "Netanyahu: Iran A Threat to Israel, the World: ['FAKE']\n", + "Unprecedented Surge In Election Fraud Incidents From Around The Country: ['FAKE']\n", + "Re: DOJ AG Loretta Lynch Advised FBI Director to Keep New Emails from Congress: ['REAL']\n", + "A report said Trump's donations to vets might be shady. His response was predictable.: ['FAKE']\n", + "How the confidence deficit is impacting the 2016 election: ['REAL']\n", + "Anonymous hacker Deric Lostutter faces 16 years in prison, while Steubenville rapists walk free: ['REAL']\n", + "McCain Pledges to Help Pentagon Fix Scandal Over Excessive Military Bonuses: ['REAL']\n", + "Romney's timely Trump trolling: ['FAKE']\n", + "Like a “Concentration Camp” Police Mark DAPL Protesters with Numbers and Lock Them in Dog Kennels: ['REAL']\n", + "You Can't Be Intersectional While at the Same Time Being Elitist and Exclusionary: ['REAL']\n", + "A sharpened debate: Is it ethical to not vote this year for president?: ['REAL']\n", + "The World Is About To Witness A Breathtaking Once In A Century Event: ['REAL']\n", + "Forbidden History. Secret Egyptology Exposed!: ['FAKE']\n", + "THE AMERICAN PUBLIC CAN NO LONGER DEAL WITH THE LIMITLESS CORRUPTION OF THEIR GOVERNMENT: ['REAL']\n", + "CAN'T TRUST OBAMA! Look At Sick Thing He Just Did To STAB Trump In The Back... * LIBERTY WRITERS NEWS: ['FAKE']\n", + "Ryan so far proves he can 'make the sausage,' but he'll likely be serving a much different House party in 2016: ['FAKE']\n", + "Attorney general nominee offers careful backing of Obama policies: ['FAKE']\n", + "The end of white Christian America is nigh: Why the country’s youth are abandoning religious conservatism: ['FAKE']\n", + "Can nuclear war break out on the Korean Peninsula?: ['FAKE']\n", + "Strong jobs number holds risks for Clinton: ['REAL']\n", + "Sanders warns Clinton against moderate as VP: ['FAKE']\n", + "Hacking Accusations Against Russia Are Sign of Washington's Desperation: ['REAL']\n", + "Architect Of Paris Attacks Was Killed In Raid, French Authorities Say: ['FAKE']\n", + "Dr. MacDonald & Dr. Duke Expose the Vicious War on Trump by the Jewish Establishment!: ['REAL']\n", + "Why conservatives refuse to believe Obama is Christian: ['REAL']\n", + "Why Donald Trump is beating Fox News -- and GOP rivals: ['FAKE']\n", + "Election 2016 and the Weaponization of the American Public: ['FAKE']\n", + "Obama seeks to calm fears over terrorism ahead of holiday season: ['REAL']\n", + "COMICAL: Larry the Cable Guy slams ‘indefensible’ hypocrisy from Donna Brazile: ['REAL']\n", + "Hillary Clinton in lead a day before Election Day: ['REAL']\n", + "Democratic debate: Fact-checking the candidates: ['REAL']\n", + "Teenage Boy KNOCKS OUT His Classmate For Assaulting Their Female Teacher In The FACE- And It’s EPIC!: ['REAL']\n", + "Carson takes lead from Trump in new national poll: ['FAKE']\n", + "Hillary isn't winning over many pundits, even on the left: ['REAL']\n", + "Meteor, space junk, rocket? Mysterious flash hits Siberia: ['REAL']\n", + "5 takeaways from the Republican debate: ['REAL']\n", + "‘Why is it the first time I’m hearing about this?’ asks office wanker: ['REAL']\n", + "BREAKING: New Law Stops Hillary In Her Tracks, She Is Now Officially Ineligible To Run: ['FAKE']\n", + "Lawmakers caught in battle between House ethics cops: ['FAKE']\n", + "New O'Keefe Video: Clinton Campaign, DNC Coordinated With Organizations To Incite Violence At Trump Events: ['FAKE']\n", + "We do not like trampolining, say hedgehogs: ['REAL']\n", + "President Putin Asks US To Stop Provoking Russia: ['REAL']\n", + "Yes, There Is a Clinton Double Standard: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Libertarian VP Candidate Gives Up, Will Focus on Preventing Trump Presidency: ['FAKE']\n", + "“I’ve Always Been An Admirer Of Donald Trump” – Taoiseach: ['FAKE']\n", + "Now waiting for the results | Opinion - Conservative: ['REAL']\n", + "BrotherJohnF Silver Update: Fake Election: ['FAKE']\n", + "When They Asked Her What She Thinks of Hillary Clinton, They Never Expected Her to Say THIS!: ['REAL']\n", + "'The only other option': Bernie Sanders backers turn to Green party's Jill Stein: ['REAL']\n", + "Trump, Clinton Head Into SC with Fierce Competition on Their Heels: ['REAL']\n", + "Which Non-OPEC Producers Can Be Expected To Cut?: ['REAL']\n", + "Trump Team Begins Making List Of Executive Orders To ‘Erase Obama’s Presidency’ On Day One: ['FAKE']\n", + "Why Trump is a shocking GOP choice: ['FAKE']\n", + "What The Trump Skeptics Got Wrong: ['REAL']\n", + "Donald Trump: ‘We have to take back the heart of our country’: ['FAKE']\n", + "Jeb Bush fights lonely battle defending Common Core: ['FAKE']\n", + "Donald Trump can’t resist blaming Bill Clinton when his own sexism comes up: ['REAL']\n", + "Hillary Clinton Jumps the Shark with ‘Trump’s Secret Russian Server’ Conspiracy Theory: ['FAKE']\n", + "Will Clinton’s experience be a liability?: ['FAKE']\n", + "Obama outlines plan to keep 5,500 troops in Afghanistan: ['REAL']\n", + "Biden backers to naysayers: Not so fast: ['FAKE']\n", + "Clinton Enjoys Post-DNC Bounce - But Will it Last?: ['REAL']\n", + "Alabama Prison Officials Retaliate Against Prison Strike Leader By Cutting Water To Cell: ['FAKE']\n", + "Re: Texas Police Arrest Trump Voter for Wearing “Deplorable” T-Shirt: ['REAL']\n", + "NGOs should condemn terrorists in Syria, not Russia fighting them – Foreign Ministry: ['FAKE']\n", + "Genetically Modified Crops in U.S. Fail to Deliver Expected Yields: ['REAL']\n", + "The Fatal Expense Of American Imperialism: ['REAL']\n", + "Comment on A Group Of Reluctant Men Hold Kittens For The First Time. Hilarity Ensures by para para dinle: ['REAL']\n", + "House yanks first spending bill off the floor: ['REAL']\n", + "Donald Trump Pushes Republican Party to Its Breaking Point: ['FAKE']\n", + "Trump, Clinton clash in dueling DC speeches: ['FAKE']\n", + "Hillary Clinton BETRAYED by Her Own Family: “We’re Voting for Trump!”: ['FAKE']\n", + "'NO CAMP! NO CAMP!': Scuffles break out at Hungary train station after police stop migrant train: ['REAL']\n", + "Green Party’s Margaret Flowers Challenges US Senate Debate in Maryland as Undemocratic [1]: ['REAL']\n", + "How a $15 minimum wage went from ‘extreme’ to enacted: ['REAL']\n", + "Will Asia trade deal hurt US workers? Six tough questions answered.: ['FAKE']\n", + "#BoycottComedian…ROBERT DENIRO Wanted “To Punch Trump In The Face”…Supports Anti-Trump Rioters…Now Wants Americans To Support His New Movie [VIDEO]: ['FAKE']\n", + "Doctor Finds New Life As A Clown More Fulfilling | GomerBlog: ['REAL']\n", + "City, County Leaders Ask Court To Lift Injunction On Obama Immigration Programs: ['REAL']\n", + "BREAKING : Bay of Pigs Veterans Association Endorses Donald Trump – TruthFeed: ['FAKE']\n", + "Rigged Election: Hillary & Trump Caught Partying with Kissinger at Jesuit Gala: ['FAKE']\n", + "Democrats Clinton and Sanders pounce on Flint water crisis — and each other: ['FAKE']\n", + "Israel: 1984 Everlasting: ['REAL']\n", + "No, Sanders wouldn't be a better match for Trump: ['REAL']\n", + "Georgia Abandons Ukraine's Anti-Russian Obsession - Archil Sikharulidze: ['FAKE']\n", + "Trump Vows To \"Renovate\" the Bill of Rights: ['FAKE']\n", + "‘People in Europe are full of fear’ over refugee influx: ['FAKE']\n", + "CNN Breaking News: Trump Tells Supporters To Vote Multiple Times: ['FAKE']\n", + "The GOP would unite against Trump at its own peril: ['FAKE']\n", + "Hillary’s “Big Tent” is Obama’s “Grand Bargain” on Steroids: ['REAL']\n", + "Kasich bows out. Did he do 'the right thing?': ['REAL']\n", + "October 28: Daily Contrarian Reads: ['REAL']\n", + "How Western Media Teleported a Child 'Victim' from Homs to Aleppo (PHOTOS, VIDEO): ['FAKE']\n", + "The Sad Truth About Melania Trump’s Plagiarism Snafu: ['REAL']\n", + "Will the Comey bombshell really shake up the 2016 race?: ['FAKE']\n", + "Rating Obama, 50% say he's been a success: ['REAL']\n", + "James Comey to be taken out, knows too much about Clintons: ['FAKE']\n", + "‘A noun, a verb and Donald Trump’: Rubio seeks to seize on Murphy’s flaw: ['FAKE']\n", + "The True Scandal of 2016 Was The Torture of Chelsea Manning :: ['FAKE']\n", + "OPEC sees oil prices exploding to $200 a barrel: ['REAL']\n", + "“CLINTON, INC”: WATCH HOW’S IT PAINS MSM TO REPORT CLINTON CORRUPTION: ['FAKE']\n", + "United States v. Texas, the biggest immigration case in a century, explained: ['REAL']\n", + "I dare you to restrain yourself from laughing at Trump and Hillary in a stronger hot show: ['REAL']\n", + "UFO Investigator - MAX SPIERS - Found Dead After Vomiting Black Liquid.: ['REAL']\n", + "Jewish Press Releases Audio Tape Exposing Hillary Clinton Plotting to Rig Election: ['FAKE']\n", + "Clinton Campaign STUNNED As FBI Reportedly Reopens Probe Into Hillary Clinton Emails: ['FAKE']\n", + "The Middle East’s sick state: ['REAL']\n", + "Physicists just found more hints of an elusive particle that’s its own antiparticle: ['REAL']\n", + "SHOCK: NSA Can Recover ALL of Hillary’s Deleted Emails: ['REAL']\n", + "White House Monitoring Iran Aid Ship to Yemen: ['FAKE']\n", + "Why Trump is still likely to fall 52 delegates short of nomination: ['REAL']\n", + "Trump, Sanders trade blame over Chicago protests: ['REAL']\n", + "Electronic Voting Machines Caught Switching Trump Votes To Hillary: “Trying to Steal Texas” | Survival: ['FAKE']\n", + "Gas prices could drop toward $1 a gallon: ['REAL']\n", + "The Saber Rattling Between Saudis, Iran Just Got More Ominous: ['FAKE']\n", + "India's Stonehenge: 7,000-Year-Old Megalithic Site is Oldest Observatory in South Asia: ['REAL']\n", + "Top US General Pleads With Troops Not To Revolt Over 2016: ['FAKE']\n", + "Why Director Comey jumped at the chance to reopen Hillary investigation: ['REAL']\n", + "Poll: Obama popularity on the upswing: ['FAKE']\n", + "BLOOMBERG-BACKED PENNSYLVANIA ATTORNEY GENERAL SENTENCED TO 10-23 MONTHS IN PRISON: ['REAL']\n", + "Is A Birthday Surprise Coming For Hillary Criminalton? Kim Dotcoms Mysterious Tweet.: ['REAL']\n", + "Rachel Maddow made them fight: She’s the reason for the tense Hillary/Bernie fireworks: ['REAL']\n", + "Past cases suggest Hillary won’t be indicted: ['REAL']\n", + "U.S. Split Along Racial Lines on Backlash Against Police, Poll Finds: ['FAKE']\n", + "The media unload on Donald Trump: ['FAKE']\n", + "How To Reduce Stress: ['FAKE']\n", + "Popular Health Exchange In Jeopardy After Surprise Republican Win: ['REAL']\n", + "The First Space Photo Of Earth - Shot From A Third Reich Rocket In 1946: ['REAL']\n", + "Hillary’s No Slam Dunk in 2016: ['REAL']\n", + "Russia, India will expand military cooperation with focus on Navy projects | Russia & India Report: ['REAL']\n", + "Make music great again, with these 10 Trumped up album covers: ['REAL']\n", + "CNN Talker Famous for Saying 'Pu***' on Air Lashes Out at Newt for Saying Megyn's 'Obsessed with Sex': ['FAKE']\n", + "Senate GOP leaving tea party primary battles behind: ['REAL']\n", + "Meet The Man Who Started The Illuminati: ['FAKE']\n", + "Anti-Trump delegates now responsible for nominating him: ['FAKE']\n", + "Syria’s UN Envoy ‘Appalled’ By Rebel Attacks On Civilians In Aleppo: ['FAKE']\n", + "Collusion Between Facebook and Hillary’s Campaign Revealed in Clinton Emails: ['REAL']\n", + "Pro-Obama super PAC shifts focus to possible Clinton 2016 bid: ['FAKE']\n", + "3 dead in Colorado Springs Planned Parenthood shooting: ['REAL']\n", + "Report from the Refugee Camp in Calais, France: “the Jungle”: ['FAKE']\n", + "Trump refuses to say whether he'll accept election results: ['FAKE']\n", + "Fiorina blames environmentalists for California drought: ['REAL']\n", + "AG Lynch told FBI Director Comey NOT to go public with the new Clinton email investigation: ['FAKE']\n", + "FBI reopens Clinton investigation as new emails found ‒ Comey: ['FAKE']\n", + "Congress Knew For At Least Two Years About Pentagon Efforts To Take Back Bonuses From Veterans: ['FAKE']\n", + "Guilty Verdict Returned In 'American Sniper' Murder Trial: ['REAL']\n", + "As Marco Rubio rises, GOP rivals are reluctant to take him on directly: ['REAL']\n", + "Trump Will Skip GOP Debate As Feud With Fox News Boils Over: ['FAKE']\n", + "The Dark Agenda Behind Globalism And Open Borders: ['REAL']\n", + "Re: 22 Reasons Why Starting World War 3 In The Middle East Is A Really Bad Idea: ['REAL']\n", + "Fifteen years after NATO bombings, Montenegro wants to join NATO: ['REAL']\n", + "Parts Of Patriot Act Expire, Even As Senate Moves On Bill Limiting Surveillance: ['REAL']\n", + "US charges 61 with India-based scam involving 15,000 victims: ['REAL']\n", + "US: Kurdish Troops Will Be Involved in Invading ISIS Capital of Raqqa: ['REAL']\n", + "Kasich: Voters Are ‘Starting to Pay Attention’: ['FAKE']\n", + "Michael Moore Owes Me $4.99: ['REAL']\n", + "A \"Gesture of Thanks\": Turkey arrests terrorists for extradition to Russia: ['REAL']\n", + "Jack Heart: LUCIFER in the Temple of the Dog: ['FAKE']\n", + "President Obama really really really really hates Maureen Dowd: ['REAL']\n", + "U.S. Congressional Delegation travels to Cuba this weekend: ['FAKE']\n", + "How Democrats killed Obama's college savings plan: ['REAL']\n", + "Clinton Takes First Step To Dispel Doubts About Candidacy: ['FAKE']\n", + "Guardian Front Page: “A 16-Year-Old Migrant Cries…”: ['REAL']\n", + "Restaurant Chain Tim Hortons Blocks Independent Journalist’s Website on WiFi: ['REAL']\n", + "Why raising the Social Security retirement age really does hurt the poor the most: ['REAL']\n", + "Afghanistan: 19 die in air attacks on hospital; U.S. investigating: ['REAL']\n", + "Trump Makes Last-Minute Push To Appeal To Whites - The Onion - America's Finest News Source: ['FAKE']\n", + "A new 9/11 memorial to Flight 93: ‘Our loved ones left a legacy for all of us’: ['REAL']\n", + "Fact checking the fourth round of GOP debates: ['REAL']\n", + "OnPolitics | 's politics blog: ['FAKE']\n", + "CLINTON CAMPAIGN COOPERATED WITH POLITICO ON ‘DEMYSTIFYING’ HUMA ABEDIN: ['REAL']\n", + "What I Learned From Speaking to an R.N.C. Attendee From Every State: ['REAL']\n", + "Zakharova: Kiev's talk of an armed OSCE mission is disinformation: ['REAL']\n", + "Final votes on Patriot Act, trade deal bill set dramatic stage for Congress’ return: ['REAL']\n", + "Don’t write Donald Trump’s political obituary just yet: Why surging Ben Carson looks like a flavor of the month: ['FAKE']\n", + "Manny Pacquiao's Son Dead? Report Says Jimuel Pacquiao Dies Of Asthm Complications - Morning News USA: ['REAL']\n", + "Hillary Clinton's Postapocalyptic Hellscape Plan??: ['REAL']\n", + "Carmel Institute celebrates 5th anniversary with jazz concert: ['REAL']\n", + "Trump’s Twitter Access Revoked - The Onion - America's Finest News Source: ['REAL']\n", + "Raise the wage: Paul Krugman shatters the myth that we can’t afford to boost workers’ pay: ['FAKE']\n", + "Obama’s Arctic Trip Comes as Climate Change Builds as 2016 Issue: ['FAKE']\n", + "YouTube censoring videos – on censorship!: ['REAL']\n", + "Hillary Clinton should proactively set out ethics rules: ['REAL']\n", + "Israel hawks to Pope Francis: Stay out of politics: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Budgeting the Good War, for 75 Years: ['FAKE']\n", + "Will the anti-Clinton revolt among American elites gain momentum?: ['FAKE']\n", + "American Funhouse: Manufacturing Consent: ['REAL']\n", + "Why Hillary Clinton Will Appoint Old World Nationalists to Cabinet Positions: ['REAL']\n", + "Here’s What Clinton and Trump Must Do on the Debate Stage to Win the Night: ['FAKE']\n", + "Both Clinton and Trump would bring a war-time posture to the White House: ['FAKE']\n", + "The GOP debate fear cauldron: According to the Republican candidates, you’re going to die: ['REAL']\n", + "Clinton holds narrow lead over Trump on eve of conventions: ['FAKE']\n", + "Kevin McCarthy announces he's a candidate for House speaker (+video): ['FAKE']\n", + "A guide to the Paradoxroutine: ['FAKE']\n", + "AT&T-Time Warner Merger: Another Media Consolidation That Puts Profits Over Consumers: ['REAL']\n", + "Fall of the House of Bush: How last name and Donald Trump doomed Jeb: ['REAL']\n", + "Mitt Romney Fans Speculation Over Another White House Run: ['REAL']\n", + "US Airstrike Kills Four Iraqi Troops Near Mosul: ['REAL']\n", + "‘Tolerant’ Liberals Show Nothing But Contempt, Hatred Toward Nation’s Only Black Supreme Court Justice: ['REAL']\n", + "Us vs Them: When Politics is Treated Like a Football Game, No One Wins: ['REAL']\n", + "Manhunt shifts to lone cabin in upstate New York: Prisoner hideout?: ['REAL']\n", + "Armed Dakota Access Contractor Accused Of Trying To Infiltrate Water Protectors: ['REAL']\n", + "18 State Swat Team Drill In Prep for Backlash Against a Stolen Election: ['REAL']\n", + "Michael Moore: Joe Blow Will Vote Trump As “Ultimate F–– You to the Elite… A Human Molotov Cocktail”: ['FAKE']\n", + "More Beer, Less Vodka as Russians Mull Ongoing Crisis - Rustem Falyakhov: ['REAL']\n", + "Stop the vendetta against Planned Parenthood: ['REAL']\n", + "Understanding Propaganda - The Art Of Distraction And Disinformation: ['REAL']\n", + "Huffington Post Continues Campaigning for Hillary Clinton: ['REAL']\n", + "TRUNEWS 10/31/16 Dr. Lance Wallnau | Answered Prayer: The Cabal Crumbles: ['REAL']\n", + "Ted Cruz victory shows GOP's impossible conundrum (+video): ['REAL']\n", + "A Tea Party Congressman Just Called For Armed Uprising If Trump Loses: ['REAL']\n", + "US pullout from Yemen eases pressure on Al Qaeda, lawmakers warn: ['FAKE']\n", + "Obama trade bill in trouble: ['FAKE']\n", + "Secret Service testing ways to intercept rogue drones with late-night flights over Washington: ['REAL']\n", + "Source: Baltimore mayor ordered police to stand down: ['FAKE']\n", + "MARKETWATCH LEFTIST: MSM’s “Blatant” Anti Trump Bias May Be Suicidal: ['REAL']\n", + "Jane Sanders to FBI: Get on with Clinton email probe: ['REAL']\n", + "Happy New Year, Wall Street: Congress Has Another Gift For You: ['REAL']\n", + "The Left Turns on Bob Dylan for His Pro-Israel Views, Refusal to Acknowledge Nobel Prize: ['REAL']\n", + "FACEBOOK Nazi Thought Police editors threaten to quit if Mark Zuckerberg doesn’t ban Donald Trump for hate speech: ['REAL']\n", + "Rivals Slam Trump over Violent Rallies: 'He Incites Violence': ['FAKE']\n", + "Oklahoma Fraternity Is Closed Over Video Of Racist Chant: ['REAL']\n", + "Jeb Bush in 2016: The good, the bad and the ugly: ['REAL']\n", + "A whirlwind day in D.C. showcases Trump’s unorthodox views and shifting tone: ['FAKE']\n", + "Andrew Maguire – Paper Gold Market Trades Jaw-Dropping 6,800 Tonnes In One Day!: ['REAL']\n", + "What A Hillary Presidency Would Bring: ['REAL']\n", + "Supreme Court Readies Blockbuster Rulings: ['REAL']\n", + "This is What Will Happen to Mosul After ISIS is Evicted: ['FAKE']\n", + "Mall of America to Close for First Time Ever on Thanksgiving: ['FAKE']\n", + "Former Director Of National Budget Warns That Markets Will Tank After US Election: ['REAL']\n", + "Delete Your Account – Episode 23: Don’t Get Sick: ['REAL']\n", + "CNN Reach New Low, Call Sheriff Clarke A ‘Terrorist’ After Trump Gave Him The Most Important Job! | EndingFed News Network: ['REAL']\n", + "(((Smithsonian))) Refuses to Include Judge in Black Museum Because He has Normal People Opinions: ['REAL']\n", + "Iran Nuclear Deal: Does Obama want Israel to commit suicide?: ['FAKE']\n", + "Syrian War Report – November 7, 2016: Russian Attack Helicopters Swarm in Homs Province | The Vineyard of the Saker: ['FAKE']\n", + "Bernie's swan song begins: ['REAL']\n", + "Would Trump presidency threaten rule of law?: ['FAKE']\n", + "Google And God: ['FAKE']\n", + "Bernie Sanders Says What The Media Won’t: Trump Is A Gutless Political Coward: ['FAKE']\n", + "Sanders delegates' convention agenda: ['REAL']\n", + "Is it necessary to break the law to improve your standard of living?: ['FAKE']\n", + "Paris climate summit: What to expect from historic talks: ['FAKE']\n", + "Trump doctor’s letter: He takes cholesterol drug, is overweight but is in ‘excellent’ health: ['REAL']\n", + "Game changer? Trump supporter charged in voter fraud case: ['FAKE']\n", + "Supreme Court: your right to a \"speedy trial\" ends when you're declared guilty: ['REAL']\n", + "We told you so! The Zika virus is harmless: ['REAL']\n", + "Debating the Future of American Power Abroad: ['REAL']\n", + "Sesame Seeds for Knee Osteoarthritis: ['REAL']\n", + "Now We Can Finally Get to Work: ['FAKE']\n", + "Trick-Or-Treaters Get Their Socks Rocked By BADASS Hillary Pumpkin Outside: ['REAL']\n", + "Amurexit from NAFTA TPP Wall Street and Global Policeman: ['REAL']\n", + "Islamic State accepts Boko Haram allegiance pledge: ['REAL']\n", + "Wife of Muslim jihadist who killed and wounded over 100 in Orlando nightclub massacre says she “knew nothing”: ['FAKE']\n", + "Farming Invented Many Times by Many Different Farmers Over A Vast Landscape. @CarlZimmer. @NYTimes. - Russia News Now: ['REAL']\n", + "Netanyahu warns Iran deal could 'threaten the survival' of Israel: ['FAKE']\n", + "Why Comey Reopened the Hillary Investigation: ['REAL']\n", + "Hillary: Leaked Audio of Her Discussing Rigging an Election in Palestine: ['REAL']\n", + "After Brussels, Trump's 'strength' resonates with GOP voters (+video): ['REAL']\n", + "The Intercept Outs Neocon Democrat’s Smear Against Trump as ‘Putin’s Puppet’ - Eric Zuesse: ['FAKE']\n", + "Done Deal? Clinton, Trump Shift to General Election after Big Wins: ['FAKE']\n", + "What You’re Not Told: 90% Of American Media Is Controlled By Six Corporations: ['REAL']\n", + "Steve Quayle On Economic Collapse, World War 3 and U S elections: ['REAL']\n", + "What Brian Williams’s Chopper Whopper Says About Modern News Media: ['REAL']\n", + "Republicans have little reason to act on immigration — both today, but also before the 2016 primaries: ['FAKE']\n", + "We don’t just need to see Trump’s taxes — we need a real medical report on him: ['FAKE']\n", + "Police morale can wait: How the Baltimore riots should reshape Attorney General Loretta Lynch’s agenda: ['REAL']\n", + "The Militarized Police at Standing Rock is Working for This Man: ['FAKE']\n", + "Bundy Ranch occupiers acquitted on all counts after challenging the corrupt Bureau of Land Management: ['REAL']\n", + "The Truth About Atlantis [Video]: ['REAL']\n", + "Major Corporate Sponsors Are Scaling Back Support for GOP Convention: ['FAKE']\n", + "Admit it: You love Tax Day! (Opinion): ['REAL']\n", + "Western QLD Drovers Show Solidarity With C.U.B Workers By Only Drinking Sauv Blanc – The Betoota Advocate: ['REAL']\n", + "CNBC Just Confirmed Comey Is Abusing His Power To Help Trump: ['FAKE']\n", + "JASON CHAFFETZ EXPOSED HILLARY CLINTON’S PLAN TO BRIBE FBI AGENTS TO LET HER GO: ['FAKE']\n", + "Obama On Baltimore: 'This Is Not New': ['REAL']\n", + "US Not Ruling Out Daesh Involvement in Afghanistan Offensive: ['REAL']\n", + "The United States Is Pre-Positioning “Enemy Assets” In Preparation For A Rigged Election: ['FAKE']\n", + "Booze Brands Polarize Just Like Politicians: ['REAL']\n", + "Why Greece and Iran seem willing to take on the world (+video): ['REAL']\n", + "Comment on “This is My Second One” — Virginia Cop Caught Bragging About Killing Two Unarmed People by Jamieson: ['FAKE']\n", + "Hillary Clinton Promises Steady Leadership, More Jobs in Historic Speech: ['REAL']\n", + "News: Election Night Disaster: John King Tapped His Electoral College Map Too Hard And Fell Headfirst Into A Digital Hellscape: ['REAL']\n", + "CLINTON EMAIL INVESTIGATION HAS SHIFTED THE POLLS SIGNIFICANTLY IN TRUMP’S FAVOR: ['FAKE']\n", + "People Power! Natives declare treaty rights, police admit defeat - cite lack of 'manpower' to remove DAPL protesters: ['REAL']\n", + "Obama: U.S. cannot solve the world's problems alone: ['REAL']\n", + "How hackers eroded Americans' trust in democratic process: ['REAL']\n", + "Boy With Autism Makes His First Friend Ever And His Mom Can’t Stop Crying: ['REAL']\n", + "Julian Assange October Surprise REVEALED: ['FAKE']\n", + "First Contact Film Trailer: ['REAL']\n", + "370 Economists Sign Letter Urging America Not To Vote For Donald Trump: ['FAKE']\n", + "Here come the jobs, finally: ['REAL']\n", + "What Walker's Departure Means for GOP Field: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Julian Assange Ends The Suspense: “The Source Of Hacked Emails Is Not Russia”: ['FAKE']\n", + "Dem Operative Who Oversaw Trump Rally Agitators Visited White House 342 Times: ['FAKE']\n", + "TRUMP TSUNAMI INCOMING: What Trump Did In Florida Today Will Make Him President!: ['FAKE']\n", + "Trump’s Star Vandalized On Hollywood Walk Of Fame - The Onion - America's Finest News Source: ['REAL']\n", + "Obama’s trip to Ethiopia alarms some human rights activists: ['REAL']\n", + "Nearly All Wild Animals Face Mass Extinction By 2020: ['REAL']\n", + "Illegal Immigrants Could Elect Hillary: ['FAKE']\n", + "15 Foods That Contain the Most Vitamin E | Alternative: ['REAL']\n", + "TREY GOWDY: “WHAT IN THE WORD IS LORETTA LYNCH DOING TALKING TO COMEY”: ['FAKE']\n", + "The Northern Sea Route: New Prospects for the Pacific Rim | New Eastern Outlook: ['REAL']\n", + "Cruz campaign: We could have stopped Trump if Rubio became running mate: ['REAL']\n", + "FREE Summit from Health Experts Teaches About Healthy Fats to Reverse Disease and Lose Weight: ['REAL']\n", + "Kentucky governor: Electing Hillary Clinton may eventually lead to violence: ['REAL']\n", + "Contaminated Food from China Now Entering the U.S. Under the 'Organic' Label: ['FAKE']\n", + "Forget Wikileaks...this is the real October Surprise that is going to stop Hillary: ['REAL']\n", + "Donald Trump: The next President of the United States of America: ['FAKE']\n", + "14 Days and Counting-There Will Be a Civil War No Matter Who Wins the Election: ['REAL']\n", + "Internet Is On Fire With Speculation That Podesta Emails Contain Code for Child Sex: ['REAL']\n", + "Inside Jeb's 'shock and awe' launch: ['REAL']\n", + "Southern Poverty Law Center Targets Anti-Jihad Crusaders (Ann Corcoran Honored!): ['REAL']\n", + "Babylon Mystery Religion Series: ['FAKE']\n", + "Relief efforts to find survivors intensify amid powerful aftershocks: ['REAL']\n", + "The early 2016 primary calendar is now set. It will change.: ['REAL']\n", + "Trump: I wouldn't accept Cruz's endorsement: ['FAKE']\n", + "What is Federalism?: ['REAL']\n", + "Confirmed: Public overwhelmingly (10-to-1) says media want Hillary to win: ['FAKE']\n", + "Mitt Romney Calls Donald Trump 'A Phony, A Fraud'; Trump Hits Back: ['FAKE']\n", + "In Jamaica, Obama indicates that he will remove Cuba from terrorism list: ['FAKE']\n", + "Turkey Rounds Up Erdogan’s Political Opponents as Crackdown Widens: ['FAKE']\n", + "Trump controlled by Mossad: ['FAKE']\n", + "THE POLLS CAN NO LONGER BE RIGGED THIS ELECTION: ['REAL']\n", + "New Lunar Craters Mystery | Space News: ['FAKE']\n", + "Cruz's immigration gambit: ['REAL']\n", + "Donald Trump Wins The Presidency In Historic Victory: ['FAKE']\n", + "Trump slams GOP nominating process as top aide accuses Cruz of 'gestapo tactics' to win delegates: ['REAL']\n", + "Battle for the Ages: ['REAL']\n", + "Discrimination and Condemnation: Australia’s War on Boat People: ['REAL']\n", + "Obama hits the trail for Hillary Clinton: Will he help or hurt?: ['FAKE']\n", + "Scalia’s death comes just a month before the court’s biggest abortion case in years: ['REAL']\n", + "The Empire Files: Inside Palestine's Refugee Camps: ['FAKE']\n", + "New Saudi king ascends to the throne as terrorism threat grows: ['FAKE']\n", + "With Another Deadline Looming, Whispers Of Iran Nuclear Deal Emerge: ['REAL']\n", + "Donald Trump's Clintonesque foreign policy: ['REAL']\n", + "The Israeli Trumpess: ['REAL']\n", + "Comment on Sheriff Says Cannabis Makes People Murderers Because “Rational Thought” Leads to Violence by Isaid Dilligaf: ['REAL']\n", + "Seven World-Historical Achievements of the Iraq Invasion of 2003: ['REAL']\n", + "Major Voter Fraud Already Running Rampant Against Republicans: ['REAL']\n", + "Backers: Romney more open to 2016: ['REAL']\n", + "Re: Yes, There Are Paid Government Trolls On Social Media, Blogs, Forums And Websites: ['REAL']\n", + "The REAL REASON Hillary Was Not Prosecuted For Her Email Scandal Will Infuriate You: ['REAL']\n", + "Why Rachel Dolezal's assertion that she is black could pave way for folks choosing a 'racial identity': ['REAL']\n", + "Brexit and the Law: ['REAL']\n", + "Tsarnaev Mom: Americans Are ‘Terrorists’: ['REAL']\n", + "It isn’t ‘Islamophobia’ when an Oklahoma GOP State Rep. says “Islam is a cancer in our nation that needs to be cut out”: ['REAL']\n", + "WELCOME TO PARIS where tour buses have to navigate around all the new Muslim tent cities filling the streets: ['FAKE']\n", + "Clinton braces for Nevada nail-biter: ['REAL']\n", + "The Israeli Trumpess: ['REAL']\n", + "US Insiders – Not Russia – Leaked Clinton Emails: ['FAKE']\n", + "Is This Why The Smash In Gold & Silver Is Happening? A Shocking Game-Changer For Gold & Silver Is Now Unfolding…: ['REAL']\n", + "Dad in weird mood since 2004: ['REAL']\n", + "NATO Buildup in Eastern Europe: ‘We’ve Only Seen the Tip of the Iceberg’: ['REAL']\n", + "California & Oregon Want To Secede From The U.S. After Trump Election: ['FAKE']\n", + "Here are the top five things to watch in tonight's debate: ['FAKE']\n", + "The NRA Just Admitted It Was Always Lying About Obama Confiscating Guns: ['FAKE']\n", + "Head Of Medicare, Who Oversaw Obamacare Rollout, Will Step Down: ['REAL']\n", + "Republican Protester Says He Was Nearly Killed After Trump Says ‘Take Him Out’: ['FAKE']\n", + "Donald Trump, president of the Confederacy: The Southern strategy created the GOP civil war: ['REAL']\n", + "Former Miss Finland accuses Trump of sexual assault, bringing number of accusers to 12: ['REAL']\n", + "Kerry orders State Department review of records retention amid Clinton email controversy: ['REAL']\n", + "United States – Reformation or Fracture?: ['REAL']\n", + "A sharp exchange over election-year polling offers thoughts for the rest of us: ['REAL']\n", + "Romney’s reboot: Can the 2012 loser really fix his problems in 2016?: ['FAKE']\n", + "Is it possible to fix the polarization of American politics?: ['FAKE']\n", + "CETA: Canada Has Challenged The EU’s Chemical Regulations 21 Times: ['FAKE']\n", + "Tiny Homes Banned In U.S. At Increasing Rate As Govt Criminalizes Sustainable Living: ['FAKE']\n", + "Life: When These Third-Graders Saw Their Classmate Didn’t Have A Lunch, They Kept Feeding Him More And More Lunches Until He Clogged The Door And Got School Canceled: ['REAL']\n", + "US faces calls to ‘walk away’ from Iran talks: ['FAKE']\n", + "Netanyahu warns supporters he may lose in Tuesday’s election: ['REAL']\n", + "Harry Reid Calls Trade Push By Obama And GOP 'Insanity': ['REAL']\n", + "Sex and the Presidential City: ['REAL']\n", + "San Bernardino massacre: A horror that affects us all: ['FAKE']\n", + "Netanyahu's Iran Speech: Why it's important for Congress to at least listen to Israel's leader: ['FAKE']\n", + "Obama: Warren 'Absolutely Wrong' On Trade Deal: ['REAL']\n", + "The Guardian is Going Friggin Nuts Over Calais: ['FAKE']\n", + "Swing-state stunner: Trump has edge in key states: ['FAKE']\n", + "AUSTRIAN DISGRACE: No jail for Muslim migrant who dumped his own baby in the middle of the road after he got drunk and enraged: ['FAKE']\n", + "The Modern History of ‘Rigged’ US Elections: ['FAKE']\n", + "Carly Fiorina will appear in top-tier Reagan Library debate: ['REAL']\n", + "STRANGE THING moving up Alaska’s Chena River caught on video: ['FAKE']\n", + "Trump Expected to Name Running Mate Soon: Looking for an 'Attack Dog': ['FAKE']\n", + "President Obama’s Interview With Samantha Bee Will Have You Rolling On The Floor Laughing (VIDEO): ['REAL']\n", + "The End of the Road for John Kasich: ['FAKE']\n", + "Why Negotiators At Paris Climate Talks Are Tossing The Kyoto Model: ['REAL']\n", + "WHAT HAPPENED? In 2014, Quebec tried to pass a Charter that would have banned all religious attire in public, specifically to prevent Muslim women from hiding their faces: ['FAKE']\n", + "Election 2016 and the Growing Global Nuclear Threat: ['REAL']\n", + "How Barack will juggle Bibi, Vlad and Hillary: ['REAL']\n", + "Pentagon: No Plan ‘So Far’ For US Troops to Enter Mosul: ['REAL']\n", + "Russian pianist Denis Matsuev terrorized in US for supporting Putin: ['FAKE']\n", + "In Rand Paul and Marco Rubio’s feud over Cuba policy, a preview of GOP’s 2016 foreign policy debate: ['REAL']\n", + "Former GOP Representative Calls For Armed Insurrection (VIDEO): ['REAL']\n", + "Jeb Bush blames Iraq unrest on Obama: ['REAL']\n", + "Cop Versus Two Informed Teens who Refuse to Submit to an Unlawful Detainment: ['FAKE']\n", + "Al Qaeda rep says group directed Paris magazine attack; US issues travel warning: ['REAL']\n", + "Did Trump Make a “Secret Deal NOT To Prosecute Hillary” In Exchange for Her Concession?: ['FAKE']\n", + "What 'Draw Muhammad' shootings say about Islamic State reach (+video): ['REAL']\n", + "4 Truly Important Items for Your Post-Election List of Things to Protest: ['FAKE']\n", + "Public vs. Media on War: ['FAKE']\n", + "In Baltimore's call for federal police probe, a new search for answers (+video): ['REAL']\n", + "Freedom Rider: Organizing in the Age of Hillary: ['REAL']\n", + "The Iowa caucuses are closer than you think: ['REAL']\n", + "Entering U.S. as refugees would be hard for terrorists: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "As Crooked HIllary Investigation Reopens, Democrat Cities Push To Allow Illegal Immigrants Voting: ['FAKE']\n", + "CNN Calls Sheriff Clarke A ‘Terrorist’ After Trump Considers Giving Him An Incredible New Job | EndingFed News Network: ['FAKE']\n", + "Town in Wisconsin Passes Law That Fines Parents of Bullies: ['REAL']\n", + "Here's why moderate Republicans aren't running for Congress anymore: ['REAL']\n", + "Supreme Court to consider redefining 'one-person, one-vote' principle: ['FAKE']\n", + "Iowa nightmare revisited: Was correct winner called on caucus night?: ['FAKE']\n", + "FBI Investigating New Clinton Emails - The Onion - America's Finest News Source: ['FAKE']\n", + "In a revealing interview, Trump predicts a ‘massive recession’ but intends to eliminate the national debt in 8 years: ['REAL']\n", + "Euro-Russian Mars Lander May Have Exploded Due to Software Glitch: ['FAKE']\n", + "The Limitations of Randomised Controlled Trials: ['REAL']\n", + "Climate change: What you can do (Opinion): ['REAL']\n", + "Obama: Gov. Scott Walker needs to ‘bone up’ on foreign policy: ['REAL']\n", + "Watch: Obama criticizes Kenya's president on gay rights as they stand right by each other: ['REAL']\n", + "Shallow 5.4 magnitude earthquake rattles central Italy; shakes buildings in Rome: ['REAL']\n", + "Obama’s plan to boost defense budget points to brewing national security debate: ['REAL']\n", + "What Trump and Clinton are looking for in a VP: ['FAKE']\n", + "Trumps Hollywood Walk of Fame star Destroyed with a Sledgehammer and Pick: ['REAL']\n", + "The GOP’s nuclear option for Donald Trump: Why the only way to beat him is so scary: ['FAKE']\n", + "Checking a claim that 'nobody did anything wrong' on Benghazi: ['FAKE']\n", + "Who's winning Indiana? It's anybody's guess: ['REAL']\n", + "Palin’s endorsement the latest prize as Trump, Cruz battle for conservatives: ['FAKE']\n", + "Refugee Resettlement Watch: Swept Away In North Carolina: ['REAL']\n", + "Unravelling Chattanooga: What do we know about shooter?: ['FAKE']\n", + "November Kale: ['REAL']\n", + "'There appear to be no rules anymore': ['REAL']\n", + "University of Missouri, please immediately fire employees who taunted media: ['REAL']\n", + "How Trump vs. Clinton could reshape the electoral map: ['FAKE']\n", + "Trump ups the ante in Indiana: ['FAKE']\n", + "Plutocrats love Jeb, but voters don’t: Bush’s “electability” argument is getting even weaker: ['REAL']\n", + "300 US Marines Deployed To Norway Near Russian Border For First Time Since World War II: ['FAKE']\n", + "Julian Assange: Why We Published What We Have on the US Elections: ['FAKE']\n", + "Pakistan expels India diplomat in tit-for-tat move: ['REAL']\n", + "News Shot: Detroit Airport Uses New System To Control Travelers: ['REAL']\n", + "Chris Christie: If I Run, I Will Beat Hillary Clinton: ['REAL']\n", + "Christie Hides $800,000 in Travel Bills: ['REAL']\n", + "Russia deploys missiles in Syria after Turkey shoots down bomber: ['REAL']\n", + "Lawbreaking AirBnB At It Again: Sends Out Spam That Violates CAN-SPAM Act: ['REAL']\n", + "Marco Rubio self-destructs in New Hampshire: ['FAKE']\n", + "Comment on Entitled Customer Slams Restaurant On Yelp, What Happens Next Is Sheer Badassery by customize your own jerseys: ['REAL']\n", + "Exclusive: Foreign Isis Fighters Defend Mosul Frontline as Locals Flee: ['FAKE']\n", + "The President Of The United States of America: Donald J. Trump: ['REAL']\n", + "The GOP Is Dying Off. Literally.: ['FAKE']\n", + "Michael Bloomberg Names Technological Unemployment as the Next Administration’s “Greatest Conundrum”: ['REAL']\n", + "Carly Fiorina swipes at Trump: ‘Look at this face.’: ['REAL']\n", + "Where Donald Trump and Hillary Clinton stand on economic issues: ['REAL']\n", + "Can Anyone Beat Trump in the Primary? History Says No: ['REAL']\n", + "Morning Plum: Get ready for another ideological death struggle, this time over climate: ['REAL']\n", + "Two Points About the Hillary Clinton Email Fiasco: ['REAL']\n", + "IT Firm Wins $63Mln US Army Contract in South Korea - NCI: ['REAL']\n", + "Terror attack over, 147 dead at Kenya university: ['REAL']\n", + "Wall Street, Hollywood, The Media And SJWs Fail To Stop Donald Trump From Becoming America’s 45th President: ['REAL']\n", + "Robert Durst of HBO's 'The Jinx' charged with murder: ['REAL']\n", + "Why the Iraq offensive will fail: ['REAL']\n", + "Hope and hype of Hiroshima can’t conceal Obama’s dismal record on nuclear disarmament: ['REAL']\n", + "650,000 Emails Found On Anthony Weiner’s Laptop; DOJ Blocked Foundation Probe: ['REAL']\n", + "Congress Undermines U.S. Global Economic Standing: ['REAL']\n", + "Iran nuclear talks: What if the deal falls through?: ['REAL']\n", + "Election’s Rape And Sexual Assault Accusations Need to Be Taken Seriously: ['REAL']\n", + "Democratic convention: passionate end to day one steadies early drama: ['REAL']\n", + "The GOP's big-money plan to save the Senate: ['FAKE']\n", + "It Turns Out Trump Put off Investigators for 6 Months While He Destroyed Emails: ['REAL']\n", + "Russian Navy Moves Guided Missile Ships to Baltic: ['FAKE']\n", + "Cruz blasts Trump as phony conservative in front of CPAC crowd: ['FAKE']\n", + "Taking Trump voters’ concerns seriously means listening to what they’re actually saying: ['REAL']\n", + "Donald Trump’s campaign of terror: How a billionaire channeled his authoritarian rage — and soared to the top of the polls: ['FAKE']\n", + "BRICS Countries to Invest $500 Million in Russian Gold Deposit - Kira Egorova: ['REAL']\n", + "“There is such a thing as being too late”: Obama issues a desperate call for a global climate deal: ['FAKE']\n", + "Hybrid Wars 8. Strategies Against Africa – Introduction: ['REAL']\n", + "We’re All Going To Lose On November 8th: Get Prepped With This Post-Election Chaos Checklist (VIDEO): ['REAL']\n", + "HIV ‘Cure’ Almost Complete after Scientists Remove Virus’s DNA from Living Tissue: ['FAKE']\n", + "Vortex Structured Water [Video]: ['REAL']\n", + "Missing on GOP debate stage: A future president (Opinion): ['REAL']\n", + "Senators Seek ‘Living Wage’ for Capitol Hill Contractors: ['FAKE']\n", + "Brian Williams Under Fire Over His Shifting Story Of Iraq Helicopter Attack: ['REAL']\n", + "Getting 10 Minutes of Sunlight Per Day Can Stop Depression: ['REAL']\n", + "AUSTRIA: Freedom Party leader calls Chancellor Angela Merkel the “most dangerous woman in Europe”: ['REAL']\n", + "The Sex Scandal That Could Change The Election: ['REAL']\n", + "Obama administration announces halt on new coal leases: ['REAL']\n", + "ObamaCare has cancer. And if it’s not treated quickly and aggressively, it will die: ['REAL']\n", + "OFF TOPIC: Unlike Muslims…horses actually do have a sense of humor: ['REAL']\n", + "This Irish TV channel killed their weather presenter for Halloween: ['REAL']\n", + "Scientists Claim To Have Found 234 Alien Civilizations: ['FAKE']\n", + "I Am A Syrian Living in Syria: “It was Never a Revolution nor a Civil War. The Terrorists are sent by your Government”: ['FAKE']\n", + "President Obama's persistent and puzzling passivity on terrorism: ['REAL']\n", + "Baby Bonds: A Plan for Black/White Wealth Equality Conservatives Could Love?: ['REAL']\n", + "Two-time world champion in kickboxing killed in Moscow. Video: ['REAL']\n", + "Jeb's invisible man strategy: ['REAL']\n", + "Death of millions of Yemenis in the \"forgotten war\": ['REAL']\n", + "Charlie Hebdo attack: Suspects' names, photos released: ['REAL']\n", + "Why the Ted Cruz-Marco Rubio debate mattered most (+video): ['REAL']\n", + "David Sweat shot, captured alive after New York manhunt: ['REAL']\n", + "Texas county switches to 'emergency paper ballots': ['REAL']\n", + "Police Family Fakes Robbery, Vandalizes Own Home to Blame it On Black Lives Matter: ['REAL']\n", + "Obama opens up on Iran: What he's learned about war, Republicans, and his foreign policy: ['REAL']\n", + "Why Bernie Sanders's campaign makes me worry about how he’ll manage the White House: ['REAL']\n", + "What DNC Donors REALLY think of African Americans: ['REAL']\n", + "Leaked email shows Monsanto Executive V.P. invited to 'Hillraiser' fundraiser to put Clinton into the White House for Monsanto's benefit: ['FAKE']\n", + "Clintons Are Under Multiple FBI Investigations as Agents Are Stymied: ['FAKE']\n", + "First Iraqi Troops Enter Mosul, But Fighting Remains Largely in Suburbs: ['REAL']\n", + "SHOCK VIDEO : Hillary Needs Help Climbing ONE SINGLE STEP in Florida – TruthFeed: ['REAL']\n", + "After vowing to end two wars, Obama may leave three behind: ['REAL']\n", + "Climate Engineering And Cryosphere Collapse: ['REAL']\n", + "Donald Trump Wins The Presidency In Historic Mandate Victory As Hillary Clinton Concedes: ['FAKE']\n", + "Illegal Thug Returns After Deported Twice, Gives Sick ‘Gift’ To Girlfriend: ['FAKE']\n", + "Barack Obama Marks 50th Anniversary Of 'Bloody Sunday' With Powerful Speech In Selma: ['REAL']\n", + "Ryan meets Trump, says ‘very encouraged’ but unity will take time: ['REAL']\n", + "Eleven States Sue Obama Admin. over Transgender Directive: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A brutal spoof advert for the new Macbook that highlights everything it doesn’t have: ['REAL']\n", + "US sailors freed by Iranians. No US apology issued, says Joe Biden: ['FAKE']\n", + "Could This Be the Real 'Super Tuesday'? A Look at What's at Stake: ['REAL']\n", + "Thanks to Obama, the terrorist cancer is growing: ['REAL']\n", + "Politico Tries to Destroy Trump, But It Backfires IMMEDIATELY: ['FAKE']\n", + "ICE Agent Commits Suicide in NYC; Leaves Note Revealing Gov’t Plans to Round-up & DISARM Americans During Economic & Bank Collapse | EndingFed News Network: ['FAKE']\n", + "Gold prices on the way to all-time highs: ['REAL']\n", + "Trump doesn’t have a national campaign. So the GOP is trying to run one for him.: ['FAKE']\n", + "Republicans in Congress are ready for Hillary as they prepare for new probes into Clinton Foundation: ['FAKE']\n", + "Some GOP elites aren’t quite convinced by Trump charm offensive: ['REAL']\n", + "Puh-LEEZE! DOJ’s ‘policy’ reminder to FBI is shameless (especially considering THIS) – twitchy.com: ['REAL']\n", + "Show biz: Business and breakthroughs: ['REAL']\n", + "Canada Just Threw A Grenade Into Elizabeth Warren's Trade Fight With Obama: ['FAKE']\n", + "New Company Aims To Explore Intersection Of Technology, Other Thing - The Onion - America's Finest News Source: ['REAL']\n", + "When Will It End? Police Clash with Pipeline Protesters: ['REAL']\n", + "GOP Debate Round 3: Expect Another Wild Night: ['REAL']\n", + "A List of Best Password Managers Offering Both Free and Premium Services: ['REAL']\n", + "New bionic eye implant connects directly to brain: ['REAL']\n", + "GLOBAL WARMING ALARMISTS DISAPPOINTED THAT HURRICANE MATTHEW WASN’T WORSE: ['FAKE']\n", + "His campaign’s statement that Trump accepts the truth of Obama’s birthplace is filled with falsehoods: ['REAL']\n", + "White House, Dems seek to water down Iran bill: ['FAKE']\n", + "Reporter says Clinton camp denying him access to events: ['REAL']\n", + "Congress's fight over Iran deal enters new phase: ['FAKE']\n", + "Why LeBron James’s Endorsement Could Help Clinton Retake Ohio: ['REAL']\n", + "White House warns Congress: Fight Zika or live to regret it: ['FAKE']\n", + "Cuba has a possible lung cancer vaccine that America can now test: ['FAKE']\n", + "FBI REDUX: What’s Behind New Probe into Hillary Clinton Emails?: ['REAL']\n", + "Hillary Isn’t Only One Who Suffers Memory Loss, Look What Bill Just Did….: ['REAL']\n", + "White House counsel reportedly kept in dark on Clinton’s personal email use: ['REAL']\n", + "Iran talks to be extended another day: ['REAL']\n", + "Our Debt to Paula Jones: ['REAL']\n", + "“Billionaire” Donald Trump’s Presidential Campaign Is Flat Out Broke: ['FAKE']\n", + "Reasons to Risk Nuclear Annihilation: ['FAKE']\n", + "Election 2016: Clinton email stumble fuels Dem critics: ['FAKE']\n", + "Kurdish forces, backed by U.S. airstrikes, launch offensive in Iraq: ['REAL']\n", + "BAHAHA! Wanna bet Hillary made THIS face when she found out about the FBI? [photo]: ['REAL']\n", + "Comment on The Science is “Overwhelming At This Point” Wifi Industry Appeals Brain Tumor Association Ordinance by THE SCIENCE IS “OVERWHELMING AT THIS POINT” WIFI INDUSTRY APPEALS BRAIN TUMOR ASSOCIATION ORDINANC - WAKING SCIENCE: ['REAL']\n", + "“We won, you lost, get over it” Brexiters told outside High Court: ['REAL']\n", + "Political Correctness for Yuengling Brewery; What About Our Opioid Epidemic?: ['FAKE']\n", + "As Always, U.S. Adores a Good Sex Scandal: ['REAL']\n", + "Migrants Refuse To Leave Train At Refugee Camp In Hungary: ['FAKE']\n", + "Biden previews battle against Clinton: ['FAKE']\n", + "Links 11/11/16: ['REAL']\n", + "VIDEO : Sean Hannity “The American People Have Finally Been Heard” – TruthFeed: ['REAL']\n", + "Mike Brown Family Suing Ferguson, Wilson: ['FAKE']\n", + "SWEDISH OUTRAGE as Muslim colonizers get preference for housing while native Swedes are out in the cold: ['REAL']\n", + "U.S. LAWMAKERS RAISE PRIVACY CONCERNS OVER NEW HACKING RULES: ['FAKE']\n", + "Sanders’ challenge: Winning over Obama supporters: ['REAL']\n", + "U.S. Currency Hidden Images: ['REAL']\n", + "GOP lands no solid punches while sparring with Clinton over Benghazi: ['FAKE']\n", + "A nuclear deal has been reached, but Iran must free Jason Rezaian: ['FAKE']\n", + "South Carolina, Nevada polls find Clinton far ahead: ['REAL']\n", + "Will Hillary Clinton lose the election because of the FBI email investigation?: ['REAL']\n", + "Monsanto Behind 4-Years-in-the-Making, Failed Peace Deal in Colombia: ['REAL']\n", + "Oathkeepers to Prevent Voter Fraud- Operation Sabot: ['REAL']\n", + "Non-mainstream poll shows Trump poised to win with 76% chance: ['FAKE']\n", + "Stossel: Why Marco Rubio and Hillary Clinton are 2016's likely nominees: ['REAL']\n", + "The Source of our Rage :: ['REAL']\n", + "Donald Trump Campaign Manager Is Out: ['FAKE']\n", + "We must smash the Clinton machine: Democratic elites and the media sold out to Hillary this time, but change is coming: ['REAL']\n", + "5 takeaways from the first presidential debate: ['REAL']\n", + "@POTUS joins Twitter, jokes with @BillClinton: ['REAL']\n", + "Trump Supporters Booby Trap Polling Place And Spill Blood Of Election Volunteer (VIDEO) | Addicting Info | The Knowledge You Crave: ['FAKE']\n", + "Obama on 'The Daily Show:' What happened to common conversation? (+video): ['FAKE']\n", + "It’s not about mental illness: The big lie that always follows mass shootings by white males: ['REAL']\n", + "GOP Candidates Say Paris Attacks Highlight U.S. Leadership Failure: ['FAKE']\n", + "Report: Freddie Gray sustained injury in police van: ['REAL']\n", + "Sure, We Want An Honest And Trustworthy President, But It's Complicated: ['REAL']\n", + "Comment on ‘Voting Is Rigged & Used To Pacify The Public’ Says Three-Time US Presidential Candidate Ron Paul by Anonymous: There Is No One Way To Live On This Planet, But We Can Be Harmonious – Collective Evolution: ['FAKE']\n", + "The Pope vs. America: ['FAKE']\n", + "Bernie Sanders to announce 2016 intentions on Thursday: ['REAL']\n", + "The problem with Cruz and Kasich aligning to stop Donald Trump: ['FAKE']\n", + "Brexiters set up demented ‘people’s courts’: ['REAL']\n", + "Prime Minister of France says, “if we grant immediate asylum to illegal alien Muslim invaders, by tomorrow they will be speaking French and sharing French values”: ['FAKE']\n", + "US Presidential Elections Sound a Warning of Catastrophes to Come: ['FAKE']\n", + "The Overwhelming Stress of Being Denied a Bathroom: ['REAL']\n", + "DONALD TRUMP & DEUTSCHE BANK: DID CLINTONS LEAN ON US JUSTICE DEPARTMENT?: ['FAKE']\n", + "Why You Should Stop Apologizing for Doing All That You Can: ['REAL']\n", + "Clinton Gets Back In The Game After Blowout Loss To Sanders In N.H.: ['FAKE']\n", + "WikiLeaks Documents Reveal United Nations Interest In UFOs: ['REAL']\n", + "The Senate's 46 Democrats got 20 million more votes than its 54 Republicans: ['FAKE']\n", + "Fashwave Friday: Endgame: ['REAL']\n", + "Blog: If Donald Trump Pardons Me, I Would Be Honored To Serve As Secretary Of Agriculture: ['FAKE']\n", + "Hung jury in Jodi Arias sentencing phase removes possibility of death sentence: ['REAL']\n", + "Chris Christie Bolsters Political Team as Allies Launch Super PAC: ['FAKE']\n", + "Re: Why Did Attorney General Loretta Lynch Plead The Fifth?: ['REAL']\n", + "The Fear of Being Gay in Russia: ['FAKE']\n", + "Federal court: NSA phone record collection is excessive: ['REAL']\n", + "BREAKING: THE REAL REASON HILLARY CLINTON WONT BE CHARGED BY THE FBI: ['FAKE']\n", + "Blame Government, Not Markets, for Monopoly: ['REAL']\n", + "Michael Oliver – Here Is The Big Picture For Gold After The Takedown: ['REAL']\n", + "Hillary Clinton speech to attack Donald Trump's 'dangerous' foreign policy plans: ['FAKE']\n", + "‘Take The Money!!’: Emails Show How Clinton Campaign Manages Lobbyist Donations: ['REAL']\n", + "Military op to retake Mosul from ISIS: ['REAL']\n", + "Iowa caucus results: Ted Cruz wins, Hillary Clinton declares victory: ['REAL']\n", + "Lesson learned? Goldman Sachs says not to expect \"Brexit-type surprise\" on Nov. 8: ['REAL']\n", + "Three Ways to Recharge Your Energy Using Crystals: ['REAL']\n", + "Obama Spends Earth Day In The Everglades, Taunting Republicans On Climate Change: ['FAKE']\n", + "Donald Trump doesn't challenge anti-Muslim questioner: ['REAL']\n", + "Lawyer Who Kept Hillary Campaign Chief Out of Jail in DOJ Hillary Probe: ['REAL']\n", + "Trump claims GOP nomination, tells struggling Americans 'I am your voice': ['REAL']\n", + "Quit Smoking! Smoking Cigarettes Causes 150 Genetic Mutations and Cancer: ['REAL']\n", + "Claire McCaskill Accuses Marco Rubio Of Shirking Principles On Immigration: ['REAL']\n", + "Obamacare Is Back At The Supreme Court, And These 6 Lives Hang In The Balance: ['REAL']\n", + "4 Things The New Hampshire Primary Will Tell Us: ['FAKE']\n", + "The Latest ABC/WaPo Poll Has the Hillary Campaign Sounding the Alarms: ['REAL']\n", + "32,000 emails recovered in IRS targeting probe amid allegations agency chief may have lied: ['REAL']\n", + "Banana Republic Election in the United States?: ['REAL']\n", + "TIME MAGAZINE Reaches NEW LOW: It’s “Sexist” To Investigate Hillary Clinton!”: ['REAL']\n", + "If Donald Trump Wins The Election, It Will Be The Biggest Miracle In US Political History: ['FAKE']\n", + "Comment on Creating a National Security State ‘Democracy,’ Or How the American Political System Changed and No One Noticed by James Miller: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Superbug cases spur FDA warning on dirty medical scopes: ['FAKE']\n", + "PATRIOT Act At 15: Do You Feel Safer?: ['REAL']\n", + "The 8th Democratic Debate In 100 Words (And 4 Videos): ['REAL']\n", + "Rebels Escalate Attacks on Western Aleppo, Killing 12 Civilians: ['REAL']\n", + "Militias prepare for election unrest while Christians fast: ['FAKE']\n", + "Saudi Arabia to behead disabled man for taking part in protests: ['FAKE']\n", + "Donald Trump threatens to jail Hillary Clinton in second presidential debate: ['FAKE']\n", + "Cars That Broke Bad: ['REAL']\n", + "“Has science gone too far?”: ['REAL']\n", + "Tics and tricks: Here's what Trump and Clinton's body language reveals: ['FAKE']\n", + "Green Party’s Margaret Flowers Challenges US Senate Debate in Maryland as Undemocratic: ['REAL']\n", + "Obama ISIS war authorization: Request sent to Congress: ['FAKE']\n", + "Donald Trump's Problems Are Much Deeper Than A Campaign Manager: ['FAKE']\n", + "Marcus Mumford after Bundy verdict.: ['REAL']\n", + "#2816: Clinton Pride’s 8(a) Pig Farm Bridge – Serco Zulu Server Snuff –Soros's Patented Voter Key: ['FAKE']\n", + "Obama's Presidential Library Will Be In Chicago, Foundation Announces: ['FAKE']\n", + "Republicans are crossing a dangerous new line: sabotaging US foreign policy: ['FAKE']\n", + "Bully Backs Blowhard for President: Now Christie Likes Trump: ['REAL']\n", + "Adelson's Review-Journal Gives Trump First Major Endorsement: ['REAL']\n", + "Jeb’s Sad, Quixotic South Carolina Slog: ['REAL']\n", + "U.S. strike believed to have killed ‘Jihadi John,’ Islamic State executioner: ['FAKE']\n", + "Dems File Complaint w/DOJ Against FBI for Investigating Hillary: ['REAL']\n", + "Tradesman keeps promise: ['FAKE']\n", + "Clinton, Trump and Obama aren't telling American workers the truth. Here it is: ['FAKE']\n", + "BREAKING : LGBT Group Endorses Trump, Says, “Hillary is Detrimental for Gays” – TruthFeed: ['FAKE']\n", + "The Political Songs Of Leonard Cohen: ['FAKE']\n", + "Alabama Sen. Sessions Backs Trump’s Immigration Platform: ['FAKE']\n", + "Gary Johnson’s Post-Debate Reactions: ['REAL']\n", + "How the Oligarchy Has Prepared the Groundwork for Stealing the Election: ['REAL']\n", + "Reince Priebus is in over his head: ['REAL']\n", + "New Leak Exposes Hillary’s Real Plan For Clinton Foundation Foreign Donors: ['REAL']\n", + "Excruciating choice for GOP leaders: Take a risk on Trump?: ['FAKE']\n", + "WIKILEAKS : Hillary Receiving Donations from Radical Muslims in Turkey – TruthFeed: ['REAL']\n", + "Identity of ISIS terrorist known as 'Jihadi John' reportedly revealed: ['FAKE']\n", + "Jeremy Vine already tripping his tits off: ['REAL']\n", + "“Homicides Up 55 Percent”–Chicago Stays Vibrant: ['REAL']\n", + "Jake Tapper to moderate 's first GOP debate: ['FAKE']\n", + "After tragic shooting, Charleston church reopens with prayer, songs and tears: ['REAL']\n", + "Acting out of weakness? Why Obama's dangerously wrong about Putin's intentions in Syria: ['REAL']\n", + "Black Agenda Radio for Week of Nov. 7, 2016: ['FAKE']\n", + "Juror in Oregon militia trial dismissed for bias: judge: ['REAL']\n", + "An Angry John Podesta Issues A Statement On “Reopening” Of FBI Probe: ['FAKE']\n", + "300 US Marines To Be Deployed To Russian Border In Norway: ['FAKE']\n", + "Jordanian fighter jets strike hard at ISIS, pay tribute to murdered pilot: ['REAL']\n", + "ISIS shoots down Russian helicopter near Palmyra (VIDEO+PHOTOS): ['FAKE']\n", + "The Sad Evolution Of Education Summed Up By One Meme: ['REAL']\n", + "Obama Plans to Press Ahead With Guantanamo Bay Closure: ['REAL']\n", + "German Defense Minister warns Donald Trump to stay away from Russia and commit full to NATO: ['FAKE']\n", + "Netanyahu walks back Palestinian state comment: ['REAL']\n", + "Trump Votes Are Being Flipped To Clinton: ['FAKE']\n", + "Angela Merkel to Visit White House on Feb. 9: ['FAKE']\n", + "Will Nancy Pelosi miss John Boehner? Depends.: ['FAKE']\n", + "War is eminent: ['FAKE']\n", + "Why Obama Has His Work Cut Out For Him On Getting Trade Votes: ['FAKE']\n", + "Women Should Vote With Their Husbands: ['FAKE']\n", + "Trump won’t commit to accepting election results, at fiery final debate with Clinton: ['FAKE']\n", + "What do Americans really think about abortion? The answer may surprise you.: ['REAL']\n", + "They Said What?!: Find Out What Reba McEntire, Whoopi Goldberg, And Pope Francis Have To Say: ['FAKE']\n", + "Was California The Last Weekend At Bernie's House Of Hope?: ['REAL']\n", + "Media Roll Out Welcome Mat for ‘Humanitarian’ War in Syria: ['FAKE']\n", + "Nuclear weapons: how foreign hotspots could test Trump’s finger on the trigger: ['REAL']\n", + "Milestone House Vote Would Take Health Care Away From Millions: ['REAL']\n", + "China, Russia, The Silk Road, Commodities, Nixon And A Massive Bull Market In Gold & Silver: ['REAL']\n", + "Yes, Bernie Polls Better Against Trump Than Hillary—but There’s a Catch: ['REAL']\n", + "EgyptAir crash: official dismisses claim that remains suggest blast: ['REAL']\n", + "More anti-Trump action planned after second night of protests across US: ['REAL']\n", + "Twitter has been looking into the future: read the best 16 predictions: ['REAL']\n", + "Powerful Photo Series Challenges Society’s Perception Of The Obese: ['REAL']\n", + "Trump suggests he might have prevented 9/11 attacks, extending feud with Bush: ['FAKE']\n", + "How far can campaigns go to win support from a Republican delegate?: ['REAL']\n", + "They’re already trying to steal 2016: Inside the GOP voting-rights scheme intended to derail democracy: ['FAKE']\n", + "The People Are Laughing at the Liberal Media: ['FAKE']\n", + "Cruz eyes insurance via Obamacare, a law he vows to scrap (+video): ['FAKE']\n", + "On climate change, ideological and partisan polarization hardens: ['REAL']\n", + "#DraftOurDaughters: Pro-War Hillary Faces Backlash Over Female Draft: ['REAL']\n", + "Neither Bush nor Rubio is placing above 4th in Iowa or New Hampshire: ['FAKE']\n", + "From Berkeley to Kent State: ['REAL']\n", + "High Court Ruling Against Gay Marriage Would Produce 'Chaos': ['REAL']\n", + "Shift in Cuba politics boosts Obama, challenges Rubio: ['FAKE']\n", + "Giuliani, suggesting Trump may have ‘exaggerated’ in lewd comments, says, ‘talk and action are two different things’: ['REAL']\n", + "Twenty Years of a Dictatorial Democracy : Information: ['FAKE']\n", + "Decorated ‘Hero’ Cop Caught Using His Authority to Steal $170,000 in State Fees: ['FAKE']\n", + "Cop Caught on His Own Body Camera Stealing Money From Unconscious Crash Victim: ['FAKE']\n", + "Scott Walker’s economic mess: How worker wages were gutted in Wisconsin: ['REAL']\n", + "Clinton Aide Says Future WikiLeaks Releases Are 'Probably Fake': ['FAKE']\n", + "California slashes water use for upstate farmers: ['REAL']\n", + "Re: French Political Leader: “France is about to Enter a Holy War with Islam” – “Embrace Christianity… Never Accept the Religion of Satan”: ['FAKE']\n", + "Bernie Sanders is unleashing a plan to make prescription drugs cheaper: ['REAL']\n", + "John Podesta’s New Global Order: ['FAKE']\n", + "Hipster dog only likes 80s dog food that you can’t get any more: ['REAL']\n", + "Press release on Foreign Minister Sergey Lavrov’s meeting with Namibian Deputy Prime Minister and Minister of International Relations and Cooperation Netumbo Nandi-Ndaitwah - Russia News Now: ['REAL']\n", + "Boehner 'baffled' by Israeli spying report: ['REAL']\n", + "12 and 63-minute videos: Donald Trump connects to false flag targeting Muslims. Did you really think our ‘masters’ offer anything other than false choice between Left and Right arms of a .01% US rogue state?: ['FAKE']\n", + "Tribute to the Last Honorable US Senator: The Story of Paul Wellstone’s Suspected Assassination: ['REAL']\n", + "There’s a good reason protesters at the University of Missouri didn’t want the media around: ['REAL']\n", + "Putin: Crimean Integration Into Russian Legal Framework Goes Forward: ['REAL']\n", + "Comment on 10 Strange Facts About Our Presidents by tania de saram: ['REAL']\n", + "French Political Leader: “France is about to Enter a Holy War with Islam” – “Embrace Christianity… Never Accept the Religion of Satan”: ['FAKE']\n", + "Matt Bevin is the next governor of Kentucky. He has President Obama to thank.: ['REAL']\n", + "Fear of Trump sparking a surge in citizenship, voter applications: ['FAKE']\n", + "Dr. Duke and Andrew Anglin discuss the most important vote and election of our lives!: ['REAL']\n", + "John Roberts helps overthrow the Constitution: ['REAL']\n", + "Poll gives Biden edge over Clinton against GOP candidates; VP meets with Trumka: ['FAKE']\n", + "UN’s Yemen Peace Plan Would Sideline Former President Hadi: ['FAKE']\n", + "Pope Francis’ address to Congress: what it means for six Catholic lawmakers (+video): ['FAKE']\n", + "Kasich: ‘My Republican Party doesn’t like ideas’: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Experts Speechless! Countless People Miraculously Relieved of Serious Illness & Diseases-Must See!: ['REAL']\n", + "What does Rick Perry have?: ['REAL']\n", + "Minnesota Man Arrested, Sentenced to 6-Months in Jail for Having a Windmill On His Property: ['FAKE']\n", + "This is tyranny not democracy, says party with single MP: ['REAL']\n", + "Re: DePaul: “Unborn Lives Matter” Posters Are Veiled Bigotry: ['REAL']\n", + "Bill Clinton’s Lover: He Called Ruthless Hillary ‘The Warden’: ['FAKE']\n", + "Did You Notice Anything Different In The MSM Lately?: ['REAL']\n", + "BOMBSHELL: Hillary Clinton’s Leaked Audio Proves She Rigs Elections: ['FAKE']\n", + "Rubio reignites Cuba debate with Senate hearing: ['FAKE']\n", + "Lester Holt: presidential debate moderator and proven fact-checker: ['REAL']\n", + "Patriots Day 2015: Boston does not stand alone: ['FAKE']\n", + "| Man whose son was killed by illegal immigrant files two suits against feds: ['FAKE']\n", + "Mitt Romney to give big speech on 2016 race. Joining #NeverTrump? (+video): ['FAKE']\n", + "Is there any way Obama can fill Supreme Court vacancy?: ['REAL']\n", + "Saudi Arabia's King Abdullah was incremental reformer, US ally (+video): ['FAKE']\n", + "Re: The U.S. Will Lose Global Reserve Status, Expect 80-90% Devaluation Of the U.S. Dollar: ['REAL']\n", + "How The Oligarchs Plan To Steal The Election: ['REAL']\n", + "GOP insiders: It was a rough night for Ted Cruz: ['REAL']\n", + "Space Wars Likely In The Future As US, Russia Develop Satellite Weapons: ['REAL']\n", + "Donald Trump is blatantly racist — and the media is too scared to call him out on it: ['FAKE']\n", + "Can Donald Trump recover from this?: ['REAL']\n", + "The She-Devil: ['REAL']\n", + "Can Hillary rebuild her campaign with an upbeat message? And will anyone even notice?: ['REAL']\n", + "The Democrats aren’t doomed: What I learned from Bernie delegates in Philadelphia: ['REAL']\n", + "The US Elections Do Matter But Not Necessary To Follow Them – Sheikh Imran Hosein: ['REAL']\n", + "Enrique Marquez: I got rifles for San Bernardino killer: ['REAL']\n", + "Project Veritas: Scott Foval Reveals Who Was Really Behind the Romney 47% Video: ['REAL']\n", + "Donald Trump Begs Hillary Clinton Early Voters to Change Their Votes: ['FAKE']\n", + "Family of Armed Robbery Suspect Outraged Pizza Hut Employee Shot & Killed Their Son: ['REAL']\n", + "Abortion bill dropped amid concerns of female GOP lawmakers: ['REAL']\n", + "'Racist and sexist’ complaints against Aussie lamb advert rejected: ['REAL']\n", + "Outsider campaigns seek inside track: ['REAL']\n", + "Pentagon Seeks Another $6 Billion for Overseas Troop Deployments: ['REAL']\n", + "The Most Interesting Chart In The World – Part 2: ['REAL']\n", + "Spy Scandals, Globalism and the Betrayal of America: ['REAL']\n", + "John Oliver’s Smear Tactics Exposed As Establishment Propaganda: ['REAL']\n", + "Can Sanders' millennials switch to Clinton?: ['FAKE']\n", + "Bernie Sanders Has Strength Among White Men Pinched By The Economy: ['REAL']\n", + "Standing Rock Indian Reservation: Thousands Of Wild Buffalo Appear Out Of Nowhere: ['REAL']\n", + "Western “Culture” is Wrecking Entire Continents: ['REAL']\n", + "Scalia, Thomas & Alito have totally lost it: The complete and utter incoherence of the conservative Supreme Court justices: ['REAL']\n", + "ISIS: Mortal Threat Or Paper Tiger?: ['REAL']\n", + "Someone left a funny note asking the postman to move a spider: ['REAL']\n", + "In rare foreign trip, Assad flies to Moscow to meet with Putin: ['REAL']\n", + "Former ‘Apprentice’ contestant accuses Trump of groping her during job meeting: ['FAKE']\n", + "Hispanic Crowd Boos Marco Rubio off Stage: ['REAL']\n", + "High Court Judges looking for a Truss to support them. More soon.: ['REAL']\n", + "Trump's lean campaign machine relying mostly on donor cash, not his own: ['REAL']\n", + "P. Parenthood Chief Goes Toe-to-Toe with Attackers: ['REAL']\n", + "New Poll: Americans Feel Less Safe After 15 Years Of War: ['REAL']\n", + "If Clinton Campaign Believes WikiLeaks Emails Are Forged, Why Don’t They Prove It!?: ['REAL']\n", + "Justice Department Launches Civil Rights Probe Of Baltimore Police: ['REAL']\n", + "Obama Meets Boy After Deplorable Trump Fans Attack His Wheelchair When He’s Removed From Rally: ['FAKE']\n", + "“Honor Our Immigrant Veterans” Replayed: ['REAL']\n", + "Laura Ingraham: The Trump betrayal by Republican elites won't soon be forgotten: ['REAL']\n", + "Trump Supporter Jailed for Trying to Rig the Election By Committing Voter Fraud: ['FAKE']\n", + "Sanders wins in Wisconsin, keeping alive his improbable bid for the nomination: ['REAL']\n", + "The unexpected and ingenious strategy of Obama's second term: ['REAL']\n", + "Help Blow Up the Globalists Plot to Steal the Presidency- Make This Go Viral: ['REAL']\n", + "Biggest Election Fraud In History Discovered In The United States: ['FAKE']\n", + "South Carolina primary brings high stakes for Marco Rubio and Jeb Bush: ['REAL']\n", + "Duterte Calls US Admin ‘Monkeys’ for Halting Arms Sales: ['REAL']\n", + "Slow start for program to reduce vets' waits at Veterans Affairs facilities, offer private medical care: ['FAKE']\n", + "Malaysia to Buy Ships From China in Another Blow to US Regional Dominance: ['FAKE']\n", + "Vladimir Putin Condemns Europe for Upholding Child Rape (Video) - Ricky Twisdale: ['REAL']\n", + "Is This A New Escalation? BLACK Chemtrails Reported Around The World!: ['REAL']\n", + "BREAKING : Trump BEATING “Federal Investigation Hillary” by 4% in Michigan’s Absentee Voting – TruthFeed: ['FAKE']\n", + "Harry Reid: Obama to Name Scalia Replacement in 3 Weeks: ['REAL']\n", + "Amid campaign troubles, Trump blasts Clinton as 'world-class liar': ['FAKE']\n", + "Mitt Romney: Donald Trump is a 'phony, a fraud': ['FAKE']\n", + "'We the People' is at risk: Why America needs civics education: ['REAL']\n", + "‘Like Warsaw ghetto’: Attendees attacked, surrounded at Israeli speaker event at London university: ['REAL']\n", + "Comment on St. Charles Borromeo, Patron Saint of Catechists and Seminarians by jose: ['REAL']\n", + "NSA program reportedly helped US gather evidence against North Korea in Sony hack: ['REAL']\n", + "Donald Trump triumphs in Michigan and Mississippi. Onward, reality show junkies: ['FAKE']\n", + "What happens to delegates won by Rubio, other ex-candidates?: ['REAL']\n", + "Sniff your underarms and tell us if you stink...: ['REAL']\n", + "Must Watch: When People Laughed At Donald Trump And Anyone Who Said He Would Win: ['REAL']\n", + "Mired in third, Marco Rubio prepares for a long, drawn-out Republican race: ['REAL']\n", + "Comment on Facebook Daughter’s Day Hoax Is A Sign Of The Times by para kazanmak: ['REAL']\n", + "The Last Confirmation Bias Test of This Election: ['REAL']\n", + "Donald Trump v Bernie Sanders: confusion reigns over possible debate: ['FAKE']\n", + "Unprecedented letter from Chair of Joint Chiefs suggests U.S. military does not want a President Hillary: ['REAL']\n", + "North Dakota Police Arrest Over 140 Pipeline Protesters: ['FAKE']\n", + "Paul: Christie embraces Obamacare: ['REAL']\n", + "Ooh Fuck: ['REAL']\n", + "The American Way: Socialism for the Rich, Free Enterprise for the Rest: ['REAL']\n", + "BREAKING: Trump Rushed Off Stage After Alleged Gunman Found in Rally Audience: ['REAL']\n", + "FBI Assistant Director Goes Rogue, Stabs Hillary in the Back on National TV: ['REAL']\n", + "Photo of the day: Miss Russia at the international beauty contest in Tokyo: ['REAL']\n", + "Congressional auditors: VA health care is high-risk: ['REAL']\n", + "Leaked Email: ‘If She Wins, Hillary Will Own The Supreme Court for the Next 30 to 40 Years’: ['REAL']\n", + "Iowa’s Des Moines Register endorses Clinton, Rubio: ['REAL']\n", + "Economic Nationalism: Alternative To Globalism: ['REAL']\n", + "Experts Just Uncovered The Top Secret Server Trump Uses To Talk To Russia: ['FAKE']\n", + "White House looks to scientists to sell Iran deal: ['FAKE']\n", + "GOP debate: 's Reality Check Team inspects claims: ['FAKE']\n", + "Travel: Conor McGregor’s Guide To New York: ['REAL']\n", + "Lawmakers Who Have Forgotten Iraq Insist They're Right About Iran: ['REAL']\n", + "Kiev officials forced to declare incomes, Ukrainians threaten revolt: ['REAL']\n", + "Congress and its 'outsiders': The critical struggle over who is really in charge: ['REAL']\n", + "Walnuts Are Drugs, Says FDA: ['REAL']\n", + "Hotel CEO Caught Celebrating Using Government to Make Airbnb Illegal So They Can Price Gouge: ['FAKE']\n", + "Sanders: Democratic Party hasn't been fair to me: ['REAL']\n", + "Bobby Jindal, raised Hindu, uses story of Christian conversion to woo evangelicals for potential 2016 bid: ['FAKE']\n", + "Conservatives in a meltdown: National Review’s confused “Against Trump” issue is an amazing testament to the right’s implosion: ['FAKE']\n", + "Reinventing Democracy in America Starts by Voting, Then Building an Accountability Movement: ['REAL']\n", + "PressTV-Huge blast kills 47 in Pakistan's Balochistan: ['FAKE']\n", + "What is an \"income\" tax and where did it come from? NOT the 16th Amendment!: ['REAL']\n", + "Will Latino loathing of Trump drive a voter movement to swing the election?: ['REAL']\n", + "Drudge goes all in for Trump: ['FAKE']\n", + "New Study Shows Riots Make America Conservative: ['REAL']\n", + "21 dead at Radison Blu hotel in Mali: ['REAL']\n", + "The Reopening Of The Clinton Email Investigation Is More GOP Hype Over Nothing: ['FAKE']\n", + "Anti-terrorism crackdowns may have spurred attackers, Belgian prosecutor says: ['REAL']\n", + "United States – reformation or fracture?, by Thierry Meyssan: ['REAL']\n", + "British PM Refuses To Withdraw Support For Saudi Arabia: ['FAKE']\n", + "Editorial: Presidential stakes are high for nuclear arsenal - The Boston Globe: ['REAL']\n", + "Proof God is on Duterte’s Side!: ['REAL']\n", + "Obama, Erdogan Discuss Need for Close Cooperation to Counter Daesh: ['FAKE']\n", + "Voter Dreading Being Sent Over To Visibly Stupid Poll Worker - The Onion - America's Finest News Source: ['FAKE']\n", + "North Korea Threatens ‘Sacred’ Nuclear War Against Israel if this country continue supporting ISIS: ['REAL']\n", + "Magnificent Jellyfish Gardens Purify The Water While Growing Food: ['REAL']\n", + "Here's why creating single-payer health care in America is so hard: ['REAL']\n", + "Why Koch and Republican donor network won’t back Trump (+video): ['REAL']\n", + "The Iran Deal and the Cost of Political Polarization | RealClearPolitics: ['FAKE']\n", + "A Book Too Dangerous To Read: ['FAKE']\n", + "Gowdy reveals subpoena Clinton claims she 'never had': ['FAKE']\n", + "Walgreens to close 200 stores, boost cost cutting: ['REAL']\n", + "This Will END Hillary’s Campaign, HILLARY CLINTON IS GOING DOWN: ['REAL']\n", + "US Officials, FBI See No Link Between Trump and Russia: ['FAKE']\n", + "‘They Don’t Speak For Me’ — Evangelical PhD SLAMS Religious Right Leaders Supporting Trump: ['FAKE']\n", + "Teacher sickout closes most Detroit schools Monday: ['REAL']\n", + "Anyone from the family who can understand what I speak will be appointed as UP CM: Mulayam Singh: ['REAL']\n", + "Unsurprisingly, this Ku Klux Klan leaflet has a spelling mistake: ['REAL']\n", + "American Dream, Revisited: ['FAKE']\n", + "Lynch's delayed confirmation vote: ['FAKE']\n", + "Benny Morris’s Untenable Denial of the Ethnic Cleansing of Palestine: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cloudy economy rains on Obama's parade: ['REAL']\n", + "GOOGLE head Eric Schmidt's secret strategic plan for election...: ['FAKE']\n", + "High school, middle school kids now use more e-cigs than tobacco: CDC: ['REAL']\n", + "Sanders focuses on gun violence, immigration as 13,000 attend Arizona rally: ['REAL']\n", + "What happened to Carly Fiorina's presidential hopes? (+video): ['FAKE']\n", + "Cruz dominates, Trump falls short again as more states pick delegates: ['REAL']\n", + "Racism is “America’s original sin”: Unless we tell the truth about our history, we’ll never find the way to reconciliation: ['FAKE']\n", + "Kevin McCarthy is a total dope: This bumbling yahoo is about to be second in line to the presidency: ['FAKE']\n", + "Kp Message 10-30-16… “A Few Things”: ['REAL']\n", + "Top Clinton aide Mills reportedly walks out of FBI interview about emails: ['REAL']\n", + "'America Has Lost' in the Philippines as Duterte Calls for Alliance with Russia and China - Pepe Escobar: ['FAKE']\n", + "California's Death Penalty: Mike Ramos v. Kevin Cooper and Proposition 62: ['FAKE']\n", + "The quiet global crisis that scares the State Department: ['REAL']\n", + "Camden Yards briefly closed off as Freddie Gray protests intensify in Baltimore: ['REAL']\n", + "8 Things Congress Actually Did This Year: ['REAL']\n", + "Olivia Newton John's Daughter Is Vocal About Plastic Surgery Addiction...Here Are the Family Photos She Doesn't Show - Independent Journal Review: ['FAKE']\n", + "Cahill vs. Kalma Debut Album Out Now!: ['FAKE']\n", + "Comment on FBI: No link between Trump and Russian government by Christian Zionist: ['FAKE']\n", + "\"Top Five Clinton Donors Are Jewish\" - How Anti-Semitic Is This Fact?: ['FAKE']\n", + "Why Congress Doesn't Really Worry About What Most Americans Think: ['REAL']\n", + "Russia And Syria Blamed For Idlib Bombing Hoax: ['FAKE']\n", + "FBI Sources believe Clinton Foundation case is “likely moving toward an indictment”: ['REAL']\n", + "Trump wins presidency, defeats Clinton in historic election upset: ['FAKE']\n", + "On The Streets Of Baltimore, Trying To Understand The Anger: ['FAKE']\n", + "Where’s the partisan polarization on abortion?: ['REAL']\n", + "Mike Pence Is Fine With Trump Sexual Assault But Offended By Voter Suppression: ['REAL']\n", + "Learning Horrors of War from Vets: ['FAKE']\n", + "Shiite militia says it is close to Tal Afar, which Turkey has warned is off limits: ['REAL']\n", + "Some Early Voters: Changing their Minds: ['REAL']\n", + "20 Foods That Naturally Unclog Arteries and Prevent Heart Attacks: ['FAKE']\n", + "Condell: America’s Moment Of Truth: ['REAL']\n", + "SATAN 2: Russia unvelis an image of its terrifying new ‘SUPERNUKE’ – Western world takes notice: ['FAKE']\n", + "Russia Calls Downing Of Its Plane A 'Planned Provocation': ['REAL']\n", + "9th baby dies after heart surgery at a Florida hospital: ['FAKE']\n", + "RI's YouTube Channel Tops 100 Thousand Subscribers and 60 Million Views - Damir Marinovich: ['REAL']\n", + "Comment on Will Michelle Obama Be The Replacement Nominee If The FBI Email Investigation Ends Hillary Clinton’s Campaign? by marlene: ['FAKE']\n", + "Dems open convention without Wasserman Schultz: ['REAL']\n", + "America at the Crossroads: Abrogation of Democracy: ['REAL']\n", + "Upcoming proposal in Congress for military action must strike Goldilocks-esq, 'just right' tone: ['FAKE']\n", + "Pope brings message of brotherly love to Philadelphia: ['FAKE']\n", + "Voters' dilemma: What happens if it's Hillary vs. Trump?: ['REAL']\n", + "Trump Gives 6 Reasons To Vote For Him: ['FAKE']\n", + "NY Times: Trump Supporters are Threatening a ‘Violent Revolution’ if Hillary Wins: ['REAL']\n", + "Five Filipino hostages freed by Somali pirates reunite with families: ['FAKE']\n", + "Guy Fawkes, The Gun Powder Plot & How False Flags Have Shaped History: ['REAL']\n", + "I'm a black ex-cop, and this is the real truth about race and policing: ['REAL']\n", + "This astonishing chart shows how moderate Republicans are an endangered species: ['REAL']\n", + "Ted Cruz tackles the Wall Street Journal: ['REAL']\n", + "Cory Booker on how America's criminal justice system destroys the American dream: ['REAL']\n", + "Re: Rights? In The New America You Don’t Get Any Rights!: ['REAL']\n", + "OPEC Fails to Agree as U.S. Energy Industry Ramps Up: ['REAL']\n", + "Trump’s audacious Southern spectacle is part of his strategy: ['REAL']\n", + "WW3 Nuclear War Drills World War 3 To Start In Ukraine: ['FAKE']\n", + "Facebook user wastes two hours sharing things to impress his insurance company: ['REAL']\n", + "250,000-year-old artifact: The ultimate evidence of ‘Ancient Astronaut’ technology?: ['REAL']\n", + "Expert: ISIL 'highly likely' to launch gas attack in London: ['FAKE']\n", + "Obama to Propose Protecting 1.4 Million Acres of Arctic Refuge: ['REAL']\n", + "SHOCK STATEMENT: Anthony Weiner SPEAKS, Drops LEGAL NUKE On Hillary: ['REAL']\n", + "Trump Tower Surrounded By Dump Trucks In Anticipation Of Violence: ['FAKE']\n", + "AT&T-Time Warner Merger To Expand Corporate, State Control Of Media: ['FAKE']\n", + "Fox News has no shame: Easily duped wingnuts spout phony science and climate-change lies: ['FAKE']\n", + "Racist Sign Calls For Lynching Black People To Prevent Them From Getting Equal Rights: ['REAL']\n", + "House OKs bill blocking Planned Parenthood funds, amid shutdown worries: ['REAL']\n", + "Debate: NATO's eastward expansion: ['REAL']\n", + "State of the Union recap: Obama sells optimism to nervous nation: ['REAL']\n", + "Tony Blair suggests a second referendum to reverse Brexit: ['REAL']\n", + "Selected Not Elected: The Election Has Been Stolen: ['FAKE']\n", + "Clinton, Trump at First Debate: Was It All America Expected?: ['FAKE']\n", + "Harry Reid endorses Chuck Schumer to succeed him as Senate Democratic leader: ['REAL']\n", + "How Scalia's death could change Supreme Court and Election 2016: ['FAKE']\n", + "What Trump Will Never Understand About Immigrants: ['FAKE']\n", + "Baltimore protests: Crowds stand firm after curfew: ['FAKE']\n", + "VIDEO COMPILATION: Pundits and Politicians Insist Donald Trump Cannot Win Election: ['FAKE']\n", + "Santorum talks 2016, minimum wage increase: ['REAL']\n", + "Kurds Worried Turkey Will Stab Them in the Back as They Fight ISIS: ['FAKE']\n", + "Vicar sacked over orgies, hookers & porn after wife exposes his double life: ['REAL']\n", + "I live in Iran. Here's how sanctions have shaped my life.: ['FAKE']\n", + "Make America Vote Again: ['REAL']\n", + "Russia begins airstrikes in Syria; U.S. warns of new concerns in conflict: ['FAKE']\n", + "Tens of Thousands of Police Expected for Funeral of Slain Officer: ['REAL']\n", + "Walker’s anti-union law has labor reeling in Wisconsin: ['REAL']\n", + "With a bullet: Oil prices headed to the basement: ['REAL']\n", + "WikiLeaks List Exposes At Least 65 Corporate ‘Presstitutes’ Who Colluded to Hide Clinton’s Crimes: ['FAKE']\n", + "Ted Cruz, the master strategist, was no match for Trump's cult of personality: ['REAL']\n", + "Ashutosh attempts suicide at protest rally, rescued while proofreading suicide note: ['FAKE']\n", + "Obama seeks to end sequester cuts, raise spending caps in budget plan: ['FAKE']\n", + "Rieder: Why Stephanopoulos flap matters: ['REAL']\n", + "Netanyahu Defeats Center-Left Rival In Israel's Parliamentary Election: ['REAL']\n", + "Why We Wait For The Future: ['REAL']\n", + "U.S. militia girds for trouble as presidential election nears: ['FAKE']\n", + "Continental Gold: ['REAL']\n", + "Political hatefest: Why the media—and the candidates—are dragging down the campaign: ['REAL']\n", + "Comment on A Chinese Boy With The Ability To See In Pitch Black Dark Baffles Scientists (Video) by Adpres Media - Adpres.net: ['FAKE']\n", + "Three reasons political polarization is here to stay: ['FAKE']\n", + "Badass Patriot Has MASSIVE Surprise For Thieves Who Stole His Trump Sign: ['FAKE']\n", + "Can Libertarian nominees Gary Johnson and Bill Weld siphon votes from Trump?: ['FAKE']\n", + "The Supreme Court Case That Could Gut Obamacare, Explained In 2 Minutes: ['REAL']\n", + "FBI Officials: No Link Between Donald Trump and Putin…: ['FAKE']\n", + "The Democratic Debate Clock: Which Issues Got The Most Time: ['REAL']\n", + "Protesters target Trump buildings in massive street rallies: ['FAKE']\n", + "Election 2016: Open Thread: ['FAKE']\n", + "FBI PANIC! Hillary LIES In First Press Conference While A LEAKED PHOTO From Her Airplane Reveals The Truth: ['FAKE']\n", + "McConnell plan moves Senate closer to deal on Homeland Security funding: ['REAL']\n", + "Louis Farrakhan (Nation of Islam) agrees with Donald Trump about the need for extreme vetting of Muslim immigrants: ['FAKE']\n", + "Michael Moore Owes Me $4.99: ['REAL']\n", + "Baking Soda & Coconut Oil Can Kill Cancer: Eye-Opening Evidence: ['REAL']\n", + "Comment on 65 US ‘journalists’ at a private dinner with Hillary Clinton’s team and John Podesta by Debbie Menon: ['FAKE']\n", + "OCTOBER GUN SALES SEE MASSIVE SPIKE, SET YET ANOTHER RECORD: ['REAL']\n", + "BREAKING: White House Abandons TPP & TTIP: ['FAKE']\n", + "Soros Paid Al Gore MILLIONS to Push ‘Aggressive US Action’ on Global Warming: ['FAKE']\n", + "Facebook Faces High Profile Lawsuit Regarding Facial Recognition Technology ‘DeepFace’: ['REAL']\n", + "Only 3 Countries Left Without a ROTHSCHILD Central Bank: ['REAL']\n", + "Chattanooga shooting proves it's time to arm our Armed Forces: ['REAL']\n", + "Names of Oregon victims released, range in age from 18 to 67: ['REAL']\n", + "BUSTED! Pro-Trump PAC Rep Admits To Voter Suppression Campaign Targeting Blacks, Suburban Mothers: ['FAKE']\n", + "Debate fact-check: Hillary Clinton and Donald Trump's claims reviewed: ['REAL']\n", + "Kentucky Clerk's Office Issues Same-Sex Marriage License: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The map is tough for any Republican. It’s completely daunting for Donald Trump.: ['REAL']\n", + "White House makes formal veto threat against Keystone, ACA bills: ['REAL']\n", + "Nonduality and the Consciousness of 'Things' - Thich Nhat Hanh: ['REAL']\n", + "Why do people on the other side seem so unreasonable?: ['REAL']\n", + "The Republican Party ruined conservatism long before Trump: Why they still don’t get it: ['REAL']\n", + "Obamacare is Meant to Fail in Order to Usher in Government-Run Socialist Health Care: ['REAL']\n", + "Megyn Kelly Special: Trump defends tone, says bid will be ‘complete waste’ if he doesn’t win: ['FAKE']\n", + "Donald Trump’s grandfather ran Canadian brothel during gold rush, author says: ['REAL']\n", + "At least nine protesters arrested after St. Louis police shooting: ['REAL']\n", + "Workplace Violence or Terrorism? CA Massacre Probe Unfolds: ['REAL']\n", + "I’m with Hillary in November: Listen up, fellow Bernie supporters — you must get behind Clinton to stop Donald Trump: ['REAL']\n", + "CodeSOD: The Wisdom of the Ancients: ['REAL']\n", + "U.S. provides options for drawdown of forces in Afghanistan amid ISIS fears: ['REAL']\n", + "The Media Ignores the Good News On Climate Change: ['REAL']\n", + "The NRA-ification of the Republican Party: ['REAL']\n", + "University of Missouri, please immediately fire employees who taunted media: ['REAL']\n", + "Trump & Clinton Were Very Convincing...on How Lousy the Other One Is: ['FAKE']\n", + "Meteor, space junk, rocket? Mysterious flash hits Siberia: ['REAL']\n", + "Democrats see map and math working to their advantage in 2016 Senate races: ['FAKE']\n", + "Hillary Clinton doesn't need to choose between a reassuring campaign and progressive policies: ['REAL']\n", + "Airstrikes Move To Syria, Target More Than Just ISIS: ['FAKE']\n", + "Top US lawmakers strike deal to fast-track trade deals: ['FAKE']\n", + "Leftist Hypocrisy On “Peace, Love, And Equality” BRUTALLY Exposed: ['FAKE']\n", + "Future Obamacare Costs Keep Falling: ['FAKE']\n", + "Yes, Bernie Sanders is not a Democrat — and Hillary represents the very worst of the party: ['REAL']\n", + "ISIS Genocide: Will US Back Up Its Tough Talk?: ['FAKE']\n", + "Gary Johnson can’t name a single foreign leader. Can we stop pretending he’s a real alternative now?: ['REAL']\n", + "More Than 1 Million ‘Check In’ On Facebook To Support The Standing Rock Sioux: ['FAKE']\n", + "Clinton camp issues clarification on deleted emails, claims ‘every’ message was reviewed: ['REAL']\n", + "America's Trump supporters may be lured to Florida and walled in by US government to maintain peaceful transfer of power after election.: ['FAKE']\n", + "There’s nothing suspicious about Trump’s accusers coming forward weeks before the election: ['REAL']\n", + "Re: Vladimir Putin: ['REAL']\n", + "FBI Found \"Tens Of Thousands Of Emails\" Belonging To Huma Abedin On Weiner's Laptop: ['REAL']\n", + "Who won the debate?: ['REAL']\n", + "Rachel Dolezal has a right to be black (Opinion): ['FAKE']\n", + "Tennessee Children with Brittle Bones Suffer in State Care as Mom Charged with SBS: ['REAL']\n", + "Donald Trump May Have Broken The Law To Avoid Paying Federal Income Taxes: ['REAL']\n", + "Who will Hillary Clinton’s ‘basket of deplorables’ comment actually alienate?: ['REAL']\n", + "U.S. officials: No known threat in wake of Paris attack: ['REAL']\n", + "Bad News For Jackson Family As Woman Leaks Star’s Sick $900k Sex Secret: ['FAKE']\n", + "FBI debunks Hillary's Conspiracy Theory: Trump is NOT a Russian Agent: ['FAKE']\n", + "Megyn Kelly Finally Reveals The Details Of Ailes’ Sexual Harrassment: ['REAL']\n", + "‘Most wanted’ drug baron hands himself in, says life on the run ‘got too much’: ['REAL']\n", + "State Polls: Trump Gains DRAMATICALLY | Daily Wire: ['FAKE']\n", + "Johnson & Johnson Loses Yet Another Multimillion Dollar Case Over Baby Powder: ['REAL']\n", + "Former US Attorney for DC: New Hillary Email Probe Was Result of ‘Revolt’ Inside FBI: ['REAL']\n", + "The Daily 202: Ted Cruz’s war with Matt Drudge could become a huge problem for his campaign: ['FAKE']\n", + "Why A Vote For An Establishment Candidate Could Be A Vote For Trump In N.H.: ['FAKE']\n", + "U.S. is hitting Islamic State 'harder than ever,' Obama says: ['FAKE']\n", + "House Republicans Plan Secret Meeting To Discuss Overthrowing Paul Ryan: ['FAKE']\n", + "Inside the war on coal: ['REAL']\n", + "Pope Francis delivers message of 'hope and healing' in address to Congress: ['FAKE']\n", + "Scientists Claim That “Most Cancer Research Is Largely A Fraud”: ['REAL']\n", + "Stop poisoning the race debate: How “respectability politics” rears its ugly head — again: ['REAL']\n", + "NATO calls for more troops for face-off against Putin: ['REAL']\n", + "Sorry, Piers, but Joe Walsh just laid claim to the ‘Musket’ nickname with his post-election call to arms: ['REAL']\n", + "Biden Explains Why Hillary Set Up Her Email Server (This Doesn’t Help Her): ['REAL']\n", + "Trump Victory Necessary to Get US Into World War?: ['FAKE']\n", + "When Nobody Returns: Palestinians Show They are People, Too: ['REAL']\n", + "The Trump Recession: He’s linked himself to potential economic calamity with Brexit stance: ['FAKE']\n", + "Tesla, ‘World’s Safest Car,’ Explodes Like a Bomb: ['REAL']\n", + "Read the Open Letter By Former Federal Prosecutors Criticizing James Comey: ['REAL']\n", + "Do you think there will be as many doom sayers if trump should get in office ?: ['REAL']\n", + "Al Shabaab calls for attack on Mall of America in new video: ['FAKE']\n", + "‘Beyonce, Jay Z, Hillary Clinton – You Don’t Represent All Blacks, Women’: ['REAL']\n", + "The Wild Ideas You Missed While Donald Trump Was Talking: ['REAL']\n", + "Saudi Arabia says farewell to King Abdullah: ['FAKE']\n", + "Supreme Court rules gay couples nationwide have a right to marry: ['REAL']\n", + "Insiders: Rubio wins, Kasich bombs: ['REAL']\n", + "CONFIRMED: Russia deploys Kuznetsov aircraft carrier to defend Syrian coast: ['FAKE']\n", + "Media blackout as hundreds of black teens attack Temple U. students, police, a horse: ['REAL']\n", + "The 6 most important parts of Donald Trump's energy policy: ['REAL']\n", + "Area Liberal No Longer Recognizes Fanciful, Wildly Inaccurate Mental Picture Of Country He Lives In - The Onion - America's Finest News Source: ['REAL']\n", + "When Charlottesville Was Nuked: ['FAKE']\n", + "Comment on Seattle council member proposes a MASSIVE fee hike for pot shops by Steven Broiles: ['REAL']\n", + "‘We The People’ Against Tyranny: Seven Principles For Free Government: ['FAKE']\n", + "Republican Mark Kirk Just Lost His Race Against Tammy Duckworth With A Single Racist Comment (VIDEO): ['REAL']\n", + "Russophobia: War Party Propaganda : Information: ['FAKE']\n", + "A collection of thoughts about American foreign policy: ['REAL']\n", + "Scalia lies in repose at Supreme Court: ['FAKE']\n", + "For the Record's week in review: Trump's list of accusers grows: ['FAKE']\n", + "What history tells us about the health of presidents and candidates: ['REAL']\n", + "Solar-powered Pipe desalinates 1.5 billion gallons of drinking water a year for California: ['REAL']\n", + "PHARRELL WILLIAMS BEGS WOMEN TO VOTE HILLARY: SHE’S DISHONEST, BUT SO ARE YOU: ['REAL']\n", + "NBA Team Cancels Anthem Singer After She Tries Wearing Controversial Race Shirt Onto Court: ['REAL']\n", + "Comment on Canadian Air Force Pilot Snaps A Pic Of A UFO During Flight by Is This What You Think They Would Look Like? Supposed Pictures of Real Extraterrestrials – Collective Evolution: ['REAL']\n", + "NBC's Baghdad Bob: There Is No FBI Investigation of Hillary | Frontpage Mag: ['REAL']\n", + "Sorry, America, but Trump Can Actually Win: ['REAL']\n", + "President al-Assad: United States and its Western allies are to blame for failure of latest ceasefire: ['REAL']\n", + "Astronomers Think They Have Just Discovered Messages Sent from Aliens: ['FAKE']\n", + "Att’y General Loretta Lynch Pleads The 5th When Asked Questions About Obama’s Iran Ransom Payment: ['REAL']\n", + "Trump University 'playbooks' offer glimpse of ruthless business practices: ['REAL']\n", + "Syria casts shadows on 2016 Dems: ['FAKE']\n", + "It’s Going to Change RADICALLY With Silver – HUGE Demand Coming | Cliff High: ['FAKE']\n", + "Wisconsin primary: 5 things to watch: ['REAL']\n", + "Trump is closer to what most Republicans believe than the ‘establishment’ candidates are: ['FAKE']\n", + "The Worst Takes Of 2016 Election: An Unforgiving Retrospective: ['REAL']\n", + "Afraid of What? The Woman Who Accused Trump of Raping Her at 13 Just Dropped Her Lawsuit: ['FAKE']\n", + "WW3 averted? Putin congratulates Trump! [Video]: ['FAKE']\n", + "Clinton takes the fight to Trump: ['FAKE']\n", + "Re: Former Congressman Joe Walsh: “If Trump Loses, I’m Grabbing My Musket”: ['FAKE']\n", + "An open letter to Donald Trump from Ari Fleischer: Five things you need to do now: ['FAKE']\n", + "BREAKING : Wikileaks Reveals More Clinton “Quid Pro Quo” – Bill Meets With Saudi Prince in D.C.: ['FAKE']\n", + "Comment on Hillary Clinton failed to disclose $400,000 in pricey presents, private jets and vacations gifted to Bill by Hillary Clinton failed to disclose $400,000 in pricey presents, private jets and vacations gifted to Bill — Fellowship of the Minds | kommonsentsjane: ['FAKE']\n", + "GAY TRUMP SUPPORTERS getting death threats from gay people who support a candidate who receives multi-million dollar contributions from countries that execute gays: ['REAL']\n", + "The math is with Hillary: She’s surging in the polls — and many Republicans are in denial: ['REAL']\n", + "Noam Chomsky and Ralph Nader Recently Had Their First Public Conversation (Video): ['REAL']\n", + "The Week That Hillary Clinton 2016 Speculation Moved From Trickle To Stream: ['FAKE']\n", + "Boehner's big week: ['REAL']\n", + "Top Clinton Ally Caught Accepting $20k Foreign Donation: ['REAL']\n", + "What is going on with WikiLeaks?: ['REAL']\n", + "Solar Storm Alert: ['REAL']\n", + "The Circus of Liars - America's Three Rings of Evil Clowns: ['REAL']\n", + "Bernie's not-so-secret-weapon: ['REAL']\n", + "Belgian police mount raids; prosecutors acknowledge missed opportunities: ['FAKE']\n", + "VA secretary apologizes for misstating military service to homeless veteran: ['FAKE']\n", + "Ron Paul to Trump: Don't Listen to Neocons!: ['FAKE']\n", + "Trump campaign shake-up: ['REAL']\n", + "Republican convention speakers: Ivanka, Newt: ['REAL']\n", + "Congress clears $1.8 trillion tax and spending bills: ['REAL']\n", + "5 things to watch in tonight’s debate: ['REAL']\n", + "Romney tears into GOP for not criticizing Trump: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "How presidents manipulate the media and the public: ['REAL']\n", + "Fact Check: Trump Is Right that Clinton Might Cause WW3: ['FAKE']\n", + "The White House insists it has a plan to fight Islamic State and that it’s working: ['FAKE']\n", + "Profits & Profiteers – Big Banks, Price Fixing, Profiteering – 30% Price Hike -Poor Farmers – 1940s: ['REAL']\n", + "Hillary’s “Big Tent” is Obama’s “Grand Bargain” on Steroids: ['REAL']\n", + "John McCain: NSA Phone Surveillance Program Is Necessary: ['REAL']\n", + "Charlie Hebdo attack: Three terrorists killed in raids: ['FAKE']\n", + "PayPal Founder Blasts \"Corrupt Media, Intolerant Left\", Defends Trump: ['FAKE']\n", + "Donald Trump and the Disabled Reporter: The whole truth and not the spin put on by the media.: ['FAKE']\n", + "Campaign finance laws may be making political polarization worse by encouraging ‘purist’ donors.: ['FAKE']\n", + "Terrorism Threat: Trump is Right — Profile, Profile, Profile: ['FAKE']\n", + "Why Are Some More Altruistic Than Others? Woman Who Nearly Lost Life In Car Crash Attempts To Find Out: ['FAKE']\n", + "Sources: Hillary Clinton to launch presidential campaign on Sunday: ['REAL']\n", + "Will Hillary Clinton Get America Back on Track?: ['REAL']\n", + "Defense Bill Would Put 100,000 Untraceable Guns On Streets: ['REAL']\n", + "The Quasi-Legal Coup-Hillary Clinton Information Operations In Election 2016: ['FAKE']\n", + "HAPPENING: FBI Reopens Case Against Aggro Granny After New Emails Discovered!: ['REAL']\n", + "Protesting Donald Trump’s Election, Not Wars, Surveillance, or Deportations: ['FAKE']\n", + "Teacher To 11 yr Old: 'I Can't Wait Until Trump Is Elected,He's Going To Deport All You Muslims': ['FAKE']\n", + "Trump on Clinton: 'She took a short-circuit in the brain': ['FAKE']\n", + "Obama’s Definition of “High Integrity”: ['REAL']\n", + "Tonopah Test Range Google Earth imagery 7/22/2016: ['FAKE']\n", + "Australia to hunt down anti-vax nurses and prosecute them for disobeying the medical police state: ['FAKE']\n", + "Mavs Fans Got Mad At Mark Cuban For Bashing Trump. His Response Is Perfect: ['REAL']\n", + "AP: Pence 'Beside Himself,' Wife Enraged Over Trump Remarks: ['REAL']\n", + "The Yale Record Just Published The BEST Non-Endorsement Of A Candidate EVER!: ['REAL']\n", + "Is GOP establishment learning to like Donald Trump? (+video): ['FAKE']\n", + "John Kerry Says It's Unclear Whether Iran Deal Is Within Reach: ['REAL']\n", + "Black Activist Blasts Hillary Clinton Over Wikileaks Revelation: ['FAKE']\n", + "At DAPL, Confiscating Cameras as Evidence of Journalism: ['FAKE']\n", + "Syria's war: How did we get here?: ['FAKE']\n", + "STATE OF GEORGIA FIRES PASTOR BECAUSE OF HIS FAITH; GOVERNMENT DIDN’T “APPROVE” BIBLICAL SERMONS: ['FAKE']\n", + "Shady accounting underpins Trump’s wealth: ['FAKE']\n", + "Two More Hollywood Films For Men That Leave Today’s SJW Movies In The Dust: ['FAKE']\n", + "Legend Art Cashin On A Trump Presidency, The New World Order, Gold, Brexit, The Great Depression And Why We Will See Panic: ['FAKE']\n", + "Dr. David Duke and Prof. Kevin MacDonald on Duke’s overwhelming victory in the debate: ['REAL']\n", + "What's really behind Clinton's Benghazi grilling?: ['REAL']\n", + "Hillary Is The Perfection of a Corrupt System: ['REAL']\n", + "Saudi Arabia Re-Elected, Russia Loses UN Human Rights Council Place: ['FAKE']\n", + "The Hatred that Trump’s Lies will Leave Behind: ['FAKE']\n", + "South Korean naval vessel fires warning shots near North Korean patrol amid high tension: ['REAL']\n", + "Coping With Extreme Weather If You’re Stranded Outside: ['FAKE']\n", + "Iraqis in Mosul Find US Missiles at Captured Islamic State Base: ['FAKE']\n", + "The Story of How the DOJ Tried to Thwart an FBI Investigation Into the Clinton Foundation: ['FAKE']\n", + "OnPolitics | 's politics blog: ['FAKE']\n", + "Food mixology: When eaten together, these foods can boost health: ['REAL']\n", + "The Deteriorating Situation in Ethiopia: ['REAL']\n", + "New Poll Finds Donald Trump Almost Caught Up with Hillary Clinton: ['FAKE']\n", + "Clinton emails on trade deal held until after election - Video: ['REAL']\n", + "How Republicans will choose the next speaker: ['REAL']\n", + "Nerve Disrupting Frequencies Radiating from “Smart” Meters – Information and Perspective: ['REAL']\n", + "Comment on Grinnell College warns against ‘deplorable and problematic’ costumes by Joe: ['REAL']\n", + "Whose Side Is Russia On In Syria?: ['REAL']\n", + "Obama: For All The Things Republicans Blame Me For, Getting Blamed For Rise Of Donald Trump Is \"Novel\": ['FAKE']\n", + "World Proud Of Its Calm, Measured Response To Trump Victory: ['REAL']\n", + "PressTV-US troops could be prosecuted for war crimes: ['REAL']\n", + "The real reason the State Dept is Twitter fighting with the NY Times about Iran: ['REAL']\n", + "Cruz's Methodical Delegate Strategy Narrows Trump's Path To GOP Nomination: ['REAL']\n", + "Hillary Finally Concedes: “This Is Painful and It Will Be for a Long Time”: ['REAL']\n", + "Trump Allows 3 Million People To Escape US: ['FAKE']\n", + "Obama To Limit Police Acquisition Of Some Military-Style Equipment: ['REAL']\n", + "Collusion Between Facebook and Hillary’s Campaign Revealed in Clinton Emails: ['REAL']\n", + "Sanders calls Trump 'political coward' over voter suppression report: ['FAKE']\n", + "Now Live: View Full Text of Job Postings | Economy: ['REAL']\n", + "Life: If You Love Enamel Pins, You’ll Love This Etsy Shop, And If You Don’t Care About Enamel Pins, You’ll Explode Over This Picture Of A Bulldog Puppy, And If That Doesn’t Do It For You, You’ll Lose Your Shit Over This Amazing-Looking Pizza, And If You Don’t, We’ll Find Something For You: ['FAKE']\n", + "Alert News : Putins Army Is Coming For World War3 Against Obama year 2016 New Video!!!: ['FAKE']\n", + "Coconut: The Earth’s Most Widespread Medicinal Fruit Plant: ['REAL']\n", + "Venezuela crisis enters dangerous phase as Maduro foes go militant: ['FAKE']\n", + "Cable news is in trouble, and it’s more about the news than the cable: ['FAKE']\n", + "Ryan flexes muscles in Ways and Means showdown: ['REAL']\n", + "Ho’oponopono: Healing For Ourselves & Our World: ['FAKE']\n", + "Immigration Bill Slow to Stir Foes' Passion: ['REAL']\n", + "Kim Kardashian The Queen Of Selfies Retires Her Booty From Breaking The Internet: ['FAKE']\n", + "Obama vetoes Keystone XL pipeline bill: ['REAL']\n", + "Will Obama recognize Palestinian state?: ['FAKE']\n", + "VIDEO: Proof Hillary’s Frail Health is Becoming an Issue: ['REAL']\n", + "Iraq says it bombed Islamic State leader's convoy: ['REAL']\n", + "Koch Groups To Spend Nearly $1 Billion On 2016: ['FAKE']\n", + "If Guns Make Us Safer, Why Not Let Them Into the U.S. Capitol?: ['FAKE']\n", + "Is Halloween Evil? Why Witches, Occultists And Satanists Celebrate Halloween And Why You Should Not: ['REAL']\n", + "FBI Investigates Saudi Wife-Abusing Clinton Foundation Donor in Straw Donor Scheme: ['FAKE']\n", + "Colorado Cannabis Industry Contributes More to Economy Than All Other Industries: Report: ['FAKE']\n", + "5 facts about consistent conservatives: ['REAL']\n", + "Professor Shares Insights on Paranormal, Cannibalism and Vampires.: ['REAL']\n", + "Hillary Admits In Leaked Email That Clinton Donors Are Funding ISIS: ['FAKE']\n", + "Billionaire: “Single Digit Millionaires” Are Too Poor to Get Justice In America: ['FAKE']\n", + "Planned Parenthood: Abortion pill usage now rivals surgery: ['REAL']\n", + "NeverTrump Radio Host Does 180, Makes BRILLIANT Case for Voting Trump: ['REAL']\n", + "Saudi’s threaten OPEC oil freeze over Iran row: ['FAKE']\n", + "Tsunami Hits New Zealand After Massive 7.8 Earthquake Strikes: ['FAKE']\n", + "Is the US a banana republic? - Putin [Valdai, Part 1 of 1]: ['REAL']\n", + "WATCH As Chris Cuomo Tells Rudy Giuliani: You Live In Fact-Free ‘Trumpland’: ['REAL']\n", + "Would Earth Day’s creator have celebrated this Earth Day?: ['REAL']\n", + "To Survive, Evolve - Russia News Now: ['FAKE']\n", + "Behind anti-Trump protests, worries that America's promise has dimmed (+video): ['FAKE']\n", + "The College Loan Bombshell Hidden in the Budget: ['REAL']\n", + "Trump Vows to Never Change: 'I Am Who I Am': ['FAKE']\n", + "GUEST POST: Why I’m Exceptional & Indispensable – by Hillary Clinton - Rob Slane: ['REAL']\n", + "Trump Campaign Bombs in Virginia, Again: ['REAL']\n", + "Trumpocalypse & 5 Ridiculously Outdated Assumptions Every Statist Makes: ['REAL']\n", + "This Is What Making History Looks Like: ['REAL']\n", + "TRUTH: No Apartheid in Israel, Says Black South African Politician: ['FAKE']\n", + "The full Ackbar: Right warns Obama war plan is a trap: ['FAKE']\n", + "Attacks on abortion providers have increased since the Planned Parenthood videos: ['REAL']\n", + "Hillary Clinton Responds To New FBI Investigation: ['FAKE']\n", + "AMAZING VIDEO : Hispanics for Trump in Miami Storm the Polls, HORNS BLASTING, Shouting “USA! TRUMP!” – TruthFeed: ['FAKE']\n", + "Battle against Islamic State expands as Egypt bombs Libyan affiliate: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fiorina rejects idea of 'affirmative action' in CNN debate change: ['FAKE']\n", + "Israel votes: Netanyahu's last-ditch vow to his base – a dead peace process (+video): ['REAL']\n", + "26 WikiLeaks bombshells on Hillary you need to know: ['REAL']\n", + "The struggle continues for a binding treaty to #StopCorporateAbuse: ['FAKE']\n", + "Clinton, Dems embrace Arquette's equal pay comment: ['REAL']\n", + "Iran, Finland sign 4 MoUs in Tehran: ['REAL']\n", + "White House Defends FBI Director Comey’s Integrity: ['FAKE']\n", + "TRUMP CALLED IT MONTHS AGO: Anthony Weiner threatens national security: ['REAL']\n", + "US military commander: Russian military ‘far more capable’ than Soviet Union’s: ['REAL']\n", + "Don't underestimate Bernie Sanders: ['REAL']\n", + "The Latest On Paris Attack: Manhunt Continues; Brothers Were On No-Fly List: ['REAL']\n", + "Clinton calls for 'common-sense' gun control after Charleston terrorist attack: ['FAKE']\n", + "Comment on WikiLeaks Shocker: Clinton Camp Considering Paul Ryan Relative as Supreme Court Nominee by Richard Johnson: ['FAKE']\n", + "Ireland's historic vote for marriage equality prompts amazing Twitter celebration: ['FAKE']\n", + "Hilarious Cartoon Reveals 2016 Political Version of The “Walking Dead”: ['REAL']\n", + "James O’Keefe releases another Project Veritas video claiming Hillary Clinton campaign is “bird dogging”: ['REAL']\n", + "Unrelenting Ferguson protests pushed year of national change: ['REAL']\n", + "Crushing Hillary: Trump’s Landslide by the Numbers | EndingFed News Network: ['FAKE']\n", + "Bill Clinton suggests Trump slogan racist – but he used the same one: ['FAKE']\n", + "Google Violence at Temple U Popular Across the Country: ['REAL']\n", + "Strong 5.4 Magnitude Quake Hits Central Italy, Rattles Rome: ['REAL']\n", + "Robin Roberts Says While She Was Dying from Cancer a ‘Familiar Voice’ Came From Her Nurse and Brought Her Back: ['REAL']\n", + "Brain Concussions in Children and Adults: What to Know About Vaccine Damage: ['REAL']\n", + "Pakistan: Long arm of ISI needs unsheathing: ['REAL']\n", + "Court rejects Obama immigration plan. Executive abuse of power?: ['FAKE']\n", + "Why Everyone on Facebook Is Checking into Standing Rock, North Dakota: ['FAKE']\n", + "Hillary cancels public appearance due to a large crowd of people chanting \"Lock Her Up!\": ['REAL']\n", + "The big question about Hillary Clinton: What if the FBI is onto her?: ['REAL']\n", + "John Boehner thanks God Cruz didn't win: ['REAL']\n", + "Why Trump's foreign policy resonates with Americans – to a point: ['REAL']\n", + "An LDS Reader Takes A Look At Trump Accuser Jessica Drake, Concludes His Leaders Are “Latter-Day Sissies: ['FAKE']\n", + "Comment on Wikileaks: Bill Clinton BOASTS of Hillary’s ‘Working Relationship’ with Muslim Brotherhood by toddyo1935: ['FAKE']\n", + "Your premier federal government employee and veteran shopping program: ['REAL']\n", + "Memo To Trump And Clinton: Use Tough Love To Win The Millennials: ['FAKE']\n", + "Incredible Discovery: This Fruit Extract Killed Cancer in 48 Hours!: ['REAL']\n", + "How well-meaning political reformers are helping to elect President Trump: ['FAKE']\n", + "Hillary Clinton shatters $100M fundraising goal: ['REAL']\n", + "The detente between Trump and Cruz is definitely over: ['FAKE']\n", + "Inside the Trump-Bush melodrama: Decades of tension and discomfort: ['REAL']\n", + "Rand Paul Supporters Walk Out Of Jeb Bush Speech: ['REAL']\n", + "Ryan on meeting with Trump: 'It’s important we don’t fake unifying': ['FAKE']\n", + "Republicans' fear: 2 more years of gridlock: ['FAKE']\n", + "Romania Points Out Flaws With U.S. Election To Encourage Citizens To Vote: ['FAKE']\n", + "The Worst Case for Republicans: Trump Wins: ['FAKE']\n", + "Sniveling Cowards and NeverTrumpers Mitt Romney and John Kasich Reach out to Trump – TruthFeed: ['FAKE']\n", + "How America is quietly becoming a climate change leader: ['REAL']\n", + "In Consideration of the Supreme Importance of Love: ['FAKE']\n", + "Immigration Standoff May End With Another Congressional Punt: ['REAL']\n", + "LIVE: Hillary Clinton Addresses Nation for First Time Following Presidential Race: ['REAL']\n", + "Donald Trump is failing at basically everything right now. This poll proves it.: ['FAKE']\n", + "Trump Tells GOP Rally In Jerusalem He’ll ‘Make Israel, U.S. Safe Again’: ['FAKE']\n", + "Pro-Trump, anti-Trump groups clash in San Diego: ['FAKE']\n", + "Former U.S. Treasury Secretary Just Warned Trump Could Be Assassinated: ['FAKE']\n", + "New French Law Makes It Illegal To Contact Employees After Work Hours: ['FAKE']\n", + "Liberal pundits blame Debbie Wasserman Schultz, not Bernie Sanders, for Democrats’ division: ['REAL']\n", + "“Wikileaks is the Mossad, Stupid, Not the Russians, We are playing them like a fiddle…” Assange (sort of): ['REAL']\n", + "BREAKING: Obama Now Considering Martial Law Because Of Mass Riots | EndingFed News Network: ['FAKE']\n", + "Sanders draws early support for White House bid from long-time union allies: ['REAL']\n", + "Why Trump’s warning of ‘rigged election’ isn’t credible: ['FAKE']\n", + "Insider Leaks Bill’s 2-Word Nickname For Hillary, Exposes Dirty Sex Habits: ['REAL']\n", + "TRUMPED! LIBERAL NEWS OUTLET BLOOMBERG POLL CONCEDES TRUMP BEATING CROOKED HILLARY IN FLORIDA: ['FAKE']\n", + "Trump and all the other far right leaders are Zionist stooges: ['REAL']\n", + "CONTROVERSIAL NEW ‘ANTI-FAMINE’ GMO POTATO STRAINS APPROVED: ['REAL']\n", + "TRIGGERED: JOURNALIST SNOWFLAKES SCARED TRUMP SUPPORTERS ARE ‘TURNING ON THE MEDIA’: ['FAKE']\n", + "The Clinton Syndrome, Part 2: Can Hillary Escape This Time?: ['REAL']\n", + "Re: Ha! FBI reopening Hillary email case means THIS might happen again soon (Hint: Bill, fire up the jet!): ['REAL']\n", + "FBI Wants you to Believe It Examined 650,000 Emails in 691,000 Seconds: ['REAL']\n", + "Jihadi John: The bourgeois terrorist: ['REAL']\n", + "Don’t underestimate the power of Trump’s rage-fueled rise: ['REAL']\n", + "DNC Chair won't run for Senate in 2016: ['REAL']\n", + "Comment on She’s fit to be President! Hillary had to be helped up *one* step by youknowwho.: ['REAL']\n", + "Remember Those Rumors Megyn Kelly is Leaving Fox News? Well, Her Contract Just Went Public: ['FAKE']\n", + "Donald Trump wasn’t so anti-Iraq war after all. Quelle surprise.: ['REAL']\n", + "The Daily 202: Why Trump sounded more like a strongman than a movement conservative: ['REAL']\n", + "Delegates face death threats from Trump supporters: ['FAKE']\n", + "Hillary Clinton poised to reveal VP pick: ['REAL']\n", + "Police Turn In Badges Rather Than Incite Violence Against Standing Rock Protesters: Report: ['REAL']\n", + "Comment on 21 Things We’ve Learned About Hillary Clinton from Wikileaks That the MSM Won’t Share…But YOU Can! by Lakshmima: ['REAL']\n", + "As His Campaign Crumbles, Trump Is Spending His Day Fighting With MSNBC's Joe Scarborough: ['FAKE']\n", + "Poland Establishing New Territorial Defense Force to Fight ‘Russian Threat’: ['REAL']\n", + "How Hillary Clinton could win: ['REAL']\n", + "Teachers Strike Allowing Children To Sample The Kind Of Free Time They’ll Have On The Dole: ['FAKE']\n", + "Life: 10 Steps To Rolling The Perfect Joint: ['REAL']\n", + "Turkey, Russia Headed for a Military Face-Off?: ['FAKE']\n", + "Democrats weigh how to nudge Sanders out: ['REAL']\n", + "Cardinal Vincent Nichols says: “Britons could learn a lot from the ‘vibrant’ faith of Muslim migrants”: ['REAL']\n", + "Did Democrats really stuff ballot? Here's their answer: ['FAKE']\n", + "Trump's VP search enters frenzied phase: ['REAL']\n", + "Taking Care of Your Eye Health the Natural Way: ['REAL']\n", + "Clinton Says She Was Wrong to Call Half of Trump Supporters ‘Deplorables’: ['REAL']\n", + "Fighting Ghost Fascists While Aiding Real Ones: ['FAKE']\n", + "In campaign chaos, Donald Trump shows his management style: ['REAL']\n", + "A harsh blow to small businesses: Opposing view: ['REAL']\n", + "Sarah Palin endorses Donald Trump's presidential bid: ['FAKE']\n", + "‘He’s Cuban. I’m Mexican.’: Can Rubio and Cruz connect with Latino voters?: ['REAL']\n", + "Cruz Crushes Trump in Wyoming Republican Caucus: ['REAL']\n", + "World War 3 Begins! Trump Elected: ['FAKE']\n", + "Hillary Clintons election fraud finally exposed. California stolen from Bernie Sanders!: ['REAL']\n", + "William Weld: Never Mind Libertarianism, He's Running as Himself: ['REAL']\n", + "Clinton makes history, declares win in Democratic race: ['REAL']\n", + "Cruz confronts pro-Trump protesters in Indiana: ‘He’s taking advantage of you’: ['REAL']\n", + "BREAKING: Donald Trump Says He’s Going to Deport Up To 3 Million Immigrants Immediately: ['FAKE']\n", + "In hats and t-shirts, Trump fans rally in Jerusalem’s Old City: ['REAL']\n", + "Anxiety grows among GOP congressional staffers: ['REAL']\n", + "Pentagon Retreats on Enlistment Bonus Collection Efforts: ['REAL']\n", + "U.S. officials optimistic they will close giant trade deal: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hillary Clinton Attacks Donald Trump for Threatening to Sue Accusers: ['FAKE']\n", + "Cleveland police are out of control, say the feds. Now they're making a deal to change.: ['FAKE']\n", + "Donald Trump stands by Jeb Bush, George W. Bush 9/11 comments: ['REAL']\n", + "Lower Yields and Agropoisons: What is the Point of GM Mustard in India?: ['REAL']\n", + "Obama passes baton to Clinton, stirs up '3rd term' charges: ['FAKE']\n", + "Housing In 2015: Four Reasons For Optimism (And One For Worry): ['FAKE']\n", + "The Intercept Outs Neocon Democrat’s Smear Against Trump as ‘Putin’s Puppet’: ['FAKE']\n", + "Hillary’s Aide Vanishes After WikiLeak Corruption Scandal Huma Life in Danger: ['REAL']\n", + "Aristocracy’s Immunity From Prosecution Disturbs TARP’s I.G.: ['REAL']\n", + "Hillary Ally Offers Strategy On How To Make New York Times Write Positive Coverage: ['REAL']\n", + "White House, NYT leave Bushes out of lead photos from Selma march: ['FAKE']\n", + "Emotional Service Held At Charleston Church Days After Shootings: ['REAL']\n", + "Why Time Magazine’s Joe Klein Is So Wrong About Hillary Clinton: ['REAL']\n", + "5 amazing ways Pope Francis made Republicans squirm yesterday: ['FAKE']\n", + "Charlie Hebdo: The French magazine's long history of polarization (+video): ['FAKE']\n", + "Martin O’Malley is running for president — and on Elizabeth Warren's platform: ['REAL']\n", + "What Hillary Clinton Needs to Tell Voters Who Don’t Want to Have a Beer With Her: ['REAL']\n", + "Rush Limbaugh is cooked: The stunning fall of the right’s angriest bloviator: ['REAL']\n", + "America’s looming freak show: How GOP control in 2015 will terrorize a nation – with no political repercussion: ['FAKE']\n", + "Swansea City ‘will win Premier League at a canter’ confirm pollsters: ['FAKE']\n", + "What is going on with WikiLeaks?: ['REAL']\n", + "Re: Did America Really Pass The Test? – Hillary Clinton Is Going To Win The Popular Vote By A Wide Margin: ['FAKE']\n", + "Neeraj Pandey announces film on 500/1000 ban: “A Wednesday Re-MODIfied”: ['REAL']\n", + "Russia plays down idea of coalition with West to strike ISIS in Syria: ['FAKE']\n", + "Trump cuts off fundraising events for Republican Party: ['REAL']\n", + "Afghan intelligence officials confirm death of Taliban leader Mullah Omar: ['REAL']\n", + "Standing Rock Protests: Police Turn In Badges Rather Than Incite Violence: ['REAL']\n", + "SPECTRE Is Real: Federal Shadow Government: ['REAL']\n", + "Supreme Court throws out conviction for violent Facebook postings: ['REAL']\n", + "Obama oval office speech aims to reassure nation over terror threats: ['FAKE']\n", + "How Planned Parenthood hoax avoids the truth: ['REAL']\n", + "Comment on Clintons Addicted to Privilege: Financial Whistleblower Explains What’s About to Happen to the Economy by marlene: ['REAL']\n", + "Go Ahead, Sue the Government: ['REAL']\n", + "Principal institutes ban after students wear Confederate flag to school: ['REAL']\n", + "Strong organization helps Cruz dominate Colorado delegate hunt: ['REAL']\n", + "Mourning in America—A “Patriot Spring” In Europe?: ['REAL']\n", + "BREAKING: AP Finds Proof Melania Trump Illegally Worked In U.S. PRIOR To Getting Work Visa: ['FAKE']\n", + "Donald Trump rages against the machine: ['REAL']\n", + "JUDICIAL WATCH: MORE CLINTON-ABEDIN EMAIL EXCHANGES OF CLASSIFIED INFORMATION ON UNSECURE SERVER: ['FAKE']\n", + "America’s Senator Jeff Sessions Warns of Worsening Pre-Election Border Anarchy: ['REAL']\n", + "The illuminati card ‘Enough Is Enough’ a harbinger of things to come?: ['FAKE']\n", + "Delta State shooting: Shannon Lamb kills himself: ['FAKE']\n", + "Sean Hannity Loses His Cool on Air and Goes Completely Nuclear on 'Never Trump' Movement: ['REAL']\n", + "How Secure is Your Cellphone ??: ['REAL']\n", + "Reid Won't Seek Re-Election: ['REAL']\n", + "8 Terrifying Plants You Didn’t Know About: ['REAL']\n", + "Why Hillary Won't Unleash World War III - Pepe Escobar: ['REAL']\n", + "After Terrorizing America With Zika Scaremongering, MSM Admits Zika Doesn't Cause Brain Deformities: ['REAL']\n", + "4 Things To Watch At The First Presidential Debate: ['FAKE']\n", + "Ancient Sumerian Writings Reveal The Earth Was Ruled By Eight Immortal Kings For 241,200 Years: ['REAL']\n", + "Losing Trump Tries to Fool Voters with Last Ditch Media Propaganda Scam: ['FAKE']\n", + "New snowstorm, new target: South under siege: ['FAKE']\n", + "FBI FOUND \"TENS OF THOUSANDS OF EMAILS\" BELONGING TO HUMA ABEDIN ON WEINER'S LAPTOP: ['REAL']\n", + "Donald Trump: 'I will be a great unifier': ['FAKE']\n", + "Get Ready For Civil Unrest: Survey Finds That Most Americans Are Concerned About Election Violence: ['REAL']\n", + "Everyone getting hammered tonight for bad reasons: ['REAL']\n", + "Colin Powell (Pronounced “Colon Pao”) Endorses Hillary Clinton: ['REAL']\n", + "SECRET RECORDINGS FUELED FBI FEUD IN CLINTON PROBE: ['FAKE']\n", + "A perfect mashup of “Stranger Things” and “A Charlie Brown Christmas”: ['REAL']\n", + "GOP to Trump: You crossed the line: ['FAKE']\n", + "World's Oldest Person Had Smoked For 76 Years: ['REAL']\n", + "World War 3, Information War, and the End of Pax Americana: Exclusive Interview with Eduard Popov: ['FAKE']\n", + "This election is an unpopularity contest for the ages: ['REAL']\n", + "As gas prices drops, states under increased pressure to hike taxes to replenish transportation funds: ['FAKE']\n", + "Christie, Fiorina suspend 2016 campaigns: ['REAL']\n", + "For The Small Price Of $2.3 Million, You Could Own This Beautiful, Self-Sufficient Island: ['FAKE']\n", + "Economic Racial Disparity in North Carolina: ['REAL']\n", + "The Matrix of Four of The Medicine Wheel: ['FAKE']\n", + "SHAMEFUL: Weather Channel Using Children In New Video To Promote Climate Change Hoax: ['FAKE']\n", + "Old rivals Obama and McCain tussle over Iran: ['REAL']\n", + "Congress in slow lane on auto safety: ['REAL']\n", + "Paris Migrant Campers Increase after Calais Is Shut: ['REAL']\n", + "New Moon In Scorpio: Making A Calculated Effort: ['FAKE']\n", + "SHOCKER!!! Left Wing MSNBC commentator Chris Mathews has just endorsed Donald Trump for president: ['REAL']\n", + "Pressure Is On Trump, Sanders In Crucial Contests Tuesday: ['FAKE']\n", + "Comment on “Isolated Incident” Every Police Dept in America Failed to Meet Minimum Standard for Use of Force by Isaid Dilligaf: ['REAL']\n", + "Report: Russian, U.S. Jets Have Close Encounter Over Syria: ['FAKE']\n", + "You Will Soon Be Obsolete: “Plan Your Future Before THEY Plan It For You”: ['REAL']\n", + "After 3 Years of Suffering 19 Year Old Girl Dies from Gardasil Vaccine Injuries: ['REAL']\n", + "Britain looking forward to bonfire night because it can’t afford to put the heating on: ['FAKE']\n", + "‘That’s the CRAP young people pay attention to.’ Team Hillary trashes millennials #PodestaEmails21: ['REAL']\n", + "Does Bernie Sanders really want to win? Three Democratic debate takeaways: ['REAL']\n", + "Rubio nabs key former Romney aide: ['REAL']\n", + "ISIS claim responsibility for shooting at Texas Muhammad cartoon contest: ['FAKE']\n", + "Comment on AG Lynch told FBI Director Comey NOT to go public with the new Clinton email investigation by Ann Tenna: ['FAKE']\n", + "George Soros begins his color revolution in America, as MoveOn “activists” march against Trump: ['FAKE']\n", + "#BlackLivesMatter: Why movement is its own worst enemy: ['REAL']\n", + "Comments of the Week: Here Comes Trouble: ['FAKE']\n", + "The Amish In America Commit Their Vote To Donald Trump; Mathematically Guaranteeing Him A Presidential Victory - ABC News: ['FAKE']\n", + "Clinton is banking on the Obama coalition to win: ['FAKE']\n", + "Is Brexit never gonna happen? 'Leaked' audio recording reveals Theresa May's 'true' fears about Brexit: ['REAL']\n", + "Mike Brown anniversary: Arrests, state of emergency: ['REAL']\n", + "WHO Cancer Agency Under Fire for withholding ‘carcinogenic glyphosate’ Documents: ['REAL']\n", + "Anti-War Movement Anticipates More War Under A Clinton Presidency: ['FAKE']\n", + "Obama Touts 2015 Successes, Sets 2016 Goals: ['REAL']\n", + "Al Gore Made Nearly $200 Million from the Global Warming Scam — Likely to Become the World's First 'Carbon Billionaire': ['FAKE']\n", + "Prisoner in van heard “banging against walls.”: ['REAL']\n", + "Hillary Clinton Has Brain Damage Confirmed by Abedin and Podesta: ['FAKE']\n", + "Carly Fiorina announces presidential bid: ['REAL']\n", + "Parents Of American Woman Held By ISIS Say They Have Been Notified Of Her Death: ['FAKE']\n", + "5 Key Revelations for Free Thinkers to Consider After Election 2016: ['REAL']\n", + "Obama's long-view foreign policy: why he thinks the US can bend the arc of history: ['REAL']\n", + "Doesn’t Matter WHO Hacked Podesta, If Emails are TRUE: ['REAL']\n", + "Religion & Politics: A Bad Mix: ['REAL']\n", + "Jill's dilemma: ['REAL']\n", + "Hillary Clinton’s Elections 2016 concession speech from New York (FULL, streamed live): ['FAKE']\n", + "Koala gets so excited it runs head-first into a tree: ['REAL']\n", + "According to this college prof, canoes are symbol of cultural appropriation: ['REAL']\n", + "Facebook says users can't stop it from using biometric data: ['REAL']\n", + "Why California's drought hasn't sent food prices soaring: ['FAKE']\n", + "Super Tuesday Brings Harsh Light And Heartaches On The Morning After: ['REAL']\n", + "Where do strained U.S.-Israeli relations go after Netanyahu’s victory?: ['REAL']\n", + "How Donald Trump blindsided the GOP: Inside the uprising the establishment never imagined — and didn’t see coming: ['REAL']\n", + "Is This Why Comey Broke: A Stack Of Resignation Letters From Furious FBI Agents: ['FAKE']\n", + "The Source of our Rage: The Ruling Elite Is Protected from the Consequences of its Dominance: ['FAKE']\n", + "Inside Marco’s Hollow Campaign: ['REAL']\n", + "Obamacare Enrollees Anxiously Await Supreme Court Decision That Threatens Their Coverage: ['REAL']\n", + "Guy On Pills Has 5 Hour Chat With Hand After Girl Told Him “Talk To The Hand” – Wundergroundmusic.com: ['FAKE']\n", + "Trump and Sanders win: We are witnessing a full scale revolt, America: ['REAL']\n", + "BREAKING! — Hillary Clinton looks like a goner!: ['FAKE']\n", + "WORLD WAR 3 Hillary Clinton Foundation Holocaust ISIS Saudi Weapons of Mass Destruction YEMEN: ['FAKE']\n", + "Russia stops shipping Soyuz space rockets to France: ['FAKE']\n", + "Does Kerry want an Iran deal too much?: ['REAL']\n", + "French-Japanese Flawed Steel InReactors Dooms The Nuclear Industry: ['FAKE']\n", + "Russia May Deny LGBT Driver's Licenses: ['REAL']\n", + "Cruz, Trump and Rubio win in Iowa. And now we know who the losers are, too...: ['REAL']\n", + "Black faith is under attack: How to make sense of white supremacy’s Charleston crimes: ['FAKE']\n", + "[WATCH] Hillary Appears Belligerently Drunk in Troubling New Video: ['REAL']\n", + "Bashar al-Assad is losing ground in Syria: ['FAKE']\n", + "Putins Army is coming for World war 3 against Obama year 2016!!! New Video!!! Kopya: ['FAKE']\n", + "The Passion Behind Standing Rock Protest: ['REAL']\n", + "Armstrong: Stop Trying to Make Temple Attacks About Race: ['REAL']\n", + "Re: Liberals Claim Acquittal of Bundys is “Weaponized White Privilege”: ['FAKE']\n", + "Q&A: key questions about EgyptAir flight MS804: ['REAL']\n", + "BARBARIANS AT THE GATE: Muslims from Morocco keep breaking into Spain: ['FAKE']\n", + "To grow the economy, grow small businesses: Bloomberg & Buffett: ['REAL']\n", + "Hillary Clinton Hits Unfavorability High of 60%, Higher Than Trump: ['REAL']\n", + "Israel: Ancient Papyrus Proves Jerusalem Belongs to Israel: ['FAKE']\n", + "Turkey expands anti-Islamic State campaign: ['REAL']\n", + "How the swing voter went extinct: ['REAL']\n", + "American And Saudi Weapons Recoverd From ISIS Positions In Mosul: ['FAKE']\n", + "How come the US keeps killing ISIS No. 2s?: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loretta Lynch becomes first African-American woman AG.: ['FAKE']\n", + "Complete the Sentence: an Exploration of Orin Langelle’s “If Voting Changed Things…”: ['REAL']\n", + "Clinton is close, but Sanders not ready to give up: ['FAKE']\n", + "Picking Mike Pence Really Was A Grand Slam For Donald Trump: ['FAKE']\n", + "Republicans Very Troubled By Clinton Donors See No Conflict With Their Own Dark Money: ['FAKE']\n", + "Comment on 7 Effective Ways To Balance Hormones Naturally by Eat Your Way to Balanced Hormones! - NeilMD.com: ['REAL']\n", + "Insurers use California’s assisted-suicide law to deny treatment for terminal patients: ['REAL']\n", + "Comment on “I’m the Law Today N**ga” — Cop Fired After Using Social Media to Declare Her Racism by Albert Wesker: ['FAKE']\n", + "Suicide Blast at Park Leaves More Than 50 Dead in Lahore, Pakistan: ['REAL']\n", + "Uncollected Pallet Wondering What It Did Wrong: ['REAL']\n", + "Starbucks ‘Unity’ Cup Draws Criticism - The Onion - America's Finest News Source: ['REAL']\n", + "Why Carly Fiorina is on a media blitz: ['REAL']\n", + "Top Democratic economists don't think much of Bernienomics. He doesn’t care.: ['REAL']\n", + "How To Repair Strained Or Broken Relationships: ['FAKE']\n", + "#BREAKING: SECOND Assassination Attempt On Trump In NV; Suspect Detained (LIVE BLOG): ['FAKE']\n", + "If Congress rejects nuclear deal, would US be the pariah? (+video): ['FAKE']\n", + "Crushed: Trump’s Hollywood Walk of Fame Star Smashed With Sledgehammer (VIDEO): ['REAL']\n", + "Trump Reboot? Business Mogul Vows to 'Jumpstart' US Economy: ['REAL']\n", + "Top Iranian nuke negotiator ordered to stop screaming at Kerry: ['REAL']\n", + "Calm Envelopes Baltimore as Curfew Begins: ['REAL']\n", + "Protesters take to streets after Trump rally in California: ['FAKE']\n", + "It’s Not Broken, So Let’s Break It–“California Set To Let Public Schools Teach Primarily In Spanish”: ['FAKE']\n", + "America’s Streets Will Run With Blood- Mike Adams: ['REAL']\n", + "Trump’s campaign just got support from one of the Republican Party’s biggest donors: ['REAL']\n", + "Watch Hillary Clinton’s Concession Speech: ['REAL']\n", + "Obama to Try to Allay Gulf Nation Leaders' Fears about Iran: ['FAKE']\n", + "29 of Hillary's scandals: The early years: ['REAL']\n", + "Vote Vote Vote: ['REAL']\n", + "10 Last Minute Preps When A Disruptive Event Is Brewing: ['REAL']\n", + "Barack Obama, President Oh-bummer: ['REAL']\n", + "High-fat Ketogenic Diet for Weight Loss: ['REAL']\n", + "Obama's Iran deal is now near certain to survive Congress: ['FAKE']\n", + "Biden says Ukrainians 'have a right to defend themselves,' mum on US sending weapons: ['FAKE']\n", + "Obama Administration Smacks Down Enlistment Bonus Repayments After Republican Congress Does Nothing: ['REAL']\n", + "Police Violence Escalates As Provocateurs Infiltrate Standing Rock, #NoDAPL Protests: ['REAL']\n", + "TRUNEWS 10/26/16 Jeremy Wiles | Sing A Little Louder: ['REAL']\n", + "John Boehner and the failure to live up to conservative principles: ['REAL']\n", + "Trump Bollywood Ad Meant To Sway Indian American Voters Is An Hilarious Fail (VIDEO): ['FAKE']\n", + "Tory Councillor Say Homeless People Should Be ‘Eliminated’: ['REAL']\n", + "Comment on Cop’s Attempt to Abuse His Authority During Fit of Road Rage is Shutdown by Informed Citizen by Jynxster: ['FAKE']\n", + "Republicans face challenge in holding on to Senate majority in 2016: ['FAKE']\n", + "5 Reasons Cruz Announced His Candidacy Early: ['REAL']\n", + "“Beware of the Shadow Government”: Ron Paul Advises President-Elect: ['REAL']\n", + "The GOP farce plods along: Why last night’s interminable debate was an affront to the party’s patron saint: ['REAL']\n", + "Fuming over Ryan, some conservative voices turn on the Freedom Caucus: ['REAL']\n", + "Germany's Merkel backs tighter refugee rules amid sex assault protests: ['REAL']\n", + "Human remains found as search continues for 11 service members involved in helicopter crash: ['REAL']\n", + "Russia or the Neocons: Who endangers American democracy? | OffGuardian: ['FAKE']\n", + "Warring Senate and House Republicans see peacemaker in Ryan: ['REAL']\n", + "Bernie Sanders, Hillary Clinton battle for California: ['REAL']\n", + "Comment on How about a trip to Paris this fall? Sure looks lovely this time of year… by Miss Marple: ['REAL']\n", + "Who's Winning The 2016 Race — On Facebook And Twitter?: ['REAL']\n", + "The path to total Dictatorship: America’s Shadow Government and its silent coup: ['REAL']\n", + "Purchasing Loyalty with Foreign Aid: ['REAL']\n", + "Morning Plum: Will GOP pay any political price for budgetary hocus-pocus?: ['FAKE']\n", + "Trump’s starting to panic: Corey Lewandowsi fired as campaign manager amid huge staff shakeup: ['FAKE']\n", + "Russia WW3 Weapon: Nikola Tesla’s Death Ray In Vladimir Putin’s Possession?: ['REAL']\n", + "NATO Considers Russian Warships Sailing in Mediterranean 'Acceptable': ['REAL']\n", + "This Is What the Future of American Politics Looks Like: ['REAL']\n", + "Senate Democrats To FBI: Put Up Or Shut Up About Emails (TWEETS): ['FAKE']\n", + "Trump Supporters Lose Control, Violently Harass Reporters At Rally (VIDEO): ['FAKE']\n", + "Poll: 41 percent of voters say election could be ‘stolen’: ['FAKE']\n", + "Kevin McCarthy drops out of House speaker race: ['FAKE']\n", + "The man who spoke softly but carried a big stick: ['FAKE']\n", + "U.S. drone strike accidentally killed 2 hostages: ['REAL']\n", + "Iran calls for assassination of Netanyahu's children: ['REAL']\n", + "Marco Rubio unveils comprehensive tax plan: ['REAL']\n", + "Arrest Made In Connection To Ferguson Police Shooting: ['FAKE']\n", + "MASSIVE Global Bond Write-Down Coming on Back of Financial Reset — Jim Willie: ['FAKE']\n", + "Trump's terror response has Republicans fretting anew: ['FAKE']\n", + "Worst job in Washington: Obama's SCOTUS pick: ['REAL']\n", + "Al-Qaeda's Assault on Aleppo Continues Despite Lack of Progress: ['FAKE']\n", + "43-Year-Old Can’t Get Over The Amount Of Kids In Local Night Club: ['FAKE']\n", + "Gas prices aren't forever, Obama tells Americans: ['REAL']\n", + "Three Quarters Of Americans Oppose Gun Control: ['REAL']\n", + "Revealed: Several Ku Klux Klan Units Active in Germany: ['REAL']\n", + "Dakota Access pipeline protesters occupy Hillary Clinton campaign HQ: ['REAL']\n", + "Comment on Leaked Email: ‘If She Wins, Hillary Will Own The Supreme Court for the Next 30 to 40 Years’ by mildred.kraus: ['REAL']\n", + "Billionaires fund anti-Trump delegate push: ['REAL']\n", + "The Loosening Grip of DC: ['REAL']\n", + "Memorial Day provides respite from VA controversies, even as new issue brews: ['REAL']\n", + "Hillary Clinton apologizes for e-mail system: ‘I take responsibility’: ['REAL']\n", + "The real reasons Iran is so committed to its nuclear program: ['FAKE']\n", + "The announcement for Wales’ first female bishop attracted quite a crowd: ['REAL']\n", + "Democratic challengers launch attacks against Clinton, party leadership: ['FAKE']\n", + "Fox News Poll: Clinton leads Trump by three points: ['FAKE']\n", + "Moveable Feast Cafe 2016/11/04 … Open Thread: ['FAKE']\n", + "Trump's Victory Proves US Political Class Out of Touch With Electorate: Ron Paul: ['FAKE']\n", + "After nearly five years, Boehner could never land the ‘big deal’ he wanted: ['FAKE']\n", + "Black Millennials: Don’t Help Donald Trump: ['REAL']\n", + "DIY: Learn to Make the Most Powerful Natural Antibiotic Ever – Kills Any Infection In The Body: ['REAL']\n", + "Live Blog: Voting Fraud Exposed Nationwide: ['FAKE']\n", + "The myth of the ‘anchor baby’ deportation defense: ['REAL']\n", + "Ranking the 2016 Republican field: ['REAL']\n", + "A shutout for Donald Trump - The Boston Globe: ['REAL']\n", + "Ex-military intel officer says White House delaying announcement of Bergdahl desertion charge: ['REAL']\n", + "Under speaker pressure, signs pointing to a reluctant Paul Ryan: ['FAKE']\n", + "Donald Trump’s Hollywood Walk of Fame star destroyed by vandals: ['REAL']\n", + "Beyond Syria and Iraq: ISIS is losing ground around the world: ['FAKE']\n", + "Clinton’s challenge will be to balance a hopeful tone with an argument for change: ['FAKE']\n", + "Don’t Root, Root, Root for the Racist, Red-Face Team from Cleveland: ['REAL']\n", + "Latest Posts WikiLeaks Documents Coming From US Intelligence Not Russia, MSM & Democrat Party Dying: ['REAL']\n", + "Putin Says Will Not Abandon Russians in Ukraine to Nationalists: ['FAKE']\n", + "Hillary Clinton Cancels Public Events And Vanishes Amid Media Blackout: ['REAL']\n", + "The Truth About the #Syrianboy Viral Photo. Its really a story of two boys. #OmranDaqneesh: ['REAL']\n", + "Report: Freddie Gray may have intentionally tried to injure self in police van: ['FAKE']\n", + "WIKI: Clinton out of touch, cronyistic, didn't drive car in 35 years, flew all over world but accomplished nothing...: ['REAL']\n", + "WATCH: Louis CK’s EPIC Answer on Trump vs. Hillary: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "When Did the Democratic Party Become Such a Nervous Wreck?: ['REAL']\n", + "Moms march to demand end to police brutality, racial injustice: ['FAKE']\n", + "Can Huckabee Overcome The 'New Car Smell' Of Other Candidates?: ['REAL']\n", + "Body parts found in suitcase left on sidewalk: ['REAL']\n", + "Kentucky election could blot an Obamacare bright spot: ['FAKE']\n", + "This Republican senator visited a mosque to repudiate Donald Trump: ['REAL']\n", + "GOP candidates fight for spotlight ahead of Milwaukee debate: ['FAKE']\n", + "Official Online National Donald Trump Polls Updated in Real-time: ['FAKE']\n", + "DR. MANNY: Water crisis in Flint is just the tip of the iceberg: ['FAKE']\n", + "Florida Voters Approve Medical Marijuana, Reject Federal Prohibition: ['FAKE']\n", + "OnPolitics | 's politics blog: ['FAKE']\n", + "Should America Pardon the National Security State?: ['REAL']\n", + "Trump and the judge: Our view: ['REAL']\n", + "#NoDAPL Spills Over: Musicians Boycott Dakota Access Pipeline CEO’s Record Label & Festival: ['REAL']\n", + "Jeb sides with brother on invading Iraq: Was he ducking the question?: ['REAL']\n", + "Political polarization is what paralyzes us - The Boston Globe: ['REAL']\n", + "Vertical Pools Help Heal Wounded Combat Veterans Seeks Positive Doers To Help Make It Happen: ['REAL']\n", + "Loretta Lynch joins Obama in prodding Senate over NSA: ['REAL']\n", + "Clintons Are Under Multiple FBI Investigations as Agents Are Stymied: ['FAKE']\n", + "Comment on Democrats should ask Clinton to step aside by Toby: ['FAKE']\n", + "Hezbollah’s Candidate Becomes Lebanese President After Sunni Compromise: ['REAL']\n", + "Cher Finally Cracks Time Travel: ['REAL']\n", + "What Are The Bulges Under Your Green Pantsuit, Hillary?: ['REAL']\n", + "Like a good little sharia-compliant female, Prince Charles’ wife Camilla removes her shoes to enter a mosque in Abu Dhabi, but the Prince of Wales keeps his shoes on: ['REAL']\n", + "The phantom earpiece phenomenon: Why presidential candidates are consistently accused of cheating during debates: ['FAKE']\n", + "At least Tesco are giving shoppers a bit of warning this year: ['REAL']\n", + "Trump Gives Victory Speech, Liberals Rediscover Appeal of Limited Government: ['FAKE']\n", + "Senate GOP prepared to replace Obamacare subsidies: ['REAL']\n", + "No Brotherly Love in Philly: Email Scandal Threatens to Mar DNC: ['FAKE']\n", + "Conservatives: SCOTUS Pick More Important Than Senate Majority: ['REAL']\n", + "Michael Moore Owes Me $4.99: ['REAL']\n", + "The Russian media just loves the campaign to demonize Putin: ['FAKE']\n", + "Donald Trump is doing worse with Latinos than the previous 6 Republican presidential candidates: ['REAL']\n", + "Nigerian Novelist Wonders Why Everyone Loves Hillary: ['REAL']\n", + "Paul Ryan is an endangered species: How congressional extremists could easily doom his speakership: ['FAKE']\n", + "Trump’s HUGE Rally Crowds vs HIllary Clinton’s TINY Crowds: ['FAKE']\n", + "Can Republicans govern? Budget 2016 could be biggest test.: ['FAKE']\n", + "As Reproductive Rights Hang In The Balance, Debate Moderators Drop The Ball: ['REAL']\n", + "Re: 13 Year Old: “If Donald Trump Had A Brick For Every Lie Hillary Has Told He Could Build TWO Walls”: ['REAL']\n", + "How Congress finally killed No Child Left Behind: ['REAL']\n", + "Get Ready For A Fight To Replace Scalia: ['FAKE']\n", + "Clinton, Sanders Let Loose in New York Debate | RealClearPolitics: ['FAKE']\n", + "On More than One Issue, GOP's Trump Sounds like a Democrat: ['FAKE']\n", + "Obama administration stops work on immigrant program: ['REAL']\n", + "How To Plan Farmer’s Calendar All Year Round: ['REAL']\n", + "Surprised About Donald Trump's Popularity? You Shouldn't Be: ['REAL']\n", + "#NeverTrump Goes Down in Flames in Final Attempt to Stop The Donald: ['FAKE']\n", + "Hillary To Be Indicted After Election: Trump Responds To FBI Investigation: ['FAKE']\n", + "Jeb Bush 3.0 will crash and burn: Why his new (new) strategy is almost certainly doomed: ['REAL']\n", + "A Tale of 2 Americas: Platforms Show World of Difference Between Dems, GOP: ['FAKE']\n", + "Jeb seeks to shake shadow of Bush family name: ['REAL']\n", + "Michael Klare: Whose Finger on the Nuclear Button?: ['REAL']\n", + "BUILD UP WW3 World War 3 Is Coming Current Situation Analysis: ['REAL']\n", + "Jeh Johnson calls for increased vigilance after Mall of America terror threat: ['REAL']\n", + "Fox News Gets Destroyed While Trying To Blame Hillary Clinton For GOP Email Scandal: ['FAKE']\n", + "Trump Reveals American Muslim Solution: ['FAKE']\n", + "This Year’s Mammogram Month Launched With Devastating Report On Harms, Lack Of Effectiveness: ['REAL']\n", + "Comey’s Clinton Foundation Connection: ['REAL']\n", + "Does The U.S. Government Really Know Who Hacked Democrats’ Emails?: ['FAKE']\n", + "Gen. Petraeus: Biggest threat to Iraq's stability is Iran-backed militias, not ISIS: ['REAL']\n", + "Trump World’s Darkest Side: ['REAL']\n", + "Over 500 Russian and Egyptian Troops Train to Kill Terrorists (Photos) - Boris Egorov - Russia News Now: ['REAL']\n", + "Have You Heard? Scientists Now Growing Human Ears From Apples: ['REAL']\n", + "4 students arrested for Calif. school shooting plot: ['FAKE']\n", + "Most Popular Halloween Costumes Of 2016 - The Onion - America's Finest News Source: ['REAL']\n", + "Fiorina blasts CNN for debate rules that could exclude her despite rise in polls: ['FAKE']\n", + "Black Agenda Report for Week of Oct 31, 2016: ['FAKE']\n", + "Self-Help and the War on Common Sense: ['REAL']\n", + "11 Benghazi takeaways: One for each hour: ['REAL']\n", + "Julian Assange PREDICTS Trump Will Lose – Still Missing Day 12: ['REAL']\n", + "Taxpayers Shell Out $100K to Pay for Cops Caught Eating Weed & Assaulting People in Pot Shop Video: ['REAL']\n", + "Bush donors await green light to jump ship: ['REAL']\n", + "Amnesty Intl: Western Backed Syrian Rebels Must End Unlawful Attacks In W. Aleppo: ['FAKE']\n", + "Obama says he learned of Clinton using private email through news reports: ['FAKE']\n", + "McCain on Trump: 'Foolish' to ignore will of GOP voters: ['FAKE']\n", + "The Trump effect: Jack in the box and Obama's change: ['FAKE']\n", + "Disabled veterans find freedom in water: ['REAL']\n", + "Democrats begin search for candidate who knows how to use email: ['FAKE']\n", + "Lessons from Obama's deal with Iran: ['REAL']\n", + "Hillary Failing at Twitter Today: “Happy Birthday to This Future President”: ['REAL']\n", + "Why early voting could favor Democrats in key states: ['REAL']\n", + "*Breaking: Huma Abedin Thrown Off Hillary’s Campaign Plane!: ['REAL']\n", + "Britain No Longer a Sovereign Democracy: ['REAL']\n", + "Russia Demands Explanation After US Hacks Entire Russian Infrastructure: ['REAL']\n", + "Donald Trump to trek U.S.-Mexico border Thursday: ['FAKE']\n", + "EVIL HILLARY SUPPORTERS Yell \"F*ck Trump\"…Burn Truck Of Daddy Fishing With 2 Yr Son Over Of Trump Bumper-Stickers [VIDEO] » 100percentfedUp.com: ['FAKE']\n", + "Rand Paul shreds Ted Cruz over his showboating antics: “He is pretty much done for”: ['FAKE']\n", + "Donald Trump would ‘strongly consider’ closing some mosques in the United States: ['REAL']\n", + "FBI’s brazen terrorism lie: What the Boston Marathon bombing trial reveals about America’s deluded terror narrative: ['REAL']\n", + "Ben Carson’s Camp Plots Vice Presidential Bid: ['REAL']\n", + "Lawsuits Against Monsanto’s Roundup®: ['REAL']\n", + "Reddit administrators accused of censorship: ['REAL']\n", + "Freddy Krueger Escapes Shooting – Injures Five At Halloween Party: ['REAL']\n", + "Report: It Still Nowhere Near Okay To Act Like Donald Trump - The Onion - America's Finest News Source: ['FAKE']\n", + "Germany: Children in one school required to chant ‘Allahu Akbar’; in another, Christian events eliminated: ['REAL']\n", + "The White House wants to cut methane emissions from oil and gas operations: ['FAKE']\n", + "A semi-radical plan to elect more moderates to Congress: ['REAL']\n", + "Dozens Of Syrian Children Dead After Receiving Measles Vaccinations: ['REAL']\n", + "Here’s the Best Way to Stop Trump—and Save Republicans in the Senate and House: ['FAKE']\n", + "Devastating Wiki Leaks Show Scope Of Clinton Cover-Up [Video]: ['REAL']\n", + "Defense Secretary: US Talking to Turkey About Future Role in Raqqa: ['REAL']\n", + "Here's Why All These Political Cattle Calls Matter: ['REAL']\n", + "Shiny Syrian Or White Rubble? This Viral Photo Is Dividing The Internet: ['REAL']\n", + "More conservative Republicans say they won't back Boehner for speaker: ['REAL']\n", + "Democrats are actually more enthusiastic than Republicans about trade: ['REAL']\n", + "Bill O'Reilly claims false, admits Fox News: Why that won't hurt him at Fox: ['FAKE']\n", + "Turkish PM says deadly attacks likely were suicide bombings: ['REAL']\n", + "Immigration crackdown splits GOP: ['REAL']\n", + "Project Veritas 4: Robert Creamer's Illegal $20,000 Foreign Wire Transfer Caught On Tape: ['FAKE']\n", + "After strong debate, Christie, Bush resume attack on Rubio: ['REAL']\n", + "Just When You Thought It Was Safe To Swim, Scientists Discovered A Two-Headed Shark: ['REAL']\n", + "Politicians Will Feel the Heat From Rising Temperatures: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "UN agency food aid vouchers in Syrian crisis diverted and sold for cash: ['FAKE']\n", + "Voters Repudiate Clinton: ['FAKE']\n", + "30th Infantry Division: “Work Horse of the Western Front” ~ 1951 US Army; The Big Picture TV-211: ['REAL']\n", + "The FBI, the DHS’s Customs and Border Protection, the Secret Service, and the Israelis are in cahoots: ['REAL']\n", + "Comment on How Reiki Actually Works (The Science Part) by Energy Healing-Reiki: ['REAL']\n", + "Mobilizing in Guatemala: ['FAKE']\n", + "Kenyan refugee kills co-worker, self: ['REAL']\n", + "Amid immigration questions, how will GOP Hispanics vote?: ['FAKE']\n", + "Say What?! FBI Never Destroyed Laptops of Clinton Aides – AGENTS REFUSED TO DO IT: ['FAKE']\n", + "Swiss volunteer firefighters: It’s ok to be a bit tipsy when reporting for duty: ['REAL']\n", + "Planned Parenthood’s lobbying effort; pay raises for federal workers; and the future Fed rates: ['FAKE']\n", + "Is the Fed Fix in for the election?: ['FAKE']\n", + "Police Use Tear Gas, Arrest 9 During Protests In St. Louis: ['REAL']\n", + "Kasich’s Ohio Win Pushes G.O.P. Race Closer to Chaotic Convention: ['REAL']\n", + "Hillary and Trump Could Both Be Criminally Charged After The Election: ['FAKE']\n", + "‘We Caved’: ['REAL']\n", + "Bishop Williamson on Putin, Putin’s Meeting with Pope Francis, and the Fr. Gruner-Russian Meeting: ['FAKE']\n", + "Hillary Clinton accused of stealing furniture from the State Department: ['FAKE']\n", + "Newt Gingrich: If Hillary Clinton Runs In 2016, Republicans 'Incapable Of Competing': ['FAKE']\n", + "Hillary supporters: We're excited, too, but also practical: ['REAL']\n", + "Artist's Impression Of \"The Clinton Machine\" - Russia News Now: ['REAL']\n", + "Report: Obama Administration Makes 'No Progress' On Drone Program Transparency: ['REAL']\n", + "Political Party of Anarchists, Libertarians, Hackers, and Computer Geeks to Take Power in Iceland: ['FAKE']\n", + "Despite Constant Debate, Americans' Abortion Opinions Rarely Change: ['FAKE']\n", + "Congressional Republicans are outraged that the EPA wants to protect our drinking water: ['FAKE']\n", + "CNN basically ignored Ben Carson at Thursday’s debate. And that’s just fine.: ['REAL']\n", + "AIDS “Patient Zero” Not the Source of the Outbreak: ['REAL']\n", + "Is US now a climate change leader? How Obama's new plan measures up.: ['FAKE']\n", + "Hillary visits voters early polling stations, thus BREAKING THE LAW on camera – yet again nothing happens to her: ['REAL']\n", + "VA fails to properly examine thousands of veterans: ['REAL']\n", + "Is Campus Rape Really An Epidemic?: ['REAL']\n", + "Why America might elect a president it doesn't like: ['REAL']\n", + "Obama's community college proposal: dead on arrival?: ['REAL']\n", + "Donald Trump's obsession with himself: ['FAKE']\n", + "“Organic” Food From China Found To Be Highly Contaminated: ['REAL']\n", + "Nintendo Cuts Full-Year Sales, Operating Profit Forecasts: ['REAL']\n", + "AT&T sold access to customer data to law enforcement – report: ['FAKE']\n", + "ObamaCare Opt-Out Act: Let all Americans make their own health care decisions: ['REAL']\n", + "Another Primary Night's Results Confound (At Least Some) Expectations: ['REAL']\n", + "Being an utter cock no barrier to success: ['REAL']\n", + "Must Read of the Day – Dennis Kucinich’s Extraordinary Warning on D.C.’s Think Tank Warmongers: ['FAKE']\n", + "This Election is Not About Trump, Its about a Giant Middle Finger to Washington DC.: ['REAL']\n", + "One Veteran’s War on Islamophobia: ['FAKE']\n", + "Morning Joe Destroys Corrupt Clinton Foundation (Laughable) “Total Corruption”: ['REAL']\n", + "Johnson & Johnson Lose Third Multimillion Dollar Case Over Baby Talc: ['REAL']\n", + "Funding shortfall for Social Security disability program: Is it real?: ['REAL']\n", + "Can the Oligarchy Still Steal the Presidential Election?: ['FAKE']\n", + "Dentist Waiting Room Contains Disproportionate Number Of Boating Magazines: ['REAL']\n", + "Most non-Trump GOP voters say they would consider independent candidate: ['REAL']\n", + "A very accurate pisstake of craft beer culture: ['REAL']\n", + "Marco Rubio doesn’t think sexual orientation is a choice but wants states to decide marriage: ['REAL']\n", + "How Putin Derailed the West : Information: ['FAKE']\n", + "Downing of Russian plane reveals potential for more conflict: ['FAKE']\n", + "Retaliating For Killings, Egypt Launches Airstrikes Against ISIS In Libya: ['REAL']\n", + "President Obama wants to disarm America: ['REAL']\n", + "Sanders says 'tough guy' Trump should reconsider, still debate him: ['REAL']\n", + "Heard of George Pataki? Every four years he thinks about running for president.: ['REAL']\n", + "VIDEO : Hillary Worshipper Rachel Maddow IN TEARS Over Reopened FBI Investigation – TruthFeed: ['REAL']\n", + "Netanyahu scores stunning victory – but at what cost? (+video): ['REAL']\n", + "Netanyahu blasts Obama's Iran nuclear deal: ['FAKE']\n", + "Will Carlos Danger Cut a Deal? - Russia News Now: ['REAL']\n", + "Three local military veterans to receive recognition: ['REAL']\n", + "The ultimate triumph: President Trump: ['REAL']\n", + "Pope Francis Commemorates 500th Anniversary Of Protestant Reformation: ['FAKE']\n", + "US Claims Four Arms Ships From Iran to Yemen Caught in Past 18 Months: ['FAKE']\n", + "WHO Cancer Agency Under Fire for withholding ‘carcinogenic glyphosate’ Documents: ['REAL']\n", + "Donald Trump to leave America for a younger, sexier country: ['FAKE']\n", + "Markets collapse as Donald Trump is projected to win: ['FAKE']\n", + "Many Opt to Take Social Security Before Full Retirement Age: ['REAL']\n", + "Walling them out, or walling us in?: ['FAKE']\n", + "Is your promising internet career over now Vine is dead? Write for NewsBiscuit to cheer yourself up: ['FAKE']\n", + "Trump's women problem: ['FAKE']\n", + "Venezuelan Police Officer Fatally Shot in Anti-Government Protests: ['REAL']\n", + "Clinton Staff Readies EMP Launch To Disable All Nation’s Electronic Devices - The Onion - America's Finest News Source: ['FAKE']\n", + "Team Clinton: Let’s Talk About Russia, Not the WikiLeaks Emails: ['FAKE']\n", + "Romney moves to reassemble campaign team for ‘almost certain’ 2016 bid: ['FAKE']\n", + "MSNBC, DNC reach deal to host Democratic debate in New Hampshire: ['REAL']\n", + "Deep Fried Offshore: ['REAL']\n", + "TOP DOCTORS: CHEMOTHERAPY ONE OF DOZENS OF PROCEDURES SHOWN TO ‘GIVE NO BENEFIT’: ['REAL']\n", + "Are We on the Eve of Total Life Extinction?: ['REAL']\n", + "Understanding John Boehner, reluctant ringleader of GOP shutdown politics (+video): ['FAKE']\n", + "“Ignorant scum who disagree with me should be more tolerant” complains voter: ['REAL']\n", + "Bob Dole on Ted Cruz: 'Nobody likes him': ['REAL']\n", + "US Engineers Prepare Bionic Device to Generate Electricity by Walking: ['FAKE']\n", + "Election 2016: Rand Paul poised to launch campaign: ['REAL']\n", + "Hillary Clinton has a deep commitment.: ['FAKE']\n", + "Paul Ryan will face 'monumental obstacles' as speaker: ['FAKE']\n", + "7 Times Obama Failed to Support Israel: ['FAKE']\n", + "Trump, RNC announce joint fundraising deal: ['REAL']\n", + "Not Guilty: The Power of Nullification to Counteract Government Tyranny: ['FAKE']\n", + "State Dept. Admits Official Censored Sensitive Iran Nuclear Deal Video: ['FAKE']\n", + "Must Read of the Day – The Clinton Presidency Is Going to Be a Miserable Slog: ['FAKE']\n", + "Iraqi Army: US Hindering Advance on Mosul: ['REAL']\n", + "Hillary Clinton Appears Disoriented And Confused At New York Airport Day Before Presidential Election: ['REAL']\n", + "Election results: Bevin wins in Kentucky, Ohio rejects pot: ['REAL']\n", + "Paul Manafort resigns as Trump campaign chairman after Breitbart shake-up: ['FAKE']\n", + "James Bond wouldn’t make the grade in modern MI6, says Britain’s top spy: ['REAL']\n", + "British firm aims to open immigration detention center near US-Mexico border: ['FAKE']\n", + "Merrick Garland’s instinct for the middle could put him in the court’s most influential spot: ['REAL']\n", + "Comment on Shocking video shows Europe’s “refugee crisis” is a Muslim invasion by Refugees Invasion of Europe | Justice4Poland: ['FAKE']\n", + "Trump to African Americans: 'What Do You Have to Lose?': ['FAKE']\n", + "Obama to name Marine Gen. Dunford chairman of Joint Chiefs of Staff: ['REAL']\n", + "Rout has Ukraine pleading for peacekeepers: ['FAKE']\n", + "Hot dogs, bacon and other processed meats cause cancer, World Health Organization declares: ['REAL']\n", + "Simon Parkes Updates: Swiss Earthquakes and DOS attacks: ['FAKE']\n", + "17 biblical rules for marriage the Kim Davis set chooses to ignore: ['FAKE']\n", + "The Modern History of ‘Rigged’ US Elections: ['FAKE']\n", + "Rubio, Cruz, Christie Improve Their Standing In Third GOP Debate: ['REAL']\n", + "Americans Don't Like New Congress Any Better Than The Last One: ['REAL']\n", + "Million-dollar donors pump huge sums into 2016 White House race: ['FAKE']\n", + "Currency Crisis: Alasdair MacLeod On The Vexed Question of the Dollar: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rural Nepal devastated by earthquake still awaits aid: ['REAL']\n", + "Democrats & Republicans Just Joined Forces To Condemn Comey’s Partisan Smears: ['FAKE']\n", + "Is the GOP's stop Trump campaign too late?: ['REAL']\n", + "NYPD Source: Weiner Laptop Has Enough Evidence “to Put Hillary … Away for Life”: ['FAKE']\n", + "Rubio battles Cruz for Iowa edge: ['FAKE']\n", + "Is It Safe To Use Expired Prescription Drugs?: ['REAL']\n", + "Scientists Find A Plant That Could Treat Diabetes And Kill Cancer Cells: ['REAL']\n", + "TREASON: This Election Fraud Goes All the Way TO THE TOP! — Bill Holter: ['REAL']\n", + "Insiders: Marco Rubio crashed and burned: ['REAL']\n", + "Arizona: “Poster Child” for ObamaCare’s Failures: ['FAKE']\n", + "Trump's New Ad Portraying 'Every Mother's Worse Nightmare' is Nothing Short of Chilling: ['FAKE']\n", + "How WiFi & Other EMFs Cause Biological Harm: ['REAL']\n", + "One Photo Sums Up How Differently America Treats People Of Color And The White Bundy Militiamen: ['REAL']\n", + "Elizabeth Warren's speech attacking Donald Trump made a bigger argument about Republicans: ['FAKE']\n", + "Clinton Goes After Republican Vote In Rare Fox News Interview: ['REAL']\n", + "A standard dejection in the IRS help line: ['REAL']\n", + "About Time! CNN Fires Donna Brazile for Rigging Debates, Giving Hillary Questions in Advance: ['FAKE']\n", + "Assad Says The \"Boy In The Ambulance\" Is Fake - This Proves It: ['REAL']\n", + "The Dems’ lethal weapon: Elizabeth Warren is the only Democrat that can cut Donald Trump down to size: ['FAKE']\n", + "poll: Alarm, anxiety: ['REAL']\n", + "Erdogan Checks in with Obama Before Bombing Syria: ['REAL']\n", + "Paul Ryan, a highway bill, and the political virtue of patience (+video): ['FAKE']\n", + "'Repugnant': Families of War Dead Demand Apology From Trump: ['FAKE']\n", + "Juror 4: Oregon standoff prosecutors failed to prove ‘intent’ to impede federal workers: ['REAL']\n", + "Boaty McBoatface II? P&O bravely asks the public to name its new ferry: ['FAKE']\n", + "Hillary has built the biggest big-money operation ever: ['REAL']\n", + "Hillary Clinton's first test: ['REAL']\n", + "There’s wildly conflicting information about what FBI actually found in renewed Clinton email probe: ['REAL']\n", + "If you think our media is racist, wait till you meet my grandfather, Prince Harry tells Meghan Markle: ['REAL']\n", + "Republicans keep scanning the horizon for path to scrap, replace ObamaCare: ['FAKE']\n", + "An open letter to Mr. Khizr Khan: ['REAL']\n", + "Protesters try to block access to Trump rally in Arizona, ahead of big primary in border state: ['REAL']\n", + "Count on Wide-Open 2016 Debate Over U.S.’s Role in the World: ['FAKE']\n", + "U.S. Special Forces Join Fight For Mosul: ['REAL']\n", + "Why Obama is changing tune on pulling troops from Afghanistan: ['REAL']\n", + "Canada Posts Perfect Tweet After Immigration Website Crashes: ['FAKE']\n", + "Is Iran ‘already violating’ the nuclear deal by ‘illegally testing ballistic missiles?’: ['FAKE']\n", + "Saudi Arabia Should Continue to Seek New Revenue Sources - IMF: ['FAKE']\n", + "‘McCarthyism’ Rides Again. And It's Again Poisoning the Foundations of a Free Society in the US - Justin Raimondo: ['REAL']\n", + "As Democrats Grow Nervous, Clinton Tries To Appeal To Party Leaders: ['FAKE']\n", + "China’s Growing Amphibious Capabilities (two-parts video report): ['REAL']\n", + "BLACK VETERANS FOR TRUMP, too!: ['FAKE']\n", + "The all-American terror of Donald Trump: Inside the nightmare ideology that’s made him a hero to white fundamentalists: ['FAKE']\n", + "Aiming to break ISIS, dollar by dollar: ['FAKE']\n", + "ATTENTION WESTERN WORLD: If You Care About Your Country’s Security, Make Sure Everyone Gets Netanyahu’s Important Message: ['REAL']\n", + "Why is Paul Ryan miffed about new budget deal?: ['REAL']\n", + "US Airstrike Killed Five Al-Qaeda Members in Yemen on October 21 - CENTCOM: ['FAKE']\n", + "The Only Way to Save the World is to Save Yourself: ['FAKE']\n", + "NO jail time for Muslim migrant who DUMPED BABY in road and left it for dead: ['FAKE']\n", + "Re: Schools All Over America Are Closing On Election Day Due To Fears Of Violence: ['REAL']\n", + "Trump Mocks Biden's Dare To Take Him 'Behind the Gym': ['REAL']\n", + "Obamacare Enrollees Anxiously Await Supreme Court Decision That Threatens Their Coverage: ['REAL']\n", + "Clinton’s Iowa dilemma: ['REAL']\n", + "Why Russia’s army can’t complete its modernization program: ['REAL']\n", + "Mormon Church Backs LGBT Protection: ['REAL']\n", + "Small Stocks Threaten Breakdown – Can They Hang On?: ['REAL']\n", + "Black Lives Matter LOSES: America’s Respect For Police SURGES: ['REAL']\n", + "Clinton Snaps as Bernie and Trump Supporters Join Forces to Disrupt Rally: ['REAL']\n", + "Iran’s Zarif to hold talks with Russia’s Lavrov on Syria in Moscow: ['FAKE']\n", + "Anti-Trump protests are paid and staged, Craigslist reveals: ['FAKE']\n", + "Islamic State claims responsibility for the Brussels attacks: ['FAKE']\n", + "The Clinton FBI Investigation Just Got Real: ['FAKE']\n", + "5 Reasons to Try Acupuncture for Baby Eczema: ['FAKE']\n", + "Cruz dares Trump to sue him over abortion ad, vows to run it 'more frequently': ['REAL']\n", + "Charleston Church Holds First Service Since Shootings: ['REAL']\n", + "Rolling Stone debacle shows how hard, and needed, sex assault reporting is (+video): ['REAL']\n", + "Walmart Gives 500,000 Workers A Raise: ['FAKE']\n", + "An open letter to the Commission on Presidential Debates: Bring on instant replay!: ['FAKE']\n", + "Federal Employee With Stage IV Cancer May Lose Job For Taking Medical Marijuana: ['REAL']\n", + "Gay and lesbian troops will be protected by new Pentagon policy: ['REAL']\n", + "We must call him a terrorist: Dylann Roof, Fox News and the truth about why language matters: ['REAL']\n", + "Tens of Thousands of People Just Got Fooled By FAKE Ballot Without Trump’s Name On It: ['FAKE']\n", + "Love Him Or Hate Him: Trump Is The Revolution Against The Establishment: ['REAL']\n", + "MI5 Chief Gives First Ever Interview to Press, Hypes 'Aggressive Russia' - Jason Ditz: ['FAKE']\n", + "Russia is Hoarding Gold at an Alarming Rate — The Next World War Will Be Fought with Currencies: ['REAL']\n", + "Sustainable salt water battery won’t corrode and can power your home for 10 years: ['FAKE']\n", + "Ever Google Yourself? Do a “Deep Search” Instead, but brace yourself for the results: ['FAKE']\n", + "Financial Whistleblower Explains What’s About to Happen to the Economy: ['REAL']\n", + "Comment on 4 Fascinating Things Quantum Physics Does In Nature by para kazanmak: ['REAL']\n", + "Clinton campaign blames FBI director for loss to Trump: ['FAKE']\n", + "Readings in the Jewish Zionist Control of the United States: Interviews with Francis Boyle, James Petras, Kim Petersen: ['FAKE']\n", + "2 killed, 8 terror suspects held in France terror raid: ['FAKE']\n", + "Shocking! Hillary’s Henchwoman Sold Up the River To Save Her Bacon!: ['FAKE']\n", + "Janet Reno, First Female US Attorney General, Dies At 78: ['REAL']\n", + "How to Rig an Election: James O’Keefe Expose’- Follow the Money: ['FAKE']\n", + "OBSTRUCTION OF JUSTICE: The Clintons’ Long History Of Losing Documents: ['REAL']\n", + "Lincoln Chafee Ends His Presidential Campaign: ['FAKE']\n", + "HUGE Air Drill, Over 130 Command Centers in Russia, CIS on Alert: ['FAKE']\n", + "After Vets Fight War, Feds Demand Money Back: ['FAKE']\n", + "Here Are Some Key People to Watch in 2015: ['FAKE']\n", + "Super Tuesday II: Clinton sweeps Florida, Illinois, Ohio and North Carolina; Rubio quits after Trump wins Florida: ['FAKE']\n", + "Hillary Clinton to turn over private email server to Justice: ['FAKE']\n", + "Barney Frank Powerfully Disproves Ben Carson's Comments On Homosexuality: ['REAL']\n", + "Need to Burn Fat? Eat Dinner Early or Skip It to Help Weight Loss: ['REAL']\n", + "Mark Crispin Miller, a professor at New York University, explains how US elections are stolen:: ['REAL']\n", + "Can The American People Defeat The Oligarchy That Rules Them?: ['REAL']\n", + "Hillary Clinton Wants a Strong Russia. Wait, what did she say?: ['REAL']\n", + "How Workplace Injuries Are Adding To Income Inequality: ['REAL']\n", + "Obama says Trump 'unfit' for presidency: ['FAKE']\n", + "Supreme Court declares same-sex couples' 'fundamental right' to marry: ['REAL']\n", + "White House to host counterterrorism summit Feb. 18: ['REAL']\n", + "Moronic Trump Campaign Thinks Reopened Clinton Email Investigation Will Save Them: ['FAKE']\n", + "VP vetting? Trump meets with Sen. Joni Ernst: ['FAKE']\n", + "Russian Report Warns: American Revolution Has Now Begun, May Last Entire Decade: ['FAKE']\n", + "Four ways to fix American politics: ['FAKE']\n", + "Comment on 11 Things To Let Go Of Before The New Year by 11 Things To Let Go Of Before The New Year – Motivate3.com: ['FAKE']\n", + "Sad Hillary Clinton Finally Concedes To Trump Publicly: ['REAL']\n", + "Trump Adviser Says Israeli Settlements 'Not Illegal': ['FAKE']\n", + "Can Libertarian Rand Paul Win A Republican Primary?: ['REAL']\n", + "UNsilenced: Whistleblower Exposes UN Culture of Corruption: ['REAL']\n", + "Charles Krauthammer: Obama: Charlie who?: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "How To Open Your Chakras – As Explained By A Children’s Show [Watch]: ['REAL']\n", + "Feudalism – Medieval and Modern: ['FAKE']\n", + "The long history of linking climate change to American security: ['REAL']\n", + "Russia And NATO Engage In One Of The Largest Military Build-Ups Since The Cold War: ['REAL']\n", + "Punishment Is Violent And Counterproductive: ['REAL']\n", + "May puts nation on high-poppy alert: ['REAL']\n", + "Why Putin praised Trump (Opinion): ['REAL']\n", + "Two Reasons Trump Could Actually Win (And Three Reasons Why He Won’t): ['REAL']\n", + "Jeh Johnson on DHS Impasse: Congress Jeopardizes National Security: ['REAL']\n", + "President Trump! A nightmare of the Ukrainian politicians! (English subs): ['FAKE']\n", + "Josh Fox on Dakota Access Pipeline Standoff: ‘Where the F*** Is Hillary Clinton Right Now?’: ['REAL']\n", + "US military: 'Reasonably certain' airstrike killed notorious ISIS militant 'Jihadi John': ['FAKE']\n", + "UVA Suspect Faces 1st Degree Murder: ['REAL']\n", + "Blasphemy and the law of fanatics: ['REAL']\n", + "Party insiders give Clinton early, commanding delegate edge: ['REAL']\n", + "Chris Christie kicks off his comeback tour in N.H., going all-in on entitlement reform: ['REAL']\n", + "Russian Defence Minister in India | Russia & India Report: ['FAKE']\n", + "Democratic debate 2015: Hillary Clinton and Bernie Sanders finally face off: ['REAL']\n", + "Susan Rice: U.S. Must Integrate LGBT Rights into Gov’t and Foreign Policy: ['REAL']\n", + "GOP Presidential Contenders Stay Classy With Major Shift In Debate Tone And Pitch: ['FAKE']\n", + "Police arrest 141 in crackdown on North Dakota pipeline protesters: ['FAKE']\n", + "White: ['FAKE']\n", + "Cannabis Protects The Brain From Traumatic Injuries And Concussions, Study Finds: ['REAL']\n", + "Clinton campaign tries to use report to exonerate candidate in email scandal: ['FAKE']\n", + "Terror trail? Feds probe digital profile of SoCal massacre suspects: ['REAL']\n", + "Your election night survival guide: what to expect as polls close: ['FAKE']\n", + "Orlando gunman who pledged loyalty to ISIS was ‘homegrown’ extremist radicalized online, Obama says: ['FAKE']\n", + "Biden and Trump Agree to Fight Pistol Duel--Final Arrangements Pending: ['FAKE']\n", + "Russia Has Called the War Party's Bluff :: ['FAKE']\n", + "Congressional leaders pushing debt limit plan, ahead of speaker vote: ['REAL']\n", + "Radio Derb Transcript For October 21 Up: The Magic Bricks Of PS 199, Et Cetera: ['REAL']\n", + "Be Sure to Join Our Election Night Live Blog/Open Thread Tomorrow Evening: ['REAL']\n", + "Why House Democrats think Donald Trump can deliver them big gains: ['FAKE']\n", + "Look What Students FORCED To Do After Muslims FLOOD Germany: ['REAL']\n", + "The unemployment rate is now lower than it was at any time during Reagan's presidency: ['REAL']\n", + "Elizabeth Warren declares herself ready to be Hillary Clinton's running mate: ['FAKE']\n", + "Elizabeth Warren: Why the media won’t take no for an answer: ['FAKE']\n", + "DNC Renews Lawsuit Against RNC Over Voter Intimidation (VIDEO): ['REAL']\n", + "Press TV: Duff on UN Condemnations of “Moderate Terrorists”: ['REAL']\n", + "Supreme Court Rules Priests DO NOT Have to Report Child Abuse: ['FAKE']\n", + "All Brexit arguments settled by 0.5 per cent third-quarter growth: ['FAKE']\n", + "Fact-checking Barack Obama's 2016 State of the Union address: ['FAKE']\n", + "Why hydrogen peroxide should be in every home: ['REAL']\n", + "Hillary will never survive the Trump onslaught: It’s not fair, but it makes her a weak nominee: ['REAL']\n", + "Boehner moves to push off immigration fight to 2015: ['FAKE']\n", + "After New York Wins, Trump And Clinton Look Forward To Knockout Round: ['REAL']\n", + "Hillary Clinton Can’t Run for President: ['REAL']\n", + "Mike Pence says “shalom” to Israel’s Republicans: ['FAKE']\n", + "Obamacare case: All eyes on 2 justices: ['REAL']\n", + "South Carolina police officer charged with murder after shooting man during traffic stop: ['REAL']\n", + "‘We never denied Israel’s right to Jerusalem, Temple Mount’: ['REAL']\n", + "King Rufus Found Buried Under Parking Lot Near Beaulieu Motor Museum: ['FAKE']\n", + "\"Political identity is fair game for hatred\": how Republicans and Democrats discriminate: ['FAKE']\n", + "Obama Authorizes Deploying Up To 450 More Troops To Iraq: ['FAKE']\n", + "BREAKING: FBI Gets Search Warrant For State Department Emails On Weiner’s Computer (VIDEO): ['FAKE']\n", + "Tokyo could ban US troops from stationing on disputed isles: ['REAL']\n", + "Putin being FRAMED at UN for War Crimes in Syria Explained: ['FAKE']\n", + "Even ExxonMobil says climate change is real. So why won’t the GOP?: ['REAL']\n", + "Russian Researchers Discover Secret Nazi Military Base ‘Treasure Hunter’ in the Arctic [Photos]: ['FAKE']\n", + "Even Democratic Voters Don’t Trust Hillary: ['REAL']\n", + "Federal Judge Overturns Nebraska Gay Marriage Ban: ['REAL']\n", + "Comment on SJWs Outrage over Leonardo DiCaprio \"white Rumi\" role Unfounded, Iranian Explains Why by ztech: ['REAL']\n", + "Trump, Sanders Crush the Competition in New Hampshire Primaries: ['FAKE']\n", + "Monica Lewinsky’s latest comeback, fueled by media remorse: ['REAL']\n", + "7 Halloween Treats That Trick Children Into Cleaning: ['REAL']\n", + "A boss often can fire you while you're hospitalized: ['REAL']\n", + "Why Comey Reopened the Hillary Investigation (The real reasons): ['REAL']\n", + "Comment on Fury as German primary school ‘forces’ children to chant ‘Allahu Akbar’ in Muslim prayer by Dr. Eowyn: ['FAKE']\n", + "Rieder: Charlie Hebdo goes on, and that matters: ['REAL']\n", + "Obama will walk away from Iran talks if no inspections: ['FAKE']\n", + "The 2016 Republican field might be the most diverse ever — for either party: ['REAL']\n", + "Donald Trump may be showing us the future of right-wing politics: ['FAKE']\n", + "Joint Way Forward Deal Does Not Lead to Peace or Progress for Afghans: ['FAKE']\n", + "Dakota Pipeline Protests Are Working! One Bank May Pull Funding of Pipeline Build: ['FAKE']\n", + "Republicans in state governments plan juggernaut of conservative legislation: ['FAKE']\n", + "Sanders, Dem establishment battle boils over: ['REAL']\n", + "Election 2016: A Political System In Crisis: ['FAKE']\n", + "After terrorizing America with Zika scaremongering, Washington Post now admits Zika virus doesn’t cause brain deformities after all: ['REAL']\n", + "Obama Says Terrorists Seek Legitimacy by Using Religious Tie: ['FAKE']\n", + "Why NATO is put on war footing against Russia: ['FAKE']\n", + "Top five donors to Clinton campaign are Jewish: ['FAKE']\n", + "The worst election ever: ['REAL']\n", + "Tomb Opened Where ‘Jesus was Resurrected After Crucifixion For The First Time…’: ['FAKE']\n", + "The House GOP budget is a gimmick: ['REAL']\n", + "Obama announces restrictions on distribution of military-style equipment to police: ['REAL']\n", + "Dilbert Creator Explains “How Do I Know The Emails Are That Bad?”: ['REAL']\n", + "God is on the ropes: The brilliant new science that has creationists and the Christian right terrified: ['FAKE']\n", + "Two°: readers pick story on meat and climate change: ['REAL']\n", + "Backstory: Behind the terror takedown: ['REAL']\n", + "Deputy Shot and Killed by Fellow Deputy While Having a Conversation on Weapon Safety: ['REAL']\n", + "All three Republican presidential candidates back away from pledge to support eventual nominee: ['REAL']\n", + "Defense Secretary Carter endorses 3-year timeline in Obama anti-ISIS plan, backs off criticism: ['REAL']\n", + "Marco Rubio: Critics of Immigration Bill Were Right: ['FAKE']\n", + "Bernie Sanders can’t win this way: Why his admirable debate performance still can’t unseat Hillary Clinton: ['REAL']\n", + "'Russia has no intention of attacking anyone -this is absurd,' says Vladimir Putin: ['REAL']\n", + "Iceland Election: Pirate Party prepares for major win [VIDEO]: ['REAL']\n", + "Egypt bombs Islamic State targets in Libya after beheading video: ['REAL']\n", + "TOP BRITISH GENERAL WARNS OF NUCLEAR WAR WITH RUSSIA; “THE END OF LIFE AS WE KNOW IT”: ['FAKE']\n", + "As deadlines come and go, Puerto Rico's debt crisis grows (+video): ['REAL']\n", + "Trump says Cruz’s Canadian birth could be ‘very precarious’ for GOP: ['REAL']\n", + "Syria's Assad says he receives info about US-led coalition's anti-ISIS strikes: ['FAKE']\n", + "U.S. calls for special Intermediate-range Nuclear Forces talks - Russia accepts: ['REAL']\n", + "Democratic town hall: Will Clinton pitch backfire? (Opinion): ['REAL']\n", + "Opponents divided on how — or whether — to resist justices’ ruling: ['FAKE']\n", + "Planned Parenthood fallout: Why it's unfair to blame abortion opponents: ['REAL']\n", + "GOP 2016: Is it time for Jeb Bush to pack up his attack ads and go home?: ['FAKE']\n", + "Democratic debate: 's Reality Check team inspects the claims: ['REAL']\n", + "Interior: No more new Arctic oil leases for remainder of Obama's presidency: ['REAL']\n", + "FBI: Orlando suspect U.S. citizen, vowed allegiance to Islamic State: ['REAL']\n", + "GOP candidates set aside insults: ['REAL']\n", + "Low-Cost Wind Turbine to Power an Entire House for a Lifetime Starts Selling in India: ['REAL']\n", + "The Great Wall Street/Washington Con Job: Part 4 Of The Recovery Which Didn’t Happen: ['REAL']\n", + "Election Countdown and the Russians, with Trevor Loudon: ['REAL']\n", + "Bush weighs in on Obama's Iran, ISIS challenges: ['FAKE']\n", + "Hillary’s Healthcare ‘Fix’ Exposed, Millions Of Americans Will End Up DEAD: ['REAL']\n", + "The Kochs' plan to beat Reid: ['REAL']\n", + "How will Facebook, Google and Twitter define the \"Hate\" they plan to censor?: ['FAKE']\n", + "WALL STREET JOURNAL JUST EXPOSED EXACTLY HOW & HOW MUCH IT COST HILLARY To BRIBE The FBI to AVOID CHARGES!: ['FAKE']\n", + "Truth is Out There: Astronomers Capture 234 Signals From Space: ['REAL']\n", + "Indiana Law: Sorting Fact From Fiction From Politics: ['REAL']\n", + "Does Carly Fiorina's business experience at HP matter?: ['REAL']\n", + "Marines’ killer set off no red flags: ['REAL']\n", + "The Day After: ['REAL']\n", + "Ted Cruz Says Only He Can Beat Donald Trump: ['FAKE']\n", + "Speakers List: Trump's convention has pols and celebs: ['FAKE']\n", + "All we need to know about Trump’s demise we learned from his campaign launch speech: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Why I'm running for president: ['REAL']\n", + "FBI Agents Must Come Forward to Confront Corruption: ['FAKE']\n", + "Donald Trump announces an Urban Revitalization plan for Black Americans…. As a counter move, Hillary Clinton announces a free Rap Concert!: ['REAL']\n", + "Syrian official says 'wide-scale offensive' launched: ['REAL']\n", + "Trump Makes Special Announcement After Homeless Lady Attacked By Liberals: ['FAKE']\n", + "Feds Search Home in Mohammed Event Shooting: ['REAL']\n", + "Suspected mastermind of Paris massacre killed in terror raid: ['FAKE']\n", + "Sex workers reject ‘biased’ BBC prostitution documentary: ['REAL']\n", + "Comment on You Are What You Read: Research Reveals The Importance Of What You’re Reading by Du er, hvad du læser. | Dyslexic workers: ['REAL']\n", + "How Wisconsin could be a turning point in the GOP race (+video): ['REAL']\n", + "The next recession could be around the corner, and the Fed isn't ready for it: ['FAKE']\n", + "The Modern History of ‘Rigged’ US Election: ['FAKE']\n", + "The Cleveland Show: Convention starts under security cloud: ['REAL']\n", + "Senior Clinton aide maintained top secret clearance amid email probe, letters show: ['FAKE']\n", + "Hillary Clinton’s $500,000 Bribe to the FBI Came Through Virginia – CONFIRMED!: ['FAKE']\n", + "Cop Fired After Shooting Own 11-year-old Daughter at a Halloween Party: ['FAKE']\n", + "How Trump is following in Sanders's fundraising footsteps (+video): ['REAL']\n", + "Buzzfeed: Leaked Colin Powell Emails Rip 'Racist' Trump as 'National Disgrace': ['FAKE']\n", + "Life Among the Berned: ['REAL']\n", + "Opinion: The flaws of Trumpspeak: ['REAL']\n", + "Axelrod: The slow-motion implosion of the Republican Party: ['REAL']\n", + "Assad Aide: US May ‘Navigate & Direct’ ISIS From Mosul Into Syria: ['REAL']\n", + "BREAKING: Since Donald Trump Won The Presidency Ford Shifts Truck Production From Mexico To Ohio: ['FAKE']\n", + "Comment on Leaked Audio Catches Clinton Red-Handed Talking About Rigging Elections by john smith: ['REAL']\n", + "France, Belgium move to tighten security; FBI said to warn of threat in Italy: ['FAKE']\n", + "Mulling 2016 run, Biden speaks with top labor leader: ['REAL']\n", + "Aid Agencies in Iraq Brace for Exodus as Civilians Flee Mosul: ['FAKE']\n", + "Inside The Mind Of An FBI Informant; Terri Linnell Admits Role As Gov’t Snitch: ['REAL']\n", + "Marco Rubio, announcing 2016 campaign, focuses on 'everyman' credentials (+video): ['REAL']\n", + "Pence's Debate Performance Puts Pressure on Trump | RealClearPolitics: ['FAKE']\n", + "Hillary’s Faberge egg candidacy: ['REAL']\n", + "Meet the journalist facing 45 years in jail for filming the tar sands pipeline protest in North Dakota: ['FAKE']\n", + "UK Involvement in US’ Secret Drone War Revealed: ['FAKE']\n", + "Battle Lines For 2016 Emerge As Republican Hopefuls Unveil Campaign Themes: ['FAKE']\n", + "EXCLUSIVE: UN sex abuse scandal: Secretary General Ban Ki-moon announces new inquiry: ['FAKE']\n", + "Future Diwali celebrations to be organized by ISIS!: ['FAKE']\n", + "Neil Armstrong: Their Ships Were Far Superior To Our -Boy, Where They Big: ['REAL']\n", + "2nd New York prison worker charged in killers' escape: ['FAKE']\n", + "Ark. governor won't sign 'religious freedom' bill as is: ['REAL']\n", + "RNC scrambles to calm state GOP officials: ['REAL']\n", + "What to watch at 's key Clinton-Sanders debate in New York: ['REAL']\n", + "ACLU Threatens War Against President Trump: ['FAKE']\n", + "Why Marco Rubio has a real shot at 2016 Republican nomination: ['REAL']\n", + "Trump’s Alt-Right. Hillary’s Alt Left.: ['REAL']\n", + "Jimmy Carter offers help for Russia’s bombing campaign in Syria: ['REAL']\n", + "Burnt homes and broken promises: the Jungle evicted: ['REAL']\n", + "In Trump's World, Women Have Always Been Objects: ['FAKE']\n", + "Ted Cruz Says GOP Leaders Planned To Cave On Immigration All Along: ['FAKE']\n", + "The Surprising Voting Rights Issue Both Democrats and Republicans Support: ['FAKE']\n", + "Michael Brown's Family To File Wrongful Death Lawsuit: ['REAL']\n", + "Audio: Justice Scalia on black students at top schools: ['REAL']\n", + "The next battle over same-sex marriage: ['REAL']\n", + "Clinton, Sanders Split the Votes in Tuesday's Primaries: ['REAL']\n", + "Hillary Clinton staffer: \"Black Voters Are Stupid\": ['REAL']\n", + "A Reader Refers Us To Englishman Pat Condell On Brexit, The Trump Election, And “America’s Moment Of Truth”: ['FAKE']\n", + "Is this not just the PERFECT icing on the #OctoberSurprise cake?: ['REAL']\n", + "Sorry, Hillary, but we’re done: Keep repeating racist myths and praising Kissinger and the Reagans. I’m switching to Bernie Sanders: ['REAL']\n", + "Abby Martin Exposes Hillary Clinton Chair John Podesta: ['REAL']\n", + "Expected wins for Clinton, Trump rivals in big Saturday balloting, but will it be enough?: ['FAKE']\n", + "The FBI Union’s President Just Quit, Penned Scathing Open Letter Blasting Comey: ['REAL']\n", + "True Believer? Why Donald Trump Is The Choice Of The Religious Right: ['FAKE']\n", + "Democrats scramble for pivotal bloc in the next 2 contests: Minority voters: ['FAKE']\n", + "US Abstains From UN Vote Against Cuba Embargo: ['FAKE']\n", + "The Products that Make Men Grow Breasts, Linked to Cancers of the Prostate and Liver: ['REAL']\n", + "Post-Maidan Ukraine Has Become a Full Fledged Totalitarian State - Volodymyr Chemerys: ['REAL']\n", + "Pope Francis arrives in New York City for second stop on US trip: ['FAKE']\n", + "Nation’s Top Lawyers Have Had Enough Of Trump (TWEETS): ['REAL']\n", + "Boston bombing trial plea deal fails: ['REAL']\n", + "TOP DEMOCRATIC DONOR: BLACKS ARE “SERIOUSLY F***ED IN THE HEAD”: ['FAKE']\n", + "Crisis of Conscience? Obama Frees Scores of Drug Offenders from Prison, Including 42 Lifers, Days Before Election: ['FAKE']\n", + "Kerry tells Capitol Hill critics of Iran nuclear deal to 'hold their fire' until final deal: ['REAL']\n", + "Bad Jewish Losers Lament Trump’s Victory on BBC Newsnight: ['REAL']\n", + "Giuliani on FBI’s exoneration of Hillary: ‘We are supposed to be a country of justice’: ['FAKE']\n", + "Ted Cruz Wins Iowa Caucus, Clinton Holds Narrow Lead Over Sanders: ['REAL']\n", + "ITALIAN MAYOR blasted for scathing verbal attack on African Muslim savages who have been invading Southern Italy: ['FAKE']\n", + "Study: Running linked to extended lifespan and brain repair: ['REAL']\n", + "Hillary's policies: Where's the beef?: ['REAL']\n", + "Polarization Vortex: Obama, Bush Approval Shows Widest Partisan Gap: ['REAL']\n", + "How to Solve the Illegal Immigration Problem: ['FAKE']\n", + "Syria conflict: Food rations run out in rebel-held Aleppo: ['FAKE']\n", + "Sanders plans Tuesday meeting with Clinton to discuss agenda, calls VP slot ‘very unlikely’: ['REAL']\n", + "Disillusioned and self-deluded, Bowe Bergdahl vanished into a brutal captivity: ['REAL']\n", + "Leaked Memo Exposes Shady Dealings Between Clinton Foundation Donors And Bill’s “For-Profit” Activities: ['FAKE']\n", + "How Bernie changed Hillary: ['REAL']\n", + "Donald Trump questions Clinton’s health at rally in Ohio: ‘You think this is easy?’: ['FAKE']\n", + "780 Palestinian homes razed in occupied W Bank's Area C in 2016: ['REAL']\n", + "Sparks fly at Clinton, Sanders debate over who is more progressive: ['REAL']\n", + "‘UFO’ Spotted Over Vienna, Frightened Onlookers Call Police: ['REAL']\n", + "Police Investigate Fraud after Voter Registration Flips from Republican to Democrat: ['REAL']\n", + "Mitch McConnell's mission to keep the GOP majority: ['REAL']\n", + "As deadlines pass, Biden remains opaque about a 2016 candidacy: ['FAKE']\n", + "As Washington publically frets over storm, GOP worries about impact of Trump, Cruz on Hill majority: ['FAKE']\n", + "Hillary Releases The Most Inspiring Video EVER Chronicling Her Historic Rise To The Top: ['REAL']\n", + "They Said What?!: Find Out What Liam Neeson, Lorena Garcia, And Kyle Chandler Have To Say: ['FAKE']\n", + "Marco Rubio's strategy is utterly baffling: ['REAL']\n", + "11 service members in Black Hawk crash presumed dead: ['REAL']\n", + "Same-sex couples wed in Alabama: ['FAKE']\n", + "Fate of Paris attack mastermind unclear after raid, but intel sources reportedly say he's dead: ['REAL']\n", + "Russia Warns US Is Now A Colour Revolution “Active Zone” Due To Trump Victory: ['FAKE']\n", + "Heroic Prego Advertisement Replaces Refreshed Webpage’s Presidential Campaign Banner - The Onion - America's Finest News Source: ['REAL']\n", + "IF HILLARY CLINTON IS CHARGED WITH OBSTRUCTION OF JUSTICE SHE COULD GO TO PRISON FOR 20 YEARS: ['FAKE']\n", + "Kamala Harris announces U.S. Senate bid: ['REAL']\n", + "How Trump overshadowed Clinton's bad weekend: ['FAKE']\n", + "Poll: Hillary Clinton tops Donald Trump, GOP field on handling terror: ['FAKE']\n", + "Boehner’s worst failure yet: Incompetence, near-shutdown & sorry state of GOP “governance”: ['REAL']\n", + "Belgian Terrorists Had Police Uniforms: ['REAL']\n", + "Police in Belgium, France, and Germany make arrests in latest anti-terror raids: ['FAKE']\n", + "A Tear in the Fabric of America’s Political Theater: ['REAL']\n", + "Michelle Malkin SCHOOLED The Idiots On ‘The View’ On Obama’s LIES To America. They’re SPEECHLESS!: ['REAL']\n", + "Hillary Clinton Attempted To Hack WikiLeaks And Delete Everything, Assange: ['REAL']\n", + "Gov. Jindal 'thinking and praying' about 2016 run - Politics.com: ['FAKE']\n", + "Poll: Donald Trump, Ben Carson dominate GOP field as Fiorina falters: ['FAKE']\n", + "Sentencing for Murderer of Rare Book Dealer: ['REAL']\n", + "Hate Rising with Jorge Ramos: ['REAL']\n", + "Sympathy for victims but no apology as Obama makes historic Hiroshima visit: ['REAL']\n", + "Kashmiris observes Black Day decades after India occupied Kashmir: ['REAL']\n", + "Trump Supporters in Philadelphia Paint Nazi Propaganda on Election Night: ['FAKE']\n", + "After riots, Baltimore residents take to streets – to help one another: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GOP campaigns push to take more control of debates: ['FAKE']\n", + "A Golden Rule for journalists: Objectivity is a myth but fairness is a must: ['REAL']\n", + "Los Angeles Times backs Clinton over Sanders: ['REAL']\n", + "Exodus from Puerto Rico could upend Florida vote in 2016 presidential race: ['FAKE']\n", + "Does Putting Three Dots And A Question Mark At The End Of A Headline Make People Curious Enough To Click…?: ['REAL']\n", + "Do You Know What It Means To Be An Introvert?: ['REAL']\n", + "Lavrov Schools European Diplomats in Logic Using Examples of Yemen and Ukraine: ['REAL']\n", + "Marco Rubio Ends Bid after Losing His Home State: ['FAKE']\n", + "Is Cruz too conservative to win? NY Times says he's sooo right-wing: ['REAL']\n", + "Hillary Clinton Sells 20% of US Uranium To Russia WTF ?: ['FAKE']\n", + "2009 FLASHBACK: “What If” Remixed: ['FAKE']\n", + "Podesta emails - Re: Obama Says He Didn’t Know Hillary Clinton Was Using Private Email Address - NYTimes.com: ['FAKE']\n", + "Mali: At least 20 dead after gunmen storm luxury hotel in capital: ['FAKE']\n", + "Comment on Morning Joe Destroys Corrupt Clinton Foundation (Laughable) “Total Corruption” by Debbie Menon: ['REAL']\n", + "As of 6:00 AM NOVEMBER 6th, Trump is leading in major national polls: ['REAL']\n", + "Rudy Giuliani's fall from America's Mayor: ['FAKE']\n", + "Even Fox News is outraged at Boehner and Netanyahu's plan to undermine Obama: ['REAL']\n", + "Why Team Clinton's not sweating Trump: ['FAKE']\n", + "Ryan and McConnell confront their first big test: ['REAL']\n", + "Dozens of intelligence analysts reportedly claim assessments of ISIS were altered: ['REAL']\n", + "Has Economics Failed?: ['FAKE']\n", + "Obamacare Architect Gruber Demands “Larger Mandate Penalty”: ['FAKE']\n", + "“Donald Trump And The Rise Of White Identity In Politics”: ['FAKE']\n", + "ALERT – New Bill Clinton Mistress Confirmed, Hillary Camp Panics…: ['FAKE']\n", + "BREAKING: We Caught Obama Spending 30 Million Dollars Against Trump To Rig This Election: ['FAKE']\n", + "Think the Iowa polls were bad? Wait until New Hampshire: ['REAL']\n", + "Why Ted Cruz Could Have A Real Shot At The GOP Nomination: ['REAL']\n", + "Voters have given up on trust: Kirsten Powers: ['REAL']\n", + "Conservatives fear leaders soft on Obamacare: ['FAKE']\n", + "Will Hillary Select Her Own Prosecutors?: ['REAL']\n", + "Stranded in Yemen: Americans left to find own way out: ['FAKE']\n", + "Obama: U.S. would use force to defend Gulf allies: ['FAKE']\n", + "Hillary Clinton says early lead was 'artificial': ['REAL']\n", + "Aspartame Turns Into Formaldehyde And Methanol In The Body: Donald Rumsfeld Got It Legalized: ['REAL']\n", + "Should 'Birthright Citizenship' Be Abolished? - Room for Debate - NYTimes.com: ['FAKE']\n", + "Democratic debate: 6 takeaways: ['REAL']\n", + "Climate change happening 'right now,' Obama says ahead of Alaska trip: ['REAL']\n", + "George Takei Invited To Thanksgiving At The Baldwins’ To Referee Trump Feud (TWEETS/VIDEO): ['FAKE']\n", + "The End Game Closes In On The Clintons As The Deep State Turns: ['REAL']\n", + "How 2016 became the fact-check election: ['FAKE']\n", + "Shameful Obama Legacy: White Man Beaten Viciously For Voting Trump: ['FAKE']\n", + "The GOP’s unfortunate Benghazi hearing: ['REAL']\n", + "Homeless man looking a bit down today for some reason: ['FAKE']\n", + "Biden faces hurdles as he weighs late 2016 bid: ['FAKE']\n", + "Donald Trump promises to pardon Snowden, Assange, and Manning: ['FAKE']\n", + "Which States Don't Have Mexicans?: ['REAL']\n", + "Media trumpeting Trump implosion, but is it real?: ['FAKE']\n", + "2:00PM Water Cooler 11/1/2016: ['REAL']\n", + "5 things to watch in tonight’s GOP debate: ['FAKE']\n", + "Assange tells the sordid truth about the US elections: ['REAL']\n", + "The Corbett Report: Accept no substitutes!: ['FAKE']\n", + "The dark age of congressional warfare: Inside Obama’s last State of the Union & the fight for the future of government: ['FAKE']\n", + "Awesome Video Shows The REAL Donald Trump, Presidential Candidate: ['FAKE']\n", + "A Transformational November of Taking a Stand: ['REAL']\n", + "3 More Emotions Men Should Master: ['REAL']\n", + "Voting rights rulings could deal blow to Republicans in 2016 elections: ['FAKE']\n", + "Even under oath, Trump struggled with the truth: ['FAKE']\n", + "For Carly Fiorina, money hasn't yet followed the hype: ['REAL']\n", + "News: Shaking Up Washington: Donald Trump Just Appointed A Cloaked Man As Secretary Of The Hook: ['FAKE']\n", + "Heseltine strangled dog as part of Thatcher cabinet initiation ceremony: ['REAL']\n", + "Ronald Reagan made it all worse: How Republicans — the real party with their hands out — convinced white America that government was out to get them: ['FAKE']\n", + "10 members of Congress took trip secretly funded by foreign government: ['REAL']\n", + "The Chinese Who Saw the Perils of Westernization: ['FAKE']\n", + "New Clinton Probe Dead from the Start, John Podesta’s Best Friend at DOJ In Charge of Investigation: ['FAKE']\n", + "A Digital 9/11 If Trump Wins: ['FAKE']\n", + "US election 2016: Can Clinton win over Republican moderates?: ['FAKE']\n", + "Harry Reid Just Accused FBI Of Hiding “Explosive Info” About Trump & Putin: ['FAKE']\n", + "Doctors Restore Ken Burns’ Full-Color Vision After Removing Massive Tumor From Filmmaker’s Visual Cortex - The Onion - America's Finest News Source: ['REAL']\n", + "Democrats clash over immigration at Florida debate: ['FAKE']\n", + "Sex Bombshell Exposed After Hillary Couldn’t Hide What She Did Back In 2011: ['REAL']\n", + "Who's Best For Hispanics? Clinton, Sanders Debate: ['REAL']\n", + "Hillary Arrives At Rally, Makes One Weird Move That Left Onlookers Puzzled: ['REAL']\n", + "The Daily Traditionalist: Jeff Schoep and the NSM: ['REAL']\n", + "I watched Megyn Kelly for six weeks: How I learned to uncode the Fox News propaganda machine: ['REAL']\n", + "President Paul? Wall Street on high alert: ['REAL']\n", + "Refusal to Acknowledge Uniqueness of Holocaust Constitutes a “Second Genocide” Against Jews: ['REAL']\n", + "On To Indy: Hoosier State Could Be Stand For Trump Challengers, Sanders: ['FAKE']\n", + "Blaming the media for Trump: Why that utterly misses a political upheaval: ['FAKE']\n", + "The FBI Can’t Actually Investigate a Candidate Such as Hillary Clinton.: ['REAL']\n", + "Moveable Feast Cafe 2016/11/14 … Open Thread: ['FAKE']\n", + "Obama's big new resolution on ISIS is really about limiting presidential power: ['FAKE']\n", + "Report: FBI to Move to “Likely Indictment” Of Clinton Foundation: ['FAKE']\n", + "ISIS activity prompts threat level increase at bases: ['REAL']\n", + "Several Republican players moving quickly to signal intent to run in 2016: ['FAKE']\n", + "Comment on When Asked about Undercover Videos, Hillary Walks Out on Press Conference by Matibob: ['REAL']\n", + "This Cursed Black Angel Statue KILLS Anyone Who Dares Touch It: ['REAL']\n", + "How Paul Ryan and Mitch McConnell took such different approaches to supporting Donald Trump: ['REAL']\n", + "VA secretary asks Iraq War veteran: 'What have you done?': ['FAKE']\n", + "Europe’s Morality Crisis: Euthanizing the Mentally Ill: ['REAL']\n", + "Updated: Sandoval not interested in potential Supreme Court nomination: ['REAL']\n", + "Nestle to launch new non-GMO products ... How shocked will Monsanto be?: ['REAL']\n", + "World Markets Rally with Glee After Hillary Email Dismissal: ['REAL']\n", + "How Bernie Sanders beat the polls and won Indiana: ['REAL']\n", + "Why the ECB is Going to Print, Print, PRINT!: ['REAL']\n", + "Comments circulating about the Republican presidential candidate: ['REAL']\n", + "The Fix Is In: NBC Affiliate Accidentally Posts Election Results A Week Early: Hillary Wins Presidency 42% to Trump’s 40%: ['REAL']\n", + "Joe Biden in 1992: No nominations to the Supreme Court in an election year: ['FAKE']\n", + "As campaigns launch, poll finds GOP field stays tight: ['FAKE']\n", + "Meet the Republicans who ousted John Boehner. They're just getting started.: ['REAL']\n", + "Self-Driving Truck’s First Mission: A 120-Mile Beer Run: ['REAL']\n", + "Bernie Sanders: What's his endgame now?: ['REAL']\n", + "Obama Pushes Castro on Human Rights During Joint Conference: ['FAKE']\n", + "“National Mood” Focus Group Reflects Angry, Divided America: ['REAL']\n", + "Determined to kill: Can tough gun laws end mass shootings?: ['REAL']\n", + "World’s Life Expectancy Cut By 4 Billion Years: ['FAKE']\n", + "PAY TO PLAY : Hillary’s Two Big Favors For Morocco Netted Her $28 Million – TruthFeed: ['REAL']\n", + "Vermont deer attempt to flee to Canada after election results roll in.: ['FAKE']\n", + "Trump Will Be President – How Alt-Market Predicted The Outcome Five Months In Advance: ['REAL']\n", + "Hillary Is DONE After Blunt Cowboy Makes Shocking Announcement On Live TV: ['REAL']\n", + "US Government Acknowledges That al-Qaeda Is Not A Priority In Syria: ['FAKE']\n", + "Climate change crusade goes local: ['REAL']\n", + "Trader Joe’s Fires Employee For Non-Genuine Smile - The Onion - America's Finest News Source: ['FAKE']\n", + "Young Fellas Made Of Nothing These Days, Finds Scientific Study: ['FAKE']\n", + "Deadly suicide blast in Istanbul tourist area is linked to the Islamic State: ['FAKE']\n", + "Yes, Black America fears the police. Here’s why.: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "This is a dishonest campaign: 17 Hillary Clinton memes the media just won’t stop pushing — or factcheck: ['REAL']\n", + "How Candidates Announce Can Say A Lot About Their Campaigns: ['REAL']\n", + "Obama speech: Reassurances about ISIS fall flat in Oval Office address: ['REAL']\n", + "Fiorina wins when she stumps Trump: ['REAL']\n", + "Rural America confronts a new class divide: ['FAKE']\n", + "Japan’s Lost Black Hole Satellite Took This LAST Photo. Proves Something MIND-BOGGLING!: ['REAL']\n", + "Obama's UN Ambassador: Cuba is Right About Our Human Rights: ['FAKE']\n", + "Punk Targets Hurricane Victim’s Home, Flees When Surprised by Armed Owner: ['REAL']\n", + "Comment on Shocking Insinuation About Carl Sagan & Extraterrestrials Made By X-NASA Astronaut by Is This What You Think They Would Look Like? Supposed Pictures of Real Extraterrestrials - New Earth Media: ['FAKE']\n", + "In The Name Of Party Unity, Trump Meets With Ryan, Other GOP Leaders: ['FAKE']\n", + "Trump Calls for the Return of Waterboarding by US: ['FAKE']\n", + "McConnell announces 'Plan B' to stop Iran deal: ['REAL']\n", + "Hillary Responds To Creepy Joe Biden Caught Groping Dozens of Young Women: ['FAKE']\n", + "Spin, MSM! Spin! Hillary/FBI news has Republicans ‘pouncing’ like crazy: ['REAL']\n", + "GOP candidates jockey for position in final debate dash: ['REAL']\n", + "Emma Watson Urges US Women to Consider Gender Equality Nov 8, Gets Massive Wake-Up Call on Facebook: ['REAL']\n", + "Unpacking Donald Trump’s history with this fall’s debate moderators: ['REAL']\n", + "Fiery Republican race heads to S.C., known for dirty tricks and brawls: ['REAL']\n", + "The feds probably won't dismantle the Ferguson PD. That's a good thing.: ['REAL']\n", + "At Social Security office with a million-person backlog, there’s a new chief: ['REAL']\n", + "Poll: Nine weeks out, a near even race: ['REAL']\n", + "Voting Machine Shocker: Video Proof Election Is Rigged!: ['REAL']\n", + "6 Natural Herbs To Prevent Mental Disorders: ['REAL']\n", + "Can Donald Trump really hit 1,237 before Cleveland?: ['FAKE']\n", + "Aide Said He Was Running 'Bill Clinton Inc.' in New WikiLeaks Dump: ['FAKE']\n", + "Christie accuses Paul, Lee of siding with ‘criminal’ Snowden on NSA: ['REAL']\n", + "Trump Wants To Appoint Alt-Right Propagandist Steve Bannon As His Chief Of Staff: ['FAKE']\n", + "Links 11/9/16: Election Day: ['REAL']\n", + "Why The U.S. Presidential Election Has The Entire World Confused: ['REAL']\n", + "New Hampshire primary: How the outsiders won -- and the insiders crumbled: ['REAL']\n", + "Obama Imposes Sanctions On Venezuela, Invoking Emergency Powers: ['REAL']\n", + "Clinton leads 2016 poll in Iowa, but Rand Paul is close (+video): ['FAKE']\n", + "Hours from deadline, bipartisan Medicare bill heads to White House: ['FAKE']\n", + "Hope for the best, prepare for the worst…: ['REAL']\n", + "The Real Reason Why The Clinton Email Scandal Is Back Has Nothing To Do With Helping Trump: ['FAKE']\n", + "How the next few weeks could determine the fate of Obama’s legacy: ['REAL']\n", + "Intelligence report commissioned by White House says ISIS not contained: ['FAKE']\n", + "Major Democratic Donor: African-Americans are “Seriously F***ed In The Head”: ['FAKE']\n", + "Istanbul: Explosion by ISIS bomber kills at least 10: ['REAL']\n", + "Coming Unglued: ['REAL']\n", + "Video: Journalist Covering Pipeline Protests Shot While Conducting Interview: ['REAL']\n", + "The Top 5 Conspiracy Theories That Were Proven To Be True Because Donald Trump Ran For President: ['FAKE']\n", + "Trump Scoffs at Cruz Choosing a Running Mate: 'He Can't Win': ['FAKE']\n", + "The Many Faces of Iowa’s Caucus Voters: ['REAL']\n", + "How Millennial voters see this election: ['REAL']\n", + "Donald Trump Tops 30% in /ORC poll: ['FAKE']\n", + "It's National Health Care Decisions Day: Who will you designate?: ['REAL']\n", + "Defense Board: White House Blocked Navy From S. China Sea Warship Passages: ['REAL']\n", + "Pro-Lifers Take over Planned Parenthood's #PPShoutYourStory: ['REAL']\n", + "Guess Who Ordered Hillary To Leave Our Men To Die In Benghazi: ['REAL']\n", + "Cruz, Kasich campaign announce collaboration to deny Trump delegates: ['REAL']\n", + "Obama digs in on plan to close Guantanamo prison camp: ['FAKE']\n", + "YouTube bans 'Clinton's black son': ['FAKE']\n", + "Here's how moms get pushed out of the workforce: ['REAL']\n", + "AIG Quadruples Limits for Terrorism Insurance to $1 Billion: ['FAKE']\n", + "Scientists find 19 pieces of NON-HUMAN DNA in the Human Genome: ['FAKE']\n", + "Five takeaways from the GOP debate: ['FAKE']\n", + "Trump wins in Hawaii, Mississippi and Michigan: ['REAL']\n", + "Berkley Professor Claims Hillary Clinton Email Investigation Nothing More Than a Sexist ‘Bitch Hunt’: ['FAKE']\n", + "Trump and all the other far right leaders are Zionist stooges: ['REAL']\n", + "Nevada: Rep. Election Workers Intimidated: ['REAL']\n", + "White House Makes Trade Pitch, With Focus on Moderates: ['REAL']\n", + "What The 2016 Election Has Exposed: ['FAKE']\n", + "Pence: We Will Accept the Outcome: ['FAKE']\n", + "Foster Friess chides Rand Paul in not-so-private email: ['REAL']\n", + "Poll: Ted Cruz's Support Surges After Campaign Launch | RealClearPolitics: ['REAL']\n", + "End of the World? Italy Devastated By Series of Major Earthquakes: ['REAL']\n", + "Will The Deep State Win The Election?: ['FAKE']\n", + "The new mess Republicans have created for themselves: Clinton’s brutal anti-Trump ad highlights why the GOP can’t plausibly endorse Trump: ['FAKE']\n", + "Megyn Kelly interrogates Tom Cotton on Iran letter: “What’s the point in writing to the Iranian mullahs?”: ['FAKE']\n", + "Why Hillary Clinton wins even when she loses: ['REAL']\n", + "Hillary Endorsed Donald Trump for President According to Wikileaks: ['REAL']\n", + "DNC Files Lawsuit to Bar Citizen Journalists From the Polls: ['FAKE']\n", + "Cleveland, DOJ announce changes in police force: ['REAL']\n", + "Moscow downplays Spain’s refusal to let Russian warship refuel in Ceuta: ['FAKE']\n", + "Woman Uses Milk And Gelatin To Remove Blackheads: ['REAL']\n", + "Police: Bryce Williams kills self after on-air slayings: ['REAL']\n", + "The Comey Confrontation: In Our New Third-World America, Corruption Is A Feature, Not A Bug: ['REAL']\n", + "Thousands Of “Organic” Beauty Products Found Containing Banned Chemicals: ['REAL']\n", + "The Insiders: CNBC has probably changed GOP presidential campaign debates forever: ['FAKE']\n", + "Obama budget would fund public works program with tax on overseas profits: ['REAL']\n", + "NYPD Source: Weiner Laptop Has Enough Evidence “to Put Hillary ... Away for Life”: ['FAKE']\n", + "Biden Doesn't Stand a Chance. Clinton's Secretary of State Will Be Vicky Nuland - Daniel Larison: ['FAKE']\n", + "From victims’ families, forgiveness for accused Charleston gunman Dylann Roof: ['REAL']\n", + "(The Onion) Strongside/Weakside: Theo Epstein: ['REAL']\n", + "Trump to deport everyone who is not Native American: ['FAKE']\n", + "Will the GOP Mount a Third-Party Challenge to Trump?: ['FAKE']\n", + "Easy Street Recent Used Vinyl Arrivals!: ['REAL']\n", + "Here’s How Michael Bloomberg Becomes President: ['REAL']\n", + "Hillary Clinton’s Gun Control Agenda Exposed in WikiLeaks Emails: ['FAKE']\n", + "Jeb Bush says he is making campaign 'adjustment': ['REAL']\n", + "The Google Trend That Reveals It’s ALL OVER For Hillary: ['REAL']\n", + "Which Communities Are Most Divided on Gay Marriage?: ['REAL']\n", + "To Protect and Swerve: Police Chief Caught Speeding, Gets a Laugh but No Ticket (Video): ['FAKE']\n", + "Jeb Bush's view from the bottom: ['REAL']\n", + "Our President and the Constitution: Barack Obama has gone rogue: ['REAL']\n", + "News: Hope For The GOP: A Nude Paul Ryan Has Just Emerged From An Ayahuasca Tent With Visions Of A New Republican Party: ['FAKE']\n", + "Massive marine park declared in Antarctic Ocean: ['REAL']\n", + "South Carolina Black Voters Not Feelin’ the Bern: ['REAL']\n", + "Employers Added 38,000 Jobs in May: ['REAL']\n", + "Hillary and the Ghosts of Watergate: ['REAL']\n", + "Donald Trump is blatantly racist — and the media is too scared to call him out on it: ['FAKE']\n", + "Little-Loved by Scholars, Trump Also Gets Little of Their Cash: ['REAL']\n", + "Ask Holly: What’s everyone’s problem?: ['FAKE']\n", + "Obama: Battle against ISIS Could Take Decades: ['REAL']\n", + "Trump Livid After Beyonce And Jay Z Support Hillary, Explodes With Rage: ['FAKE']\n", + "How Donald Trump sees himself: ['FAKE']\n", + "Back Story Of FBI’s Hillary Cover-Up: ['REAL']\n", + "Hillary FRANTIC As Dirty Secret Implodes, Gets Worse With Prison Bombshell: ['FAKE']\n", + "An Obama boom?: ['REAL']\n", + "What Is Behind The Push For War With Russia?: ['FAKE']\n", + "3 winners and 2 losers from Sunday night's Democratic presidential debate: ['REAL']\n", + "Netanyahu steps back from full opposition to Palestinian state: ['REAL']\n", + "House passes extreme ban on abortion coverage: ['REAL']\n", + "Israel snubs UNESCO’s Temple Mount resolution with ancient Jerusalem papyrus: ['FAKE']\n", + "Why the GOP Could Take Obama’s Corporate Tax Proposal Seriously: ['FAKE']\n", + "Hillary Clinton plays literal attack dog in effort to shore up Nevada: ['REAL']\n", + "Top Republicans join Obama in condemning Trump’s words: ['FAKE']\n", + "Clinton, Democrats try not to get drowned out during GOP convention: ['FAKE']\n", + "GOP Hopefuls’ 2016 Theme Has a New Pitch: ['FAKE']\n", + "EMERGENCY: Congress Considers Historic Action Over Comey’s Re-Opening of EmailGate: ['REAL']\n", + "Poll: Clinton leads Trump by three points: ['FAKE']\n", + "Donald Trump’s success reveals a frightening weakness in American democracy: ['REAL']\n", + "Congress moves to kill union election rules, setting up new Obama veto: ['REAL']\n", + "Monetary Policy at the Time of Elections: ['REAL']\n", + "Gary Johnson Avoids Typical Third-Party Fade; Best Polling Since Perot in ‘92: ['REAL']\n", + "Bernie has already won the future of the Democratic Party: ['REAL']\n", + "2 Reminders to Ignore the \"Trump is Doomed\" Polls: ['FAKE']\n", + "Hate Speech as a Weapon: Reporters Are Charged for Covering Disturbances: ['REAL']\n", + "How Planned Parenthood could shut down the government: ['FAKE']\n", + "Democratic debate: 's Reality Check team inspects the claims: ['REAL']\n", + "Comment on Tutorial: Riding The Philippine Jeepney by Ivan Jose: ['REAL']\n", + "World overlooks Ethiopia drought crisis that is leaving millions hungry: ['FAKE']\n", + "75% of Americans Think Biased U.S. Media – Not Foreign Interests Such As Russian Hackers – Real Threat To Fair Election - Russia News Now: ['FAKE']\n", + "Tom Cotton calls for ‘global military dominance’ in maiden Senate speech: ['REAL']\n", + "Trump has a challenge with white women: ‘You just want to smack him’: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rubio surges back to electrify South Carolina: ['REAL']\n", + "GOP still party of stupid: Scott Walker, Fox News and why 2016 hopefuls must appease wingnut base on evolution: ['REAL']\n", + "Mudslide on major highway in Colombia kills at least 6: ['REAL']\n", + "Rand Paul is just hilariously trolling Republicans now — and inadvertently revealing the two words behind the GOP’s biggest lie: ['REAL']\n", + "Report Says Trade Deal Would Boost U.S. Economy, But Opponents Say No: ['REAL']\n", + "Ambivalence on arms for Ukraine separates Obama from his backers: ['REAL']\n", + "Ted Cruz popularity among Republicans takes a serious nosedive: Gallup: ['FAKE']\n", + "“Fu**ing Insane”: Clinton Aide Freaks Out About Hillary Emails in Message Just Released by WikiLeaks: ['REAL']\n", + "The inside story of Trump campaign’s connections to a big-money super PAC: ['FAKE']\n", + "U.S. Flag Flies Over Embassy In Cuba For First Time In 54 Years: ['FAKE']\n", + "US General: Warplanes Will Kill Fleeing ISIS Fighters Around Mosul: ['FAKE']\n", + "Presidential Transition of Power Begins amid Nationwide Protests: ['REAL']\n", + "Now More Than Ever, We Must Tell the Truth About the Iraq War: ['REAL']\n", + "Culture War – The ‘Have Mores’ Mock DAPL Protectors for Halloween: ['REAL']\n", + "The Art of the Swindle: ['REAL']\n", + "Luis Lázaro Tijerina: Americans and the Trump \"Victory\" - Russia News Now: ['REAL']\n", + "Temperament question dominates Clinton-Trump debate: ['FAKE']\n", + "Are Democrats crippling Obamacare?: ['FAKE']\n", + "Trump warning: the start of World War III and ISIS: ['FAKE']\n", + "Trump Win Jitters New World Order Financial Markets: ['REAL']\n", + "GOP contenders prep for loud, ugly holiday season: ['REAL']\n", + "Here’s What Happens in Your Brain When You Lie: ['REAL']\n", + "Donald Trump Destroyed as Fact Checker Reveals Trump Lies 20 to 37 Times Per Day: ['FAKE']\n", + "Work: It's not a four letter word, it's a world-changing vocation: ['REAL']\n", + "The most predictable disaster in the history of the human race: ['REAL']\n", + "Hope and change, the Hebrew edition: ['REAL']\n", + "Iraq and US confident to retake Mosul, Daesh can't 'conduct full-fledged military action': ['FAKE']\n", + "The meaning of Matt Bevin: Why his victory undermines a major Democratic Party theory: ['REAL']\n", + "NATO Goes On High Alert To Block Donald Trump Presidency, Put Hillary Clinton In Power: ['FAKE']\n", + "Nearly 300K New Jobs In February; Unemployment Dips To 5.5 Percent: ['FAKE']\n", + "[WATCH] Hillary Clinton’s “Crazy Eyes” Surface AGAIN!: ['REAL']\n", + "Yes, creationists can be real scientists, too: ['FAKE']\n", + "Rubio: My pro-family, pro-growth tax reform plan for the 21st century: ['REAL']\n", + "Ancient mosque inscription confirms Jerusalem Temple: ['REAL']\n", + "A new 50-state poll shows exactly why Clinton holds the advantage over Trump: ['FAKE']\n", + "#MemeOfTheWeek: Trump Asked 'The Gays,' And Got Answers: ['REAL']\n", + "Clinton debate performance enough to keep Biden on sidelines?: ['FAKE']\n", + "Is Mitch McConnell next?: ['REAL']\n", + "Washington digs in for Supreme Court fight: ['FAKE']\n", + "Comment on 4 Reasons Why Your Diet Sucks by The Most Important Concepts The Manosphere Taught Me: ['REAL']\n", + "Hillary Clinton enjoys solid lead in early voting: Reuters/Ipsos poll: ['REAL']\n", + "Hoping for the best and preparing for the worst: A look inside the American Redoubt movement: ['FAKE']\n", + "Trump Willing to Meet N.Korea's Kim, Wants to Renegotiate Paris Climate Accord: ['FAKE']\n", + "‘Anti-Establishment’ Trump Plans to Appoint Goldman Sachs and George Soros Insiders: ['FAKE']\n", + "Comment on Award Winning American Journalist Exposes The True Origin Of ISIS & The “War On Terror” by HILLARY CLINTON’S TIES TO ISIS SUPPORTERS | osmanisnin: ['FAKE']\n", + "The attacks on George Stephanopoulos are getting the problem backward: ['FAKE']\n", + "Fight night in Las Vegas: High stakes for Trump, Clinton and Chris Wallace: ['FAKE']\n", + "Trump’s Hitlerian disregard for the truth: ['FAKE']\n", + "University of Missouri protests: 'Just a beginning': ['REAL']\n", + "US-backed Forces Launch Raqqa Offensive as Terror Fears Grow in Europe: ['FAKE']\n", + "Here’s Hillary Clinton’s big 2016 challenge, in one chart: ['REAL']\n", + "World Champion Boxer Manny Pacquiao Builds 1,000 Homes For Poor Filipinos: ['REAL']\n", + "JUST IN: FBI Reopens Hillary Clinton Email Probe: ['FAKE']\n", + "What Is At Stake In the Election: ['FAKE']\n", + "Donald Trump featured in new jihadist recruitment video: ['REAL']\n", + "Purely Coincidental or the Path to a Stolen Election? Voters Report ‘Irregularities’ with Voting Machines Across the US: ['FAKE']\n", + "How Rand Paul’s criminal justice pitch is playing on the trail: ['REAL']\n", + "Police shooting of Antonio Zambrano-Montes in Washington state could be the next Ferguson: ['FAKE']\n", + "The words Extraordinary Claims needs to be banished when talking Extraterrestrials: ['REAL']\n", + "Selling ‘Regime Change’ Wars to the Masses: ['REAL']\n", + "DAMNING Clinton Footage Leaks DAYS Before Election – SEE IT BEFORE IT'S DELETED: ['REAL']\n", + "Black Agenda Report for Week of Oct 31, 2016: ['FAKE']\n", + "Donald Trump can’t stop saying nasty things about women. It could cost him.: ['FAKE']\n", + "We Republicans Lost On Gay Rights. That’s A Good Thing.: ['REAL']\n", + "Senate Leaders Announce Deal On Human Trafficking Bill, Clearing Path For Loretta Lynch Vote: ['FAKE']\n", + "Report Exposes Inner Workings of Facebook and How Clinton Loyalists Control Your Newsfeed: ['REAL']\n", + "Anti-Semitism growing in Europe: ['REAL']\n", + "Comment on \"The Working Class Won the Election\" by Paul Craig Roberts: ['FAKE']\n", + "Republicans are the ones hiding behind ‘political correctness’: ['FAKE']\n", + "Seeking Refuge: Five lessons from Europe's migration crisis: ['REAL']\n", + "Load of manure dumped at Democratic headquarters: ['FAKE']\n", + "The Trump Campaign Actually Has a Hillary 'Voter Suppression' Strategy with 3 Key Targets: ['REAL']\n", + "Police: Oklahoma Double Murder Suspect Has Hit List, May Be Headed to Nevada: ['REAL']\n", + "The Nation He Built: ['FAKE']\n", + "A Hindu Justice? Why Religion Matters for the High Court: ['REAL']\n", + "Supreme Court Rules Obamacare Subsidies Are Legal: ['REAL']\n", + "To defeat ISIS we need grownups: ['FAKE']\n", + "Hillary Clinton’s push on gun control marks a shift in presidential politics: ['FAKE']\n", + "KRAUTHAMMER: Jeb Bush had a breakout performance in the Fox News debate: ['REAL']\n", + "Is GOP ready to unite against Trump for his Muslim ban?: ['FAKE']\n", + "Republicans Target Senate Democrats Over Menendez Contributions: ['FAKE']\n", + "#MemeOfTheWeek: That Article From The Onion About Mass Shootings: ['REAL']\n", + "Why Trump Won and Why Clinton Lost :: ['FAKE']\n", + "Taking Back Presidential Power: ['FAKE']\n", + "Iraqi forces reportedly begin attack to recapture Tikrit from ISIS: ['FAKE']\n", + "Cheyenne River Sioux Chairman Brings Pipeline Opposition to Meeting With President Obama: ['REAL']\n", + "These Blast Points on Hillary's Campaign... Only The Deep State Is So Precise: ['REAL']\n", + "You’re a Nazi, and other shocking truths according to Trump’s fact-checking rules: ['REAL']\n", + "Peaceful, sincerely, with grace: Paris attacks commemorated with floating lanterns: ['REAL']\n", + "GOP establishment stares into the abyss: ['REAL']\n", + "Comment on Will the Cost of a “Self-Driving Taxi” Really Be Sixty-Seven Cents ($0.67) a Mile? McKinsey’s Mysterious Footnote 17 by JTMcPhee: ['REAL']\n", + "Why Libertarians (and Other 3rd Parties) Should Thank Donald Trump: ['REAL']\n", + "Donald Trump rejects Mitt Romney's ironic tax attack: ['FAKE']\n", + "Not guilty: The power of nullification to counteract government tyranny: ['FAKE']\n", + "Voting is the Problem. Here’s the Solution.: ['REAL']\n", + "Understanding the U.S. talking points on Iran: ['REAL']\n", + "REASONS TO BELIEVE JULIAN ASSANGE IS IN CIA CUSTODY….: ['FAKE']\n", + "Anthony Weiner Sends Apology Sext To Entire Clinton Campaign - The Onion - America's Finest News Source: ['REAL']\n", + "Podesta To Mills: “We Are Going To Have To Dump All Those Emails”: ['FAKE']\n", + "Cruz is as bad as Trump and maybe worse: Column: ['FAKE']\n", + "Leaked: Podesta's Satanic \"Spirit Cooking\" Dinner. Distrubing Stuff Beyond Belief!: ['FAKE']\n", + "Will US-Gulf summit bridge the gap on Iran – or highlight disconnects? (+video): ['FAKE']\n", + "Hillary Clinton Pitches Team Effort to Solve Country’s Troubles, Shows Softer Side: ['REAL']\n", + "Is Donald Trump Really, Finally Falling Apart?: ['FAKE']\n", + "No wikileakes from Kim Dotcom... nothing... zip... zero: ['REAL']\n", + "Russia warns US of ‘unintended incidents’ over Syria: ['FAKE']\n", + "The scariest thing about Brussels is our reaction to it | Simon Jenkins: ['REAL']\n", + "Difference Between Growing Up In The 1960s Compared To 2016: ['FAKE']\n", + "Trump teaches his supporters how to vote correctly: ['FAKE']\n", + "Rep. Gowdy on the impact of the FBI’s new Clinton inquiry: ['FAKE']\n", + "His Fans Are Calling Trump Brave, But Here’s How Hillary Faced Down Man Who Stormed Stage (VIDEO): ['REAL']\n", + "Dakota Access Pipeline violence grows as militarized police use extreme force, tear gas on praying protesters: ['FAKE']\n", + "Money Laundering Scheme Exposed: 14 Pro-Clinton Super PACs, Nonprofits Implicated: ['FAKE']\n", + "Hillary Clinton's happy dance won't last: ['REAL']\n", + "What to watch for in the Indiana primary: ['FAKE']\n", + "GERMAN INTERIOR MINISTER demands that Italy send all new illegal alien Muslim invaders back to Africa: ['REAL']\n", + "There’s Toxic Air In Your Home and This Is You Can Get Rid of It Naturally: ['REAL']\n", + "COP21: 'Never have the stakes been so high': ['REAL']\n", + "This Is How Putin Celebrated Trump’s Election Win: ['FAKE']\n", + "Why Trump Won; Why Clinton Lost: ['FAKE']\n", + "Round I in Iowa: Scott Walker Emerges: ['REAL']\n", + "Victim Blaming the Planet: ['REAL']\n", + "Hillary Clinton Responds To Email Controversy: 'I Want The Public To See My Email': ['FAKE']\n", + "Clinton Network Concerned About Teneo’s Consulting Behavior: ['FAKE']\n", + "Why does ISIS keep making enemies?: ['REAL']\n", + "The Daily 202: Trump really is in danger of losing Utah: ['FAKE']\n", + "Clinton Enters Fall With Key Advantages in White House Race: ['REAL']\n", + "Podesta Part 18: Wikileaks Releases Another 1,300 Emails; Total Is Now 31,500: ['REAL']\n", + "What you need to know about the New Hampshire primary: ['FAKE']\n", + "This smart, harmless pesticide patent could take down Monsanto and change the world: ['REAL']\n", + "NATO and Putin: Downed Russian bomber is big threat: ['REAL']\n", + "Assange claims ‘crazed’ Clinton campaign tried to hack WikiLeaks: ['FAKE']\n", + "The most durably Democratic county in the country could go for Trump: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Donald Trump a KGB Spy?: ['REAL']\n", + "Rand Paul Drops Out Of White House Race: ['REAL']\n", + "West covering up crimes of Bahraini regime: Analyst: ['REAL']\n", + "No, Mexico Doesn’t Have A Wall On Its Southern Border—But If Trump Wins It Might Build One: ['REAL']\n", + "Donald Trump's run: He was just the man he was waiting for: ['FAKE']\n", + "Episode #159 – SUNDAY WIRE: ‘Tick-Tock USA’ with guests Dr Marcus Papadopoulos, Basil Valentine: ['REAL']\n", + "Trump Haters Mow Down Signs, “Black Women for Trump” Make Them Famous: ['FAKE']\n", + "AP FACT CHECK: Claims in the VP debate: ['REAL']\n", + "Why You Should Drink Carrot Juice Daily? How to Make Your Own?: ['REAL']\n", + "Ugly, bloody scenes in San Jose as protesters attack Trump supporters outside rally: ['FAKE']\n", + "PrankGate? Patriots' Gostkowski Terrorizing NFL Via Prank Calls: ['REAL']\n", + "Millions of South Koreans Rise Up Against Shadow Government: ['REAL']\n", + "Why did Mexico invite Donald Trump for a visit? (+video): ['FAKE']\n", + "Paintings 'almost no one else seemed to be doing': ['REAL']\n", + "Hillary is new and improved! Take as directed.: ['REAL']\n", + "Without Bold Agenda, Warn Progressives, A Clinton Presidency Won’t Stand Chance: ['FAKE']\n", + "The Double Standards of American Politics (What Do I Tell My Daughter?) · Guardian Liberty Voice: ['REAL']\n", + "Civil War in the GOP: Trump Leading “Long Experiment in Populism… New Republican Party”: ['REAL']\n", + "Comment on \"What Hath Trump Wrought?\" by Pat Buchanan: ['REAL']\n", + "Protests at Donald Trump rally overshadow Washington primary win: ['FAKE']\n", + "Obama takes fire for: ['REAL']\n", + "Bernie Sanders is expected to endorse Hillary Clinton today. What did his movement mean?: ['REAL']\n", + "WikiLeaks Revelations Leave The Federal Emperor Wearing No Clothes: ['REAL']\n", + "Trump Doubles Down On McCain Criticism, Refusing To Apologize: ['FAKE']\n", + "Why Scott Walker's supernova campaign burned out (+video): ['REAL']\n", + "Baltimore, race and matters of perception: ['REAL']\n", + "WORLD WAR 3 is Now * HILLARY Clinton Is Mushroom Cloud Waiting to Happen: ['FAKE']\n", + "Congress inches closer to cliff: ['REAL']\n", + "Carson Doubles Down on 'Muslim' Comments: 'Sharia Inconsistent with Constitution': ['REAL']\n", + "It Looks Like George Soros is Funding the Trump Protests Just Like He Funded The Ferguson Riots: ['FAKE']\n", + "In clash between Trump and the Khans, new signs of a cultural and political divide: ['FAKE']\n", + "CHARLESTON ‘ON EGGSHELLS’ ON EVE OF TWO RACIALLY CHARGED TRIALS |: ['FAKE']\n", + "Chris Christie says debt-free college is 'wrong': ['REAL']\n", + "Just Weeks After Obama’s Executive Order on Catastrophic Space Weather Events, a Coronal Mass Ejection Is Set to Hit on Election Day?: ['REAL']\n", + "PUTIN’S LATEST ATTACK AGAINST HILLARY CLINTON AND THE U.S ESTABLISHMENT: ['REAL']\n", + "New York prison escape: Worker questioned, source says: ['REAL']\n", + "Texas Republican Calls Hillary The WORST Word You Could Ever Call A Woman, Blames Staffer (IMAGES): ['REAL']\n", + "VA Secretary Robert McDonald admits lying about Special Forces service, apologizes: ['REAL']\n", + "Texas County Enacts \"Emergency Paper Ballots\" After \"Software Glitch\" In Voting Machines: ['REAL']\n", + "Jeb Bush and Iraq: What price family loyalty? (+video): ['REAL']\n", + "Iraqi Soldier Battling in Mosul Reunited with His Family After Two Years of Estrangement: ['REAL']\n", + "House Committee Report Finds Secret Service Is 'An Agency In Crisis': ['FAKE']\n", + "History class becomes a debate on America: ['FAKE']\n", + "Congress: Hillary Will Be Impeached If She Becomes President: ['REAL']\n", + "Poll: Trump leads GOP race nationally but with weaker hold on the party: ['FAKE']\n", + "Jesse Matthew charged in Hannah Graham's murder; DA will not pursue death penalty: ['FAKE']\n", + "With Iran deal, Obama makes bad history: ['REAL']\n", + "23 Things to Do to Improve Your Mental Health: ['REAL']\n", + "Kentucky clerk still won't issue same-sex marriage licenses: ['REAL']\n", + "NATIONAL REVIEW, Conservatism Inc., Plan To Cave EVEN MORE On Immigration!: ['FAKE']\n", + "Ore. Gunman Asked Victims If They Were Christians: ['REAL']\n", + "BREAKING: Muslim shot dead after trying to KILL GUARD at US EMBASSY in Kenya: ['FAKE']\n", + "Why we miss the unpolarizing Pat Moynihan: ['REAL']\n", + "Why are these candidates losing the GOP race so far?: ['REAL']\n", + "Former DEA Prescription Head Drops a BombShell — Congress Protects Big Pharma & Fuels Opioid Crisis: ['REAL']\n", + "Sanders won't call for release of Clinton's bank speech transcripts: ['REAL']\n", + "Trump’s impending nomination means it’s time for a third party: ['REAL']\n", + "The College Loan Bombshell Hidden in the Budget: ['REAL']\n", + "It Took Less Than 2 Hours For The New Email Investigation Story To Completely Collapse (VIDEO): ['FAKE']\n", + "How Predictive Are Iowa And New Hampshire?: ['FAKE']\n", + "ISIS Executes 300 Iraqi Civilians by Firing Squad North of Mosul: ['FAKE']\n", + "Common painkillers linked to increased heart failure risk: ['FAKE']\n", + "THIS Test Will Tell If You Are An Indigo, A Crystal Or A Rainbow Child!: ['REAL']\n", + "6 Places Voter Fraud Has Already Happened… But Don’t Worry: ['REAL']\n", + "Trump: 'We Must Replace Globalism with Americanism': ['FAKE']\n", + "Hillary Clinton introduces Michelle Obama at campaign rally (wait, WHAT?) [video]: ['REAL']\n", + "Who reckons this might not be a legit iPhone charger?: ['REAL']\n", + "Comment on If Clinton Goes Down, Loretta Lynch Will Go Down With Her by Truth Detector: ['FAKE']\n", + "Arianna Huffington, journalist: echo chamber for Hillary Clinton: ['REAL']\n", + "Obama On Loretta Lynch: 'You Don't Hold Attorney General Nominees Hostage': ['FAKE']\n", + "Profit sharing was supposed to be a silver bullet for middle-class success. What happened?: ['REAL']\n", + "The FBI and DOJ Summed Up By One BRUTAL Cartoon: ['FAKE']\n", + "News And Views From The Nefarium – November 3, 2016 [Video]: ['REAL']\n", + "How the election battle shapes up: ['REAL']\n", + "Trump: O'Malley 'weak' and 'pathetic' for apologizing to Black Lives Matter protestors: ['FAKE']\n", + "Ted Cruz’s 5-percent flim-flam: His latest economic promise is a real laugher: ['REAL']\n", + "In my timeline it was Michael Barage, Rump and Billary: ['REAL']\n", + "Hillary Clinton wins debate, Bernie Sanders rises in polls: ['REAL']\n", + "Parsing Biden's words: If Hillary runs, he won't - Politics.com: ['REAL']\n", + "United We Grand - The Onion - America's Finest News Source: ['REAL']\n", + "Former Attorney General Janet Reno Passes Away: ['REAL']\n", + "Media Self-Destruct over Trump: ['FAKE']\n", + "To finish MLK's work, face up to racism (Opinion): ['FAKE']\n", + "Bill Clinton Inc: Billions for the Foundation, $116 Million for the Clintons: ['FAKE']\n", + "Comment on Corporate Democratic Party Think Tank ‘Third Way’ Exposed by Dear Centrists: The Left Has Something to Say Whether You Like It or Not: ['REAL']\n", + "Russian jet crashes in Egypt's Sinai Peninsula, killing 224 people: ['REAL']\n", + "WATCH: Mass Shooting Occurs During #TrumpRiot; Media Ignores (Video): ['REAL']\n", + "The Anti-Trump Protesters Are Tools of the Oligarchy: ['REAL']\n", + "Jeb on running as a Bush: 'Interesting challenge': ['REAL']\n", + "VA Hospital Honors Decorated Veteran of Three Wars with Free Side of Mashed Potatoes | GomerBlog: ['REAL']\n", + "British banker took 60g of cocaine while torturing & killing prostitute, court told: ['REAL']\n", + "Bill Black: Wall Street’s Apologist-in-Chief Mansplains Regulation to Senator Warren: ['FAKE']\n", + "“We are losing control of the streets,” say police as Angela Merkel’s Germany descends into chaos and lawlessness: ['FAKE']\n", + "Will Bill Clinton's best effort be enough?: ['FAKE']\n", + "At least 12 dead in shooting at office of satirical French magazine: ['FAKE']\n", + "Hillary is So Unpopular, She Has to Pay Off Youth Voters and Fabricate Her Rallies: ['REAL']\n", + "Because of Hillary Clinton, Emergency-Contraception Is Banned In Honduras: ['FAKE']\n", + "Iran, world powers agree to nuclear deal: ['FAKE']\n", + "Supreme Court Throws Out Ruling On Obamacare Contraception Mandate: ['FAKE']\n", + "In era of Trump, spin cycle gets a makeover: ['FAKE']\n", + "Clinton Camp in Damage-Control Mode Over 'Top Secret' Emails: ['FAKE']\n", + "North Dakota had 292 oil spills in 2 years officially disclosed 1 to the public: ['REAL']\n", + "Clinton rails against big banks, but refuses to release Wall Street speeches: ['REAL']\n", + "Fresno State Student Transitions to a Male: ['REAL']\n", + "Comment on The Liberal Conservative Examines The Bill Of Rights, Part VIII by Entertainment and Movie reviews with tips on how to get Website Traffic and Make Money Online.: ['REAL']\n", + "Yemeni forces fire ballistic missile at Saudi Arabia’s Jeddah airport: ['FAKE']\n", + "Jim Rogers: It’s Time To Prepare; Economic And Financial Collapse Imminent (VIDEO): ['REAL']\n", + "What to Expect From the New Congress: ['REAL']\n", + "Clinton Promises To Scrap ‘Pointless’ FBI If Elected: ['FAKE']\n", + "Jesus Christ’s ‘Burial Slab’ Uncovered During Restoration: ['REAL']\n", + "Knesset Speaker asks Vatican to join battle against UNESCO’s denial of history: ['REAL']\n", + "Mitt Romney Could Soon Endorse Marco Rubio. Will Jeb Join Him?: ['REAL']\n", + "4 Motivation-Zapping Thoughts To Identify and Eliminate: ['REAL']\n", + "How World War III Could Start: ['REAL']\n", + "Charlie Hebdo editor-in-chief: ‘Religion should not be a political argument.’: ['FAKE']\n", + "John Pilger: ‘The truth is… there was no one to vote for’ (Going Underground US election special): ['FAKE']\n", + "Ashton Carter Is Sworn In As Obama's 4th Defense Secretary: ['REAL']\n", + "Historic nuclear deal reached in Vienna: What does it mean for Iran?: ['FAKE']\n", + "Can Cruz-Kasich strategy really stop Trump?: ['REAL']\n", + "Obama’s inconsistent claim on the ‘frequency’ of mass shootings in the U.S. compared to other countries: ['REAL']\n", + "Halloween Costumes Mocking #NoDAPL Activists Hit Social Media: ['REAL']\n", + "Appeals court rules against Obama’s immigration plan: ['REAL']\n", + "NATO, Russia To Hold Parallel Exercises In Balkans: ['FAKE']\n", + "The vengeful god of Kim Davis: The powerful forces we ignore when we fixate on one Kentucky clerk: ['REAL']\n", + "South Dakotans may not like Obama, but they’d like to see the president: ['REAL']\n", + "October Surprise: ABC Uncovers “Millions” of Payments From Russia To Trump: ['FAKE']\n", + "Republicans finally pass an Obamacare repeal. Do GOP voters care?: ['FAKE']\n", + "FBI Agent Accuses James Comey Of ‘Trampling On The Rule Of Law’: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dan Pfeiffer to leave White House: ['REAL']\n", + "Contaminated food from China now entering the U.S. under the 'organic' label: ['FAKE']\n", + "Exclusive Clinton op-ed: I'll look for common ground: ['FAKE']\n", + "Don’t Believe The Myth That Weightlifting Will Slow You Down: ['REAL']\n", + "Poll: Voters trust Trump on economy, Clinton on nukes: ['FAKE']\n", + "NC Governor Partially Changes 'Bathroom Bill' after Backlash: ['REAL']\n", + "Donald Trump Is The King Of Russian Spies: ['FAKE']\n", + "Obama: ‘Africa is on the move’: ['REAL']\n", + "“Where is the public outcry for an explanation of how the longest war in American history is on a course to end in failure?”: ['FAKE']\n", + "The Arrivals Bosanski Prijevod 36-theStoryOfJesus: ['REAL']\n", + "Hamas Member Admits On Live TV That ‘Palestine’ Never Existed: ['REAL']\n", + "The Hillary Era is Coming: Worry!: ['REAL']\n", + "The FBI's Clinton Investigation Is Wider Than Assumed: ['FAKE']\n", + "White people have a race — but everyone flips out when we talk about it: ['REAL']\n", + "N.J. Gov. Christie walks a fine line on gay marriage: ['REAL']\n", + "Democrats Push to Prevent Gun Sales to Terror-list Suspects: ['FAKE']\n", + "Contests in South Carolina, Nevada to test the appeal of the outsiders: ['REAL']\n", + "Donald Trump Call For Immediate Shutdown of Clinton Foundation: ['FAKE']\n", + "Louie Gohmert For House Speaker?: ['REAL']\n", + "Secretary of Labor Tom Perez on how to fight for social change: ['FAKE']\n", + "Wikileaks: Clinton, Podesta Agreed Not To Distribute Confidential Intel By Private Email Account: ['FAKE']\n", + "Wolf Richter: What the Heck’s Going on with Foreclosures? Why this Spike?: ['REAL']\n", + "RED ALERT: China officially orders its citizens to prepare for WW3 as tensions with the United States boil over: ['FAKE']\n", + "The World is Waking Up and it’s Magic to Watch: ['REAL']\n", + "If Donald Trump gets rattled by press, how would he handle Putin?: ['FAKE']\n", + "Belgian police hunting 2 mystery bombers believed to have survived Brussels attacks: ['FAKE']\n", + "Health Ranger to launch revolutionary, certified organic, non-GMO preparedness food line this Thursday: ['REAL']\n", + "France Plans to Implement Universal Biometric IDs: ['FAKE']\n", + "NEW WIKILEAK : Top Clinton Operative Believes “BLACK VOTERS ARE STUPID” – TruthFeed: ['REAL']\n", + "The Latest On Iran Deal: Obama Says Deal Provides New Way Forward: ['REAL']\n", + "Israel preparing for one-sided UN Security Council resolutions: ['FAKE']\n", + "Senate Dems back down on Iran, say won’t support sanctions bill yet: ['REAL']\n", + "Melania Trump Plagiarized Michelle Obama, a Woman Republicans Said Hated America: ['FAKE']\n", + "Yosemite free-climbers reach top of El Capitan: ['REAL']\n", + "Peter Thiel On Trump: ['REAL']\n", + "Three Likely GOP White House Hopefuls Back Legal Status for Illegal Immigrants: ['FAKE']\n", + "Comment on India Moves to Severely Restrict Use of Cash, Forcing Much of Economy Into Barter by Bugs Bunny: ['REAL']\n", + "Migrants FLOOD Into U.S. From Mexico Right Before Election: ['REAL']\n", + "Scott Walker: Wall on Canadian Border Worth Reviewing: ['REAL']\n", + "State Dept. uncovers nearly 18,000 missing emails sought from ex-Clinton spokesman: ['REAL']\n", + "Police Departments Refuse Participation In Dakota Access Pipeline Crackdown: ['REAL']\n", + "Donald Trump and the Equilibrium to Come | New Eastern Outlook: ['REAL']\n", + "Environment 'Has Never Been A Partisan Issue' For EPA Administrator: ['FAKE']\n", + "Obama pushing to diversify federal judiciary amid GOP delays: ['FAKE']\n", + "Why presidential candidates' faith matters less and less to voters: ['REAL']\n", + "DOJ: Guardsman, cousin charged with supporting ISIL: ['REAL']\n", + "Obama will not endorse candidate in Democratic primary race: ['REAL']\n", + "Will #DraftOurDaughters Bring Hillary Down?: ['REAL']\n", + "Michelle Obama's full DNC speech: Best of the night?: ['REAL']\n", + "They Knew: The End of the Clinton Lies Begins: ['FAKE']\n", + "The USA Era (1945 - 2008) in Retrospect: ['REAL']\n", + "Russia Warns US In Total Breakdown After FBI Notifies Obama All Hillary Emails Found: ['REAL']\n", + "Mormon Exodus: Trump, Clinton Tied in Utah at 26%; McMullin 22%, Johnson 14%: ['FAKE']\n", + "Why Clinton remains inevitable — almost: ['REAL']\n", + "Fact-checking the second Clinton-Trump presidential debate: ['FAKE']\n", + "Sandy Hook Promise Rakes In $6 Million (VIDEO): ['FAKE']\n", + "Obama veers left: ['REAL']\n", + "Libertarians hope rallies and ads can nudge them into the presidential debates: ['REAL']\n", + "Islamic State admits defeat in Kobani; blames airstrikes: ['REAL']\n", + "Obama On Climate Change: 'I Actually Think We're Going To Solve This Thing': ['REAL']\n", + "Mike Huckabee on Netanyahu, wage stagnation, 2016 and more: ['REAL']\n", + "Crucial Rule Is Delayed a Year for Obama’s Health Law: ['REAL']\n", + "At least 12 dead after terror attack at Paris newspaper office (+video): ['REAL']\n", + "World leaders' personal chefs sample Indian market fare: ['REAL']\n", + "An Open Letter to Black South African Police Officers: ['FAKE']\n", + "Gay man finds it in himself to tolerate religious person: ['FAKE']\n", + "US Spy Chief: Asking North Korea To Stop Nuke Program a ‘Lost Cause’: ['REAL']\n", + "The Devastating Consequences Of A 'Small' Rise In Global Temperatures: ['REAL']\n", + "Cost, logistics of Obama immigration plan raise concerns before launch: ['FAKE']\n", + "General is most senior Army officer to kill self: ['REAL']\n", + "Putin Mocks Clinton Claim Of Russia Election Meddling: ‘Is U.S. A Banana Republic?’: ['FAKE']\n", + "Attack of the Clones translated into Chinese and back to English makes for hilarious subtitles: ['REAL']\n", + "Seth Meyers Takes ‘A Closer Look’ At The Final Stretch Of The Election Season (VIDEO): ['REAL']\n", + "HUFFPOLLSTER: Growing Economy Good News For Obama: ['REAL']\n", + "Soros-Linked Voting Machines Cause Concern over Rigged Election: ['REAL']\n", + "Israel settlements legal, Trump aide says, playing anti-Iran video message on Mount Zion: ['FAKE']\n", + "3 Members Of Muslim Family Shot Dead In Chapel Hill: ['FAKE']\n", + "Is Obama preparing a parting shot on Israel? This President must not bind the next: ['REAL']\n", + "“Scary Stories In 5 Words” are terrifying tales for people short on time: ['FAKE']\n", + "BUSTED: Eric Trump Admits Daddy ‘Started The Conversation’ About Obama’s Birth Certificate (AUDIO): ['FAKE']\n", + "Wolf Richter: Done in by Overcapacity, Stagnant World Trade, and China, Korean Shipbuilders Collapse on Top of Taxpayers: ['FAKE']\n", + "Stating the obvious? FBI awkwardly acknowledges San Bernardino massacre likely terrorism: ['FAKE']\n", + "Alex Collier on Angels 2016-10-22 [VIDEO]: ['REAL']\n", + "What Is To Be Done?: ['FAKE']\n", + "American Dream, Revisited: ['FAKE']\n", + "Thousands of rape kits left untested despite federal pledge, critics blame DOJ: ['REAL']\n", + "Mr. Trump goes to Washington: The surreal spectacle of a know-nothing GOP frontrunner: ['FAKE']\n", + "Fox News Just Exposed Hillary’s ILLEGAL VOTING Scheme To The Entire Country!: ['FAKE']\n", + "Oil prices could fall further if Iran nuclear deal is reached: ['FAKE']\n", + "Why Are Russia and China Buying Up All of America’s Food? Paul Martin and Dave Hodges: ['REAL']\n", + "Obama to propose spending $74B more in 2016 than mandatory spending cuts: ['FAKE']\n", + "US Votes 'No' As UN Adopts Landmark Resolution Calling to Ban Nuclear Weapons: ['FAKE']\n", + "Trump: I'll Only Lose With 'Cheating,' Asks Supporters To Watch Polling Places: ['FAKE']\n", + "Clinton looks to sisterhood, but votes may go to Sanders: ['REAL']\n", + "Clinton campaign denies access to pool reporter: ['REAL']\n", + "Europeans have no future - Putin on Migrant Crisis [Video]: ['FAKE']\n", + "Doug Schoen: Trump, Hillary and the forgotten swing vote -- seniors: ['REAL']\n", + "Re: Americans Want Hillary in Jail - Rightly So!: ['REAL']\n", + "BRICS Do Not Lack Mortar: What Detractors Should Know - Rakesh Krishnan Simha: ['FAKE']\n", + "How the GOP can take back the White House: ['FAKE']\n", + "Sorry Jeb, 'anchor babies' is a slur: ['REAL']\n", + "Fight night: Why the South Carolina showdown could turn bloody: ['REAL']\n", + "Battle over Scalia’s replacement already spilling into Senate races: ['FAKE']\n", + "WikiLeaks Podesta Emails Confirm Hillary’s Health Issues: ['REAL']\n", + "Clinton struggles to contain media barrage on foreign cash: ['FAKE']\n", + "What WikiLeaks hack says about Clinton: Our view: ['REAL']\n", + "Providing Balanced Information Is Not Facebook's Goal - NYTimes.com: ['FAKE']\n", + "Which States Can Gary Johnson and Jill Stein Spoil?: ['REAL']\n", + "On Trump’s victory: ['FAKE']\n", + "Trump Hits 'Magic Number' of Delegates Required for Nomination: ['REAL']\n", + "OPINION: Both sides of abortion debate need to talk more honestly: ['FAKE']\n", + "Vine 2013-2016: celebrate the life and death of an app with these 12 clips: ['REAL']\n", + "Possibility of fire aboard EgyptAir flight raised as body parts, debris found in Mediterranean: ['REAL']\n", + "These New Solar Panels Use Sunlight to Create Clean Drinking Water from the Air: ['FAKE']\n", + "Hacker Guccifer 2.0 Says Election Could Be Rigged, Promises to Monitor 'from Inside': ['REAL']\n", + "Presumptive Nominee? Trump Indiana Win Creates Big Challenge to Unite Party: ['REAL']\n", + "Is the Hillary email scandal Watergate all over again?: ['REAL']\n", + "Do Britain’s gunless bobbies provide answers for America’s police?: ['REAL']\n", + "Top EU Official Disputes That Trump Could Upend Iran Nuclear Deal: ['FAKE']\n", + "Another 4.6-Magnitude Tremor Hits Central Italy After Two Earthquakes: ['REAL']\n", + "Christie is wrong. Vaccination is not a personal decision. It's a social obligation.: ['REAL']\n", + "Steve Case: Why I’m voting for Hillary Clinton: ['REAL']\n", + "Comment on Unprecedented letter from Chair of Joint Chiefs suggests U.S. military does not want a President Hillary by joworth: ['REAL']\n", + "Israel Tracked ‘Anti-Government’ Journalists On Facebook: ['REAL']\n", + "Newt Says GOP Women Are Actually Thanking Him for Calling Out Megyn Kelly on ‘Sex Obsession’: ['REAL']\n", + "An Admittedly Ingenious Low: ['REAL']\n", + "Week of Donald Trump-Hillary Clinton feud a taste of things to come: ['FAKE']\n", + "Trump calls for charges against Clinton after FBI interview in email investigation: ['FAKE']\n", + "Teenager ‘enamored with ISIS’ in court over ‘viable device’ found on London Underground: ['REAL']\n", + "How To Talk To Your Child About Death - The Onion - America's Finest News Source: ['FAKE']\n", + "Busted: Bill Recorded Telling Mistress To Deny That Clintons Helped Her Get A State Job: ['FAKE']\n", + "BREAKING: U.S. And Russian Jets Almost Collide Over Syria: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cruz takes all 14 delegates at Wyoming GOP convention, NY primary next: ['REAL']\n", + "Think Indiana is bad? It's legal to deny service to gay and lesbian people in 29 states.: ['REAL']\n", + "Crossing the Acheron: Back to Vietnam: ['FAKE']\n", + "Before leak, NSA mulled ending phone program: ['REAL']\n", + "“America has lost” in the Philippines: ['REAL']\n", + "Report: Solar industry added jobs 20 times faster than the national average last year: ['REAL']\n", + "The teachable moment of Saudi Arabia’s economic threat against the United States: ['FAKE']\n", + "What Are Saponins? Discovering Their Health Benefits: ['REAL']\n", + "This astonishing chart shows how moderate Republicans are an endangered species: ['REAL']\n", + "Why the Democrats Keep Losing the Congress: ['REAL']\n", + "Will Barack Obama Delay Or Suspend The Election If Hillary Is Forced Out By The New FBI Email Investigation?: ['FAKE']\n", + "The wingnut myth that refuses to die: The one simple reason why there’s no “liberal media conspiracy”: ['FAKE']\n", + "LEAKED BOMBSHELL: The Shocking Truth About Hillary That Huma Abedin Has Concealed For Years: ['FAKE']\n", + "Bombshell: 2006 audio of Hillary Clinton proposing rigging Palestine election: ['FAKE']\n", + "Dems’ scary electoral future: Why the progressive sales pitch is getting harder: ['FAKE']\n", + "Chinese Immigrants Demand Protection from Paris Muggers: ['FAKE']\n", + "Transylvania Recalls Melania Trump While Movement To Deport Her Gains Steam: ['REAL']\n", + "OnPolitics | 's politics blog: ['FAKE']\n", + "NYC Democratic Election Commissioner: “They Bus People Around to Vote”: ['REAL']\n", + "Poll: With 2016 approaching, Clinton maintains advantages: ['FAKE']\n", + "Facebook is full of fake news stories. On Election Day, don’t fall for them.: ['FAKE']\n", + "Electric Floors Could Generate Renewable Energy From Walking: ['REAL']\n", + "Kind Samaritan Pays Off All Overdue Lunch Fees At Hometown Elementary School: ['REAL']\n", + "Why now, John Kasich?: ['REAL']\n", + "New Heavy-Duty Voting Machine Allows Americans To Take Out Frustration On It Before Casting Ballot - The Onion - America's Finest News Source: ['REAL']\n", + "House approves Syrian refugees bill: ['REAL']\n", + "Round 2: GOP rivals try to ding Trump at debate – front-runner hits back: ['REAL']\n", + "Hillary admits creation of Mujahedin plague: ['REAL']\n", + "Russia prevented Spain from diplomatical conflict denying its proposal: ['FAKE']\n", + "Get Ready For A Likely Market Crash After Election [Video w/ Transcript]: ['REAL']\n", + "When white nationalists show up to 'monitor' the polls: ['FAKE']\n", + "Michelle Obama Deletes Hillary Clinton From Twitter: ['REAL']\n", + "DAPL Protesters Proven Right as Largest Gas Pipeline in U.S. Experiences Massive and Deadly Explosion: ['FAKE']\n", + "Jeb Bush Attacks Obama Administration For Failing 'Easy Calls' On Religious Freedom: ['REAL']\n", + "US Insiders – Not Russia – Leaked Clinton Emails: ['FAKE']\n", + "Iraq ‘Ready For War’ With Turkey Over Who Should Control Mosul After Isis: ['FAKE']\n", + "Trump voter listens carefully to call for national unity then sets up Aryan website: ['FAKE']\n", + "NOT KIDDING: Colleges Give Students “Safe Spaces” To Cry Over Trump Win…Threaten Students Over Pro-Trump “Chalkings”: ['FAKE']\n", + "Ferguson, N. Charleston: 2 police killings, 2 outcomes: ['REAL']\n", + "Uber Drivers Found To Discriminate By Gender, Race - The Onion - America's Finest News Source: ['REAL']\n", + "Senate GOP prepared to replace Obamacare subsidies: ['REAL']\n", + "Putin Dedicates Christian Statue to Prince Vladimir: ['REAL']\n", + "Newt Gingrich goes berserk when Fox News Megyn Kelly referred to Trump as a sexual predator: ['FAKE']\n", + "Why Sprott Believes Gold Bullion Is A Mandatory Portfolio Asset: ['REAL']\n", + "Let’s Be Clear—A Vote for Warmonger Hillary Clinton Is a Vote for World War 3: ['FAKE']\n", + "Twitter Users DESTROY Clinton Puppet James Comey #ComeyResign – TruthFeed: ['FAKE']\n", + "Trump says GOP opposition to him 'taking advantage of our country': ['FAKE']\n", + "GOP voters want an apocalypse: The truth about Trump & Carson’s success: ['REAL']\n", + "EWAO Hubble has just spotted mysterious 'plasma balls' of unknown origin: ['REAL']\n", + "Donald Trump's lost month in Iowa: ['REAL']\n", + "Hillary Helped Chelsea’s Friend With VISA Issues Within 2 Hours: ['REAL']\n", + "From downed Russian jet, hard lessons about destroying Islamic State: ['REAL']\n", + "Webb rips Clinton's State record as he mulls independent White House bid: ['FAKE']\n", + "JOHNSON & JOHNSON ORDERED TO PAY $70 MILLION TO CALIFORNIA WOMAN FOR CANCER-LINKED BABY POWDER: ['FAKE']\n", + "Who's Got the Best Chance against Clinton? It's Not Who You Think…: ['REAL']\n", + "Rubio: Obama's diplomacy with dictators threatens America's safety, security: ['REAL']\n", + "The Daily 202: Clinton and Trump cave to pressure: ['FAKE']\n", + "Inside the Invisible Government: War, Propaganda, Clinton & Trump: ['FAKE']\n", + "Former GOP Congressman Goes Full Trump, Encourages Armed Revolt If Clinton Wins: ['FAKE']\n", + "For young black activists, an urgent task: Persuading peers to vote: ['FAKE']\n", + "Peter Brimelow On With Steve Curtis At 8:05 Eastern: ['REAL']\n", + "Marco Rubio’s big gamble: ['FAKE']\n", + "Donald Trump's year of tweeting dangerously: ['REAL']\n", + "Coalition Nations Seek to Put North Korea in a Vise: ['REAL']\n", + "National Review disses Donald Trump: Why the magazine's plan won't work: ['REAL']\n", + "Hillary Clinton's 'Delegate Hell': ['FAKE']\n", + "Thomas Frank Explores Whether Hillary Clinton and the Democratic Party Will Address Inequality: ['REAL']\n", + "Congress likely to blow budget deadline: ['REAL']\n", + "Ukraine Withdraws Forces After Fight Over Strategic City: ['REAL']\n", + "6 Myths That Men Believe About Southeast Asia: ['REAL']\n", + "What happened in this election?: ['REAL']\n", + "Top university stole millions from taxpayers by faking global warming research: ['REAL']\n", + "No charges after new review of Hillary Clinton emails – FBI director: ['FAKE']\n", + "Playing the “rigged” card: Trump, Jones and other conspiracy mongers must look within the GOP for the legit scandals: ['REAL']\n", + "“Brexit means Clusterfuck” confirms Prime Minister: ['REAL']\n", + "Why Netanyahu is confronting the White House: ['FAKE']\n", + "‘Ignored’ voter to become ‘absolutely shafted’ voter: ['REAL']\n", + "Hillary Reboots ‘Vast Right-Wing Conspiracy’ Playbook: ['FAKE']\n", + "GOP Leaders: Donald Trump, Paul Ryan Meeting 'Critical': ['FAKE']\n", + "Can U.S. Elections Really Be Stolen? Yes : Information Clearing House - ICH: ['FAKE']\n", + "Obamacare group slashes staff: ['REAL']\n", + "Obama Admits to Rigged Elections back in 2008: ['REAL']\n", + "Alien Insects Capture In UK: ['FAKE']\n", + "Hesston, Kansas, mass shooting: what we know: ['REAL']\n", + "Janet Yellen won't say when interest rates will rise because she doesn't know: ['REAL']\n", + "Actually, many Trump voters are in one basket and it’s both racist and economically frustrated: ['FAKE']\n", + "EWAO Stephen Hawking Warns: STOP Searching for Aliens before its TOO LATE: ['FAKE']\n", + "Chinese may become Russia’s second largest ethnic population by 2050 | Russia & India Report: ['FAKE']\n", + "Clinton Cries Racism Tagging Trump with KKK; Trump Says 'She Lies': ['FAKE']\n", + "There's Something O'Reilly Trusts Even Less Than Iran: ['REAL']\n", + "Meet the Neocons, 9/11 Criminals and Goldman Bankers On Team Trump : The Corbett Report: ['FAKE']\n", + "This Times newspaper correction is amusing: ['REAL']\n", + "Obama vowed to be the healer-in-chief. He never made the effort - The Boston Globe: ['FAKE']\n", + "6 neo-Nazis arrested in Motorola assassination case, SBU plot exposed - Fort Russ: ['REAL']\n", + "Clinton campaign: WikiLeaks hack gets ‘closer and closer to the Trump campaign’: ['REAL']\n", + "Did Hillary Insult Sanderistas as ‘Basement Dwellers’? No—Just the Opposite: ['REAL']\n", + "Packer to lose more money as Carey wants back-out fee: ['REAL']\n", + "Assange: Clinton Campaign Tried To Hack WikiLeaks: ['FAKE']\n", + "Paul: Laws on sexuality could be more ‘neutral,’ but all should be protected: ['REAL']\n", + "What to watch in Tuesday's primaries: ['REAL']\n", + "GOP senators demand answers over disclosure of mission to oust ISIS from Mosul: ['FAKE']\n", + "Comment on WATCH: Human Rights Activists Are Targeting The China Dog Meat Festival by information security architect: ['REAL']\n", + "Why Has Putin Pointed Russia's SATAN Nukes at the US? | Silver Doctors: ['FAKE']\n", + "ELECTION DAY QUESTION: Do You Want To Glow In The Dark?: ['REAL']\n", + "Trump's economic team has a lot of billionaires, very few economic experts: ['REAL']\n", + "Family issues weigh heaviest on Biden as he considers a 2016 campaign: ['REAL']\n", + "Constitutional Law Expert: Comey Did NOT Violate Law By Announcing Email Investigation: ['FAKE']\n", + "Democratic candidates exhibit a new ferocity in last debate before N.H. vote: ['REAL']\n", + "Can Trump Save America Like Putin Saved Russia? — The Saker: ['FAKE']\n", + "5 takeaways from the New York primary: ['REAL']\n", + "NATO Confirms Major Troop Buildup In Eastern Europe: ['REAL']\n", + "Gary Johnson and Bill Weld Shift Focus to Answering Questions Outside of Debates: ['FAKE']\n", + "Ryan Endorses Trump, Trump Crushes Ryan’s Dreams: ['FAKE']\n", + "The reinvention of Mitt Romney: ['REAL']\n", + "Has family guy gone nuts?: ['FAKE']\n", + "Donald Trump is really going to be the nominee. This is actually happening.: ['REAL']\n", + "Political polarization is getting worse. Everywhere.: ['FAKE']\n", + "Rubio Goes From Robot to Terminator Against Donald Trump: ['FAKE']\n", + "Destruction of Walk Of Fame star leaves Donald Trump down to his last six Horcruxes: ['REAL']\n", + "Nobody Won the VP Debate, Least of All the American Electorate: ['REAL']\n", + "Fox News Eats Its Own: ['REAL']\n", + "Exchange of equipment, arms & experience: Large-scale joint NATO drills held in Romania: ['REAL']\n", + "New math: Where Trump, Clinton stand after primary victories: ['FAKE']\n", + "What do the protesters believe they are protesting? | OffGuardian: ['REAL']\n", + "Donald Trump Bans 'Washington Post' From Campaign Events: ['REAL']\n", + "Debate over the Cleveland Indians’ Mascot: ['REAL']\n", + "Senate Debate Reveals Absurd Level Of Trade Deal Secrecy: ['REAL']\n", + "ISLAM NOT WELCOME: Obama just got TERRIBLE NEWS – THIS could END his MUSLIM “REFUGEE” Program… FOREVER!: ['FAKE']\n", + "McConnell: Trump's Muslim ban wouldn't pass the Senate: ['FAKE']\n", + "Putin Warns “US Has Pushed Russia Back Into Nuclear Arms Race”: ['REAL']\n", + "Israel Refuses Participation In Paris Peace Conference: ['FAKE']\n", + "Obama nominates Merrick Garland to Supreme Court, sets up Senate showdown: ['REAL']\n", + "‘Like Asking if You’ll Stop Beating Your Wife’: Saudi Ambassador to US Dodges Yemen Cluster Bomb Question - American Herald Tribune: ['FAKE']\n", + "National Attention On Ayotte - Hassan (*NH) Senate Race: ['REAL']\n", + "Trump has lit a fire. Can it be contained?: ['REAL']\n", + "Energy Update – Super High Geomagnetic Solar Winds: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Family history hounds Jeb Bush on campaign trail: ['REAL']\n", + "Donors to G.O.P. Candidates: You’re on Your Own: ['REAL']\n", + "What's NaNoWriMo? Your Story. 30 Days. Try it.: ['REAL']\n", + "Investors Intelligence Says Here Is The Key To A Turnaround In Gold & Silver!: ['REAL']\n", + "Allowing Refugees in US an Open Door to Terror?: ['FAKE']\n", + "The Loosening Grip: ['REAL']\n", + "Holder: Ferguson shooter 'disgusting,' 'punk': ['REAL']\n", + "‘Are We Next?’: ['FAKE']\n", + "Reductress » This Little Girl’s Mind-Blowing Protest Speech Is Everything Her Mother Told Her to Say: ['REAL']\n", + "Gay Rights Will Continue to Divide Republicans: Albert R. Hunt: ['FAKE']\n", + "Love Trumps Hate: GoFundMe To Rebuild Church Torched By Trump Supporter SHATTERS Fundraising Records: ['FAKE']\n", + "Jake Tapper: Where were U.S. leaders in Paris march?: ['REAL']\n", + "Hillary Campaign Launching Attacks on the FBI: ['REAL']\n", + "Report: Trump Used Foundation Money to Launch Presidential Campaign: ['FAKE']\n", + "Republicans start small on ObamaCare, cross fingers for court intervention: ['FAKE']\n", + "Don’t Despair: Why This Election Is Our Greatest Blessing: ['REAL']\n", + "Re: It Is Now Mathematically Impossible To Pay Off The U.S. National Debt: ['REAL']\n", + "Trump relents after withholding medical records: ['FAKE']\n", + "President Obama Gets Real, Not Revenge, On Republicans: ['REAL']\n", + "We can't reward Hillary Clinton with the White House for breaking all the rules: ['FAKE']\n", + "Hillary accepts the nomination: A bold speech for a singular moment in American history: ['REAL']\n", + "ECB policymakers tout December stimulus extension: ['REAL']\n", + "Here’s How Goldman Sachs Lays People Off | Financial Markets: ['REAL']\n", + "George P. Bush says father Jeb Bush is ‘seriously considering’ 2016 run: ['FAKE']\n", + "Ben Carson’s harsh spotlight: An unfit candidate struggles under intense scrutiny: ['FAKE']\n", + "How Hedonistic Game Became The Gateway To Virtuous Truths: ['REAL']\n", + "Rachel Dolezal's brother: She's 'making up more lies': ['REAL']\n", + "Transforming hope into reality for patients of drug-resistant TB: ['FAKE']\n", + "Court ruling on NSA spying splits 2016 field: ['REAL']\n", + "The Battle at UNESCO: ['REAL']\n", + "Rubio shifts tactics; Trump sticks to themes, seeks unity at subdued GOP debate: ['FAKE']\n", + "Poll: 6 in 10 Back Renewal of NSA Data Collection: ['REAL']\n", + "Baltimore in flames: senseless: ['REAL']\n", + "In Nevada caucuses, Trump gets a third straight win: ['REAL']\n", + "How Ted Cruz outfoxed Donald Trump in Iowa: ['FAKE']\n", + "Stronger together? Yes, Mrs. Clinton, but what does 'together' really mean?: ['REAL']\n", + ":: ['REAL']\n", + "Is This What You Think They Would Look Like? Supposed Pictures of Real Extraterrestrials: ['REAL']\n", + "Rep. Jason Chaffetz launches bid for House speaker, shaking up GOP leadership race: ['REAL']\n", + "Hillary Clinton showed us a glimpse of her soul at Benghazi hearings. It was chilling: ['REAL']\n", + "Orlando: The mainstream media serves up a false narrative about terror attack: ['FAKE']\n", + "Jeb Bush Smoked Marijuana, Bullied Other Students In High School: ['REAL']\n", + "Ted Cruz says motivating conservatives is key to winning White House: ['REAL']\n", + "Netanyahu — Flanked by Boehner — Calls for 'Better Deal' with Iran: ['REAL']\n", + "What Is At Stake In The Election: ['FAKE']\n", + "Inside the swing-state playbooks: ['REAL']\n", + "Top 10 toxins that are poisoning your kids: ['REAL']\n", + "Even Doctors Are Surprised: This Recipe Renews The Knees And Joints!: ['REAL']\n", + "A suburban tide against Trump could sink his election bid: ['FAKE']\n", + "Anonymous Released Video Exposing Huma Abedin Days Before FBI Announcement: ['FAKE']\n", + "Hillary Reveals Her Pick for Secretary of State – This Woman CANNOT be Elected!: ['REAL']\n", + "Open carry comes to Texas: Why the Lone Star state will be safer in 2016: ['FAKE']\n", + "The Jeb Bush Health Plan: Five Ways It Differs From What Obama's Done: ['REAL']\n", + "New Player in the ISIS War: Christian Gazillionaire Foster Friess: ['FAKE']\n", + "CNN Fired Donna Brazile 2 Weeks Ago, Made It Public Now After Wikileaks Revelation: ['FAKE']\n", + "Reduce Nurse Burnout by Treating Nurses as Well as We Treat Patients: ['FAKE']\n", + "Boehner takes revenge: ['REAL']\n", + "How Asia trade deal could make or break Obama's foreign policy vision (+video): ['REAL']\n", + "Suspects In Paris Magazine Attack Killed; Market Gunman And 4 Hostages Also Dead: ['REAL']\n", + "FBI Plan B fails: Clinton to be next president: ['FAKE']\n", + "How U.S. Schools Can Improve Math Education - The Onion - America's Finest News Source: ['REAL']\n", + "Why riots happen in places like Baltimore: ['REAL']\n", + "Re: Don’t CLICK that, stupid! Is this email from March 2016 where #PodestaEmails21 and others started?: ['REAL']\n", + "Police Department Is Being Evicted – Lafayette, CA: ['REAL']\n", + "In a break with Obama, Clinton lays out tougher worldview: ['FAKE']\n", + "House Republicans try to gut a key American principle: ['FAKE']\n", + "After Gingrich Attacks Megyn Kelly Over 'Sex,' Trump Advisor's 'Threat' Against Her Blows Up Online: ['FAKE']\n", + "Halloween Pumpkin Carving Scenes at the Hospital | GomerBlog: ['REAL']\n", + "Wall St. Republicans' dark secret: ['REAL']\n", + "Poll: Trump, Carson top GOP race; Clinton leads Dems but support drops: ['FAKE']\n", + "Love Him or Hate Him, Anderson Cooper Just Put a 3rd Degree Burn on Newt for Megyn Kelly 'Sex' Insult: ['REAL']\n", + "Dreaming Beyond Capitalism: a Culture Without Fear: ['REAL']\n", + "Fact-checking the third round of GOP debates: ['REAL']\n", + "Anonymous: World War 3 Is On The Horizon (In 2016): ['FAKE']\n", + "A Barbaric Race Of Underground-Dwelling Giants Once Inhabited The Mount Shasta Region...: ['REAL']\n", + "The Murder Shaking San Francisco’s Liberal Soul: ['FAKE']\n", + "Sanders sharpening message, attacks on Clinton after Nevada loss: ['REAL']\n", + "McMullin surge threatens to squeeze Trump's already narrow path to victory: ['FAKE']\n", + "Proposed Bill Calls for Reconciliation Between Turkey and Armenia: ['FAKE']\n", + "No Pain No Gain? Lockheed Struggles to Finalize Deal With Pentagon on F-35 Lots: ['REAL']\n", + "Non-confrontational style, social media aiding Ben Carson's surge in polls: ['REAL']\n", + "Shootings In Chattanooga: What We Know About The Alleged Gunman: ['REAL']\n", + "The fourth GOP debate is more about the party’s path than personal attacks: ['REAL']\n", + "PIERS MORGAN: “Get Off Your High Horse, Hillary. Only ONE Candidate is Up To Her Neck in FBI Probes and Her Name Isn’t Donald” – TruthFeed: ['REAL']\n", + "Diehard GOP mom: No mother could ever vote for Trump: ['FAKE']\n", + "GRAPHIC VIDEO Shows White Officer Shooting Unarmed Black Man In Back: ['FAKE']\n", + "GOP 2016 candidates look to seize momentum out of debates: ['FAKE']\n", + "Feds Arrest Two Women In New York City In Alleged Terror Plot: ['FAKE']\n", + "Trump or Clinton - Life or Death: ['FAKE']\n", + "Trump, Clinton cautiously optimistic ahead of Iowa caucuses: ['REAL']\n", + "Trump in the White House : Information: ['FAKE']\n", + "Democrats Playing Class Card To Split the White Vote: ['FAKE']\n", + "White House: Obama would veto Keystone bill: ['FAKE']\n", + "Massive Spike In Obamacare Health Premiums Could Boost Trump To Victory: ['FAKE']\n", + "US-led coalition killed 300 Syrian civilians in 11 probed strikes – Amnesty: ['REAL']\n", + "Half Of Russians Fear Syria Could Spark WW3: ['REAL']\n", + "Bill O’Reilly’s humiliating bust: Does Fox News have guts to suspend its own serial exaggerator?: ['REAL']\n", + "76ers Send Clear Message Over Anthem Singer's Shirt: Keep Politics Off the Court & Just Do Your Job: ['REAL']\n", + "Hillary’s cash flow issue: ['REAL']\n", + "Iran Gives Investors Glimpse of $30 Billion in Oil Deals to Come: ['REAL']\n", + "Charleston church massacre suspect caught, but answers elude victims' loved ones: ['REAL']\n", + "William F. Buckley would have loathed Fox News: Inside the right-wing media’s intellectual downfall: ['REAL']\n", + "Listen to the Donald Trump voters: It has taken an ignorant demagogue to tell truth about GOP, humiliate party establishment: ['FAKE']\n", + "Clinton says electing Trump would be 'historic mistake': ['FAKE']\n", + "It’s A Setup: Dems Claim Russians Will Undermine Elections With Fake Documents Showing Voter Fraud: ['FAKE']\n", + "Conservatives Cheer Research Saying Cuts To Unemployment Benefits Helped The Economy: ['REAL']\n", + "The GOP front-runner? It's not Jeb Bush: ['REAL']\n", + "Get Ready For Civil Unrest: Survey Finds That Most Americans Are Concerned About Election Violence | RedFlag News: ['REAL']\n", + "Critics pounce as Obama again shows he isn’t easy on America: ['REAL']\n", + "Key Time In Collective Human History: ['FAKE']\n", + "Cruz allies prevail in North Dakota delegate race: ['REAL']\n", + "US Election an elaborate John Lewis Christmas campaign. More soon.: ['REAL']\n", + "Why the Iowa caucuses have such a massive impact on the presidential race: ['FAKE']\n", + "So you think SUVs are safe? Shocking video: ['REAL']\n", + "Hillary Clinton, Bernie Sanders: King's legacy is alive: ['REAL']\n", + "Russia's 'White Book' on Syria shakes up UN Security Council: ['FAKE']\n", + "Irony Redefined: “Human Rights Champion” Suu Kyi Jails Dissidents: ['REAL']\n", + "Chart Of The Day: Since 2009—–Recovery For The 5%; Stagnation for the 95%: ['FAKE']\n", + "Trump Will Go Away, but the Anger He’s Stirred Up Is Just Getting Started: ['FAKE']\n", + "14 key moments from the Democratic debate: ['REAL']\n", + "US-Korean Relations and the New US President | New Eastern Outlook: ['REAL']\n", + "Seven things I’ve learned by covering the third-party candidates: ['REAL']\n", + "To nominate Clinton, it takes a village: ['REAL']\n", + "Podesta WikiLeaks UFO Updates — New Names Dragged Down the UFO Rabbit Hole: ['FAKE']\n", + "Donald Trump’s statement on the Fox News debate has to be seen to be believed: ['FAKE']\n", + "With 95% of Votes In, All Signs Point to a Trump Victory in Florida: ['FAKE']\n", + "It’s No Surprise That Trump Might Not Accept Election Results. He’s Never Accepted Democratic Norms.: ['FAKE']\n", + "Obama's last State of the Union address in three words: Disjointed, irrelevant and disappointing: ['REAL']\n", + "2016 Tribute to our Troops: veterans who continue to serve: ['REAL']\n", + "Limbaugh: Democrats would 'destroy Jesus Christ': ['FAKE']\n", + "Hillary Clinton's Second Amendment: ['REAL']\n", + "Chattanooga shooting: History of attacks on U.S. military: ['FAKE']\n", + "Obama calls for end to nuclear weapons, but U.S. disarmament is slowest since 1980: ['REAL']\n", + "Pentagon weighs using force to protect US-backed Syria rebels targeted by Russia: ['FAKE']\n", + "Global UFO “Invasion” Stirs Panic! Military Denies Involvement 10/29/16 [VIDEO]: ['FAKE']\n", + "Wreckage in wake of bungled House coup: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Why Nevada was a bad sign for Bernie Sanders's \"political revolution\": ['REAL']\n", + "New York restores order for 2016 front-runners: ['REAL']\n", + "If Clinton goes down, Loretta Lynch will go down with her: ['FAKE']\n", + "Pope calls on Catholics to shelter Europe's migrants: ['REAL']\n", + "The World War 3 Conspiracy – Episode 1: ['FAKE']\n", + "This dad’s tweets about Halloween with his young daughters are brilliant: ['REAL']\n", + "3 winners and 2 losers from Saturday night's Republican debate: ['REAL']\n", + "The Oregon militia standoff, explained: ['REAL']\n", + "This is what it’s like to be a Bush stuck at the bottom of the polls: ['REAL']\n", + "Flashback: Clinton campaign’s press secretary once thought it was a bad look to second-guess James Comey – twitchy.com: ['REAL']\n", + "7 takeaways from the first Democratic debate: ['REAL']\n", + "Donald Trump: 'I want surveillance of certain mosques': ['FAKE']\n", + "Ky. clerk’s attorney: New marriage licenses ‘not worth the paper they’re written on’: ['REAL']\n", + "The GOP case against Loretta Lynch falls apart: ['FAKE']\n", + "Comment on Trump’s Walk of Fame Star Vandalized by MeThePeople: ['REAL']\n", + "Ruth Bader Ginsburg regrets 'ill-advised' remarks about Donald Trump: ['REAL']\n", + "PressTV-Brazil football legend Carlos Alberto laid to rest: ['REAL']\n", + "Dead heat: Trump, Clinton tied in 3 swing-state polls: ['FAKE']\n", + "Tony Blair helpfully describes Remain voters as ‘insurgents’: ['REAL']\n", + "The United States Is Pre-Positioning “Enemy Assets” In Preparation For A Rigged Election: ['FAKE']\n", + "Russia’s Syria intervention may force choice on Obama: Act or yield: ['REAL']\n", + "2016 latest: Spirit of Christmas to be replaced with ‘Every man for himself’. More soon.: ['REAL']\n", + "Ted Cruz launches bid; Some pundits paint him as scary extremist: ['REAL']\n", + "Pope Francis at 9/11 memorial: 'We can never forget them': ['FAKE']\n", + "Fights Over 'Religious Freedom' And Gay Rights Are Costing Republicans: ['FAKE']\n", + "Breakthrough Listen Project to Focus on 'Alien Megastructure': ['REAL']\n", + "Prison sentences are getting shorter. But racial disparities are getting worse.: ['FAKE']\n", + "US election: Hillary Clinton's problem with young women: ['FAKE']\n", + "Neither Dictator nor King: ['REAL']\n", + "Comment on Man of Sin: Obama says illegal aliens can vote because they are U.S. citizens by Christian Zionist: ['FAKE']\n", + "The Most Unhealthy Jobs in America: ['REAL']\n", + "Obama delivers emotional eulogy for Beau Biden: ['REAL']\n", + "Man burned by fajitas while praying can't sue Applebee's: ['FAKE']\n", + "Taliban Militants Attack Afghan Parliament In Kabul: ['FAKE']\n", + "Close call: Russia-U.S. ‘near-miss’ problem moves to Syrian air space: ['FAKE']\n", + "Polls show GOP presidential primary fight wide open: ['FAKE']\n", + "Poll: Rubio leads the GOP pack in matchup against Clinton: ['FAKE']\n", + "Washington’s Intent is Economic Destabilization and “Regime Change” In Venezuela: ['REAL']\n", + "GOP debate: No one trumps Trump and six other takeaways from Las Vegas: ['FAKE']\n", + "Mike Huckabee's daughter: Negative tone in GOP race helps Clinton: ['REAL']\n", + "One of the Most Undervalued Storable Survival Foods: ['REAL']\n", + "America gives Grand Piano to horse: ['REAL']\n", + "BREAKING: Obama: “We Have Not Had a Major Scandal” in My Administration! HAHAHA!: ['FAKE']\n", + "Clinton turns Trump attacks up to 11: ['FAKE']\n", + "2 gunmen killed following deadly Tunisian museum attack that left 21 dead: ['REAL']\n", + "Winners and losers from the 7th Republican presidential debate: ['REAL']\n", + "If you use Facebook to get your news, please — for the love of democracy — read this first: ['REAL']\n", + "Iraqi forces, civilians flee as ISIS gains control of Ramadi, US official says: ['FAKE']\n", + "VIDEO : Black Professor, “Black Voters Are Breaking For Trump”: ['FAKE']\n", + "'America is already great': Obama urges US to back Clinton in DNC speech: ['FAKE']\n", + "Clinton, Trump eye Michigan wins as candidates face first big Midwest test: ['FAKE']\n", + "Queen Elizabeth II owns every dolphin in Britain and doesn't need a driving licence and doesn't pay tax — here are the incredible powers you didn't know the monarchy has: ['FAKE']\n", + "EgyptAir Flight 804: Final moments questioned: ['REAL']\n", + "How Donald Trump could win: ['REAL']\n", + "The Republicans' Red Scare: ['FAKE']\n", + "A Message to my Fellow Republicans: ['FAKE']\n", + "Cameron set to press Obama on tech encryption: ['REAL']\n", + "Man uses Trump victory as excuse to call ex-girlfriend: ['FAKE']\n", + "Extreme weather to cause extreme food shortages, task force finds: ['FAKE']\n", + "San Bernardino divers reportedly pull object from water in evidence search: ['FAKE']\n", + "Death of Saudi King Abdullah brings uncertain new era for US in Middle East: ['REAL']\n", + "Rembrandt Art Proves Chapter 22 of Genesis (MUST SEE): ['REAL']\n", + "Fact-checker takes Obama to task for gun claims: ['REAL']\n", + "3 Year Old Son of Singer Michael Bublé Diagnosed With Cancer: ['REAL']\n", + "Obama's Remarks on 'Most Peaceful' World Ring Hollow in Dangerous Middle East: ['REAL']\n", + "Re: America Is The Loneliest Country In The World – Is It Because We’ve Abandoned The Traditional Family Structure?: ['REAL']\n", + "John Kasich wooing Iowans mostly from New Hampshire: ['FAKE']\n", + "Syrian War Report – November 9, 2016: Russian Navy Is Ready to Strike Terrorists in Aleppo: ['FAKE']\n", + "The #1 Reason Why People Are Voting for Trump: ['FAKE']\n", + "Why Trump's talk of a rigged vote is so dangerous: ['FAKE']\n", + "Is Western Civilization Worth Saving?: ['REAL']\n", + "Secretive GOP Group Targets Trump for Destruction: ['FAKE']\n", + "The Fantasy of a Better Iran Deal: ['REAL']\n", + "Netanyahu’s contempt for President Obama: ['REAL']\n", + "Meet The Couples Fighting To Make Marriage Equality The Law Of The Land: ['REAL']\n", + "GOP’s demonic new crusade: Right-wing zealots look for even crueler ways to treat the poor like garbage: ['REAL']\n", + "Candace Cameron Bure Dishes on the Main Conservative Issue Driving Her to the Polls: ['REAL']\n", + "Ben Carson vs. Ben Carson: ['FAKE']\n", + "Carson, GOP White House candidates critical of Obama’s Syria plan for 50 Special Ops troops: ['REAL']\n", + "No Account for You: ['FAKE']\n", + "Iran nuclear talks reportedly hit snag over lifting of sanctions as Obama makes appeal to Iran's people: ['FAKE']\n", + "Mitch McConnell Pledges To Avoid Debt Ceiling Disaster: ['REAL']\n", + "Hillary Clinton: The Alt-Right Has 'Effectively Taken Over the Republican Party': ['REAL']\n", + "Nation Mourns 9 Victims In Charleston Church Shooting: ['FAKE']\n", + "Steve Pieczenik: U.S. Intelligence Waging Coup Against Corrupt Clintons » REGATED: ['REAL']\n", + "Comment software has been rolled back to old version: ['REAL']\n", + "Round Up the Unusual Suspects: Moneyball Nerds Squeeze Out Blacks & Latinos from Baseball Jobs: ['REAL']\n", + "Trump VP’s plane slides off runway at New York airport: ['REAL']\n", + "UK Child Protection Services workers are ‘afraid’ to challenge the ages of Muslim invaders for fear of ending up in court: ['FAKE']\n", + "Anti-Communist Group Makes Their First Ever Endorsement Toward The Donald.. Media Silent: ['REAL']\n", + "Lynch faces Congress in attorney general hearing: ['REAL']\n", + "The Conspiracy “Theory” Conspiracy [Video Documentary]: ['FAKE']\n", + "Clinton's Policies Look Like a Death Sentence for Americans: ['FAKE']\n", + "State Dept. IDs 2 Americans killed in Nepal quake; 2 others reportedly dead: ['FAKE']\n", + "Time to press the presidential candidates on Flint’s water crisis: ['FAKE']\n", + "This is why Trump was smart to avoid her: Megyn Kelly just crushed the GOP debate: ['FAKE']\n", + "Life: Touching: After Her Brother Passed Away, This Woman Took Over His Facebook Page To Continue Sharing Islamophobic Rhetoric: ['REAL']\n", + "Clinton Foundation will continue to accept foreign money during Hillary's run: ['REAL']\n", + "Boy wearing a ‘My dad is an ATM’ T-shirt chased by mob; father frisked, robbed: ['REAL']\n", + "Why Isn’t NSA Surveillance an Election Issue?: ['FAKE']\n", + "Genius Kid Trolled White House Halloween Party, Idiot Obama Didn’t Notice: ['REAL']\n", + "Police Turn In Badges Rather Than Incite Violence Against Standing Rock Protesters: ['REAL']\n", + "The judge immigration foes wanted: ['REAL']\n", + "Madman Merkel Demands the Internet Publicly Release All Closed-Source Code: ['REAL']\n", + "Here's How Obamacare Is Going To Affect Your Taxes: ['REAL']\n", + "George Will: Trump's judge comments prompted exit from GOP: ['FAKE']\n", + "Vote as if your life depended upon it, because it does.: ['REAL']\n", + "The new argument against gay equality: Same-sex marriage kills: ['REAL']\n", + "Dem convention speeches Day 4: 's Reality Check Team vets the claims: ['REAL']\n", + "Now Ted Cruz is the enemy: Rupert Murdoch and WSJ open fire in new GOP civil war: ['REAL']\n", + "The last days of Washington, D.C.: America can no longer mask its steep decline: ['REAL']\n", + "16 Times The Obama Administration Lied About The President's Position On Same-Sex Marriage: ['REAL']\n", + "Alternative Cancer Treatments With Positive Results and Generic-Drug Probe to Be Filed by Year-End: ['REAL']\n", + "In Bronx, Sanders voters find more common ground with Trump than Clinton: ['FAKE']\n", + "The debate moderators missed the opportunity to ask about a real Democratic divide: ['FAKE']\n", + "Four big takeaways from Trump's 'Acela Primary' triumph: ['FAKE']\n", + "Elite conservative moneymen remain on sidelines: ['REAL']\n", + "Goldman Sachs Endorses Hillary Clinton For President: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Russia carries out new airstrikes in Syria: ['FAKE']\n", + "McConnell to Obama: Dems started the SCOTUS wars: ['FAKE']\n", + "Pacific Islanders may have DNA of unknown human species: ['FAKE']\n", + "WOW! Coláiste Lurgan Sing In English For A Change And It’s Shit: ['REAL']\n", + "TRUMPED: After Deceiving The American People, The New York Times Vows To Start ‘Reporting Honestly’: ['REAL']\n", + "Glenn Reynolds: Donald Trump is the response to a bullying culture: ['FAKE']\n", + "Donald Trump, a threat the Founding Fathers foresaw: He proves the need for the Electoral College — and is the best case for superdelegates: ['FAKE']\n", + "Dr. Mercola: The Dangers of LED Lights: ['REAL']\n", + "Six Corporations Will Soon Rule the Planet: ['REAL']\n", + "FBI Wiretapped Corruption Suspect Discussing Clinton Deals: ['REAL']\n", + "Refugees scooped out of Lake Erie: ['REAL']\n", + "Re: America Has Become A Lawless Nation – Hillary Clinton Magically Cleared By The FBI: ['FAKE']\n", + "White House counterterrorism adviser Rand Beers to retire: ['FAKE']\n", + "Why swing voters are vanishing from US politics: ['FAKE']\n", + "Netanyahu: Obama's Iranian Nuclear Deal Worse Than Israel Feared: ['FAKE']\n", + "HILLARY PROMISES END TO VIOLENCE THROUGH CIVILIAN DISARMAMENT: ['REAL']\n", + "More Evidence Emerges Proving What a Shameless, Crony Fraud Evan Bayh Is: ['REAL']\n", + "Research Suggests Gun Background Checks Work, But They're Not Everything: ['REAL']\n", + "60 Civilians Killed, 200 Injured As US-Led Airstrikes Hit a School In Iraq: ['REAL']\n", + "Re: OUCH! Hillary Clinton’s self-unaware lecture about religious freedom given important disclaimers: ['REAL']\n", + "Ruth Bader Ginsburg Has Perfect Response When Asked About Women On The Supreme Court: ['REAL']\n", + "Rick Rule: ['REAL']\n", + "Clinton, Sanders Eclipse Challengers in 1st Debate: ['REAL']\n", + "The most important line in Obama's new National Security Strategy: ['REAL']\n", + "Support for marriage equality in Ireland was strikingly broad: ['REAL']\n", + "Ted Cruz isn't liked in Congress. What could that mean if he's president? (+video): ['REAL']\n", + "Healthcare system bleeds us dry by design: ['REAL']\n", + "Republicans Warn Iran Against Nuclear Deal With Obama: ['FAKE']\n", + "Bret Baier: FBI Indictment ALMOST certain in Hillary case: ['REAL']\n", + "Speaker at Sanders Rally Tells Crowd Not to Vote Clinton, Gets Dragged Off Stage: ['REAL']\n", + "More Reports Of Votes Flipping From Trump To Clinton In Texas ….election Officials Dismiss Concerns… An Ongoing Cbs4 Voter Fraud Investigation Finds People Voting Twice: ['FAKE']\n", + "Trump Loves 'the Poorly Educated' ... and Social Media Clamors: ['FAKE']\n", + "Incredible smoke haze seen outside NDTV office after Arnab quits; bursting of firecrackers suspected: ['REAL']\n", + "Fascism In India - CounterCurrents.org: ['REAL']\n", + "Strategic Culture: ['REAL']\n", + "Do Cholesterol Drugs Have Men By Their Gonads?: ['REAL']\n", + "'HACKING DEMOCRACY' CREATOR JUST EXPOSED HOW HILLARY HAS ALREADY RIGGED '99% of VOTING MACHINES'! -: ['REAL']\n", + "Many Popular Tea Bags Contain Alarming Amounts of Deadly Pesticides (avoid these brands like the plague): ['REAL']\n", + "Even If You Hate Trump, What this Leftist Just Did Is VILE... | The Federalist Papers: ['FAKE']\n", + "Obama endorses Clinton for president, on heels of Sanders meeting: ['REAL']\n", + "Clinton ‘Not Concerned’ About New Flap Over Classified Emails: ['FAKE']\n", + "Connecticut’s highest court approves forced chemotherapy for teen: ['REAL']\n", + "He’s getting desperate: Trump’s campaign used to be confident, but Cruz has gotten him feeling downright thirsty: ['FAKE']\n", + "US Military on Ground in Syria Training Opposition for Raqqa Operation: ['REAL']\n", + "The Orlando Shooter’s 911 Calls Were Finally Released — and They’re Very Telling: ['REAL']\n", + "Obamacare Architect Jonathan Gruber: “Obamacare Is Not Imploding,” “Working As Designed”: ['REAL']\n", + "U-M’s New ‘Chief Diversity Officer’ Will Collect $385,000 per Year: ['FAKE']\n", + "BEARS BEWARE: This Just Hit One Of The Highest Levels In The Past 6 Years!: ['REAL']\n", + "Spirit to thank veterans at annual Veterans Day Parade: ['REAL']\n", + "Indiana Gov. Pence backs Cruz for president ahead of state primary: ['REAL']\n", + "Trump triumphs: Two big takeaways after The Donald wins New York: ['REAL']\n", + "PETITION TO STOP GEORGE SOROS VOTING MACHINES HITS 100K: ['REAL']\n", + "Iran nuclear talks: 'Tricky issues' remain, Kerry says: ['REAL']\n", + "Hillary Clinton: 'unpatriotic' Donald Trump's praise of Putin is 'scary': ['FAKE']\n", + "5 Things You Should Know About George Pataki: ['REAL']\n", + "A ten point plan to defeat ISIS: ['REAL']\n", + "BREAKING: Obama Says There Were No Scandals During His Administration! HAHAHA!: ['REAL']\n", + "The Oregon standoff and America’s double standards on race and religion: ['REAL']\n", + "Former Marine guilty of murder in 'American Sniper' trial: ['REAL']\n", + "Thanksgiving lessons for the Syrian refugee debate: ['REAL']\n", + "WIKILEAKS BOMBSHELL : Chelsea Clinton Used Foundation CHARITY Money for Her LAVISH Wedding and “Life” – TruthFeed: ['FAKE']\n", + "The Most Important Concepts The Manosphere Taught Me: ['REAL']\n", + "When Obama Admin Went After Banks, It Forced Them to Give Big Money to Some...Questionable Groups: ['REAL']\n", + "Links 10/28/16: ['REAL']\n", + "Turkey Says It Shot Down A Russian Warplane Near Border With Syria: ['FAKE']\n", + "Trump Brings Message of Faith, Unity to Black Church: ['FAKE']\n", + "Obamacare's unlikely No. 1 city: ['FAKE']\n", + "Surveillance \"Reforms\" Allow NSA Greater Access Than Ever to Phone Data: ['REAL']\n", + "Why did Obama send another 450 trainers to Iraq? (+video): ['FAKE']\n", + "GERMANY: Parents outraged after German primary school ‘forces’ children to chant “Allahu Akbar” and “there is no God but Allah” in Muslim prayer: ['REAL']\n", + "Sanders gets the fight he wanted: ['REAL']\n", + "Is Clinton ready for the Wild West campaign of Donald Trump?: ['FAKE']\n", + "ISIS Suspected in Russia Crash: What It Means: ['REAL']\n", + "Political world's eyes on New Hampshire: ['FAKE']\n", + "Vladimir Putin: The United States continues to sleep with al-Nusra: ['FAKE']\n", + "ObamaCare fallout? Supreme Court ruling sets up potential Obama, GOP battle: ['FAKE']\n", + "Comey Letter Hurts GOP As Hillary Clinton Raised $11.3 Million Online In 72 Hours: ['FAKE']\n", + "Constitutional Law Expert: Comey Did NOT Violate Law By Announcing Email Investigation: ['FAKE']\n", + "Rubio looks to April 13 Miami launch: ['REAL']\n", + "The plight of the bitter nerd: Why so many awkward, shy guys end up hating feminism: ['REAL']\n", + "Drones Are Officially Cleaning Up Ocean Trash [Watch]: ['REAL']\n", + "Clinton, judged winner of debate, holds big national lead over Sanders: ['REAL']\n", + "As Clinton builds on a strong debate, Trump lobs attacks and complaints: ['FAKE']\n", + "White House, Republicans work together in final push on trade bill: ['FAKE']\n", + "French police swarm forest 'larger than Paris' in hunt for Charlie Hebdo jihadist assassins: ['FAKE']\n", + "Bergdahl's platoon mates: Head of Joint Chiefs knew he walked off base in 2009: ['REAL']\n", + "FBI reopens Hillary investigation – with evidence from Anthony Weiner sexting scandal: ['REAL']\n", + "After political upheaval in Iowa, what next? (+video): ['FAKE']\n", + "Don’t Miss This Once in a Lifetime November Supermoon: ['REAL']\n", + "Iceland’s Pirate Party Makes Strong Showing in New Election: ['REAL']\n", + "The GOP’s pathetic SCOTUS games: Why its Merrick Garland obstruction just got even more embarrassing: ['REAL']\n", + "US Secret Service Struggles To Find Recruits Who Haven’t Used Adderall: ['FAKE']\n", + "WikiLeaks: Clintons Purchase $200 Million Maldives Estate: ['REAL']\n", + "BREAKING: Police Raid Democratic Office – Hillary is SCREWED!: ['REAL']\n", + "Poll: Trump Reaches 50 Percent Support Nationally for the First Time: ['FAKE']\n", + "“Well It Was Nice While It Lasted” – Democracy: ['REAL']\n", + "Everything you need to know about the next Democratic debate: ['REAL']\n", + "Rivals pile on Trump in Republican candidates’ debate: ['REAL']\n", + "The inane spectacle of the GOP debate: Cruz the showboating creep, Rubio the slick operator & Bush the desperate flop: ['FAKE']\n", + "Have The Sun really darkened the image of Brexit legal challenge winner Gina Miller?: ['REAL']\n", + "Official: Withheld Clinton emails contain 'operational' intel, put lives at risk: ['REAL']\n", + "White House facing rocky legal road on immigration: ['FAKE']\n", + "Capitalism, climate change and the Anthropecene: ['REAL']\n", + "ELECTION EVE BOMBSHELL : Wikileaks Reveals Analysts at Intelligence Firm Believe Hillary Killed Vince Foster – TruthFeed: ['REAL']\n", + "Foods & Supplements For Chemtrail Protection: ['REAL']\n", + "BREAKING: DOJ FINALLY Secures Warrant To Inspect Huma’s Emails | Daily Wire: ['FAKE']\n", + "Why Michelle Obama has a prime spot at the Democratic National Convention: ['REAL']\n", + "BOMBSHELL: Leaked Emails Expose How Muslims Got In Obama’s Administration: ['REAL']\n", + "GOP governors are on the fast track to nowhere: Jindal, Christie & Kasich aren’t long for this world: ['FAKE']\n", + "Anxiety and Worry Increase Risk of Heart Disease: ['REAL']\n", + "Will The Real Donald Trump Please Stand Up?: ['FAKE']\n", + "Only Geniuses & Schizophrenics Can Pass This 3 Question Quiz! - David Avocado Wolfe - DavidWolfe.com: ['REAL']\n", + "Seven Christian Leaders Who Are Not Supporting Donald Trump: ['FAKE']\n", + "Abedin & Weiner to Testify Against Clinton: ['FAKE']\n", + "Despite Black Lives Matter, young black Americans aren’t voting in higher numbers: ['REAL']\n", + "First Presidential Debate of 2016 Over But Who Won?: ['FAKE']\n", + "Now it is USA Today Lying to us that the Anti-Trump Protests are Spontaneou: ['FAKE']\n", + "Clinton Campaign In FULL PANIC After Bill’s Alleged Son Makes DEMAND That Would HUMILIATE Them: ['FAKE']\n", + "Police threaten eviction 'at any time' as Dakota Access protesters refuse to leave private land: ['REAL']\n", + "West Virginia primary takes backseat to Trump's battle with Republicans: ['FAKE']\n", + "11 Things To Let Go Of Before The New Year: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Khodorkovsky: Putin is not going to cozy up to Washington: ['FAKE']\n", + "Creating an Anti-Muslim Bias at a Canadian University: ['REAL']\n", + "Cruz Raises $20 Million In Fourth Quarter: ['FAKE']\n", + "Judith Miller: It’s what was left unsaid in Trump’s speech that matters most: ['REAL']\n", + "States look at hiking gas tax as fuel prices plunge: ['REAL']\n", + "For some Republicans, Trump presents moral dilemma: ['FAKE']\n", + "Obamacare Enrollments Hit Nearly 12 Million, Top Health Official Says: ['REAL']\n", + "The Powerful Act Immoral as they Also Suffer from Herd Mentality: ['REAL']\n", + "Megyn Kelly is an evil genius: How the Fox News host won America’s trust (by being slightly less horrible): ['REAL']\n", + "How Congress is giving new life (and scope) to 'brinkmanship': ['REAL']\n", + "Obama Secures Enough Support For Iran Deal In Congress: ['FAKE']\n", + "Mrs. Weiner: ['REAL']\n", + "More Footage Of Operation High Jump With Hitler!: ['REAL']\n", + "SWEDEN HELP WANTED: Activities Coordinator for bored illegal alien Muslim freeloaders and rapists: ['FAKE']\n", + "Saudis Foil ISIS Terror Attacks on Packed Stadium: ['FAKE']\n", + "The press, feeling the Bern, suddenly weighs whether Sanders could derail Hillary: ['REAL']\n", + "“My Trampoline Addiction Hell” Buster The Boxer Tells All: ['REAL']\n", + "Theresa May refuses to withdraw support for Saudi Arabia: ['FAKE']\n", + "Holding the Light: Visualizing the Future: ['REAL']\n", + "Obama: Paris terror rampage a ‘setback’: ['FAKE']\n", + "Canada and EU sign ‘thoroughly undemocratic’ CETA trade deal: ['REAL']\n", + "Hey, Berniacs: I Learned to Love Hillary and So Can You: ['REAL']\n", + "Thomas Sowell Delivers the BRUTAL Truth About Understanding Politics | The Federalist Papers: ['REAL']\n", + "New Senate is just like the old Senate: ['REAL']\n", + "Jeb Bush previews 2016 run, promising ‘adult conversations’ on big issues: ['REAL']\n", + "GOVERNMENT HIDING UNPRECEDENTED TB INFECTION RATES AMONG RELOCATED REFUGEES: ['FAKE']\n", + "The India-Russia Alliance Isn't Going Anywhere Because It's Underpinned by Values as Well as Interests - Nabarun Roy: ['REAL']\n", + "Is Robert Mugabe on his deathbed? UK planning for transition phase in Zimbabwe: ['REAL']\n", + "Why Democrats are anxious: ['FAKE']\n", + "Obama has rare parliamentary window to make recess appointment to succeed Scalia: ['REAL']\n", + "The Zika Virus Is Harmless. It Does Not Cause Birth Defects (Bill Gates Releasing GM Mosquitoes Anyway): ['FAKE']\n", + "Russia Extends Aleppo Ceasefire Through Friday, Urges Rebels to Leave: ['FAKE']\n", + "Boycott targets Trump family on retail front: ['REAL']\n", + "Clinton says U.S. is ‘not winning’ the war against the Islamic State: ['FAKE']\n", + "Patriot Act debate highlights ‘stark’ differences between 2001, 2015 views: ['FAKE']\n", + "Merkel brings shuttle diplomacy to White House: ['REAL']\n", + "Fox News is self-destructing: Islamophobia, Obama’s Reagan moment and Roger Ailes’s new humiliation: ['REAL']\n", + "DNC To Sue Trump For Telling Truth: Trump Admits Everything Is A Lie: ['FAKE']\n", + "Hillary Clinton To Decide On 2016 Run 'Sometime Next Year': ['FAKE']\n", + "Ukraine just officially declared itself an illegitimate state up for grabs: ['FAKE']\n", + "Vegan Custard Stuffed Pumpkin Recipe: ['REAL']\n", + "Hillary emails 'whitelisted' for Obama's BlackBerry: ['REAL']\n", + "Kerry marks opening of US Embassy in Havana, critics rip 'diplomacy for show': ['REAL']\n", + "The religious right’s No. 1 enemy: What Pope Francis’ recognition of Palestine really means: ['REAL']\n", + "A Materialist Analysis of Why I am Voting Green, and Why the Left Should Do the Same: ['REAL']\n", + "The 8 Biggest Threats to Humanity Exposed: ['REAL']\n", + "Comment on Censored News: Black woman kills 12 y.o. white boy with blow torch by TNB – PA: ['REAL']\n", + "Verified Report: These Cops Left Standing Rock and Refuse to Return: ['REAL']\n", + "Sabotaging Common Core: ['FAKE']\n", + "Church shooting suspect Dylann Roof captured amid hate crime investigation: ['REAL']\n", + "Donald Trump's Stunning Upset: ['FAKE']\n", + "Take a deep breath. The Republican contest still has another month to go.: ['REAL']\n", + "FACT CHECK: Donald Trump's Republican Convention Speech, Annotated: ['REAL']\n", + "Iraq announces counterattack against ISIS in Anbar province: ['REAL']\n", + "Obama pledges faster action on new icebreakers to keep up in Arctic: ['REAL']\n", + "US flag flies again in Cuba: How much real change is coming to the country? (+video): ['FAKE']\n", + "Links 11/5/16 | naked capitalism: ['REAL']\n", + "Life: 6 Great Halloween Costume Ideas For Duos: ['REAL']\n", + "The Ruthlessly Effective Rebranding of Europe’s New Far Right: ['REAL']\n", + "Behind Hillary’s DISGUSTING Plot To Sabotage Bernie’s Campaign: ['REAL']\n", + "Normalizing Trump, demonizing Hillary: The media’s shameful strategy for the 2016 election: ['FAKE']\n", + "The Problems With Facebook’s Polarization Study: ['REAL']\n", + "Hillary Already Planning Fireworks for Victory Celebration: ['REAL']\n", + "Michelle Obama reflects on pressure she felt in '08: ['FAKE']\n", + "California governor signs bill to automatically register people to vote: ['FAKE']\n", + "Trump: Undocumented Children Aren't US Citizens: ['FAKE']\n", + "Will Barack Obama Delay Or Suspend The Election If Hillary Is Forced Out By The New FBI Email Investigation?: ['FAKE']\n", + "Democratic debate: Is Clinton or Sanders the real New Yorker? (+video): ['REAL']\n", + "Iraqi Christians Return to Charred Churches Captured from ISIS: ['FAKE']\n", + "The Tomb of Jesus Revealed: ['FAKE']\n", + "How Trump's campaign chief got a strongman elected president of Ukraine: ['REAL']\n", + "Project Veritas 4: Robert Creamer's Illegal $20,000 Foreign Wire Transfer Caught On Tape: ['FAKE']\n", + "Why the GOP Primary Could Be Even Crazier Than You Think: ['REAL']\n", + "Chris Christie fades into darkness: ['REAL']\n", + "Mitt Romney Refuses to Support Trump: “I Keep Hoping That Somehow Things Will Get Better”: ['FAKE']\n", + "Rush Limbaugh: Left Has 'Fear and Hatred of Christianity': ['REAL']\n", + "BRINK OF WAR: UK sends TANKS, DRONES and 800 SOLDIERS to Russian border as tensions grow: ['FAKE']\n", + "Advocates Aim to Expand Gay Rights at State Level: ['REAL']\n", + "Best of Luck With the Wall: ['REAL']\n", + "George W. Bush reportedly rips Ted Cruz to Jeb Bush donors: ['FAKE']\n", + "Donald Trump, Peacenik President? : Information: ['FAKE']\n", + "Merkel: Worried about Islamisation? Just Sing Christmas Carols: ['REAL']\n", + "Trump's abortion answer confirms GOP fears: ['FAKE']\n", + "Donald Trump in the hunt for a VP: Who's got the golden ticket?: ['FAKE']\n", + "Obama bans some military equipment sales to police: ['REAL']\n", + "Boehner allies downplay GOP rifts: ['REAL']\n", + "THE RIG IS IN: CROOKED HILLARY’S CROOKED VOTING MACHINES: ['REAL']\n", + "Libertarian Party VP insults Trump, practically endorses Clinton: ['FAKE']\n", + "The 2016 ballot wars begin: ['FAKE']\n", + "Putting Presidential Polls in Perspective: ['FAKE']\n", + "Netanyahu rival concedes defeat: ['REAL']\n", + "Walter Scott's family plans burial: ['FAKE']\n", + "Silver And Gresham’s Law: ['REAL']\n", + "Starbucks baristas stop writing 'Race Together' on cups: ['REAL']\n", + "House GOP leaders unveil two-year budget deal with White House: ['REAL']\n", + "The Edge: Iowa loss turns down Trump's volume in N.H.: ['REAL']\n", + "Sex Differences in the Right Tail of Cognitive Abilities: An Update and Cross Cultural Extension: ['REAL']\n", + "“Idiocy”: New York Times editorial board scorches GOP’s nuclear sabotage: ['REAL']\n", + "Six cities submit bids to host 2016 Democratic National Convention: ['REAL']\n", + "Chris Christie landslide: Template for a Republican presidential win in 2016? (+video): ['FAKE']\n", + "What Happened to the FBI?: ['FAKE']\n", + "The Dangers Of Romantic Love: ['FAKE']\n", + "Clinton Camp Tries to Deflect Suspicion as FBI Reopens Email Case: ['FAKE']\n", + "Obama ties his fate to Iran nuclear deal: ['FAKE']\n", + "Will Trump's presidency change the way America views Russia?: ['FAKE']\n", + "What advantages does Scott Walker offer?: ['REAL']\n", + "15 Secret iPhone Codes And Tricks: ['REAL']\n", + "Draft-Dodger Trump Said Sleeping Around Was My ‘Personal Vietnam’: ['FAKE']\n", + "Prime Minster John Key caught channeling millions of dollars of taxpayer's money to 'ethically compromised' Clinton Foundation: ['FAKE']\n", + "Media Dig the Grave for Self-Government: ['FAKE']\n", + "Nigel Farage held at Heathrow on return from Trump visit due to ‘mysterious brown substance’ on nose: ['REAL']\n", + "Paul Ryan Says Government Won't Shut Down Because Republicans Are In Control: ['FAKE']\n", + "BREAKING : After Embarrassingly Low Turnout at Ohio Rally Tim Kaine Cancels Florida Rally – TruthFeed: ['REAL']\n", + "Clinton clearing primary field for potential 2016 run could leave her vulnerable: ['FAKE']\n", + "Seth Meyers Takes ‘A Closer Look’ At The GOP’s Threats Against Hillary And It’s Terrifying! (VIDEO): ['REAL']\n", + "YIKES! Megyn Kelly Receives RUDE AWAKENING- Reminded She’s REPLACEABLE!: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[WATCH] Univ Of Alabama Students Try To Protest National Anthem, Then A Veteran Shows Up: ['FAKE']\n", + "Insider Leaks Bill’s 2-Word Nickname For Hillary, Exposes Dirty Bad Habits: ['REAL']\n", + "WIKILEAKS: Emails Show Clinton Collusion Between State Department And DOJ: ['FAKE']\n", + "The Daily 202: Bill Clinton’s argument with Black Lives Matter protesters is 2016’s Sister Souljah Moment: ['REAL']\n", + "Last Stand For ISIS?: ['FAKE']\n", + "Russia’s Most Potent Weapon: Rapidly “Hoarding Gold” As Global Currency War Is Upon Us: ['REAL']\n", + "What divides America? This weekend, it was a Chicago street.: ['REAL']\n", + "Police arrest 141 in crackdown on North Dakota pipeline protesters: ['FAKE']\n", + "Is the Supreme Court poised for a shift to the right?: ['FAKE']\n", + "Russia plans to test elements of new nuclear engine on ISS: ['FAKE']\n", + "Trump Is Deadbeating On His Campaign Debts By Refusing To Pay His Own Pollster: ['FAKE']\n", + "Racists, Misogynists and Homophobes all absolutely delighted: ['REAL']\n", + "How Last Night's Gary Johnson/William Weld CNN Town Hall Was a Disappointment in Libertarian Terms: ['REAL']\n", + "Trump, Clinton meet again at 'humorous' Al Smith dinner: ['FAKE']\n", + "DEAD MUSLIMS SOCIETY will sue to force small Massachusetts town to allocate space for 16,000 dead Muslims: ['REAL']\n", + "Why the way we pick our VPs is terrible: ['REAL']\n", + "Microsoft Outlook to introduce ‘Hillary’ button to delete emails ‘en masse’: ['REAL']\n", + "Iraq's Al-Abadi making in-person appeal to Obama for financial help: ['REAL']\n", + "Trump Continues His Embrace of Putin: ['REAL']\n", + "Trump RNC manager: 'Winning isn't enough': ['FAKE']\n", + "Christian Pastor Jailed by Iran Reveals STUNNING Truth About Trump: ['FAKE']\n", + "Will any of Obama's ISIS proposals succeed?: ['REAL']\n", + "It Looks Like George Soros Is Funding The Trump Protests Just Like He Funded The Ferguson Riots: ['FAKE']\n", + "Speaker Paul Ryan: Let's live in the Christmas spirit: ['FAKE']\n", + "Russia to test new anti-tank guided missiles in Syria: ['FAKE']\n", + "The Top 100 WikiLeaks That Should Destroy Hillary’s Campaign [LIST]: ['REAL']\n", + "Cruz Says Fate of Homeland Security in GOP Leadership’s Hands: ['REAL']\n", + "Hillary Lies About Her Whereabouts On 9/11: ['REAL']\n", + "Michael Moore’s ‘Morning After To-Do List’ Is Going Viral – Maybe This Time We Will Listen: ['REAL']\n", + "The Daily 202: Why blocking Obama’s pick to replace Scalia could cost Republicans their Senate majority: ['REAL']\n", + "Comment on Armed Militias Prepping for Violence if Clinton Wins in “Stolen Election” by Joel W: ['FAKE']\n", + "New Pew Report: Significant Economic Impact of Illegals' \"Anchor Babies\": ['FAKE']\n", + "13 Year Old Girl’s Rousing Speech: “If Donald Trump Had A Brick For Every Lie Hillary Has Told He Could Build Two Walls”: ['REAL']\n", + "Mitt Romney still has a Mormon problem: ['REAL']\n", + "EndingFed News Network | Syndicated news and opinion website providing continuously updated headlines to top news and analysis sources.: ['REAL']\n", + "Russia launches airstrikes in northern Syria, senior military official says: ['REAL']\n", + "Angelina Jolie’s Father Speaks Out Against Illuminati: ['FAKE']\n", + "How to watch tonight's Republican debate: ['REAL']\n", + "Kerry: World leaders take step to end Syria war and spreading terror concerns, but disagreements persist: ['FAKE']\n", + "Oathkeeper Chapter 8: ['REAL']\n", + "Here's your intent! Hillary Intentionally Erased Emails - Wikileaks: ['REAL']\n", + "Trump Has Gotten The Republican Party Sued For Trying To Intimidate Voters: ['FAKE']\n", + "Are private unions cooling toward Democrats?: ['FAKE']\n", + "Can the great nuclear war be prevented ?: ['FAKE']\n", + "Obama Chief Of Staff: Israel's 50-Year 'Occupation' Must End: ['REAL']\n", + "Biden probably won’t beat Clinton. He should run anyway.: ['FAKE']\n", + "How Hillary Clinton Locked Up The Democratic Nomination In 10 Steps: ['REAL']\n", + "Muslims Terrorize Hindus Because It's Wednesday: ['REAL']\n", + "Carly Fiorina says ‘higher than 90 percent’ chance she’ll run for GOP presidential nomination: ['REAL']\n", + "Hillary Clinton’s Wall Street Fundraising Benefited From Loophole In Federal Anti-Corruption Rule: ['REAL']\n", + "Gay Marriage Fight in Kentucky Likely Not the Last Battleground: ['REAL']\n", + "A Christmas Story / There Is No Better Purpose Than To Serve Others.: ['REAL']\n", + "Welcome to the ‘Islamic State of Germany’: ['REAL']\n", + "After stumbles, Trump seeks to avert damaging loss in Wisconsin: ['FAKE']\n", + "Bush and Romney: Ready to rumble?: ['FAKE']\n", + "Liberals poised to give Obama a win on Iran: ['FAKE']\n", + "Get Ready For Civil Unrest: Survey Finds That Most Americans Are Concerned About Election Violence: ['REAL']\n", + "Veto, filibuster threats ahead of vote next week to fund Homeland Security, roll back executive actions: ['REAL']\n", + "Is Global Warming “An Inconvenient Lie”?: ['REAL']\n", + "Trump's Election Marks the End of Liberal Capitalism: ['FAKE']\n", + "Russia suggests joint engineering troops’ drills with India: ['REAL']\n", + "Military Veterans Are Helping To Save Coral Reefs By Combating Climate Change: ['FAKE']\n", + "Trump: Israel is a ray of hope to the world: ['FAKE']\n", + "Along the migrant trail, pressure grows to close Europe’s open borders: ['REAL']\n", + "News: Inspiring: When This Woman Was Feeling Too Lazy To Vote, Her Ovaries Burst Out Of Her Body And Dragged Her To The Polling Place: ['FAKE']\n", + "Smart Meter Case Testimony Before the Pennsylvania Public Utility Commission: What No One Wants to Acknowledge About EMF Damage (Part 2 of 4): ['REAL']\n", + "Reporters Stunned to Learn Trump Fans Lining Up 12 Hours Before Rally Starts: ['FAKE']\n", + "IOWA FARMER CLAIMS BILL CLINTON HAD SEX WITH COW DURING ‘COCAINE PARTY’: ['REAL']\n", + "Republicans Reject Calls on Guantanamo Bay Closure: ['REAL']\n", + "GOP elites are now resigned to Donald Trump as their nominee: ['FAKE']\n", + "Trump's Indiana win raises unsettling questions for GOP: ['FAKE']\n", + "Cypriot leaders to continue talks in November: UN: ['FAKE']\n", + "Freed Al Qaeda operative floated as part of prisoner swap, ex-diplomat says: ['REAL']\n", + "This Viral Video Has Hillary Running Scared: ['REAL']\n", + "Comment on After Sweeping Election, First Thing Trump Invites Netanyahu to U.S. for Meeting by Debbie Menon: ['FAKE']\n", + "Obama to keep 5,500 US troops in Afghanistan beyond 2016: ['FAKE']\n", + "Family Remembers Queens Sucker Punch Victim ‘He Was The Best Man I Knew’: ['FAKE']\n", + "Black Americans Going For Donald Trump In Record Numbers As Election Day Approaches: ['REAL']\n", + "Success against ISIS requires a team of teams: ['REAL']\n", + "The Edge: Cruz, Trump get media attention post-Paris: ['REAL']\n", + "NY police investigate possible sighting of escaped prisoners: ['REAL']\n", + "“He and I Haven’t Spoken”: Trump and Pence Are Having a Very Public Couple’s Argument: ['REAL']\n", + "FBI Director may be sacked for intrusion into elections: ['REAL']\n", + "Fault lines: GOP civil war deepens: ['FAKE']\n", + "Clinton, under fire for oil and gas donations, once hit Obama for same reason: ['REAL']\n", + "His rivals are saying the same thing in different ways: Marco Rubio is weak: ['REAL']\n", + "The Genocide of Indigenous Peoples in North America and Palestine-Israel - American Herald Tribune: ['REAL']\n", + "Checkmating Obama: ['REAL']\n", + "September New Homes Sales Rise——-Back To 1992 Level!: ['REAL']\n", + "Why The Obamacare Doomsday Cult Can't Admit It's Wrong: ['FAKE']\n", + "Sanders, Cruz resist pressure after NY losses, vow to fight to conventions: ['REAL']\n", + "Surviving escaped prisoner likely fatigued and prone to mistakes, police say: ['REAL']\n", + "Clinton and Sanders neck and neck in California primary: ['REAL']\n", + "Hillary’s Crime Family: End Of Days For The U.S.A.: ['REAL']\n", + "Why pundits, politicians and the press hate Ted Cruz: ['REAL']\n", + "WSJ Report Not About Black Rapists At Baylor, But Strictly About The White Guys Who Covered Up For Them: ['FAKE']\n", + "The ‘Two-Party Racket’ Is Incapable of Dealing With Our Present Crises: ['REAL']\n", + "Just the Beginning? Religious Freedom, Gay Rights Battle Turns Ugly: ['REAL']\n", + "Ten inconsistencies in Donald Trump's big foreign policy address: ['REAL']\n", + "John Podesta’s New Global Order: ['FAKE']\n", + "White Kids Get Medicated When They Misbehave, Black Kids Get Suspended — or Arrested: ['REAL']\n", + "Talk radio rallies around Ted Cruz: ['REAL']\n", + "Footage shows suspects in Brussels attack: ['REAL']\n", + "More on Trump’s Populism and How It Can Be Controlled By Government: ['FAKE']\n", + "Donald Trump’s Nightmare Comes True 10 Days Before Election – This Could Ruin EVERYTHING!: ['FAKE']\n", + "Memo to Comey: Keep Your Damn Hands Off Our Elections: ['REAL']\n", + "Comment on Boy says farewell to best friend, 91-year-old World War II vet from next door by Joe: ['REAL']\n", + "You Won’t Believe What This Congressman is Planning To Do If Trump Loses (VIDEO): ['REAL']\n", + "Rutgers Student Fired from Campus Newspaper After Writing ‘Illegal Alien’ in Column: ['FAKE']\n", + "Why Sanders supporters cannot back Gary Johnson: His libertarianism is antithetical to the senator’s Democratic socialism: ['REAL']\n", + "Paul Ryan’s biggest early challenge: Finding a ‘routine’ as House speaker: ['REAL']\n", + "This letter from Manchester City Council is a strong contender for facepalm of the year: ['REAL']\n", + "The SPLC’s Libelous New Report on 'Anti-Muslim Extremists': ['FAKE']\n", + "Obama Administration Mandate Ordering \"Sex Change\" Surgeries Is Challenged: ['REAL']\n", + "Barack Obama says memory of Hiroshima 'must never fade': ['REAL']\n", + "Good News! First Sanctuary For Abused Circus Elephants Opens In Brazil: ['REAL']\n", + "Al Qaeda leaders say group near collapse amid rise of ISIS, report claims: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Who’s ruling out a 2016 bid?: ['FAKE']\n", + "Abortion gaffes show Trump is the left-wing caricature of a conservative: ['REAL']\n", + "The Dream Team Of Hillary Clinton and Michelle Obama Fire Democrats Up In North Carolina: ['REAL']\n", + "Dana Perino: Conservatives, here are 5 reasons why we should accept Facebook's olive branch: ['REAL']\n", + "Anonymous World War 3 Has Begun!: ['REAL']\n", + "How the GOP Went South: ['REAL']\n", + "War on the Streets of Paris: Armed Migrants Fight Running Battles in the French Capital: ['FAKE']\n", + "'There's No Case Here.' Clinton Defiant amid Email Probe: ['FAKE']\n", + "Donald Trump’s RNC 2016 Speech Packed With Lies And Shady Stats: ['FAKE']\n", + "Live from New Hampshire: They’re all here: ['REAL']\n", + "The Supreme Court is just as polarized as the rest of US politics – and this may have profound implications.: ['REAL']\n", + "BREAKING: Putin Issues Massive Warning to the West: ['FAKE']\n", + "130,000 Americans demand to forbid Soros manipulate elections: ['FAKE']\n", + "Dennis Kucinich’s Extraordinary Warning on D.C.’s Think Tank Warmongers: ['FAKE']\n", + "Civil War Historian: Election 2016 could lead bloody repeat: ['REAL']\n", + "WikiLeaks: Look Who The Clinton Camp Most Wants to Please: ['REAL']\n", + "Welcome to the Trump World Order : Information: ['FAKE']\n", + "Will Cruz, Sanders Victories Lead to Contested Conventions?: ['REAL']\n", + "Iranians had every right to take over US embassy | Veterans Today: ['FAKE']\n", + "Today is the day! | Opinion - Conservative: ['REAL']\n", + "Life: Move Over, SoulCycle: This Spin Studio Motivates Its Students By Hooking Up Each Bike To A Sick Child’s Life Support: ['FAKE']\n", + "How To Choose The Best Batteries For Prepper Solar Systems: ['REAL']\n", + "After Obama changes tack on Syria, what would the presidential candidates do?: ['FAKE']\n", + "State Department won’t rule out $50B ‘signing bonus’ for Iran: ['FAKE']\n", + "White House willing to sign compromise Iran bill: ['FAKE']\n", + "The toughest job in American politics? Defending Hillary Clinton: ['REAL']\n", + "Explosive Assange/Pilger Interview on US Election: Expect Riots if Hillary Wins: ['REAL']\n", + "Hillary's Hypocrisy On Sexual Assault BRUTALLY Exposed | The Federalist Papers: ['REAL']\n", + "Latino Vote Poll: Some Would Consider A Republican In 2016: ['REAL']\n", + "Cruz announces Fiorina as choice for running mate: ['REAL']\n", + "Corporate Army smashes Dakota barbarians near lucrative pipeline: ['FAKE']\n", + "After terrorizing America with Zika scaremongering, Washington Post now admits Zika virus doesn’t cause brain deformities after all: ['REAL']\n", + "Do voters care about more Trump tapes?: ['REAL']\n", + "The Set-Up For Gold & Silver: CARNAGE in the Bond Market Pre-Cursor to Market Crash? | Eric Sprott: ['REAL']\n", + "Trump Mistakes Ex-Marine Black Supporter For Protester, Calls Him A ‘Thug’ (TWEET/VIDEO): ['REAL']\n", + "Russia celebrates a Unity Day of liberation of Moscow from the Polish Roman Papists army in 1612: ['REAL']\n", + "Security Politics and the Closing of the Open Society: ['REAL']\n", + "Clinton “Fixer”: I Spiked Damaging Stories for Sexually Depraved, Morally Corrupt Hillary: ['REAL']\n", + "The Next Big Shoe to Drop: ['REAL']\n", + "A Measure of Fascism in America: ['REAL']\n", + "VIDEO: Watch Newt Gingrich UNLOAD on Megyn Kelly Over Trump: ['FAKE']\n", + "Some GOP Donors Willing to Give to Many, Just Not Paul: ['REAL']\n", + "Fact-checking the vice-presidential debate between Kaine and Pence: ['FAKE']\n", + "How Gary Johnson's Vote Percentages Will Affect Libertarian Party Ballot Access, State By State: ['REAL']\n", + "White House report offers more on NSA spying on Americans' calls, with Patriot Act set to expire: ['REAL']\n", + "Teens walk free after gang-rape conviction: ['REAL']\n", + "Donald Trump, media manipulator in chief: ['FAKE']\n", + "Republicans have a weapon to stop Obama recess appointment: ['REAL']\n", + "5 key questions about shutting down Gitmo: ['REAL']\n", + "Berkeley Protesters Demanding Segregation Force White Students to Cross Creek in Woods to Go to Class: ['FAKE']\n", + "Democratic debate: 5 takeaways: ['REAL']\n", + "Europe or Russia: Could Moldova's presidential election determine its future?: ['REAL']\n", + "Solemn, stupefied, families in Kathmandu after earthquake: ['FAKE']\n", + "Re: Andrew Breitbart – twitchy.com: ['REAL']\n", + "Just How Big Is The Asia Trade Deal Obama Wants? It's A Beast: ['REAL']\n", + "Clinton Is the Most Dangerous Person Alive – An Interview with Edward S. Herman: ['FAKE']\n", + "Harvard Cancels Men’s Soccer Season After Finding Sexually Explicit ‘Reports’ Continued Through 2016: ['REAL']\n", + "HOMESCHOOL FAMILIES TARGETED IN DISTRICT’S ‘OPERATION ROUND UP’: ['FAKE']\n", + "Iowa's secretary of state rips Ted Cruz over campaign mailer: ['REAL']\n", + "Legend of The Brave Buffalo; Thousands of Wild American Bison Appear at Standing Rock.: ['REAL']\n", + "Clinton commits Benghazi gaffe, saying US 'didn't lose a single person' in Libya: ['FAKE']\n", + "Braless Jourdan Dunn flaunt their supermodel figures in racy see-through dresses: ['REAL']\n", + "House passes $612B defense policy bill despite veto threat: ['REAL']\n", + "Top takeaways from the Miami Republican debate: ['REAL']\n", + "The Fall of the Saudis, the Battle after ISIS: ['REAL']\n", + "Romney's Exit Unleashes Race for Donors Among 2016 Hopefuls: ['REAL']\n", + "WH Press Secretary Says Obama's Denial About Clinton Server Was 'Entirely Factual': ['REAL']\n", + "The new surgeon general's 4 rules for health: ['FAKE']\n", + "How Clinton's Email Controversy Is Affecting Her Campaign: ['REAL']\n", + "Police say 170 arrested in deadly biker gang shootout at Texas restaurant: ['FAKE']\n", + "You really expect me to believe that? Hillary Clinton, Barack Obama and our liberal media: ['REAL']\n", + "Obama says Republican budget just helps the rich. Is he right?: ['REAL']\n", + "Some Cities Want Their Noncitizen Immigrants to Vote: ['REAL']\n", + "Biden heads to Iowa, fueling 2016 speculation: ['FAKE']\n", + "Ways To Naturally Raise Your Vibration: ['REAL']\n", + "'Jihadi John' Reportedly Identified: ['REAL']\n", + "Donald Trump sweeps Super Tuesday: GOP at a crossroads: ['REAL']\n", + "FEMA ‘Area Emergency Tests’ broadcast just before election: ['REAL']\n", + "Project Veritas: Money from Belize | Opinion - Conservative: ['REAL']\n", + "#NoDAPL: Angry Man Fires 7 Shots Into Air Near Standing Rock Water Protectors: ['FAKE']\n", + "Guy Fawkes effigy industry collapses: ['FAKE']\n", + "LISTEN: Clinton ‘Crime Family’ EXPOSED By Veteran FBI Assistant Director: ['REAL']\n", + "Iraqis in Mosul Find US Missiles at Captured Islamic State Base: ['FAKE']\n", + "Trump charges toward the nomination: The billionaire breaks Rubio’s back, reducing his opposition to the deeply deluded Cruz and Kasich: ['REAL']\n", + "The Hubris of Democratic Elites, Clinton Campaign Gave Us President Trump: ['REAL']\n", + "Number of the week: How long until Russia can end its oil dependence?: ['FAKE']\n", + "NASA to test in flight folding wing: ['FAKE']\n", + "November 10: Daily Contrarian Reads: ['REAL']\n", + "Meter Reader Knocks On Man’s Door, Reveals Sinister Plan Once He’s Inside: ['REAL']\n", + "Jeb Bush: How Catholic faith changed my life: ['REAL']\n", + "Hook Up Sites Tinder and Grindr Good For Population Control: ['FAKE']\n", + "On policies, Ted Cruz shifts his stance to suit a fractured GOP: ['REAL']\n", + "Life: 6 Pieces Of Meat I Have Seen, Held, And In One Case, Gone On Vacation With: ['REAL']\n", + "Project Veritas Undercover Journalist in Full Burka Is Offered Huma Abedin’s Ballot: ['REAL']\n", + "Families To Roof: 'I Forgive You, And Have Mercy On Your Soul': ['REAL']\n", + "Turkeys face deep divisions over Thanksgiving vote: ['FAKE']\n", + "Oregon standoff defendants acquitted; feds literally Tase Ammon Bundy’s lawyer at courthouse: ['FAKE']\n", + "Remember This When You Talk About Standing Rock: ['REAL']\n", + "Marco Rubio can’t save the Republican Party: Why people are giving him way too much credit after Iowa: ['REAL']\n", + "BREAKING: Clinton’s intelligence briefings suspended indefinitely following latest in email scandal | Christian Times Newspaper: ['FAKE']\n", + "Watch: Rigged Voting Machine Will Not Allow Vote For Trump/Pence… “Stuck” On Clinton/Kaine: ['FAKE']\n", + "Poll: Voters fret Trump or Clinton in the White House: ['FAKE']\n", + "Does the Road to the White House Run Through Gary Johnson's New Mexico?: ['REAL']\n", + "IT BEGINS...: ['REAL']\n", + "Hillary’s health: Candidate stumbles again boarding campaign plane: ['REAL']\n", + "Fact-checking the first Clinton-Trump presidential debate: ['FAKE']\n", + "Saudi Arabia, Egypt to Invade Yemen: ['FAKE']\n", + "Welcome to Trump County, U.S.A.: ['FAKE']\n", + "ISIS Uses 600 Suicide Dogs to Restrain Iraqi Army’s Advance in Mosul: ['REAL']\n", + "Protestants get ready to grovel: ['FAKE']\n", + "Trump’s misleading claim that 58 percent of black youths are unemployed: ['FAKE']\n", + "Scott Walker never stood a chance: Why this awkward, Koch-backed Midwesterner was outrageously overrated: ['REAL']\n", + "We Republicans Lost On Gay Rights. That’s A Good Thing.: ['REAL']\n", + "Iran takes hard stance on key provisions in nuke deal: ['REAL']\n", + "Radio Derb transcript for October 29th is up: The arrogance of power, Etc: ['REAL']\n", + "The awful truth about climate change no one wants to admit: ['FAKE']\n", + "RNC chairman: 'We're going to embrace whoever the nominee is': ['FAKE']\n", + "Cory Booker: Senate bill is \"in my lifetime the first reversal of mass incarceration\": ['REAL']\n", + "Top US General Pleads With Troops Not To Revolt Over 2016 (VIDEO): ['FAKE']\n", + "Putin and Xi in Western propaganda – why does XJP get off so lightly? | The Vineyard of the Saker: ['REAL']\n", + "PressTV-Yemen’s Hudaydah suffering from dire humanitarian situation: ['REAL']\n", + "Republicans Are Now Seen As The More Extreme Party: ['FAKE']\n", + "Tech” Malaise Pricks San Francisco Office Space Bubble: ['REAL']\n", + "Daily Mail forced to lie down in darkened room after confirmation Prince Harry’s girlfriend is mixed-race: ['FAKE']\n", + "Obama vetoes GOP attempt to repeal Obamacare: ['FAKE']\n", + "Obama to Make Landmark Presidential Trip to Father's Homeland, Kenya: ['REAL']\n", + "Obama: 'Senseless murders' in church shooting: ['FAKE']\n", + "Dr. Duke and Dr. MacDonald Call for Prosecution of Hillary for Treasonous Support of ISIS.: ['REAL']\n", + "GOP hits back at fracking rules: ['REAL']\n", + "Vermont fights the opioid epidemic by limiting prescribed painkillers: ['REAL']\n", + "NSA spying: Today in America our government keeps us neither free nor safe: ['REAL']\n", + "20 Before and After Photos That Reveal The Effects Of Giving Up Alcohol: ['REAL']\n", + "2016 cash race: It's on: ['REAL']\n", + "Snapchat To Raise Up To $4 Billion In IPO, Valuing Company As Much As $40 Billion: ['FAKE']\n", + "Why Is This Not Watergate? Smoking Gun Emails Discuss “Cleaning Up” Obama/Hillary Emails: ['REAL']\n", + "Clinton pivots left on immigration: ['REAL']\n", + "How Rich Candidates Try To Appeal To Working Voters: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "New York Times Tries to Compare Comey to Hoover. Here Are 4 Reasons That's Idiotic: ['FAKE']\n", + "Hogan rejects Democratic request for ban on state-funded travel to Indiana: ['FAKE']\n", + "27 Civilians Killed in Saudi Airstrikes Against Yemen Villages: ['FAKE']\n", + "Slain reporter's boyfriend calls for violence discussion: ['REAL']\n", + "GOP resistance to Obamacare is working brilliantly: ['FAKE']\n", + "First-Ever Footage of Aging Tar Sands Pipelines Beneath Great Lakes: ['FAKE']\n", + "Budget 2016: Obama moves left, testing Republicans (+video): ['REAL']\n", + "Politicians, NATO Officials Furious as Spain Plans to Refuel Russian Battle Group - Tyler Durden: ['FAKE']\n", + "Republicans Stand Against Cuba Change Despite Public Opinion Shift: ['FAKE']\n", + "The best lines from President Obama's speech, according to the White House: ['REAL']\n", + "Slave labor: Prison food contractors funded efforts to combat marijuana legalization: ['FAKE']\n", + "The GOP Is Writing Off 30 Percent of the American Electorate: ['FAKE']\n", + "PTSD: Identification and Compensation: ['FAKE']\n", + "Leftists Claim Dress Code Promotes “Rape Culture”: ['REAL']\n", + "Muslims Are Kidnapping White Girls And Forcing Them Into Sex Slavery, Says UK Children's Charity: ['REAL']\n", + "The Supreme Court is hearing a case that could derail Obamacare: Everything you need to know: ['FAKE']\n", + "White House still not telling America the truth about jobs, economy: ['REAL']\n", + "‘Arab Spring’ and the Washington-Brussels-Riyadh Axis: ['REAL']\n", + "These Syrian Refugees Just Nailed The Mannequin Challenge!: ['REAL']\n", + "Bernie Sanders digs in: ['REAL']\n", + "Preventing cultural genocide with the Mother Tongue policy in Eritrea: ['REAL']\n", + "London Bankers Fearful of Brexit Blowback: ['REAL']\n", + "Trump Draws Fire from GOP Leaders over Attacks on Latino Judge: ['REAL']\n", + "How the battle against the Islamic State is redrawing the map of the Middle East: ['REAL']\n", + "Trump Suffers Bizarre Memory Disorder: Says He Always Opposed Obamacare (VIDEO): ['FAKE']\n", + "Dump the Democrats for Good - Russia News Now: ['FAKE']\n", + "Donald Trump is going to win: This is why Hillary Clinton can’t defeat what Trump represents: ['FAKE']\n", + "Nevada GOP Gov. Brian Sandoval Won't Run For Senate In 2016: ['REAL']\n", + "The man behind the Trump rally disturbance in Reno: ['REAL']\n", + "This Collage of Corrut Presstitutes Making Fools of Themselves Is a Keeper: ['FAKE']\n", + "Can Jeb Bush fire up the base like he’s fired up the establishment?: ['REAL']\n", + "White House has been aided recently by ruling in contraceptives case: ['REAL']\n", + "Stocks Pump'n'Dump As Crude Crumbles To 3-Week Lows: ['FAKE']\n", + "ING TO CUT 7,000 JOBS…: ['REAL']\n", + "Thomas Reuters cuts 2000 jobs, spends $200m streamlining: ['REAL']\n", + "Obama says world leaders right to be 'rattled' by Trump: ['FAKE']\n", + "GOP Senator On Fixing Obamacare: 'No, No, No, No': ['REAL']\n", + "The folly of Obama's Clean Power Plan: ['REAL']\n", + "Comment on 10 More Beautiful Images That Remind You We Still Live In A Beautiful World, With Beautiful People by 10 More Beautiful Images That Remind You We Still Live In A Beautiful World, With Beautiful People - Upside Down Media: ['REAL']\n", + "Clinton 'does not recall' ordering destruction of emails from personal server in testimony: ['REAL']\n", + "The Weeds: our undemocratic primaries, Obama's new fiduciary rule, and the challenge of information polarization: ['REAL']\n", + "Cruz’s closing case against Trump: ‘We are not a bigoted, angry people’: ['REAL']\n", + "The collapse of Rand Paul and the libertarian moment that never was: ['REAL']\n", + "Hillaryous! Huckabee Compares Clintons to THESE Famous Mobsters.: ['REAL']\n", + "Trump: Immigrants bring 'drugs ... crime' to U.S. from Mexico: ['REAL']\n", + "Not Guilty: The Power of Nullification to Counteract Government Tyranny: ['FAKE']\n", + "In rural America, a startling prospect: Voters Obama lost look to Sanders: ['REAL']\n", + "Obama: Hillary Clinton’s Personal Email a Mistake but Didn’t Endanger U.S.: ['REAL']\n", + "Dead Voter Drive: video & petition to stop deceased-o-phobia: ['REAL']\n", + "Will China Trigger the Next Global Recession?: ['REAL']\n", + "Veterans help veterans cope with PTSD through decorated Marine’s New York-based nonprofit Headstrong Project: ['REAL']\n", + "Who rules the world? America is no longer the obvious answer: ['REAL']\n", + "US Officials Try to Scare Voters With Terror Threat: ['REAL']\n", + "Arianna Huffington Exposed Colluding With DNC in New WikiLeaks Emails: ['REAL']\n", + "Liberal CNN Commentator Blames Republicans for Obamacare’s Rising Premiums: ['FAKE']\n", + "Lawmakers seek deeper shake-up at Secret Service: ['REAL']\n", + "Trump Threatens Lawsuit Against Slanted New York Times: ['FAKE']\n", + "President Trump vs President Clinton … What Will Happen After Inauguration? | The Vineyard of the Saker: ['FAKE']\n", + "Sanders launches late-stage bid to woo superdelegates: ['REAL']\n", + "Planet nine might be pulling our solar system out of alignment: ['REAL']\n", + "Congressional Republicans declare Obama’s budget dead on arrival: ['FAKE']\n", + "Opinion: Face it, Trump on course for nomination: ['REAL']\n", + "CNN Got Complete List of Questions for Trump Interview from DNC: ['FAKE']\n", + "Kerry: Assad Must Go: ['REAL']\n", + "Trump would be least-popular major-party nominee in modern times: ['FAKE']\n", + "Trump’s campaign wants to salvage his ground game. But an expert says \"the damage is done.\": ['REAL']\n", + "Opps! German Magazine Uses ISIS Propaganda Video to Show All is Well in Mosul: ['FAKE']\n", + "The Republicans’ November fantasy: A glance at the GOP’s swing state strategy ought to delight Democrats everywhere: ['FAKE']\n", + "‘Mentally Ill’ Officer: Give Me Back My Gun: ['REAL']\n", + "Ukraine wants UN to label Russia as a sponsor of terrorism: ['FAKE']\n", + "Walmart is a cultural sickness: How the American workplace is enriching the wealthy — and destroying everyone else: ['FAKE']\n", + "Assange: Clinton resisted FBI, and now they’re out for payback (JOHN PILGER EXCLUSIVE): ['FAKE']\n", + "Obama Has Hit The DGAF Portion Of His Presidency, And This Video Is Proof: ['REAL']\n", + "Spin Doctors – How the Media Reports on Medicine: ['REAL']\n", + "US/Russian Relations Sour Further As Putin Refuses To Open Snapchat From Obama: ['FAKE']\n", + "Hillary Clinton isn’t running unopposed. She’s just crushing the competition.: ['REAL']\n", + "Thanksgiving at Standing Rock: ['REAL']\n", + "Re: WOW! What Josh Earnest admitted about Obamacare is stunning (because it’s true): ['REAL']\n", + "Comment on Useful Idiots for Islam by MomOfIV: ['FAKE']\n", + "Even before Super Tuesday, Clinton is thinking about a likely matchup with Trump: ['FAKE']\n", + "CodeSOD: Just In Case: ['REAL']\n", + "The Pitfalls of Partial Disclosure – Examining the Process of Disclosure and the Reasons why a String of Half-Truths Just Won’t Cut It: ['REAL']\n", + "What immigration activists want from Hillary Clinton: ['REAL']\n", + "Fiorina slams Clinton, calls Trump a 'Christmas present' for Dems: ['FAKE']\n", + "4 Times As Many Americans Think Biased U.S. Media – Not Foreign Interests Such As Russian Hackers – Real Threat To Fair Election: ['REAL']\n", + "Hillary Emails: “Taken Care Of”: ['REAL']\n", + "Obama: ‘We will be as aggressive as we can’ on immigration appeal: ['FAKE']\n", + "Donald Trump’s “days of rage”: As the GOP primary reaches its tipping point, Trump prepares for all-out war: ['FAKE']\n", + "Pro-sovereignty Legislators Demand That Administration End Border Anarchy: ['REAL']\n", + "How Donald Trump Wins Even When He Loses: ['REAL']\n", + "Donald Trump is reinventing the GOP in his image: The secret Republican memo that admits what already should have been obvious: ['FAKE']\n", + "Top Dem Warns GOP To Deal Now Or Risk Another Government Shutdown: ['FAKE']\n", + "The Dropa Stones - 12,000-Year-Old Ancient Artifacts: ['REAL']\n", + "FBI Getting Warmer: Pay-to-Play: ['FAKE']\n", + "Gay marriage ruling leaves debate about religious liberty wide open: ['REAL']\n", + "Kim Davis is the new face of the religious right: Angry, marginalized and increasingly desperate: ['FAKE']\n", + "Why Clinton camp is releasing personal server 5 months after e-mail flap emerged: ['REAL']\n", + "Charting a course for charter schools: ['REAL']\n", + "State of emergency declared in Ferguson after police shoot and critically injure man during protests: ['REAL']\n", + "November 4: Daily Contrarian Reads: ['REAL']\n", + "A Trump Supporter Just Held Six Children At Gunpoint For Dumbest Reason Ever: ['FAKE']\n", + "Gary Johnson: No To Carbon Taxes and Mandatory Vaccines, Yes To Black Lives Matter and Transformative Politics: ['REAL']\n", + "Facebook Lets Advertisers Exclude Users by Race: ['REAL']\n", + "Ted Cruz is a professional liar: The Planned Parenthood shooting was the work of a “transgendered leftist activist”: ['REAL']\n", + "Egyptian planes pound ISIS in Libya in revenge for mass beheadings of Christians: ['REAL']\n", + "Wells Fargo is Rotting from the Top Down: ['REAL']\n", + "After the latest debacle, we agree with Donald Trump: “We’ve had enough of the debates”: ['REAL']\n", + "Megyn Kelly tears into Ted Cruz over ridiculous debate demands: “Would we have to submit our voting records to you?”: ['FAKE']\n", + "Dying out: Wild animal numbers could fall by 67% from 1970-2020, study says: ['FAKE']\n", + "Comment on Due Process is Dead: A Staggering 95% of All Inmates in America Have Never Received a Trial by Raymond Karczewski: ['REAL']\n", + "Schools All Over America Are Closing On Election Day Due To Fears Of Violence: ['REAL']\n", + "Senate Democrats block swift passage of Keystone XL pipeline bill (+video): ['REAL']\n", + "Wake up, America. Our country is upside down: ['FAKE']\n", + "Global relief effort underway after Nepal earthquake leaves 2,700 dead, thousands injured: ['REAL']\n", + "Defense Secretary Carter used personal email in first months on the job: ['REAL']\n", + "Capitalism Is Doomed — Without Alternatives, So Are We: ['REAL']\n", + "Texas counts down the hours until new Open Carry law takes effect: ['REAL']\n", + "Still Not Over: They Are Trying to “Flip the Electoral College” To Block Trump’s Win: ['FAKE']\n", + "EgyptAir Flight 804 Crash Increasingly Looks Like Terrorism: ['REAL']\n", + "Why Jeb Bush’s campaign has gone so wrong: ['REAL']\n", + "New ISIS Video Threatens Putin While Russian Child Executioners Execute 4 Men: ['FAKE']\n", + "Obama AWOL in Paris: Message to America, allies is we don't care: ['REAL']\n", + "Clinton’s cowardice on trade: ['FAKE']\n", + "Obama likely to make economic recovery a centerpiece of State of the Union address: ['REAL']\n", + "See Which 2016 Candidates Best Align With Your Views: ['REAL']\n", + "Global warming worsened the California drought, scientists say: ['REAL']\n", + "Koch Brothers Helped Incite the Impending Bloodbath Among Republicans: ['REAL']\n", + "Arizona cop's body cam captures fatal encounter with suspect: ['REAL']\n", + "Sinjar: Kurds try to retake key Iraqi town from ISIS: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sean Hannity SHREDS FBI Director James Comey for Clearing CRIMINAL HILLARY Again – TruthFeed: ['REAL']\n", + "In the House’s dark hour, Speaker Paul Ryan offers a glimpse of hope: ['REAL']\n", + "Iraqi forces appear close to retaking Ramadi from Islamic State: ['REAL']\n", + "THIS Is What It Means If You Have Two Dimples On Your Back: ['REAL']\n", + "Clinton campaign blasts James Comey over 'jaw-dropping' double standards at FBI: ['FAKE']\n", + "Crack in Earth’s magnetic shield detected: ['REAL']\n", + "Letting Trump and the GOP self-destruct: Hillary and Democrats have the right strategy by laying low: ['FAKE']\n", + "Dear GOP: Hire me and I’ll give you the debate of your dreams: ['FAKE']\n", + "French privacy row over mass ID database: ['REAL']\n", + "VIDEO: Cop Crashes Car and Runs Away When More Cops Arrive: ['REAL']\n", + "Bernie Sanders' American Dream is in Denmark: ['REAL']\n", + "Hey Bernie Supporters, Here are 45 Times Hillary Promoted the TPP – TruthFeed: ['REAL']\n", + "Campaign 2016 is divisive: What it says for the future: ['REAL']\n", + "Russian experts collecting evidence of anti-govt chemical attack in Aleppo – Defense Ministry: ['FAKE']\n", + "The Path to Total Dictatorship: America's Shadow Government and Its Silent Coup: ['REAL']\n", + "Women won't earn the same as men for another two centuries - report: ['FAKE']\n", + "Donald Trump’s white fascist brigade: His rallies are now a safe space for racism: ['FAKE']\n", + "Inside Hillary Clinton's 2016 plan: ['FAKE']\n", + "Senators pledge to amend House bill after some NSA powers halted: ['REAL']\n", + "Dem insiders: Sanders failed to dent Clinton: ['FAKE']\n", + "Calif., Ore. allow women to get birth control without a prescription: ['FAKE']\n", + "CrossTalk on US election: Criminal in Chief?: ['FAKE']\n", + "Justice Department significantly reducing number of federal observers stationed inside polling places: ['REAL']\n", + "Newsnight trolled the Tory MP who called for the BBC to play God Save The Queen at the end of each day: ['REAL']\n", + "Clinton's health continues to spur controversy and conspiracy: ['REAL']\n", + "Comment on TRIPS: The Story of How Intellectual Property Became Linked to Trade by Foppe: ['REAL']\n", + "Hillary Makes SCANDALOUS Stop After Rachel Maddow Breaks Down On LIVE TV: ['REAL']\n", + "Rubio called Trump a dangerous ‘con man.’ Now he says Trump should be president.: ['FAKE']\n", + "Obamacare architect: ‘The law is working as designed,’ just needs ‘a larger mandate penalty’: ['FAKE']\n", + "Western Banking System COLLAPSE | Jim Willie: ['REAL']\n", + "3 Philadelphia prison guards arrested for alleged assault on handcuffed inmate: ['FAKE']\n", + "Cruz takes on Caitlyn Jenner over transgender fight: ['FAKE']\n", + "Trump vs. Clinton Is the 1980s vs. the 1990s: ['FAKE']\n", + "Someone broke a Skype spam bot by typing an emoji and the transcript is what happens when robots go mad: ['REAL']\n", + "Search continues for wreckage from EgyptAir flight as officials probe links to terror: ['REAL']\n", + "Kasich Affirms Path to Legal Status for Undocumented Immigrants: ['FAKE']\n", + "ISIS Claims Responsibility for Deadly Bombing in Afghanistan: ['REAL']\n", + "New earthquake rocks Italy, buildings collapse but no deaths reported: ['REAL']\n", + "Sucking the Blood of a Declining Civilization: ['REAL']\n", + "NATO builds up offensive capability on borders of Russia & Belarus, Moscow to respond: ['FAKE']\n", + "Top 5 unusual tragic deaths on sets: ['REAL']\n", + "Clinton clinches Democratic nomination as Sanders stays in race: ['REAL']\n", + "Poroshenko sworn in as Ukraine's president: ['REAL']\n", + "Hillary Clinton agrees to provide private e-mail server to FBI: ['FAKE']\n", + "Obama 'guarantees' he will not interfere with Clinton email investigation: ['FAKE']\n", + "Kentucky Sen. Rand Paul suspends presidential campaign: ['REAL']\n", + "Syria - Waiting For The Next Moves :: ['FAKE']\n", + "Who will fight for gay marriage at SCOTUS?: ['FAKE']\n", + "Boehner: Democrats must 'get off their ass' on DHS bill: ['REAL']\n", + "BREAKING: Massive Voter Fraud in Broward County Florida Linked To Ex-DNC Chairwoman Debbie Wasserman Schultz – MagaFeed: ['FAKE']\n", + "The Debate I Heard: ['REAL']\n", + "Baltimore prosecutor charges police with murder, manslaughter in death of Freddie Gray: ['FAKE']\n", + "Never Trump? Forget it — prominent Republicans come crawling back defeated: ['FAKE']\n", + "Russian opposition leader's slaying shocks Moscow: ['REAL']\n", + "Can any U.S. President Ever Overcome the Power of the Establishment and Bring Substantive Change to America?: ['REAL']\n", + "Dan Pfeiffer’s Exit Interview: How the White House Learned to Be Liberal: ['REAL']\n", + "How Much Trouble Is Hillary Clinton In?: ['FAKE']\n", + "Is Facebook to blame for making us more polarized? No, we are. (+video): ['FAKE']\n", + "Save the Children Norway trialed anti-malaria drug Larium in Mozambique—1993–1994: ['FAKE']\n", + "Media coverage of gang violence sure looks different when the perpetrators are white: ['REAL']\n", + "Hillary Clinton’s basket of deplorables, explained: ['REAL']\n", + "Islamic State appears to be fraying from within: ['REAL']\n", + "Patriot Act provisions have expired: What happens now?: ['REAL']\n", + "Truth Is The Enemy Of The State :: ['FAKE']\n", + "Russians deride choice of confusing 2018 World Cup mascot Zabivaka | Russia Beyond The Headlines: ['FAKE']\n", + "Sanders has gotten nastier. Does it help explain his staying power?: ['REAL']\n", + "Iraqi Christians Hold first mass in over 2 years pray for Trump to Win: ['FAKE']\n", + "Financial Times Fumbles Trump’s Central Banking Criticism: ['REAL']\n", + "Poll: Clinton's Lead Over Trump Slips After Florida Shooting: ['FAKE']\n", + "Clinton Foundation: 'Yes, we made mistakes': ['FAKE']\n", + "Jeb 2016: The Bush battle within: ['REAL']\n", + "Dakota Access v Human Rights: ['FAKE']\n", + "In Iowa, potential candidates compete for 2016 spotlight: ['FAKE']\n", + "U.S. secretly tracked billions of calls for decades: ['FAKE']\n", + "Opinion: Hillary Clinton, a mistake for 2016 - .com: ['FAKE']\n", + "Agencies of Fear: ['FAKE']\n", + "Scott Walker's campaign is in deep, deep trouble: ['FAKE']\n", + "Pakistan police detain dozens of Imran Khan's supporters in Islamabad: ['REAL']\n", + "Donald Trump's big night: Don't underestimate him: ['REAL']\n", + "Obama hits 50% approval rating in poll: ['FAKE']\n", + "Comment on Are We About To See One Of The Greatest Evolutions In Human History? by 10 Shocking Facts About Society That We Absurdly Accept As Normal – Digital Flow: ['FAKE']\n", + "Obama Wants To End The Era Of Sequestration: ['REAL']\n", + "Clinton or Trump: Who’s less truthful?: ['FAKE']\n", + "Rise of the Alt-Right: ['REAL']\n", + "Feds: 275,000 Born to Illegals in One Year, Would Fill City the Size of Orlando: ['FAKE']\n", + "Bobby Jindal governing like it's 2016: ['REAL']\n", + "Look At What Is Unfolding In China And Other Key Regions Right Now: ['REAL']\n", + "Bernie Sanders Blames Closed Primaries As Path To The Nomination Narrows: ['REAL']\n", + "Colin Quinn on race, comedy and political correctness: “People should stop lying and pretending there’s a racial dialogue”: ['REAL']\n", + "Watch: Donald Trump is showing a side of the GOP that party leaders don't want you to see: ['REAL']\n", + "Americans' Support for 'Assault Weapons' Ban at Record Low: ['REAL']\n", + "Will it be representative government or thugocracy?: ['FAKE']\n", + "An explanation for why the FBI re-opened Hillary's e-mails: ['FAKE']\n", + "Sanders in California Says Clinton E-Mail Problems Now Serious: ['REAL']\n", + "21 THINGS WE’VE LEARNED ABOUT HILLARY CLINTON FROM WIKILEAKS THAT THE MSM WON’T SHARE…BUT YOU CAN!: ['REAL']\n", + "Radio Derb 10/28/16: ['REAL']\n", + "Venezuelan Opposition Calls for General Strike Against Gov't on October 28: ['REAL']\n", + "Guy Face-Plants While Testing Virtual Reality Headset: ['FAKE']\n", + "Appeals court rules against Obama immigration plan: ['REAL']\n", + "Most Idiotic Comment Ever? “Sell Gold Because Inflation Will Spike”: ['REAL']\n", + "U.S. student performance slips on national test: ['REAL']\n", + "The Shame, The Heartbreak- Another Day In America: ['FAKE']\n", + "Tom Hanks Raps: ['REAL']\n", + "WikiLeaks Releases 32nd Batch of Clinton Campaign Chair Podesta's Emails: ['REAL']\n", + "Charleston, Dylann Roof and the racism of millennials: ['REAL']\n", + "Daesh executing civilians as Iraqi forces advance: ['REAL']\n", + "Snowden Reveals How Easy It Is To Hack Voting Machines: ['REAL']\n", + "Clinton renews vow to 'fast track' immigration; Trump camp accuses candidate of acting like a 'king': ['REAL']\n", + "White House admits should have sent 'higher-profile' official to Paris rally: ['FAKE']\n", + "GOP hits another roadblock on Obamacare repeal: ['FAKE']\n", + "Insiders: Sanders and Trump will win New Hampshire: ['FAKE']\n", + "Paintings 'almost no one else seemed to be doing': ['REAL']\n", + "'Massive' French airstrikes hit Islamic State to retaliate for attacks: ['FAKE']\n", + "UNESCO passes anti-Israel resolution despite Tel Aviv brickbats: ['REAL']\n", + "Debate: Washington's Syria policy: ['REAL']\n", + "18 State Swat Team Drill In Prep for Backlash Against a Stolen Election: ['REAL']\n", + "Cheney Hates Trump, Endorses Him Anyway: ['REAL']\n", + "What it’s really like to be in the middle of the battle for Aleppo: ['REAL']\n", + "Fine, give the GOP four years: The liberal case for either Bernie Sanders, or electing a Republican president: ['REAL']\n", + "Obama’s DNC letdown: The president needed to hit it out of the park, but he surprisingly fell short: ['REAL']\n", + "Netanyahu Back To Barely Pretending He Supports A Two-State Solution: ['FAKE']\n", + "Rand Paul is about to kick off a Republican civil war on foreign policy: ['REAL']\n", + "Pope Francis is not endorsing Kim Davis's views, Vatican says: ['FAKE']\n", + "Feminism Has Lost The Minds Of Young Women: ['REAL']\n", + "Flashback: Clinton cheered 11th-hour indictment that doomed Bush re-election: ['FAKE']\n", + "The Story of How the DOJ Tried to Thwart an FBI Investigation Into the Clinton Foundation: ['FAKE']\n", + "Why Hillary Clinton was told not to be a trial lawyer: she didn't have a wife at home: ['REAL']\n", + "Progressives Find ‘White Trash’ More Threatening Than Nuclear War: ['REAL']\n", + "Obama administration bans some military-style assault gear from local police departments: ['REAL']\n", + "Russia and Turkey Now Sharing Intelligence Data: ['REAL']\n", + "Obama administration prepares regulatory rush in 2015: ['REAL']\n", + "Re: ‘D*ckileaks’? NY Post unveils tomorrow’s Weiner cover for your pleasure: ['REAL']\n", + "Obama Apologizes, Takes Responsibility For Deaths Of Innocent Hostages In U.S. Drone Strike: ['REAL']\n", + "Thousands march to mourn slain Boris Nemtsov: ['FAKE']\n", + "How Tim Scott chose to endorse Marco Rubio for president: ['REAL']\n", + "Hope, Change, Lies and Greatness: ['FAKE']\n", + "Why long shots and also-rans run for president: It’s the media, stupid: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Miss Russia | Russia & India Report: ['FAKE']\n", + "“I feel like these Topshop models are sick of me apologising, but also maybe willing to hear me out”: ['FAKE']\n", + "FEAR OF TRUMP: BUSH, OBAMA, CLINTON ALL BUYING PROPERTY IN NON-EXTRADITION NATIONS: ['FAKE']\n", + "7 things to watch for on election night: ['REAL']\n", + "Trump woos women and minorities by pitting one group against another: ['REAL']\n", + "Bernie Sanders Says Bill Clinton Owes Americans an Apology: ['REAL']\n", + "How the Iran deal might change the Middle East: ['REAL']\n", + "HERE THEY GO AGAIN! Muslims trying to claim that the Hebrew-language Dead Sea Scrolls are Arab Muslim in origin: ['FAKE']\n", + "Taking Calcium Supplements Causes Brain Lesions: ['REAL']\n", + "US election campaign reveals mass alienation from two-party system: ['REAL']\n", + "BREAKING – Investigative Journalist Found Dead, Was Working For…: ['FAKE']\n", + "ManTracker: How to Be One and How to Avoid One – 10/31/16: ['REAL']\n", + "Trump Smirks As Beltway GOP Crumbles: ['FAKE']\n", + "Putin's New Promise: 'I WILL DEFEAT THE ILLUMINATI': ['FAKE']\n", + "Long-Shot Candidates Look To Keep Hope Alive For 2016: ['FAKE']\n", + "Debate night: The media want a Trump fight, with blood and bruises: ['FAKE']\n", + "JUDGMENT DAY: The One Reason Why Every Christian And Jew In America Should Vote For Donald Trump: ['FAKE']\n", + "What is the real state of affairs in the Russian economy?: ['FAKE']\n", + "Baba Vanga Was Right About Obama's Presidency And The 9/11 Attacks Sees Dire Future For Trump And The US: ['FAKE']\n", + "Voters in Arkansas, North Dakota Legalize Medical Marijuana Despite Federal Prohibition: ['FAKE']\n", + "OMG! The ULTIMATE BENGHAZI BOMBSHELL! Leaked Emails Show Hillary Ordered The Rescue Team To.. • USA Newsflash: ['REAL']\n", + "Why would anyone want to be Trump or Clinton’s VP?: ['FAKE']\n", + "BREAKING: Irrefutable Proof Obama Lied to Protect Hillary Clinton’s Run for the White House Read: ['FAKE']\n", + "Obama pushes controversial trade deal in Germany: ['REAL']\n", + "How Paul Ryan unified a fractured GOP: ['REAL']\n", + "The Clinton Shakedown Scam Summed Up With One Meme: ['FAKE']\n", + "Bush v. Trump: Behind the Vegas rumble: ['REAL']\n", + "Scary Times For California Farmers As Snowpack Hits Record Lows: ['REAL']\n", + "Nikki Haley should have run for president: ['REAL']\n", + "Charleston exposes ugliest truth of our time: Our society places little value on black life: ['REAL']\n", + "While The FBI Investigates Hillary- WikiLeaks Swoops In To Kick Her While She’s Down: ['FAKE']\n", + "Inside The Invisible Government: War, Propaganda, Clinton & Trump: ['FAKE']\n", + "The obsession of the House Freedom Caucus: ['REAL']\n", + "Over 20 Injured, Almost 40 Detained in Venezuelan Opposition Protests: ['REAL']\n", + "Donald Trump: Hillary's Syria Policy Would Lead to 'World War Three' - Breitbart: ['REAL']\n", + "Marco Rubio: Being Gay Is Not A Choice: ['REAL']\n", + "The Pope is wrong on religious speech (Opinion): ['REAL']\n", + "What Big Democratic Donors Will Get in Philadelphia: ['REAL']\n", + "TRUMP SUPPORTER Whose Brutal Beating By Black Mob Was Caught On Video Asks: “What Happened To America?” [VIDEO]: ['FAKE']\n", + "Kurds decide to get on US nerves: ['REAL']\n", + "Trump tries to reset with economic speech — but faces new resistance in GOP: ['FAKE']\n", + "Wingsuit flyer vs. tree: ['REAL']\n", + "Putin’s Adviser Takes Credit For Trump Victory: ‘Maybe We Helped A Bit With Wikileaks’: ['REAL']\n", + "Clinton aide key focus in FBI server investigation: ['FAKE']\n", + "Clinton Foundation received subpoena from State Department investigators: ['FAKE']\n", + "Trump: inner cities run by Democrats are more dangerous than war zones: ['FAKE']\n", + "Another one bites the dust: Third USAF weather satellite breaks up in orbit: ['REAL']\n", + "The Russian Navy in the Eastern Mediterranean: Naval Briefing November 9th, 2016 by LeDahu: ['FAKE']\n", + "Judge Temporarily Halts Obama's Immigration Actions: ['REAL']\n", + "Road to 270: 's new election map: ['FAKE']\n", + "Bernie Sanders faces frustrated crowd at race forum in Minneapolis: ['FAKE']\n", + "Louisiana Election Officials Seize Voting Machine Illegally Placed In Private Room For ‘VIP Voters’ (VIDEO): ['FAKE']\n", + "part 38 “Impossible” statues, “Impossible” ancient jewellery, Moscow nuked, “Impossible” steel [VIDEO]: ['REAL']\n", + "We’re Finally Opening A T-Shirt Shop For ROK Gear: ['REAL']\n", + "Desperate Measures: Cruz, Kasich Team Up to Take Down Trump: ['FAKE']\n", + "Defense Secretary Halts Forced Repayment of Enlistment Bonuses: ['REAL']\n", + "Ryan hopes for new tone in Trump campaign: ['FAKE']\n", + "What voters want in a president today, and how their views have changed: ['REAL']\n", + "Globalist Soros Pours Money Into Manipulating U.S. Elections: ['REAL']\n", + "Rubio’s problem: An excess of caution: ['FAKE']\n", + "Ex-FBI assistant director calls the Clintons a ‘crime family’ and claims their ‘foundation is a cesspool’: ['REAL']\n", + "I thought I was just scared of Trump – but it’s his America I fear: ['FAKE']\n", + "Sean Hannity interviewing Mike Pence about Obama’s claims on election fraud. Mr. Trump has recommended everyone watch this clip.: ['FAKE']\n", + "Former Clinton Foundation CEO begging Russia for ‘urgent and immediate’ asylum?: ['FAKE']\n", + "Disaffected America strikes back: ['REAL']\n", + "Comment on You’re Being Fooled: The Problem With ‘Alternative’ News Websites by Web Credibility | Site Title: ['REAL']\n", + "Fact Check: Was Planned Parenthood Started To 'Control' The Black Population?: ['REAL']\n", + "We Finally Know Why Hillary Disappeared On Election Night: “She Was Crying Inconsolably… It Was Hard To Understand What She Was Saying She Was Crying So Hard”: ['REAL']\n", + "Is Goat Milk Better Than Cow Milk? Plus A List Of Health Benefits: ['REAL']\n", + "The War on Drugs is a Racket: ['FAKE']\n", + "An Identity-Politicized Election and World Series Lakefront Liberals Can Love: ['FAKE']\n", + "The Myth of the McMahon Line: ['REAL']\n", + "Koch Brothers Battle to Prevent Dark Money Disclosure in South Dakota: ['FAKE']\n", + "UnReal Report: PM Modi trolls one and all with his surgical strike on black money: ['REAL']\n", + "Will Michelle Obama Be The Replacement Nominee If The FBI Email Investigation Ends Hillary Clinton’s Campaign?: ['FAKE']\n", + "SC Gov. Nikki Haley Announces She’s Voting For Donald Trump: ['REAL']\n", + "American Woman In Bikini Desecrates French Catacombs For Her “Female Indiana Jones” Brand: ['FAKE']\n", + "The Abnormal Normal of Nuclear Terror: ['REAL']\n", + "No One Tried to Assassinate Donald Trump … But Austyn Crites Shows Up in WikiLeaks 7 Times: ['FAKE']\n", + "Chicago Cubs go 24 hours without winning a World Series: ['REAL']\n", + "Republicans outfox Democrats on climate votes: ['FAKE']\n", + "Presidential debate moderators announced: ['REAL']\n", + "Hillary’s inevitability lie: Why the media and party elites are rushing to nominate the weakest candidate: ['REAL']\n", + "The Weeds: could more corruption fix American politics?: ['FAKE']\n", + "Ex-rep: 'If Trump loses, I'm grabbing my musket': ['REAL']\n", + "Jeb Bush gave this black community a charter school. Then he moved on.: ['REAL']\n", + "America is criminalizing Black teachers: Atlanta’s cheating scandal and the racist underbelly of education reform: ['FAKE']\n", + "VA program to provide private care stumbling out of the gate: ['REAL']\n", + "The conservative case for gay marriage: ['FAKE']\n", + "Earth had warmest winter on record: ['REAL']\n", + "Tired of Western Propaganda Against Russia? Here's Vladimir Putin’s Perspective: ['FAKE']\n", + "As Clinton moves to brink of nomination, Sanders eyes California upset: ['REAL']\n", + "Warming of oceans due to climate change is unstoppable, say US scientists: ['REAL']\n", + "Iran's leader rejects foreign access to military sites, scientists: ['FAKE']\n", + "Is Jeb Bush conservative enough?: ['REAL']\n", + "For Jeb Bush and Mitt Romney, a history of ambition fuels a possible 2016 collision: ['FAKE']\n", + "Shots Fired, 117 Arrests Made as Militarized Police Remove Pipeline Protesters: ['FAKE']\n", + "Paper Tiger ISIS Digs Into Mosul: ['REAL']\n", + "5 Things You Need to Know About the Dakota Access Pipeline Protests: ['REAL']\n", + "What will Republicans do when they take full control of Congress?: ['FAKE']\n", + "Guardian Front Page: “A 16-Year-Old Migrant Cries…”: ['REAL']\n", + "Sanders Asks Obama To Intervene In Dakota Access Pipeline Dispute: ['FAKE']\n", + "Wolf Richter: Layoffs at Alphabet Access to Hit 9%, Google Fiber to “Pause” Plans, CEO Leaves, as Alphabet Cracks Down on Costs: ['FAKE']\n", + "Exclusive: Hillary may delay campaign: ['REAL']\n", + "Trump finally went too far for Republicans: ['FAKE']\n", + "Fed Holds on Raising Rates, Fears Rising Dollar: ['REAL']\n", + "So how’s the American middle class, really?: ['REAL']\n", + "VIDEO: Watch as Hillary Needs Assistance… To Climb One Step: ['REAL']\n", + "Re: WATCH and laugh: literally the BEST vine of Hillary from the 2016 campaign … so far: ['REAL']\n", + "Have there been 353 mass shootings this year — or just 4?: ['REAL']\n", + "Statistical Propaganda: How many Syrians has US regime-change killed?: ['REAL']\n", + "The 17-year story behind Marco Rubio’s cut-down of Jeb Bush: ['REAL']\n", + "France’s Far-Right National Front Seeks Funding From United Arab Emirates: ['FAKE']\n", + "The Cosmic Story: Scorpio New Moon, October 30, 2016: ['REAL']\n", + "Michael Oliver – This Key Signal Will Indicate Liftoff For Gold & Silver And The Mining Stocks!: ['REAL']\n", + "Trump backs off false Iran video claim: ['FAKE']\n", + "Jackie Mason: Hillary Clinton Too Untrustworthy To Serve As Bathroom Attendant – She’d Steal The Toilet Paper: ['REAL']\n", + "FBI Reopen Hillary Clinton Email Investigation, New Emails Found: ['REAL']\n", + "Since Donald Trump Won The Presidency… Ford Shifts Truck Production From Mexico To Ohio | EndingFed News Network: ['FAKE']\n", + "Progressives Find ‘White Trash’ More Threatening Than Nuclear War: ['REAL']\n", + "Political polarization on Facebook | Institution: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Be Winter Wise: Woolley Hats Stop Heart Attacks: ['REAL']\n", + "Gambling on the Unknowable Trump: ['FAKE']\n", + "Could Florida Dem primary cost party Rubio's seat?: ['REAL']\n", + "Networks Continue to Ignore Obamacare Collapse: ['FAKE']\n", + "The Hodges & Hagmann Hour- America’s Last Chance to Survive: ['REAL']\n", + "Bush slashes campaign budget, refocuses on key primary states: ['REAL']\n", + "If Megyn [sic] Kelly Doesn’t Want Her Pussy Grabbed, Why Did She Pose for This “Grab My Pussy” Photo Shoot?: ['FAKE']\n", + "Latest And Perhaps Last Debate Highlights Animosity Of Sanders, Clinton: ['REAL']\n", + "The Next 10 Years Will Be Ugly for Your 401(k): ['REAL']\n", + "Devastating aftermath of twin quakes in Italy (drone footage): ['REAL']\n", + "Syrian War Report – November 11, 2016: Syrian Army Entered Menagh Air Base: ['FAKE']\n", + "One chart that shows why the Republican Party was ready for Donald Trump: ['REAL']\n", + "GOP Delegate: Trump Primary Wins 'Absolutely Irrelevant' At Convention: ['REAL']\n", + "Has George Soros Committed Treason?: ['FAKE']\n", + "Huckabee: Planned Parenthood shooting is 'domestic terrorism': ['REAL']\n", + "2006 Audio Captures Hillary Clinton Proposing To Rig Palestine Election: ['FAKE']\n", + "UK citizens and war heroes get cheap pre-fab houses while Muslim colonizers get taxpayer-funded luxurious council homes: ['REAL']\n", + "Refusing to sit on Lead, Trump Gets Bitter in Republican Debate: ['FAKE']\n", + "Ammon Bundy’s bodyguard sentenced in Oregon standoff case: ['REAL']\n", + "Why I'm more worried about Marco Rubio than Donald Trump: ['FAKE']\n", + "How mega-donors helped raise $1 billion for Hillary Clinton: ['REAL']\n", + "Worth a shot: Former Pennsylvania police officer's vending machines sell ammo: ['REAL']\n", + "Clinton’s Lead Has Evaporated in Nevada and Her Supporters Are Panicking: ['REAL']\n", + "Why Palestinians want to sue Britain: 99 years since the Balfour Declaration: ['REAL']\n", + "Jay Carney: Obama supports Hillary Clinton: ['REAL']\n", + "Hillary Clinton's ties to corporate donors, lobbyists while secretary of state scrutinized: ['FAKE']\n", + "U.S. Resets Obamacare Deadline For Some Businesses To 2016: ['FAKE']\n", + "The GOP is ungovernable: What happens when one major party is dysfunctional to the core: ['REAL']\n", + "Carly Fiorina: Ted Cruz says 'whatever' to get elected: ['REAL']\n", + "Will Rasmea Odeh’s Appeal Expose Israeli Prison Torture In A US Court?: ['REAL']\n", + "Fact Check: Democrats Have Created Twice As Many Jobs As Republicans Since 1950’s: ['REAL']\n", + "Obamacare's 'Low Expectations' for Enrollment Spells Trouble for Obama: ['FAKE']\n", + "Top House Republican demands Kerry explain $1.7 billion Iran payment: ['REAL']\n", + "The Marco Rubio post-mortem: How a supposedly ready-made GOP nominee crashed and burned: ['FAKE']\n", + "WashPost Poll: Clinton Leads Trump by 4: ['FAKE']\n", + "Comment on Wikileaks Reveal Clinton Ties To Rothschilds And Occult Cabal by Time to hail Hillary Clinton – and face down the testosterone left | Van Badham – News: ['REAL']\n", + "Democratic debate: National security dominates: ['REAL']\n", + "New Reports Link Russia With Donald Trump’s Campaign: ['FAKE']\n", + "Republican elders ask 'who's worse' for the GOP brand: Trump or Cruz: ['FAKE']\n", + "Trump says he’d be ‘neutral’ with Israelis and Palestinians: ['REAL']\n", + "‘Intl Community Still Financing, Protecting Terrorists’ – Mother Agnes, Vanessa Beeley on Syria: ['REAL']\n", + "Brussels stories: Grief for the lost, hope for the missing: ['REAL']\n", + "Hillary Friend Bribed FBI Agent and His Wife: ['REAL']\n", + "Carrier battle group never planned to call at Spanish port – Russian Defense Ministry: ['FAKE']\n", + "Hillary’s Silent Plan to Destroy America: ['FAKE']\n", + "Hillary Clinton’s Private Speech From 2015 Mentioned Palestinian Rights—Until She Actually Gave It: ['REAL']\n", + "Trump “You Can’t Read 650k Emails in 8 days, Hillary is GUILTY!” – TruthFeed: ['REAL']\n", + "Trump And His Supporters Are Fighting A Rigged System: ['FAKE']\n", + "Meet Ted Cruz's top fundraiser: his wife: ['REAL']\n", + "Antiquities destroyed at Palmyra by the Islamic State: ['REAL']\n", + "10 things Trump could (but probably won't) change to win next debate: ['FAKE']\n", + "Bernie Sanders, Party Crasher: Notes On The (Looming) End Of A Campaign: ['REAL']\n", + "GOP field rips Obama's move toward executive action to tighten gun control laws: ['FAKE']\n", + "It's over! Trump is out - see today's final killer blunders: ['FAKE']\n", + "Sanders: Americans, superdelegates must 'take a hard look' at IG report on Clinton emails: ['FAKE']\n", + "Employers added a disappointing 126,000 jobs in March: ['REAL']\n", + "Whatever the Outcome on November 8th the US Will Be on a Collision Course With China - Federico Pieraccini: ['REAL']\n", + "Is it possible that Saudi King be tried in US courts by JASTA Law?: ['FAKE']\n", + "Retracted Paper Linking HPV Vaccine to Behavioral Issues Republished: ['REAL']\n", + "Ivana Says Young Donald Trump Was A Cry-Baby – Has Anything Changed? (VIDEO): ['REAL']\n", + "The Clintons really don’t get it: False attacks and failed strategies as Hillary repeats 2008: ['REAL']\n", + "Climate-change deniers are in retreat: ['REAL']\n", + "15 Civilians Killed In Single US Airstrike Have Been Identified: ['REAL']\n", + "Cruz and Trump battle for the South: ['FAKE']\n", + "FBI Releases Files on Bill Clinton's Cash for Pardons Scandal: ['FAKE']\n", + "Another Black Swan Hits the U.S. Presidential Election: ['REAL']\n", + "Supreme Court, Trump engulf Capitol Hill: ['FAKE']\n", + "Comment on Donald Trump Tells Veterans He’s ‘Financially Brave’ by Debbie Menon: ['REAL']\n", + "Estimated Enrollees for 2015 Health Care Decrease: ['REAL']\n", + "George And Laura Bush Celebrate Their 70th Birthdays | Daily Wire: ['REAL']\n", + "Trump accuses Obama, Hillary Clinton of founding Daesh: ['REAL']\n", + "Clinton emails: FBI director ignored Attorney General's advice not to 'take action that could influence election': ['REAL']\n", + "McCain in toughest Senate fight of his life: ['REAL']\n", + "Trump: I’m Reopening 9/11 Investigation: ['FAKE']\n", + "6 Questions Ahead Of The Trump-Fox Split-Screen 'Squirmish': ['REAL']\n", + "This is why they hate us: The real American history neither Ted Cruz nor the New York Times will tell you: ['REAL']\n", + "Donald Trump plots his second act: ['REAL']\n", + "Will Hillary Accept Defeat?: ['REAL']\n", + "Fact-checker calls out Obama for saying Keystone ‘bypasses’ US: ['FAKE']\n", + "Tom Hayden: Things Come Around in the Mideast: ['REAL']\n", + "Mike Pence doesn't share Donald Trump's worldview: ['FAKE']\n", + "5 things to watch in tonight's debate: ['REAL']\n", + "The Political and Cultural Richness of Kashmiriyat: ['FAKE']\n", + "Hillary Clinton Is Setting A Masterful Trap For Trump To Self Destruct: ['FAKE']\n", + "What 250 more Special Forces in Syria can do: ['REAL']\n", + "Is Donald Trump Autistic?: ['FAKE']\n", + "Political pundits talk polarization at Sanford School Tuesday: ['REAL']\n", + "Why you should be skeptical of wacky new studies about what sways elections: ['REAL']\n", + "Almost 100 Missing After Boat Carrying Migrants Sinks Off Libyan Coast: ['REAL']\n", + "Desmond Doss: His Only Weapon Was His Conscience: ['REAL']\n", + "Fidel Castro makes rare public appearance in Cuba: ['REAL']\n", + "FACT CHECK: Bernie Sanders And Whether Poor Americans Vote: ['REAL']\n", + "How a shortage of lethal injection drugs put the death penalty before the Supreme Court: ['FAKE']\n", + "Arab Officials Warn U.S. of Giving ISIS a Propaganda Win: ['REAL']\n", + "Don't let Charleston shooting divide us (Opinion): ['FAKE']\n", + "The Daily 202: What Trump’s latest shakeup says about his flailing campaign: ['REAL']\n", + "Phyllis Schlafly: Campus sex assault is on the rise because too many women go to college: ['REAL']\n", + "Suspected terrorist attack on a free speech event in Copenhagen leaves one dead: ['REAL']\n", + "U.S. District Judge orders homophobic Kentucky clerk to explain why she shouldn’t be fined or jailed for contempt: ['FAKE']\n", + "If this is what a “Rubio surge” looks like, Republicans really are screwed: ['FAKE']\n", + "Bank records show $28,500 deposit to Syed Farook's account two weeks before the shooting, source says: ['REAL']\n", + "U.S. Election Thread 2016-06: ['FAKE']\n", + "Gundlach: Trump Would Use Debt Like Reagan for Growth: ['FAKE']\n", + "Zika: a masterpiece of public mind control: ['REAL']\n", + "Hillary PANDERS to Black and Hispanic Radio Hosts Claiming RAP “Influenced her” and MEXICAN FOOD is her “Favorite” – TruthFeed: ['REAL']\n", + "Isis Leader ‘hiding in Mosul’ as Troops Storm Iraqi City: ['FAKE']\n", + "VA admits it has no contracts in place for billions of dollars spent on veterans’ medical care: ['REAL']\n", + "Hannity, Judge Jeanine, Crowley “Hillary has Sold America’s National Security. WORSE than a CRIME FAMILY” – TruthFeed: ['REAL']\n", + "WORLD WAR 3 IS COMING: ['FAKE']\n", + "'American Sniper' widow: Gun control won't protect us: ['REAL']\n", + "House report: Cash-strapped IRS prioritized bonuses, union activity over helping taxpayers: ['REAL']\n", + "Israel: Ancient Papyrus Proves Jerusalem Belongs To Israel: ['FAKE']\n", + "Bad idea: Shell’s gearing up to start drilling in the Arctic again: ['REAL']\n", + "Taliban claim responsibility for Kabul attack: ['FAKE']\n", + "It’s official: California farmers volunteer to give up water: ['REAL']\n", + "But How Do You Use Nonviolence Against a Nuke?: ['REAL']\n", + "Jerusalem in Photos from 1862: No mosques, no Palestinians – only ghost towns of massacred Christian areas: ['REAL']\n", + "Donald Trump and Hillary Clinton walk in to a bar: ['FAKE']\n", + "The Satanic Nature of Modern Cult-ure: ['FAKE']\n", + "Interview: Sarah Anastasia, Muslim Makeup Artist And Skin Care Consultant: ['REAL']\n", + "#Podesta21: Clinton’s ‘Twisted’ Behavior ‘Smacks of Acting Above the Law’: ['REAL']\n", + "Hillary Clinton demands answers and Democrats call foul: ['REAL']\n", + "Hillary Clinton campaign trolls GOP by boosting Donald Trump: ['REAL']\n", + "Bernie Sanders: The Democratic primary gave me ‘leverage I intend to use’ to pressure Hillary Clinton: ['REAL']\n", + "BREAKING: VP Candidate Mike Pence’s Plane Skids Off Runway, Tears Up Tarmac at NYC Airport…: ['FAKE']\n", + "Paul Manafort resigns from Trump campaign: ['FAKE']\n", + "Vote fraud expert Bev Harris exposes electronic voting machines [Video]: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Democrats need to learn to defend Obama's record on foreign policy: ['FAKE']\n", + "iPhone Tricks – 15 Secret iPhone Codes: ['REAL']\n", + "In the battle against 'sleazy' media, why Trump keeps lapping Hillary: ['FAKE']\n", + "Clinton’s 2016 makeover the latest in long line of resets: ['FAKE']\n", + "Ted Cruz: Democratic Party home to 'liberal fascism' against Christians: ['REAL']\n", + "Trump's unreal foreign policy: Our view: ['REAL']\n", + "A Greek Donbass? Cyprus between Russia and NATO: ['REAL']\n", + "Paul Ryan: Clinton should not continue to receive classified briefings during FBI investigation: ['FAKE']\n", + "Lady Gaga Protests Donald Trump Outside of Trump Tower: ['FAKE']\n", + "It's time for Republican Party leaders to embrace marriage equality: ['REAL']\n", + "What we've forgotten about childhood disease risks: ['REAL']\n", + "Libertarian ticket eyes post-convention opening – and debate stage: ['REAL']\n", + "Democrats propose Internet voting in 2016, making Republicans also consider the idea: ['FAKE']\n", + "CodeSOD: Dollar Dollar Dollar Dollar Underscore: ['REAL']\n", + "Does Trump Have a Fighting Chance Against the Establishment | New Eastern Outlook: ['REAL']\n", + "Charleston Mourns The Dead At Emanuel AME: 'I Knew Every Single One Of Them': ['FAKE']\n", + "'There are many instances’ of voter fraud: GOP VP candidate Pence: ['REAL']\n", + "Will Trump Be Different than Hillary Or Obama? SoT #125: ['REAL']\n", + "The delay over Loretta Lynch’s confirmation isn’t about bias: ['FAKE']\n", + "U.S. and Cuba find ‘profound differences’ in first round of talks: ['FAKE']\n", + "New York prison break: DNA found in cabin: ['FAKE']\n", + "Crooked Hillary Risks Having ‘Blue Dress Moment’ By Aggressively Attacking FBI And James Comey: ['REAL']\n", + "McCarthy Bombshell Leaves House GOP in Chaos: ['FAKE']\n", + "5 Things Teachers Are Doing During Midterm That Isn’t A Massive Session: ['REAL']\n", + "Hillary Clinton’s absurd Bernie smear: Why attacking him from the right on healthcare makes literally no sense at all: ['REAL']\n", + "This video of a woman stuck in a freezer raises more questions than it answers: ['REAL']\n", + "House Dems ‘shame’ opponents of defeated LGBT rights bill: ['FAKE']\n", + "Here's How Inflation Has Eroded American Workers' Overtime Eligibility: ['FAKE']\n", + "What I Learned Watching 15 Hours of Cruz Family Videos: ['REAL']\n", + "Set Staff Horrified At What Hillary Is Caught Doing After Brutal Interview: ['REAL']\n", + "Hillary Collapses On Her Way To The Stage, Sellout Bruce Springsteen Covers For Her – The Resistance: The Last Line of Defense: ['REAL']\n", + "Freeing Yourself From Overwhelm: ['REAL']\n", + "Global warming sparks partisan firestorm on once-sleepy House committee: ['REAL']\n", + "BLM To Lease Ohio’s Only National Forest To Fracking Interests: ['FAKE']\n", + "World War 3?: ['FAKE']\n", + "Hillary Clinton accepts nomination with 'boundless confidence in America's promise': ['REAL']\n", + "Homeland Security Chief Says 30,000 Will Be Furloughed If Department Shuts Down: ['REAL']\n", + "The Presidential Bid Of Ted Cruz, The Reddest Meat Of The Right: ['FAKE']\n", + "Forget the FBI Cache; The Podesta Emails Show How America is Run : Information Clearing House - ICH: ['REAL']\n", + "Cuba releases all 53 political prisoners to complete deal, U.S. official says: ['REAL']\n", + "Melting Glaciers In Bolivian Andes Leave Communities At Risk: ['REAL']\n", + "What Pentagon would gain from Bowe Bergdahl desertion charge (+video): ['FAKE']\n", + "Julian Assange to Speak Prerecorded RT Interview (11/5/16): ['FAKE']\n", + "Podesta Brothers Kidnapped a 3yo British Girl in Portugal - Wikileaks: ['REAL']\n", + "Compromises being reached in Iran talks: ['FAKE']\n", + "House Votes To Repeal Affordable Care Act: ['REAL']\n", + "Trump won because Democratic Party failed working people, says Sanders: ['REAL']\n", + "Trove of Bin Laden documents released: ['REAL']\n", + "Will Islamic State attacks bolster prospects for political solution in Syria? (+video): ['FAKE']\n", + "The Old Democrat Wall Street Plus Identity Politics Playbook is Dead: ['REAL']\n", + "New Hampshire primary results: Sanders, Trump stun U.S.: ['FAKE']\n", + "Skype sex scam – a fortune built on shame: ['REAL']\n", + "Finland Will Become the First Country in the World to Get Rid of All School Subjects: ['REAL']\n", + "What to watch in Saturday's Democratic contests: ['REAL']\n", + "Re: Why Are So Many People Choosing To Leave The United States Permanently?: ['REAL']\n", + "Comey Bias Exposed As FBI Boss Refused To Call Out Russians For Hacking Before Election: ['FAKE']\n", + "Hillary Turns Her Back on Standing Rock Sioux: ‘Path Forward Must Serve Broadest Public Interest’: ['REAL']\n", + "Fundamentals Will Take Gold & Silver Higher Now: ['REAL']\n", + "Christ and the Sufi : A Parable of Perfection: ['REAL']\n", + "WCD Ministry to reward married men who select “What is your anniversary date?” as security question: ['REAL']\n", + "GOP seeking Plan B on immigration: ['FAKE']\n", + "Candidate: ['REAL']\n", + "Obama addresses human rights, ethnic divisions on final day of Kenya visit: ['REAL']\n", + "Candidates struggle with Iraq political quagmire: ['REAL']\n", + "GOP’s Supreme Court blowback: The Republicans’ case for obstruction is bad and getting worse: ['FAKE']\n", + "A Mormon Reader Says Most Mormons Will Still Back Trump: ['FAKE']\n", + "Weed legalised in America because they f**king need it: ['REAL']\n", + "Looking for clues to Supreme Court’s final rulings in Ginsburg’s good mood: ['REAL']\n", + "Too Soon? Media Declares Clinton the Presumptive Nominee: ['FAKE']\n", + "Our new country: Women and minorities hit hardest: ['REAL']\n", + "It’s Cruz, not Trump, who looks more like favorite to win GOP nomination: ['REAL']\n", + "Tim Kaine defends Clinton and says she's learned from email 'mistake': ['REAL']\n", + "Homeless Trump Supporter guards Trump’s star on Hollywood Blvd… “20 million illegals and Americans sleep on streets”: ['FAKE']\n", + "Arizona first in nation to require patients be informed of abortion-reversal option: ['REAL']\n", + "Clinton clinches Democratic nomination – Sanders vows to fight on: ['REAL']\n", + "Iraq bans alcohol: ['REAL']\n", + "The 10 most bald-faced lies from the final Republican debate of 2015: ['REAL']\n", + "Hillary Will Go To Prison, Not The Oval Office [Video]: ['REAL']\n", + "28 Alternative Uses for Life Saving Mylar Emergency Blankets: ['REAL']\n", + "Fear is making the GOP’s job easier: ['FAKE']\n", + "Ted Cruz doesn't talk about the government shutdown: ['FAKE']\n", + "Standoff between Obama, Netanyahu deepens despite Palestinian state clarification: ['FAKE']\n", + "Lindsey Graham presidential bid bets on foreign policy: ['REAL']\n", + "Clinton broadens campaign effort to target wary Republicans: ['FAKE']\n", + "5 Questions That Now Loom Over Tonight's Debate: ['REAL']\n", + "Gunman storms Tunisia resort in deadly attack aimed at foreigners: ['FAKE']\n", + "Time for GOP panic? Establishment worried Carson or Trump might win.: ['FAKE']\n", + "Clinton's 'deplorables' slip: 2012 campaign hints it's not a game-changer (+video): ['REAL']\n", + "CLINTON: I’D ADD MICHELLE OBAMA TO MY CABINET: ['REAL']\n", + "Walker forms political committee, says he's 'very interested' in 2016 bid: ['FAKE']\n", + "Comment on Colin Kaepernick Just Started a Black Panther-Inspired Youth Camp to Teach Kids to Fight Oppression by European≠Nationality/Ethnicity: ['FAKE']\n", + "The Masquerade Ball: Fall’s Ghosts and Our Election Farce: ['REAL']\n", + "Fewer immigrants are entering the U.S. illegally, and that’s changed the border security debate: ['REAL']\n", + "Trump says he’s willing to spend $1 billion on campaign: ['FAKE']\n", + "Kylie Jenner Sizzles In These Chip-Pan Accident Pictures: ['REAL']\n", + "WATCH: On The Missouri Campus, A Clash Of 2 First Amendment Protections: ['REAL']\n", + "Secrets of the US Election: Assange Talks to Pilger: ['FAKE']\n", + "Obama hits the road to push new programs, win support for his tax plan: ['FAKE']\n", + "Comment on What Does Success Mean To You? by 11 Things To Let Go Of Before The New Year: ['FAKE']\n", + "Louisiana’s Common Core Debacle: ['REAL']\n", + "New Solar Panels Pull Drinking Water From The Air Because Clean Water Is A Human Right: ['REAL']\n", + "U.S. economy adds 215,000 jobs in March, jobless rate ticks up to 5 percent: ['FAKE']\n", + "Lesser-Known Celebrity Contract Riders - The Onion - America's Finest News Source: ['REAL']\n", + "Baltimore calls in federal agents to help homicide cops deal with spike in violence: ['REAL']\n", + "Militarized Police Brutalize and Arrest Peaceful Protesters at Dakota Access Pipeline #NoDAPL: ['REAL']\n", + "John McCain Withdraws Support of Donald Trump: ['REAL']\n", + "Jeb Bush has 'grave doubts' about Donald Trump in WH: ['FAKE']\n", + "Hillary Literally Became the Definition of ‘Pathological Lying’ on Google Yesterday: ['REAL']\n", + "Clinton policy on Syria would lead to WW III: Trump: ['FAKE']\n", + "The Globalization Of Media: A Failing Strike Force: ['REAL']\n", + "Nuclear Reactor in Norway Leaks Radioactive Iodine: ['REAL']\n", + "This policing innovation helped fight crime. But it also led to more corruption.: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Post-ABC Tracking Poll: Trump 46, Clinton 45, as Democratic enthusiasm dips: ['FAKE']\n", + "Wasserman Schultz on Sanders' response to Nevada chaos: 'Anything but acceptable': ['REAL']\n", + "Reductress » ‘How Am I Supposed To Explain This To My Children?’ Asks Melania Trump: ['REAL']\n", + "Hillary Clinton Cancels Campaign Events Following Pneumonia Diagnosis: ['REAL']\n", + "Jon Stewart Finally Comments On Donald Trump’s Lewd Locker Room Talk: ['FAKE']\n", + "The US knows LGBTQ immigrants are often raped in detention. It puts them there anyway.: ['REAL']\n", + "The Boston Globe imagined how it would cover a President Donald Trump. It's horrifying.: ['REAL']\n", + "BREAKING – NYPD Knows The TRUTH About Hillary, Issues Urgent Alert to Voters | EndingFed News Network: ['FAKE']\n", + "Super Tuesday's over. Can Trump still be stopped? Yes. Here's how: ['FAKE']\n", + "TERROR THREAT WARNING MONDAY | RedFlag News: ['REAL']\n", + "PENNSYLVANIA GUN STORE tells customers “Muslims and Hillary supporters are not welcome”: ['REAL']\n", + "America will die old and broke: The systematic right-wing plot to ransack the middle-class nest egg: ['REAL']\n", + "Kasich tells Indiana voters to support him, despite pledge not to campaign: ['REAL']\n", + "5 Things To Know About Mike Pence Before Tuesday's Debate: ['REAL']\n", + "House Republicans seek ObamaCare repeal, more defense $$ in new budget plan: ['FAKE']\n", + "Trump Panics As 28% of Florida GOP Early Votes go to HILLARY (VIDEO): ['REAL']\n", + "Comment on Anonymous: World War 3 Is On The Horizon (In 2016) by World War 3 News 2016: Anonymous Declares WW3 'on the Horizon': ['FAKE']\n", + "Hillary Clinton broke the rules: Our view: ['REAL']\n", + "Trump surges in battleground, national polls: ['FAKE']\n", + "Ballot Access: Another Way Dems and the GOP Screw Third Parties: ['REAL']\n", + "US, Japan Push to Fortify Alliances Amid Threat Posed by North Korea: ['REAL']\n", + "The secret plot behind the creation of ISIS: ['REAL']\n", + "FANTASTIC! TRUMP'S 7 POINT PLAN To Reform Healthcare Begins With A Bombshell! » 100percentfedUp.com: ['REAL']\n", + "Emotional Attachment to Political Parties Seems to Make People More Knee-Jerk in Their Beliefs: ['FAKE']\n", + "Donald Trump’s despotic fantasies: Here’s what the world would look like if he were president: ['FAKE']\n", + "Globalist Plan for Human Control: ['FAKE']\n", + "In the United States, anxiety is up, but crime is down: ['REAL']\n", + "Trump Melts Down And Accuses The US Postal Service Of Stealing The Election For Clinton: ['FAKE']\n", + "Donald Trump, Hillary Clinton showcase clashing styles at times of crisis: ['FAKE']\n", + "Trump says building a U.S.-Mexico wall is ‘easy.’ But is it really?: ['REAL']\n", + "U.S.-backed Syrian rebels appeal for antiaircraft missiles: ['REAL']\n", + "Dogs hit escapees' scent at gas station near prison: ['FAKE']\n", + "Clinton fact-checked on 'truthful' claim in email scandal: ['FAKE']\n", + "Dem outcry on abortion measure they failed to notice threatens to stall anti-sex trafficking bill: ['REAL']\n", + "Podesta relative earned six-figure fees lobbying Clintons State Dept. during his tenure there: ['REAL']\n", + "Running on the Hillary Ticket? Then Let Me Ask…: ['REAL']\n", + "BREAKING: Trump VP Plane Slides Off Runway at LaGuardia Airport in NYC!: ['FAKE']\n", + "Let’s make the South stop lying: The right’s war on our history — and truth — must be defeated now: ['FAKE']\n", + "Bundy Brother Acquittal Trolled In The Most Hilarious Way On Craigslist: ['REAL']\n", + "October Shocker: FBI Has Explosive Information on Trump Conspiring With Putin: ['FAKE']\n", + "Bernie vs. Hillary: Who connects better with voters?: ['REAL']\n", + "Bernie Sanders' big day: ['REAL']\n", + "On Mass Media and its Perceived Prerogatives: ['REAL']\n", + "Donald Trump Likely to End Aid for Rebels Fighting Syrian Government : Information: ['FAKE']\n", + "Trump, Cruz keep on winning. Four reasons why 'Super Saturday' matters: ['FAKE']\n", + "How Trump Happened: ['FAKE']\n", + "Libertarian Gary Johnson Tries His Luck in Las Vegas: ['REAL']\n", + "6 Major Supreme Court Cases That Would Have Been Different Without Scalia: ['REAL']\n", + "Email Reveals What Progressive Think Tank Gained By Hosting Netanyahu: ['REAL']\n", + "iMAHDi – the arrivals 28 Why Satanism is Practiced by Our Leaders القادمون: ['REAL']\n", + "Clinton blasts Wall Street, but still draws millions in contributions: ['FAKE']\n", + "BLACK TRUMP SUPPORTERS call Hillary Clinton a “racist”: ['FAKE']\n", + "Watch: Praying Muslims sit on Jewish prayer shawls in airport shul – Jews are outraged: ['FAKE']\n", + "Donald Trump is destroying Jeb Bush: Why his 9/11 gambit could be the last straw: ['REAL']\n", + "Lights, Camera, Propaganda! Washington's Anti-Russia Campaign Invades Hollywood - Danielle Ryan: ['FAKE']\n", + "US Calls On Saudi Arabia To End Airstrikes Against Yemen: ['FAKE']\n", + "Trump’s Proposed Student Loan Program Makes Him Look More Liberal Than Obama; Republicans Fuming: ['FAKE']\n", + "Election Heats Up: Kerry Heads To The Poles…In ANTARCTICA WTF: ['REAL']\n", + "Nestle seeks more groundwater to expand Michigan plant: ['REAL']\n", + "States with the most people on food stamps: ['REAL']\n", + "Why Mitch McConnell bid to extend Patriot Act failed: ['FAKE']\n", + "POLL: Who will win Florida? - USAPoliticsNow: ['FAKE']\n", + "World wildlife ‘falls by 58% in 40 years’: ['REAL']\n", + "Administration officials defend Iran nuclear deal: ['REAL']\n", + "Assange: Clinton And ISIS Are Funded By Same People, “Trump Not Permitted To Win”: ['FAKE']\n", + "Couple Seeking House Willing To Do Webcam Show For Landlords: ['FAKE']\n", + "90 Percent of So-Called Clean Hydroelectric Projects Will Usher In A New Wave of Mercury Contamination: ['REAL']\n", + "Mitt Romney Was Right: To win in 2016, here's what Republicans must do now: ['FAKE']\n", + "In wake of Paris shooting, Spain worries about terror attacks on its home soil: ['FAKE']\n", + "Carly’s momentum keeps growing: ['REAL']\n", + "Why mass shootings don't convince gun owners to support gun control: ['REAL']\n", + "Division and tension at the DNC: The Democrats’ night of unity is marred by dissent: ['REAL']\n", + "Man with unfashionable front door feared by neighbours: ['REAL']\n", + "Why Was this Natural Medicinal Substance Just Banned by the DEA?: ['FAKE']\n", + "Terrorists attack police training college in Pakistan: 60 cadets killed and 120 injured: ['REAL']\n", + "6 Takeaways: Democrats tangle at debate in New York: ['REAL']\n", + "Freedom Rider: Russophobia: War Party Propaganda: ['REAL']\n", + "Bombs Ready: The American Blob Is Already Oozing Into Syria - Ryan Cooper: ['FAKE']\n", + "Republicans push for a permanent aristocracy: ['FAKE']\n", + "Classified emails from Clinton aides kick-started FBI probe, candidate downplays controversy: ['REAL']\n", + "Cruz likely to block Trump on a second ballot at the GOP convention: ['REAL']\n", + "Comment on BREAKING: Supreme Court Rules Cops Can Break the Law to Enforce the Law by Joseph Edward Bodden: ['FAKE']\n", + "The Failure of US Democracy: ['REAL']\n", + "Trump or Clinton?: ['FAKE']\n", + "5 takeaways from the debate that didn’t matter: ['REAL']\n", + "Pleading for Paul Ryan: ['FAKE']\n", + "Long Odds Ahead for Obama on His Troubled Trade Agenda: ['REAL']\n", + "Here Is Why the Trump Administration Will Be a Force for Peace - James P. Pinkerton: ['FAKE']\n", + "Plouffe to Clinton: Stop micromanaging: ['FAKE']\n", + "Obama's leadership tank is out of gas: President shrinks as our challenges grow: ['REAL']\n", + "Sex and the Presidential City: ['REAL']\n", + "Marco Rubio is running scared: ['FAKE']\n", + "Women In Iceland Leave Work 14% Early To Protest The Country’s 14% Wage Gap: ['REAL']\n", + "Urban Population Booms Will Make Climate Change Worse: ['REAL']\n", + "An Open Letter to Black South African Police Officers: ['FAKE']\n", + "Nanny In Jail After Force Feeding Baby To Death: ['REAL']\n", + "Meet the Trump Truthers: Media figures insist bigoted Trump questioner was just a liberal plant: ['FAKE']\n", + "Why is #SpiritCooking Trending on Twitter?: ['REAL']\n", + "CETA Is Step towards a Corporate Land Called Euramerica: ['FAKE']\n", + "Media Roll Out Welcome Mat for ‘Humanitarian’ War in Syria: ['FAKE']\n", + "Shouts of ‘Not my president!’ in California, following Trump victory: ['REAL']\n", + "Trump’s a walking time bomb: Don’t be fooled by his “victory,” he can implode his own campaign at any moment: ['REAL']\n", + "‘Chairman Cash’ – John Podesta is Paid $7,000 a Month by Foundation Run by Banker With Ties to Financial Crisis: ['REAL']\n", + "Israeli Minister sparks Scandal after showing Satisfaction at Italy's Earthquakes: ['REAL']\n", + "Trump’s campaign for celebrity: ['FAKE']\n", + "Eric Trump: Dad's Campaign To Focus On, Fix Inner-City Education: ['FAKE']\n", + "Brexit Lost: Scuppered By May and High Court: ['REAL']\n", + "Trump spurs some conservative leaders to step back from the GOP: ['FAKE']\n", + "Obama's DOJ Issued \"Stand Down\" Order on Clinton Foundation Investigation: ['FAKE']\n", + "Breaking/Exclusive: Comey Lied: FBI “Synced” Weiner Laptop Under Misused Terror Warrant – Updated: ['FAKE']\n", + "Michael Moore Visits WikiLeaks’ Julian Assange [Video]: ['REAL']\n", + "Election Night Drama: Hillary overheard giving spouse a tongue lashing!: ['REAL']\n", + "Israeli Deputy Minister: Italy Quakes Retribution For Anti Jewish Vote: ['FAKE']\n", + "Is it 2016 already?: ['FAKE']\n", + "It’s On: Between Duterte and America: ['REAL']\n", + "Boehner: Israel trip planned before Netanyahu-Obama rift: ['REAL']\n", + "The US May Soon Face an Apocalyptic Seismic Event: ['REAL']\n", + "Anti-Trump Protester Holds Reprehensible Sign about Melania – TruthFeed: ['REAL']\n", + "Why These Democrats Flipped To Defeat Wall Street Deregulation: ['REAL']\n", + "New Leaked Clinton Emails Came from the Devices of Anthony Weiner: ['FAKE']\n", + "Federal Election Commission (“FEC”) Is Another Example of a Lazy Corrupt Agency: ['REAL']\n", + "California Airport Security Tightened Amid ISIS Fears: ['REAL']\n", + "Exclusive: New Jeb Bush Super PAC ad uses Paris, San Bernardino images: ['REAL']\n", + "Megyn [sic] Kelly: Gowdy Triumphantly Comments on the Hillary Case Reopening: ['REAL']\n", + "Can Hillary flip the script in Oregon and Kentucky?: ['REAL']\n", + "Rise of Mandatory Vaccinations Means the End of Medical Freedom: ['REAL']\n", + "Bank of Canada Commentary Whipsaws Loonie: ['FAKE']\n", + "Cruz and Kasich form an alliance: Is that fair? (+video): ['REAL']\n", + "Glenn Reynolds: Don't be a sucker for socialism: ['REAL']\n", + "Why the death of GOP 'loyalty pledge' matters: ['REAL']\n", + "How Cruz rescued Carson: ['REAL']\n", + "Would A Trump Presidency Make SJWs EVEN MORE Aggressive–And Is Secession The Answer?: ['REAL']\n", + "FRENCH COLLEGE STUDENT came to America with her family nine years ago because Europe had become too dangerous to live in because of mass Muslim migration: ['FAKE']\n", + "Police Arrest 12 Suspected Of Helping Paris Gunmen: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Combat Obesity with a Balance of Omega-3 and Omega-6: ['REAL']\n", + "What is the goal of the Progressive Movement: to gain power or to give it away?: ['REAL']\n", + "US election 2016: Bernie Sanders' and Hillary Clinton's policies compared: ['REAL']\n", + "Trump, Clinton trade blows on terror and guns in wake of Orlando attack: ['FAKE']\n", + "What's wrong with the planet? Saudi Arabia to be reelected to UN Human Rights Council: ['FAKE']\n", + "Clinton defends role over Benghazi in heated Hill hearing: ['FAKE']\n", + "Many Clinton charity donors also got State Department awards under Hillary: ['REAL']\n", + "Hillary Clinton and Bernie Sanders = lecture vs. rock concert: ['REAL']\n", + "Even Gawker haters should fear the strategy Peter Thiel is using to destroy Gawker: ['FAKE']\n", + "Gun control becomes a litmus test in Democratic primaries: ['REAL']\n", + "ATF misfire? Guide indicates bullets at center of firestorm already banned; agency blames 'error': ['FAKE']\n", + "America’s Most Popular ‘Legal’ Drug is Responsible for 25% of ALL Cancer: ['REAL']\n", + "Stationing American troops in Japan will lead to bloody tragedy – ex-PM of Japan: ['REAL']\n", + "Deterioration of Interracial Relations During Barack Obama’s Presidency: ['REAL']\n", + "VFW fires back at Obama: Politics not 'confused': ['REAL']\n", + "GOP reaches ‘new level of panic’ over Trump’s candidacy: ['FAKE']\n", + "Clinton regrets 1996 remark on ‘super-predators’ after encounter with activist: ['REAL']\n", + "Washington Post Anti-Trump Scare Tactics: ['REAL']\n", + "Critics to the White House: Call Orlando What it Is: ['FAKE']\n", + "‘On Contact’: Chris Hedges and Medea Benjamin on the U.S.-Saudi Alliance: ['REAL']\n", + "Defying Republican orthodoxy, Trump trashes trade deals and advocates tariffs: ['REAL']\n", + "Former Egyptian president Morsi sentenced to death: ['REAL']\n", + "Re: Jedi mind trick? Mark Hamill to Democrats: ‘Don’t panic- VOTE!’: ['REAL']\n", + "Copenhagen police shoot, kill man near train station: ['FAKE']\n", + "Hoax Tweet leads to street riots: ['FAKE']\n", + "Let’s dispel with this notion that Donald Trump knows what he’s doing: ['FAKE']\n", + "Republican convention’s ‘non-conventional’ list: Model, astronaut and Trump clan: ['REAL']\n", + "Curfew begins in riot-torn Baltimore: ['REAL']\n", + "Battle For Mosul Not What It Seems: ['FAKE']\n", + "How right was Romney?: ['REAL']\n", + "Marco Rubio: Donald Trump's plan 'borders on the absurd': ['FAKE']\n", + "Steven Seagal receives Russian citizenship on Putin’s personal decision: ['REAL']\n", + "Man searching for unbiased review of ADHM and Shivaay on internet ends up exhausting data pack: ['FAKE']\n", + "The state Duma has postponed the adoption of the bill on “winter tires” | The Newspapers: ['REAL']\n", + "Not all the recent fires at black churches were arson. Here's what we know.: ['FAKE']\n", + "21 Things We’ve Learned About Hillary Clinton from Wikileaks That the MSM Won’t Share…But YOU Can!: ['REAL']\n", + "UDAN effect: Bengaluru techies demand air taxi services to cross Silk Board: ['REAL']\n", + "Obama Will Address Hillary’s Email Scandal on First Ever ‘Fox News Sunday’: ['REAL']\n", + "Russia reveals chilling first images of super-nuke ‘Satan 2’ which has ‘power to devastate area size of Texas’: ['FAKE']\n", + "Obamacare on the line at SCOTUS: ['FAKE']\n", + "Asda shoppers ‘just generally angry’: ['REAL']\n", + "Obama to propose ending sequester: ['REAL']\n", + "More Bang for the Buck | New Eastern Outlook: ['REAL']\n", + "Ben Shapiro Destroys John Oliver On Abortion And Trump | Daily Wire: ['REAL']\n", + "Sanders says he's backing DNC chair's primary opponent: ['REAL']\n", + "Trump doubles down in naming a combative true believer as campaign chief: ['FAKE']\n", + "US faces calls to ‘walk away’ from Iran talks: ['FAKE']\n", + "A monumental test for Boehner: ['REAL']\n", + "Comment on Why We’re All Deficient In Magnesium, The Many Signs & What To Do by Ain’t No Sunshine: Seasonal SADness and Magnesium | Activation Health: ['REAL']\n", + "CNBC: TRUMP WILL WIN THE ELECTION AND IS MORE POPULAR THAN OBAMA IN 2008, AI SYSTEM FINDS: ['REAL']\n", + "BECK: COMEY LETTER ‘ONE OF THE MOST IRRESPONSIBLE THINGS TO EVER HAPPEN’: ['REAL']\n", + "Sanders campaign sues DNC after database breach: ['REAL']\n", + "Russian warships ready to strike terrorists near Aleppo: ['FAKE']\n", + "Time does nothing: ['REAL']\n", + "Podesta Goes Crazy Live On CNN Over New FBI Hillary Investigation: ['FAKE']\n", + "Kim Davis Could Pay As Much As $225,000 In Legal Costs For Her Publicity Stunt: ['FAKE']\n", + "Rapper invited to meet with Obama on youth initiative has ankle monitor go off during meeting: ['REAL']\n", + "German Panzers to Rumble Once More Along Russian Borders: ['FAKE']\n", + "Black Female Attorney Demolishes anti-Trump White TV Anchors: ['REAL']\n", + "Scientists believe they have found ET: ['REAL']\n", + "Pundits and presidents complain about polarization. But it may be the sign of a healthy democracy.: ['REAL']\n", + "Obama again delays Afghanistan troop drawdown: ['REAL']\n", + "US Government and the Clinton female: Come to the Psychiatrist's Couch: ['FAKE']\n", + "Hacker Guccifer 2.0 Issues Dire Warning to Americans : Democrats May Try and HACK the Election – TruthFeed: ['FAKE']\n", + "Boulder bash: Trump may rip Carson, but the pressure is on Jeb: ['FAKE']\n", + "Echoes of Charlie Hebdo in attack on Texas Muhammad cartoon event (+video): ['FAKE']\n", + "One of this election's bright spots: early voting: ['REAL']\n", + "Battle over Obama immigration actions lands before Supreme Court: ['FAKE']\n", + "10 Ways Russia is Preparing For World War 3: ['FAKE']\n", + "Race to replace Boehner expected to be another leadership vs. conservative caucus showdown: ['REAL']\n", + "Takeaways from the GOP town hall: ['REAL']\n", + "Brother of Clinton’s Campaign Chair is an Active Foreign Agent on the Saudi Arabian Payroll: ['REAL']\n", + "Hillary Spent $25 Million from Clinton Foundation on Private Jets: ['REAL']\n", + "From Pauper to A-List Princess, Anna Kendrick Reveals She Was Once 'Too Poor' To Buy Shoes for Oscars: ['REAL']\n", + "Trump’s sweep is another humiliating defeat for media and political elites: ['FAKE']\n", + "Levers of Power: Flushing the Vote Down the Memory Hole: ['FAKE']\n", + "2016ers hail release of U.S. prisoners held by Iran as Republicans slam Obama policy: ['REAL']\n", + "Is Sanders 2016 Becoming Nader 2000?: ['FAKE']\n", + "The Perfect State Index: If Iowa, N.H. Are Too White To Go First, Then Who?: ['REAL']\n", + "Poll Finds Americans' Support For Police Highest In Nearly 50 Years: ['FAKE']\n", + "FBI Director Comey Sent Letter To Staff All But Admitting He Botched The Email Announcement: ['REAL']\n", + "Super PACs Escalate Air War Ahead of Iowa Caucuses: ['REAL']\n", + "Self-proclaimed “genius” reaches new highs in stupidity: Trump puts his incompetence on full display: ['FAKE']\n", + "Journalist facing 45 years in jail for filming the tar sands pipeline protest in North Dakota: ['FAKE']\n", + "Trump’s Campaign Is Damaging His Brand: ['FAKE']\n", + "ISIS Extremist Who Beheaded Prisoners Is Identified As Man From London: ['REAL']\n", + "Millennials ‘Search for Truth’ on Election but Distrust Media, Intelligence Firm Reports: ['REAL']\n", + "Assassination attempt at Reno Trump rally?: ['REAL']\n", + "Iran's Supreme Leader Slams Republican Letter On Nuke Deal: ['REAL']\n", + "Pence, after Trump, denounces Clinton calling supporters ‘deplorables,’ says disrespectful: ['FAKE']\n", + "Clinton, back in the Benghazi hot seat, withstands Republicans’ grilling: ['FAKE']\n", + "What's Marco Rubio's strategy against Donald Trump?: ['REAL']\n", + "Paris: Riot Police Flatten Invader Camp: ['REAL']\n", + "Connect Series Webinar Oct 2016 | Financial Markets: ['REAL']\n", + "What Keeps the F-35 Alive: ['REAL']\n", + "AMERICAN EVIL: ['FAKE']\n", + "Fiorina: Breakout debate performance has sparked 'uptick' in financial support: ['REAL']\n", + "Waco biker gang shootout kills 9 outside Twin Peaks: ['REAL']\n", + "AT&T Buying Time Warner: If Approved, Assures Greater Scoundrel Media Consolidation Than Already: ['REAL']\n", + "Turnout is name of the game in Iowa caucuses: ['REAL']\n", + "BREAKING: Trump Voters in Critical Swing State FURIOUS as Machines SWITCH Votes to HILLARY | Top Right News: ['FAKE']\n", + "CPAC Conservatives Skeptical Of Another Bush: ['REAL']\n", + "One Veteran’s War on Islamophobia: ['FAKE']\n", + "Israeli Minister sparks Scandal after showing Satisfaction for Italy's Earthquakes: ['REAL']\n", + "Sanders signals the end is near: ['REAL']\n", + "Donald Trump could 'shoot somebody and not lose voters': ['REAL']\n", + "Democratic primaries: Clinton claims nomination victory: ['REAL']\n", + "First take: A great jobs report for investors: ['FAKE']\n", + "Donald Trump's Super Pac backers worry candidate's errors are piling up: ['FAKE']\n", + "Did you know that cinnamon can boost intelligence?: ['REAL']\n", + "Assange Points Out Hillary’s Emails Confirm Oligarchic Control: ['REAL']\n", + "Trump’s tragic victory lap: ['FAKE']\n", + "Astronomers Think They Have Just Discovered Messages Sent From Aliens: ['FAKE']\n", + "When Dad’s Kind Birthday Gift For Ex-Wife Has His Friends Puzzled, He Explains Who It’s Really For: ['REAL']\n", + "Trump protests intensify, as doubts swirl about spontaneity: ['REAL']\n", + "The big problem Obama's free community college plan ignores: ['REAL']\n", + "Millennials and Gen X worried retirement years won't be so golden: ['REAL']\n", + "UK Prepares For War, Sends Tanks & Soldiers To Russia’s Border: ['FAKE']\n", + "Initial prognosis poor for Obama’s immigration program at Supreme Court: ['REAL']\n", + "AG Lynch Told Comey: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "VIDEO : Epic Loser Weiner Says He Downloaded ALL OF HUMA’S EMAILS By “ACCIDENT” – TruthFeed: ['REAL']\n", + "Rick Rule: Broadcast Interview – Available Now: ['REAL']\n", + "Hillary is So Unpopular, She Has to Pay Off Youth Voters and Fabricate Her Rallies: ['REAL']\n", + "Bankrupt Hanjin breaks stalemate, vessels begin cargo unload: ['REAL']\n", + "Gold prices grow by $60 as Trump wins, US dollar trashed: ['FAKE']\n", + "California National Guard Members won’t have to Pay Back Bonuses: ['FAKE']\n", + "Nation Elects First Black-Hearted President - The Onion - America's Finest News Source: ['REAL']\n", + "Here’s PROOF The Gold Price is Based On Cost, Not Supply and Demand: ['REAL']\n", + "Why I’m Suing Vanderbilt University: ['FAKE']\n", + "Obama, muted on human rights, lifts arms embargo on Vietnam: ['FAKE']\n", + "Trump supporters a ‘basket of deplorables.' Is this Clinton's '47 percent' moment? (+video): ['FAKE']\n", + "Democratic decay: ['REAL']\n", + "Comment on Election 2016: Playing a Game of Chicken With Nuclear Strategy by pretzelattack: ['REAL']\n", + "Snowden’s former employer hires ex-FBI director to review security after 2nd data breach: ['REAL']\n", + "Report on hiring, quits brightens labor market picture: ['FAKE']\n", + "Reuters-Ipsos Poll: Trump, Bush in Virtual Dead Heat: ['FAKE']\n", + "House Negotiators Nearing Deal to Curb NSA Data Collection Powers: ['REAL']\n", + "Huma may have violated ‘legal obligation’ regarding classified info, FOIA request shows: ['REAL']\n", + "Someone Just Donated $2.5 Million to Bail Out Everyone Arrested at Standing Rock: ['REAL']\n", + "What Does Washington ‘Plan B’ in Syria Really Mean? | The Vineyard of the Saker: ['FAKE']\n", + "McConnell, after his no-shutdowns pledge, quickly finds himself boxed in: ['REAL']\n", + "Russell Brand’s Back on ‘The Trews’ and He’s Got Quite a Bit to Say About the U.S. Elections (Video): ['REAL']\n", + "UFO over the East Valley here in AZ last night.: ['REAL']\n", + "Putin: Russia Is Not Going To Attack Anyone: ['FAKE']\n", + "How to Tell Debt Facts From Political Hype: ['REAL']\n", + "Trump on Twitter: Hillary is 'Brainwashed': ['FAKE']\n", + "Poll: Most disapprove of Obama handling of ISIS: ['FAKE']\n", + "The Trump – Epstein Rape Lawsuit: ['FAKE']\n", + "White House hits 'AWOL' Congress for shirking AUMF: ['REAL']\n", + "Hillary Clinton To Announce Presidential Bid On Sunday: ['REAL']\n", + "Social Justice Warriors Vow to Call the Police on People Wearing “Offensive” Halloween Costumes: ['REAL']\n", + "The Only Way to Save the World is to Save Yourself: ['FAKE']\n", + "Senate passes NCLB replacement: Will shift to states help or hurt students? (+video): ['FAKE']\n", + "Senate panel votes Tuesday on Iran bill that gives Congress say on nuclear deal: ['REAL']\n", + "Dems Try to Slander Comey After He Re-Opens Hillary Investigation, Then THIS VIDEO Surfaces: ['REAL']\n", + "Black Turnout Soft in Early Voting, Boding Ill for Hillary Clinton: ['REAL']\n", + "Top Black Lives Matter Activist: ‘We Will Incite Riots Everywhere if Trump Wins’: ['REAL']\n", + "Taliban claims responsibility for fatal attack on Americans in Kabul: ['FAKE']\n", + "Fighting Ghost Fascists While Aiding Real Ones: ['FAKE']\n", + "Bomb maker linked to Paris attack died in Brussels airport bombing, sources tell: ['REAL']\n", + "Republicans discussed possibility of brokered convention: ['REAL']\n", + "DC Leaks Exposes Soros Plan to ‘Counter Russian Foreign Policy and Subvert Traditional Russian Values’: ['REAL']\n", + "Saudi ambassador to the UAE: Any contact with Iran, Iraq, Syria, and Lebanon should be checked: ['REAL']\n", + "Huma Abedin’s Muslim Dad: ['FAKE']\n", + "John Pilger: Inside The Invisible Government: War, Propaganda, Clinton And Trump: ['FAKE']\n", + "New emails under review in Clinton case emerged from Weiner probe: ['REAL']\n", + "Modi effect: Facebook to abolish fake troll accounts, users can transfer content till 31st Dec: ['REAL']\n", + "As Iran talks intensify, Boehner and Netanyahu warn against deal: ['FAKE']\n", + "Joel Skousen on Scenario World War 3 NWO 2016 Is Coming: ['FAKE']\n", + "Hillary Won More Votes, Lost The Election: ['REAL']\n", + "Feds: 275,000 born to illegals in 1 year: ['FAKE']\n", + "Iran nuclear agreement: Is a 'better deal' possible – and at what cost? (+video): ['REAL']\n", + "Income Inequality Is a Problem—When Caused by Government Meddling: ['REAL']\n", + "Sen. Rand Paul Announces 2016 Presidential Run: ['REAL']\n", + "ObamaCare 2015: Harvard faculty outraged over health care hikes: ['REAL']\n", + "When the River Ran Red: ['REAL']\n", + "'Selma' sets off new fight over Martin Luther King's contested legacy: ['REAL']\n", + "In Kenyan town where students were massacred, 'it's not safe': ['REAL']\n", + "“He’s filling the government with Muslims”: Hanging out with Ted Cruz, Mike Huckabee and Rand Paul inside New Hampshire’s wacky GOP 2016 cattle call: ['FAKE']\n", + "Lucifer's Banker: Bradley Birkenfeld on Corporate Crime in America: ['REAL']\n", + "Clinton clinches Democratic nomination – Sanders vows to fight on: ['REAL']\n", + "The U.S. government’s predatory-lending program: ['REAL']\n", + "Trump Reaches Out to Blacks; Blacks Riot in Philadelphia: ['FAKE']\n", + "There is no nationwide crime wave (and police killings are not up): ['REAL']\n", + "Can’t quit Mitt: Friends say Romney feels nudge to consider a 2016 presidential run: ['FAKE']\n", + "Trump sees Biden the same as Hillary: ['REAL']\n", + "Now what? Where the Democratic candidates go from here.: ['REAL']\n", + "What If Consciousness Is a State of Matter, Just Like a Solid, a Liquid or a Gas?: ['FAKE']\n", + "While You Were Watching the World Series Some Very, Very Big News Broke: ['REAL']\n", + "Jonah Goldberg: Hillary's Iowa 'win' is a big loss for Democrats: ['FAKE']\n", + "House passes alternate abortion measure: ['REAL']\n", + "TOO MANY MILLENNIALS ARE COOL WITH COMMUNISM: ['REAL']\n", + "Trump Won’t Mention That Bush & Cheney Deleted 22 Million Emails: ['REAL']\n", + "Poll: Hillary Clinton ahead in 5 potential match-ups - Politics.com: ['REAL']\n", + "Just In Case: Preparing for the Evening and Day After Election 2016: ['FAKE']\n", + "The David Duke Show: The State of the Campaign, the Synagogue of Satan: ['REAL']\n", + "Iraqis think the U.S. is in cahoots with the Islamic State, and it is hurting the war: ['FAKE']\n", + "The Working Class Won The Election — Paul Craig Roberts: ['FAKE']\n", + "What Does It Take to Survive Where You Live?: ['REAL']\n", + "Homeschool Families Targeted In District’s ‘Operation Round Up’: ['FAKE']\n", + "New Report Finds Voters Have No Idea How Outraged They Supposed To Be About Anything Anymore - The Onion - America's Finest News Source: ['REAL']\n", + "Republican National Convention: Speakers, including wife Melania, testify to Donald Trump’s readiness to be president; others savage Clinton: ['REAL']\n", + "OnPolitics | 's politics blog: ['FAKE']\n", + "Romney exit widens establishment lane for Bush: ['REAL']\n", + "Panicky Hillary starts shouting: ['REAL']\n", + "Lara Trump Implies FBI Letter Politically Motivated – ‘My Father-In-Law Forced Their Hand’ (AUDIO): ['FAKE']\n", + "The Collectivist Election: ['REAL']\n", + "Ben Carson slams reporters over questions about his past: ['REAL']\n", + "Martha MacCallum: It's Donald Trump's moment. And this is how we got here, America: ['REAL']\n", + "The Biggest Secret: How Reptilian-Human Hybrids Run Our World: ['REAL']\n", + "If You Live HERE, Forget Christmas Lights – They’ve Been BANNED to Avoid “Offending Refugees”: ['FAKE']\n", + "Fact Check: Did Hillary Clinton Introduce A New Approach To Early Education?: ['REAL']\n", + "Mark Ruffalo Reportedly Placed on U.S. Terrorist Watch List: ['REAL']\n", + "Australian Site Could Rival Stonehenge As World’s Oldest Observatory: ['REAL']\n", + "American democracy is doomed: ['REAL']\n", + "Comey’s Blindside: You’re Just a Cop: ['FAKE']\n", + "False Flag Attack Coming in Syria as Americans Sleepwalk Into World War III - Isaac Davis: ['FAKE']\n", + "Obama Hosts ‘Dreamers,’ Vows to Block Any Rollback of Immigration Actions: ['REAL']\n", + "Did Bernie Sanders seal deal for Clinton?: ['REAL']\n", + "This is only the beginning: Nate Silver explains how Donald Trump has “hacked the system” and created a roadmap for future political con men: ['FAKE']\n", + "Kenyan marathon runner Rita Jeptoo banned 2 more years for doping: ['REAL']\n", + "DISGUSTING Evolution Of Political Correctness From 200 To 2016: ['REAL']\n", + "Are you taking your iodine?: ['REAL']\n", + "Mexico’s top diplomat calls Trump’s policies ‘ignorant and racist’: ['FAKE']\n", + "Iran Nuclear Talks Go To The Wire With 50-50 Chance of Success: ['REAL']\n", + "Eric Trump ‘Charity’ Spent $880K at Family-Owned Golf Resorts: ['REAL']\n", + "Overdue change in overtime pay: Our view: ['REAL']\n", + "This Man Is the Most Dangerous Political Operative in America: ['FAKE']\n", + "PressTV-Russia cancels request to fuel ships in Spain: ['REAL']\n", + "EXCLUSIVE: Kentucky Clerk: 'This is a fight worth fighting': ['FAKE']\n", + "Donnie’s little lies are yuuuge: Trump has redefined what it means to be deceitful on the campaign trail: ['REAL']\n", + "Day after debate, Clinton gloats and Trump fumes: ['FAKE']\n", + "CAN IT GET MORE CORRUPT? Bill That Bans Naming Officers Involved in Shootings Goes to Pennsylvania Governor: ['FAKE']\n", + "Breaking: We Have Proof That Hillary Clinton Rigged Half the Voting Machines In America!: ['FAKE']\n", + "Cruz Touts Himself as Only Viable Conservative in Race | RealClearPolitics: ['REAL']\n", + "What if the minimum wage increase is a fraud?: ['REAL']\n", + "Mike Pence enabled Donald Trump. Stop saying he’d make a good president.: ['REAL']\n", + "Russia’s patrol ship Yaroslav Mudry arrives in Cuba on visit: ['FAKE']\n", + "Bernie's California endgame: ['REAL']\n", + "Rwanda & The Philippines rate better than UK for gender equality, study shows: ['REAL']\n", + "'Charlie' draws historic crowd, world leaders to Paris: ['FAKE']\n", + "Ted Cruz Drops Out Of The 2016 Presidential Race: ['FAKE']\n", + "Planned Parenthood gets over $500 million annually in public funds. Here's where it goes.: ['REAL']\n", + "Chicago court to hear 'natural-born' case to knock Ted Cruz off ballot: ['REAL']\n", + "NYDN Calls Out 'Traitor' Senate Republicans: ['REAL']\n", + "As Sanders refuses to bow out, Millennials urge him to keep fighting: ['FAKE']\n", + "Supreme Court races the clock on gay marriage, Obamacare and more: ['FAKE']\n", + "Gloves off for top tier in GOP race after debate: ['REAL']\n", + "Trump’s Camp Manager DESTROYS Hillary By Pointing Out 1 Thing We All Missed: ['FAKE']\n", + "EU using taxpayer money to give Muslim invaders in Turkey free debit cards and cash transfers to keep them out of Europe: ['FAKE']\n", + "Carly Fiorina is more dangerous than Donald Trump: Her brazen demagoguery puts his to shame: ['FAKE']\n", + "What's in Donald Trump's tax returns?: ['REAL']\n", + "Time Is Running Out for Bernie Sanders: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Chips ‘do not need to be cooked three times’: ['REAL']\n", + "Protests Continue as Donald Trump Gears Up for the White House: ['FAKE']\n", + "Ted Cruz Says He Can Woo Donald Trump's Supporters: ['FAKE']\n", + "First 'Charlie Hebdo' issue since attack sells out: ['FAKE']\n", + "Netanyahu blasts ‘very, very bad’ Iran nuclear agreement: ['REAL']\n", + "GOP avoids showdown over EPA climate change rules: ['REAL']\n", + "Liberal MSNBC’s Chris Matthews Makes Unbelievable Speech, MUST WATCH!: ['REAL']\n", + "FOX News Poll: Trump gains, Carson slips, Cruz and Rubio climb in GOP race: ['REAL']\n", + "Has Hillary Clinton Outstayed Her Welcome?: ['REAL']\n", + "Republicans blast Kerry for suggesting Iran could skirt new visa rules: ['REAL']\n", + "The Walter Scott outrage nobody is talking about: ['REAL']\n", + "Hillary Clinton celebrates her birthday on Spanish TV show and spins her eyes for our entertainment... | Opinion - Conservative: ['FAKE']\n", + "What's the Answer to Political Polarization in the U.S.?: ['FAKE']\n", + "Clinton, FBIGate and the true depth of the ObamaGeddon: ['REAL']\n", + "Democratic debate: 5 takeaways - Politics.com: ['REAL']\n", + "How Soon Before We Become Venezuela?: ['REAL']\n", + "France launches fierce assault on ISIS targets in Syria: ['FAKE']\n", + "Speaker At Trump Rally Says He Hopes Hillary Clinton Dies In A Fiery Car Crash (VIDEO): ['FAKE']\n", + "Huckabee: Resisting the Supreme Court on gay marriage?: ['REAL']\n", + "Trump Announces Massive Expansion Plans For NASA: ['FAKE']\n", + "Shocking! Scientists Reveal The Universe Could Delete Itself At Any Moment!: ['REAL']\n", + "Another Brian Williams Story Comes Into Question: ['REAL']\n", + "Why Hillary Clinton is unlikely to be indicted over her private email server: ['FAKE']\n", + "As Hillary Clinton heads to Iowa, 5 questions she'll face: ['FAKE']\n", + "On The Fault Lines of Change: Globalization-v-Localization: ['FAKE']\n", + "Trump: A people’s ‘new world order’ taking shape?: ['FAKE']\n", + "State Department says Netanyahu twisted Kerry's words in speech to Congress: ['REAL']\n", + "Are you shitting me !! A dindu flavor 24 - 'Jack Bauer??: ['REAL']\n", + "'It's getting harder every day,' Rubio says of possible Trump support: ['FAKE']\n", + "Iranian Military Commander Claims Rogue Nation Sending Elite Fighter’s to Infiltrate the US and Europe: ['REAL']\n", + "There’s an infection hospitals can nearly always prevent. Why don’t they?: ['REAL']\n", + "Donald Trump says he has no questions about Marco Rubio's eligibility to be president: ['FAKE']\n", + "Amazing baby! 4-year-old Bella from Moscow easily speaks 7 languages: ['REAL']\n", + "News: Major Headache: The Blue Angels Got Trapped Inside A Costco, And No One Knows How To Get Them Back Outside: ['REAL']\n", + "The controversial test that's poised to replace the Pap smear: ['REAL']\n", + "Hillary is Sick & Tired of Suffering from Weiner Backup: ['FAKE']\n", + "Philadelphia To Host 2016 Democratic National Convention: ['REAL']\n", + "10 tips to improve your life #117: ['REAL']\n", + "England players controversially allowed to wear three lions: ['REAL']\n", + "Anti-Hillary Ad is so Powerful She’s SUING to Get it Taken Down – WATCH Before It’s Too Late!: ['REAL']\n", + "Meet Hillary Clinton's Potential Vice Presidents In 100 Words: ['REAL']\n", + "The media chooses our president (Hillary), because we're a nation of morons.: ['REAL']\n", + "A Martian Looks at Election Day: ['REAL']\n", + "Talk Nation Radio: James Marc Leas on Canceling the F-35: ['REAL']\n", + "Vladimir Putin – Straight From The Horse’s Mouth: ['REAL']\n", + "Partisan voters treat politics and elections like a competitive sports rivalry.: ['REAL']\n", + "Chinese political dissidents are having their organs cut from their bodies for 'transplant tourists': ['FAKE']\n", + "Michelle Obama Promotes Lewd Rappers: ['REAL']\n", + "Fearing Election Day Trouble, Some US Schools Cancel Classes: ['REAL']\n", + "State that fired pastor demands his sermons, notes: ['REAL']\n", + "Clinton’s Email Narrative Just Fell Apart: ['FAKE']\n", + "An Identity-Politicized Election and World Series Lakefront Liberals Can Love: ['FAKE']\n", + "EPA unveils comprehensive water regs, critics decry 'power grab': ['REAL']\n", + "Democratic debate: 6 takeaways: ['REAL']\n", + "2015: It's time to fire the IRS: ['REAL']\n", + "Re: Don’t worry about Hillary: BuzzFeed confirms she remained totally super awesome while under siege: ['REAL']\n", + "Sparks Fly Between Clinton And Sanders At Flint Debate: ['FAKE']\n", + "Cast Your Vote: Whose Foreign Policy Position Do You Prefer?: ['REAL']\n", + "Freedom Rider: Dump the Democrats for Good: ['FAKE']\n", + "Starnes: Donald Trump is not a conservative: ['FAKE']\n", + "Obama on future of terror after bin Laden raid: ['FAKE']\n", + "HILLARY WILL LAND IN PRISON, NOT THE OVAL OFFICE: ['FAKE']\n", + "Chelsea Clinton Hired Eric Braverman As CEO Of The Clinton Foundation To Clean House. Now It Is Being Said He Is Asking For Asylum In Russia.: ['FAKE']\n", + "UN failed to organize evacuation of civilians from rebel-held Aleppo – Russian envoy: ['FAKE']\n", + "Awakening from the Living Dream: ['FAKE']\n", + "Trump, in series of scathing personal attacks, questions Clinton’s mental health: ['FAKE']\n", + "‘Solar Winds’ Spur Geomagnetic Storm That May Affect Power: ['REAL']\n", + "Yemen's president, cabinet resign amid rebel standoff: ['REAL']\n", + "Hillary Torches the Bern in NY Blowout: ['REAL']\n", + "Trump’s unraveling Republican Party: How we reached this point: ['REAL']\n", + "ObamaCare's future: 11 ways the health care law could be dismantled in 2015: ['REAL']\n", + "CBD-Infused Cannabis Milk Soothes Anxiety And Is Hitting Stores Soon: ['REAL']\n", + "Motive elusive in deadly San Bernardino rampage as FBI takes over probe: ['FAKE']\n", + "Orrin Hatch explains friendship with Muhammad Ali: ['REAL']\n", + "What Is Operation Bluebeam? Will It Derail the Election?: ['REAL']\n", + "MSNBC Makes Huge Mistake After Trying To Catch Black Family Calling Trump Racist: ['FAKE']\n", + "Freedom Center Urges College Presidents to End Aid to Campus Supporters of Terror: ['REAL']\n", + "Could Trump switch gears? The line of attack against Hillary that could hurt her path to the White House: ['FAKE']\n", + "How Republicans saved Hillary Clinton. Again.: ['FAKE']\n", + "The best evidence yet that Republicans won't do anything on immigration in 2015: ['FAKE']\n", + "Axelrod: Can Ailes tame Trump?: ['FAKE']\n", + "How Hillary Clinton’s presidential campaign machine will kick into gear: ['REAL']\n", + "Comment on 500 Year Old Map Was Discovered That Shatters The “Official” History Of The Planet by 500 Year Old Map Discovered Shatters The Official History Of The Human Race: ['REAL']\n", + "Why are celebs staying silent about politics? Esquire editor answers own question by naming and shaming: ['FAKE']\n", + "YOUTUBE BANS ‘CLINTON’S BLACK SON’: ['FAKE']\n", + "French Jews urged to rally over UNESCO resolutions: ['FAKE']\n", + "Iranian troops prepare to aid Russia with Syrian ground assault, officials say: ['REAL']\n", + "Comment on NOT GUILTY: Oregon Standoff Leaders Acquitted for Malheur Wildlife Refuge Takeover by Richard Johnson: ['REAL']\n", + "US lifts Vietnam arms embargo in move to counter China: ['REAL']\n", + "How The Elites Are Using “Divide And Rule” To Control Us: ['FAKE']\n", + "John Boehner says House Republicans have a difference in ‘tactics.’ That’s not entirely true.: ['REAL']\n", + "Could RNC delegates be bought? Legally, maybe: ['REAL']\n", + "Exploding E-Cigarette Engulfs Man in Flames on CCTV Footage: ['REAL']\n", + "Mike Pence won the debate by throwing Donald Trump under the bus: ['FAKE']\n", + "Syrian War Report – November 2, 2016: ISIS and Al-Nusra Attempt to Cut Off Govt Supply Line to Aleppo: ['FAKE']\n", + "Bush Admin Just Got Involved In FBI’s Probe Into Clinton’s Emails And It’s Game Changing (IMAGE) – New Century Times: ['FAKE']\n", + "Obama should act with restraint on court: Jonathan Turley: ['REAL']\n", + "AP Interview: Santorum Undecided About 2016 Bid: ['FAKE']\n", + "House GOP obsessed with Boehner's future: ['REAL']\n", + "The Oil-Gas War Over Syria, in Maps: ['FAKE']\n", + "Trump, Bush, Fiorina: Three questions, three answers at second GOP debate: ['REAL']\n", + "Senate votes to block 'sanctuary cities' bill after tense debate on floor: ['REAL']\n", + "Comment on Congress: Attorney General Lynch ‘Pleads Fifth’ on Secret Iran ‘Ransom’ Payments by marlene: ['REAL']\n", + "Angry right’s secret playbook: How it uses a good story to peddle an agenda America hates: ['REAL']\n", + "6 Natural Herbs To Prevent Mental Disorders: ['REAL']\n", + "The Retirement Nightmare: “There Will Be Life Altering Ramifications For Those Who Can’t Or Won’t Adapt To New Realities”: ['FAKE']\n", + "After S.C. police shooting, a radically different response (+video): ['REAL']\n", + "The Danger of Germany’s Current Account Surpluses: ['REAL']\n", + "Gary Johnson picks up his first congressional backer: ['REAL']\n", + "UK Doctors Create List of Procedures You Don’t Need: ['REAL']\n", + "For Trump, turning this around won't be easy: ['REAL']\n", + "Senate Blocks Bill To End Government Collection Of Phone Records: ['REAL']\n", + "New tensions erupt between the White House and Netanyahu: ['FAKE']\n", + "Supreme Court divided on Obama's immigration actions: ['FAKE']\n", + "The Freakout From An Obamacare Ruling Could Be Unlike Anything We've Seen: ['REAL']\n", + "Why Trump may be winning the war on ‘political correctness’: ['FAKE']\n", + "Trump Promises ‘New Deal for Black America’: ['REAL']\n", + "House Republicans say IRS should blame itself for rough tax season: ['REAL']\n", + "5 worst right-wing moments of the week — Palin & Trump declare war on Bill O’Reilly: ['FAKE']\n", + "Clinton campaign stiff-arms reporter in coverage pool: ['REAL']\n", + "Donald Trump: 'I'm not flip-flopping' on immigration: ['FAKE']\n", + "Donald Trump throws a grand old party: ['REAL']\n", + "New York election results: 5 takeaways: ['REAL']\n", + "How To Lower Blood Pressure Naturally: ['FAKE']\n", + "Why Debbie Wasserman Schultz failed: ['FAKE']\n", + "Trump Caught Again, Ripping Off Kids Charity This time: ['REAL']\n", + "Florida Republicans Voting for Hillary Clinton · Guardian Liberty Voice: ['FAKE']\n", + "The Trump data card: Key to winning the White House: ['FAKE']\n", + "Huge 'Hillary For Prison' Sign at World Series Game: ['FAKE']\n", + "David Duke Slams the NFL and Black Lives Matter in Monday NIght Football Game Senate Campaign Ads –NFL Bosses cringe.: ['REAL']\n", + "Hillary’s leftward sprint cheers Dems: ['REAL']\n", + "Donald Trump leads an insane white cult — and Pat Buchanan just explained how it works: ['REAL']\n", + "The biggest thing Iran deal critics get wrong, in one paragraph: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "How A 2007 Debate Gaffe Paved The Way For A Deal That Will Define Obama's Legacy: ['REAL']\n", + "Russian Passenger Plane Crashes In Sinai With 224 Aboard: ['REAL']\n", + "“When You Speak Up for the MOVE 9, You Speak Up for Yourself”: ['REAL']\n", + "Cheese shortage due to enlarged moon. More soon.: ['REAL']\n", + "NATO Sends A Message To Russia, This Is Horrifying: ['REAL']\n", + "Regardless of who wins the confirmation battle, the big loser is the Supreme Court: ['REAL']\n", + "U.S. Behind Huge Weapons Shipments To Saudi Arabia Prior to Yemen Funeral Attack: ['FAKE']\n", + "The Battleship Debate: ['REAL']\n", + "Texas Bill To Add Barriers To Gay Marriage Dies In House: ['FAKE']\n", + "Arise President Trump (or Why it's not the End of the World as We Know it): ['REAL']\n", + "Suspect in 4 gruesome D.C. killings might not have acted alone, police say: ['REAL']\n", + "Fed lowers economic outlook but stays mum on rate plans: ['REAL']\n", + "Satellite Images Show 'Catastrophic' Destruction Of Boko Haram Attack In Nigeria: ['FAKE']\n", + "May Day's meaning: How it unfolded in Seattle: ['REAL']\n", + "Comment on Democratic Party operative Bob Beckel calls for assassinating WikiLeaks’ Julian Assange by truckjunkie: ['REAL']\n", + "Will an Anti-Trump Color Revolution engulf the US?: ['FAKE']\n", + "Liberal media mocks Republican presidential candidates with \"clown car\" diss: ['REAL']\n", + "State Department challenges Clinton claim that emails to officials ‘immediately’ saved: ['REAL']\n", + "NewsThump declared an Enemy of the People: ['REAL']\n", + "NATO acknowledges Russia Moving Nuclear Missiles To Kaliningrad: ['FAKE']\n", + "ISIS claims credit for terror attacks at Brussels airport, Metro station: ['FAKE']\n", + "Orlando Attack Just Added More Fuel to Divisive Politics: ['REAL']\n", + "I Envy You: ['REAL']\n", + "Obama Addresses Vaccinations, Other Issues In NBC Interview: ['REAL']\n", + "Scientists Say Universe Is Part Of 4th Dimension Born From Black Hole: ['REAL']\n", + "Hillary Clinton Raised $45 Million In Latest Quarter: ['REAL']\n", + "State Department spokeswoman floats jobs as answer to ISIS: ['REAL']\n", + "GOP's nightmare: An Independent Donald Trump: ['FAKE']\n", + "ISIS applies chlorine in Aleppo: ['FAKE']\n", + "Ted Cruz: Protester would get spanking at my house: ['FAKE']\n", + "#muschniwogdowis of the day: business as usual.: ['REAL']\n", + "Boehner's preparing to sue Obama again — over immigration: ['REAL']\n", + "Republican Lawmaker Secretly Recorded Fantasizing To Gun Group About Shooting Hillary (AUDIO): ['REAL']\n", + "Questions Re Kim DotCom and Wikileaks: ['REAL']\n", + "The Democratic Party Got Crushed During The Obama Presidency. Here's Why: ['REAL']\n", + "TRANSPARENCY! Report: Loretta Lynch won’t tell Congress who approved $1.7 billion cash transfer to Iran: ['FAKE']\n", + "1 in 5 Americans say Hillary Clinton is “dishonest” or a “liar.” Here’s why that’s a big problem.: ['FAKE']\n", + "Internationally-backed Libyan forces attack Daesh positions in Sirte: ['REAL']\n", + "Putin’s Pro-Trump Online Trolls Just Spilled The Beans To Samantha Bee: ['FAKE']\n", + "In Common Core, a larger battle over the size of government: ['FAKE']\n", + "Here comes the opposition book: Clinton and her allies prepare for Trump: ['FAKE']\n", + "Venezuela Throws In The Towel On Hyperinflation: Will Print 200x Higher-Denominated Bills: ['REAL']\n", + "Clinton allies urge campaign to torch Trump: ['FAKE']\n", + "Sanders, Republican governors eye comeback in New Hampshire primary: ['REAL']\n", + "Series of powerful earthquakes including 6.0 magnitude strikes central Italy: ['REAL']\n", + "Justices agree to hear dispute over union fees, reapportionment: ['REAL']\n", + "Trump in Vegas, Phoenix: Illegals 'Wreaking Havoc on Our Population': ['FAKE']\n", + "Behind The Shortage Of Special Ed Teachers: Long Hours, Crushing Paperwork: ['REAL']\n", + "Our meeting with Mark Zuckerberg: Conservatives need Facebook, and it needs us: ['REAL']\n", + "Mike Huckabee: Gay People 'Can Be My Friends': ['REAL']\n", + "Hillary Is 70 Days Away From Controlling All Food and Water: ['REAL']\n", + "Obama at Prayer Event: Christians did terrible things, too: ['REAL']\n", + "For Trump, a new ‘rigged’ system: The election itself: ['FAKE']\n", + "Comment on Sweden on the brink? Police force pushed to breaking point by violence amid migrant influx by Paul Blake: ['REAL']\n", + "Mainstream Presidential Polls Fuel Illusion That Voters Are Stuck With Only Two Choices: ['REAL']\n", + "Bush's 2016 remarks kick other potential GOP candidates into higher gears: ['REAL']\n", + "Why ISIS's reign of fear has worked, and how it can be countered: ['FAKE']\n", + "Deepwater Horizon Continues to Impact Public Health: ['REAL']\n", + "French Politician Blames UK Welfare System For Calais Jungle Crisis: ['FAKE']\n", + "Syrian Refugee in Germany Gets $390K in Annual Benefits. And It's Because of Who He Takes Care Of: ['REAL']\n", + "Russia launches naval bombardment of targets in Syria: ['REAL']\n", + "TRUMP BOMBSHELL! — I’m reopening 9/11 Investigation: ['FAKE']\n", + "Brian Cloughley: “The Greatest Achievement of Mr. Trump would be Engage in Positive Discussions with Russia and China”: ['FAKE']\n", + "Man punctuates high-speed chase with stop at In-N-Out Burger drive-thru: ['REAL']\n", + "The right turns on Paul Ryan: Yesterday’s conservative savior is today’s moderate wimp: ['REAL']\n", + "First Brexit, Now Trump … What’s Next?: ['REAL']\n", + "Hillary Clinton Keeps It Safe With Tim Kaine as VP Pick: ['REAL']\n", + "Security Expert: My Fear is That More Churches Will be Targeted: ['FAKE']\n", + "Europe Mounts Historic Challenge to Google’s Domination of Tech Services: ['REAL']\n", + "Statistical Tie: Latest Breitbart/Gravis Poll Shows Donald Trump Closes the Gap with Less Than Two Weeks Left: ['FAKE']\n", + "MSNBC’s year of standing up straight: ['REAL']\n", + "The Libertarian Moment Is So Over That Libertarians Are Now The Single Largest Group: Gallup: ['REAL']\n", + "March 15 Exit Poll Results: The Polarization of Primary Electorates: ['FAKE']\n", + "Reuters Poll: Most Voters Don't Think Bill Clinton Big Factor in Election: ['FAKE']\n", + "Hillary Clinton FREAKED OUT Her Entire Campaign With This ONE MOVE: ['REAL']\n", + "Shame to waste Corbyn on a snap election, says May: ['FAKE']\n", + "A Coup Taking Place in the United States: ['REAL']\n", + "Super Tuesday prizes: Candidates in fierce fight for Texas, other delegate goldmines: ['REAL']\n", + "How Obama Abandoned Democracy in Iraq: ['REAL']\n", + "Obama gets away with some whoppers on guns at town hall event: ['REAL']\n", + "Doubts Rise Over Report Freddie Gray Injured Himself: ['REAL']\n", + "Public Support for the Euro: ['REAL']\n", + "Prof: Canoes reek of genocide, white privilege: ['FAKE']\n", + "US-led Coalition Killed 300 Civilians in just 11 Air Strikes in Syria, Amnesty International Report Finds: ['FAKE']\n", + "Time: Investigating Hillary is an Attack on All Women: ['REAL']\n", + "State Department OK'd most Bill Clinton speech requests within days: ['REAL']\n", + "Obamacare Architect on Rising Premiums: It’s Not a Big Increase: ['REAL']\n", + "No profit left behind: ['REAL']\n", + "Hidden in plain sight – The global depopulation agenda: ['REAL']\n", + "JUST IN: Trump Camp Caught On Cam Bragging Of “Voter Suppression” Against Women & Blacks (VIDEO): ['FAKE']\n", + "Think Facebook isn't political? Think again | Nellie Bowles: ['REAL']\n", + "Here’s how a wealthy Trump supporter could give $783,400 to support his campaign and the RNC: ['FAKE']\n", + "Go Ahead, Throw Your Vote Away: ['REAL']\n", + "America Is Better Without Borders: ['REAL']\n", + "RNC Chair urges against changing convention rules before Cleveland: ['REAL']\n", + "A Republican Representative Just Called For Hillary To Be Killed By Firing Squad: ['FAKE']\n", + "Donald Trump and the $12.7 million Ukraine connection: ['REAL']\n", + "Obama Will Not Meet with Netanyahu During Trip to Washington: ['REAL']\n", + "Let’s Be Clear – A Vote For Warmonger Hillary Clinton Is A Vote For World War 3: ['FAKE']\n", + "Video: How To Build A Simple Water Purifier That Turns Dirty Water And Even Salt Water Into Clean Fresh Pure Water: ['REAL']\n", + "THIS IS COMEY’S LAST CHANCE FOR REDEMPTION – TruthFeed: ['REAL']\n", + "There Is Something Extraordinary Happening In The World – And You Probably Didn’t Realize It Yet: ['REAL']\n", + "The media needs to stop telling this lie about Donald Trump. I’m a Sanders supporter — and value honesty: ['REAL']\n", + "Do Democrats Want What Bernie Wants, Or Just What Bernie Has?: ['REAL']\n", + "OCTOBER DIARY: Borjas No Bore; NOSTAR—”No Such Thing As Race”, Etc: ['REAL']\n", + "Is Hillary Running for Bill’s Third Term?: ['REAL']\n", + "Black Agenda Radio for Week of Nov. 7, 2016: ['FAKE']\n", + "Bibi's victory is Kerry's defeat: ['REAL']\n", + "Trudeau Elected Canada's Prime Minister As Liberals Assume Power: ['FAKE']\n", + "What makes America 'exceptional'? Clinton and Trump trade places (+video): ['FAKE']\n", + "Hillary Clinton’s Countless Choices Could Hinge on 2016 Election: ['REAL']\n", + "Terror Tots: We Must Prepare for the Child-Fighters of ISIS: ['FAKE']\n", + "LUCIFER in the Temple of the Dog II: ['FAKE']\n", + "Ep. 544 FADE to BLACK Jimmy Church w/ Laura Eisenhower : Restoring the Balance [VIDEO]: ['REAL']\n", + "The Email Mess, Comey’s quandary and the expanding brawl in Washington: ['REAL']\n", + "Wall Street Flies Higher for Second Day of Gains: ['REAL']\n", + "Alaska scrambles to prevent Obamacare collapse: ['FAKE']\n", + "The Daily 202: Ted Cruz might be the last, best hope for conservatives to stop Donald Trump after Super Tuesday: ['REAL']\n", + "Will Barack Obama delay or suspend the election if Hillary is forced out by the new FBI email investigation?: ['FAKE']\n", + "'Understudies' Kaine and Pence add value in VP debate (+video): ['REAL']\n", + "Russian Oven: Millet pumpkin porridge: ['REAL']\n", + "Biden's Latest Signal He Won't Run For President: ['REAL']\n", + "Nation Still Struggling To Come To Terms With Terrorist Living In Ireland: ['FAKE']\n", + "The Destruction of Reason in West: ['REAL']\n", + "The Man Who Will Not Bow to Fearmongering: ['FAKE']\n", + "The Destroyer Cometh: ['REAL']\n", + "U.S. Elections Shockwaves Hit Europe: ['REAL']\n", + "All Governments Lie, The Movie: ['REAL']\n", + "Woodward On Clinton Foundation “It’s Corrupt”: ['REAL']\n", + "Re: WE’RE NOT NASTY! Like all Democrats, Sally Kohn proves how little she thinks of women with this tweet: ['REAL']\n", + "Herbs to Grow in Winter and Fall: ['REAL']\n", + "‘Supermajority’ of House Freedom Caucus to back Paul Ryan’s speaker bid: ['FAKE']\n", + "Journalism Startup Newsbud Launches Critical 2nd Crowdfund - Richard Brandt: ['REAL']\n", + "How To Win The Presidency With 23 Percent Of The Popular Vote: ['REAL']\n", + "Farmers: Trump 'terrible for agriculture': ['FAKE']\n", + "Cyrus Mistry joins AAP; Tata Sons shortlists candidates for chairman’s post: ['REAL']\n", + "Obama to Supreme Court: You wouldn’t dare kill Obamacare: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "An Alabama Reader Is Pleased To Report That Jeff Sessions Reads Ann Coulter!: ['FAKE']\n", + "Pa. lawmakers approve ban on naming officers in shootings: ['FAKE']\n", + "Why the Jobs Aren’t Coming Back. The “modern day marvel.”: ['REAL']\n", + "Donald Trump's Real Problem Is With White People: ['FAKE']\n", + "Florida’s “deceptive” solar initiative, backed by utilities companies, loses support: ['REAL']\n", + "Which Republicans have come out against Boehner for speaker? Here’s a list.: ['FAKE']\n", + "WE TOLD HER! Budweiser Hits “DELETE” On Beer Ads Featuring Amy Schumer Because…: ['REAL']\n", + "DEVELOPING: FBI Reopens Investigation into Clinton Emails After New ‘Pertinent’ Evidence Discovered: ['FAKE']\n", + "Project Veritas 4: Robert Creamer's Illegal $20,000 Foreign Wire Transfer Caught On Tape | RedFlag News: ['FAKE']\n", + "‘Solar Winds’ Spur Geomagnetic Storm That May Affect Power: ['REAL']\n", + "Company that Supplied Voting Machines to 22 States Donated to Clinton Foundation: ['REAL']\n", + "How global terror network will get a boost from Iran nuclear deal: ['FAKE']\n", + "Elon Musk to Completely Revolutionize the Energy Industry with New Tesla Solar Roof: ['REAL']\n", + "Barrel Bomb: The Cataclysmic Close of Campaign 2016 : Information: ['FAKE']\n", + "6 detained in raids in Belgium: ['REAL']\n", + "Top Senate Democrat urges Clinton to address private email controversy: ['FAKE']\n", + "Obama opens door to 'limited' ground combat operations against ISIS: ['REAL']\n", + "Washington's Embargo on Cuba Not Effective, Isolated US - White House: ['FAKE']\n", + "Fox News built a f**ked-up Frankenstein, dumb, angry and divorced from facts. Now Donald Trump will devour them: ['REAL']\n", + "Comment on 184 U.S. generals and admirals endorse Trump for Commander-In-Chief by Tonya Parnell: ['FAKE']\n", + "Police across the country are being equipped with ‘Christian’ facial recognition cameras: ['REAL']\n", + "Ky. clerk says won’t personally authorize gay marriage licenses -- or interfere: ['REAL']\n", + "Jeb Bush Among Conservatives Criticizing Pope For Climate Change: ['REAL']\n", + "Major donors consider funding Black Lives Matter: ['REAL']\n", + "LDS Church’s new ‘Mormon and Gay’ website wins cheers and some jeers for ignoring controversial policy: ['REAL']\n", + "Exhausted, Defeated Voters Finally Beginning To Relate To Hillary Clinton - The Onion - America's Finest News Source: ['FAKE']\n", + "Kate Steinle's death and sanctuary cities: What good are our laws without enforcement?: ['REAL']\n", + "Everything you need to know about our polarized politics (in the palm of your hand): ['FAKE']\n", + "FEC head under fire for women’s forum ‘stacked’ with Dems: ['REAL']\n", + "The Yale Review Did Not Endorse Hillary. The Reason Why Is Hilarious: ['REAL']\n", + "FEAR OF TRUMP: BUSH, OBAMA, CLINTON ALL BUYING PROPERTY IN NON-EXTRADITION NATIONS: ['FAKE']\n", + "Nine dead, 18 wounded after Texas biker gang shootout (+video): ['REAL']\n", + "American Tourist Can’t Get Over Dirty, Decaying & Dangerous Charm Of Dublin City: ['REAL']\n", + "“You Ruined Your Own Communities, Don’t Ruin Ours”–Chicago Whites Demonstrate Against Black Lives Matter After Black Shot: ['REAL']\n", + "CNBC moderators get bipartisan drubbing for debate performance: ['REAL']\n", + "Project Veritas Video 4 - 20K Bribery to DNC, Chaos at Trump Rallies: ['FAKE']\n", + "'Specific info' forces WikiLeaks to move anticipated announcement to Berlin: ['FAKE']\n", + "Trump Elected President, Thanks to 4 in 5 White Evangelicals: ['REAL']\n", + "US calls for end to Saudi airstrikes in Yemen: ['FAKE']\n", + "Iowa Christians struggle to square faith with fear over refugees: ['FAKE']\n", + "Look out, Paul Ryan! Masochist Paul Nehlen is gunning for House speakership: ['FAKE']\n", + "Hillary and Bill Clinton: The «Bonnie and Clyde» of American Politics: ['REAL']\n", + "A Combative Donald Trump Shows Up at Tampa and Pittsburgh Rallies: ['FAKE']\n", + "First Take: Can a 'wacko bird' take flight in the GOP?: ['FAKE']\n", + "Bernie Sanders Got Republicans To Make His Argument For Universal Health Care: ['REAL']\n", + "Saudi Arabia poised to be reelected to UN Human Rights Council: ['FAKE']\n", + "Boehner, McConnell split over NSA bill: ['REAL']\n", + "Rick Santorum hopes 99-county Iowa tour leads to success: ['REAL']\n", + "FBI Director Comey Ignored DOJ’s Warning Against Releasing Info On Hillary Email (TWEETS): ['FAKE']\n", + "Bill Maher on Charlie Hebdo attacks: “There are no great religions; they’re all stupid and dangerous”: ['REAL']\n", + "Judge orders Obama administration to release illegal immigrants from 'deplorable' facilities: ['FAKE']\n", + "Fierce Homeless Woman Guarding Trump's Star from Future Vandals Flashes 'Trump-Worthy' Reason for It: ['FAKE']\n", + "Saudi ambassador to the UAE: Any contact with Iran, Iraq, Syria, and Lebanon should be checked: ['REAL']\n", + "14 dead as Islamic rebels attack in Philippines: ['FAKE']\n", + "Political paralysis is the new normal: The GOP’s Scalia gamble may be suicidal, but it’s not illogical: ['REAL']\n", + "Donald Trump’s avenging angels: How the orange-haired monster has rewritten the history of American conservatism: ['FAKE']\n", + "GOP and Abortion in Age of ObamaCare: Time for new strategy: ['FAKE']\n", + "Planned Parenthood does damage control as GOP demands answers: ['REAL']\n", + "The GOP has become the party from George Orwell’s nightmares: ['FAKE']\n", + "Poverty Rose in 96% of U.S. House Districts, During Obama’s Presidency: ['REAL']\n", + "Obama Talks About HIMSELF 207 Times In Speeches Supposedly About Hillary: ['REAL']\n", + "Marco Rubio Strong Favorite in Sheldon Adelson Primary: ['REAL']\n", + "New Male Birth Control Method Tested - The Onion - America's Finest News Source: ['FAKE']\n", + "What To Watch For At Democrats' First Debate: ['FAKE']\n", + "How climate change is spawning a new view of conservation: ['REAL']\n", + "Did Hillary Clinton Cheat At The Debate? (VIDEO): ['FAKE']\n", + "FBI “Insurrection” to Scuttle Director, Rig Election: ['FAKE']\n", + "Democrats hand Obama a stinging defeat on trade deal: ['REAL']\n", + "Former DEA Prescription Head Drops a BombShell — Congress Protects Big Pharma & Fuels Opioid Crisis: ['REAL']\n", + "Carly Fiorina Says Donald Trump 'Taps Into an Anger': ['REAL']\n", + "MOBILE PASSES DESKTOP FOR THE FIRST TIME…: ['REAL']\n", + "Fact checking the 2016 State of the Union address: ['FAKE']\n", + "Alabama's Top Judge Faces Ethics Charges Over Gay-Marriage Order: ['FAKE']\n", + "Police Officers Face Backlash After What They Did To Hillary In Photo: ['REAL']\n", + "Texas Cop Fired For Feeding ‘Feces’ Sandwich To Homeless Man: ['FAKE']\n", + "The Deceptive Nature of Hillary Clinton is Right in Line with Communism: ['FAKE']\n", + "DNC Head Leaked 2nd Debate Question to Hillary: ['REAL']\n", + "‘Paid for by O’Malley for President’ — and 9 other signs O’Malley is in: ['FAKE']\n", + "Woman Buys Lotto Ticket to Prove to Husband Nobody Wins, Wins $1 Million: ['REAL']\n", + "Exclusive Trump op-ed: We must clean up this corruption: ['FAKE']\n", + "Best Magic tricks ever revealed 2016: ['REAL']\n", + "New Wikileaks emails: Bernie is a Jerk, Megyn Kelly a Bimbo and More: ['REAL']\n", + "Debunked: The Photo Of Obama With A Speech Balloo... | ClickHole: ['FAKE']\n", + "Maryland has passed one of the nation’s strongest equal pay laws: ['REAL']\n", + "The real reason Hillary Clinton's VP shortlist is so short: ['REAL']\n", + "Inside Planned Parenthood's $30 Million Campaign For 2016: ['REAL']\n", + "Technology Blackout Feared As Solar Storm Hits Earth: ['REAL']\n", + "Deutsche Bank LIVES: Shock profits posted in Q3: ['REAL']\n", + "Anti-Trump forces seek last-ditch delegate revolt: ['REAL']\n", + "Alien Visitors? No Explanation for Mysterious Lights in Night Sky Over Arizona: ['FAKE']\n", + "Lawmakers fuming over report Capitol police left guns in bathrooms: ['FAKE']\n", + "Trump, Ryan tout unity in wake of meeting: ['FAKE']\n", + "Fukushima – The Untouchable Eco-Apocalypse No One is Talking About: ['REAL']\n", + "Former Facebook staffers say conservative news is deliberately suppressed: ['REAL']\n", + "US Drone Pilots May Be ‘Illegally’ Acquiring Targets From UK Bases: ['REAL']\n", + "Russia Is Hoarding Gold at Breakneck Pace — The Next Global Conflict Will Be Fought With Currencies - Jay Syrmopoulos: ['REAL']\n", + "Does blood on shoe link suspect to Washington slayings?: ['REAL']\n", + "Voting Against Peace in Colombia: ['REAL']\n", + "Japan approves already dead TPP deal: ['REAL']\n", + "Trump: 'President Barack Obama was born in the United States': ['FAKE']\n", + "Scientists have heard unusual messages from deep space probably coming from aliens: ['FAKE']\n", + "Republican Debate: Trump's absence leaves three winners and two losers: ['REAL']\n", + "Montenegrin PM resigns shortly after suggesting Russia behind alleged coup plot: ['REAL']\n", + "US election 2016: New Hampshire polls close in key primary: ['FAKE']\n", + "Haywire over Hacking: Media refuse to believe Trump's Russia comments were sarcastic: ['REAL']\n", + "MMR Vaccines Cause 340% Increased Risk of Autism in African American Infants: ['FAKE']\n", + "JUST IN: Republicans Sued Over Trump’s Call To Intimidate Minority Voters: ['FAKE']\n", + "You’re Fired! Trump Wins Big, Clinton Is Going To Jail: ['FAKE']\n", + "Sources: US officials warned DNC of hack months before the party acted: ['REAL']\n", + "HHS to Congress on ObamaCare court ruling: It’s your problem: ['FAKE']\n", + "Renowned Harvard Psychologist Says ADHD is Largely a Fraud: ['REAL']\n", + "We Came, We Saw, He Died: How Gaddafi Was Hunted And Ruthlessly Killed: ['REAL']\n", + "After Obamacare: The next Democratic health agenda: ['REAL']\n", + "House Democrat Introduces ISIS War Authorization Bill: ['FAKE']\n", + "Defiant Charlie Hebdo to print 3M copies of latest edition with Muhammad on cover: ['FAKE']\n", + "Can the Democratic party find unified path to the general election?: ['FAKE']\n", + "How Trump and Sanders Broadened Their Bases in New Hampshire: ['FAKE']\n", + "Is The Republican Party On The Verge Of A Historic Crackup?: ['FAKE']\n", + "Our bad-tempered behaviour is not a cry for help, say old men: ['REAL']\n", + "How to Support Standing Rock and Confront What It Means to Live on Stolen Land: ['FAKE']\n", + "Lynch vote deal reached on human trafficking bill: ['FAKE']\n", + "Rogue Journalist Has 'October Gift' for Hillary Campaign We're All Sure She Just 'Can't Wait' to Open: ['REAL']\n", + "White House: 'Higher profile' person should have gone to Paris: ['REAL']\n", + "House votes to roll back Obama's immigration actions: ['REAL']\n", + "IRANIAN MISSILE ACCIDENTALLY DESTROYS IRANIAN SHIP AIMED FOR SYRIA!: ['FAKE']\n", + "Tom deLonge: Changing the cynical views of youth towards government: ['REAL']\n", + "Nevada politics expert: \"Trump is dead\" in the state: ['FAKE']\n", + "3 explanations for why Donald Trump is suddenly doing better in the polls: ['FAKE']\n", + "Earth To Ammosexuals: NRA Admits No One Is Coming For Your Guns! (VIDEO): ['FAKE']\n", + "Economic upgrade: Russia receives multiple endorsements for rapidly improving business conditions: ['REAL']\n", + "Football Follies 2016: NCAA Week 9: ['FAKE']\n", + "They Said What?!: Find Out What Paul Krugman, Aretha Franklin, And Willie Nelson Have To Say: ['REAL']\n", + "Joe Biden praises Iraqi military: ['REAL']\n", + "Automation: Robots from Korea to America Are Replacing Workers: ['REAL']\n", + "Clinton And The DNC: A Crisis Not Merely Survived, But Transcended: ['FAKE']\n", + "Pardon Power: The Obamamometer’s Options: ['REAL']\n", + "Ahead Of Tomorrow’s Fed Meeting There Are Some Very Strange Things Happening: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "This Is What Happens When You Elect Climate Change Deniers: ['REAL']\n", + "GOP has a day of reckoning coming: ['REAL']\n", + "Legendary US Gymnastics Coach Bela Karolyi May Have Known for YEARS That Team's Doctor Sexually Abused Girls: ['FAKE']\n", + "Cruz 'thrilled' despite drop in Iowa Poll: ['FAKE']\n", + "Social Media Blackout? FBI Emails Are Not ‘Trending’ On Twitter, Facebook, Buzzfeed, Or Snapchat: ['REAL']\n", + "‘I Don’t Rent To N s’: Smoking Gun Proves Trump Family Racism (VIDEO) | Addicting Info | The Knowledge You Crave: ['FAKE']\n", + "Russia Begins Airstrikes In Syria After Assad's Request: ['REAL']\n", + "November supermoon biggest in nearly 70 years: ['REAL']\n", + "Ex-Defense Chief Gates: Trump 'Beyond Repair' on Foreign Policy, But Hillary Needs Work: ['REAL']\n", + "PA Kids’ Drawings: Israel Drinks Blood of Palestinians: ['REAL']\n", + "Gov. Kasich enters GOP White House race touting 'skills and experience': ['REAL']\n", + "Bernie Sanders vs. the Lamestream Media: ['REAL']\n", + "Common Core standardized tests begin Tuesday: ['REAL']\n", + "21 Things We’ve Learned About Hillary Clinton From Wikileaks That The MSM Won’t Share…But YOU Can!: ['REAL']\n", + "Tomgram: Nomi Prins, Too Big to Fail, Hillary-Style: ['REAL']\n", + "HUFFPOLLSTER: Trump And Clinton Lead, But Iowa Polling Remains Volatile With A Week To Go: ['REAL']\n", + "Wikileaks: ['REAL']\n", + "GOP contenders nearly silent on Colorado Springs shooting: ['FAKE']\n", + "Study: women had to drive 4 times farther after Texas laws closed abortion clinics: ['REAL']\n", + "Another Saudi War Crime in Yemen as 43 Prisoners Dead in Airstrike: ['REAL']\n", + "Rescue Brings A Bit Of Good News To Nepal's Capital After Earthquake: ['REAL']\n", + "Long-term Effects of the Presidential Election: ['REAL']\n", + "How Ryan decided to ditch Trump: ['FAKE']\n", + "Trump Rally On Hollywood Boulevard 10/29/16: ['FAKE']\n", + "If you really want to save energy at home, forget about your light switches: ['FAKE']\n", + "MEDIA SHAME - These 65 Journalists are Now Presstitutes. Their Madam is Hillary Clinton.: ['FAKE']\n", + "Biden takes his pre-campaign to Clinton’s turf: ['REAL']\n", + "Police Depts. Paid AT&T Millions To Scrutinize Our Texts & Chats: EFF: ['REAL']\n", + "Can Israelis And Palestinians Change Their Minds?: ['REAL']\n", + "NASA Admits: Someone Took Control Over Space Probe Voyager 2 And Sent Data In An Unknown Language: ['FAKE']\n", + "Liberty or State Control? You Decide: ['REAL']\n", + "Illinois Senator Draws Fire for Racially Charged Attack on Opponent’s Family: ['REAL']\n", + "Jeb Bush to lay out foreign policy: Will he be dad, brother – or himself? (+video): ['REAL']\n", + "Egypt says it hit ISIS targets in Libya after killings: ['REAL']\n", + "Possible suicide vest found in Paris suburb: ['FAKE']\n", + "PressTV-NATO pushes military buildup plans near Russia: ['FAKE']\n", + "Trump spurns a powerful player in GOP politics in falling-out with Fox: ['FAKE']\n", + "Wikileaks: Bill Clinton BOASTS of Hillary’s ‘Working Relationship’ with Islamic Terrorist Organization: ['REAL']\n", + "US Military Notifies Russia Of “Sustained Alert Status” Due To “Presidential Election Threat”: ['FAKE']\n", + "India is building millions of toilets, but that’s the easy part: ['REAL']\n", + "Donald Trump doesn’t want to make America great. He wants to make it afraid.: ['FAKE']\n", + "Prowling Amur tiger nabbed near Vladivostok: ['REAL']\n", + "Clinton clearing primary field for potential 2016 run could leave her vulnerable: ['FAKE']\n", + "Wendy Kennedy on being a channel for The 9th Dimensional Pleiadian Collective [VIDEO]: ['REAL']\n", + "The power of Trump’s call to free America from political correctness (+video): ['FAKE']\n", + "Putin blasts Clinton & Tells U.S. Govt to STOP Criticizing Russia: ['FAKE']\n", + "Charity Paid For Chelsea’s Wedding! Clinton Foundation Fraud [Video]: ['REAL']\n", + "Is Trump winning? The future of America depends on a few states: ['FAKE']\n", + "Migrant Thug Beats 87-Year-Old To Bloody Pulp For Making 1 Simple Request: ['REAL']\n", + "Why Hillary Clinton's gun control proposal is all wrong: ['FAKE']\n", + "Netanyahu enters never-never land: ['FAKE']\n", + "The Dark Art of Political Intimidation: ['FAKE']\n", + "Republican debate: Six things to watch: ['REAL']\n", + "The White House Easter Egg Roll exists because Congress banned fun: ['REAL']\n", + "WORLD WAR 3 – HILLARY V.S. TRUMP: ['FAKE']\n", + "Donald Trump’s dangerously circular logic: ['REAL']\n", + "White House says Obama will ask Congress to authorize military force against ISIS: ['REAL']\n", + "Homeland Security deal: Will Boehner follow McConnell's lead? (+video): ['REAL']\n", + "The Modern History of \"Rigged\" US Elections: ['FAKE']\n", + "FCC Passes Sweeping Internet Privacy Rules in ‘Big Win for Civil Rights’: ['REAL']\n", + "Pres. Obama RUTHLESSLY Trolls Trump After His Own Campaign GROUNDS Him From Twitter (VIDEO): ['FAKE']\n", + "Obama to focus on future in State of the Union speech: ['FAKE']\n", + "WATCH: Anti-LGBT Attack At Equality House – SHOTS FIRED (TWEETS): ['FAKE']\n", + "ISIS launches attack on Kirkuk: ['REAL']\n", + "How Hillary Clinton lost young (white) women: ['REAL']\n", + "Geoengineering Watch Global Alert News, November 5, 2016: ['FAKE']\n", + "What's behind the debate over the Republican debates?: ['REAL']\n", + "Tiny Homes Banned in U.S. at Increasing Rate as Govt Criminalizes Sustainable Living: ['FAKE']\n", + "Reflections on US Political Tragedies: ['FAKE']\n", + "President Obama has had an eventful year. His approval rating hasn't budged.: ['REAL']\n", + "GOP Power Rankings: Kasich gets a boost: ['REAL']\n", + "Study: Swift birds fly non-stop for 10 months every year: ['FAKE']\n", + "How the internet is making even Ukrainian Nazis into Russians...: ['REAL']\n", + "Goldman Sachs Endorses Hillary Clinton For President: ['REAL']\n", + "Marco Rubio Short-Circuits During G.O.P. Debate: ['REAL']\n", + "PressTV-‘Clintons worked with US enemies’: ['REAL']\n", + "Juicing May Be the Answer to Many of Your Chronic Health Problems: ['REAL']\n", + "Riots Getting out of Control, They are now shouting \"Kill Trump\": ['FAKE']\n", + "What Happens If Trump Refuses To Concede Election - The Onion - America's Finest News Source: ['FAKE']\n", + "Breaking: A Counter Coup To The Clinton Attack is Happening Now… FBI Quietly Releases Documents Via Julian Assange and Wikileaks. | EndingFed News Network: ['FAKE']\n", + "Obama reportedly snubs NATO chief as Russia makes new threats against allies: ['FAKE']\n", + "Alabama begins issuing marriage licenses to gay couples: ['FAKE']\n", + "Russian plane crash in Sinai: All 224 on board killed: ['REAL']\n", + "Trump Raises Concern Over Members Of Urban Communities Voting More Than Zero Times - The Onion - America's Finest News Source: ['FAKE']\n", + "Brexit Ruling Just Latest Tactic to Block Will of the People: ['REAL']\n", + "What do voters see in Trump? His authentic phoniness.: ['FAKE']\n", + "Valentin Katasonov: America is in agony and Trump is the doctor: ['FAKE']\n", + "President-elect Donald Trump eyes Ovala Office with plans to erase Barack Obama’s achievements: ['REAL']\n", + "Trump Presidency Creates Mountains Of Salt From Butthurt Liberals: ['FAKE']\n", + "FOX: Latinos Are Already CRUSHING Trump At The Polls: ['FAKE']\n", + "How Common Core quietly won the war: ['REAL']\n", + "The rest of the field figured out how to make Trump not quite as dominant: ['REAL']\n", + "Trade bill clears Senate hurdle: ['REAL']\n", + "MUFON International tracking multiple triangle UFO reports: ['FAKE']\n", + "Trump makes biggest ad buy to date, hammers Clinton on economy: ['REAL']\n", + "McConnell Promises 9/11 First Responders Will Get Healthcare Bill: ['REAL']\n", + "Shocking Questions About the FBI & the ‘News’ Media: ['FAKE']\n", + "Trump, and what he might say next, is burning up GOPs political capital in Washington: ['FAKE']\n", + "Non-GMO 'crop circles' showing up in corn fields in Nebraska: ['REAL']\n", + "Desperate Obama RIPS Comey: 'We Don't Operate On Innuendo' | Daily Wire: ['FAKE']\n", + "Robert Durst on HBO’s ‘The Jinx': I ‘killed them all.’: ['REAL']\n", + "UNSC Members Fail to Agree on New Zealand Draft Resolution on Aleppo: ['FAKE']\n", + "What liberals could learn from Ted Cruz’s flat tax: ['REAL']\n", + "Hillary leads Trump in dead fetuses and dead people: ['REAL']\n", + "Markets PANIC Over Trump Victory As FBI Reopens Hillary Email Probe | Harvey Organ: ['FAKE']\n", + "Trump swept to victory by fans of poor quality 80s action films: ['REAL']\n", + "Re: Something lighter: ‘Shiny’ legs optical illusion goes viral: ['REAL']\n", + "Trump again won’t rule out a third-party run: ['REAL']\n", + "Why do people dislike Hillary Clinton? The story goes far back: ['REAL']\n", + "2016 campaign takes strange twists after Orlando: ['REAL']\n", + "Rand Paul wraps 'filibuster' over Patriot Act and NSA surveillance: ['REAL']\n", + "Scrabble Spells Doom for the Racial Hypothesis of Intelligence: ['REAL']\n", + "How Yemen Fits Iran Plans for Mideast Rule, Beyond: ['FAKE']\n", + "No matter who it is, next president to face economic challenge: ['REAL']\n", + "A Fifth Clinton Presidency? Hill, No!: ['REAL']\n", + "The Real Reason the Antidepressant Industry Does Not Want Psychedelics Legalized: ['REAL']\n", + "Internet Erupts In Mockery After Sarah Palin Posts Something Monumentally Stupid Again (TWEETS): ['REAL']\n", + "News: Democracy Win: Volunteers Across The Country Are Oiling Up The Sidewalks To Help Voters Slide Uncontrollably To Their Polling Place: ['REAL']\n", + "Dear America, Let’s Now Unite and Flood Our Nation With Optimism: ['REAL']\n", + "With Common Core tests, a lot at stake for first-year principal: ['FAKE']\n", + "Political polarization is getting worse. Everywhere.: ['FAKE']\n", + "US economy adds paltry 38,000 jobs in May for weakest growth since 2010: ['REAL']\n", + "Donald Trump attacks force Jeb Bush out of his malaise: ['FAKE']\n", + "Clinton ekes out win in Iowa against Sanders: ['REAL']\n", + "Hillary Clinton tributes fuel 2016 buzz: ['FAKE']\n", + "If You're Tired of Carving Pumpkins the Old-Fashioned Way, Try It Like This Gal--with a .22 Rifle: ['REAL']\n", + "Trolls 101 —- How To Identify Trolls And Forum Spies: ['REAL']\n", + "Re: What security threat? Huma Abedin doesn’t know how her emails got on her husband’s laptop, either: ['REAL']\n", + "“MODERATE” INDONESIA: Protest against a Christian governor turns violent as more than 100,000 Muslims demand death for Christian governor who “blasphemed” Islam: ['REAL']\n", + "Facebook Isn’t Just Making Us Less Partisan. It’s Making Us Less Politically Engaged.: ['REAL']\n", + "Polling Site Corruption Enraged New Yorkers [Update] · Guardian Liberty Voice: ['FAKE']\n", + "Votes Being Switched In Multiple States To Clinton: ['FAKE']\n", + "WHAT EVERYDAY LIFE IS REALLY LIKE IN CUBA UNDER RAÚL CASTRO: ['FAKE']\n", + "GOP's message to voters should be this: Supreme Court fight is about Obama's abuse of power: ['FAKE']\n", + "Progressive Hypocrisy On Tolerance BRUTALLY Exposed: ['FAKE']\n", + "Sen. Kirsten Gillibrand Says Supreme Court Decision On Marriage Equality 'Just the Beginning': ['REAL']\n", + "After a terrible week Trump sticks with style over substance in Wisconsin: ['REAL']\n", + "7 takeaways from the Republican debate: ['REAL']\n", + "Clinton's super PAC fundraising irks progressives: ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Clinton’s Policy On Syria Will Lead To WW3 Says Trump: ['FAKE']\n", + "Rand Paul: I won the debate last night: ['REAL']\n", + "A Pimp Just Revealed Trump Also Raped 12-Year-Old Girl, Threat To Kill Witnesses: ['REAL']\n", + "Rapper Lil Wayne: “My Life Was Saved by a White Man. I Don’t Know What Racism is.”: ['FAKE']\n", + "Evangelical Leader: Trump Campaign Broken from the Inside: ['REAL']\n", + "These political scientists may have just discovered why U.S. politics are a disaster: ['FAKE']\n", + "Jindal won't \"evolve\" on same-sex marriage: ['REAL']\n", + "New Report Blames Air Pollution For Deaths Of 600,000 Children Every Year: ['REAL']\n", + "Russia and Iran both propping up Assad. A balancing act?: ['FAKE']\n", + "Elizabeth Warren Backs Hillary Clinton: ['FAKE']\n", + "Friend from university is an arse now: ['REAL']\n", + "Critics on Islam: Time to Face Facts, Mr. President: ['FAKE']\n", + "Massive “Hillary For Prison” sign held up at World Series game 5 infuriates liberals: ['FAKE']\n", + "Trump and Brexit Defeat Globalism, for Now Anyway: ['REAL']\n", + "Clinton ‘appalled’ by effort to recoup veterans’ bonuses: ['FAKE']\n", + "Is Your VACCINATED Child a ‘Haz Mat’?: ['REAL']\n", + "Distracted by Election 2016, No One Resisted the Deep State’s Patriot Act 2: ['FAKE']\n", + "Republican women increasingly fear party is alienating female voters: ['REAL']\n", + "Police arrest suspects across Europe in rush to minimize terror threat (+video): ['REAL']\n", + "Russia Preparing for Nuclear World War III with NATO USA Breaking News November 5 2016: ['FAKE']\n", + "Jeb Bush invokes MLK as he unveils education plan: ['REAL']\n", + "Trump tries to smooth things over with GOP insiders: ['FAKE']\n", + "Deutsche Bank Considering Alternatives To Paying Cash Bonus: ['REAL']\n", + "Black Trump Supporter: ‘We need somebody that loves America’: ['FAKE']\n", + "Pope Francis announces biggest changes to annulment process in centuries: ['FAKE']\n", + "GOP Presidential Hopefuls Serve Up Ice Cream, Cheese And Red Meat To Iowans: ['FAKE']\n", + "Lots Of Candidates Want To Simplify Tax Code; Here's What They Get Wrong: ['REAL']\n", + "Hillary Clinton explains why she won't say 'radical Islam': ['REAL']\n", + "Law enforcement took more stuff from people than burglars did last year: ['REAL']\n", + "Trump launches 1st TV ad, as 2016 candidates barnstorm Iowa, NH: ['REAL']\n", + "US uses Tunisia as drone base for Libya operations - report: ['REAL']\n", + "For the Record: Iowa, why can't we quit you?: ['REAL']\n", + "Gingrich slut-shames Megyn Kelly: ['REAL']\n", + "US economy added 223,000 jobs in April: ['REAL']\n", + "Education Secretary Arne Duncan stepping down: ['FAKE']\n", + "Comment on Macy’s “dump Trump” backfires as 30,000 irate customers cut up their cards by MeThePeople: ['FAKE']\n", + "Blood money, killer cops: How privatization is funding the racist logic of America’s police: ['FAKE']\n", + "17 Shot Dead As Chicago Records Deadliest Weekend Of 2016: ['FAKE']\n", + "The New World Order is melting in the heat of its own contradiction: ['REAL']\n", + "November 3: Daily Contrarian Reads: ['REAL']\n", + "Living in a 5G World: Wireless Pollution is Getting Out of Control: ['FAKE']\n", + "Trump vows to win: 'I'm not going anywhere': ['FAKE']\n", + "The Greatest Wealth Transfer In History Nears As ‘Deep State’ Now Pulling Out All The Stops: ['REAL']\n", + "Concert plus campaign: Clinton turns to celebrities in homestretch: ['REAL']\n", + "Worst Of Saudi Economic Slump Yet To Come: ['FAKE']\n", + "HA HA! Look At Arkansas Today Trump +28: ['REAL']\n", + "State Department will not release 22 'top secret' Clinton emails: ['REAL']\n", + "Hillary's Iowa reset: Is it enough?: ['REAL']\n", + "Huma’s Weiner Dogs Hillary: ['REAL']\n", + "A lawyer explains how Ariel could have got out of her contract with Ursula in The Little Mermaid: ['FAKE']\n", + "Obese Woman Loses More Than 100 Kilograms After Breaking Up With Her Feeder Boyfriend: ['FAKE']\n", + "Trump Supporter Arrested for Voting Twice…to fight “vote rigging”: ['FAKE']\n", + "Do Trump's Groping, Clinton's Lying, & Johnson's Honesty Disqualify Them from the Presidency?: ['FAKE']\n", + "GOP leadership race gets personal: ['REAL']\n", + "Frustrated Trump advisers pan him for lousy debate prep (anonymously): ['FAKE']\n", + "Re: Are There 4 Million Dead Voters Waiting To Elect Hillary Clinton?: ['FAKE']\n", + "Human Rights group alarmed at extra-judicial killings of MQM workers' by para-military force in Pakistan: ['REAL']\n", + "Don’t underestimate Rand Paul as a 2016 presidential contender: ['REAL']\n", + "Russia joins France striking ISIS stronghold in Syria: ['FAKE']\n", + "John Boehner's parting gift to Paul Ryan: ['REAL']\n", + "Six Gulf Protectors Arrested Challenging Gulf Oil Drilling: ['FAKE']\n", + "Jeb Bush just proved that Dubya was the smart one all along: ['REAL']\n", + "Bill Clinton makes powerful case for Hillary in personal speech at the DNC: ['REAL']\n", + "CodeSOD: A Type of Test: ['REAL']\n", + "Man wildly optimistic ahead of flat pack assembly: ['REAL']\n", + "Middle Class Decline Looms over Final Years of Obama Presidency: ['REAL']\n", + "Breaking Down the Crooked Clintons with Special Guest: ChangeDaChannel: ['FAKE']\n", + "The 2016 election in 5 easy charts: ['REAL']\n", + "America's racial generation gap takes an ugly political turn: ['REAL']\n", + "Video shows moment of 'El Chapo's' escape from prison: ['REAL']\n", + "Charles Koch Pines For More Influence In Republican Presidential Primary: ['REAL']\n", + "Private Equity Consultant Hamilton Lane Trots Out New Excuse, “Evil Populists,” for Already-Flagging Private Equity Performance: ['FAKE']\n", + "Senator Mark Kirk Mocks Disabled Veteran Tammy Duckworth for Mixed-Race Heritage: ['REAL']\n", + "The Daily 202: How Democrats are dominating early voting in Nevada: ['REAL']\n", + "New Exoplanet Discoveries Reveal Red-Dwarf Stars as Likely Hosts to Large Populations of Earth-Like Water Worlds: ['FAKE']\n", + "3 Charlotte Area Counties Report Voting Machines Picking Wrong Candidates: ['REAL']\n", + "Clinton crime family must be taken down... ARREST THEM ALL: Clinton, Podesta, Abedin, Lynch, Mook, Stephanopoulos and all the co-conspirators: ['REAL']\n", + "SOME FLA. RESIDENTS PLAN ARMED TRICK-OR-TREATING AFTER CREEPY CLOWN THREATS: ['REAL']\n", + "Donald Trump, a fallen soldier, and the myth of game-changing moments: ['REAL']\n", + "Putin Takes On The NWO, October 2016: ['FAKE']\n", + "Zakharova: The US is protecting Al-Nusra from being destroyed: ['REAL']\n", + "Eric Trump: A candidate under investigation is ‘unthinkable’: ['FAKE']\n", + "Texas troopers to ask drivers their race following investigation: ['FAKE']\n", + "Michael Hudson on Meet the Renegades: ['REAL']\n", + "Is This Trump’s Biggest Financial Con Yet?: ['REAL']\n", + "‘Conspiracy Theorists’ Believe They’ve Found Justice Scalia’s MURDER Plot: ['REAL']\n", + "Re: Get Ready For Civil Unrest: Survey Finds That Most Americans Are Concerned About Election Violence: ['REAL']\n", + "Combat veterans face ‘cruel’ struggle to prove their service to VA, amid missing records: ['REAL']\n", + "This Is The Future: Tree-Shaped Vertical Farms That Grow 24 Acres Of Crops: ['REAL']\n", + "Among this group of GOP primary voters, Trump is the Porsche of candidates: ['REAL']\n", + "Jordan Strikes At ISIS; Obama Said To Be Preparing To Request War Powers: ['FAKE']\n", + "Clinton's emotional concession: This is 'painful and will be for a long time': ['FAKE']\n", + "Blind Mystic Who Predicted 9/11 Has Bad News About Trump: ['REAL']\n", + "Inside Bernie Sanders’s quest to win over Nevada’s Latinos: ['REAL']\n", + "Hillary’s #1 aide Huma Abedin: Undeniable ties to terrorists & 9/11 funders: ['REAL']\n", + "Private Equity Energy Funds Did So Badly They Might Have to Do the Unthinkable – Pay Clawbacks: ['FAKE']\n", + "Rand Paul drops out of White House race: ['REAL']\n", + "Open Thread (NOT U.S. Election) 2016-38: ['FAKE']\n", + "Why many black voters aren't flocking to Bernie Sanders: ['REAL']\n", + "Libertarian Party set to pick nominee at convention: ['REAL']\n", + "Donald Trump's tough path to the White House: ['FAKE']\n", + "Gavel Battle: Boehner resignation sparks House leadership scramble: ['REAL']\n", + "UK announces new troop deployment near Russia's borders: ['FAKE']\n", + "Trump Campaign Says Hillary Supporter Tried Assassinating Trump – It Was A Republican With A Poster: ['REAL']\n", + "Obama Slams Staples, Big Companies On Health Care: 'Shame On Them': ['REAL']\n", + "AP fakes the news: ['REAL']\n", + "COPS AMBUSHED IN IOWA: ['REAL']\n", + "Poll: Las Vegas debate doesn't scramble GOP field: ['FAKE']\n", + "As Cruz Crushes Caucuses, GOP Establishment Needs a Drink And A Hug: ['REAL']\n", + "Re: Early Voting Results In Key Battleground States Appear To Favor Donald Trump: ['REAL']\n", + "Hillary Personally Ordered ‘Donald Duck’ Troll Campaign: ['REAL']\n", + "In rush to reclaim Yemen, exiled leaders risk fracturing it: ['REAL']\n", + "Clinton charities reportedly will refile tax returns due to foreign donation reporting errors: ['REAL']\n", + "PSVITA Japan News : Moe Moe World War 3 + Chaos Child Love Chu Chu + Musou Stars: ['FAKE']\n", + "The 'Pit' in Mom's Stomach Turns to Anger When She Learns Why Her Son Isn't on the School Bus: ['REAL']\n", + "Supreme Court’s political stench: Why John Roberts will obviously base his Obamacare decision on politics: ['FAKE']\n", + "Here is Elon Musk’s True Mars On Earth Plan: ['REAL']\n", + "Donald Trump kicks off final campaign day with Fla. rally: ['REAL']\n", + "A Complete Guide To Early And Absentee Voting: ['REAL']\n", + "Russia Has Shot From 124th to 40th in 'Ease of Doing Business': ['REAL']\n", + "The Penalty For Treason Is… [Video]: ['FAKE']\n", + "Reported two-month gap in Clinton emails coincides with escalating Libya violence: ['REAL']\n", + "Letter to Judge in Bundy Case in Oregon: ['REAL']\n", + "Koch-backed network aims to spend nearly $1 billion ahead of 2016 elections, may engage in GOP primaries: ['FAKE']\n", + "Syrian Army Enters Metro Damascus Town, Driving Rebels Further Back: ['REAL']\n", + "Obamacare threatens John Roberts’s dream of a nonpartisan Supreme Court: ['FAKE']\n", + "Obama's Trade Agenda Clears Key Senate Hurdle: ['REAL']\n", + "All Governments Lie, The Movie: ['REAL']\n", + "Fighting ISIS will be a long war: ['FAKE']\n", + "Hillary Clinton’s “Sudden Move” Of $1.8 Billion To Qatar Central Bank Stuns Financial World: ['REAL']\n", + "Hillary's 33,000 emails might not be 'missing' after all: ['REAL']\n", + "Hillary Clinton's worst nightmare: Hint -- it's not Bernie Sanders: ['REAL']\n", + "Another Project Veritas Bombshell: Pro-Clinton PAC Accepts Foreign Donations: ['REAL']\n", + "Memo to Trump: 'Action This Day!': ['REAL']\n", + "Gerrymandering didn’t make politics this vicious. But vicious politics will soon make gerrymandering so much worse.: ['REAL']\n", + "Guns, terror, and LGBT rights: Orlando shooting raises stakes for next president: ['FAKE']\n", + "Barbara Mikulski , the longest serving female senator in history, to retire: ['REAL']\n", + "Gowdy and Cummings duke it out over Benghazi: ['REAL']\n", + "Conservative watchdog group accuses Democrats of illegally coordinating through voter data firm: ['REAL']\n", + "100 Years Ago, 1.5 Million Armenians Were Systematically Killed. Today, It's Still Not A 'Genocide.': ['REAL']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Millennials Are More Racist Than They Think: ['REAL']\n", + "Apple Kindly Offer Full-Time Jobs To Remaining 1,500 Calais Refugee Children: ['REAL']\n", + "The Mystery Behind The Missing Capstone Of The Great Pyramid!: ['FAKE']\n", + "Trump replays Clinton 'woman card,' defends 'pull out' Middle East strategy: ['FAKE']\n", + "Hillary Clinton Maintains Swing State Leads As Comey Email Letter Flops: ['FAKE']\n", + "The GOP’s establishment candidates begin aiming at each other: ['REAL']\n", + "\"Russia is concentrating\" 2.0: Putin's new policy of \"active defense\": ['REAL']\n", + "Study: More Vitamin B In Mother’s Diet Reduces Risk Of Colon Cancer In Offspring: ['REAL']\n", + "Insiders: Clinton still on track to win Iowa and N.H.: ['FAKE']\n", + "New poll finds 9 in 10 Native Americans aren’t offended by Redskins name: ['FAKE']\n", + "Comment on Invention Secrecy At All-Time High: Thousands Of Patent Applications Placed Under Secrecy Orders by Physicists Say Consciousness Should Be Considered A State of Matter: The “Non Physical” Is Real – Collective Evolution: ['REAL']\n", + "The Trump Network sought to make people rich, but left behind disappointment: ['REAL']\n", + "House GOP leaders desperate to avoid shutdown: ['FAKE']\n", + "Comment on Chicago Tribune: Hillary Clinton should drop her campaign to be POTUS by stevor: ['REAL']\n", + "Hillary Clinton v Donald Trump in 2016: ['FAKE']\n", + "Clinton, Sanders clash over Obama, more at testy debate: ['REAL']\n", + "Yemen and YET another “False Flag” to Protect Saudi and US Interests in the Middle East | New Eastern Outlook: ['REAL']\n", + "What is Comey up to and who is he working for?: ['FAKE']\n", + "As first voting nears, Trump seems stronger: ['FAKE']\n", + "3 reasons the economy boomed in 2015: ['FAKE']\n", + "Comment on Nomi Prins: Hillary Clinton Will Continue the Big Bank Protection Racket by EndOfTheWorld: ['REAL']\n", + "Can't say under God at Hilary speech!?!??!??: ['FAKE']\n", + "It’s Rigged! Voters Discover Shocking Mistake On Ballots: Don’t Let This Happen To You!: ['FAKE']\n", + "8 POINTS VANISH IN 4 DAYS: ['REAL']\n", + "Donald Trump, Paul Ryan and GOP 'unity.' It's all about the numbers, America: ['REAL']\n", + "Comment on Jury Finds Woman NOT Guilty of ‘Manufacturing Drugs’ Because the Pot She Grew Was Medicine by James Michael: ['REAL']\n", + "Associated Press reporter admits faking news stories for Hillary Clinton.: ['REAL']\n", + "The no-transparency election: ['FAKE']\n", + "It’s on: Tensions between Trump and the GOP escalate in public fight: ['FAKE']\n", + "The Pathologization of Dissent: ['REAL']\n", + "Hillary Clinton Holds 6-Point Lead Despite FBI Probe [Update]: ['REAL']\n", + "If Donald Trump wants to beat Hillary Clinton, he needs to win these 5 states: ['FAKE']\n", + "CLINTON CAMPAIGN CHAIRMAN HAD MULTIPLE DINNERS WITH TOP DOJ OFFICIAL DURING HILLARY'S EMAIL INVESTIGATION: ['REAL']\n", + "Reid plotting to stay in power: ['FAKE']\n", + "Under the Surface - Naomi Klein and the Great Barrier Reef: ['REAL']\n", + "Trump shakes up campaign, prepares to roll out long-awaited ads: ['REAL']\n", + "Election: “Today, a kingdom will be toppled.”: ['FAKE']\n", + "Donald Trump Elected 45th President Of The United States: ['REAL']\n", + "Unskewing Facebook will take all kinds: Column: ['FAKE']\n", + "State parties can reduce polarization and improve the political system | Institution: ['FAKE']\n", + "Immigration Puzzle Confounds Republican 2016 Field: ['REAL']\n", + "Washington, DC, workers to get 16 weeks paid leave under city hall plan that taxes businesses: ['REAL']\n", + "House Committee Votes To Remind Congress Its Job Is To Authorize Wars: ['REAL']\n", + "Jeb Bush Weighs In On Same-Sex Marriage: ['REAL']\n", + "Insiders: Trump and Clinton will carry Iowa: ['REAL']\n", + "New RNC Ad Campaign Reminds Voters Obamacare Was Originally 'Hillarycare': ['REAL']\n", + "Comment on 5 Corporations Own The U.S. Media – We’ve Been Conditioned How To Think, What To Think, And What To Do by You’re Being Fooled: The Problem With ‘Alternative’ News Websites – Collective Evolution: ['FAKE']\n", + "Black and a member of the 1% elite: ['REAL']\n", + "No Proof Russia Hacked Hillary's E-mail: ['REAL']\n", + "It’s Over For Hillary After People See What She Snuck In Her Online Post: ['REAL']\n", + "Core Wounds, Soul Family Reunions, and Time Glitches [AUDIO]: ['REAL']\n", + "Christie launches PAC in significant step toward White House run: ['REAL']\n", + "Is it possible that Saudi King be tried in US courts by JASTA Law?: ['FAKE']\n", + "Hillary Clinton had an amazing night — and not just because of her victories: ['REAL']\n", + "Election 2015 Highlights: Who Won, Who Lost?: ['FAKE']\n", + "ICE spends millions flying illegal immigrant children across US: ['FAKE']\n", + "2017 Stock Market Crash? Eric Dubin on Markets and the Election Shocker: ['REAL']\n", + "US-led airstrike kills at least 30 Afghan civilians: ['REAL']\n", + "US ‘Laying Groundwork’ For Raqqa Offensive In Syria: ['FAKE']\n", + "Is Something Wrong With Hillary? Will NOT Concede Tonight – Refuses To Speak To Crowd – Health Episode?: ['REAL']\n", + "30 Civilians Die In US Airstrike Called ‘To Protect US and Afghan troops’: ['REAL']\n", + "Sanders sweeps in Alaska, Hawaii, Washington, but too little too late?: ['REAL']\n", + "The Glorious New PC NFL Starts Next Monday!: ['REAL']\n", + "GOP searches for Obamacare fix: ['FAKE']\n", + "How Grey are the White Helmets and Their Backers?: ['REAL']\n", + "Flint, Michigan: Neglected because city is black, poor?: ['REAL']\n", + "Malala Announced That She Plans To Become Prime Minister Of Pakistan: ['REAL']\n", + "A Mr. Clark Kent arrested for public phone box indecency. More soon.: ['REAL']\n", + "Sanders, Clinton talk immigration, battle for Hispanic vote before big California primary: ['FAKE']\n", + "Jesse Matthew charged in Hannah Graham slaying: ['FAKE']\n", + "Judge Blocks President Obama's Immigration Order: ['REAL']\n", + "Another Trump Surrogate Admits Trump Won’t Build That Effing Wall (VIDEO): ['REAL']\n", + "Whether Clinton or Trump, Tensions Will Escalate with China and Russia Under Next U.S. President: ['FAKE']\n", + "Trump names three apparent vice-presidential possibilities on Twitter: ['REAL']\n", + "Google appoints Vice-President | Katehon think tank. Geopolitics & Tradition: ['REAL']\n", + "The accidental case against Obamacare: ['FAKE']\n", + "ISIS Empire: Smuggling, shakedowns, donations feed swelling terror budget: ['FAKE']\n", + "Cruz wins CPAC presidential straw poll: ['REAL']\n", + "Hawaii’s $205M ObamaCare system on life support, critics fear ‘complete waste’: ['REAL']\n", + "Biden Blames “Lazy American Women” For The Economy: “They Sit Around Doing Nothing, Only Hillary Can Force Them To Work”: ['REAL']\n", + "North Dakota Pipeline: Cell Service Blacked Out As Violence Against Protesters Increases: ['REAL']\n", + "Break the Silence or Support Self-Determination? In Syria, the Answer Should be Obvious: ['FAKE']\n", + "Walmart Boosts Minimum Wage to $9/Hour: ['REAL']\n", + "Trump is The Lesser Evil Because He’s Such a Narcissist :: ['FAKE']\n", + "Clinton Campaign Circulated Paul Ryan Relative as Possible Supreme Court Pick: ['REAL']\n", + "WikiLeaks Bombshell: ‘There Is No US Election’: ['FAKE']\n", + "Exposed: Stunning CNN Super Damage Control In Response To “Damning” Videos (VIDEO): ['FAKE']\n", + "Did Gary Johnson Just Get Boxed Out of the Debates?: ['REAL']\n", + "Trump campaign woes intensify amid questions over Melania's visa – as it happened: ['REAL']\n", + "Unbrexit! Parliament must vote on triggering article 50: the 9 funniest, most ironic reactions: ['REAL']\n", + "Allen West Reveals How Obama’s Pentagon Just Destroyed Recruiting Efforts for Decades: ['REAL']\n", + "UPLIFTING: Anaheim Ducks Honor Bomb Detection K9 During ‘Military Appreciation Night’: ['REAL']\n", + "Comment on An ex-police Sergent tells how and why you should fight ALL speeding fines by Sinead: ['REAL']\n", + "After Trump’s Super Tuesday romp, GOP establishment seeks unity to slow surge: ['REAL']\n", + "74 children executed by ISIS for 'crimes' that include refusal to fast, report says: ['FAKE']\n", + "On Capitol Hill, deep skepticism persists as lawmakers react to Iran deal: ['FAKE']\n", + "Heart disease kills way more people than war, murder, and traffic accidents combined: ['REAL']\n", + "DOJ Tried Repeatedly To Kill FBI’s Clinton Foundation Investigation: ['FAKE']\n", + "#MemeOfTheWeek: The Strange, Sad Case Of #FeelTheChafe: ['REAL']\n", + "Donald Trump to Ben Carson: You’re Fired… From My VP Team: ['FAKE']\n", + "Christie Lost Republicans The 2012 Election. He May Be Losing Them The 2016 Election, Too.: ['FAKE']\n", + "ObamaCare: Things Fall Apart: ['FAKE']\n", + "There’s a good reason protesters at the University of Missouri didn’t want the media around: ['REAL']\n", + "I'm Not Voting \"For\" Donald Trump. I'm Voting To Stop The Clintons From Consolidating Power.: ['FAKE']\n", + "As fixes for Obamacare begin, meet the hopelessly confusing ‘all-payer model’: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Iran nuclear deal: why White House rules foreign policy: ['REAL']\n", + "Russia Tests Stealth Hypersonic Nuke Capable of Wiping Texas or France: ['FAKE']\n", + "Russia's countersanctions for Syria will hit the West below the belt: ['FAKE']\n", + "Will James Comey Change the Outcome of the Election?: ['FAKE']\n", + "Slavic Brotherhood 2016: Russia, Serbia & Belarus hold joint military drills: ['FAKE']\n", + "Obama Argues Against Goverment Shutdown Over Planned Parenthood: ['REAL']\n", + "9/11 Firefighters Reveal Bombs Destroyed WTC lobby: ['REAL']\n", + "Is the Supreme Court Too Powerful? - Room for Debate - NYTimes.com: ['FAKE']\n", + "THE CLINTON/VATICAN/TEHRAN AXIS: ['FAKE']\n", + "House votes to block Obama’s immigration actions — but exposes new GOP divisions: ['REAL']\n", + "Clinton takes four states, giving a big boost to her delegate total: ['REAL']\n", + "This man wants to become president, pass one law, and resign: ['FAKE']\n", + "GOD Has Chosen Trump: ['FAKE']\n", + "Indian princess watches over rare paleontological remains: ['REAL']\n", + "Colin is looking for a songwriting partner: ['FAKE']\n", + "Did Trump go too far?: ['FAKE']\n", + "Die Hard 3 Predicts Hillary Clinton To be President: ['REAL']\n", + "Behind the Biden hype: ['REAL']\n", + "Primary election: What to watch on Super Tuesday 2: ['REAL']\n", + "Soy should not be consumed in significant quantities unless it has been fermented or otherwise traditionally processed; industrially processed soy should be avoided: ['REAL']\n", + "Kim Davis's right to religious liberty has been grossly violated: ['FAKE']\n", + "As Rubio stumbles, race for second place tightens in New Hampshire (+video): ['FAKE']\n", + "Crooked Hillary Campaign Used A Green Screen At Today’s Low Turnout Rally In Coconut Creek FL: ['REAL']\n", + "Get Ready For Civil Unrest: Most Americans Are Concerned About Election Violence: ['REAL']\n", + "How to Build a Prepper’s Medical Emergency Kit on a Budget: ['REAL']\n", + "Sometimes Bill and Hillary Clinton Have the Worst Judgment - Wikileaks: ['REAL']\n", + "Evangelicals Sing a New Tune on Trump: 'Meeting May Be a Tipping Point': ['REAL']\n", + "This is how Ted Cruz wins: Why the formerly unthinkable could really, actually happen: ['REAL']\n", + "Disgraced Hedge Fund Manager Focuses on Aiding Veterans: ['FAKE']\n", + "Evidence Reveals Possible Link Between Voting Machines And Clinton Foundation: ['FAKE']\n", + "Macy's is the latest to cut ties with Donald Trump: ['REAL']\n", + "Globalization Expressway to Universal Slavery: ['REAL']\n", + "The Awkward Arranged Marriage of Trump and Pence: ['FAKE']\n", + "Now Malaysia Dumps US for Chinese Naval Vessels: ['FAKE']\n", + "New NASA Footage Films UFO Flying Past: ['REAL']\n", + "On Being Aloof and Democratic: ['REAL']\n", + "Ballot stuffing by fat obese feminazis: ['REAL']\n", + "What advantages does Marco Rubio have?: ['REAL']\n", + "Video: We Now Have Proof Obamacare Was Designed to Fail… and Here’s Why: ['FAKE']\n", + "Post-ABC poll finds tight presidential race, with mixed reaction to FBI’s review of Clinton’s emails: ['FAKE']\n", + "The GOP still has nothing to show for its anti-Planned Parenthood campaign: ['REAL']\n", + "Warning or threat? Hillary hints at second civil war if Trump wins: ['REAL']\n", + "Looking To 2015, Economists See 5 Reasons To Celebrate: ['FAKE']\n", + "Project Veritas Reveals Who Was REALLY Behind Romney’s 47% Video: ['REAL']\n", + "Rick Perry drops out of 2016 presidential race: ['FAKE']\n", + "'Basket of deplorables': For once, Hillary told the truth about what she really thinks: ['REAL']\n", + "Clinton campaign scrambles to defend Rust Belt against Trump: ['FAKE']\n", + "Clinton Emails Linked To Political Pedophile Sex Ring – FBI Insider | EndingFed News Network: ['FAKE']\n", + "How this WWII airman is helping veterans heal with the help of 4-legged friends: ['REAL']\n", + "Life: Lucky Break: This Teen Boy Just Got Another 4 Years To Plan His Viral Coming-Out Video: ['REAL']\n", + "Paul Ryan Must Step Down as Speaker of the House: ['FAKE']\n", + "Eric Holder bids farewell to Justice Department: ['FAKE']\n", + "The Homo Economicus Straw Man: ['REAL']\n", + "Huckabee Appearing at Trump Event in Iowa: ['REAL']\n", + "David Fry Released From Jail: ['REAL']\n", + "Why Sen. Mitch McConnell won’t budge on the Supreme Court nomination: ['REAL']\n", + "Sorry Gov. Kasich, ‘Electability’ Is Bunk: ['REAL']\n", + "For 2016, Hillary Clinton has commanding lead over Democrats, GOP race wide open: ['FAKE']\n", + "Surprise! Donald Trump is wrong about immigrants and crime.: ['REAL']\n", + "The State Department hasn’t been authorized in 13 years: ['REAL']\n", + "Will Wednesday’s GOP debate move the discourse from flash to substance?: ['REAL']\n", + "Carson threatens to leave Republican Party: ['REAL']\n", + "Mass shootings appear to be spiraling out of control. Are they? (+video): ['REAL']\n", + "Is Hillary Clinton too big to indict? (+video): ['FAKE']\n", + "‘Go Back to Where You Claim Home,’ Kansas Lawmaker Tells Protester: ['REAL']\n", + "Sufism in the Service of Empire: the Case of the Maryamiyyah: ['REAL']\n", + "US Secret Service Struggles To Find Recruits Who Haven’t Used Adderall: ['FAKE']\n", + "Hallowe'en - The Day of the Aos Si: ['REAL']\n", + "C праздником ребята и спасибо вам!: ['REAL']\n", + "McConnell: No lame duck confirmation: ['REAL']\n", + "UK Interested in Strong Energy Sector, Stable Int'l Market - Ex-Minister: ['REAL']\n", + "In West Baltimore, some residents see rioting as a rational response to daily despair: ['FAKE']\n", + "DOJ will not prosecute former Ferguson police officer Darren Wilson: ['REAL']\n", + "Pain, anger and fear: US voters deprived of a serious presidential election: ['FAKE']\n", + "After Kim Davis is jailed, marriage license issued: ['FAKE']\n", + "Watch President Obama Full Speech on Donald Trump Win: ['REAL']\n", + "API Reports A Build, DOE A Draw: ['REAL']\n", + "No, Russia Is Not ‘Isolated’ Or The ‘Enemy’: ['REAL']\n", + "Anonymous: Hillary Could Be In Handcuffs In 72 Hours!: ['REAL']\n", + "Place your bets now. How much does someone’s world view predict their other attitudes?: ['REAL']\n", + "For People Who Are Worried About Druckenmiller Selling His Gold…: ['REAL']\n", + "The joke was that Obama wasn’t joking: ['REAL']\n", + "Scientists say weird signals from space are 'probably' aliens: ['FAKE']\n", + "Andrew Maguire: ['REAL']\n", + "Netanyahu warns that nuclear deal ‘paves Iran’s path’ to a bomb: ['FAKE']\n", + "Robert Vaughn dies after hearing Trumphole wins: ['REAL']\n", + "Fifth Varshavyanka submarine joins Russia’s Navy | Russia & India Report: ['REAL']\n", + "Democrats see chance to reshape map as Trump stumbles: ['FAKE']\n", + "One year after Obama embraced Cuba, what has changed?: ['FAKE']\n", + "WATCH: Joe Biden senses ‘Danger’ for Hillary in this PRICELESS reaction to #WeinerGate development: ['REAL']\n", + "Obama Throws Hillary Clinton Under The Bus, Supports Director Comey: ['FAKE']\n", + "Orlando probe intensifies as feds eye gunman's wife, possible ties to international terror: ['FAKE']\n", + "Obama touts progress against ISIS, sets low expectations for Russian cooperation: ['REAL']\n", + "5 takeaways from New Hampshire: ['FAKE']\n", + "Escaped killers' ride backed out, source says: ['REAL']\n", + "Radio Derb: Peak White Guilt, PC Now To The LEFT Of Marxism, And Voices from the Mencken Club, Etc.: ['REAL']\n", + "Brace Yourself: The Presidential Election Is Going To Be All About Anger: ['FAKE']\n", + "Why Netanyahu victory isn't likely to make US-Israel relations worse (+video): ['REAL']\n", + "Officials State New Clinton Emails Discovered as Part of Anthony Weiner ‘Sexting’ Investigation: ['REAL']\n", + "Is Who Hacked Podesta’s Emails the Issue or the Fact they are True?: ['REAL']\n", + "Paul Craig Roberts: Trump faces assasination: ['FAKE']\n", + "Homeland Security Chairman, “Hillary’s Mishandling of Classified Information is Treason” – TruthFeed: ['REAL']\n", + "The case for a Clinton-Warren ticket: ['FAKE']\n", + "Black Lives Matter leader DeRay McKesson endorses Clinton: ['REAL']\n", + "Democratic Party Leaders, Bernie Sanders Spar Over Nevada Convention Chaos: ['REAL']\n", + "Joe Biden: He's right not to run (Opinion): ['FAKE']\n", + "New York Times endorses Hillary Clinton, John Kasich for nominations: ['REAL']\n", + "“Your little brother is not the ultimate authority”: How Jeb Bush cheated America & helped deliver the presidency to W: ['REAL']\n", + "Comment on What’s that strange lump embedded in Hillary Clinton’s face? by mildred.kraus: ['REAL']\n", + "Hillary Clinton Tops \"Islamist Money in Politics\" List: ['FAKE']\n", + "Netanyahu poised for third straight term as Israel PM after chief rival concedes: ['FAKE']\n", + "Clinton says she'll decide about 2016 next year: ['FAKE']\n", + "Humans Came Out Of Australia Not Africa: ['REAL']\n", + "Russia, China Look To Autonomous Financial System: ['REAL']\n", + "Biden Blames “Lazy American Women” For The Economy: “They Sit Around Doing Nothing, Only Hillary Can Force Them To Work”: ['REAL']\n", + "5.0 Quake Near Oklahoma Oil Hub Causes Substantial Damage: ['REAL']\n", + "OpEds | Eric Zuesse: 34 Reasons This Bernie Voter Will Vote Trump: ['FAKE']\n", + "BREAKING: Hillary’s State Department Spent $9.2 Million Hiring the Terrorists Who Attacked Americans in Benghazi: ['REAL']\n", + "The 5 big things we learned about Congress in 2015: ['REAL']\n", + "Reuters/Ipsos Poll: Trump Closes in on Clinton's Projected Electoral Lead: ['FAKE']\n", + "UN Chief urges South Africa to reconsider quitting ICC: ['REAL']\n", + "“If Trump Loses, I’m Grabbing My Musket”: Former Congressman Ready to Go Full Revolution: ['FAKE']\n", + "Drama On The Docket: High Court's Term Set To End With Slate Of Big Cases: ['REAL']\n", + "A liberal plan to defeat ISIS: Here’s how we avoid Ted Cruz’s religious police state: ['FAKE']\n", + "Benghazi: The fundamental question that still hasn't been answered: ['FAKE']\n", + "U.S. Near Bottom in Public ‘Confidence in Elections’: ['REAL']\n", + "A surprisingly fascinating theory for why Canada is so boring: ['FAKE']\n", + "Will the next US president be a psycho lesbian? (plus 2 breaking news videos): ['FAKE']\n", + "Word Via Ned Dougherty Nov 1, 2016: ['REAL']\n", + "Trump suggests 'profiling' of Muslims as response to terrorism: ['FAKE']\n", + "Gary Johnson snags newspaper endorsement: ['REAL']\n", + "Gay Marriage Ruling Fallout: Christian Leaders React: ['FAKE']\n", + "Should NBC have let Donald Trump host 'Saturday Night Live'?: ['FAKE']\n", + "Vital VA hospital project in limbo as price tag soars, lawmakers vow no ‘bail-out’: ['REAL']\n", + "House committee passes bill that cuts Amtrak funding: ['REAL']\n", + "Ohio delegation blasts Mount McKinley name change: ['FAKE']\n", + "2:00PM Water Cooler 11/4/2016: ['REAL']\n", + "Jordan signals escalation vs. Islamic State: ['FAKE']\n", + "Clinton's best defense -- there's no one else: ['REAL']\n", + "The new war on the press: When satire sparks terrorism: ['REAL']\n", + "Apostate Evangelicals Are Poised To Become The Deciding Factor In A Hillary Clinton Election Victory: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BREAKING : Sources Inside the FBI Say Hillary Will Be INDICTED in Early 2017 – TruthFeed: ['REAL']\n", + "Donald Trump says he doesn’t need a unified GOP. Logic and math suggest otherwise.: ['REAL']\n", + "At least 20 hostages dead in siege of hotel in Mali, official says: ['FAKE']\n", + "Stabbing Injures Seven People in Newark Home · Guardian Liberty Voice: ['REAL']\n", + "Clinton Staffer Caught Sacrificing Baby to Demon Moloch - Wikileaks: ['FAKE']\n", + "Arkansas Republicans Put The Word “Liar” In Hillary’s Name On Ballot: ['REAL']\n", + "ISIS uses an industrial dough kneader to kill 250 children, roasts adults in a bakery oven in Douma, Syria: ['REAL']\n", + "Millennials Just Aren't That Into Hillary Clinton, and it Could Cost Her the Election: ['REAL']\n", + "Jaish Al-Fatah Leader Admits Receiving Financial, Military Aid from Saudi Arabia: ['FAKE']\n", + "Defiant Paul says he can still grow GOP: ['FAKE']\n", + "Takeaways from the Republican debate: ['REAL']\n", + "Eamon Dunphy & George Hook Enter 12th Hour Of ‘Who’s More Controversial’ Debate: ['FAKE']\n", + "The Real Reason Behind Saakashvili's Resignation: ['REAL']\n", + "Will interest rates go up? Five things to expect: ['REAL']\n", + "Election Law Violation Was Hillary’s Idea: ['REAL']\n", + "Jury selection begins in Colorado theater shooting trial: ['REAL']\n", + "Cyber War — From Trifle to Catastrophe : Information: ['FAKE']\n", + "Fox News and the Duggars reach a disgusting new low: The twisted persecution complex in last night’s insane interview: ['REAL']\n", + "2016 Election Night Live Blog/Open Thread: ['FAKE']\n", + "Obama's fragile climate legacy: ['REAL']\n", + "Norwegian Government to Deport White Patriot While Nation is Swamped by Tens of Thousands of Non-White Invaders: ['FAKE']\n", + "State Dept. accused of stiff-arming intel watchdog over Hillary emails: ['REAL']\n", + "She Drank Carrot Juice Every Day for 8 Months and Got Rid of CANCER!: ['REAL']\n", + "Polls Tighten: Trump Gains 2.7 Percent In Poll Average In Two Weeks: ['FAKE']\n", + "MASSACHUSETTS: Designated Terrorist Group CAIR demands synagogue cancel speakers who are pro-Israel anti-Islam: ['REAL']\n", + "Poll: Clinton Support Spikes Following Democratic Convention: ['REAL']\n", + "Before It All Began: DML’s Spot-On Prediction of the 2016 Race: ['FAKE']\n", + "Florida Once Again a Focus in 2016 Campaign: ['REAL']\n", + "Crimean and Donetsk leaders comment on US elections: ['REAL']\n", + "The House’s new conservative politburo: ['REAL']\n", + "Dog Waited Faithfully For Over A Month After His Owners Left Him Behind: ['REAL']\n", + "Bizarre! Drone Records Speeding UFO Over Trees: ['FAKE']\n", + "Prepare Yourself For The Higher Energies: ['REAL']\n", + "Life: 7 Incredible Animal Mating Rituals: ['FAKE']\n", + "Why Gingrich could be the ideal running mate for Trump: ['FAKE']\n", + "Blame Government, Not Markets for Monopoly: ['REAL']\n", + "Ten interesting facts about Vladimir Putin: ['REAL']\n", + "11 Stupid Things Vox.com's Matthew Yglesias Has Said | Daily Wire: ['REAL']\n", + "Hillary’s “Big Tent” is Obama’s “Grand Bargain” on Steroids: ['REAL']\n", + "Former HP CEO Carly Fiorina Announces She's Running For President: ['REAL']\n", + "RT: Russia Just Tested a Nuclear-Capable Warhead That Can Outsmart US Anti-Missile Systems: ['FAKE']\n", + "Top 10 Pet Care Tips: ['REAL']\n", + "Watch Lab MP claim that “The Government is hurtling towards a chaotic breakfast”: ['REAL']\n", + "With rise in polls, Cruz becomes potential Trump target in Tuesday's GOP debate: ['REAL']\n", + "What If The Supreme Court Had Gone The Other Way On Obamacare?: ['REAL']\n", + "Megyn Kelly Rips Into Donald Trump for His Attacks on a Federal Judge: ['FAKE']\n", + "Wikileaks May Release Hillary's 33,000 Deleted Emails: Kim Dotcom: ['REAL']\n", + "Nobel Confusion: Ramos-Horta, Trump and World Disorder: ['FAKE']\n", + "How Instagram Becomes Backbone for Businesses: ['REAL']\n", + "Top Radio Host Michael Savage: “We’re Being Invaded Right Now”: ['REAL']\n", + "Trump Is Wrong About Terrorism and Immigration: ['FAKE']\n", + "Why Not Vote Third Party? We Asked California Voters.: ['REAL']\n", + "Why any Wife, Mother, Daughter, Sister or Feminist MUST Vote Trump: ['REAL']\n", + "Cannabis Aficionados Develop THC-A Crystalline: The Strongest Hash in The World at 99.99% THC: ['REAL']\n", + "BREAKING: Uncovered Huma Email Confirms the Worst… Previous Hacks DID Happen: ['REAL']\n", + "MH370 search: Debris found in Reunion may give clues: ['REAL']\n", + "Bitcoin Soars As China Launches Crackdown On Wealth-Management Products: ['REAL']\n", + "How Republicans are targeting Clinton on foreign policy: ['REAL']\n", + "Ayatollah's decree complicates Iran nuclear talks: ['FAKE']\n", + "Boehner vows fight to scuttle Iran nuclear deal: ['FAKE']\n", + "The Dark Agenda Behind Globalism And Open Borders: ['REAL']\n", + "The U.S. National Bird Is Now a Drone: ['REAL']\n", + "Facebook lets advertisers exclude users by race: ['REAL']\n", + "Interview 1227 – New World Next Week with James Evan Pilato: ['FAKE']\n", + "Why Trump is dredging up 1990s attacks against the Clintons: ['FAKE']\n", + "Hillary’s High Crimes & Misdemeanors Threaten Constitutional Crisis: ['REAL']\n", + "3 reasons Americans die sooner than people in other developed nations: guns, drugs, cars: ['FAKE']\n", + "Trump Dedicates D.C. Hotel: 'The Future Lies With The Dreamers': ['FAKE']\n", + "Wikileaks Confirming Clinton Was Complicit in the Murder of Ambassador Stevens- The CSS Printed This Allegation Four Years Ago: ['FAKE']\n", + "Toxic chemicals found in children’s Halloween makeup – study: ['REAL']\n", + "After Vets Fight War, Feds Demand Money Back… But Illegals And Refugees Can Keep Their Money: ['FAKE']\n", + "TRUMP TARGETS DEMOCRATIC STATES IN FINAL ASSAULT...: ['REAL']\n", + "US Moving ISIS Fighters From Iraq To Syria To Topple Assad: ['FAKE']\n", + "It Happened: Personal Notes From A Young Chicago Cubs Fan: ['REAL']\n", + "Loony Pseudo-Christian Says That Liberals Are Using Witchcraft To ‘Fog’ Christians’ Heads (VIDEO): ['FAKE']\n", + "New ISIS video shows Paris attackers committing prior atrocities, threatening UK: ['REAL']\n", + "Obama Looking For Justice Who Will 'Interpret' The Law, Not 'Make' It: ['REAL']\n", + "Penny Nance: Trump vs. Miss Universe -- I can’t get to victim when I think of Alicia Machado: ['REAL']\n", + "US intelligence warns public of pre-election day terror: ['FAKE']\n", + "Carl G. Jung Attitude Types and the Sash of Solitude: ['REAL']\n", + "Russian FM Lavrov reminds USA of war crimes in Yugoslavia: ['REAL']\n", + "Congress moves closer to preventing a shutdown: ['REAL']\n", + "HHS announces small extension for ObamaCare sign-up, bigger delay next year: ['FAKE']\n", + "Trump says he's not worried by opposition to him within GOP: ['FAKE']\n", + "Rand Paul's all-too-familiar campaign: ['REAL']\n", + "Harry Reid BLASTS Comey For Misconduct, Drops Bombshell: FBI Is Sitting On Russian-Trump Info: ['FAKE']\n", + "Hillary Clinton's shrinking email defense: ['REAL']\n", + "Dozens dead, including one American, as hostage situation in Mali hotel ends: ['FAKE']\n", + "Suspect who worked for wealthy DC family arrested for their deaths: ['REAL']\n", + "House Votes to Upgrade International Religious Freedom Law: ['REAL']\n", + "Cruz's immigration gambit: ['REAL']\n", + "U.S. Economy Added A Robust 292,000 Jobs In December: ['REAL']\n", + "7 reasons I'll vote for Trump: ['FAKE']\n", + "Russia and Syria Warn About US Shifting ISIS from Mosul to Battle Assad: ['FAKE']\n", + "Here's How Many People In Each State May Not Be Able To Afford Insurance If The Supreme Court Rules Against Obamacare: ['REAL']\n", + "Hilarious: What “Small Talk” Among Friends Looks Like at The Moment: ['REAL']\n", + "A Hillary Win Will Be Google’s Win of Everything: ['REAL']\n", + "Quality care for vets more important than wait times, says VA secretary: ['REAL']\n", + "Pence: I Don't Understand 'The Basis' of Michelle Obama's Claims: ['REAL']\n", + "Ted Cruz: Now the odds-on favorite: ['REAL']\n", + "Scientists About To Pour $100 Million Into Looking For Aliens Around Weird Star: ['FAKE']\n", + "CBS Colorado Investigation Shows People Voting Twice; The Dead Voting: ['REAL']\n", + "Sanders, losing in delegates to Clinton, claims 'path to victory': ['FAKE']\n", + "Unions fight to preserve Obama’s immigration actions, their members: ['FAKE']\n", + "Tony Blair suggests a second referendum to reverse Brexit: ['REAL']\n", + "France: Muslim Screams ‘There is Only One Master — Allah’, Punches Teacher in Front of Pupils: ['FAKE']\n", + "Iran disputes report of missile test: ['FAKE']\n", + "Hillary's High Crimes & Misdemeanors: ['REAL']\n", + "Bush vows to back GOP nominee, questions Rubio on abortion: ['FAKE']\n", + "House GOP smells victory in budget battle: ['REAL']\n", + "Blowback? Journalists whine of victimization as Trump supporters turn on presstitute media: ['FAKE']\n", + "FLASHBACK: American Flags Collapse at the Sight of Hillary Clinton: ['REAL']\n", + "Erdogan wants to revive the dream of Ottoman Empire by supporting Saudi Arabia: ['FAKE']\n", + "Scientists Leak Evidence That Approve Elon Musk's Theory: The Universe Is A \"Computer\" Simulation: ['REAL']\n", + "Is Huma Abedin Hillary Clinton’s Secret Weapon or Her Next Big Problem?: ['REAL']\n", + "A 70-Year-Old Woman Gave Birth—And What You Should Know About It: ['REAL']\n", + "America’s white fragility complex: Why white people get so defensive about their privilege: ['REAL']\n", + "ISIS uses an industrial dough kneader to kill 250 children, roasts adults in a bakery oven in Douma, Syria: ['REAL']\n", + "Estonia trains partisans for war with Russia: ['FAKE']\n", + "Karl Rove: Trump's campaign is willing to change. Is the candidate?: ['FAKE']\n", + "With Dire Situation in America for Voters; Homeschool Enrollment Doubles: ['FAKE']\n", + "Schools All Over America Are Closing On Election Day Due To Fears Of Violence: ['REAL']\n", + "Obama says charges he's anti-Semitic are hurtful: ['FAKE']\n", + "North Korea Threatens ‘Sacred’ Nuclear War Against Israel if this country continue supporting ISIS: ['REAL']\n", + "On Midterm Trail, Hillary Clinton Tests Themes for Possible 2016 Run: ['FAKE']\n", + "One Week, and Counting: Bottom-Fishing in America: ['REAL']\n", + "Doorway on Moon Found at Bancroft Crater, Google Map, Oct 2016, Photos | Paranormal: ['FAKE']\n", + "Shock Claim: Nibiru Will Hit In 2017- World Governments Are Prepared: ['FAKE']\n", + "Bill Black: Liberals Didn’t Listen: The Immense Cost of Ignoring Tom Frank’s Warnings: ['REAL']\n", + "President-Elect Donald Trump must ensure continued efforts toward a Palestinian state: ['REAL']\n", + "Defying the Politics of Fear :: ['FAKE']\n", + "U.S. added 257K jobs in January; unemployment ticks up to 5.7 percent: ['REAL']\n", + "This Is the Least Important Election of Our Lifetimes: ['REAL']\n", + "White House CANCELS all Obama Appearances at Hillary Campaign Events! ! ! | RedFlag News: ['REAL']\n", + "These Products Make Men Grow Breasts, Get Cancers Of The Prostate And Liver: ['REAL']\n", + "O’Reilly denounces Mother Jones story on his war reporting: ['REAL']\n", + "Computer Programmer Admits To Being Paid To Rig Voting Booths: ['FAKE']\n", + "The Resentments Trump Represents: ['FAKE']\n", + "Wikileaks Bombshell: ‘There is no US election’ (Video, 5.26 mins): ['FAKE']\n", + "Paul Ryan 1, Donald Trump 0: ['FAKE']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Activists bristle at Clinton fundraising: ['FAKE']\n", + "Moby Just Destroyed Trump In A Passionate Defense Of Hillary: ['REAL']\n", + "The affair allegations that derailed Kevin McCarthy's quest for the speakership, explained: ['FAKE']\n", + "Investment Strategist Forecasts Collapse Timeline: ‘The Last Gasp Will Come In 2018’: ['REAL']\n", + "Donald Trump is running out of ways to win: ['REAL']\n", + "Stock Markets Collapse In Anticipation Of Trump Win: Dow Jones Futures Down 750 Points: ['FAKE']\n", + "NYT: Undocumented Student Denounces Free Speech on Immigration Policy: ['REAL']\n", + "As Flint Suffers, Nestlé Plans Dramatic Expansion of Water Privatization in Michigan: ['REAL']\n", + "Kasich: Bush's campaign is 'freaking out': ['REAL']\n", + "Franklin Graham: The media didn’t understand the ‘God-factor’ in Trump’s win: ['FAKE']\n", + "November 11: Daily Contrarian Reads: ['REAL']\n", + "Assange Destroys Hillary Clinton In His Most Provocative Interview Ever [Watch]: ['REAL']\n", + "27 Photos That Prove The Earth Is in Serious Danger & It’s Time To Be Worried Now: ['FAKE']\n", + "Putin “Collecting” Former US Allies: ['REAL']\n", + "Point-counterpoint: Is political polarization really such a bad thing? | Commentary: ['REAL']\n", + "VIDEO : FBI SOURCES SAY INDICTMENT LIKELY FOR CLINTON – TruthFeed: ['FAKE']\n", + "Trump Concedes, Calls Clinton to Congratulate Her: ['FAKE']\n", + "UN Failed to Carry Adequate Medical Evacuations in Aleppo - Churkin: ['FAKE']\n", + "Trump's challenges come to the fore, reshaping GOP race: ['FAKE']\n", + "Syrian War Report – October 27, 2016: Russian Strikes Destroyed Over 300 Terrorists’ Oil Facilities: ['FAKE']\n", + "Inside Bernie Sanders’ unorthodox debate prep: ['REAL']\n", + "Is America On The Brink Of Civil War?: ['REAL']\n", + "Republicans barnstorm Iowa after debate, as underdogs show new life: ['FAKE']\n", + "Court Could Force Same-Sex Marriage on Every State - US - CBN News - Christian News 24-7 - CBN.com: ['REAL']\n", + "BREAKING: WikiLeaks Just Released Full ISIS Donor List With Names: ['FAKE']\n", + "Intel chief ‘absolutely’ forgot about NSA data sweep program, attorney says: ['REAL']\n", + "Desperate Trump Supporter Offers Voters Discount On Horse Semen If They Vote Trump: ['FAKE']\n", + "White House brings lawmakers into Situation Room on Iran: ['REAL']\n", + "A close Wisconsin primary could spell future trouble for Clinton: ['FAKE']\n", + "Afghan officials say Mullah Omar, Taliban leader, may be dead: ['REAL']\n", + "Even Hillary’s Niece Is Voting Trump: ['REAL']\n", + "House GOP Faces Test On Budget Priorities: ['REAL']\n", + "Chinese University Sells HIV Testing Kits in Vending Machine: ['REAL']\n", + "The GOP’s ludicrous Kim Davis primary: How raging homophobia took the Republican campaign by storm: ['REAL']\n", + "IRONY ALERT: First Person Arrested For Voter Fraud Is A Trump Supporter: ['FAKE']\n", + "2016: The year conventional political wisdom was turned upside down: ['FAKE']\n", + "State Department: No record of Clinton signing 'separation' form: ['REAL']\n", + "Conway touts Trump's 'drain the swamp' message, admits 'we are behind': ['FAKE']\n", + "President Elect Trump – A New Era of Unpredictability Awaits: ['REAL']\n", + "Duterte Pulls a 180: China to Build Fake Islands Right Off Philippine Coast: ['REAL']\n", + "Treasury will begin issuing Iran sanctions waivers under Obama order: ['FAKE']\n", + "2016 Race Collides With Baltimore Unrest: ['REAL']\n", + "DoD teams surveying US military sites for potential Gitmo transfers, lawmakers vow fight: ['REAL']\n", + "Top Aide to Hillary Clinton Urges the FBI to Disclose what it Knows about Trump's Russia Ties: ['REAL']\n", + "George Stephanopoulos, Brian Williams and the media’s sinking reputation: ['REAL']\n", + "Turkey’s Crackdown on Criticism Continues as Journalists, 10K Civil Servants Arrested: ['REAL']\n", + "Government Confirm Compensation For Survivors Of Symphysiotomy Got ‘Lost In The Post’: ['FAKE']\n", + "Muslim debate seizes GOP presidential race: ['FAKE']\n", + "Clinton puts Trump on defense at first debate: ['FAKE']\n", + "Thousands of Wild American Bison Appear From No Where At Standing Rock: ['REAL']\n", + "Are You Ready for Aftermath of the Election? Will There Be An Election?: ['FAKE']\n", + "Here Are Six ‘Miracle’ Drugs Big Pharma Now Regrets - Truthdig: ['FAKE']\n", + "Hillary Clinton, FBI and the Real November Surprise: ['REAL']\n", + "The Deceptive Nature of Hillary Clinton is Right in Line with Communism: ['FAKE']\n", + "Obama Furious After Fed-Up ‘Deplorables’ Drop 41,000-Piece Gift On Him: ['REAL']\n", + "Colin Kaepernick hosts ‘Know Your Rights’ camp for Oakland-area youth: ['REAL']\n", + "Wikileaks Emails Disclose Aliens Linked to Vatican!: ['REAL']\n", + "US abstains from UN vote calling for end to Cuban embargo: ['FAKE']\n", + "West Ham fans laud aerodynamic properties of new pound coin: ['REAL']\n", + "How the Obama White House runs foreign policy: ['REAL']\n", + "ISIS claims responsibility for Garland, Texas, shooting: ['FAKE']\n", + "The “blame the left” crew: What the right’s new Hebdo attack is really about: ['REAL']\n", + "ADHD NATION: How Big Pharma Created the ADHD Epidemic: ['REAL']\n", + "Donald Trump claims the election will be 'rigged' — and critics have called that preposterous and dangerous: ['FAKE']\n", + "REPORT: Dirty Reporter Blackmails Montel… Help Us Hit Trump or We’ll Print Your Address: ['FAKE']\n", + "Police Arrest Suspect In Charleston Church Shooting: ['REAL']\n", + "Donald Trump’s collapse was caused by one big factor: Hillary Clinton: ['FAKE']\n", + "FINA suspends Russian swimmer for 8 years over doping — web portal - Russia News Now: ['FAKE']\n", + "BREAKING : Hillary Campaign Manager Deletes his Entire Twitter Timeline – TruthFeed: ['FAKE']\n", + "Why Ted Cruz Has the Most to Lose in New Hampshire: ['FAKE']\n", + "“Nothing Good Can Come of This Election”–and That’s Good: ['REAL']\n", + "List of Republicans opposing Trump | OffGuardian: ['FAKE']\n", + "Putin: Use of 'mythical' Russian military threat a ‘profitable business': ['REAL']\n", + "Bernie Sanders says private meeting with Pope Francis is not an endorsement: ['FAKE']\n", + "Alabama Lawmaker: Same-Sex Couples Don’t Deserve Same Financial Benefits As Other Families: ['REAL']\n", + "Will the Media Reset After the Election or Are We Stuck With This Tabloid Stuff?: ['FAKE']\n", + "DOJ COMPLAINT: Comey Under Fire Over Partisan Witch Hunt For Hillary (TWEETS/VIDEO): ['REAL']\n", + "GOP Senator David Perdue Jokes About Praying for Obama’s Death: ['FAKE']\n", + "Radio Derb Is On The Air–Leonardo And Brazil’s Miss Bum Bum Pageant, Etc.: ['REAL']\n", + "Assange claims ‘crazed’ Clinton campaign tried to hack WikiLeaks: ['FAKE']\n", + "State Department says it can't find emails from Clinton IT specialist: ['REAL']\n", + "The ‘P’ in PBS Should Stand for ‘Plutocratic’ or ‘Pentagon’: ['FAKE']\n", + "Anti-Trump Protesters Are Tools of the Oligarchy : Information: ['FAKE']\n", + "In Ethiopia, Obama seeks progress on peace, security in East Africa: ['REAL']\n", + "Jeb Bush Is Suddenly Attacking Trump. Here's Why That Matters: ['REAL']\n" + ] + } + ], + "source": [ + "for index, row in df_read.iterrows():\n", + " text = row['title']\n", + " text2 = [text]\n", + " pred = pipeline.predict(text2)\n", + " df1 = df1.append({'title' : text , 'label' : pred} , ignore_index=True)\n", + " print(f'{text}: {pred}')" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titlelabel
0You Can Smell Hillary’s Fear[REAL]
1Watch The Exact Moment Paul Ryan Committed Pol...[FAKE]
2Kerry to go to Paris in gesture of sympathy[REAL]
3Bernie supporters on Twitter erupt in anger ag...[FAKE]
4The Battle of New York: Why This Primary Matters[REAL]
.........
6330State Department says it can't find emails fro...[REAL]
6331The ‘P’ in PBS Should Stand for ‘Plutocratic’ ...[FAKE]
6332Anti-Trump Protesters Are Tools of the Oligarc...[FAKE]
6333In Ethiopia, Obama seeks progress on peace, se...[REAL]
6334Jeb Bush Is Suddenly Attacking Trump. Here's W...[REAL]
\n", + "

6335 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " title label\n", + "0 You Can Smell Hillary’s Fear [REAL]\n", + "1 Watch The Exact Moment Paul Ryan Committed Pol... [FAKE]\n", + "2 Kerry to go to Paris in gesture of sympathy [REAL]\n", + "3 Bernie supporters on Twitter erupt in anger ag... [FAKE]\n", + "4 The Battle of New York: Why This Primary Matters [REAL]\n", + "... ... ...\n", + "6330 State Department says it can't find emails fro... [REAL]\n", + "6331 The ‘P’ in PBS Should Stand for ‘Plutocratic’ ... [FAKE]\n", + "6332 Anti-Trump Protesters Are Tools of the Oligarc... [FAKE]\n", + "6333 In Ethiopia, Obama seeks progress on peace, se... [REAL]\n", + "6334 Jeb Bush Is Suddenly Attacking Trump. Here's W... [REAL]\n", + "\n", + "[6335 rows x 2 columns]" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [], + "source": [ + "df1.to_csv('datasets/example1_labelled.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.7" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/App/dynamic_labelling.py b/App/dynamic_labelling.py new file mode 100644 index 0000000..9d18141 --- /dev/null +++ b/App/dynamic_labelling.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python +# coding: utf-8 + +# In[50]: + + +import pandas as pd +import numpy as np +import joblib + + +# In[34]: +print("Enter name of csv file to label") +print("NOTE: put file in csv_files directory") +file_name = input("") +file_location = f'../csv_files/{file_name}' +df_read = pd.read_csv(file_location) + + +# In[35]: + + +# In[36]: + +df_pred = pd.DataFrame(columns=['title', 'label']) + + +# In[47]: + + +df1 = pd.DataFrame(columns=['title', 'label']) + + +# In[48]: + + +df1.append(['title'], "hello") + + +# In[55]: + + +pipeline = joblib.load('pipeline_final.sav') + + +# In[63]: + +print("Labelling...") +for index, row in df_read.iterrows(): + text = row['title'] + text2 = [text] + pred = pipeline.predict(text2) + df1 = df1.append({'title': text, 'label': pred}, ignore_index=True) + # print(f'{text}: {pred}') + + +# In[64]: + + +df1 + + +# In[66]: + +file_save_location = f'../csv_files/{file_name}_labelled.csv' +df1.to_csv('../csv_files/example1_labelled.csv') + + +# In[ ]: diff --git a/App/feature.py b/App/feature.py new file mode 100644 index 0000000..b78463e --- /dev/null +++ b/App/feature.py @@ -0,0 +1,30 @@ +import numpy as np # linear algebra +import pandas as pd # data processing + +import os +import re +import nltk +from nltk.stem import WordNetLemmatizer +from nltk.corpus import stopwords +from translator import lang_translate + + +def get_all_query(title): + title = [title] + return title + + +def remove_punctuation_stopwords_lemma(sentence): + # google translate if language is not english + lang_translate(sentence) + filter_sentence = '' + stop_words = stopwords.words('english') + lemmatizer = WordNetLemmatizer() + #sentence = re.sub(r'[^\w\s]', '', sentence) + sentence = re.sub(r'https?://\S+', '', sentence, flags=re.MULTILINE) + words = nltk.word_tokenize(sentence) # tokenization + words = [w for w in words if not w in stop_words] + for word in words: + filter_sentence = filter_sentence + ' ' + \ + str(lemmatizer.lemmatize(word)).lower() + return filter_sentence diff --git a/App/find_real_news.py b/App/find_real_news.py new file mode 100644 index 0000000..5d0d5d9 --- /dev/null +++ b/App/find_real_news.py @@ -0,0 +1,24 @@ +from newsapi import NewsApiClient +import json +from feature import remove_punctuation_stopwords_lemma + + +def get_real_news(title): + newsapi = NewsApiClient(api_key='29c56386f46a4be7a70b8a525efb0462') + title = remove_punctuation_stopwords_lemma(title) + # get first 3 words from text to search + title = ' '.join(title.split()[:3]) + # convert title to lowercase and replace whitespace with '+' to use as query parameter + query = title.lower().replace(" ", "+") + all_articles = newsapi.get_everything(q=query, page=1) + real_news = {"totalResults": 0} + # create object of real article title, text, and link + if all_articles["totalResults"] != 0: + real_news = { + "title": all_articles["articles"][0]["title"], + "text": all_articles["articles"][0]["description"], + "link": all_articles["articles"][0]["url"], + "source": all_articles["articles"][0]["source"]["name"], + "totalResults": 1 + } + return real_news diff --git a/App/js/scripts.js b/App/js/scripts.js new file mode 100644 index 0000000..4f95757 --- /dev/null +++ b/App/js/scripts.js @@ -0,0 +1,56 @@ +/*! + * Start Bootstrap - Grayscale v6.0.2 (https://startbootstrap.com/themes/grayscale) + * Copyright 2013-2020 Start Bootstrap + * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-grayscale/blob/master/LICENSE) + */ + (function ($) { + "use strict"; // Start of use strict + + // Smooth scrolling using jQuery easing + $('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function () { + if ( + location.pathname.replace(/^\//, "") == + this.pathname.replace(/^\//, "") && + location.hostname == this.hostname + ) { + var target = $(this.hash); + target = target.length + ? target + : $("[name=" + this.hash.slice(1) + "]"); + if (target.length) { + $("html, body").animate( + { + scrollTop: target.offset().top - 70, + }, + 1000, + "easeInOutExpo" + ); + return false; + } + } + }); + + // Closes responsive menu when a scroll trigger link is clicked + $(".js-scroll-trigger").click(function () { + $(".navbar-collapse").collapse("hide"); + }); + + // Activate scrollspy to add active class to navbar items on scroll + $("body").scrollspy({ + target: "#mainNav", + offset: 100, + }); + + // Collapse Navbar + var navbarCollapse = function () { + if ($("#mainNav").offset().top > 100) { + $("#mainNav").addClass("navbar-shrink"); + } else { + $("#mainNav").removeClass("navbar-shrink"); + } + }; + // Collapse now if page is not at top + navbarCollapse(); + // Collapse the navbar when page is scrolled + $(window).scroll(navbarCollapse); +})(jQuery); // End of use strict diff --git a/App/model_training.ipynb b/App/model_training.ipynb new file mode 100644 index 0000000..37fbf3f --- /dev/null +++ b/App/model_training.ipynb @@ -0,0 +1,719 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt \n", + "\n", + "import numpy as np # linear algebra\n", + "import pandas as pd #data processing\n", + "\n", + "from sklearn.model_selection import train_test_split\n", + "\n", + "import os\n", + "import re\n", + "import nltk\n", + "from nltk.corpus import stopwords\n", + "from nltk.stem import WordNetLemmatizer\n", + "from sklearn.feature_extraction.text import CountVectorizer\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "from sklearn.feature_extraction.text import TfidfTransformer\n", + "from sklearn.linear_model import LogisticRegression# Logistic Regression\n", + "from sklearn.naive_bayes import MultinomialNB\n", + "from sklearn.metrics import confusion_matrix\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0titlelabel
00Dancing With The Stars 2018 Cast News, Tour an...REAL
11Amal Clooney displays her post-baby body in ti...FAKE
22Black Eyed Peas' Taboo claims Fergie turned do...REAL
33Pregnant Beyonce & Jay Z Jet Off To Bora Bora ...REAL
44Clint Eastwood Leaves His Estate To The Trump ...FAKE
............
2319123191John Cena Plays His Entire Family (And Slimes ...REAL
2319223192Chloe Moretz steps out in sharp outfit and 'f*...REAL
2319323193‘NASA Confirms’ 15 Days Of Darkness Coming Thi...FAKE
2319423194Paris Hilton's Happy It Girls Like Kendall Jen...REAL
23195231952018 Radio Disney Music AwardsREAL
\n", + "

23196 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 title label\n", + "0 0 Dancing With The Stars 2018 Cast News, Tour an... REAL\n", + "1 1 Amal Clooney displays her post-baby body in ti... FAKE\n", + "2 2 Black Eyed Peas' Taboo claims Fergie turned do... REAL\n", + "3 3 Pregnant Beyonce & Jay Z Jet Off To Bora Bora ... REAL\n", + "4 4 Clint Eastwood Leaves His Estate To The Trump ... FAKE\n", + "... ... ... ...\n", + "23191 23191 John Cena Plays His Entire Family (And Slimes ... REAL\n", + "23192 23192 Chloe Moretz steps out in sharp outfit and 'f*... REAL\n", + "23193 23193 ‘NASA Confirms’ 15 Days Of Darkness Coming Thi... FAKE\n", + "23194 23194 Paris Hilton's Happy It Girls Like Kendall Jen... REAL\n", + "23195 23195 2018 Radio Disney Music Awards REAL\n", + "\n", + "[23196 rows x 3 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('datasets/fake_real_final_dataset.csv')\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0titlelabel
1763017630Lea Michele Shares Emma Roberts and Darren Cri...REAL
1022910229Rihanna explains how she dresses for her 'fluc...REAL
1823418234Selena Gomez Believes Justin Bieber Is Her ‘So...FAKE
14841484Meet The New Plastics Aka The Cast Of Very Cav...REAL
1893318933Why Are TLC Going on Tour With the Dude From S...REAL
............
1354213542Mandy Moore Plays ‘Why is Mandy Crying’ with E...REAL
1087810878The One with the RumorFAKE
23772377Prince Harry Goes On Solo Charity Trip To Afri...REAL
799479945 Amazing Chris Farley Moments We'll Never For...REAL
1144911449Protective Nick Cannon Jokes Around with 'Soph...REAL
\n", + "

16237 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 title label\n", + "17630 17630 Lea Michele Shares Emma Roberts and Darren Cri... REAL\n", + "10229 10229 Rihanna explains how she dresses for her 'fluc... REAL\n", + "18234 18234 Selena Gomez Believes Justin Bieber Is Her ‘So... FAKE\n", + "1484 1484 Meet The New Plastics Aka The Cast Of Very Cav... REAL\n", + "18933 18933 Why Are TLC Going on Tour With the Dude From S... REAL\n", + "... ... ... ...\n", + "13542 13542 Mandy Moore Plays ‘Why is Mandy Crying’ with E... REAL\n", + "10878 10878 The One with the Rumor FAKE\n", + "2377 2377 Prince Harry Goes On Solo Charity Trip To Afri... REAL\n", + "7994 7994 5 Amazing Chris Farley Moments We'll Never For... REAL\n", + "11449 11449 Protective Nick Cannon Jokes Around with 'Soph... REAL\n", + "\n", + "[16237 rows x 3 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train, test = train_test_split(df, test_size=0.3)\n", + "train" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(16237, 3) (6959, 3)\n" + ] + } + ], + "source": [ + "print(train.shape, test.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Unnamed: 0 0\n", + "title 0\n", + "label 0\n", + "dtype: int64\n", + "************\n", + "Unnamed: 0 0\n", + "title 0\n", + "label 0\n", + "dtype: int64\n" + ] + } + ], + "source": [ + "print(train.isnull().sum())\n", + "print('************')\n", + "print(test.isnull().sum())" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/zensajnani/Desktop/Zen Projects/Hackathon/fake_news_detection/env/lib/python3.7/site-packages/pandas/core/indexing.py:966: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " self.obj[item] = s\n" + ] + } + ], + "source": [ + "stop_words = stopwords.words('english')\n", + "lemmatizer=WordNetLemmatizer()\n", + "for index,row in train.iterrows():\n", + " filter_sentence = ''\n", + " \n", + " sentence = row['title']\n", + " sentence = re.sub(r'[^\\w\\s]','',sentence) #cleaning\n", + " \n", + " words = nltk.word_tokenize(sentence) #tokenization\n", + " \n", + " words = [w for w in words if not w in stop_words] #stopwords removal\n", + " \n", + " for word in words:\n", + " filter_sentence = filter_sentence + ' ' + str(lemmatizer.lemmatize(word)).lower()\n", + " \n", + " train.loc[index,'title'] = filter_sentence\n" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "train = train[['title','label']]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "X_train = train['title']\n", + "Y_train = train['label']" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "#Feature extraction using count vectorization and tfidf.\n", + "count_vectorizer = CountVectorizer()\n", + "count_vectorizer.fit_transform(X_train)\n", + "freq_term_matrix = count_vectorizer.transform(X_train)\n", + "tfidf = TfidfTransformer(norm=\"l2\")\n", + "tfidf.fit(freq_term_matrix)\n", + "tf_idf_matrix = tfidf.transform(freq_term_matrix)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "def plot_confusion_matrix(cm, classes,\n", + " normalize=False,\n", + " title='Confusion matrix',\n", + " cmap=plt.cm.Blues):\n", + " \n", + " plt.imshow(cm, interpolation='nearest', cmap=cmap)\n", + " plt.title(title)\n", + " plt.colorbar()\n", + " tick_marks = np.arange(len(classes))\n", + " plt.xticks(tick_marks, classes, rotation=45)\n", + " plt.yticks(tick_marks, classes)\n", + "\n", + " if normalize:\n", + " cm = cm.astype('float') / cm.sum(axis=1)[:, np.newaxis]\n", + " print(\"Normalized confusion matrix\")\n", + " else:\n", + " print('Confusion matrix, without normalization')\n", + "\n", + " thresh = cm.max() / 2.\n", + " for i, j in iter.product(range(cm.shape[0]), range(cm.shape[1])):\n", + " plt.text(j, i, cm[i, j],\n", + " horizontalalignment=\"center\",\n", + " color=\"white\" if cm[i, j] > thresh else \"black\")\n", + "\n", + " plt.tight_layout()\n", + " plt.ylabel('True label')\n", + " plt.xlabel('Predicted label')" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(12177, 16706) (4060, 16706)\n" + ] + } + ], + "source": [ + "test_counts = count_vectorizer.transform(test['title'].values)\n", + "test_tfidf = tfidf.transform(test_counts)\n", + "\n", + "#split in samples\n", + "from sklearn.model_selection import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(tf_idf_matrix, Y_train, random_state=0)\n", + "print(X_train.shape,X_test.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy of Logistic classifier on training set: 1.00\n", + "Accuracy of Logistic classifier on test set: 0.82\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/zensajnani/Desktop/Zen Projects/Hackathon/fake_news_detection/env/lib/python3.7/site-packages/sklearn/linear_model/_logistic.py:764: ConvergenceWarning: lbfgs failed to converge (status=1):\n", + "STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.\n", + "\n", + "Increase the number of iterations (max_iter) or scale the data as shown in:\n", + " https://scikit-learn.org/stable/modules/preprocessing.html\n", + "Please also refer to the documentation for alternative solver options:\n", + " https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression\n", + " extra_warning_msg=_LOGISTIC_SOLVER_CONVERGENCE_MSG)\n" + ] + }, + { + "data": { + "text/plain": [ + "array([[ 557, 436],\n", + " [ 310, 2757]])" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "logreg = LogisticRegression(C=1e5)\n", + "logreg.fit(X_train, y_train)\n", + "pred = logreg.predict(X_test)\n", + "print('Accuracy of Logistic classifier on training set: {:.2f}'\n", + " .format(logreg.score(X_train, y_train)))\n", + "print('Accuracy of Logistic classifier on test set: {:.2f}'\n", + " .format(logreg.score(X_test, y_test)))\n", + "\n", + "cm = confusion_matrix(y_test, pred)\n", + "cm" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy of NB classifier on training set: 0.84\n", + "Accuracy of NB classifier on test set: 0.81\n" + ] + }, + { + "data": { + "text/plain": [ + "array([[ 246, 747],\n", + " [ 37, 3030]])" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "NB = MultinomialNB()\n", + "NB.fit(X_train, y_train)\n", + "pred = NB.predict(X_test)\n", + "print('Accuracy of NB classifier on training set: {:.2f}'\n", + " .format(NB.score(X_train, y_train)))\n", + "print('Accuracy of NB classifier on test set: {:.2f}'\n", + " .format(NB.score(X_test, y_test)))\n", + "cm = confusion_matrix(y_test, pred)\n", + "cm" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "X_train = train['title']\n", + "Y_train = train['label']" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.pipeline import Pipeline\n", + "import joblib\n", + "\n", + "from sklearn import linear_model" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "pipeline = Pipeline([\n", + " ('vect', CountVectorizer()),\n", + " ('tfidf', TfidfTransformer(norm='l2')),\n", + " ('clf', linear_model.LogisticRegression(C=1e5)),\n", + "])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/zensajnani/Desktop/Zen Projects/Hackathon/fake_news_detection/env/lib/python3.7/site-packages/sklearn/linear_model/_logistic.py:764: ConvergenceWarning: lbfgs failed to converge (status=1):\n", + "STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.\n", + "\n", + "Increase the number of iterations (max_iter) or scale the data as shown in:\n", + " https://scikit-learn.org/stable/modules/preprocessing.html\n", + "Please also refer to the documentation for alternative solver options:\n", + " https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression\n", + " extra_warning_msg=_LOGISTIC_SOLVER_CONVERGENCE_MSG)\n" + ] + }, + { + "data": { + "text/plain": [ + "Pipeline(steps=[('vect', CountVectorizer()), ('tfidf', TfidfTransformer()),\n", + " ('clf', LogisticRegression(C=100000.0))])" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pipeline.fit(X_train, Y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['REAL'], dtype=object)" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pipeline.predict([\"In an interview with @greta, Sen. Rick Scott said “Joe Biden supported the Castro regime and meeting with Maduro.”\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['pipeline_final.sav']" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#saving the pipeline\n", + "filename = 'pipeline_final.sav'\n", + "joblib.dump(pipeline, filename)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "loaded_model = joblib.load(filename)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['REAL']\n" + ] + } + ], + "source": [ + "result = loaded_model.predict([\"‘Tormented’ Brad Pitt will only be allowed ‘to spend four hours with his children on Christmas Day’\"])\n", + "print(result)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.7" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/App/pipeline_final.sav b/App/pipeline_final.sav new file mode 100644 index 0000000000000000000000000000000000000000..3969f5bedf09a442e2482b8bcbee21c205646560 GIT binary patch literal 734157 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 z�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
  • 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

    aD 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

    !_&zT5(+mvhmgu(=x@Lh@3yGLo^* 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⪼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 kdY%rfAxG~WEadzl??ZpQ-hK0M$eU_y7O^ literal 0 HcmV?d00001 diff --git a/App/static/css/resultspagestyle.css b/App/static/css/resultspagestyle.css new file mode 100644 index 0000000..3352607 --- /dev/null +++ b/App/static/css/resultspagestyle.css @@ -0,0 +1,239 @@ +@import url("https://fonts.googleapis.com/css?family=Muli&display=swap"); + +* { + box-sizing: border-box; +} + +body { + /* background-image: linear-gradient(45deg, #7175da, #9790f2); */ + + background-color: #eeeeee; + font-family: "Muli", sans-serif; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + min-height: 100vh; + margin: 0; +} + +.title { + background-color: #393e46; + border: 0; + border-radius: 5px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); + color: #fff; + font-size: 50px; + padding: 12px 25px; + + letter-spacing: 1px; +} + +.courses-container { +} + +.course { + background-color: #fff; + border-radius: 10px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); + display: flex; + max-width: 100%; + margin: 20px; + overflow: hidden; + width: 700px; +} + +.course h6 { + opacity: 0.6; + margin: 0; + letter-spacing: 1px; + text-transform: uppercase; +} + +.course h2 { + letter-spacing: 1px; + margin: 10px 0; +} + +.course-preview { + background-color: #393e46; + color: #fff; + padding: 30px; + max-width: 250px; +} + +.course-preview a { + color: #fff; + display: inline-block; + font-size: 12px; + opacity: 0.6; + margin-top: 30px; + text-decoration: none; +} + +.course-info { + padding: 30px; + position: relative; + width: 100%; +} + +.btn { + background-color: #393e46; + border: 0; + border-radius: 50px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); + color: #fff; + font-size: 16px; + padding: 12px 25px; + position: absolute; + bottom: 30px; + right: 30px; + letter-spacing: 1px; + margin-left: 10px; +} + +.btn a { + color: white; + text-decoration: none; +} + +/* Switch starts here */ +.rocker { + display: inline-block; + position: relative; + /* + SIZE OF SWITCH + ============== + All sizes are in em - therefore + changing the font-size here + will change the size of the switch. + See .rocker-small below as example. + */ + font-size: 2em; + font-weight: bold; + text-align: center; + text-transform: uppercase; + color: #888; + width: 7em; + height: 4em; + overflow: hidden; + border-bottom: 0.5em solid #eee; +} + +.rocker-small { + font-size: 0.75em; /* Sizes the switch */ + margin: 1em; +} + +.rocker::before { + content: ""; + position: absolute; + top: 0.5em; + left: 0; + right: 0; + bottom: 0; + background-color: #999; + border: 0.5em solid #eee; + border-bottom: 0; +} + +.rocker input { + opacity: 0; + width: 0; + height: 0; +} + +.switch-left, +.switch-right { + cursor: pointer; + position: absolute; + display: flex; + align-items: center; + justify-content: center; + height: 2.5em; + width: 3em; + transition: 0.2s; +} + +.switch-left { + height: 2.4em; + width: 2.75em; + left: 0.85em; + bottom: 0.4em; + background-color: #ddd; + transform: rotate(15deg) skewX(15deg); +} + +.switch-right { + right: 0.5em; + bottom: 0; + background-color: #bd5757; + color: #fff; +} + +.switch-left::before, +.switch-right::before { + content: ""; + position: absolute; + width: 0.4em; + height: 2.45em; + bottom: -0.45em; + background-color: #ccc; + transform: skewY(-65deg); +} + +.switch-left::before { + left: -0.4em; +} + +.switch-right::before { + right: -0.375em; + background-color: transparent; + transform: skewY(65deg); +} + +input:checked + .switch-left { + background-color: #0084d0; + color: #fff; + bottom: 0px; + left: 0.5em; + height: 2.5em; + width: 3em; + transform: rotate(0deg) skewX(0deg); +} + +input:checked + .switch-left::before { + background-color: transparent; + width: 3.0833em; +} + +input:checked + .switch-left + .switch-right { + background-color: #ddd; + color: #888; + bottom: 0.4em; + right: 0.8em; + height: 2.4em; + width: 2.75em; + transform: rotate(-15deg) skewX(-15deg); +} + +input:checked + .switch-left + .switch-right::before { + background-color: #ccc; +} + +/* Keyboard Users */ +input:focus + .switch-left { + color: #333; +} + +input:checked:focus + .switch-left { + color: #fff; +} + +input:focus + .switch-left + .switch-right { + color: #fff; +} + +input:checked:focus + .switch-left + .switch-right { + color: #333; +} diff --git a/App/static/css/styles.css b/App/static/css/styles.css new file mode 100644 index 0000000..920287a --- /dev/null +++ b/App/static/css/styles.css @@ -0,0 +1,10842 @@ +@charset "UTF-8"; +/*! +* Start Bootstrap - Grayscale v6.0.2 (https://startbootstrap.com/themes/grayscale) +* Copyright 2013-2020 Start Bootstrap +* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-grayscale/blob/master/LICENSE) +*/ +/*! + * Bootstrap v4.5.0 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #64a19d; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #64a19d; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --black: #000000; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", + Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, + "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, + "Liberation Mono", "Courier New", monospace; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +article, +aside, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section { + display: block; +} + +body { + margin: 0; + font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", + "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #393e46; + /* background-image: linear-gradient(45deg, #7175da, #9790f2); */ +} + +[tabindex="-1"]:focus:not(:focus-visible) { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: 0.5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +a { + color: #64a19d; + text-decoration: none; + background-color: transparent; +} +a:hover { + color: #467370; + text-decoration: underline; +} + +a:not([href]) { + color: inherit; + text-decoration: none; +} +a:not([href]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", + "Courier New", monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg { + overflow: hidden; + vertical-align: middle; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; +} + +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +button { + border-radius: 0; +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +[role="button"] { + cursor: pointer; +} + +select { + word-wrap: normal; +} + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: 0.5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} + +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} + +h1, +.h1 { + font-size: 2.5rem; +} + +h2, +.h2 { + font-size: 70px; + font-family: "Muli", sans-serif; +} + +h3, +.h3 { + font-size: 1.75rem; +} + +h4, +.h4 { + font-size: 1.5rem; +} + +h5, +.h5 { + font-size: 1.25rem; +} + +h6, +.h6 { + font-size: 1rem; +} + +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +small, +.small { + font-size: 80%; + font-weight: 400; +} + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; +} +.blockquote-footer::before { + content: "— "; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 90%; + color: #6c757d; +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-wrap: break-word; +} +a > code { + color: inherit; +} + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +pre { + display: block; + font-size: 87.5%; + color: #212529; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + width: 100%; + padding-right: 0.75rem; + padding-left: 0.75rem; + margin-right: auto; + margin-left: auto; +} +@media (min-width: 576px) { + .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container { + max-width: 1140px; + } +} + +.container-fluid, +.container-xl, +.container-lg, +.container-md, +.container-sm { + width: 100%; + padding-right: 0.75rem; + padding-left: 0.75rem; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container-sm, + .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, + .container-sm, + .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, + .container-md, + .container-sm, + .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, + .container-lg, + .container-md, + .container-sm, + .container { + max-width: 1140px; + } +} +.row { + display: flex; + flex-wrap: wrap; + margin-right: -0.75rem; + margin-left: -0.75rem; +} + +.no-gutters { + margin-right: 0; + margin-left: 0; +} +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +.col-xl, +.col-xl-auto, +.col-xl-12, +.col-xl-11, +.col-xl-10, +.col-xl-9, +.col-xl-8, +.col-xl-7, +.col-xl-6, +.col-xl-5, +.col-xl-4, +.col-xl-3, +.col-xl-2, +.col-xl-1, +.col-lg, +.col-lg-auto, +.col-lg-12, +.col-lg-11, +.col-lg-10, +.col-lg-9, +.col-lg-8, +.col-lg-7, +.col-lg-6, +.col-lg-5, +.col-lg-4, +.col-lg-3, +.col-lg-2, +.col-lg-1, +.col-md, +.col-md-auto, +.col-md-12, +.col-md-11, +.col-md-10, +.col-md-9, +.col-md-8, +.col-md-7, +.col-md-6, +.col-md-5, +.col-md-4, +.col-md-3, +.col-md-2, +.col-md-1, +.col-sm, +.col-sm-auto, +.col-sm-12, +.col-sm-11, +.col-sm-10, +.col-sm-9, +.col-sm-8, +.col-sm-7, +.col-sm-6, +.col-sm-5, +.col-sm-4, +.col-sm-3, +.col-sm-2, +.col-sm-1, +.col, +.col-auto, +.col-12, +.col-11, +.col-10, +.col-9, +.col-8, +.col-7, +.col-6, +.col-5, +.col-4, +.col-3, +.col-2, +.col-1 { + position: relative; + width: 100%; + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.col { + flex-basis: 0; + flex-grow: 1; + min-width: 0; + max-width: 100%; +} + +.row-cols-1 > * { + flex: 0 0 100%; + max-width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 50%; + max-width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; +} + +.row-cols-4 > * { + flex: 0 0 25%; + max-width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 20%; + max-width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; +} + +.col-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; +} + +.col-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; +} + +.col-3 { + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; +} + +.col-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; +} + +.col-6 { + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; +} + +.col-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; +} + +.col-9 { + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; +} + +.col-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; +} + +.col-12 { + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + order: -1; +} + +.order-last { + order: 13; +} + +.order-0 { + order: 0; +} + +.order-1 { + order: 1; +} + +.order-2 { + order: 2; +} + +.order-3 { + order: 3; +} + +.order-4 { + order: 4; +} + +.order-5 { + order: 5; +} + +.order-6 { + order: 6; +} + +.order-7 { + order: 7; +} + +.order-8 { + order: 8; +} + +.order-9 { + order: 9; +} + +.order-10 { + order: 10; +} + +.order-11 { + order: 11; +} + +.order-12 { + order: 12; +} + +.offset-1 { + margin-left: 8.3333333333%; +} + +.offset-2 { + margin-left: 16.6666666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.3333333333%; +} + +.offset-5 { + margin-left: 41.6666666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.3333333333%; +} + +.offset-8 { + margin-left: 66.6666666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.3333333333%; +} + +.offset-11 { + margin-left: 91.6666666667%; +} + +@media (min-width: 576px) { + .col-sm { + flex-basis: 0; + flex-grow: 1; + min-width: 0; + max-width: 100%; + } + + .row-cols-sm-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + + .row-cols-sm-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + + .row-cols-sm-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .row-cols-sm-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + + .row-cols-sm-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + + .row-cols-sm-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-sm-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + + .col-sm-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; + } + + .col-sm-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-sm-3 { + flex: 0 0 25%; + max-width: 25%; + } + + .col-sm-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .col-sm-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; + } + + .col-sm-6 { + flex: 0 0 50%; + max-width: 50%; + } + + .col-sm-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; + } + + .col-sm-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; + } + + .col-sm-9 { + flex: 0 0 75%; + max-width: 75%; + } + + .col-sm-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; + } + + .col-sm-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; + } + + .col-sm-12 { + flex: 0 0 100%; + max-width: 100%; + } + + .order-sm-first { + order: -1; + } + + .order-sm-last { + order: 13; + } + + .order-sm-0 { + order: 0; + } + + .order-sm-1 { + order: 1; + } + + .order-sm-2 { + order: 2; + } + + .order-sm-3 { + order: 3; + } + + .order-sm-4 { + order: 4; + } + + .order-sm-5 { + order: 5; + } + + .order-sm-6 { + order: 6; + } + + .order-sm-7 { + order: 7; + } + + .order-sm-8 { + order: 8; + } + + .order-sm-9 { + order: 9; + } + + .order-sm-10 { + order: 10; + } + + .order-sm-11 { + order: 11; + } + + .order-sm-12 { + order: 12; + } + + .offset-sm-0 { + margin-left: 0; + } + + .offset-sm-1 { + margin-left: 8.3333333333%; + } + + .offset-sm-2 { + margin-left: 16.6666666667%; + } + + .offset-sm-3 { + margin-left: 25%; + } + + .offset-sm-4 { + margin-left: 33.3333333333%; + } + + .offset-sm-5 { + margin-left: 41.6666666667%; + } + + .offset-sm-6 { + margin-left: 50%; + } + + .offset-sm-7 { + margin-left: 58.3333333333%; + } + + .offset-sm-8 { + margin-left: 66.6666666667%; + } + + .offset-sm-9 { + margin-left: 75%; + } + + .offset-sm-10 { + margin-left: 83.3333333333%; + } + + .offset-sm-11 { + margin-left: 91.6666666667%; + } +} +@media (min-width: 768px) { + .col-md { + flex-basis: 0; + flex-grow: 1; + min-width: 0; + max-width: 100%; + } + + .row-cols-md-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + + .row-cols-md-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + + .row-cols-md-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .row-cols-md-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + + .row-cols-md-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + + .row-cols-md-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-md-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + + .col-md-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; + } + + .col-md-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-md-3 { + flex: 0 0 25%; + max-width: 25%; + } + + .col-md-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .col-md-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; + } + + .col-md-6 { + flex: 0 0 50%; + max-width: 50%; + } + + .col-md-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; + } + + .col-md-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; + } + + .col-md-9 { + flex: 0 0 75%; + max-width: 75%; + } + + .col-md-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; + } + + .col-md-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; + } + + .col-md-12 { + flex: 0 0 100%; + max-width: 100%; + } + + .order-md-first { + order: -1; + } + + .order-md-last { + order: 13; + } + + .order-md-0 { + order: 0; + } + + .order-md-1 { + order: 1; + } + + .order-md-2 { + order: 2; + } + + .order-md-3 { + order: 3; + } + + .order-md-4 { + order: 4; + } + + .order-md-5 { + order: 5; + } + + .order-md-6 { + order: 6; + } + + .order-md-7 { + order: 7; + } + + .order-md-8 { + order: 8; + } + + .order-md-9 { + order: 9; + } + + .order-md-10 { + order: 10; + } + + .order-md-11 { + order: 11; + } + + .order-md-12 { + order: 12; + } + + .offset-md-0 { + margin-left: 0; + } + + .offset-md-1 { + margin-left: 8.3333333333%; + } + + .offset-md-2 { + margin-left: 16.6666666667%; + } + + .offset-md-3 { + margin-left: 25%; + } + + .offset-md-4 { + margin-left: 33.3333333333%; + } + + .offset-md-5 { + margin-left: 41.6666666667%; + } + + .offset-md-6 { + margin-left: 50%; + } + + .offset-md-7 { + margin-left: 58.3333333333%; + } + + .offset-md-8 { + margin-left: 66.6666666667%; + } + + .offset-md-9 { + margin-left: 75%; + } + + .offset-md-10 { + margin-left: 83.3333333333%; + } + + .offset-md-11 { + margin-left: 91.6666666667%; + } +} +@media (min-width: 992px) { + .col-lg { + flex-basis: 0; + flex-grow: 1; + min-width: 0; + max-width: 100%; + } + + .row-cols-lg-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + + .row-cols-lg-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + + .row-cols-lg-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .row-cols-lg-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + + .row-cols-lg-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + + .row-cols-lg-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-lg-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + + .col-lg-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; + } + + .col-lg-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-lg-3 { + flex: 0 0 25%; + max-width: 25%; + } + + .col-lg-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .col-lg-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; + } + + .col-lg-6 { + flex: 0 0 50%; + max-width: 50%; + } + + .col-lg-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; + } + + .col-lg-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; + } + + .col-lg-9 { + flex: 0 0 75%; + max-width: 75%; + } + + .col-lg-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; + } + + .col-lg-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; + } + + .col-lg-12 { + flex: 0 0 100%; + max-width: 100%; + } + + .order-lg-first { + order: -1; + } + + .order-lg-last { + order: 13; + } + + .order-lg-0 { + order: 0; + } + + .order-lg-1 { + order: 1; + } + + .order-lg-2 { + order: 2; + } + + .order-lg-3 { + order: 3; + } + + .order-lg-4 { + order: 4; + } + + .order-lg-5 { + order: 5; + } + + .order-lg-6 { + order: 6; + } + + .order-lg-7 { + order: 7; + } + + .order-lg-8 { + order: 8; + } + + .order-lg-9 { + order: 9; + } + + .order-lg-10 { + order: 10; + } + + .order-lg-11 { + order: 11; + } + + .order-lg-12 { + order: 12; + } + + .offset-lg-0 { + margin-left: 0; + } + + .offset-lg-1 { + margin-left: 8.3333333333%; + } + + .offset-lg-2 { + margin-left: 16.6666666667%; + } + + .offset-lg-3 { + margin-left: 25%; + } + + .offset-lg-4 { + margin-left: 33.3333333333%; + } + + .offset-lg-5 { + margin-left: 41.6666666667%; + } + + .offset-lg-6 { + margin-left: 50%; + } + + .offset-lg-7 { + margin-left: 58.3333333333%; + } + + .offset-lg-8 { + margin-left: 66.6666666667%; + } + + .offset-lg-9 { + margin-left: 75%; + } + + .offset-lg-10 { + margin-left: 83.3333333333%; + } + + .offset-lg-11 { + margin-left: 91.6666666667%; + } +} +@media (min-width: 1200px) { + .col-xl { + flex-basis: 0; + flex-grow: 1; + min-width: 0; + max-width: 100%; + } + + .row-cols-xl-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + + .row-cols-xl-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + + .row-cols-xl-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .row-cols-xl-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + + .row-cols-xl-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + + .row-cols-xl-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-xl-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + + .col-xl-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; + } + + .col-xl-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-xl-3 { + flex: 0 0 25%; + max-width: 25%; + } + + .col-xl-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .col-xl-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; + } + + .col-xl-6 { + flex: 0 0 50%; + max-width: 50%; + } + + .col-xl-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; + } + + .col-xl-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; + } + + .col-xl-9 { + flex: 0 0 75%; + max-width: 75%; + } + + .col-xl-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; + } + + .col-xl-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; + } + + .col-xl-12 { + flex: 0 0 100%; + max-width: 100%; + } + + .order-xl-first { + order: -1; + } + + .order-xl-last { + order: 13; + } + + .order-xl-0 { + order: 0; + } + + .order-xl-1 { + order: 1; + } + + .order-xl-2 { + order: 2; + } + + .order-xl-3 { + order: 3; + } + + .order-xl-4 { + order: 4; + } + + .order-xl-5 { + order: 5; + } + + .order-xl-6 { + order: 6; + } + + .order-xl-7 { + order: 7; + } + + .order-xl-8 { + order: 8; + } + + .order-xl-9 { + order: 9; + } + + .order-xl-10 { + order: 10; + } + + .order-xl-11 { + order: 11; + } + + .order-xl-12 { + order: 12; + } + + .offset-xl-0 { + margin-left: 0; + } + + .offset-xl-1 { + margin-left: 8.3333333333%; + } + + .offset-xl-2 { + margin-left: 16.6666666667%; + } + + .offset-xl-3 { + margin-left: 25%; + } + + .offset-xl-4 { + margin-left: 33.3333333333%; + } + + .offset-xl-5 { + margin-left: 41.6666666667%; + } + + .offset-xl-6 { + margin-left: 50%; + } + + .offset-xl-7 { + margin-left: 58.3333333333%; + } + + .offset-xl-8 { + margin-left: 66.6666666667%; + } + + .offset-xl-9 { + margin-left: 75%; + } + + .offset-xl-10 { + margin-left: 83.3333333333%; + } + + .offset-xl-11 { + margin-left: 91.6666666667%; + } +} +.table { + width: 100%; + margin-bottom: 1rem; + color: #212529; +} +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +.table-bordered { + border: 1px solid #dee2e6; +} +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +.table-hover tbody tr:hover { + color: #212529; + background-color: rgba(0, 0, 0, 0.075); +} + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #d4e5e4; +} +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #aececc; +} + +.table-hover .table-primary:hover { + background-color: #c4dbda; +} +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #c4dbda; +} + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; +} +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #b3b7bb; +} + +.table-hover .table-secondary:hover { + background-color: #c8cbcf; +} +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #c8cbcf; +} + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #8fd19e; +} + +.table-hover .table-success:hover { + background-color: #b1dfbb; +} +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #86cfda; +} + +.table-hover .table-info:hover { + background-color: #abdde5; +} +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffdf7e; +} + +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #ed969e; +} + +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfc; +} + +.table-hover .table-light:hover { + background-color: #ececf6; +} +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #95999c; +} + +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +.table-black, +.table-black > th, +.table-black > td { + background-color: #b8b8b8; +} +.table-black th, +.table-black td, +.table-black thead th, +.table-black tbody + tbody { + border-color: #7a7a7a; +} + +.table-hover .table-black:hover { + background-color: #ababab; +} +.table-hover .table-black:hover > td, +.table-hover .table-black:hover > th { + background-color: #ababab; +} + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +.table .thead-dark th { + color: #fff; + background-color: #343a40; + border-color: #454d55; +} +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.table-dark { + color: #fff; + background-color: #343a40; +} +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #454d55; +} +.table-dark.table-bordered { + border: 0; +} +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} +.table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-sm > .table-bordered { + border: 0; + } +} +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-md > .table-bordered { + border: 0; + } +} +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-lg > .table-bordered { + border: 0; + } +} +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-xl > .table-bordered { + border: 0; + } +} +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} +.table-responsive > .table-bordered { + border: 0; +} + +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 20px 20px; + font-size: 25px; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 10px; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; + } +} +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} +.form-control:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #495057; +} +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #b3d1cf; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} +.form-control:disabled, +.form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +input[type="date"].form-control, +input[type="time"].form-control, +input[type="datetime-local"].form-control, +input[type="month"].form-control { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + font-size: 1rem; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} +.form-control-plaintext.form-control-sm, +.form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +select.form-control[size], +select.form-control[multiple] { + height: auto; +} + +textarea.form-control { + height: auto; +} + +.form-group { + margin-bottom: 1rem; +} + +.form-text { + display: block; + margin-top: 0.25rem; +} + +.form-row { + display: flex; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} +.form-check-input[disabled] ~ .form-check-label, +.form-check-input:disabled ~ .form-check-label { + color: #6c757d; +} + +.form-check-label { + margin-bottom: 0; +} + +.form-check-inline { + display: inline-flex; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.25rem; +} + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-control:valid, +.form-control.is-valid { + border-color: #28a745; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-control:valid:focus, +.form-control.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated textarea.form-control:valid, +textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right + calc(0.375em + 0.1875rem); +} + +.was-validated .custom-select:valid, +.custom-select.is-valid { + border-color: #28a745; + padding-right: calc(0.75em + 2.3125rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") + no-repeat right 0.75rem center/8px 10px, + url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") + #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) + calc(0.75em + 0.375rem); +} +.was-validated .custom-select:valid:focus, +.custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .form-check-input:valid ~ .form-check-label, +.form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, +.form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label, +.custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} +.was-validated .custom-control-input:valid ~ .custom-control-label::before, +.custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28a745; +} +.was-validated + .custom-control-input:valid:checked + ~ .custom-control-label::before, +.custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57; +} +.was-validated + .custom-control-input:valid:focus + ~ .custom-control-label::before, +.custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} +.was-validated + .custom-control-input:valid:focus:not(:checked) + ~ .custom-control-label::before, +.custom-control-input.is-valid:focus:not(:checked) + ~ .custom-control-label::before { + border-color: #28a745; +} + +.was-validated .custom-file-input:valid ~ .custom-file-label, +.custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, +.custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} + +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-control:invalid, +.form-control.is-invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-control:invalid:focus, +.form-control.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated textarea.form-control:invalid, +textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right + calc(0.375em + 0.1875rem); +} + +.was-validated .custom-select:invalid, +.custom-select.is-invalid { + border-color: #dc3545; + padding-right: calc(0.75em + 2.3125rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") + no-repeat right 0.75rem center/8px 10px, + url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") + #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) + calc(0.75em + 0.375rem); +} +.was-validated .custom-select:invalid:focus, +.custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .form-check-input:invalid ~ .form-check-label, +.form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, +.form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label, +.custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, +.custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #dc3545; +} +.was-validated + .custom-control-input:invalid:checked + ~ .custom-control-label::before, +.custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d; +} +.was-validated + .custom-control-input:invalid:focus + ~ .custom-control-label::before, +.custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} +.was-validated + .custom-control-input:invalid:focus:not(:checked) + ~ .custom-control-label::before, +.custom-control-input.is-invalid:focus:not(:checked) + ~ .custom-control-label::before { + border-color: #dc3545; +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label, +.custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, +.custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.form-inline { + display: flex; + flex-flow: row wrap; + align-items: center; +} +.form-inline .form-check { + width: 100%; +} +@media (min-width: 576px) { + .form-inline label { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 0; + } + .form-inline .form-group { + display: flex; + flex: 0 0 auto; + flex-flow: row wrap; + align-items: center; + margin-bottom: 0; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-plaintext { + display: inline-block; + } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; + } + .form-inline .form-check { + display: flex; + align-items: center; + justify-content: center; + width: auto; + padding-left: 0; + } + .form-inline .form-check-input { + position: relative; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + .form-inline .custom-control { + align-items: center; + justify-content: center; + } + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +.btn { + display: inline-block; + font-weight: 400; + color: #212529; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 30px; + line-height: 1.5; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.btn-detect { + background-color: #393e46; + border: 0; + border-radius: 15px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); + color: #fff; + font-size: 30px; + padding: 12px 25px; + letter-spacing: 1px; + margin-left: 10px; +} + +@media (prefers-reduced-motion: reduce) { + .btn { + transition: none; + } +} +.btn:hover { + color: #212529; + text-decoration: none; +} +.btn:focus, +.btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} +.btn.disabled, +.btn:disabled { + opacity: 0.65; +} +.btn:not(:disabled):not(.disabled) { + cursor: pointer; +} +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +.btn-primary { + color: #fff; + background-color: #64a19d; + border-color: #64a19d; +} +.btn-primary:hover { + color: #fff; + background-color: #548b87; + border-color: #4f837f; +} +.btn-primary:focus, +.btn-primary.focus { + color: #fff; + background-color: #548b87; + border-color: #4f837f; + box-shadow: 0 0 0 0.2rem rgba(123, 175, 172, 0.5); +} +.btn-primary.disabled, +.btn-primary:disabled { + color: #fff; + background-color: #64a19d; + border-color: #64a19d; +} +.btn-primary:not(:disabled):not(.disabled):active, +.btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #4f837f; + border-color: #4a7b78; +} +.btn-primary:not(:disabled):not(.disabled):active:focus, +.btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(123, 175, 172, 0.5); +} + +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; +} +.btn-secondary:focus, +.btn-secondary.focus { + color: #fff; + background-color: #5a6268; + border-color: #545b62; + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} +.btn-secondary.disabled, +.btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-secondary:not(:disabled):not(.disabled):active, +.btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; +} +.btn-secondary:not(:disabled):not(.disabled):active:focus, +.btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} +.btn-success:focus, +.btn-success.focus { + color: #fff; + background-color: #218838; + border-color: #1e7e34; + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} +.btn-success.disabled, +.btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} +.btn-success:not(:disabled):not(.disabled):active, +.btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} +.btn-success:not(:disabled):not(.disabled):active:focus, +.btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} +.btn-info:focus, +.btn-info.focus { + color: #fff; + background-color: #138496; + border-color: #117a8b; + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} +.btn-info.disabled, +.btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} +.btn-info:not(:disabled):not(.disabled):active, +.btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} +.btn-info:not(:disabled):not(.disabled):active:focus, +.btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} +.btn-warning:focus, +.btn-warning.focus { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} +.btn-warning.disabled, +.btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-warning:not(:disabled):not(.disabled):active, +.btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} +.btn-warning:not(:disabled):not(.disabled):active:focus, +.btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} +.btn-danger:focus, +.btn-danger.focus { + color: #fff; + background-color: #c82333; + border-color: #bd2130; + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} +.btn-danger.disabled, +.btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-danger:not(:disabled):not(.disabled):active, +.btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} +.btn-danger:not(:disabled):not(.disabled):active:focus, +.btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} +.btn-light:focus, +.btn-light.focus { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} +.btn-light.disabled, +.btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-light:not(:disabled):not(.disabled):active, +.btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} +.btn-light:not(:disabled):not(.disabled):active:focus, +.btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} +.btn-dark:focus, +.btn-dark.focus { + color: #fff; + background-color: #23272b; + border-color: #1d2124; + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} +.btn-dark.disabled, +.btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} +.btn-dark:not(:disabled):not(.disabled):active, +.btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} +.btn-dark:not(:disabled):not(.disabled):active:focus, +.btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +.btn-black { + color: #fff; + background-color: #000000; + border-color: #000000; +} +.btn-black:hover { + color: #fff; + background-color: black; + border-color: black; +} +.btn-black:focus, +.btn-black.focus { + color: #fff; + background-color: black; + border-color: black; + box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.5); +} +.btn-black.disabled, +.btn-black:disabled { + color: #fff; + background-color: #000000; + border-color: #000000; +} +.btn-black:not(:disabled):not(.disabled):active, +.btn-black:not(:disabled):not(.disabled).active, +.show > .btn-black.dropdown-toggle { + color: #fff; + background-color: black; + border-color: black; +} +.btn-black:not(:disabled):not(.disabled):active:focus, +.btn-black:not(:disabled):not(.disabled).active:focus, +.show > .btn-black.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.5); +} + +.btn-outline-primary { + color: #64a19d; + border-color: #64a19d; +} +.btn-outline-primary:hover { + color: #fff; + background-color: #64a19d; + border-color: #64a19d; +} +.btn-outline-primary:focus, +.btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.5); +} +.btn-outline-primary.disabled, +.btn-outline-primary:disabled { + color: #64a19d; + background-color: transparent; +} +.btn-outline-primary:not(:disabled):not(.disabled):active, +.btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #64a19d; + border-color: #64a19d; +} +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, +.btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.5); +} + +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-outline-secondary:focus, +.btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} +.btn-outline-secondary.disabled, +.btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} +.btn-outline-secondary:not(:disabled):not(.disabled):active, +.btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, +.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-success { + color: #28a745; + border-color: #28a745; +} +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} +.btn-outline-success:focus, +.btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} +.btn-outline-success.disabled, +.btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} +.btn-outline-success:not(:disabled):not(.disabled):active, +.btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} +.btn-outline-success:not(:disabled):not(.disabled):active:focus, +.btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8; +} +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} +.btn-outline-info:focus, +.btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} +.btn-outline-info.disabled, +.btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} +.btn-outline-info:not(:disabled):not(.disabled):active, +.btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} +.btn-outline-info:not(:disabled):not(.disabled):active:focus, +.btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-outline-warning:focus, +.btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} +.btn-outline-warning.disabled, +.btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} +.btn-outline-warning:not(:disabled):not(.disabled):active, +.btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, +.btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-outline-danger:focus, +.btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} +.btn-outline-danger.disabled, +.btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} +.btn-outline-danger:not(:disabled):not(.disabled):active, +.btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, +.btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-outline-light:focus, +.btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} +.btn-outline-light.disabled, +.btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} +.btn-outline-light:not(:disabled):not(.disabled):active, +.btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-outline-light:not(:disabled):not(.disabled):active:focus, +.btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-dark { + color: #343a40; + border-color: #343a40; +} +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} +.btn-outline-dark:focus, +.btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} +.btn-outline-dark.disabled, +.btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} +.btn-outline-dark:not(:disabled):not(.disabled):active, +.btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, +.btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-black { + color: #000000; + border-color: #000000; +} +.btn-outline-black:hover { + color: #fff; + background-color: #000000; + border-color: #000000; +} +.btn-outline-black:focus, +.btn-outline-black.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); +} +.btn-outline-black.disabled, +.btn-outline-black:disabled { + color: #000000; + background-color: transparent; +} +.btn-outline-black:not(:disabled):not(.disabled):active, +.btn-outline-black:not(:disabled):not(.disabled).active, +.show > .btn-outline-black.dropdown-toggle { + color: #fff; + background-color: #000000; + border-color: #000000; +} +.btn-outline-black:not(:disabled):not(.disabled):active:focus, +.btn-outline-black:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-black.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); +} + +.btn-link { + font-weight: 400; + color: #64a19d; + text-decoration: none; +} +.btn-link:hover { + color: #467370; + text-decoration: underline; +} +.btn-link:focus, +.btn-link.focus { + text-decoration: underline; +} +.btn-link:disabled, +.btn-link.disabled { + color: #6c757d; + pointer-events: none; +} + +.btn-lg, +.btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.btn-sm, +.btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.btn-block { + display: block; + width: 100%; +} +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + transition: opacity 0.15s linear; +} +@media (prefers-reduced-motion: reduce) { + .fade { + transition: none; + } +} +.fade:not(.show) { + opacity: 0; +} + +.collapse:not(.show) { + display: none; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; +} + +.dropdown-toggle { + white-space: nowrap; +} +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +.dropdown-menu-left { + right: auto; + left: 0; +} + +.dropdown-menu-right { + right: 0; + left: auto; +} + +@media (min-width: 576px) { + .dropdown-menu-sm-left { + right: auto; + left: 0; + } + + .dropdown-menu-sm-right { + right: 0; + left: auto; + } +} +@media (min-width: 768px) { + .dropdown-menu-md-left { + right: auto; + left: 0; + } + + .dropdown-menu-md-right { + right: 0; + left: auto; + } +} +@media (min-width: 992px) { + .dropdown-menu-lg-left { + right: auto; + left: 0; + } + + .dropdown-menu-lg-right { + right: 0; + left: auto; + } +} +@media (min-width: 1200px) { + .dropdown-menu-xl-left { + right: auto; + left: 0; + } + + .dropdown-menu-xl-right { + right: 0; + left: auto; + } +} +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} +.dropleft .dropdown-toggle::after { + display: none; +} +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-menu[x-placement^="top"], +.dropdown-menu[x-placement^="right"], +.dropdown-menu[x-placement^="bottom"], +.dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} +.dropdown-item:hover, +.dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} +.dropdown-item.active, +.dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #64a19d; +} +.dropdown-item.disabled, +.dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + flex: 1 1 auto; +} +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; +} +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after { + margin-left: 0; +} +.dropleft .dropdown-toggle-split::before { + margin-right: 0; +} + +.btn-sm + .dropdown-toggle-split, +.btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, +.btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; +} +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; +} +.input-group > .form-control, +.input-group > .form-control-plaintext, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; + margin-bottom: 0; +} +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .form-control-plaintext + .form-control, +.input-group > .form-control-plaintext + .custom-select, +.input-group > .form-control-plaintext + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; +} +.input-group > .custom-file .custom-file-input:focus { + z-index: 4; +} +.input-group > .form-control:not(:last-child), +.input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.input-group > .custom-file { + display: flex; + align-items: center; +} +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group-prepend, +.input-group-append { + display: flex; +} +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} +.input-group-prepend .btn:focus, +.input-group-append .btn:focus { + z-index: 3; +} +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +.input-group-prepend { + margin-right: -1px; +} + +.input-group-append { + margin-left: -1px; +} + +.input-group-text { + display: flex; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); +} + +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); +} + +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; +} + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group + > .input-group-append:last-child + > .btn:not(:last-child):not(.dropdown-toggle), +.input-group + > .input-group-append:last-child + > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group + > .input-group-prepend:first-child + > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +.custom-control-inline { + display: inline-flex; + margin-right: 1rem; +} + +.custom-control-input { + position: absolute; + left: 0; + z-index: -1; + width: 1rem; + height: 1.25rem; + opacity: 0; +} +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #64a19d; + background-color: #64a19d; +} +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} +.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #b3d1cf; +} +.custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #d3e4e3; + border-color: #d3e4e3; +} +.custom-control-input[disabled] ~ .custom-control-label, +.custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; +} +.custom-control-input[disabled] ~ .custom-control-label::before, +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; +} +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; +} +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50%/50% 50%; +} + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); +} +.custom-checkbox + .custom-control-input:indeterminate + ~ .custom-control-label::before { + border-color: #64a19d; + background-color: #64a19d; +} +.custom-checkbox + .custom-control-input:indeterminate + ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); +} +.custom-checkbox + .custom-control-input:disabled:checked + ~ .custom-control-label::before { + background-color: rgba(100, 161, 157, 0.5); +} +.custom-checkbox + .custom-control-input:disabled:indeterminate + ~ .custom-control-label::before { + background-color: rgba(100, 161, 157, 0.5); +} + +.custom-radio .custom-control-label::before { + border-radius: 50%; +} +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} +.custom-radio + .custom-control-input:disabled:checked + ~ .custom-control-label::before { + background-color: rgba(100, 161, 157, 0.5); +} + +.custom-switch { + padding-left: 2.25rem; +} +.custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; +} +.custom-switch .custom-control-label::after { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: 0.5rem; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .custom-switch .custom-control-label::after { + transition: none; + } +} +.custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + transform: translateX(0.75rem); +} +.custom-switch + .custom-control-input:disabled:checked + ~ .custom-control-label::before { + background-color: rgba(100, 161, 157, 0.5); +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: #fff + url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") + no-repeat right 0.75rem center/8px 10px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +.custom-select:focus { + border-color: #b3d1cf; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} +.custom-select[multiple], +.custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; +} +.custom-select::-ms-expand { + display: none; +} +.custom-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #495057; +} + +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; +} + +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; +} +.custom-file-input:focus ~ .custom-file-label { + border-color: #b3d1cf; + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} +.custom-file-input[disabled] ~ .custom-file-label, +.custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; +} +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} +.custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); +} + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: inherit; + border-radius: 0 0.25rem 0.25rem 0; +} + +.custom-range { + width: 100%; + height: 1.4rem; + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +.custom-range:focus { + outline: none; +} +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} +.custom-range::-moz-focus-outer { + border: 0; +} +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #64a19d; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, + box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} +.custom-range::-webkit-slider-thumb:active { + background-color: #d3e4e3; +} +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #64a19d; + border: 0; + border-radius: 1rem; + -moz-transition: background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, + box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .custom-range::-moz-range-thumb { + -moz-transition: none; + transition: none; + } +} +.custom-range::-moz-range-thumb:active { + background-color: #d3e4e3; +} +.custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #64a19d; + border: 0; + border-radius: 1rem; + -ms-transition: background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, + box-shadow 0.15s ease-in-out; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .custom-range::-ms-thumb { + -ms-transition: none; + transition: none; + } +} +.custom-range::-ms-thumb:active { + background-color: #d3e4e3; +} +.custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; +} +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; +} +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; +} +.custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} +.custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; +} +.custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} +.custom-range:disabled::-moz-range-track { + cursor: default; +} +.custom-range:disabled::-ms-thumb { + background-color: #adb5bd; +} + +.custom-control-label::before, +.custom-file-label, +.custom-select { + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, + box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + transition: none; + } +} + +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; +} +.nav-link:hover, +.nav-link:focus { + text-decoration: none; +} +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} +.nav-tabs .nav-item { + margin-bottom: -1px; +} +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} +.nav-tabs .nav-link:hover, +.nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; +} +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills .nav-link { + border-radius: 0.25rem; +} +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #64a19d; +} + +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; +} + +.nav-justified .nav-item { + flex-basis: 0; + flex-grow: 1; + text-align: center; +} + +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding: 0.5rem 1rem; +} +.navbar .container, +.navbar .container-fluid, +.navbar .container-sm, +.navbar .container-md, +.navbar .container-lg, +.navbar .container-xl { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; +} +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} + +.navbar-nav { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} +.navbar-toggler:hover, +.navbar-toggler:focus { + text-decoration: none; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid, + .navbar-expand-sm > .container-sm, + .navbar-expand-sm > .container-md, + .navbar-expand-sm > .container-lg, + .navbar-expand-sm > .container-xl { + padding-right: 0; + padding-left: 0; + } +} +@media (min-width: 576px) { + .navbar-expand-sm { + flex-flow: row nowrap; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid, + .navbar-expand-sm > .container-sm, + .navbar-expand-sm > .container-md, + .navbar-expand-sm > .container-lg, + .navbar-expand-sm > .container-xl { + flex-wrap: nowrap; + } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } +} +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid, + .navbar-expand-md > .container-sm, + .navbar-expand-md > .container-md, + .navbar-expand-md > .container-lg, + .navbar-expand-md > .container-xl { + padding-right: 0; + padding-left: 0; + } +} +@media (min-width: 768px) { + .navbar-expand-md { + flex-flow: row nowrap; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid, + .navbar-expand-md > .container-sm, + .navbar-expand-md > .container-md, + .navbar-expand-md > .container-lg, + .navbar-expand-md > .container-xl { + flex-wrap: nowrap; + } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } +} +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid, + .navbar-expand-lg > .container-sm, + .navbar-expand-lg > .container-md, + .navbar-expand-lg > .container-lg, + .navbar-expand-lg > .container-xl { + padding-right: 0; + padding-left: 0; + } +} +@media (min-width: 992px) { + .navbar-expand-lg { + flex-flow: row nowrap; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid, + .navbar-expand-lg > .container-sm, + .navbar-expand-lg > .container-md, + .navbar-expand-lg > .container-lg, + .navbar-expand-lg > .container-xl { + flex-wrap: nowrap; + } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } +} +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid, + .navbar-expand-xl > .container-sm, + .navbar-expand-xl > .container-md, + .navbar-expand-xl > .container-lg, + .navbar-expand-xl > .container-xl { + padding-right: 0; + padding-left: 0; + } +} +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-flow: row nowrap; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid, + .navbar-expand-xl > .container-sm, + .navbar-expand-xl > .container-md, + .navbar-expand-xl > .container-lg, + .navbar-expand-xl > .container-xl { + flex-wrap: nowrap; + } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } +} +.navbar-expand { + flex-flow: row nowrap; + justify-content: flex-start; +} +.navbar-expand > .container, +.navbar-expand > .container-fluid, +.navbar-expand > .container-sm, +.navbar-expand > .container-md, +.navbar-expand > .container-lg, +.navbar-expand > .container-xl { + padding-right: 0; + padding-left: 0; +} +.navbar-expand .navbar-nav { + flex-direction: row; +} +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} +.navbar-expand > .container, +.navbar-expand > .container-fluid, +.navbar-expand > .container-sm, +.navbar-expand > .container-md, +.navbar-expand > .container-lg, +.navbar-expand > .container-xl { + flex-wrap: nowrap; +} +.navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; +} +.navbar-expand .navbar-toggler { + display: none; +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-brand:hover, +.navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} +.navbar-light .navbar-nav .nav-link:hover, +.navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-text a:hover, +.navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-dark .navbar-brand { + color: #fff; +} +.navbar-dark .navbar-brand:hover, +.navbar-dark .navbar-brand:focus { + color: #fff; +} +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} +.navbar-dark .navbar-nav .nav-link:hover, +.navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} +.navbar-dark .navbar-text a { + color: #fff; +} +.navbar-dark .navbar-text a:hover, +.navbar-dark .navbar-text a:focus { + color: #fff; +} + +.card { + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} +.card > hr { + margin-right: 0; + margin-left: 0; +} +.card > .list-group { + border-top: inherit; + border-bottom: inherit; +} +.card > .list-group:first-child { + border-top-width: 0; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +.card-body { + flex: 1 1 auto; + min-height: 1px; + padding: 1.25rem; +} + +.card-title { + margin-bottom: 0.75rem; +} + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} +.card-link + .card-link { + margin-left: 1.25rem; +} + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +.card-img, +.card-img-top, +.card-img-bottom { + flex-shrink: 0; + width: 100%; +} + +.card-img, +.card-img-top { + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +.card-img, +.card-img-bottom { + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +.card-deck .card { + margin-bottom: 0.75rem; +} +@media (min-width: 576px) { + .card-deck { + display: flex; + flex-flow: row wrap; + margin-right: -0.75rem; + margin-left: -0.75rem; + } + .card-deck .card { + flex: 1 0 0%; + margin-right: 0.75rem; + margin-bottom: 0; + margin-left: 0.75rem; + } +} + +.card-group > .card { + margin-bottom: 0.75rem; +} +@media (min-width: 576px) { + .card-group { + display: flex; + flex-flow: row wrap; + } + .card-group > .card { + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} + +.card-columns .card { + margin-bottom: 0.75rem; +} +@media (min-width: 576px) { + .card-columns { + -moz-column-count: 3; + column-count: 3; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; + } + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +.accordion > .card { + overflow: hidden; +} +.accordion > .card:not(:last-of-type) { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.accordion > .card:not(:first-of-type) { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.accordion > .card > .card-header { + border-radius: 0; + margin-bottom: -1px; +} + +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.breadcrumb-item { + display: flex; +} +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; +} +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} +.breadcrumb-item.active { + color: #6c757d; +} + +.pagination { + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #64a19d; + background-color: #fff; + border: 1px solid #dee2e6; +} +.page-link:hover { + z-index: 2; + color: #467370; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} +.page-link:focus { + z-index: 3; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.25); +} + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #64a19d; + border-color: #64a19d; +} +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .badge { + transition: none; + } +} +a.badge:hover, +a.badge:focus { + text-decoration: none; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +.badge-primary { + color: #fff; + background-color: #64a19d; +} +a.badge-primary:hover, +a.badge-primary:focus { + color: #fff; + background-color: #4f837f; +} +a.badge-primary:focus, +a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(100, 161, 157, 0.5); +} + +.badge-secondary { + color: #fff; + background-color: #6c757d; +} +a.badge-secondary:hover, +a.badge-secondary:focus { + color: #fff; + background-color: #545b62; +} +a.badge-secondary:focus, +a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.badge-success { + color: #fff; + background-color: #28a745; +} +a.badge-success:hover, +a.badge-success:focus { + color: #fff; + background-color: #1e7e34; +} +a.badge-success:focus, +a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.badge-info { + color: #fff; + background-color: #17a2b8; +} +a.badge-info:hover, +a.badge-info:focus { + color: #fff; + background-color: #117a8b; +} +a.badge-info:focus, +a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.badge-warning { + color: #212529; + background-color: #ffc107; +} +a.badge-warning:hover, +a.badge-warning:focus { + color: #212529; + background-color: #d39e00; +} +a.badge-warning:focus, +a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.badge-danger { + color: #fff; + background-color: #dc3545; +} +a.badge-danger:hover, +a.badge-danger:focus { + color: #fff; + background-color: #bd2130; +} +a.badge-danger:focus, +a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.badge-light { + color: #212529; + background-color: #f8f9fa; +} +a.badge-light:hover, +a.badge-light:focus { + color: #212529; + background-color: #dae0e5; +} +a.badge-light:focus, +a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.badge-dark { + color: #fff; + background-color: #343a40; +} +a.badge-dark:hover, +a.badge-dark:focus { + color: #fff; + background-color: #1d2124; +} +a.badge-dark:focus, +a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.badge-black { + color: #fff; + background-color: #000000; +} +a.badge-black:hover, +a.badge-black:focus { + color: #fff; + background-color: black; +} +a.badge-black:focus, +a.badge-black.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} +@media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; + } +} + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; +} + +.alert-dismissible { + padding-right: 4rem; +} +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +.alert-primary { + color: #345452; + background-color: #e0eceb; + border-color: #d4e5e4; +} +.alert-primary hr { + border-top-color: #c4dbda; +} +.alert-primary .alert-link { + color: #213533; +} + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} +.alert-secondary hr { + border-top-color: #c8cbcf; +} +.alert-secondary .alert-link { + color: #202326; +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} +.alert-success hr { + border-top-color: #b1dfbb; +} +.alert-success .alert-link { + color: #0b2e13; +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} +.alert-info hr { + border-top-color: #abdde5; +} +.alert-info .alert-link { + color: #062c33; +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} +.alert-warning hr { + border-top-color: #ffe8a1; +} +.alert-warning .alert-link { + color: #533f03; +} + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} +.alert-danger hr { + border-top-color: #f1b0b7; +} +.alert-danger .alert-link { + color: #491217; +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} +.alert-light hr { + border-top-color: #ececf6; +} +.alert-light .alert-link { + color: #686868; +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} +.alert-dark hr { + border-top-color: #b9bbbe; +} +.alert-dark .alert-link { + color: #040505; +} + +.alert-black { + color: black; + background-color: #cccccc; + border-color: #b8b8b8; +} +.alert-black hr { + border-top-color: #ababab; +} +.alert-black .alert-link { + color: black; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} +.progress { + display: flex; + height: 1rem; + overflow: hidden; + line-height: 0; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #64a19d; + transition: width 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} + +.progress-bar-striped { + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-size: 1rem 1rem; +} + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} +@media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + -webkit-animation: none; + animation: none; + } +} + +.media { + display: flex; + align-items: flex-start; +} + +.media-body { + flex: 1; +} + +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: 0.25rem; +} + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} +.list-group-item-action:hover, +.list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} +.list-group-item:first-child { + border-top-left-radius: inherit; + border-top-right-radius: inherit; +} +.list-group-item:last-child { + border-bottom-right-radius: inherit; + border-bottom-left-radius: inherit; +} +.list-group-item.disabled, +.list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; +} +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #64a19d; + border-color: #64a19d; +} +.list-group-item + .list-group-item { + border-top-width: 0; +} +.list-group-item + .list-group-item.active { + margin-top: -1px; + border-top-width: 1px; +} + +.list-group-horizontal { + flex-direction: row; +} +.list-group-horizontal > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; +} +.list-group-horizontal > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; +} +.list-group-horizontal > .list-group-item.active { + margin-top: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; +} + +@media (min-width: 576px) { + .list-group-horizontal-sm { + flex-direction: row; + } + .list-group-horizontal-sm > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-sm > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +@media (min-width: 768px) { + .list-group-horizontal-md { + flex-direction: row; + } + .list-group-horizontal-md > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-md > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +@media (min-width: 992px) { + .list-group-horizontal-lg { + flex-direction: row; + } + .list-group-horizontal-lg > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-lg > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +@media (min-width: 1200px) { + .list-group-horizontal-xl { + flex-direction: row; + } + .list-group-horizontal-xl > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-xl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +.list-group-flush { + border-radius: 0; +} +.list-group-flush > .list-group-item { + border-width: 0 0 1px; +} +.list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; +} + +.list-group-item-primary { + color: #345452; + background-color: #d4e5e4; +} +.list-group-item-primary.list-group-item-action:hover, +.list-group-item-primary.list-group-item-action:focus { + color: #345452; + background-color: #c4dbda; +} +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #345452; + border-color: #345452; +} + +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; +} +.list-group-item-secondary.list-group-item-action:hover, +.list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; +} +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; +} + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} +.list-group-item-success.list-group-item-action:hover, +.list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; +} +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} +.list-group-item-info.list-group-item-action:hover, +.list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; +} +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} +.list-group-item-warning.list-group-item-action:hover, +.list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; +} +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} +.list-group-item-danger.list-group-item-action:hover, +.list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; +} +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} +.list-group-item-light.list-group-item-action:hover, +.list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; +} +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} +.list-group-item-dark.list-group-item-action:hover, +.list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; +} +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +.list-group-item-black { + color: black; + background-color: #b8b8b8; +} +.list-group-item-black.list-group-item-action:hover, +.list-group-item-black.list-group-item-action:focus { + color: black; + background-color: #ababab; +} +.list-group-item-black.list-group-item-action.active { + color: #fff; + background-color: black; + border-color: black; +} + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000000; + text-shadow: 0 1px 0 #fff; + opacity: 0.5; +} +.close:hover { + color: #000000; + text-decoration: none; +} +.close:not(:disabled):not(.disabled):hover, +.close:not(:disabled):not(.disabled):focus { + opacity: 0.75; +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; +} + +a.close.disabled { + pointer-events: none; +} + +.toast { + max-width: 350px; + overflow: hidden; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + opacity: 0; + border-radius: 0.25rem; +} +.toast:not(:last-child) { + margin-bottom: 0.75rem; +} +.toast.showing { + opacity: 1; +} +.toast.show { + display: block; + opacity: 1; +} +.toast.hide { + display: none; +} + +.toast-header { + display: flex; + align-items: center; + padding: 0.25rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); +} + +.toast-body { + padding: 0.75rem; +} + +.modal-open { + overflow: hidden; +} +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; +} + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} +.modal.fade .modal-dialog { + transition: transform 0.3s ease-out; + transform: translate(0, -50px); +} +@media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; + } +} +.modal.show .modal-dialog { + transform: none; +} +.modal.modal-static .modal-dialog { + transform: scale(1.02); +} + +.modal-dialog-scrollable { + display: flex; + max-height: calc(100% - 1rem); +} +.modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; +} +.modal-dialog-scrollable .modal-header, +.modal-dialog-scrollable .modal-footer { + flex-shrink: 0; +} +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - 1rem); +} +.modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + height: -webkit-min-content; + height: -moz-min-content; + height: min-content; + content: ""; +} +.modal-dialog-centered.modal-dialog-scrollable { + flex-direction: column; + justify-content: center; + height: 100%; +} +.modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; +} +.modal-dialog-centered.modal-dialog-scrollable::before { + content: none; +} + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000000; +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop.show { + opacity: 0.5; +} + +.modal-header { + display: flex; + align-items: flex-start; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} +.modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: 1rem; +} + +.modal-footer { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: flex-end; + padding: 0.75rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: calc(0.3rem - 1px); + border-bottom-left-radius: calc(0.3rem - 1px); +} +.modal-footer > * { + margin: 0.25rem; +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); + } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); + } + + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); + height: -webkit-min-content; + height: -moz-min-content; + height: min-content; + } + + .modal-sm { + max-width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; + } +} +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; + } +} +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", + "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} +.tooltip.show { + opacity: 0.9; +} +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, +.bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} +.bs-tooltip-top .arrow, +.bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} +.bs-tooltip-top .arrow::before, +.bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000000; +} + +.bs-tooltip-right, +.bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} +.bs-tooltip-right .arrow, +.bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} +.bs-tooltip-right .arrow::before, +.bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000000; +} + +.bs-tooltip-bottom, +.bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} +.bs-tooltip-bottom .arrow, +.bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} +.bs-tooltip-bottom .arrow::before, +.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000000; +} + +.bs-tooltip-left, +.bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} +.bs-tooltip-left .arrow, +.bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} +.bs-tooltip-left .arrow::before, +.bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000000; + border-radius: 0.25rem; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", + "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} +.popover .arrow::before, +.popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top, +.bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} +.bs-popover-top > .arrow, +.bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc(-0.5rem - 1px); +} +.bs-popover-top > .arrow::before, +.bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-top > .arrow::after, +.bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +.bs-popover-right, +.bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} +.bs-popover-right > .arrow, +.bs-popover-auto[x-placement^="right"] > .arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} +.bs-popover-right > .arrow::before, +.bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-right > .arrow::after, +.bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +.bs-popover-bottom, +.bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} +.bs-popover-bottom > .arrow, +.bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc(-0.5rem - 1px); +} +.bs-popover-bottom > .arrow::before, +.bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-bottom > .arrow::after, +.bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} +.bs-popover-bottom .popover-header::before, +.bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +.bs-popover-left, +.bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} +.bs-popover-left > .arrow, +.bs-popover-auto[x-placement^="left"] > .arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} +.bs-popover-left > .arrow::before, +.bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-left > .arrow::after, +.bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} +.popover-header:empty { + display: none; +} + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +.carousel { + position: relative; +} + +.carousel.pointer-event { + touch-action: pan-y; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + transform: translateX(100%); +} + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + transform: translateX(-100%); +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; +} +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; +} +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; +} +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + transition: none; + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + transition: opacity 0.15s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; + } +} +.carousel-control-prev:hover, +.carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50%/100% 100%; +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: flex; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} +.carousel-indicators li { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: 0.5; + transition: opacity 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-indicators li { + transition: none; + } +} +.carousel-indicators .active { + opacity: 1; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +@-webkit-keyframes spinner-border { + to { + transform: rotate(360deg); + } +} + +@keyframes spinner-border { + to { + transform: rotate(360deg); + } +} +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border 0.75s linear infinite; + animation: spinner-border 0.75s linear infinite; +} + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} + +@-webkit-keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + transform: none; + } +} + +@keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + transform: none; + } +} +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow 0.75s linear infinite; + animation: spinner-grow 0.75s linear infinite; +} + +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.bg-primary { + background-color: #64a19d !important; +} + +a.bg-primary:hover, +a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #4f837f !important; +} + +.bg-secondary { + background-color: #6c757d !important; +} + +a.bg-secondary:hover, +a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; +} + +.bg-success { + background-color: #28a745 !important; +} + +a.bg-success:hover, +a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; +} + +.bg-info { + background-color: #17a2b8 !important; +} + +a.bg-info:hover, +a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; +} + +.bg-warning { + background-color: #ffc107 !important; +} + +a.bg-warning:hover, +a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; +} + +.bg-danger { + background-color: #dc3545 !important; +} + +a.bg-danger:hover, +a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; +} + +.bg-light { + background-color: #f8f9fa !important; +} + +a.bg-light:hover, +a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; +} + +.bg-dark { + background-color: #343a40 !important; +} + +a.bg-dark:hover, +a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; +} + +.bg-black { + background-color: #000000 !important; +} + +a.bg-black:hover, +a.bg-black:focus, +button.bg-black:hover, +button.bg-black:focus { + background-color: black !important; +} + +.bg-white { + background-color: #fff !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.border { + border: 1px solid #dee2e6 !important; +} + +.border-top { + border-top: 1px solid #dee2e6 !important; +} + +.border-right { + border-right: 1px solid #dee2e6 !important; +} + +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} + +.border-left { + border-left: 1px solid #dee2e6 !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-right-0 { + border-right: 0 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-left-0 { + border-left: 0 !important; +} + +.border-primary { + border-color: #64a19d !important; +} + +.border-secondary { + border-color: #6c757d !important; +} + +.border-success { + border-color: #28a745 !important; +} + +.border-info { + border-color: #17a2b8 !important; +} + +.border-warning { + border-color: #ffc107 !important; +} + +.border-danger { + border-color: #dc3545 !important; +} + +.border-light { + border-color: #f8f9fa !important; +} + +.border-dark { + border-color: #343a40 !important; +} + +.border-black { + border-color: #000000 !important; +} + +.border-white { + border-color: #fff !important; +} + +.rounded-sm { + border-radius: 0.2rem !important; +} + +.rounded { + border-radius: 0.25rem !important; +} + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-lg { + border-radius: 0.3rem !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-pill { + border-radius: 50rem !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; + } + + .d-sm-inline { + display: inline !important; + } + + .d-sm-inline-block { + display: inline-block !important; + } + + .d-sm-block { + display: block !important; + } + + .d-sm-table { + display: table !important; + } + + .d-sm-table-row { + display: table-row !important; + } + + .d-sm-table-cell { + display: table-cell !important; + } + + .d-sm-flex { + display: flex !important; + } + + .d-sm-inline-flex { + display: inline-flex !important; + } +} +@media (min-width: 768px) { + .d-md-none { + display: none !important; + } + + .d-md-inline { + display: inline !important; + } + + .d-md-inline-block { + display: inline-block !important; + } + + .d-md-block { + display: block !important; + } + + .d-md-table { + display: table !important; + } + + .d-md-table-row { + display: table-row !important; + } + + .d-md-table-cell { + display: table-cell !important; + } + + .d-md-flex { + display: flex !important; + } + + .d-md-inline-flex { + display: inline-flex !important; + } +} +@media (min-width: 992px) { + .d-lg-none { + display: none !important; + } + + .d-lg-inline { + display: inline !important; + } + + .d-lg-inline-block { + display: inline-block !important; + } + + .d-lg-block { + display: block !important; + } + + .d-lg-table { + display: table !important; + } + + .d-lg-table-row { + display: table-row !important; + } + + .d-lg-table-cell { + display: table-cell !important; + } + + .d-lg-flex { + display: flex !important; + } + + .d-lg-inline-flex { + display: inline-flex !important; + } +} +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + + .d-xl-inline { + display: inline !important; + } + + .d-xl-inline-block { + display: inline-block !important; + } + + .d-xl-block { + display: block !important; + } + + .d-xl-table { + display: table !important; + } + + .d-xl-table-row { + display: table-row !important; + } + + .d-xl-table-cell { + display: table-cell !important; + } + + .d-xl-flex { + display: flex !important; + } + + .d-xl-inline-flex { + display: inline-flex !important; + } +} +@media print { + .d-print-none { + display: none !important; + } + + .d-print-inline { + display: inline !important; + } + + .d-print-inline-block { + display: inline-block !important; + } + + .d-print-block { + display: block !important; + } + + .d-print-table { + display: table !important; + } + + .d-print-table-row { + display: table-row !important; + } + + .d-print-table-cell { + display: table-cell !important; + } + + .d-print-flex { + display: flex !important; + } + + .d-print-inline-flex { + display: inline-flex !important; + } +} +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} +.embed-responsive::before { + display: block; + content: ""; +} +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.embed-responsive-21by9::before { + padding-top: 42.8571428571%; +} + +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +.embed-responsive-4by3::before { + padding-top: 75%; +} + +.embed-responsive-1by1::before { + padding-top: 100%; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + flex-direction: row !important; + } + + .flex-sm-column { + flex-direction: column !important; + } + + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-sm-wrap { + flex-wrap: wrap !important; + } + + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .flex-sm-fill { + flex: 1 1 auto !important; + } + + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + + .justify-content-sm-start { + justify-content: flex-start !important; + } + + .justify-content-sm-end { + justify-content: flex-end !important; + } + + .justify-content-sm-center { + justify-content: center !important; + } + + .justify-content-sm-between { + justify-content: space-between !important; + } + + .justify-content-sm-around { + justify-content: space-around !important; + } + + .align-items-sm-start { + align-items: flex-start !important; + } + + .align-items-sm-end { + align-items: flex-end !important; + } + + .align-items-sm-center { + align-items: center !important; + } + + .align-items-sm-baseline { + align-items: baseline !important; + } + + .align-items-sm-stretch { + align-items: stretch !important; + } + + .align-content-sm-start { + align-content: flex-start !important; + } + + .align-content-sm-end { + align-content: flex-end !important; + } + + .align-content-sm-center { + align-content: center !important; + } + + .align-content-sm-between { + align-content: space-between !important; + } + + .align-content-sm-around { + align-content: space-around !important; + } + + .align-content-sm-stretch { + align-content: stretch !important; + } + + .align-self-sm-auto { + align-self: auto !important; + } + + .align-self-sm-start { + align-self: flex-start !important; + } + + .align-self-sm-end { + align-self: flex-end !important; + } + + .align-self-sm-center { + align-self: center !important; + } + + .align-self-sm-baseline { + align-self: baseline !important; + } + + .align-self-sm-stretch { + align-self: stretch !important; + } +} +@media (min-width: 768px) { + .flex-md-row { + flex-direction: row !important; + } + + .flex-md-column { + flex-direction: column !important; + } + + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-md-wrap { + flex-wrap: wrap !important; + } + + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .flex-md-fill { + flex: 1 1 auto !important; + } + + .flex-md-grow-0 { + flex-grow: 0 !important; + } + + .flex-md-grow-1 { + flex-grow: 1 !important; + } + + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + + .justify-content-md-start { + justify-content: flex-start !important; + } + + .justify-content-md-end { + justify-content: flex-end !important; + } + + .justify-content-md-center { + justify-content: center !important; + } + + .justify-content-md-between { + justify-content: space-between !important; + } + + .justify-content-md-around { + justify-content: space-around !important; + } + + .align-items-md-start { + align-items: flex-start !important; + } + + .align-items-md-end { + align-items: flex-end !important; + } + + .align-items-md-center { + align-items: center !important; + } + + .align-items-md-baseline { + align-items: baseline !important; + } + + .align-items-md-stretch { + align-items: stretch !important; + } + + .align-content-md-start { + align-content: flex-start !important; + } + + .align-content-md-end { + align-content: flex-end !important; + } + + .align-content-md-center { + align-content: center !important; + } + + .align-content-md-between { + align-content: space-between !important; + } + + .align-content-md-around { + align-content: space-around !important; + } + + .align-content-md-stretch { + align-content: stretch !important; + } + + .align-self-md-auto { + align-self: auto !important; + } + + .align-self-md-start { + align-self: flex-start !important; + } + + .align-self-md-end { + align-self: flex-end !important; + } + + .align-self-md-center { + align-self: center !important; + } + + .align-self-md-baseline { + align-self: baseline !important; + } + + .align-self-md-stretch { + align-self: stretch !important; + } +} +@media (min-width: 992px) { + .flex-lg-row { + flex-direction: row !important; + } + + .flex-lg-column { + flex-direction: column !important; + } + + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-lg-wrap { + flex-wrap: wrap !important; + } + + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .flex-lg-fill { + flex: 1 1 auto !important; + } + + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + + .justify-content-lg-start { + justify-content: flex-start !important; + } + + .justify-content-lg-end { + justify-content: flex-end !important; + } + + .justify-content-lg-center { + justify-content: center !important; + } + + .justify-content-lg-between { + justify-content: space-between !important; + } + + .justify-content-lg-around { + justify-content: space-around !important; + } + + .align-items-lg-start { + align-items: flex-start !important; + } + + .align-items-lg-end { + align-items: flex-end !important; + } + + .align-items-lg-center { + align-items: center !important; + } + + .align-items-lg-baseline { + align-items: baseline !important; + } + + .align-items-lg-stretch { + align-items: stretch !important; + } + + .align-content-lg-start { + align-content: flex-start !important; + } + + .align-content-lg-end { + align-content: flex-end !important; + } + + .align-content-lg-center { + align-content: center !important; + } + + .align-content-lg-between { + align-content: space-between !important; + } + + .align-content-lg-around { + align-content: space-around !important; + } + + .align-content-lg-stretch { + align-content: stretch !important; + } + + .align-self-lg-auto { + align-self: auto !important; + } + + .align-self-lg-start { + align-self: flex-start !important; + } + + .align-self-lg-end { + align-self: flex-end !important; + } + + .align-self-lg-center { + align-self: center !important; + } + + .align-self-lg-baseline { + align-self: baseline !important; + } + + .align-self-lg-stretch { + align-self: stretch !important; + } +} +@media (min-width: 1200px) { + .flex-xl-row { + flex-direction: row !important; + } + + .flex-xl-column { + flex-direction: column !important; + } + + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-xl-wrap { + flex-wrap: wrap !important; + } + + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .flex-xl-fill { + flex: 1 1 auto !important; + } + + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + + .justify-content-xl-start { + justify-content: flex-start !important; + } + + .justify-content-xl-end { + justify-content: flex-end !important; + } + + .justify-content-xl-center { + justify-content: center !important; + } + + .justify-content-xl-between { + justify-content: space-between !important; + } + + .justify-content-xl-around { + justify-content: space-around !important; + } + + .align-items-xl-start { + align-items: flex-start !important; + } + + .align-items-xl-end { + align-items: flex-end !important; + } + + .align-items-xl-center { + align-items: center !important; + } + + .align-items-xl-baseline { + align-items: baseline !important; + } + + .align-items-xl-stretch { + align-items: stretch !important; + } + + .align-content-xl-start { + align-content: flex-start !important; + } + + .align-content-xl-end { + align-content: flex-end !important; + } + + .align-content-xl-center { + align-content: center !important; + } + + .align-content-xl-between { + align-content: space-between !important; + } + + .align-content-xl-around { + align-content: space-around !important; + } + + .align-content-xl-stretch { + align-content: stretch !important; + } + + .align-self-xl-auto { + align-self: auto !important; + } + + .align-self-xl-start { + align-self: flex-start !important; + } + + .align-self-xl-end { + align-self: flex-end !important; + } + + .align-self-xl-center { + align-self: center !important; + } + + .align-self-xl-baseline { + align-self: baseline !important; + } + + .align-self-xl-stretch { + align-self: stretch !important; + } +} +.float-left { + float: left !important; +} + +.float-right { + float: right !important; +} + +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; + } + + .float-sm-right { + float: right !important; + } + + .float-sm-none { + float: none !important; + } +} +@media (min-width: 768px) { + .float-md-left { + float: left !important; + } + + .float-md-right { + float: right !important; + } + + .float-md-none { + float: none !important; + } +} +@media (min-width: 992px) { + .float-lg-left { + float: left !important; + } + + .float-lg-right { + float: right !important; + } + + .float-lg-none { + float: none !important; + } +} +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; + } + + .float-xl-right { + float: right !important; + } + + .float-xl-none { + float: none !important; + } +} +.user-select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + -ms-user-select: all !important; + user-select: all !important; +} + +.user-select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; +} + +.user-select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; +} + +.overflow-auto { + overflow: auto !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; +} + +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; +} + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} + +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +.shadow-none { + box-shadow: none !important; +} + +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + +.w-100 { + width: 100% !important; +} + +.w-auto { + width: auto !important; +} + +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + +.h-100 { + height: 100% !important; +} + +.h-auto { + height: auto !important; +} + +.mw-100 { + max-width: 100% !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.min-vw-100 { + min-width: 100vw !important; +} + +.min-vh-100 { + min-height: 100vh !important; +} + +.vw-100 { + width: 100vw !important; +} + +.vh-100 { + height: 100vh !important; +} + +.m-0 { + margin: 0 !important; +} + +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +.m-n1 { + margin: -0.25rem !important; +} + +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; +} + +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; +} + +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; +} + +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; +} + +.m-n2 { + margin: -0.5rem !important; +} + +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; +} + +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; +} + +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; +} + +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; +} + +.m-n3 { + margin: -1rem !important; +} + +.mt-n3, +.my-n3 { + margin-top: -1rem !important; +} + +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; +} + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; +} + +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; +} + +.m-n4 { + margin: -1.5rem !important; +} + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; +} + +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; +} + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; +} + +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; +} + +.m-n5 { + margin: -3rem !important; +} + +.mt-n5, +.my-n5 { + margin-top: -3rem !important; +} + +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; +} + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; +} + +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; + } + + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + + .m-sm-1 { + margin: 0.25rem !important; + } + + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + + .m-sm-2 { + margin: 0.5rem !important; + } + + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + + .m-sm-3 { + margin: 1rem !important; + } + + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + + .m-sm-4 { + margin: 1.5rem !important; + } + + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + + .m-sm-5 { + margin: 3rem !important; + } + + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + + .p-sm-0 { + padding: 0 !important; + } + + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + + .p-sm-1 { + padding: 0.25rem !important; + } + + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + + .p-sm-2 { + padding: 0.5rem !important; + } + + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + + .p-sm-3 { + padding: 1rem !important; + } + + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + + .p-sm-4 { + padding: 1.5rem !important; + } + + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + + .p-sm-5 { + padding: 3rem !important; + } + + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + + .m-sm-n1 { + margin: -0.25rem !important; + } + + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; + } + + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; + } + + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; + } + + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; + } + + .m-sm-n2 { + margin: -0.5rem !important; + } + + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; + } + + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; + } + + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; + } + + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; + } + + .m-sm-n3 { + margin: -1rem !important; + } + + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; + } + + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; + } + + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; + } + + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; + } + + .m-sm-n4 { + margin: -1.5rem !important; + } + + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; + } + + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; + } + + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; + } + + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; + } + + .m-sm-n5 { + margin: -3rem !important; + } + + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; + } + + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; + } + + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; + } + + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; + } + + .m-sm-auto { + margin: auto !important; + } + + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; + } + + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + + .m-md-1 { + margin: 0.25rem !important; + } + + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + + .m-md-2 { + margin: 0.5rem !important; + } + + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + + .m-md-3 { + margin: 1rem !important; + } + + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + + .m-md-4 { + margin: 1.5rem !important; + } + + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + + .m-md-5 { + margin: 3rem !important; + } + + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + + .p-md-0 { + padding: 0 !important; + } + + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + + .p-md-1 { + padding: 0.25rem !important; + } + + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + + .p-md-2 { + padding: 0.5rem !important; + } + + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + + .p-md-3 { + padding: 1rem !important; + } + + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + + .p-md-4 { + padding: 1.5rem !important; + } + + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + + .p-md-5 { + padding: 3rem !important; + } + + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + + .m-md-n1 { + margin: -0.25rem !important; + } + + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; + } + + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; + } + + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; + } + + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; + } + + .m-md-n2 { + margin: -0.5rem !important; + } + + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; + } + + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; + } + + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; + } + + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; + } + + .m-md-n3 { + margin: -1rem !important; + } + + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; + } + + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; + } + + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; + } + + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; + } + + .m-md-n4 { + margin: -1.5rem !important; + } + + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; + } + + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; + } + + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; + } + + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; + } + + .m-md-n5 { + margin: -3rem !important; + } + + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; + } + + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; + } + + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; + } + + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; + } + + .m-md-auto { + margin: auto !important; + } + + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; + } + + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + + .m-lg-1 { + margin: 0.25rem !important; + } + + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + + .m-lg-2 { + margin: 0.5rem !important; + } + + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + + .m-lg-3 { + margin: 1rem !important; + } + + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + + .m-lg-4 { + margin: 1.5rem !important; + } + + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + + .m-lg-5 { + margin: 3rem !important; + } + + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + + .p-lg-0 { + padding: 0 !important; + } + + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + + .p-lg-1 { + padding: 0.25rem !important; + } + + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + + .p-lg-2 { + padding: 0.5rem !important; + } + + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + + .p-lg-3 { + padding: 1rem !important; + } + + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + + .p-lg-4 { + padding: 1.5rem !important; + } + + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + + .p-lg-5 { + padding: 3rem !important; + } + + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + + .m-lg-n1 { + margin: -0.25rem !important; + } + + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; + } + + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; + } + + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; + } + + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; + } + + .m-lg-n2 { + margin: -0.5rem !important; + } + + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; + } + + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; + } + + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; + } + + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; + } + + .m-lg-n3 { + margin: -1rem !important; + } + + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; + } + + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; + } + + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; + } + + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; + } + + .m-lg-n4 { + margin: -1.5rem !important; + } + + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; + } + + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; + } + + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; + } + + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; + } + + .m-lg-n5 { + margin: -3rem !important; + } + + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; + } + + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; + } + + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; + } + + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; + } + + .m-lg-auto { + margin: auto !important; + } + + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; + } + + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + + .m-xl-1 { + margin: 0.25rem !important; + } + + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + + .m-xl-2 { + margin: 0.5rem !important; + } + + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + + .m-xl-3 { + margin: 1rem !important; + } + + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + + .m-xl-4 { + margin: 1.5rem !important; + } + + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + + .m-xl-5 { + margin: 3rem !important; + } + + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + + .p-xl-0 { + padding: 0 !important; + } + + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + + .p-xl-1 { + padding: 0.25rem !important; + } + + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + + .p-xl-2 { + padding: 0.5rem !important; + } + + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + + .p-xl-3 { + padding: 1rem !important; + } + + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + + .p-xl-4 { + padding: 1.5rem !important; + } + + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + + .p-xl-5 { + padding: 3rem !important; + } + + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + + .m-xl-n1 { + margin: -0.25rem !important; + } + + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; + } + + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; + } + + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; + } + + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; + } + + .m-xl-n2 { + margin: -0.5rem !important; + } + + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; + } + + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; + } + + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; + } + + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; + } + + .m-xl-n3 { + margin: -1rem !important; + } + + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; + } + + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; + } + + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; + } + + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; + } + + .m-xl-n4 { + margin: -1.5rem !important; + } + + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; + } + + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; + } + + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; + } + + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; + } + + .m-xl-n5 { + margin: -3rem !important; + } + + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; + } + + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; + } + + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; + } + + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; + } + + .m-xl-auto { + margin: auto !important; + } + + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: rgba(0, 0, 0, 0); +} + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", + "Courier New", monospace !important; +} + +.text-justify { + text-align: justify !important; +} + +.text-wrap { + white-space: normal !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; + } + + .text-sm-right { + text-align: right !important; + } + + .text-sm-center { + text-align: center !important; + } +} +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; + } + + .text-md-right { + text-align: right !important; + } + + .text-md-center { + text-align: center !important; + } +} +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; + } + + .text-lg-right { + text-align: right !important; + } + + .text-lg-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; + } + + .text-xl-right { + text-align: right !important; + } + + .text-xl-center { + text-align: center !important; + } +} +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.font-weight-light { + font-weight: 300 !important; +} + +.font-weight-lighter { + font-weight: lighter !important; +} + +.font-weight-normal { + font-weight: 400 !important; +} + +.font-weight-bold { + font-weight: 700 !important; +} + +.font-weight-bolder { + font-weight: bolder !important; +} + +.font-italic { + font-style: italic !important; +} + +.text-white { + color: #fff !important; +} + +.text-primary { + color: #64a19d !important; +} + +a.text-primary:hover, +a.text-primary:focus { + color: #467370 !important; +} + +.text-secondary { + color: #6c757d !important; +} + +a.text-secondary:hover, +a.text-secondary:focus { + color: #494f54 !important; +} + +.text-success { + color: #28a745 !important; +} + +a.text-success:hover, +a.text-success:focus { + color: #19692c !important; +} + +.text-info { + color: #17a2b8 !important; +} + +a.text-info:hover, +a.text-info:focus { + color: #0f6674 !important; +} + +.text-warning { + color: #ffc107 !important; +} + +a.text-warning:hover, +a.text-warning:focus { + color: #ba8b00 !important; +} + +.text-danger { + color: #dc3545 !important; +} + +a.text-danger:hover, +a.text-danger:focus { + color: #a71d2a !important; +} + +.text-light { + color: #f8f9fa !important; +} + +a.text-light:hover, +a.text-light:focus { + color: #cbd3da !important; +} + +.text-dark { + color: #343a40 !important; +} + +a.text-dark:hover, +a.text-dark:focus { + color: #121416 !important; +} + +.text-black { + color: #000000 !important; +} + +a.text-black:hover, +a.text-black:focus { + color: black !important; +} + +.text-body { + color: #212529 !important; +} + +.text-muted { + color: #6c757d !important; +} + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.text-decoration-none { + text-decoration: none !important; +} + +.text-break { + word-wrap: break-word !important; +} + +.text-reset { + color: inherit !important; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + + a:not(.btn) { + text-decoration: underline; + } + + abbr[title]::after { + content: " (" attr(title) ")"; + } + + pre { + white-space: pre-wrap !important; + } + + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; + } + + thead { + display: table-header-group; + } + + tr, + img { + page-break-inside: avoid; + } + + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + + h2, + h3 { + page-break-after: avoid; + } + + @page { + size: a3; + } + body { + min-width: 992px !important; + } + + .container { + min-width: 992px !important; + } + + .navbar { + display: none; + } + + .badge { + border: 1px solid #000000; + } + + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; + } + + .table-dark { + color: inherit; + } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #dee2e6; + } + + .table .thead-dark th { + color: inherit; + border-color: #dee2e6; + } +} +body { + letter-spacing: 0.0625em; +} + +#mainNav { + min-height: 3.5rem; + background-color: #fff; +} +#mainNav .navbar-toggler { + font-size: 80%; + padding: 0.75rem; + color: #64a19d; + border: 1px solid #64a19d; +} +#mainNav .navbar-toggler:focus { + outline: none; +} +#mainNav .navbar-brand { + color: #000000; + font-weight: 700; + padding: 0.9rem 0; +} +#mainNav .navbar-nav .nav-item:hover { + color: fade(#fff, 80%); + outline: none; + background-color: transparent; +} +#mainNav .navbar-nav .nav-item:active, +#mainNav .navbar-nav .nav-item:focus { + outline: none; + background-color: transparent; +} +@media (min-width: 992px) { + #mainNav { + padding-top: 0; + padding-bottom: 0; + border-bottom: none; + background-color: transparent; + transition: background-color 0.3s ease-in-out; + } + #mainNav .navbar-brand { + padding: 0.5rem 0; + color: rgba(255, 255, 255, 0.5); + } + #mainNav .nav-link { + transition: none; + padding: 2rem 1.5rem; + color: rgba(255, 255, 255, 0.5); + } + #mainNav .nav-link:hover { + color: rgba(255, 255, 255, 0.75); + } + #mainNav .nav-link:active { + color: #fff; + } + #mainNav.navbar-shrink { + background-color: #fff; + } + #mainNav.navbar-shrink .navbar-brand { + color: #000000; + } + #mainNav.navbar-shrink .nav-link { + color: #000000; + padding: 1.5rem 1.5rem 1.25rem; + border-bottom: 0.25rem solid transparent; + } + #mainNav.navbar-shrink .nav-link:hover { + color: #64a19d; + } + #mainNav.navbar-shrink .nav-link:active { + color: #467370; + } + #mainNav.navbar-shrink .nav-link.active { + color: #64a19d; + outline: none; + border-bottom: 0.25rem solid #64a19d; + } +} + +.btn { + box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important; + padding: 1.25rem 2rem; + font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", + Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", + "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 80%; + text-transform: uppercase; + letter-spacing: 0.15rem; + border: 0; +} + +.masthead { + position: relative; + width: 100%; + height: auto; + min-height: 35rem; + padding: 15rem 0; + background: linear-gradient( + to bottom, + rgba(0, 0, 0, 0.3) 0%, + rgba(0, 0, 0, 0.7) 75%, + #000000 100% + ), + url("../assets/img/sky.jpg"); + background-position: center; + background-repeat: no-repeat; + background-attachment: scroll; + background-size: cover; +} +.masthead h1 { + font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", + Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", + "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 2.5rem; + line-height: 2.5rem; + letter-spacing: 0.8rem; + background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)); + -webkit-text-fill-color: transparent; + -webkit-background-clip: text; + background-clip: text; +} +.masthead h2 { + max-width: 20rem; + font-size: 1rem; +} +@media (min-width: 768px) { + .masthead h1 { + font-size: 4rem; + line-height: 4rem; + } +} +@media (min-width: 992px) { + .masthead { + height: 100vh; + padding: 0; + } + .masthead h1 { + font-size: 4.5rem; + line-height: 6.5rem; + letter-spacing: 0.5rem; + } + .masthead h2 { + max-width: 30rem; + font-size: 1.25rem; + } +} + +.about-section { + padding-top: 10rem; + background: #393e46; + min-height: 100vh; +} +.about-section p { + margin-bottom: 5rem; +} + +. .projects-section { + padding: 10rem 0; +} +.projects-section .featured-text { + padding: 2rem; +} +@media (min-width: 992px) { + .projects-section .featured-text { + padding: 0 0 0 2rem; + border-left: 0.5rem solid #64a19d; + } +} +.projects-section .project-text { + padding: 3rem; + font-size: 90%; +} +@media (min-width: 992px) { + .projects-section .project-text { + padding: 5rem; + } + .projects-section .project-text hr { + border-color: #64a19d; + border-width: 0.25rem; + width: 30%; + } +} + +.signup-section { + padding: 10rem 0; + background: linear-gradient( + to bottom, + rgba(0, 0, 0, 0.1) 0%, + rgba(0, 0, 0, 0.5) 75%, + #000000 100% + ), + url("../assets/img/bg-signup.jpg"); + background-position: center; + background-repeat: no-repeat; + background-attachment: scroll; + background-size: cover; +} +.signup-section .form-inline input { + box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important; + padding: 1.25rem 2rem; + height: auto; + font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", + Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", + "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 80%; + text-transform: uppercase; + letter-spacing: 0.15rem; + border: 0; +} + +.contact-section { + padding-top: 5rem; +} +.contact-section .card { + border: 0; + border-bottom: 0.25rem solid #64a19d; +} +.contact-section .card h4 { + font-size: 0.8rem; + font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", + Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", + "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + text-transform: uppercase; + letter-spacing: 0.15rem; +} +.contact-section .card hr { + border-color: #64a19d; + border-width: 0.25rem; + width: 3rem; +} +.contact-section .social { + margin-top: 5rem; +} +.contact-section .social a { + text-align: center; + height: 3rem; + width: 3rem; + background: rgba(255, 255, 255, 0.1); + border-radius: 100%; + line-height: 3rem; + color: rgba(255, 255, 255, 0.3); +} +.contact-section .social a:hover { + color: rgba(255, 255, 255, 0.5); +} +.contact-section .social a:active { + color: #fff; +} + +.footer { + padding: 5rem 0; +} + +.illustration_img { +} diff --git a/App/static/img/Download free vector of Fake news on old school tv screen 504867.jpg b/App/static/img/Download free vector of Fake news on old school tv screen 504867.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8b5805de785ffd45c14184ce1259a589f763270 GIT binary patch literal 130114 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

    nXZskZcz>w9KLW#e8+VvwikH~IKF1p7TM9y?#I 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%0A?a3BC1gur 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�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 Jz<=>m|Jh5$p%VZA literal 0 HcmV?d00001 diff --git a/App/static/img/Fake News in the digital world.jpg b/App/static/img/Fake News in the digital world.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4efbbb34be2dccabc3d307d95d5b62759cc71f08 GIT binary patch literal 13158 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 C+_<6u literal 0 HcmV?d00001 diff --git a/App/static/img/bg-masthead.jpg b/App/static/img/bg-masthead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08aa7d0c807086a8648b6d674d40fb76a42e38fe GIT binary patch literal 218077 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

    mvw`*dy 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