From 5c5dc3e0ef403106eb4ee196b6c5de4abfc04636 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 11:37:58 -0400 Subject: [PATCH 01/17] Add script for retrieving tweet data using brightdata service --- brightdata-service.py | 189 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 189 insertions(+) create mode 100644 brightdata-service.py diff --git a/brightdata-service.py b/brightdata-service.py new file mode 100644 index 0000000..dcdeefc --- /dev/null +++ b/brightdata-service.py @@ -0,0 +1,189 @@ +import requests +import json +import pandas as pd +import datetime as DT +import time +import dateutil.parser +import csv +from dotenv import load_dotenv +import os +from pprint import pprint as pp + +load_dotenv() +BRIGHTDATA_RESULT_ADDRESS = "https://api.brightdata.com/datasets/v3/snapshot" +BRIGHTDATA_API_KEY = os.getenv("BRIGHTDATA_API_TOKEN") +BRIGHTDATA_DATASET_ID = os.getenv("BRIGHTDATA_DATASET_ID") +BRIGHTDATA_TRIGGER_API_ADDRESS = f"https://api.brightdata.com/datasets/v3/trigger?dataset_id={BRIGHTDATA_DATASET_ID}&type=discover_new&discover_by=profile_url" + + +def clean_handle_list(input_list): + """ + Helper function for removing white space and @s from handles + """ + stripped_list = [handle.rstrip() for handle in input_list] + no_ats_list = [handle.replace("@", "") for handle in stripped_list] + return no_ats_list + + +def todays_date(): + """ + Helper function to return today's date in YYYY-MM-DD format + """ + return DT.date.today().strftime("%Y-%m-%d") + + +def yesterdays_date(): + """ + Helper function to return yesterday's date in YYYY-MM-DD format + """ + return (DT.date.today() - DT.timedelta(days=1)).strftime("%Y-%m-%d") + + +def week_ago_date(): + """ + Helper function to return a week ago's date in YYYY-MM-DD format + """ + return (DT.date.today() - DT.timedelta(days=7)).strftime("%Y-%m-%d") + + +def date_range_request_body(start_date, end_date, handle_list): + """ + Generate the body of the API request for triggering collection through + BrightData API. + start_date and end_date format should be YYYY-MM-DD (i.e. "2024-10-15") + handle_list should be a list of twitter handles + """ + request_block = [] + for handle in handle_list: + request_block.append( + { + "url": f"https://x.com/{handle}", + "start_date": start_date, + "end_date": end_date, + } + ) + return request_block + + +def trigger_brightdata_snapshot(start_date, end_date, handles_list): + """ + Pass in a start_date and end_date in "YYYY-MM-DD" format and a list of twitter handles + """ + response = requests.post( + BRIGHTDATA_TRIGGER_API_ADDRESS, + headers={ + "Authorization": f"Bearer {BRIGHTDATA_API_KEY}", + "Content-Type": "application/json", + }, + data=json.dumps(date_range_request_body(start_date, end_date, handles_list)), + ) + return response.json() + + +def get_snapshot_results(snapshot_id): + """ + Fetch results from snapshot ID, retry if still processing + """ + result = requests.get( + headers={ + "Authorization": f"Bearer {BRIGHTDATA_API_KEY}", + "Content-Type": "application/json", + }, + url=f"{BRIGHTDATA_RESULT_ADDRESS}/{snapshot_id}?format=json", + ) + if result.status_code != 200: + print(result.json()["status"], "- trying again in 10 seconds") + time.sleep(10) + get_snapshot_results(snapshot_id) + else: + return result.json() + + +def write_results_to_csv(result_json, output_sheet_name): + """ + Write from JSON response result to given output sheet name + """ + header_row = [ + "id", + "user_posted", + "name", + "description", + "date_posted", + "photos", + "url", + "replies", + "reposts", + "likes", + "views", + "hashtags", + "followers", + "biography", + "timestamp", + ] + with open(output_sheet_name, "w+", newline="") as csvfile: + writer = csv.writer(csvfile) + writer.writerow(header_row) + tweet_rows = [] + for tweet in result_json: + id = tweet["id"] + user_posted = tweet["user_posted"] + name = tweet["name"] + description = tweet["description"] + date_posted = dateutil.parser.parse(tweet["date_posted"]) + photos = tweet["photos"] + url = tweet["url"] + replies = tweet["replies"] + reposts = tweet["reposts"] + likes = tweet["likes"] + views = tweet["views"] + hashtags = tweet["hashtags"] + followers = tweet["followers"] + biography = tweet["biography"] + timestamp = dateutil.parser.parse(tweet["timestamp"]) + + if description is not None: + description = str(description.replace("’", "")) + + if biography is not None: + biography = str(biography.replace("’", "")) + + tweet_rows.append( + [ + id, + user_posted, + name, + description, + date_posted, + photos, + url, + replies, + reposts, + likes, + views, + hashtags, + followers, + biography, + timestamp, + ] + ) + writer.writerows(tweet_rows) + + +def collect_tweets(start_date, end_date, handles_list, output_sheet): + print(f"Triggering collection of tweets from {len(handles_list)} accounts") + print(f"Start date: {start_date}") + print(f"End date: {end_date}") + trigger_response = trigger_brightdata_snapshot(start_date, end_date, handles_list) + snapshot_id = trigger_response["snapshot_id"] + print(f"Snapshot ID: {snapshot_id}") + results = get_snapshot_results(snapshot_id) + print(f"Snapshot retrieved, writing to {output_sheet}") + write_results_to_csv(results, output_sheet) + print(f"Complete") + +# collect_tweets( +# start_date="2024-10-15", +# end_date="2024-10-22", +# handles_list=["SenatorBaldwin", "SenSherrodBrown"], +# output_sheet="testing123.csv", +# ) From 02b9ec0e5ee0a8e1bd9b7c809350fc2d8e4da3dc Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 11:38:29 -0400 Subject: [PATCH 02/17] Add BDTwitterDocumentSet as document option --- document.py | 85 +++++++++++++++++++++++++++++++++++------------------ 1 file changed, 56 insertions(+), 29 deletions(-) diff --git a/document.py b/document.py index 099d4b3..74e9e67 100644 --- a/document.py +++ b/document.py @@ -2,8 +2,10 @@ import os import pandas as pd import sys +import dateutil.parser from pdfminer.high_level import extract_text_to_fp + class DocumentSet: def __init__(self): pass @@ -24,13 +26,13 @@ def __init__(self, transcripts_filepath): # Compose self.transcript_filepaths list if not os.path.exists(transcripts_filepath): - print('{} does not exist'.format(transcripts_filepath)) + print("{} does not exist".format(transcripts_filepath)) sys.exit(1) self.transcript_filepaths = [] if os.path.isdir(transcripts_filepath): for filename in os.listdir(transcripts_filepath): filepath = os.path.join(transcripts_filepath, filename) - if os.path.isfile(filepath) and filename.lower().endswith('.pdf'): + if os.path.isfile(filepath) and filename.lower().endswith(".pdf"): self.transcript_filepaths.append(filepath) else: self.transcript_filepaths.append(transcripts_filepath) @@ -38,9 +40,8 @@ def __init__(self, transcripts_filepath): # finally, make it an iterable self.transcript_filepaths = iter(self.transcript_filepaths) - def __next__(self): - """ Iterator to yield Document, where each Transcript is a Document """ + """Iterator to yield Document, where each Transcript is a Document""" # get the path to the next file pdfFile = self.transcript_filepaths.__next__() @@ -51,15 +52,13 @@ def __next__(self): return doc - def _extract_text(self, pdf_filepath): - """ Internal utility function to extract text from a single PDF file """ + """Internal utility function to extract text from a single PDF file""" with open(pdf_filepath, "rb") as fp: text_fp = io.StringIO() extract_text_to_fp(fp, text_fp) return text_fp.getvalue() - def _show_data(self, show_file_path): show_file_name = os.path.split(show_file_path)[1] @@ -68,64 +67,92 @@ def _show_data(self, show_file_path): day = show_file_name[3:5] year = show_file_name[6:10] - show_info['show_file_path'] = show_file_path - show_info['show_date'] = month+'/'+day+'/'+year - show_info['show_id'] = show_file_name[11:14] - show_info['show_name'] = show_file_name[15:-4] # leave off .PDF + show_info["show_file_path"] = show_file_path + show_info["show_date"] = month + "/" + day + "/" + year + show_info["show_id"] = show_file_name[11:14] + show_info["show_name"] = show_file_name[15:-4] # leave off .PDF return show_info class SFMExtractDocumentSet(DocumentSet): def __init__(self, sfmfilepath): - """ Initialize with the path to a (single) SFM extract Excel file""" + """Initialize with the path to a (single) SFM extract Excel file""" # must be an .xlsx file! df = pd.read_excel(sfmfilepath, dtype=str, keep_default_na=False) self.df_iterrows = df.iterrows() - def __next__(self): - """ Iterator to yield Documents, where each Tweet is a Document """ + """Iterator to yield Documents, where each Tweet is a Document""" index, line = self.df_iterrows.__next__() - text = line['text'] + text = line["text"] md = self._tweet_data(line) doc = Document(text=text, metadata=md) return doc + def _tweet_data(self, tweet): + tweet_info = {} + tweet_info["id"] = "'" + tweet["id"] + "'" + tweet_info["tweet_url"] = tweet["tweet_url"] + tweet_info["created_at"] = tweet["created_at"] + tweet_info["user_screen_name"] = tweet["user_screen_name"] + tweet_info["tweet_type"] = tweet["tweet_type"] + return tweet_info + + +class BDTwitterDocumentSet(DocumentSet): + def __init__(self, bdfilepath): + """Initialize with the path to a CSV with brightdata API results""" + df = pd.read_csv(bdfilepath) + self.df_iterrows = df.iterrows() + + def __next__(self): + index, line = self.df_iterrows.__next__() + text = line["description"] + md = self._tweet_data(line) + doc = Document(text=text, metadata=md) + return doc def _tweet_data(self, tweet): tweet_info = {} - tweet_info['id'] = "'"+tweet['id']+"'" - tweet_info['tweet_url'] = tweet['tweet_url'] - tweet_info['created_at'] = tweet['created_at'] - tweet_info['user_screen_name'] = tweet['user_screen_name'] - tweet_info['tweet_type'] = tweet['tweet_type'] + tweet_info["id"] = tweet["id"] + tweet_info["user_screen_name"] = tweet["user_posted"] + tweet_info["name"] = tweet["name"] + tweet_info["description"] = tweet["description"] + tweet_info["date_posted"] = tweet["date_posted"] + tweet_info["photos"] = tweet["photos"] + tweet_info["url"] = tweet["url"] + tweet_info["replies"] = tweet["replies"] + tweet_info["reposts"] = tweet["reposts"] + tweet_info["likes"] = tweet["likes"] + tweet_info["views"] = tweet["views"] + tweet_info["hashtags"] = tweet["hashtags"] + tweet_info["followers"] = tweet["followers"] + tweet_info["biography"] = tweet["biography"] + tweet_info["timestamp"] = tweet["timestamp"] return tweet_info class EmailExtractDocumentSet(DocumentSet): def __init__(self, emailfilepath): - """ Initialize with the path to a (single) SFM extract Excel file""" + """Initialize with the path to a (single) SFM extract Excel file""" # must be an .xlsx file! df = pd.read_excel(emailfilepath, dtype=str, keep_default_na=False) self.df_iterrows = df.iterrows() - def __next__(self): - """ Iterator to yield Documents, where each Tweet is a Document """ + """Iterator to yield Documents, where each Tweet is a Document""" index, line = next(self.df_iterrows) - text = line['Message'] + text = line["Message"] md = self._email_data(line) doc = Document(text=text, metadata=md) return doc - def _email_data(self, email): email_info = {} - email_info['Date'] = email['Date'] - email_info['From'] = email['From'] - email_info['Subject'] = email['Subject'] + email_info["Date"] = email["Date"] + email_info["From"] = email["From"] + email_info["Subject"] = email["Subject"] return email_info - From 7dade5ab4dbe44a0d1960a53f06c1e1e553e6274 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 11:38:51 -0400 Subject: [PATCH 03/17] Update requirements for requests and ENV packages --- requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 6dcea0d..8a4251e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,5 @@ pdfminer.six==20170720 pandas pytz xlrd +requests +python-dotenv \ No newline at end of file From e9bec595043bce8be5672acc6b130f56ee8c0c73 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 11:39:15 -0400 Subject: [PATCH 04/17] Update gitignore --- .gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c05b4e4..cee8724 100644 --- a/.gitignore +++ b/.gitignore @@ -109,4 +109,11 @@ venv.bak/ extracts.csv keyword_extracts.csv neg_extracts.csv -subject_extracts.csv \ No newline at end of file +subject_extracts.csv + +# VSCode +.vscode +.vscode/* + +# ENV +.env \ No newline at end of file From 8cbdb8b1da7673261e996175ff70a13caf5b608d Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 13:31:30 -0400 Subject: [PATCH 05/17] Update to add bdtweets as input --- vopd.py | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/vopd.py b/vopd.py index 8963a14..5eed763 100644 --- a/vopd.py +++ b/vopd.py @@ -1,8 +1,10 @@ +# fmt: off + import argparse import config import csv import datetime -from document import PDFTranscriptDocumentSet, SFMExtractDocumentSet, EmailExtractDocumentSet +from document import PDFTranscriptDocumentSet, SFMExtractDocumentSet, EmailExtractDocumentSet, BDTwitterDocumentSet import os import pytz import re @@ -149,6 +151,18 @@ def fix_newline(f): 'text', 'Code (N, or 1-6)', 'A/B', 'Foreign/Domestic', 'Notes', 'Feedback'] extractfilename = 'extracts-tweets.csv' + if args.mode == 'bdtweets': + if args.verbose: + print("Getting bdtweetdocset...") + bdtweetdocset = BDTwitterDocumentSet(args.transcript) + if args.verbose: + print(" ...complete") + headers = ['extract_date', 'tweet_id', 'created_date', 'user_screen_name', 'tweet_url', + 'subject', 'subject_code', 'keyword', 'keyword_code', 'keyword_id', + 'Code (N, or 1-6)', 'A/B', 'Foreign/Domestic', 'Notes', 'Feedback', + 'text', + 'Code (N, or 1-6)', 'A/B', 'Foreign/Domestic', 'Notes', 'Feedback'] + extractfilename = 'bd-extracts-tweets.csv' if args.mode == 'email': if args.verbose: print("Getting emaildocset...") @@ -254,6 +268,42 @@ def fix_newline(f): keyword_id[m_keyword], '', '', '', '', '', extract]) + + if args.mode == 'bdtweets': + with open('bd-extracts-tweets.csv', file_mode) as extract_file: + extract_csv = csv.writer(extract_file) + if not append_extracts: + extract_csv.writerow(headers) + + for tweet in bdtweetdocset: + if args.verbose: + print('Checking a tweet') + tweet_info = tweet.metadata + m_transcript_text = str(tweet.text) + m_transcript_words = tokenize(m_transcript_text) + for m_subject, m_subject_pos, m_keyword, m_keyword_pos in process_document_iter(m_transcript_words, window_size=args.window): + if args.verbose: + print(' Found a match') + extract_date = datetime.datetime.now(tz=pytz.timezone(TIME_ZONE)).strftime("%m/%d/%y %H:%M:%S %Z%z") + + extract = ' '.join( + context(m_transcript_words, min(m_subject_pos, m_keyword_pos), + max(m_subject_pos, m_keyword_pos), + context_size=args.context)) + extract_csv.writerow([extract_date, + tweet_info['id'], + tweet_info['date_posted'], + tweet_info['user_screen_name'], + tweet_info['url'], + m_subject, + subject_map[m_subject], + m_keyword, + keyword_map[m_keyword], + keyword_id[m_keyword], + '', '', '', '', '', + extract]) + print(tweet_info) + if args.mode == 'email': with open('extracts-email.csv', file_mode) as extract_file: @@ -299,4 +349,3 @@ def fix_newline(f): keyword_id[m_keyword], '', '', '', '', '', extract]) - From ef528db265e88385fd672550dc2cf62cd7eddf81 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 13:42:30 -0400 Subject: [PATCH 06/17] Add example env file --- .env.example | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..7b19251 --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +BRIGHTDATA_API_TOKEN="put-your-api-token-here" +BRIGHTDATA_DATASET_ID="put-your-dataset-id-here" \ No newline at end of file From 92b790d08cade7a7083cb9844b804bc5861f4cd0 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 13:43:38 -0400 Subject: [PATCH 07/17] Update argumentparser for bdtweets --- vopd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vopd.py b/vopd.py index 5eed763..d341cd2 100644 --- a/vopd.py +++ b/vopd.py @@ -98,11 +98,11 @@ def fix_newline(f): default='keywords.csv') parser.add_argument('--normalizefile', help='normalize terms file (default = normalize_terms.csv)', type=argparse.FileType('r'), default='normalize_terms.csv') - parser.add_argument('--mode', help='Mode: pdf or tweets or email', type=str, + parser.add_argument('--mode', help='Mode: pdf or tweets or bdtweets or email', type=str, default='pdf') parser.add_argument("--verbose", help="increase output verbosity", action="store_true") - parser.add_argument('transcript', help='filepath to transcript pdf or directory, or to SFM extract Excel file') + parser.add_argument('transcript', help='filepath to transcript pdf or directory, to SFM extract Excel file, or to BrightData extract CSV') args = parser.parse_args() From 76bd1da10d819f39e24e66b70ec810fb286dc9e0 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 15:42:38 -0400 Subject: [PATCH 08/17] Add CLI option for brightdata collection) --- brightdata-service.py | 28 ++++++++++++++++++++++++++++ handles.csv | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 handles.csv diff --git a/brightdata-service.py b/brightdata-service.py index dcdeefc..fb5bbbb 100644 --- a/brightdata-service.py +++ b/brightdata-service.py @@ -1,3 +1,4 @@ +import argparse import requests import json import pandas as pd @@ -187,3 +188,30 @@ def collect_tweets(start_date, end_date, handles_list, output_sheet): # handles_list=["SenatorBaldwin", "SenSherrodBrown"], # output_sheet="testing123.csv", # ) + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--handlescsv', help='csv file containing twitter handles to collect tweets from (default = handles.csv)', + type=str, + default='handles.csv') + parser.add_argument('--start-date', help='start date of collection in YYYY-MM-DD format (default is yesterday)', + type=str, + default=yesterdays_date()) + parser.add_argument('--end-date', help='end date of collection in YYYY-MM-DD format (default is today)', + type=str, + default=todays_date()) + parser.add_argument('--outputfile', help='filepath for results csv (default = bd-tweets.csv)', + default='bd-tweets.csv') + args = parser.parse_args() + + handles_path = args.handlescsv + output_path = args.outputfile + + with open(handles_path, 'r') as file: + handles = clean_handle_list(file.read().split('\n')) + + collect_tweets(start_date=args.start_date, + end_date=args.end_date, + handles_list=handles, + output_sheet=output_path + ) \ No newline at end of file diff --git a/handles.csv b/handles.csv new file mode 100644 index 0000000..866fa06 --- /dev/null +++ b/handles.csv @@ -0,0 +1,2 @@ +SenatorBaldwin +SenSherrodBrown \ No newline at end of file From 8f8aefbf6524e2694996daf847452bd32293e44a Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 16:52:53 -0400 Subject: [PATCH 09/17] Add CLI for bd service --- brightdata-service.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/brightdata-service.py b/brightdata-service.py index fb5bbbb..60a20d9 100644 --- a/brightdata-service.py +++ b/brightdata-service.py @@ -178,17 +178,12 @@ def collect_tweets(start_date, end_date, handles_list, output_sheet): snapshot_id = trigger_response["snapshot_id"] print(f"Snapshot ID: {snapshot_id}") results = get_snapshot_results(snapshot_id) + time.sleep(10) # I don't know why this is necessary, but otherwise it doesn't return the tweets despite getting a 200 response + tweets = get_snapshot_results(snapshot_id) print(f"Snapshot retrieved, writing to {output_sheet}") - write_results_to_csv(results, output_sheet) + write_results_to_csv(tweets, output_sheet) print(f"Complete") -# collect_tweets( -# start_date="2024-10-15", -# end_date="2024-10-22", -# handles_list=["SenatorBaldwin", "SenSherrodBrown"], -# output_sheet="testing123.csv", -# ) - if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--handlescsv', help='csv file containing twitter handles to collect tweets from (default = handles.csv)', From 0f9bc5ed97de9d9e6c26047a216d9d8ff1fc7eaf Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Thu, 24 Oct 2024 17:00:22 -0400 Subject: [PATCH 10/17] update README with brightdata script instructions --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e5f03a..f7b91bf 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Note that there is a `requirements.txt` file, so running this program requires a usage: `python vopd.py [-h] [--window WINDOW] [--context CONTEXT] [--subjectfile SUBJECTFILE] [--keywordfile KEYWORDFILE] [---normalizefile NORMALIZEFILE] [--mode MODE] transcript` ```positional arguments: - transcript filepath to transcript pdf or directory, or (where `mode==tweets`) path to SFM extract Excel file + transcript filepath to transcript pdf or directory, or (where `mode==tweets`) path to SFM extract Excel file, or (where 'mode==bdtweets') path to CSV generated by `brightdata-service.py` optional arguments: -h, --help show this help message and exit @@ -43,6 +43,22 @@ where: * Sender * Message +## Generating BrightData twitter data sets + +Requires an API key and credits for [BrightData web data APIs](https://docs.brightdata.com/scraping-automation/web-data-apis/web-scraper-api/overview). + +Make a copy of `.env.example`, rename it to `.env`, and replace the placeholder values with your API key and dataset ID. + +usage: `python brightdata-service.py [-h] [--start-date STARTDATE] [--end-date ENDDATE] [--outputfile OUTPUTFILE]` + +``` +optional argument: + -h, --help show this help message and exit + --start-date STARTDATE starting date for tweet collection in YYYY-MM-DD format (default is yesterday) + --end-date ENDDATE ending date for tweet collection in YYYY-MM-DD format (default is today) + --outputfile OUTPUTFILE filepath for results csv (default = bd-tweets.csv) +``` + ## Output files From 23721f2b0f1d138a6abcca93502f4e5441f0c4a0 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Fri, 8 Nov 2024 12:50:45 -0500 Subject: [PATCH 11/17] Update for requested BDtweets output format --- vopd.py | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/vopd.py b/vopd.py index d341cd2..d1904e2 100644 --- a/vopd.py +++ b/vopd.py @@ -157,11 +157,10 @@ def fix_newline(f): bdtweetdocset = BDTwitterDocumentSet(args.transcript) if args.verbose: print(" ...complete") - headers = ['extract_date', 'tweet_id', 'created_date', 'user_screen_name', 'tweet_url', - 'subject', 'subject_code', 'keyword', 'keyword_code', 'keyword_id', - 'Code (N, or 1-6)', 'A/B', 'Foreign/Domestic', 'Notes', 'Feedback', - 'text', - 'Code (N, or 1-6)', 'A/B', 'Foreign/Domestic', 'Notes', 'Feedback'] + headers = ['Date', 'Handle', 'Name', 'Party', 'House/Senate', 'Incumbent/Challenger', 'Tweet', + 'Sentiment Word', 'Group Term', 'Sentiment Tone (N/P)', 'Group Type (C, I, F, O, P)', + 'Coding Decision (see code book)' + ] extractfilename = 'bd-extracts-tweets.csv' if args.mode == 'email': if args.verbose: @@ -290,19 +289,20 @@ def fix_newline(f): context(m_transcript_words, min(m_subject_pos, m_keyword_pos), max(m_subject_pos, m_keyword_pos), context_size=args.context)) - extract_csv.writerow([extract_date, - tweet_info['id'], - tweet_info['date_posted'], - tweet_info['user_screen_name'], - tweet_info['url'], - m_subject, - subject_map[m_subject], - m_keyword, - keyword_map[m_keyword], - keyword_id[m_keyword], - '', '', '', '', '', - extract]) - print(tweet_info) + extract_csv.writerow([tweet_info['timestamp'], # Date + tweet_info['user_screen_name'], # handle + tweet_info['name'], # name + "", # party - fill in later via vlookup + "", # house/senate - fill in later via vlookup + "", # incumbent/challenger - fill in later via vlookup + tweet_info['description'], # tweet + m_keyword, # sentiment word + m_subject, # group name + keyword_map[m_keyword], # sentiment tone, N or P + subject_map[m_subject][0], + "", # coding decision - leave blank + extract + ]) if args.mode == 'email': From 3c15a0f0941e4237aa01067fb808e5f84251d26b Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Fri, 8 Nov 2024 13:03:05 -0500 Subject: [PATCH 12/17] Update env example --- .env.example | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 7b19251..1570514 100644 --- a/.env.example +++ b/.env.example @@ -1,2 +1,5 @@ BRIGHTDATA_API_TOKEN="put-your-api-token-here" -BRIGHTDATA_DATASET_ID="put-your-dataset-id-here" \ No newline at end of file +BRIGHTDATA_DATASET_ID="put-your-dataset-id-here" +AWS_BUCKET_NAME="put-your-bucket-name-here" +BUCKET_ACCESS_KEY="put-your-bucket-access-key-here" +BUCKET_SECRET_KEY="put-your-bucket-secret-key-here" \ No newline at end of file From 6cf2e0b07883bde6e44823658acb991675642d3e Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Fri, 8 Nov 2024 13:04:08 -0500 Subject: [PATCH 13/17] Change brightdata-service to aws lambda code --- brightdata-aws-lambda.py | 97 ++++++++++++++++++ brightdata-service.py | 212 --------------------------------------- 2 files changed, 97 insertions(+), 212 deletions(-) create mode 100644 brightdata-aws-lambda.py delete mode 100644 brightdata-service.py diff --git a/brightdata-aws-lambda.py b/brightdata-aws-lambda.py new file mode 100644 index 0000000..2b8b277 --- /dev/null +++ b/brightdata-aws-lambda.py @@ -0,0 +1,97 @@ +import argparse +import urllib3 +import json +import datetime as DT +import os +import urllib3 + +http = urllib3.PoolManager() + +BRIGHTDATA_RESULT_ADDRESS = "https://api.brightdata.com/datasets/v3/snapshot" +BRIGHTDATA_API_KEY = os.environ["BRIGHTDATA_API_TOKEN"] +BRIGHTDATA_DATASET_ID = os.environ["BRIGHTDATA_DATASET_ID"] +BRIGHTDATA_TRIGGER_API_ADDRESS = f"https://api.brightdata.com/datasets/v3/trigger?dataset_id={BRIGHTDATA_DATASET_ID}&type=discover_new&discover_by=profile_url" +AWS_BUCKET_NAME = os.environ["AWS_BUCKET_NAME"] +AWS_ACCESS_KEY = os.environ["BUCKET_ACCESS_KEY"] +AWS_SECRET_KEY = os.environ["BUCKET_SECRET_KEY"] + +def clean_handle_list(input_list): + """ + Helper function for removing white space and @s from handles + """ + stripped_list = [handle.rstrip() for handle in input_list] + no_ats_list = [handle.replace("@", "") for handle in stripped_list] + return no_ats_list + + +def todays_date(): + """ + Helper function to return today's date in YYYY-MM-DD format + """ + return DT.date.today().strftime("%Y-%m-%d") + + +def yesterdays_date(): + """ + Helper function to return yesterday's date in YYYY-MM-DD format + """ + return (DT.date.today() - DT.timedelta(days=1)).strftime("%Y-%m-%d") + + +def week_ago_date(): + """ + Helper function to return a week ago's date in YYYY-MM-DD format + """ + return (DT.date.today() - DT.timedelta(days=7)).strftime("%Y-%m-%d") + +def aws_delivery_block(): + return {"type":"s3","filename":{"template":"{[datetime]}_{[snapshot_id]}","extension":"csv"},"bucket":AWS_BUCKET_NAME,"credentials":{"aws-access-key":AWS_ACCESS_KEY,"aws-secret-key":AWS_SECRET_KEY},"directory":"daily-tweets"} + +def date_range_request_body(start_date, end_date, handle_list): + """ + Generate the body of the API request for triggering collection through + BrightData API. + start_date and end_date format should be YYYY-MM-DD (i.e. "2024-10-15") + handle_list should be a list of twitter handles + """ + + request_block = [] + for handle in handle_list: + request_block.append( + { + "url": f"https://x.com/{handle}", + "start_date": start_date, + "end_date": end_date, + } + ) + return request_block + +def trigger_brightdata_snapshot(start_date, end_date, handles_list): + """ + Pass in a start_date and end_date in "YYYY-MM-DD" format and a list of twitter handles + """ + response = http.request( + 'POST', + url=BRIGHTDATA_TRIGGER_API_ADDRESS, + headers={ + "Authorization": f"Bearer {BRIGHTDATA_API_KEY}", + "Content-Type": "application/json", + }, + body=json.dumps({"deliver": aws_delivery_block(), + "input": date_range_request_body(start_date,end_date, handles_list)}) + ) + print(response) + return response + +def collect_tweets(start_date, end_date, handles_list): + trigger_brightdata_snapshot(start_date, end_date, handles_list) + +with open("handles.csv", 'r') as file: + handles = clean_handle_list(file.read().split('\n')) + +print(f"start date: {yesterdays_date()}, end date: {todays_date()}, handles_list: {handles}") + +def lambda_handler(event, context): + collect_tweets(start_date=yesterdays_date(), end_date=todays_date(), handles_list=handles) + print(f"Started collection of tweets from {len(handles)} accounts, starting {yesterdays_date()} and ending {todays_date()}") + \ No newline at end of file diff --git a/brightdata-service.py b/brightdata-service.py deleted file mode 100644 index 60a20d9..0000000 --- a/brightdata-service.py +++ /dev/null @@ -1,212 +0,0 @@ -import argparse -import requests -import json -import pandas as pd -import datetime as DT -import time -import dateutil.parser -import csv -from dotenv import load_dotenv -import os -from pprint import pprint as pp - -load_dotenv() -BRIGHTDATA_RESULT_ADDRESS = "https://api.brightdata.com/datasets/v3/snapshot" -BRIGHTDATA_API_KEY = os.getenv("BRIGHTDATA_API_TOKEN") -BRIGHTDATA_DATASET_ID = os.getenv("BRIGHTDATA_DATASET_ID") -BRIGHTDATA_TRIGGER_API_ADDRESS = f"https://api.brightdata.com/datasets/v3/trigger?dataset_id={BRIGHTDATA_DATASET_ID}&type=discover_new&discover_by=profile_url" - - -def clean_handle_list(input_list): - """ - Helper function for removing white space and @s from handles - """ - stripped_list = [handle.rstrip() for handle in input_list] - no_ats_list = [handle.replace("@", "") for handle in stripped_list] - return no_ats_list - - -def todays_date(): - """ - Helper function to return today's date in YYYY-MM-DD format - """ - return DT.date.today().strftime("%Y-%m-%d") - - -def yesterdays_date(): - """ - Helper function to return yesterday's date in YYYY-MM-DD format - """ - return (DT.date.today() - DT.timedelta(days=1)).strftime("%Y-%m-%d") - - -def week_ago_date(): - """ - Helper function to return a week ago's date in YYYY-MM-DD format - """ - return (DT.date.today() - DT.timedelta(days=7)).strftime("%Y-%m-%d") - - -def date_range_request_body(start_date, end_date, handle_list): - """ - Generate the body of the API request for triggering collection through - BrightData API. - start_date and end_date format should be YYYY-MM-DD (i.e. "2024-10-15") - handle_list should be a list of twitter handles - """ - request_block = [] - for handle in handle_list: - request_block.append( - { - "url": f"https://x.com/{handle}", - "start_date": start_date, - "end_date": end_date, - } - ) - return request_block - - -def trigger_brightdata_snapshot(start_date, end_date, handles_list): - """ - Pass in a start_date and end_date in "YYYY-MM-DD" format and a list of twitter handles - """ - response = requests.post( - BRIGHTDATA_TRIGGER_API_ADDRESS, - headers={ - "Authorization": f"Bearer {BRIGHTDATA_API_KEY}", - "Content-Type": "application/json", - }, - data=json.dumps(date_range_request_body(start_date, end_date, handles_list)), - ) - return response.json() - - -def get_snapshot_results(snapshot_id): - """ - Fetch results from snapshot ID, retry if still processing - """ - result = requests.get( - headers={ - "Authorization": f"Bearer {BRIGHTDATA_API_KEY}", - "Content-Type": "application/json", - }, - url=f"{BRIGHTDATA_RESULT_ADDRESS}/{snapshot_id}?format=json", - ) - if result.status_code != 200: - print(result.json()["status"], "- trying again in 10 seconds") - time.sleep(10) - get_snapshot_results(snapshot_id) - else: - return result.json() - - -def write_results_to_csv(result_json, output_sheet_name): - """ - Write from JSON response result to given output sheet name - """ - header_row = [ - "id", - "user_posted", - "name", - "description", - "date_posted", - "photos", - "url", - "replies", - "reposts", - "likes", - "views", - "hashtags", - "followers", - "biography", - "timestamp", - ] - with open(output_sheet_name, "w+", newline="") as csvfile: - writer = csv.writer(csvfile) - writer.writerow(header_row) - tweet_rows = [] - for tweet in result_json: - id = tweet["id"] - user_posted = tweet["user_posted"] - name = tweet["name"] - description = tweet["description"] - date_posted = dateutil.parser.parse(tweet["date_posted"]) - photos = tweet["photos"] - url = tweet["url"] - replies = tweet["replies"] - reposts = tweet["reposts"] - likes = tweet["likes"] - views = tweet["views"] - hashtags = tweet["hashtags"] - followers = tweet["followers"] - biography = tweet["biography"] - timestamp = dateutil.parser.parse(tweet["timestamp"]) - - if description is not None: - description = str(description.replace("’", "")) - - if biography is not None: - biography = str(biography.replace("’", "")) - - tweet_rows.append( - [ - id, - user_posted, - name, - description, - date_posted, - photos, - url, - replies, - reposts, - likes, - views, - hashtags, - followers, - biography, - timestamp, - ] - ) - writer.writerows(tweet_rows) - - -def collect_tweets(start_date, end_date, handles_list, output_sheet): - print(f"Triggering collection of tweets from {len(handles_list)} accounts") - print(f"Start date: {start_date}") - print(f"End date: {end_date}") - trigger_response = trigger_brightdata_snapshot(start_date, end_date, handles_list) - snapshot_id = trigger_response["snapshot_id"] - print(f"Snapshot ID: {snapshot_id}") - results = get_snapshot_results(snapshot_id) - time.sleep(10) # I don't know why this is necessary, but otherwise it doesn't return the tweets despite getting a 200 response - tweets = get_snapshot_results(snapshot_id) - print(f"Snapshot retrieved, writing to {output_sheet}") - write_results_to_csv(tweets, output_sheet) - print(f"Complete") - -if __name__ == '__main__': - parser = argparse.ArgumentParser() - parser.add_argument('--handlescsv', help='csv file containing twitter handles to collect tweets from (default = handles.csv)', - type=str, - default='handles.csv') - parser.add_argument('--start-date', help='start date of collection in YYYY-MM-DD format (default is yesterday)', - type=str, - default=yesterdays_date()) - parser.add_argument('--end-date', help='end date of collection in YYYY-MM-DD format (default is today)', - type=str, - default=todays_date()) - parser.add_argument('--outputfile', help='filepath for results csv (default = bd-tweets.csv)', - default='bd-tweets.csv') - args = parser.parse_args() - - handles_path = args.handlescsv - output_path = args.outputfile - - with open(handles_path, 'r') as file: - handles = clean_handle_list(file.read().split('\n')) - - collect_tweets(start_date=args.start_date, - end_date=args.end_date, - handles_list=handles, - output_sheet=output_path - ) \ No newline at end of file From dc1e13096c2bf5470f5ce51f84d3252eac4a7bd5 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Fri, 8 Nov 2024 13:14:08 -0500 Subject: [PATCH 14/17] Update readme for lamba function --- README.md | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index f7b91bf..9d05953 100644 --- a/README.md +++ b/README.md @@ -43,22 +43,13 @@ where: * Sender * Message -## Generating BrightData twitter data sets +## Generating BrightData twitter data sets via AWS Lambda function Requires an API key and credits for [BrightData web data APIs](https://docs.brightdata.com/scraping-automation/web-data-apis/web-scraper-api/overview). -Make a copy of `.env.example`, rename it to `.env`, and replace the placeholder values with your API key and dataset ID. - -usage: `python brightdata-service.py [-h] [--start-date STARTDATE] [--end-date ENDDATE] [--outputfile OUTPUTFILE]` - -``` -optional argument: - -h, --help show this help message and exit - --start-date STARTDATE starting date for tweet collection in YYYY-MM-DD format (default is yesterday) - --end-date ENDDATE ending date for tweet collection in YYYY-MM-DD format (default is today) - --outputfile OUTPUTFILE filepath for results csv (default = bd-tweets.csv) -``` +Code in `brightdata-aws-lambda.py` can be used as an AWS Lambda function to trigger a collection of tweets using the Brightdata API. The resulting tweets data set is deposited into the S3 bucket configured in environment variables. This can be configured to trigger at an interval of your choice via AWS Cloudwatch settings. +You can also trigger a collection manually by running the `brightdata-aws-lambda.py` script, and inserting start and end dates in `YYYY-MM-DD` in the `collect_tweets` function. ## Output files @@ -77,4 +68,3 @@ The `recycle_keywords.py` utility takes: It scans through the coding file, looking for keyword severity scores assigned by the human coder, as well as looking for new keywords added by the human coder. It then updates the scores of existing keywords (using the mode of human-assigned severity scores), and adds new keywords, to the keywords file. - From 46227c1d2d2e0fe332bf9335a9c1362dec26933e Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Fri, 8 Nov 2024 13:19:48 -0500 Subject: [PATCH 15/17] Add groups csv --- groups.csv | 368 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 368 insertions(+) create mode 100644 groups.csv diff --git a/groups.csv b/groups.csv new file mode 100644 index 0000000..09c5ed3 --- /dev/null +++ b/groups.csv @@ -0,0 +1,368 @@ +college_students,C2 +high_school_graduate,C3 +students,C4 +university_students,C5 +african_american,I6 +black,I7 +black_kids,I8 +black_lives_matter,I9 +blm,I10 +black_people,I11 +black_women,I12 +blacks,I13 +amazon,C14 +apple,C15 +disney,C16 +facebook,C17 +google,C18 +netflix,C19 +silicon_valley,C20 +tech,C21 +technologies,C22 +twitter,C23 +zte,C24 +tech_companies,C25 +big_tech,C26 +abc,C27 +anchors,C28 +bbc,C29 +cbs,C30 +cnn,C31 +commercial_television,C32 +correspondent,C33 +correspondents,C34 +fox,C35 +fox_news,C36 +hollywood,C37 +journalism,C38 +journalist,C39 +journalists,C40 +late_night_shows,C41 +los_angeles_times,C42 +mcclatchy_news,C43 +media,C44 +media_matters,C45 +msnbc,C46 +nbc,C47 +networks,C48 +new_york_media_market,C49 +new_york_times,C50 +new_york_post,C51 +news,C52 +newsweek,C53 +press,C54 +pundits,C55 +radio,C56 +reporters,C57 +social_media,C58 +tbs,C59 +television,C60 +the_view,C61 +tv,C62 +usa_today,C63 +vanity_fair,C64 +washington_post,C65 +wall_street_journal,C66 +fourth_estate,C67 +indian,I68 +indians,I69 +white,I70 +white_men,I71 +white_patriarchal,I72 +whites,I73 +asian,F74 +asians,F75 +athiest,I76 +atheists,I77 +athletes,C78 +eagles,C79 +football,C80 +nfl,C81 +white_fans,C82 +white_players,C83 +austria,F84 +british,F85 +england,F86 +uk,F87 +european_leaders,F88 +european_union,F89 +europeans,F90 +france,F91 +french,F92 +germans,F93 +germany,F94 +california,O95 +north_carolina,O96 +religious,I97 +believer,I98 +religious_americans,I99 +bisexual,I100 +gay,I101 +gays,I102 +homosexual,I103 +lesbian,I104 +lgbt,I105 +same_sex,I106 +trans,I107 +transgender,I108 +christian,I109 +christians,I110 +preachers,I111 +bible_thumpers,I112 +comics,C113 +comedian,C114 +comedians,C115 +comediens,C116 +actors,C117 +celebrities,C118 +cops,C119 +law_enforcement,C120 +police,C121 +america,I122 +american_people,I123 +americans,I124 +country,I125 +half_a_country,I126 +nation,I127 +population,I128 +united_states,I129 +u.s.,I130 +us_citizens,I131 +U.S.,I132 +usa,I133 +elite,O134 +elites,O135 +billionaires,O136 +one_percent,O137 +rich,O138 +upperclass,O139 +power_centers,O140 +globalist,O141 +globalists,O142 +female,I143 +females,I144 +feminist,I145 +feminists,I146 +girl,I147 +girls,I148 +me_too_era,I149 +woman,I150 +women,I151 +foreign,F152 +jew,I153 +jewish,I154 +jews,I155 +rabbis,I156 +saudi,F157 +saudi_arabia,F158 +saudis,F159 +homeless,O160 +mexican,F161 +mexicans,F162 +mexico,F163 +mexico_city,F164 +interest_groups,C165 +lobbyist,C166 +lobbyists,C167 +israel,F168 +israeli,F169 +italy,F170 +alien,I171 +aliens,I172 +anchor_baby,I173 +caravan,I174 +dreamers,I175 +immigrant,I176 +immigrants,I177 +migrant,I178 +migrants,I179 +foreigners (domestic),I180 +people_with_green_cards,I181 +refugee,I182 +refugees,I183 +africa,F184 +african,F185 +africans,F186 +blue_collared,O187 +low_socioeconomic_status,O188 +lowerclass,O189 +medicare_recipients,O190 +poor,O191 +poor_people,O192 +farmers,O193 +rural,O194 +middle_class,C195 +did_not_go_to_college,I196 +did_not_graduate,I197 +uneducated,I198 +foster_care_system,O199 +capitalist,C200 +korean_peninsula,F201 +north_korea,F202 +north_korean,F203 +north_koreans,F204 +baltimore,O205 +city,O206 +d.c.,O207 +districts,O208 +ferguson,O209 +ithica,O210 +new_york_city,O211 +san_francisco,O212 +urban,O213 +indigenous,I214 +native_american,I215 +native_americans,I216 +natives,I217 +union,C218 +moscow,F219 +russia,F220 +russian,F221 +russian,F222 +russians,F223 +soviet_union,F224 +kids_of_color,I225 +minorities,I226 +minority,I227 +seventeen_eighteen_\-year\-olds,I228 +third_world,F229 +australians,F230 +big_banks,C231 +credit_card_companies,C232 +jp_morgan,C233 +lenders,C234 +student_loan_processes,C235 +bankers,C236 +banks,C237 +canada,F238 +canadian,F239 +canadians,F240 +central_african_republic,F241 +islam,I242 +islamic,I243 +islamist,I244 +mullahs,I245 +muslim,I246 +muslims,I247 +afghanistan,F248 +afghans,F249 +social_justice_warriors,O250 +protester,O251 +protesters,O252 +social_activists,O253 +vegans,O254 +cnn_viewers,O255 +lawyers,C256 +men,I257 +millennials,I258 +hispanic,I259 +hispanic_kids,I260 +hispanics,I261 +illegals,I262 +latina,I263 +latino,I264 +latinos,I265 +china,F266 +chinese,F267 +japan,F268 +japanese,F269 +korean,F270 +koreans,F271 +south_korean,F272 +pacific_islander,F273 +philippines,F274 +singapore,F275 +arab,F276 +egypt,F277 +iran,F278 +iranian,F279 +iranians,F280 +morocco,F281 +pakistan,F282 +somalis,F283 +yemen,F284 +yemenis,F285 +brazil,F286 +central_america,F287 +cuba,F288 +cuban,F289 +el_salvador,F290 +guatemala,F291 +guatemalans,F292 +hondurans,F293 +honduras,F294 +jamaica,F295 +latin_america,F296 +nicaraguan,F297 +south_america,F298 +venezuelan,F299 +venezuela,F300 +caracas,F301 +ukraine,F302 +academia,C303 +academics,C304 +college,C305 +colleges,C306 +intellectual,C307 +intellectuals,C308 +universities,C309 +analysts,C310 +bureaucrats,C311 +diplomats,C312 +judges,C313 +politicians,C314 +washington,C315 +establishment,C316 +brown,I317 +palestine,F318 +turkey,F319 +Liberal,P320 +Kamala_supporters,P321 +Kamala_voters,P322 +dem,P323 +democrat,P324 +democrats,P325 +dems,P326 +dnc,P327 +left_wing,P328 +lib,P329 +liberal,P330 +liberals,P331 +liberalism,P332 +libs,P333 +biden_supporters,P334 +biden_voters,P335 +progressives,P336 +social_democrats,P337 +socialism,P338 +socialist,P339 +corporate_democrats,P340 +progressive,P341 +socialists,P342 +democratic_socialist,P343 +democratic_socialists,P344 +anti-clinton,P345 +far_left,P346 +left_leaning,P347 +Conservatives,P348 +trump_supporters,P349 +trump_voters,P350 +republican,P351 +republican_party,P352 +republicans,P353 +rnc,P354 +right_wing,P355 +libertarian,P356 +libertarians,P357 +libertarianism,P358 +small_government,P359 +conservative,P360 +conservatism,P361 +conservatives,P362 +gop,P363 +anti-trump,P364 +rhinos,P365 +tea_party,P366 +far_right,P367 +right_leaning,P368 +MAGA,P369 \ No newline at end of file From 9895765a709c062e5193ae25d06562a15754b59d Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Fri, 8 Nov 2024 13:20:06 -0500 Subject: [PATCH 16/17] Add sentiment words csv --- sentiment_words.csv | 11085 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 11085 insertions(+) create mode 100644 sentiment_words.csv diff --git a/sentiment_words.csv b/sentiment_words.csv new file mode 100644 index 0000000..d222aee --- /dev/null +++ b/sentiment_words.csv @@ -0,0 +1,11085 @@ +aberrant,N,N2 +aberrantly,N,N3 +abnormal,N,N4 +abnormally,N,N5 +abolish,N,N6 +abolishes,N,N7 +abolishing,N,N8 +abolished,N,N9 +abominable,N,N10 +abominably,N,N11 +abominate,N,N12 +abominates,N,N13 +abominating,N,N14 +abominated,N,N15 +abomination,N,N16 +abort,N,N17 +aborted,N,N18 +aborts,N,N19 +aborting,N,N20 +abrade,N,N21 +abrades,N,N22 +abrading,N,N23 +abraded,N,N24 +abrasive,N,N25 +abrasively,N,N26 +abrupt,N,N27 +abruptly,N,N28 +abscond,N,N29 +absconds,N,N30 +absconding,N,N31 +absconded,N,N32 +absence,N,N33 +absences,N,N34 +absent-minded,N,N35 +absent-mindedly,N,N36 +absent,N,N37 +absently,N,N38 +absentee,N,N39 +absurd,N,N40 +absurdity,N,N41 +absurdly,N,N42 +absurdness,N,N43 +abuse,N,N44 +abused,N,N45 +abuses,N,N46 +abusive,N,N47 +abusively,N,N48 +abusing,N,N49 +abysmal,N,N50 +abysmally,N,N51 +abyss,N,N52 +accost,N,N53 +accosts,N,N54 +accosting,N,N55 +accosted,N,N56 +accursed,N,N57 +accusation,N,N58 +accusations,N,N59 +accuse,N,N60 +accuses,N,N61 +accusing,N,N62 +accusingly,N,N63 +accused,N,N64 +acerbate,N,N65 +acerbic,N,N66 +acerbically,N,N67 +acerbates,N,N68 +acerbating,N,N69 +acerbated,N,N70 +ache,N,N71 +ached,N,N72 +aches,N,N73 +achey,N,N74 +aching,N,N75 +acrid,N,N76 +acridly,N,N77 +acridness,N,N78 +acrimonious,N,N79 +acrimoniously,N,N80 +acrimony,N,N81 +addict,N,N82 +addicted,N,N83 +addicting,N,N84 +addicts,N,N85 +admonish,N,N86 +admonisher,N,N87 +admonishers,N,N88 +admonishingly,N,N89 +admonishment,N,N90 +admonition,N,N91 +admonishes,N,N92 +admonishing,N,N93 +admonished,N,N94 +adulterate,N,N95 +adulterated,N,N96 +adulteration,N,N97 +adulterator,N,N98 +adulterators,N,N99 +adversarial,N,N100 +adversarially,N,N101 +adversary,N,N102 +adversaries,N,N103 +adverse,N,N104 +adversely,N,N105 +adversity,N,N106 +adversities,N,N107 +afflict,N,N108 +affliction,N,N109 +afflictions,N,N110 +afflictive,N,N111 +afflicts,N,N112 +afflicting,N,N113 +afflicted,N,N114 +affront,N,N115 +affronts,N,N116 +affronting,N,N117 +affronted,N,N118 +afraid,N,N119 +aggravate,N,N120 +aggravating,N,N121 +aggravation,N,N122 +aggravates,N,N123 +aggravated,N,N124 +aggression,N,N125 +aggressive,N,N126 +aggressiveness,N,N127 +aggressor,N,N128 +aggressors,N,N129 +aggressively,N,N130 +aggrieve,N,N131 +aggrieved,N,N132 +aggrivation,N,N133 +aggrieves,N,N134 +aggrieved,N,N135 +aghast,N,N136 +agonies,N,N137 +agonize,N,N138 +agonizing,N,N139 +agonizingly,N,N140 +agony,N,N141 +agonizes,N,N142 +agonized,N,N143 +aground,N,N144 +ail,N,N145 +ailing,N,N146 +ailment,N,N147 +ailments,N,N148 +ails,N,N149 +ailed,N,N150 +aimless,N,N151 +aimlessly,N,N152 +alarm,N,N153 +alarmed,N,N154 +alarming,N,N155 +alarmingly,N,N156 +alarms,N,N157 +alien,N,N158 +alienate,N,N159 +alienated,N,N160 +alienation,N,N161 +aliens,N,N162 +allegation,N,N163 +allegations,N,N164 +allege,N,N165 +alleges,N,N166 +alleging,N,N167 +alleged,N,N168 +allergic,N,N169 +allergies,N,N170 +allergy,N,N171 +aloof,N,N172 +altercation,N,N173 +altercations,N,N174 +alternate_reality,N,N175 +ambush,N,N176 +ambushes,N,N177 +ambushing,N,N178 +ambushed,N,N179 +amiss,N,N180 +amputate,N,N181 +amputates,N,N182 +amputating,N,N183 +amputated,N,N184 +anarchism,N,N185 +anarchist,N,N186 +anarchists,N,N187 +anarchistic,N,N188 +anarchy,N,N189 +anemic,N,N190 +anemically,N,N191 +anger,N,N192 +angrily,N,N193 +angriness,N,N194 +angry,N,N195 +anguish,N,N196 +animosity,N,N197 +annihilate,N,N198 +annihilates,N,N199 +annihilating,N,N200 +annihilated,N,N201 +annihilation,N,N202 +annoy,N,N203 +annoyance,N,N204 +annoyances,N,N205 +annoyed,N,N206 +annoying,N,N207 +annoyingly,N,N208 +annoys,N,N209 +anomalous,N,N210 +anomalously,N,N211 +anomaly,N,N212 +anomalies,N,N213 +antagonism,N,N214 +antagonist,N,N215 +antagonists,N,N216 +antagonistic,N,N217 +antagonistically,N,N218 +antagonize,N,N219 +antagonizes,N,N220 +antagonizing,N,N221 +antagonized,N,N222 +anti-american,N,N223 +anti-black,N,N224 +anti-israel,N,N225 +anti-israeli,N,N226 +anti-latino,N,N227 +anti-liberty,N,N228 +anti-military,N,N229 +anti-occupation,N,N230 +anti-proliferation,N,N231 +anti-semite,N,N232 +anti-semites,N,N233 +anti-semitism,N,N234 +antisocial,N,N235 +antisocially,N,N236 +anti-us,N,N237 +anti-white,N,N238 +antipathy,N,N239 +antiquated,N,N240 +antithetical,N,N241 +antithesis,N,N242 +antitheses,N,N243 +anxieties,N,N244 +anxiety,N,N245 +anxious,N,N246 +anxiously,N,N247 +anxiousness,N,N248 +apathetic,N,N249 +apathetically,N,N250 +apathy,N,N251 +apocalypse,N,N252 +apocalyptic,N,N253 +apocalyptically,N,N254 +appall,N,N255 +appalled,N,N256 +appalling,N,N257 +appallingly,N,N258 +apprehension,N,N259 +apprehensions,N,N260 +apprehensive,N,N261 +apprehensively,N,N262 +arbitrary,N,N263 +arbitrarily,N,N264 +arcane,N,N265 +archaic,N,N266 +arduous,N,N267 +arduously,N,N268 +argumentative,N,N269 +argumentatively,N,N270 +arrested,N,N271 +arrogance,N,N272 +arrogant,N,N273 +arrogantly,N,N274 +ashamed,N,N275 +asinine,N,N276 +asininely,N,N277 +asininity,N,N278 +askance,N,N279 +asperse,N,N280 +aspersion,N,N281 +aspersions,N,N282 +assail,N,N283 +assails,N,N284 +assailing,N,N285 +assailed,N,N286 +assassin,N,N287 +assassins,N,N288 +assassinate,N,N289 +assassinates,N,N290 +assassinating,N,N291 +assassinated,N,N292 +assault,N,N293 +assaults,N,N294 +assaulting,N,N295 +assaulted,N,N296 +astray,N,N297 +atrocious,N,N298 +atrociously,N,N299 +atrocities,N,N300 +atrocity,N,N301 +atrophy,N,N302 +attack,N,N303 +attacking,N,N304 +attacks,N,N305 +attacked,N,N306 +attacker,N,N307 +attackers,N,N308 +audacious,N,N309 +audaciously,N,N310 +audaciousness,N,N311 +audacity,N,N312 +audiciously,N,N313 +authoritarian,N,N314 +authoritarianism,N,N315 +autocrat,N,N316 +autocrats,N,N317 +autocratic,N,N318 +autocratically,N,N319 +avalanche,N,N320 +avalanches,N,N321 +avarice,N,N322 +avaricious,N,N323 +avariciously,N,N324 +avenge,N,N325 +avenges,N,N326 +avenging,N,N327 +avenged,N,N328 +averse,N,N329 +aversely,N,N330 +aversion,N,N331 +aversions,N,N332 +avoid,N,N333 +avoiding,N,N334 +avoids,N,N335 +avoided,N,N336 +awful,N,N337 +awfully,N,N338 +awfulness,N,N339 +awkward,N,N340 +awkwardly,N,N341 +awkwardness,N,N342 +ax,N,N343 +axes,N,N344 +babble,N,N345 +babbles,N,N346 +babbling,N,N347 +babbled,N,N348 +baby,N,N349 +babies,N,N350 +backlogged,N,N351 +backwood,N,N352 +backwoods,N,N353 +backache,N,N354 +backaches,N,N355 +backaching,N,N356 +backbite,N,N357 +backbiting,N,N358 +backbit,N,N359 +backbitten,N,N360 +backbites,N,N361 +backward,N,N362 +backwardness,N,N363 +bad,N,N364 +badger,N,N365 +badgers,N,N366 +badgering,N,N367 +badgered,N,N368 +badly,N,N369 +baffle,N,N370 +baffled,N,N371 +bafflement,N,N372 +baffling,N,N373 +baffles,N,N374 +bait,N,N375 +baits,N,N376 +baiting,N,N377 +baited,N,N378 +balk,N,N379 +balks,N,N380 +balking,N,N381 +balked,N,N382 +banal,N,N383 +banally,N,N384 +banalize,N,N385 +banalizes,N,N386 +banalizing,N,N387 +banalized,N,N388 +bane,N,N389 +banish,N,N390 +banishes,N,N391 +banishing,N,N392 +banished,N,N393 +banishment,N,N394 +bankrupt,N,N395 +banshee,N,N396 +banshees,N,N397 +barbarian,N,N398 +barbaric,N,N399 +barbarically,N,N400 +barbarity,N,N401 +barbarous,N,N402 +barbarously,N,N403 +barbarians,N,N404 +barred,N,N405 +barreling,N,N406 +barren,N,N407 +barrenly,N,N408 +baseless,N,N409 +baselessly,N,N410 +bash,N,N411 +bashed,N,N412 +bashful,N,N413 +bashfully,N,N414 +bashing,N,N415 +bashes,N,N416 +bastard,N,N417 +bastards,N,N418 +battered,N,N419 +battering,N,N420 +batter,N,N421 +batters,N,N422 +batty,N,N423 +battier,N,N424 +battiest,N,N425 +bearish,N,N426 +bearishly,N,N427 +beastly,N,N428 +beastlier,N,N429 +beastliest,N,N430 +bedlam,N,N431 +bedlamite,N,N432 +bedraggled,N,N433 +befoul,N,N434 +befouls,N,N435 +befouling,N,N436 +befouled,N,N437 +beg,N,N438 +beggar,N,N439 +beggars,N,N440 +beggarly,N,N441 +begging,N,N442 +begs,N,N443 +begged,N,N444 +beguile,N,N445 +beguiles,N,N446 +beguiling,N,N447 +beguiled,N,N448 +belabor,N,N449 +belabors,N,N450 +belaboring,N,N451 +belabored,N,N452 +beleaguer,N,N453 +beleaguers,N,N454 +beleaguering,N,N455 +beleaguered,N,N456 +belie,N,N457 +belies,N,N458 +belying,N,N459 +belied,N,N460 +belittle,N,N461 +belittled,N,N462 +belittling,N,N463 +belittles,N,N464 +bellicose,N,N465 +bellicosely,N,N466 +belligerence,N,N467 +belligerent,N,N468 +belligerently,N,N469 +bemoan,N,N470 +bemoaning,N,N471 +bemoans,N,N472 +bemoaned,N,N473 +bemused,N,N474 +bemusedly,N,N475 +bend_over_backwards,N,N476 +bends_over_backwards,N,N477 +bending_over_backwards,N,N478 +bent_over_backwards,N,N479 +berate,N,N480 +berates,N,N481 +berating,N,N482 +berated,N,N483 +bereave,N,N484 +bereaves,N,N485 +bereaving,N,N486 +bereaved,N,N487 +bereavement,N,N488 +bereft,N,N489 +berserk,N,N490 +berserkly,N,N491 +beseech,N,N492 +besought,N,N493 +beseeched,N,N494 +beseeching,N,N495 +beseeches,N,N496 +beset,N,N497 +besetting,N,N498 +besets,N,N499 +besiege,N,N500 +besieges,N,N501 +besieging,N,N502 +besieged,N,N503 +besmirch,N,N504 +besmirches,N,N505 +besmirching,N,N506 +besmirched,N,N507 +bestial,N,N508 +bestially,N,N509 +betray,N,N510 +betrayal,N,N511 +betrayals,N,N512 +betrayer,N,N513 +betrayers,N,N514 +betraying,N,N515 +betrays,N,N516 +betrayed,N,N517 +bewail,N,N518 +bewails,N,N519 +bewailed,N,N520 +bewailing,N,N521 +beware,N,N522 +bewilder,N,N523 +bewildered,N,N524 +bewildering,N,N525 +bewilderingly,N,N526 +bewilderment,N,N527 +bewilders,N,N528 +bewitch,N,N529 +bewitches,N,N530 +bewitching,N,N531 +bewitched,N,N532 +beyond_parody,N,N533 +bias,N,N534 +biased,N,N535 +biases,N,N536 +bicker,N,N537 +bickering,N,N538 +bickers,N,N539 +bickered,N,N540 +bid-rigging,N,N541 +big_cheese,N,N542 +bigot,N,N543 +bigotries,N,N544 +bigotry,N,N545 +bigots,N,N546 +bitch,N,N547 +bitchy,N,N548 +bitchier,N,N549 +bitchiest,N,N550 +bitchily,N,N551 +bitches,N,N552 +biting,N,N553 +bitingly,N,N554 +bitter,N,N555 +bitterly,N,N556 +bitterness,N,N557 +bizarre,N,N558 +bizarrely,N,N559 +blab,N,N560 +blabs,N,N561 +blabbing,N,N562 +blabbed,N,N563 +blabber,N,N564 +blabbers,N,N565 +blabbering,N,N566 +blabbered,N,N567 +blackmail,N,N568 +blackmails,N,N569 +blackmailing,N,N570 +blackmailed,N,N571 +blah,N,N572 +blame,N,N573 +blameworthy,N,N574 +blaming,N,N575 +blames,N,N576 +blamed,N,N577 +bland,N,N578 +blander,N,N579 +blandest,N,N580 +blandly,N,N581 +blandish,N,N582 +blandishes,N,N583 +blandishing,N,N584 +blandished,N,N585 +blaspheme,N,N586 +blasphemous,N,N587 +blasphemously,N,N588 +blasphemy,N,N589 +blasphemes,N,N590 +blaspheming,N,N591 +blasphemed,N,N592 +blasted,N,N593 +blatant,N,N594 +blatantly,N,N595 +blather,N,N596 +blathers,N,N597 +blathering,N,N598 +blathered,N,N599 +bleak,N,N600 +bleakly,N,N601 +bleakness,N,N602 +bleed,N,N603 +bleeding,N,N604 +bleeding_hearts,N,N605 +bleeds,N,N606 +bled,N,N607 +blemish,N,N608 +blemishes,N,N609 +blind,N,N610 +blindly,N,N611 +blinding,N,N612 +blindingly,N,N613 +blindside,N,N614 +blindsided,N,N615 +blindsiding,N,N616 +blister,N,N617 +blistering,N,N618 +blisters,N,N619 +blistered,N,N620 +bloated,N,N621 +blockading,N,N622 +blockade,N,N623 +blockades,N,N624 +blockaded,N,N625 +blockage,N,N626 +blockages,N,N627 +blockhead,N,N628 +blockheads,N,N629 +bloodshed,N,N630 +bloodthirsty,N,N631 +bloodthirstily,N,N632 +bloody,N,N633 +bloodier,N,N634 +bloodiest,N,N635 +bloodily,N,N636 +blotchy,N,N637 +blotchier,N,N638 +blotchiest,N,N639 +blotchily,N,N640 +blow,N,N641 +blows,N,N642 +blunder,N,N643 +blundering,N,N644 +blunders,N,N645 +blundered,N,N646 +blunt,N,N647 +bluntly,N,N648 +boastful,N,N649 +boastfully,N,N650 +boggle,N,N651 +boggles,N,N652 +boggling,N,N653 +boggled,N,N654 +bogus,N,N655 +boil,N,N656 +boiling,N,N657 +boils,N,N658 +boiled,N,N659 +boisterous,N,N660 +boisterously,N,N661 +bomb,N,N662 +bombs,N,N663 +bombing,N,N664 +bombed,N,N665 +bombard,N,N666 +bombardment,N,N667 +bombards,N,N668 +bombarding,N,N669 +bombarded,N,N670 +bombastic,N,N671 +bombastically,N,N672 +bondage,N,N673 +bonkers,N,N674 +bore,N,N675 +bored,N,N676 +boredom,N,N677 +bores,N,N678 +boring,N,N679 +botch,N,N680 +botches,N,N681 +botching,N,N682 +botched,N,N683 +bother,N,N684 +bothered,N,N685 +bothering,N,N686 +bothers,N,N687 +bothersome,N,N688 +bowdlerize,N,N689 +bowdlerizes,N,N690 +bowdlerizing,N,N691 +bowdlerized,N,N692 +boycott,N,N693 +boycotts,N,N694 +boycotting,N,N695 +boycotted,N,N696 +braggart,N,N697 +braggarts,N,N698 +bragger,N,N699 +braggers,N,N700 +brain-dead,N,N701 +brainless,N,N702 +brainlessly,N,N703 +brainwash,N,N704 +brainwashed,N,N705 +brainwashes,N,N706 +brainwashing,N,N707 +brash,N,N708 +brashly,N,N709 +brashness,N,N710 +brat,N,N711 +brats,N,N712 +bravado,N,N713 +brazen,N,N714 +brazenly,N,N715 +brazenness,N,N716 +breach,N,N717 +breaches,N,N718 +breaching,N,N719 +breached,N,N720 +break,N,N721 +breakdown,N,N722 +breakdowns,N,N723 +breaking,N,N724 +breaks,N,N725 +breakup,N,N726 +breakups,N,N727 +bribery,N,N728 +bribes,N,N729 +bribe,N,N730 +bribing,N,N731 +bribed,N,N732 +brimstone,N,N733 +bristle,N,N734 +bristles,N,N735 +bristled,N,N736 +bristling,N,N737 +brittle,N,N738 +brittler,N,N739 +brittlest,N,N740 +broke,N,N741 +broken,N,N742 +brokenhearted,N,N743 +brood,N,N744 +broods,N,N745 +brooding,N,N746 +brooded,N,N747 +browbeat,N,N748 +browbeats,N,N749 +browbeating,N,N750 +browbeaten,N,N751 +bruise,N,N752 +bruised,N,N753 +bruises,N,N754 +bruising,N,N755 +brusque,N,N756 +brusquely,N,N757 +brutal,N,N758 +brutalities,N,N759 +brutality,N,N760 +brutalize,N,N761 +brutalizes,N,N762 +brutalizing,N,N763 +brutalized,N,N764 +brutally,N,N765 +brute,N,N766 +brutes,N,N767 +brutish,N,N768 +brutishly,N,N769 +bs,N,N770 +buckle,N,N771 +buckles,N,N772 +buckled,N,N773 +buckling,N,N774 +buffoon,N,N775 +buffoons,N,N776 +bug,N,N777 +bugging,N,N778 +buggy,N,N779 +bugs,N,N780 +bugged,N,N781 +bulkier,N,N782 +bulkiness,N,N783 +bulky,N,N784 +bullies,N,N785 +bullshit,N,N786 +bully,N,N787 +bullied,N,N788 +bully_platform,N,N789 +bullying,N,N790 +bullyingly,N,N791 +bum,N,N792 +bump,N,N793 +bumped,N,N794 +bumping,N,N795 +bumps,N,N796 +bumpy,N,N797 +bumpier,N,N798 +bumpiest,N,N799 +bumpily,N,N800 +bums,N,N801 +bungle,N,N802 +bungler,N,N803 +bunglers,N,N804 +bungling,N,N805 +bungled,N,N806 +bungles,N,N807 +bunk,N,N808 +burden,N,N809 +burdensome,N,N810 +burdensomely,N,N811 +burdens,N,N812 +burdening,N,N813 +burdened,N,N814 +burn,N,N815 +burned,N,N816 +burning,N,N817 +burns,N,N818 +bust,N,N819 +busts,N,N820 +busybody,N,N821 +busybodies,N,N822 +butcher,N,N823 +butchery,N,N824 +butchers,N,N825 +butchering,N,N826 +butchered,N,N827 +buzzing,N,N828 +byzantine,N,N829 +cabal,N,N830 +cabals,N,N831 +cackle,N,N832 +cackles,N,N833 +cackling,N,N834 +cackled,N,N835 +calamities,N,N836 +calamitous,N,N837 +calamitously,N,N838 +calamity,N,N839 +call_them_out,N,N840 +callous,N,N841 +callously,N,N842 +calumniate,N,N843 +calumniation,N,N844 +calumnies,N,N845 +calumnious,N,N846 +calumniously,N,N847 +calumny,N,N848 +calumniates,N,N849 +calumniating,N,N850 +calumniated,N,N851 +cancer,N,N852 +cancerous,N,N853 +cancerously,N,N854 +cannibal,N,N855 +cannibalize,N,N856 +cannibals,N,N857 +cannibalizes,N,N858 +cannibalizing,N,N859 +cannibalized,N,N860 +capitulate,N,N861 +capitulates,N,N862 +capitulating,N,N863 +capitulated,N,N864 +capricious,N,N865 +capriciously,N,N866 +capriciousness,N,N867 +capsize,N,N868 +capsizes,N,N869 +capsizing,N,N870 +capsized,N,N871 +careless,N,N872 +carelessness,N,N873 +carelessly,N,N874 +caricature,N,N875 +caricatures,N,N876 +carnage,N,N877 +carp,N,N878 +carps,N,N879 +carping,N,N880 +carped,N,N881 +cartoon,N,N882 +cartoonish,N,N883 +cartoons,N,N884 +cash-strapped,N,N885 +castigate,N,N886 +castigates,N,N887 +castigating,N,N888 +castigated,N,N889 +castrated,N,N890 +castrate,N,N891 +castrating,N,N892 +castrates,N,N893 +casualty,N,N894 +casualties,N,N895 +cataclysm,N,N896 +cataclysmal,N,N897 +cataclysmic,N,N898 +cataclysmically,N,N899 +cataclysms,N,N900 +catastrophe,N,N901 +catastrophes,N,N902 +catastrophic,N,N903 +catastrophically,N,N904 +caustic,N,N905 +caustically,N,N906 +cautionary,N,N907 +cave,N,N908 +caves,N,N909 +caving,N,N910 +caved,N,N911 +censure,N,N912 +chafe,N,N913 +chafes,N,N914 +chafing,N,N915 +chafed,N,N916 +chaff,N,N917 +chagrin,N,N918 +challenging,N,N919 +challengingly,N,N920 +chaos,N,N921 +chaotic,N,N922 +chasten,N,N923 +chastens,N,N924 +chastened,N,N925 +chastening,N,N926 +chastise,N,N927 +chastisement,N,N928 +chastises,N,N929 +chastised,N,N930 +chastising,N,N931 +chatterbox,N,N932 +chatterboxes,N,N933 +cheap,N,N934 +cheapen,N,N935 +cheapens,N,N936 +cheapening,N,N937 +cheapened,N,N938 +cheaply,N,N939 +cheat,N,N940 +cheated,N,N941 +cheater,N,N942 +cheaters,N,N943 +cheating,N,N944 +cheats,N,N945 +checkered,N,N946 +cheerless,N,N947 +cheerlessly,N,N948 +cheesy,N,N949 +cheesier,N,N950 +cheesiest,N,N951 +cheesily,N,N952 +chide,N,N953 +chides,N,N954 +chided,N,N955 +chiding,N,N956 +childish,N,N957 +childishly,N,N958 +chill,N,N959 +chilly,N,N960 +chillier,N,N961 +chilliest,N,N962 +chintzy,N,N963 +chintzier,N,N964 +chintziest,N,N965 +choke,N,N966 +choked,N,N967 +chokes,N,N968 +choking,N,N969 +choleric,N,N970 +cholerically,N,N971 +chopped_them_up,N,N972 +chop_them_up,N,N973 +chops_them_up,N,N974 +chopping_them_up,N,N975 +choppy,N,N976 +choppier,N,N977 +choppiest,N,N978 +choppily,N,N979 +chore,N,N980 +chores,N,N981 +chunky,N,N982 +chunkier,N,N983 +chunkiest,N,N984 +chunkily,N,N985 +circus,N,N986 +circuses,N,N987 +claim,N,N988 +claims,N,N989 +claiming,N,N990 +claimed,N,N991 +clamor,N,N992 +clamorous,N,N993 +clamorously,N,N994 +clash,N,N995 +clashes,N,N996 +clashing,N,N997 +clashed,N,N998 +cliche,N,N999 +cliched,N,N1000 +clique,N,N1001 +cliques,N,N1002 +clog,N,N1003 +clogged,N,N1004 +clogs,N,N1005 +clogging,N,N1006 +close_up_shop,N,N1007 +cloud,N,N1008 +clouding,N,N1009 +cloudy,N,N1010 +cloudier,N,N1011 +cloudiest,N,N1012 +cloudily,N,N1013 +clouds,N,N1014 +clouded,N,N1015 +clowning,N,N1016 +clown,N,N1017 +clowns,N,N1018 +clowned,N,N1019 +clueless,N,N1020 +cluelessly,N,N1021 +clumsy,N,N1022 +clumsier,N,N1023 +clumsiest,N,N1024 +clumsily,N,N1025 +clunky,N,N1026 +clunkier,N,N1027 +clunkiest,N,N1028 +coarse,N,N1029 +coarser,N,N1030 +coarsest,N,N1031 +coarsely,N,N1032 +cocky,N,N1033 +cockier,N,N1034 +cockiest,N,N1035 +cockily,N,N1036 +coerce,N,N1037 +coercion,N,N1038 +coercive,N,N1039 +coerces,N,N1040 +coercing,N,N1041 +coerced,N,N1042 +coercively,N,N1043 +cold,N,N1044 +coldly,N,N1045 +colder,N,N1046 +coldest,N,N1047 +collapse,N,N1048 +collapses,N,N1049 +collapsing,N,N1050 +collapsed,N,N1051 +collude,N,N1052 +collusion,N,N1053 +colluding,N,N1054 +colluded,N,N1055 +colludes,N,N1056 +combative,N,N1057 +combatively,N,N1058 +combust,N,N1059 +combusts,N,N1060 +combusting,N,N1061 +combusted,N,N1062 +come_after,N,N1063 +comes_after,N,N1064 +coming_after,N,N1065 +came_after,N,N1066 +comical,N,N1067 +comically,N,N1068 +commiserate,N,N1069 +commiserates,N,N1070 +commiserated,N,N1071 +commiserating,N,N1072 +commotion,N,N1073 +commotions,N,N1074 +communism,N,N1075 +communist,N,N1076 +communists,N,N1077 +compete,N,N1078 +competes,N,N1079 +competing,N,N1080 +competed,N,N1081 +complacent,N,N1082 +complacently,N,N1083 +complain,N,N1084 +complained,N,N1085 +complaining,N,N1086 +complains,N,N1087 +complaint,N,N1088 +complaints,N,N1089 +complicated,N,N1090 +complicatedly,N,N1091 +complication,N,N1092 +complications,N,N1093 +complicit,N,N1094 +compulsion,N,N1095 +compulsive,N,N1096 +compulsively,N,N1097 +concede,N,N1098 +conceded,N,N1099 +concedes,N,N1100 +conceding,N,N1101 +conceit,N,N1102 +conceited,N,N1103 +conceitedly,N,N1104 +concern,N,N1105 +concerned,N,N1106 +concerns,N,N1107 +concession,N,N1108 +concessions,N,N1109 +condemn,N,N1110 +condemnable,N,N1111 +condemnation,N,N1112 +condemned,N,N1113 +condemns,N,N1114 +condemning,N,N1115 +condescend,N,N1116 +condescending,N,N1117 +condescendingly,N,N1118 +condescends,N,N1119 +condescension,N,N1120 +conditioning,N,N1121 +conditioned,N,N1122 +confess,N,N1123 +confession,N,N1124 +confessions,N,N1125 +confesses,N,N1126 +confessing,N,N1127 +confessed,N,N1128 +confined,N,N1129 +conflict,N,N1130 +conflicted,N,N1131 +conflicting,N,N1132 +conflicts,N,N1133 +confound,N,N1134 +confounded,N,N1135 +confounding,N,N1136 +confounds,N,N1137 +confront,N,N1138 +confrontation,N,N1139 +confrontational,N,N1140 +confrontationally,N,N1141 +confronts,N,N1142 +confronting,N,N1143 +confronted,N,N1144 +confuse,N,N1145 +confused,N,N1146 +confuses,N,N1147 +confusing,N,N1148 +confusion,N,N1149 +confusions,N,N1150 +congested,N,N1151 +congestion,N,N1152 +conspicuous,N,N1153 +conspicuously,N,N1154 +conspiracies,N,N1155 +conspiracy,N,N1156 +conspirator,N,N1157 +conspirators,N,N1158 +conspiratorial,N,N1159 +conspiratorially,N,N1160 +conspire,N,N1161 +conspired,N,N1162 +conspires,N,N1163 +conspiring,N,N1164 +consternation,N,N1165 +constipated,N,N1166 +contagious,N,N1167 +contagiously,N,N1168 +contaminate,N,N1169 +contaminated,N,N1170 +contaminates,N,N1171 +contaminating,N,N1172 +contamination,N,N1173 +contempt,N,N1174 +contemptible,N,N1175 +contemptibly,N,N1176 +contemptuous,N,N1177 +contemptuously,N,N1178 +contend,N,N1179 +contention,N,N1180 +contentious,N,N1181 +contending,N,N1182 +contends,N,N1183 +contended,N,N1184 +contort,N,N1185 +contortion,N,N1186 +contortions,N,N1187 +contorts,N,N1188 +contorting,N,N1189 +contorted,N,N1190 +contortion,N,N1191 +contradict,N,N1192 +contradiction,N,N1193 +contradictory,N,N1194 +contradicts,N,N1195 +contradicting,N,N1196 +contradicted,N,N1197 +contradictions,N,N1198 +contrariness,N,N1199 +contravene,N,N1200 +contravenes,N,N1201 +contravening,N,N1202 +contravened,N,N1203 +contrive,N,N1204 +contrived,N,N1205 +contrives,N,N1206 +contriving,N,N1207 +controversial,N,N1208 +controversially,N,N1209 +controversy,N,N1210 +controversies,N,N1211 +convoluted,N,N1212 +corpse,N,N1213 +corpses,N,N1214 +corrode,N,N1215 +corrosion,N,N1216 +corrosions,N,N1217 +corrosive,N,N1218 +corrodes,N,N1219 +corroding,N,N1220 +corroded,N,N1221 +corrupt,N,N1222 +corrupted,N,N1223 +corrupting,N,N1224 +corruption,N,N1225 +corrupts,N,N1226 +costlier,N,N1227 +costly,N,N1228 +costliest,N,N1229 +counterproductive,N,N1230 +counterproductively,N,N1231 +coupists,N,N1232 +coupist,N,N1233 +cover-up,N,N1234 +cover-ups,N,N1235 +covetous,N,N1236 +covetously,N,N1237 +coward,N,N1238 +cowardice,N,N1239 +cowardly,N,N1240 +cowards,N,N1241 +coy,N,N1242 +coyer,N,N1243 +coyest,N,N1244 +coyly,N,N1245 +coyotes,N,N1246 +crabby,N,N1247 +crabbier,N,N1248 +crabbiest,N,N1249 +crabbily,N,N1250 +crack,N,N1251 +crackdown,N,N1252 +cracked,N,N1253 +crackpot,N,N1254 +crackpots,N,N1255 +cracks,N,N1256 +cracking,N,N1257 +craftily,N,N1258 +crafty,N,N1259 +craftier,N,N1260 +craftiest,N,N1261 +cramp,N,N1262 +cramped,N,N1263 +cramping,N,N1264 +cramps,N,N1265 +cranky,N,N1266 +crankier,N,N1267 +crankiest,N,N1268 +crankily,N,N1269 +crap,N,N1270 +crappy,N,N1271 +craps,N,N1272 +crapped,N,N1273 +crapping,N,N1274 +crash,N,N1275 +crashed,N,N1276 +crashes,N,N1277 +crashing,N,N1278 +crass,N,N1279 +crasser,N,N1280 +crassest,N,N1281 +crassly,N,N1282 +craven,N,N1283 +cravenly,N,N1284 +craze,N,N1285 +crazier,N,N1286 +crazily,N,N1287 +craziness,N,N1288 +craziest,N,N1289 +crazy,N,N1290 +creak,N,N1291 +creaking,N,N1292 +creaks,N,N1293 +creaked,N,N1294 +credulous,N,N1295 +credulously,N,N1296 +creep,N,N1297 +creeping,N,N1298 +creeps,N,N1299 +creepy,N,N1300 +crept,N,N1301 +creepier,N,N1302 +creepiest,N,N1303 +creepily,N,N1304 +crime,N,N1305 +criminal,N,N1306 +crimes,N,N1307 +criminals,N,N1308 +cringe,N,N1309 +cringed,N,N1310 +cringes,N,N1311 +cringing,N,N1312 +cripple,N,N1313 +crippled,N,N1314 +cripples,N,N1315 +crippling,N,N1316 +crisis,N,N1317 +crises,N,N1318 +critic,N,N1319 +critical,N,N1320 +criticism,N,N1321 +criticisms,N,N1322 +criticize,N,N1323 +criticized,N,N1324 +criticizing,N,N1325 +critics,N,N1326 +critically,N,N1327 +criticizes,N,N1328 +cronyism,N,N1329 +crook,N,N1330 +crooked,N,N1331 +crookedly,N,N1332 +crooks,N,N1333 +crude,N,N1334 +cruder,N,N1335 +crudest,N,N1336 +crudely,N,N1337 +cruel,N,N1338 +crueler,N,N1339 +cruelest,N,N1340 +cruelly,N,N1341 +cruelness,N,N1342 +cruelties,N,N1343 +cruelty,N,N1344 +crumble,N,N1345 +crumbling,N,N1346 +crumbles,N,N1347 +crumbled,N,N1348 +crummy,N,N1349 +crummier,N,N1350 +crummiest,N,N1351 +crummily,N,N1352 +crumple,N,N1353 +crumpled,N,N1354 +crumples,N,N1355 +crumpling,N,N1356 +crush,N,N1357 +crushed,N,N1358 +crushing,N,N1359 +crushes,N,N1360 +cry,N,N1361 +cries,N,N1362 +crying,N,N1363 +cried,N,N1364 +crybaby,N,N1365 +crybabies,N,N1366 +culpable,N,N1367 +culpably,N,N1368 +culprit,N,N1369 +culprits,N,N1370 +cult,N,N1371 +cults,N,N1372 +cumbersome,N,N1373 +cumbersomely,N,N1374 +cunt,N,N1375 +cunts,N,N1376 +curse,N,N1377 +cursed,N,N1378 +curses,N,N1379 +cursing,N,N1380 +curt,N,N1381 +curter,N,N1382 +curtest,N,N1383 +curtly,N,N1384 +cuss,N,N1385 +cussed,N,N1386 +cusses,N,N1387 +cussing,N,N1388 +cutthroat,N,N1389 +cutthroats,N,N1390 +cynical,N,N1391 +cynicism,N,N1392 +cynically,N,N1393 +damage,N,N1394 +damaged,N,N1395 +damages,N,N1396 +damaging,N,N1397 +damn,N,N1398 +damnable,N,N1399 +damnably,N,N1400 +damnation,N,N1401 +damned,N,N1402 +damning,N,N1403 +damper,N,N1404 +dancing_on_graves,N,N1405 +danger,N,N1406 +dangerous,N,N1407 +dangerousness,N,N1408 +dangerously,N,N1409 +dark,N,N1410 +darken,N,N1411 +darkens,N,N1412 +darkening,N,N1413 +darkened,N,N1414 +darker,N,N1415 +darkest,N,N1416 +darkly,N,N1417 +darkness,N,N1418 +dastard,N,N1419 +dastards,N,N1420 +dastardly,N,N1421 +daunt,N,N1422 +daunting,N,N1423 +dauntingly,N,N1424 +daunts,N,N1425 +daunted,N,N1426 +dawdle,N,N1427 +dawdles,N,N1428 +dawdling,N,N1429 +dawdled,N,N1430 +daze,N,N1431 +dazed,N,N1432 +dead,N,N1433 +deadbeat,N,N1434 +deadbeats,N,N1435 +deadlock,N,N1436 +deadly,N,N1437 +deadlier,N,N1438 +deadliest,N,N1439 +dead_weight,N,N1440 +dead_weights,N,N1441 +deaf,N,N1442 +dearth,N,N1443 +death,N,N1444 +death_knell,N,N1445 +debacle,N,N1446 +debacles,N,N1447 +debase,N,N1448 +debases,N,N1449 +debasing,N,N1450 +debased,N,N1451 +debasement,N,N1452 +debaser,N,N1453 +debasers,N,N1454 +debatable,N,N1455 +debatably,N,N1456 +debauch,N,N1457 +debauches,N,N1458 +debauching,N,N1459 +debauched,N,N1460 +debaucher,N,N1461 +debauchers,N,N1462 +debauchery,N,N1463 +debilitate,N,N1464 +debilitating,N,N1465 +debility,N,N1466 +debilitates,N,N1467 +debilitated,N,N1468 +debilities,N,N1469 +debt,N,N1470 +debts,N,N1471 +decadence,N,N1472 +decadent,N,N1473 +decadently,N,N1474 +decay,N,N1475 +decayed,N,N1476 +decays,N,N1477 +decaying,N,N1478 +deceit,N,N1479 +deceitful,N,N1480 +deceitfully,N,N1481 +deceitfulness,N,N1482 +deceive,N,N1483 +deceiver,N,N1484 +deceivers,N,N1485 +deceiving,N,N1486 +deception,N,N1487 +deceptive,N,N1488 +deceptively,N,N1489 +deceives,N,N1490 +deceived,N,N1491 +declaim,N,N1492 +declaims,N,N1493 +declaiming,N,N1494 +declaimed,N,N1495 +decline,N,N1496 +declines,N,N1497 +declining,N,N1498 +declined,N,N1499 +decrement,N,N1500 +decrepit,N,N1501 +decrepitude,N,N1502 +decry,N,N1503 +decries,N,N1504 +decried,N,N1505 +decrying,N,N1506 +defamation,N,N1507 +defamations,N,N1508 +defamatory,N,N1509 +defame,N,N1510 +defames,N,N1511 +defaming,N,N1512 +defamed,N,N1513 +defect,N,N1514 +defective,N,N1515 +defectively,N,N1516 +defects,N,N1517 +defiance,N,N1518 +defiant,N,N1519 +defiantly,N,N1520 +deficiencies,N,N1521 +deficiency,N,N1522 +deficient,N,N1523 +deficiently,N,N1524 +defile,N,N1525 +defiler,N,N1526 +defilers,N,N1527 +defiles,N,N1528 +defiling,N,N1529 +defiled,N,N1530 +deform,N,N1531 +deformed,N,N1532 +deforms,N,N1533 +deforming,N,N1534 +defrauding,N,N1535 +defraud,N,N1536 +defrauds,N,N1537 +defrauded,N,N1538 +defunct,N,N1539 +defy,N,N1540 +defies,N,N1541 +defying,N,N1542 +defied,N,N1543 +degenerate,N,N1544 +degenerately,N,N1545 +degeneration,N,N1546 +degenerates,N,N1547 +degradation,N,N1548 +degrade,N,N1549 +degraded,N,N1550 +degrading,N,N1551 +degradingly,N,N1552 +degrades,N,N1553 +dehumanization,N,N1554 +dehumanize,N,N1555 +dehumanizes,N,N1556 +dehumanizing,N,N1557 +dehumanized,N,N1558 +deign,N,N1559 +deigns,N,N1560 +deigning,N,N1561 +deigned,N,N1562 +deject,N,N1563 +dejected,N,N1564 +dejectedly,N,N1565 +dejection,N,N1566 +dejects,N,N1567 +dejecting,N,N1568 +delay,N,N1569 +delayed,N,N1570 +delaying,N,N1571 +delays,N,N1572 +deligitimize,N,N1573 +deligitimizes,N,N1574 +deligitimizing,N,N1575 +deligitimized,N,N1576 +delinquency,N,N1577 +delinquent,N,N1578 +delinquents,N,N1579 +delirious,N,N1580 +delirium,N,N1581 +deliriously,N,N1582 +delude,N,N1583 +deluded,N,N1584 +deludes,N,N1585 +deluding,N,N1586 +delusion,N,N1587 +delusional,N,N1588 +delusions,N,N1589 +demagogue,N,N1590 +demagogues,N,N1591 +demand,N,N1592 +demands,N,N1593 +demanding,N,N1594 +demanded,N,N1595 +demean,N,N1596 +demeaning,N,N1597 +demeans,N,N1598 +demeaned,N,N1599 +demented,N,N1600 +demise,N,N1601 +demolish,N,N1602 +demolisher,N,N1603 +demolishers,N,N1604 +demolishes,N,N1605 +demolishing,N,N1606 +demolished,N,N1607 +demon,N,N1608 +demonic,N,N1609 +demonize,N,N1610 +demonized,N,N1611 +demonizes,N,N1612 +demonizing,N,N1613 +demoralize,N,N1614 +demoralizing,N,N1615 +demoralizingly,N,N1616 +demoralizes,N,N1617 +demoralized,N,N1618 +denial,N,N1619 +denied,N,N1620 +denies,N,N1621 +denigrate,N,N1622 +denigrates,N,N1623 +denigrated,N,N1624 +denigrating,N,N1625 +denounce,N,N1626 +denounces,N,N1627 +denouncing,N,N1628 +denounced,N,N1629 +dense,N,N1630 +denser,N,N1631 +densest,N,N1632 +densely,N,N1633 +dent,N,N1634 +dented,N,N1635 +dents,N,N1636 +denting,N,N1637 +denunciate,N,N1638 +denunciation,N,N1639 +denunciations,N,N1640 +denunciates,N,N1641 +denunciating,N,N1642 +denunciated,N,N1643 +deny,N,N1644 +denying,N,N1645 +deplete,N,N1646 +depletes,N,N1647 +depleting,N,N1648 +depleted,N,N1649 +deplorable,N,N1650 +deplorably,N,N1651 +deplore,N,N1652 +deploring,N,N1653 +deploringly,N,N1654 +deplores,N,N1655 +deplored,N,N1656 +deprave,N,N1657 +depraved,N,N1658 +depravedly,N,N1659 +depraves,N,N1660 +depraving,N,N1661 +deprecate,N,N1662 +deprecates,N,N1663 +deprecating,N,N1664 +deprecated,N,N1665 +depress,N,N1666 +depressed,N,N1667 +depressing,N,N1668 +depressingly,N,N1669 +depression,N,N1670 +depressions,N,N1671 +depresses,N,N1672 +deprive,N,N1673 +deprived,N,N1674 +deprives,N,N1675 +depriving,N,N1676 +deranged,N,N1677 +deride,N,N1678 +derision,N,N1679 +derisive,N,N1680 +derisively,N,N1681 +derisiveness,N,N1682 +derides,N,N1683 +deriding,N,N1684 +derided,N,N1685 +derogatory,N,N1686 +derogatorily,N,N1687 +desecrate,N,N1688 +desecrates,N,N1689 +desecrating,N,N1690 +desecrated,N,N1691 +desert,N,N1692 +desertion,N,N1693 +deserts,N,N1694 +deserting,N,N1695 +deserted,N,N1696 +desiccate,N,N1697 +desiccated,N,N1698 +desiccates,N,N1699 +desiccating,N,N1700 +desolate,N,N1701 +desolately,N,N1702 +desolation,N,N1703 +despair,N,N1704 +despairing,N,N1705 +despairingly,N,N1706 +despairs,N,N1707 +despaired,N,N1708 +desperate,N,N1709 +desperately,N,N1710 +desperation,N,N1711 +despicable,N,N1712 +despicably,N,N1713 +despise,N,N1714 +despised,N,N1715 +despises,N,N1716 +despising,N,N1717 +despoil,N,N1718 +despoiler,N,N1719 +despoils,N,N1720 +despoiling,N,N1721 +despoiled,N,N1722 +despondence,N,N1723 +despondency,N,N1724 +despondent,N,N1725 +despondently,N,N1726 +despot,N,N1727 +despotic,N,N1728 +despotism,N,N1729 +despotically,N,N1730 +destabilization,N,N1731 +destitute,N,N1732 +destitution,N,N1733 +destitutely,N,N1734 +destroy,N,N1735 +destroyed,N,N1736 +destroyer,N,N1737 +destroying,N,N1738 +destruction,N,N1739 +destructive,N,N1740 +destroys,N,N1741 +desultory,N,N1742 +desultorily,N,N1743 +deter,N,N1744 +deters,N,N1745 +detering,N,N1746 +detered,N,N1747 +deteriorate,N,N1748 +deteriorating,N,N1749 +deterioration,N,N1750 +deteriorates,N,N1751 +deteriorated,N,N1752 +deterrent,N,N1753 +deterrents,N,N1754 +detest,N,N1755 +detestable,N,N1756 +detestably,N,N1757 +detested,N,N1758 +detesting,N,N1759 +detests,N,N1760 +detract,N,N1761 +detracted,N,N1762 +detracting,N,N1763 +detraction,N,N1764 +detracts,N,N1765 +detriment,N,N1766 +detrimental,N,N1767 +detrimentally,N,N1768 +devastate,N,N1769 +devastated,N,N1770 +devastates,N,N1771 +devastating,N,N1772 +devastatingly,N,N1773 +devastation,N,N1774 +deviant,N,N1775 +deviate,N,N1776 +deviation,N,N1777 +deviants,N,N1778 +deviates,N,N1779 +deviating,N,N1780 +deviated,N,N1781 +devil,N,N1782 +devilish,N,N1783 +devilishly,N,N1784 +devilment,N,N1785 +devilry,N,N1786 +devious,N,N1787 +deviously,N,N1788 +deviousness,N,N1789 +devoid,N,N1790 +devour,N,N1791 +devoured,N,N1792 +devours,N,N1793 +devouring,N,N1794 +diabolic,N,N1795 +diabolical,N,N1796 +diabolically,N,N1797 +diametrically,N,N1798 +diatribe,N,N1799 +diatribes,N,N1800 +dick,N,N1801 +dicks,N,N1802 +dictator,N,N1803 +dictatorial,N,N1804 +dictators,N,N1805 +dictatorially,N,N1806 +did_nothing,N,N1807 +die,N,N1808 +die-hard,N,N1809 +died,N,N1810 +dies,N,N1811 +difficult,N,N1812 +difficulties,N,N1813 +difficulty,N,N1814 +difficultly,N,N1815 +diffidence,N,N1816 +dilapidated,N,N1817 +dilemma,N,N1818 +dilemmas,N,N1819 +dillydally,N,N1820 +dillydallies,N,N1821 +dillydallying,N,N1822 +dillydallied,N,N1823 +dim,N,N1824 +dimmer,N,N1825 +dimmest,N,N1826 +dimly,N,N1827 +din,N,N1828 +ding,N,N1829 +dings,N,N1830 +dinging,N,N1831 +dinged,N,N1832 +dinky,N,N1833 +dinkier,N,N1834 +dinkiest,N,N1835 +dire,N,N1836 +direly,N,N1837 +direness,N,N1838 +dirt,N,N1839 +dirt_bag,N,N1840 +dirt_bags,N,N1841 +dirts,N,N1842 +dirty,N,N1843 +dirtily,N,N1844 +disable,N,N1845 +disabled,N,N1846 +disables,N,N1847 +disabling,N,N1848 +disaccord,N,N1849 +disaccords,N,N1850 +disaccording,N,N1851 +disaccorded,N,N1852 +disadvantage,N,N1853 +disadvantaged,N,N1854 +disadvantageous,N,N1855 +disadvantages,N,N1856 +disaffect,N,N1857 +disaffected,N,N1858 +disaffects,N,N1859 +disaffecting,N,N1860 +disaffirm,N,N1861 +disaffirms,N,N1862 +disaffirming,N,N1863 +disaffirmed,N,N1864 +disagree,N,N1865 +disagreeable,N,N1866 +disagreeably,N,N1867 +disagreed,N,N1868 +disagreeing,N,N1869 +disagreement,N,N1870 +disagreements,N,N1871 +disagrees,N,N1872 +disallow,N,N1873 +disallows,N,N1874 +disallowing,N,N1875 +disallowed,N,N1876 +disappear,N,N1877 +disappears,N,N1878 +disappearing,N,N1879 +disappeared,N,N1880 +disappoint,N,N1881 +disappointed,N,N1882 +disappointedly,N,N1883 +disappointing,N,N1884 +disappointingly,N,N1885 +disappointment,N,N1886 +disappointments,N,N1887 +disappoints,N,N1888 +disapprobation,N,N1889 +disapproval,N,N1890 +disapprove,N,N1891 +disapproving,N,N1892 +disapproves,N,N1893 +disapproved,N,N1894 +disarm,N,N1895 +disarms,N,N1896 +disarming,N,N1897 +disarmed,N,N1898 +disarray,N,N1899 +disaster,N,N1900 +disastrous,N,N1901 +disastrously,N,N1902 +disasters,N,N1903 +disavow,N,N1904 +disavowal,N,N1905 +disavows,N,N1906 +disavowing,N,N1907 +disavowed,N,N1908 +disbelief,N,N1909 +disbelieve,N,N1910 +disbeliever,N,N1911 +disbelievers,N,N1912 +disbelieves,N,N1913 +disbelieving,N,N1914 +disbelieved,N,N1915 +disclaim,N,N1916 +disclaims,N,N1917 +disclaiming,N,N1918 +disclaimed,N,N1919 +discombobulate,N,N1920 +discombobulates,N,N1921 +discombobulating,N,N1922 +discombobulated,N,N1923 +discomfit,N,N1924 +discomfititure,N,N1925 +discomfits,N,N1926 +discomfitting,N,N1927 +discomfitted,N,N1928 +discomfort,N,N1929 +discompose,N,N1930 +discomposes,N,N1931 +discomposing,N,N1932 +discomposed,N,N1933 +disconcert,N,N1934 +disconcerted,N,N1935 +disconcerting,N,N1936 +disconcertingly,N,N1937 +disconnect,N,N1938 +disconnected,N,N1939 +disconnects,N,N1940 +disconnecting,N,N1941 +disconsolate,N,N1942 +disconsolately,N,N1943 +disconsolation,N,N1944 +discontent,N,N1945 +discontented,N,N1946 +discontentedly,N,N1947 +discontinued,N,N1948 +discontinuity,N,N1949 +discontinuous,N,N1950 +discontinue,N,N1951 +discontinuing,N,N1952 +discontinues,N,N1953 +discord,N,N1954 +discordance,N,N1955 +discordant,N,N1956 +discordantly,N,N1957 +discountenance,N,N1958 +discourage,N,N1959 +discouragement,N,N1960 +discouraging,N,N1961 +discouragingly,N,N1962 +discourages,N,N1963 +discouraged,N,N1964 +discourteous,N,N1965 +discourteously,N,N1966 +discredit,N,N1967 +discredits,N,N1968 +discrediting,N,N1969 +discredited,N,N1970 +discrepant,N,N1971 +discrepantly,N,N1972 +discriminate,N,N1973 +discrimination,N,N1974 +discriminatory,N,N1975 +discriminates,N,N1976 +discriminating,N,N1977 +discriminated,N,N1978 +disdain,N,N1979 +disdained,N,N1980 +disdainful,N,N1981 +disdainfully,N,N1982 +disfavor,N,N1983 +disgrace,N,N1984 +disgraced,N,N1985 +disgraceful,N,N1986 +disgracefully,N,N1987 +disgraces,N,N1988 +disgracing,N,N1989 +disgruntle,N,N1990 +disgruntled,N,N1991 +disgruntles,N,N1992 +disgruntling,N,N1993 +disgust,N,N1994 +disgusted,N,N1995 +disgustedly,N,N1996 +disgustful,N,N1997 +disgustfully,N,N1998 +disgusting,N,N1999 +disgustingly,N,N2000 +disgusts,N,N2001 +dishearten,N,N2002 +disheartening,N,N2003 +dishearteningly,N,N2004 +disheartens,N,N2005 +disheartened,N,N2006 +dishonest,N,N2007 +dishonestly,N,N2008 +dishonesty,N,N2009 +dishonor,N,N2010 +dishonorable,N,N2011 +dishonorably,N,N2012 +disillusion,N,N2013 +disillusioned,N,N2014 +disillusionment,N,N2015 +disillusions,N,N2016 +disinclination,N,N2017 +disinclined,N,N2018 +disincline,N,N2019 +disinclines,N,N2020 +disinclining,N,N2021 +disingenuous,N,N2022 +disingenuously,N,N2023 +disintegrate,N,N2024 +disintegrated,N,N2025 +disintegrates,N,N2026 +disintegration,N,N2027 +disintegrating,N,N2028 +disinterest,N,N2029 +disinterested,N,N2030 +dislike,N,N2031 +disliked,N,N2032 +dislikes,N,N2033 +disliking,N,N2034 +dislocated,N,N2035 +dislocate,N,N2036 +dislocates,N,N2037 +dislocating,N,N2038 +disloyal,N,N2039 +disloyalty,N,N2040 +dismal,N,N2041 +dismally,N,N2042 +dismalness,N,N2043 +dismay,N,N2044 +dismayed,N,N2045 +dismaying,N,N2046 +dismayingly,N,N2047 +dismissive,N,N2048 +dismissively,N,N2049 +disobedience,N,N2050 +disobedient,N,N2051 +disobey,N,N2052 +disobeys,N,N2053 +disobeying,N,N2054 +disobeyed,N,N2055 +disobediently,N,N2056 +disorder,N,N2057 +disordered,N,N2058 +disorderly,N,N2059 +disorganized,N,N2060 +disorient,N,N2061 +disoriented,N,N2062 +disorients,N,N2063 +disorienting,N,N2064 +disown,N,N2065 +disowns,N,N2066 +disowning,N,N2067 +disowned,N,N2068 +disparage,N,N2069 +disparaging,N,N2070 +disparagingly,N,N2071 +disparages,N,N2072 +disparaged,N,N2073 +dispensable,N,N2074 +dispirit,N,N2075 +dispirited,N,N2076 +dispiritedly,N,N2077 +dispiriting,N,N2078 +dispirits,N,N2079 +displace,N,N2080 +displaced,N,N2081 +displaces,N,N2082 +displacing,N,N2083 +displease,N,N2084 +displeased,N,N2085 +displeasing,N,N2086 +displeasure,N,N2087 +displeases,N,N2088 +disproportionate,N,N2089 +disproportionately,N,N2090 +disprove,N,N2091 +disproves,N,N2092 +disproving,N,N2093 +disproved,N,N2094 +disputable,N,N2095 +disputably,N,N2096 +dispute,N,N2097 +disputed,N,N2098 +disputes,N,N2099 +disputing,N,N2100 +disquiet,N,N2101 +disquieting,N,N2102 +disquietingly,N,N2103 +disquietude,N,N2104 +disquiets,N,N2105 +disquieted,N,N2106 +disregard,N,N2107 +disregardful,N,N2108 +disregardfully,N,N2109 +disreputable,N,N2110 +disrepute,N,N2111 +disreputably,N,N2112 +disrespect,N,N2113 +disrespectable,N,N2114 +disrespectability,N,N2115 +disrespectful,N,N2116 +disrespectfully,N,N2117 +disrespectfulness,N,N2118 +disrespecting,N,N2119 +disrupt,N,N2120 +disruption,N,N2121 +disruptive,N,N2122 +disrupts,N,N2123 +disrupting,N,N2124 +disrupted,N,N2125 +disruptions,N,N2126 +disruptively,N,N2127 +diss,N,N2128 +disses,N,N2129 +dissing,N,N2130 +dissed,N,N2131 +dissatisfaction,N,N2132 +dissatisfactory,N,N2133 +dissatisfied,N,N2134 +dissatisfies,N,N2135 +dissatisfy,N,N2136 +dissatisfying,N,N2137 +dissemble,N,N2138 +dissembler,N,N2139 +dissembles,N,N2140 +dissembling,N,N2141 +dissembled,N,N2142 +dissemblers,N,N2143 +dissension,N,N2144 +dissent,N,N2145 +dissenter,N,N2146 +dissention,N,N2147 +dissents,N,N2148 +dissenting,N,N2149 +dissented,N,N2150 +disservice,N,N2151 +dissidence,N,N2152 +dissident,N,N2153 +dissidents,N,N2154 +dissocial,N,N2155 +dissolute,N,N2156 +dissolution,N,N2157 +dissolutely,N,N2158 +dissonance,N,N2159 +dissonant,N,N2160 +dissonantly,N,N2161 +dissuade,N,N2162 +dissuasive,N,N2163 +dissuades,N,N2164 +dissuading,N,N2165 +dissuaded,N,N2166 +dissuasively,N,N2167 +distaste,N,N2168 +distasteful,N,N2169 +distastefully,N,N2170 +distort,N,N2171 +distorted,N,N2172 +distortion,N,N2173 +distorts,N,N2174 +distorting,N,N2175 +distract,N,N2176 +distracting,N,N2177 +distraction,N,N2178 +distracts,N,N2179 +distracted,N,N2180 +distractions,N,N2181 +distraught,N,N2182 +distraughtly,N,N2183 +distraughtness,N,N2184 +distress,N,N2185 +distressed,N,N2186 +distressing,N,N2187 +distressingly,N,N2188 +distresses,N,N2189 +distrust,N,N2190 +distrustful,N,N2191 +distrusting,N,N2192 +distrusts,N,N2193 +distrusted,N,N2194 +disturb,N,N2195 +disturbance,N,N2196 +disturbed,N,N2197 +disturbing,N,N2198 +disturbingly,N,N2199 +disturbs,N,N2200 +disturbances,N,N2201 +disunity,N,N2202 +disvalue,N,N2203 +divergent,N,N2204 +divergently,N,N2205 +divide,N,N2206 +dividing,N,N2207 +division,N,N2208 +divisive,N,N2209 +divisively,N,N2210 +divisiveness,N,N2211 +divides,N,N2212 +divided,N,N2213 +divisions,N,N2214 +dizzy,N,N2215 +dizzier,N,N2216 +dizziest,N,N2217 +dizzily,N,N2218 +do_pr_for,N,N2219 +do_whatever_they_want,N,N2220 +doddering,N,N2221 +dodder,N,N2222 +dodders,N,N2223 +doddered,N,N2224 +doesn't_care,N,N2225 +doesn't_believe,N,N2226 +dog,N,N2227 +dogs,N,N2228 +dogged,N,N2229 +doggedly,N,N2230 +dogmatic,N,N2231 +dogmatically,N,N2232 +doldrums,N,N2233 +domineer,N,N2234 +domineering,N,N2235 +domineers,N,N2236 +domineered,N,N2237 +don't_give,N,N2238 +don't_give_a_hoot,N,N2239 +don't_respect,N,N2240 +don't_support,N,N2241 +don't_trust,N,N2242 +don't_want,N,N2243 +don't_believe,N,N2244 +don't_understand,N,N2245 +doom,N,N2246 +doomed,N,N2247 +doomsday,N,N2248 +dooms,N,N2249 +dooming,N,N2250 +dope,N,N2251 +doubt,N,N2252 +doubtful,N,N2253 +doubtfully,N,N2254 +doubts,N,N2255 +doubting,N,N2256 +doubted,N,N2257 +douchebag,N,N2258 +douchebags,N,N2259 +downbeat,N,N2260 +downcast,N,N2261 +downcastly,N,N2262 +downer,N,N2263 +downfall,N,N2264 +downfallen,N,N2265 +downgrade,N,N2266 +downgrades,N,N2267 +downgrading,N,N2268 +downgraded,N,N2269 +downhearted,N,N2270 +downheartedly,N,N2271 +downhill,N,N2272 +downside,N,N2273 +downsides,N,N2274 +downturn,N,N2275 +downturns,N,N2276 +drab,N,N2277 +drabber,N,N2278 +drabbest,N,N2279 +drably,N,N2280 +draconian,N,N2281 +draconic,N,N2282 +draconically,N,N2283 +drag,N,N2284 +dragged,N,N2285 +dragging,N,N2286 +drags,N,N2287 +dragoon,N,N2288 +drain,N,N2289 +drained,N,N2290 +draining,N,N2291 +drains,N,N2292 +drastic,N,N2293 +drastically,N,N2294 +drawback,N,N2295 +drawbacks,N,N2296 +dread,N,N2297 +dreadful,N,N2298 +dreadfully,N,N2299 +dreadfulness,N,N2300 +dreads,N,N2301 +dreading,N,N2302 +dreaded,N,N2303 +dreary,N,N2304 +drearier,N,N2305 +dreariest,N,N2306 +drearily,N,N2307 +drive-by,N,N2308 +drones,N,N2309 +drone,N,N2310 +droning,N,N2311 +droned,N,N2312 +droop,N,N2313 +droops,N,N2314 +drooping,N,N2315 +drooped,N,N2316 +dropout,N,N2317 +dropouts,N,N2318 +dropping_babies,N,N2319 +drought,N,N2320 +droughts,N,N2321 +drowning,N,N2322 +drown,N,N2323 +drowns,N,N2324 +drowned,N,N2325 +drug_addiction,N,N2326 +drunk,N,N2327 +drunkard,N,N2328 +drunkards,N,N2329 +drunken,N,N2330 +drunkenly,N,N2331 +dubious,N,N2332 +dubiously,N,N2333 +dubitable,N,N2334 +dubitably,N,N2335 +dud,N,N2336 +duds,N,N2337 +dull,N,N2338 +duller,N,N2339 +dullest,N,N2340 +dully,N,N2341 +dullard,N,N2342 +dullards,N,N2343 +dumb,N,N2344 +dumbest,N,N2345 +dumber,N,N2346 +dumbly,N,N2347 +dumbfound,N,N2348 +dumbfounds,N,N2349 +dumbfounding,N,N2350 +dumbfounded,N,N2351 +dump,N,N2352 +dumped,N,N2353 +dumping,N,N2354 +dumps,N,N2355 +dunce,N,N2356 +dunces,N,N2357 +dungeon,N,N2358 +dungeons,N,N2359 +dupe,N,N2360 +dupes,N,N2361 +duping,N,N2362 +duped,N,N2363 +dust,N,N2364 +dusty,N,N2365 +dustier,N,N2366 +dustiest,N,N2367 +dwindling,N,N2368 +dwindle,N,N2369 +dwindles,N,N2370 +dwindled,N,N2371 +dying,N,N2372 +earsplitting,N,N2373 +eating_out_of_their_hands,N,N2374 +eccentric,N,N2375 +eccentricity,N,N2376 +eccentrically,N,N2377 +effigy,N,N2378 +effigies,N,N2379 +effrontery,N,N2380 +effronteries,N,N2381 +eggheads,N,N2382 +egghead,N,N2383 +egocentric,N,N2384 +egomania,N,N2385 +egotism,N,N2386 +egotistical,N,N2387 +egotistically,N,N2388 +egregious,N,N2389 +egregiously,N,N2390 +election-rigger,N,N2391 +eliminate,N,N2392 +eliminated,N,N2393 +elimination,N,N2394 +eliminating,N,N2395 +eliminates,N,N2396 +elites,N,N2397 +elite,N,N2398 +emaciated,N,N2399 +emasculate,N,N2400 +emasculates,N,N2401 +emasculating,N,N2402 +emasculated,N,N2403 +embarrass,N,N2404 +embarrassing,N,N2405 +embarrassingly,N,N2406 +embarrassment,N,N2407 +embarrassments,N,N2408 +embarrasses,N,N2409 +embarrassed,N,N2410 +embattled,N,N2411 +embroil,N,N2412 +embroiled,N,N2413 +embroilment,N,N2414 +embroils,N,N2415 +embroiling,N,N2416 +emptiness,N,N2417 +enablers,N,N2418 +enabler,N,N2419 +encroach,N,N2420 +encroachment,N,N2421 +encroaches,N,N2422 +encroaching,N,N2423 +encroached,N,N2424 +endanger,N,N2425 +endangers,N,N2426 +endangering,N,N2427 +endangered,N,N2428 +enemies,N,N2429 +enemy,N,N2430 +enervate,N,N2431 +enervates,N,N2432 +enervating,N,N2433 +enervated,N,N2434 +enfeeble,N,N2435 +enfeebles,N,N2436 +enfeebling,N,N2437 +enfeebled,N,N2438 +enflame,N,N2439 +enflamed,N,N2440 +enflames,N,N2441 +enflaming,N,N2442 +engulf,N,N2443 +engulfs,N,N2444 +engulfing,N,N2445 +engulfed,N,N2446 +enmity,N,N2447 +enrage,N,N2448 +enraged,N,N2449 +enraging,N,N2450 +enrages,N,N2451 +enslave,N,N2452 +enslaving,N,N2453 +enslaved,N,N2454 +enslaves,N,N2455 +entangle,N,N2456 +entanglement,N,N2457 +entangles,N,N2458 +entangling,N,N2459 +entangled,N,N2460 +entrap,N,N2461 +entrapment,N,N2462 +entraps,N,N2463 +entrapping,N,N2464 +entrapped,N,N2465 +envious,N,N2466 +enviously,N,N2467 +enviousness,N,N2468 +epidemic,N,N2469 +epidemics,N,N2470 +equivocal,N,N2471 +equivocally,N,N2472 +erase,N,N2473 +erases,N,N2474 +erasing,N,N2475 +erased,N,N2476 +erode,N,N2477 +erodes,N,N2478 +erosion,N,N2479 +eroding,N,N2480 +eroded,N,N2481 +err,N,N2482 +errant,N,N2483 +errs,N,N2484 +erring,N,N2485 +erred,N,N2486 +errantly,N,N2487 +erratic,N,N2488 +erratically,N,N2489 +erroneous,N,N2490 +erroneously,N,N2491 +error,N,N2492 +errors,N,N2493 +eruptions,N,N2494 +eruption,N,N2495 +escapade,N,N2496 +escapades,N,N2497 +eschew,N,N2498 +eschews,N,N2499 +eschewing,N,N2500 +eschewed,N,N2501 +estranged,N,N2502 +evade,N,N2503 +evasion,N,N2504 +evasive,N,N2505 +evades,N,N2506 +evading,N,N2507 +evaded,N,N2508 +evasions,N,N2509 +evasively,N,N2510 +evil,N,N2511 +evildoer,N,N2512 +evils,N,N2513 +evilly,N,N2514 +eviscerate,N,N2515 +eviscerates,N,N2516 +eviscerating,N,N2517 +eviscerated,N,N2518 +exacerbate,N,N2519 +exacerbates,N,N2520 +exacerbating,N,N2521 +exacerbated,N,N2522 +exaggerate,N,N2523 +exaggeration,N,N2524 +exaggerates,N,N2525 +exaggerating,N,N2526 +exaggerated,N,N2527 +exasperate,N,N2528 +exasperated,N,N2529 +exasperating,N,N2530 +exasperatingly,N,N2531 +exasperation,N,N2532 +exasperates,N,N2533 +excessive,N,N2534 +excessively,N,N2535 +excluded,N,N2536 +exclusion,N,N2537 +exclude,N,N2538 +excludes,N,N2539 +excluding,N,N2540 +excoriate,N,N2541 +excoriates,N,N2542 +excoriated,N,N2543 +excoriating,N,N2544 +excruciating,N,N2545 +excruciatingly,N,N2546 +excuse,N,N2547 +excuses,N,N2548 +execrate,N,N2549 +execrates,N,N2550 +execrating,N,N2551 +execrated,N,N2552 +exhaust,N,N2553 +exhausted,N,N2554 +exhaustion,N,N2555 +exhausts,N,N2556 +exhausting,N,N2557 +exhort,N,N2558 +exhorts,N,N2559 +exhorting,N,N2560 +exhorted,N,N2561 +exile,N,N2562 +exiles,N,N2563 +exiling,N,N2564 +exiled,N,N2565 +exorbitant,N,N2566 +exorbitantance,N,N2567 +exorbitantly,N,N2568 +expel,N,N2569 +expels,N,N2570 +expelling,N,N2571 +expelled,N,N2572 +expensive,N,N2573 +expensively,N,N2574 +expire,N,N2575 +expired,N,N2576 +expires,N,N2577 +expiring,N,N2578 +explode,N,N2579 +explodes,N,N2580 +exploding,N,N2581 +exploded,N,N2582 +exploit,N,N2583 +exploitation,N,N2584 +exploits,N,N2585 +exploiting,N,N2586 +exploited,N,N2587 +explosive,N,N2588 +explosively,N,N2589 +expropriate,N,N2590 +expropriates,N,N2591 +expropriating,N,N2592 +expropriated,N,N2593 +expropriation,N,N2594 +expropriations,N,N2595 +expulse,N,N2596 +expulses,N,N2597 +expulsing,N,N2598 +expulsed,N,N2599 +expunge,N,N2600 +expunges,N,N2601 +expunging,N,N2602 +expunged,N,N2603 +exterminate,N,N2604 +extermination,N,N2605 +exterminates,N,N2606 +exterminating,N,N2607 +exterminated,N,N2608 +extinguish,N,N2609 +extinguishes,N,N2610 +extinguishing,N,N2611 +extinguished,N,N2612 +extort,N,N2613 +extortion,N,N2614 +extorts,N,N2615 +extorting,N,N2616 +extorted,N,N2617 +extraneous,N,N2618 +extraneously,N,N2619 +extravagance,N,N2620 +extravagant,N,N2621 +extravagantly,N,N2622 +extremism,N,N2623 +extremist,N,N2624 +extremists,N,N2625 +eyesore,N,N2626 +fabricate,N,N2627 +fabrication,N,N2628 +fabricates,N,N2629 +fabricating,N,N2630 +fabricated,N,N2631 +fabrications,N,N2632 +facetious,N,N2633 +facetiously,N,N2634 +fail,N,N2635 +failed,N,N2636 +failing,N,N2637 +fails,N,N2638 +failure,N,N2639 +failures,N,N2640 +fainthearted,N,N2641 +faithless,N,N2642 +faithlessly,N,N2643 +fake,N,N2644 +fall,N,N2645 +fallacies,N,N2646 +fallacious,N,N2647 +fallaciously,N,N2648 +fallaciousness,N,N2649 +fallacy,N,N2650 +fallen,N,N2651 +falling,N,N2652 +fallout,N,N2653 +falls,N,N2654 +false_narrative,N,N2655 +falsehood,N,N2656 +falsehoods,N,N2657 +falsely,N,N2658 +falsify,N,N2659 +falsifies,N,N2660 +falsifying,N,N2661 +falsified,N,N2662 +falter,N,N2663 +faltered,N,N2664 +falters,N,N2665 +faltering,N,N2666 +famine,N,N2667 +famines,N,N2668 +famished,N,N2669 +fanatic,N,N2670 +fanatical,N,N2671 +fanatically,N,N2672 +fanaticism,N,N2673 +fanatics,N,N2674 +fanciful,N,N2675 +fancifully,N,N2676 +far-fetched,N,N2677 +farce,N,N2678 +farcical,N,N2679 +farcical-yet-provocative,N,N2680 +farcically,N,N2681 +fascism,N,N2682 +fascist,N,N2683 +fastidious,N,N2684 +fastidiously,N,N2685 +fastuous,N,N2686 +fastuously,N,N2687 +fat,N,N2688 +fatter,N,N2689 +fattest,N,N2690 +fat_cat,N,N2691 +fat_cats,N,N2692 +fatal,N,N2693 +fatalistic,N,N2694 +fatalistically,N,N2695 +fatally,N,N2696 +fateful,N,N2697 +fatefully,N,N2698 +fathomless,N,N2699 +fatigue,N,N2700 +fatigued,N,N2701 +fatty,N,N2702 +fatuity,N,N2703 +fatuous,N,N2704 +fatuously,N,N2705 +fault,N,N2706 +faults,N,N2707 +faulty,N,N2708 +fawning,N,N2709 +fawningly,N,N2710 +faze,N,N2711 +fazes,N,N2712 +fazing,N,N2713 +fazed,N,N2714 +fear,N,N2715 +fearful,N,N2716 +fearfully,N,N2717 +fears,N,N2718 +fearing,N,N2719 +feared,N,N2720 +fearsome,N,N2721 +fearsomely,N,N2722 +feckless,N,N2723 +fecklessly,N,N2724 +feeble,N,N2725 +feebly,N,N2726 +feebler,N,N2727 +feeblest,N,N2728 +feebleminded,N,N2729 +feeblemindedly,N,N2730 +feeding,N,N2731 +feed,N,N2732 +feeds,N,N2733 +fed,N,N2734 +feign,N,N2735 +feigned,N,N2736 +feigning,N,N2737 +feint,N,N2738 +feints,N,N2739 +feigns,N,N2740 +fell,N,N2741 +felon,N,N2742 +felonious,N,N2743 +felons,N,N2744 +feloniously,N,N2745 +ferociously,N,N2746 +ferocity,N,N2747 +ferocious,N,N2748 +fetid,N,N2749 +fetidly,N,N2750 +fever,N,N2751 +feverish,N,N2752 +fevers,N,N2753 +feverishly,N,N2754 +fiasco,N,N2755 +fiascos,N,N2756 +fib,N,N2757 +fibber,N,N2758 +fibs,N,N2759 +fibbers,N,N2760 +fickle,N,N2761 +fiction,N,N2762 +fictional,N,N2763 +fictionally,N,N2764 +fictitious,N,N2765 +fictitiously,N,N2766 +fidget,N,N2767 +fidgety,N,N2768 +fidgets,N,N2769 +fidgeting,N,N2770 +fidgeted,N,N2771 +fiend,N,N2772 +fiendish,N,N2773 +fiends,N,N2774 +fiendishly,N,N2775 +fierce,N,N2776 +fiercely,N,N2777 +fight,N,N2778 +fighter,N,N2779 +fighting,N,N2780 +fights,N,N2781 +fighters,N,N2782 +filth,N,N2783 +filthy,N,N2784 +filthier,N,N2785 +filthiest,N,N2786 +filthily,N,N2787 +finagle,N,N2788 +finagles,N,N2789 +finagling,N,N2790 +finagled,N,N2791 +finicky,N,N2792 +fissures,N,N2793 +fissure,N,N2794 +fist,N,N2795 +flabbergast,N,N2796 +flabbergasted,N,N2797 +flabbergasts,N,N2798 +flabbergasting,N,N2799 +flagging,N,N2800 +flagrant,N,N2801 +flagrantly,N,N2802 +flak,N,N2803 +flake,N,N2804 +flakiness,N,N2805 +flaking,N,N2806 +flaky,N,N2807 +flakier,N,N2808 +flakiest,N,N2809 +flakily,N,N2810 +flakes,N,N2811 +flaked,N,N2812 +flare,N,N2813 +flares,N,N2814 +flareup,N,N2815 +flareups,N,N2816 +flaunt,N,N2817 +flaunts,N,N2818 +flaunting,N,N2819 +flaunted,N,N2820 +flaw,N,N2821 +flawed,N,N2822 +flaws,N,N2823 +flee,N,N2824 +fleeing,N,N2825 +fleer,N,N2826 +fleers,N,N2827 +flees,N,N2828 +fled,N,N2829 +fleeting,N,N2830 +flicker,N,N2831 +flickering,N,N2832 +flickers,N,N2833 +flickered,N,N2834 +flies,N,N2835 +flighty,N,N2836 +flightier,N,N2837 +flightiest,N,N2838 +flimflam,N,N2839 +flimsy,N,N2840 +flimsier,N,N2841 +flimsiest,N,N2842 +flirt,N,N2843 +flirty,N,N2844 +flirts,N,N2845 +flirting,N,N2846 +flirted,N,N2847 +flood,N,N2848 +floored,N,N2849 +flounder,N,N2850 +floundering,N,N2851 +flounders,N,N2852 +floundered,N,N2853 +flout,N,N2854 +flouts,N,N2855 +flouting,N,N2856 +flouted,N,N2857 +fluster,N,N2858 +flusters,N,N2859 +flustering,N,N2860 +flustered,N,N2861 +foe,N,N2862 +foes,N,N2863 +fool,N,N2864 +fooled,N,N2865 +foolhardy,N,N2866 +foolish,N,N2867 +foolishly,N,N2868 +foolishness,N,N2869 +fools,N,N2870 +fooling,N,N2871 +forbid,N,N2872 +forbidden,N,N2873 +forbidding,N,N2874 +forbids,N,N2875 +forbade,N,N2876 +force,N,N2877 +forced,N,N2878 +forceful,N,N2879 +forcing,N,N2880 +forces,N,N2881 +forcefully,N,N2882 +foreboding,N,N2883 +forebodingly,N,N2884 +foreign_language,N,N2885 +forfeit,N,N2886 +forfeits,N,N2887 +forfeiting,N,N2888 +forfeited,N,N2889 +forged,N,N2890 +forgetful,N,N2891 +forgetfully,N,N2892 +forgetfulness,N,N2893 +forlorn,N,N2894 +forlornly,N,N2895 +forsake,N,N2896 +forsaken,N,N2897 +forswear,N,N2898 +forswears,N,N2899 +forswore,N,N2900 +forsworn,N,N2901 +forswearing,N,N2902 +fought,N,N2903 +foul,N,N2904 +foully,N,N2905 +foulness,N,N2906 +fractious,N,N2907 +fractiously,N,N2908 +fracture,N,N2909 +fractures,N,N2910 +fragile,N,N2911 +fragmented,N,N2912 +frail,N,N2913 +frantic,N,N2914 +frantically,N,N2915 +fraud,N,N2916 +fraudulent,N,N2917 +fraudulently,N,N2918 +fraught,N,N2919 +frazzle,N,N2920 +frazzled,N,N2921 +frazzles,N,N2922 +frazzling,N,N2923 +freak,N,N2924 +freaking,N,N2925 +freakish,N,N2926 +freakishly,N,N2927 +freaks,N,N2928 +freaked,N,N2929 +freeloading,N,N2930 +freeload,N,N2931 +freeloader,N,N2932 +freeloads,N,N2933 +freeloaded,N,N2934 +frenetic,N,N2935 +frenetically,N,N2936 +frenzied,N,N2937 +frenzy,N,N2938 +fret,N,N2939 +fretful,N,N2940 +fretfully,N,N2941 +frets,N,N2942 +fretting,N,N2943 +fretted,N,N2944 +friction,N,N2945 +frictions,N,N2946 +fried,N,N2947 +frigging,N,N2948 +fright,N,N2949 +frighten,N,N2950 +frightening,N,N2951 +frighteningly,N,N2952 +frightful,N,N2953 +frightfully,N,N2954 +frights,N,N2955 +frightened,N,N2956 +frigid,N,N2957 +frigidly,N,N2958 +frown,N,N2959 +frowns,N,N2960 +fruitless,N,N2961 +fruitlessly,N,N2962 +frustrate,N,N2963 +frustrated,N,N2964 +frustrates,N,N2965 +frustrating,N,N2966 +frustratingly,N,N2967 +frustration,N,N2968 +frustrations,N,N2969 +fuck,N,N2970 +fucking,N,N2971 +fucks,N,N2972 +fudge,N,N2973 +fucked,N,N2974 +fugitive,N,N2975 +fugitives,N,N2976 +fulminate,N,N2977 +fulminates,N,N2978 +fulminating,N,N2979 +fulminated,N,N2980 +fumble,N,N2981 +fumbles,N,N2982 +fumbling,N,N2983 +fumbled,N,N2984 +fume,N,N2985 +fumes,N,N2986 +fundamentalism,N,N2987 +funky,N,N2988 +funkier,N,N2989 +funkiest,N,N2990 +funkily,N,N2991 +furious,N,N2992 +furiously,N,N2993 +furor,N,N2994 +fury,N,N2995 +fuss,N,N2996 +fussy,N,N2997 +fussier,N,N2998 +fussiest,N,N2999 +fustigate,N,N3000 +fustigates,N,N3001 +fustigating,N,N3002 +fustigated,N,N3003 +fusty,N,N3004 +fustier,N,N3005 +fustiest,N,N3006 +fustily,N,N3007 +futile,N,N3008 +futilely,N,N3009 +futility,N,N3010 +fuzzy,N,N3011 +fuzzier,N,N3012 +fuzziest,N,N3013 +fuzzily,N,N3014 +gabble,N,N3015 +gabbles,N,N3016 +gabbling,N,N3017 +gabbled,N,N3018 +gaff,N,N3019 +gaffe,N,N3020 +gainsay,N,N3021 +gainsayer,N,N3022 +gall,N,N3023 +galling,N,N3024 +gallingly,N,N3025 +galls,N,N3026 +gang_raped,N,N3027 +gangster,N,N3028 +gangsters,N,N3029 +gape,N,N3030 +gapes,N,N3031 +gaping,N,N3032 +gaped,N,N3033 +garbage,N,N3034 +garish,N,N3035 +garishly,N,N3036 +gasp,N,N3037 +gasps,N,N3038 +gasping,N,N3039 +gasped,N,N3040 +gauche,N,N3041 +gauchely,N,N3042 +gaudy,N,N3043 +gaudier,N,N3044 +gaudiest,N,N3045 +gaudily,N,N3046 +gawk,N,N3047 +gawked,N,N3048 +gawks,N,N3049 +gawking,N,N3050 +gawky,N,N3051 +gawkier,N,N3052 +gawkiest,N,N3053 +gawkily,N,N3054 +geezer,N,N3055 +geezers,N,N3056 +genocide,N,N3057 +gerontocracy,N,N3058 +get-rich,N,N3059 +getting_back,N,N3060 +ghastly,N,N3061 +ghastlier,N,N3062 +ghastliest,N,N3063 +ghetto,N,N3064 +ghettoes,N,N3065 +ghosting,N,N3066 +gibber,N,N3067 +gibbers,N,N3068 +gibbering,N,N3069 +gibbered,N,N3070 +gibberish,N,N3071 +gibe,N,N3072 +gibes,N,N3073 +gibing,N,N3074 +gibed,N,N3075 +giddy,N,N3076 +giddier,N,N3077 +giddiest,N,N3078 +giddily,N,N3079 +gimmick,N,N3080 +gimmicked,N,N3081 +gimmicking,N,N3082 +gimmicks,N,N3083 +gimmicky,N,N3084 +glare,N,N3085 +glaringly,N,N3086 +glares,N,N3087 +glaring,N,N3088 +glared,N,N3089 +glib,N,N3090 +glibly,N,N3091 +glitch,N,N3092 +glitches,N,N3093 +gloatingly,N,N3094 +gloating,N,N3095 +gloom,N,N3096 +gloomy,N,N3097 +glower,N,N3098 +glowers,N,N3099 +glowering,N,N3100 +glowered,N,N3101 +glum,N,N3102 +glumly,N,N3103 +glut,N,N3104 +gluts,N,N3105 +glutting,N,N3106 +glutted,N,N3107 +gnawing,N,N3108 +goad,N,N3109 +goading,N,N3110 +goads,N,N3111 +goaded,N,N3112 +god-awful,N,N3113 +going_by_the_boards,N,N3114 +going_in_circles,N,N3115 +goof,N,N3116 +goofy,N,N3117 +goon,N,N3118 +goons,N,N3119 +gossip,N,N3120 +graceless,N,N3121 +gracelessly,N,N3122 +graft,N,N3123 +grainy,N,N3124 +grainier,N,N3125 +grainiest,N,N3126 +grapple,N,N3127 +grappling,N,N3128 +grapples,N,N3129 +grappled,N,N3130 +grate,N,N3131 +grating,N,N3132 +grates,N,N3133 +grated,N,N3134 +grave,N,N3135 +gravely,N,N3136 +greasy,N,N3137 +greasier,N,N3138 +greasiest,N,N3139 +greasily,N,N3140 +greed,N,N3141 +greedy,N,N3142 +greedier,N,N3143 +greediest,N,N3144 +greedily,N,N3145 +grief,N,N3146 +grievance,N,N3147 +grievances,N,N3148 +grieve,N,N3149 +grieving,N,N3150 +grieves,N,N3151 +grieved,N,N3152 +grievous,N,N3153 +grievously,N,N3154 +grim,N,N3155 +grimly,N,N3156 +grimace,N,N3157 +grimaces,N,N3158 +grimacing,N,N3159 +grimaced,N,N3160 +grind,N,N3161 +gripe,N,N3162 +gripes,N,N3163 +griping,N,N3164 +griped,N,N3165 +grisly,N,N3166 +grislier,N,N3167 +grisliest,N,N3168 +gritty,N,N3169 +grittier,N,N3170 +grittiest,N,N3171 +grittily,N,N3172 +gross,N,N3173 +grossly,N,N3174 +grosser,N,N3175 +grossest,N,N3176 +grotesque,N,N3177 +grotesquely,N,N3178 +grouch,N,N3179 +grouches,N,N3180 +grouchy,N,N3181 +grouchier,N,N3182 +grouchiest,N,N3183 +grouchily,N,N3184 +groundless,N,N3185 +group_think,N,N3186 +grouse,N,N3187 +grouses,N,N3188 +grousing,N,N3189 +groused,N,N3190 +growl,N,N3191 +growls,N,N3192 +growling,N,N3193 +growled,N,N3194 +grudge,N,N3195 +grudges,N,N3196 +grudging,N,N3197 +grudgingly,N,N3198 +gruesome,N,N3199 +gruesomely,N,N3200 +gruff,N,N3201 +gruffer,N,N3202 +gruffest,N,N3203 +gruffly,N,N3204 +grumble,N,N3205 +grumbles,N,N3206 +grumbling,N,N3207 +grumbled,N,N3208 +grumpier,N,N3209 +grumpiest,N,N3210 +grumpily,N,N3211 +grumpish,N,N3212 +grumpy,N,N3213 +guile,N,N3214 +guilt,N,N3215 +guiltily,N,N3216 +guilty,N,N3217 +gulag,N,N3218 +gulags,N,N3219 +gullible,N,N3220 +gullibly,N,N3221 +gutless,N,N3222 +gutter,N,N3223 +gutters,N,N3224 +gypsies,N,N3225 +gypsy,N,N3226 +hack,N,N3227 +hacks,N,N3228 +haggard,N,N3229 +haggardly,N,N3230 +haggle,N,N3231 +haggles,N,N3232 +haggling,N,N3233 +haggled,N,N3234 +hair_loss,N,N3235 +halfhearted,N,N3236 +halfheartedly,N,N3237 +hallucinate,N,N3238 +hallucination,N,N3239 +hallucinates,N,N3240 +hallucinating,N,N3241 +hallucinated,N,N3242 +hallucinations,N,N3243 +hammered,N,N3244 +hamper,N,N3245 +hampered,N,N3246 +hampers,N,N3247 +hampering,N,N3248 +handicapped,N,N3249 +handmaiden,N,N3250 +handmaidens,N,N3251 +hang,N,N3252 +hangs,N,N3253 +hanging,N,N3254 +hanged,N,N3255 +haphazard,N,N3256 +haphazardly,N,N3257 +hapless,N,N3258 +haplessly,N,N3259 +harangue,N,N3260 +harass,N,N3261 +harassed,N,N3262 +harasses,N,N3263 +harassment,N,N3264 +harassing,N,N3265 +harboring,N,N3266 +harbors,N,N3267 +harbor,N,N3268 +harbored,N,N3269 +hard,N,N3270 +hard-hit,N,N3271 +hard-line,N,N3272 +hard-liner,N,N3273 +harden,N,N3274 +hardened,N,N3275 +hardens,N,N3276 +hardening,N,N3277 +hardheaded,N,N3278 +hardhearted,N,N3279 +hard-liners,N,N3280 +hardship,N,N3281 +hardships,N,N3282 +harebrained,N,N3283 +harm,N,N3284 +harmed,N,N3285 +harmful,N,N3286 +harms,N,N3287 +harming,N,N3288 +harmfully,N,N3289 +harpy,N,N3290 +harpies,N,N3291 +harridan,N,N3292 +harridans,N,N3293 +harried,N,N3294 +harrow,N,N3295 +harrows,N,N3296 +harrowing,N,N3297 +harrowed,N,N3298 +harsh,N,N3299 +harshly,N,N3300 +has_no_problem_calling,N,N3301 +has_not_stood_up,N,N3302 +hassling,N,N3303 +hassle,N,N3304 +hassled,N,N3305 +hassles,N,N3306 +haste,N,N3307 +hastily,N,N3308 +hasty,N,N3309 +hate,N,N3310 +hate_speech,N,N3311 +hated,N,N3312 +hateful,N,N3313 +hatefully,N,N3314 +hatefulness,N,N3315 +hater,N,N3316 +haters,N,N3317 +hates,N,N3318 +hating,N,N3319 +hatred,N,N3320 +haughtily,N,N3321 +haughty,N,N3322 +haunt,N,N3323 +haunting,N,N3324 +haunts,N,N3325 +haunted,N,N3326 +have_no_skills,N,N3327 +haven't_traveled_enough,N,N3328 +having_a_fit,N,N3329 +havoc,N,N3330 +hawkish,N,N3331 +hawkishly,N,N3332 +haywire,N,N3333 +hazard,N,N3334 +hazardous,N,N3335 +haze,N,N3336 +hazy,N,N3337 +hazier,N,N3338 +haziest,N,N3339 +hazily,N,N3340 +headache,N,N3341 +headaches,N,N3342 +heartbreaker,N,N3343 +heartbreaking,N,N3344 +heartbreakingly,N,N3345 +heartbreakers,N,N3346 +heartless,N,N3347 +heartlessly,N,N3348 +heathen,N,N3349 +heathens,N,N3350 +heavy-handed,N,N3351 +heavy-handedly,N,N3352 +heavy-hearted,N,N3353 +heavy-heartedly,N,N3354 +heck,N,N3355 +heckle,N,N3356 +heckled,N,N3357 +heckles,N,N3358 +heckling,N,N3359 +hectic,N,N3360 +hectically,N,N3361 +hedge,N,N3362 +hedge_fund,N,N3363 +hedonistic,N,N3364 +hedonistically,N,N3365 +heedless,N,N3366 +heedlessly,N,N3367 +hefty,N,N3368 +heftier,N,N3369 +heftiest,N,N3370 +heftily,N,N3371 +hegemonism,N,N3372 +hegemonistic,N,N3373 +hegemony,N,N3374 +heinous,N,N3375 +heinously,N,N3376 +hell,N,N3377 +hellbent,N,N3378 +hellion,N,N3379 +hellions,N,N3380 +hells,N,N3381 +helpless,N,N3382 +helplessly,N,N3383 +helplessness,N,N3384 +heresy,N,N3385 +heretic,N,N3386 +heretical,N,N3387 +hesitant,N,N3388 +hesitantly,N,N3389 +hideous,N,N3390 +hideously,N,N3391 +hideousness,N,N3392 +high-priced,N,N3393 +hijack,N,N3394 +hijacking,N,N3395 +hijacks,N,N3396 +hijacked,N,N3397 +hinder,N,N3398 +hindrance,N,N3399 +hinders,N,N3400 +hindering,N,N3401 +hindered,N,N3402 +hiss,N,N3403 +hissed,N,N3404 +hissing,N,N3405 +hisses,N,N3406 +hissy_fit,N,N3407 +ho-hum,N,N3408 +hoard,N,N3409 +hoards,N,N3410 +hoax,N,N3411 +hoaxes,N,N3412 +hobble,N,N3413 +hobbles,N,N3414 +hobbling,N,N3415 +hobbled,N,N3416 +hogs,N,N3417 +hogwash,N,N3418 +hoodwink,N,N3419 +hoodwinks,N,N3420 +hoodwinking,N,N3421 +hoodwinked,N,N3422 +hooligan,N,N3423 +hooligans,N,N3424 +hopeless,N,N3425 +hopelessly,N,N3426 +hopelessness,N,N3427 +horde,N,N3428 +hordes,N,N3429 +horrendous,N,N3430 +horrendously,N,N3431 +horrible,N,N3432 +horribly,N,N3433 +horrid,N,N3434 +horrific,N,N3435 +horrificly,N,N3436 +horrified,N,N3437 +horrifies,N,N3438 +horrify,N,N3439 +horrifying,N,N3440 +hostage,N,N3441 +hostages,N,N3442 +hostile,N,N3443 +hostilities,N,N3444 +hostility,N,N3445 +hotbeds,N,N3446 +hotbed,N,N3447 +hothead,N,N3448 +hotheaded,N,N3449 +hothouse,N,N3450 +hubris,N,N3451 +huckster,N,N3452 +hucksters,N,N3453 +humiliate,N,N3454 +humiliating,N,N3455 +humiliation,N,N3456 +humiliates,N,N3457 +humiliated,N,N3458 +humpty_dumpty,N,N3459 +hurt,N,N3460 +hurtful,N,N3461 +hurting,N,N3462 +hurts,N,N3463 +hustler,N,N3464 +hustlers,N,N3465 +hypocrisy,N,N3466 +hypocrite,N,N3467 +hypocrites,N,N3468 +hypocritical,N,N3469 +hypocritically,N,N3470 +hysteria,N,N3471 +hysteric,N,N3472 +hysterical,N,N3473 +hysterically,N,N3474 +hysterics,N,N3475 +idiocies,N,N3476 +idiocy,N,N3477 +idiot,N,N3478 +idiotic,N,N3479 +idiotically,N,N3480 +idiots,N,N3481 +ignoble,N,N3482 +ignobly,N,N3483 +ignominious,N,N3484 +ignominiously,N,N3485 +ignominy,N,N3486 +ignorance,N,N3487 +ignorant,N,N3488 +ignorantly,N,N3489 +ignore,N,N3490 +ignores,N,N3491 +ignoring,N,N3492 +ignored,N,N3493 +ill-advised,N,N3494 +ill-conceived,N,N3495 +ill-defined,N,N3496 +ill-designed,N,N3497 +ill-fated,N,N3498 +ill-favored,N,N3499 +ill-formed,N,N3500 +ill-mannered,N,N3501 +ill-natured,N,N3502 +ill-sorted,N,N3503 +ill-tempered,N,N3504 +ill-treated,N,N3505 +ill-treatment,N,N3506 +ill-usage,N,N3507 +ill-used,N,N3508 +illegal,N,N3509 +illegally,N,N3510 +illegitimate,N,N3511 +illicit,N,N3512 +illiterate,N,N3513 +illness,N,N3514 +illnesses,N,N3515 +illogic,N,N3516 +illogical,N,N3517 +illogically,N,N3518 +illogicalness,N,N3519 +illusion,N,N3520 +illusions,N,N3521 +illusory,N,N3522 +imbalance,N,N3523 +imbecile,N,N3524 +imbeciles,N,N3525 +imbroglio,N,N3526 +immaterial,N,N3527 +immaterially,N,N3528 +immature,N,N3529 +immaturely,N,N3530 +immobilized,N,N3531 +immoderate,N,N3532 +immoderately,N,N3533 +immodest,N,N3534 +immodestly,N,N3535 +immoral,N,N3536 +immorality,N,N3537 +immorally,N,N3538 +immovable,N,N3539 +immovably,N,N3540 +impair,N,N3541 +impaired,N,N3542 +impairs,N,N3543 +impairing,N,N3544 +impasse,N,N3545 +impatience,N,N3546 +impatient,N,N3547 +impatiently,N,N3548 +impedance,N,N3549 +impede,N,N3550 +impedes,N,N3551 +impeding,N,N3552 +impeded,N,N3553 +impediment,N,N3554 +impediments,N,N3555 +impenitent,N,N3556 +impenitently,N,N3557 +imperfect,N,N3558 +imperfection,N,N3559 +imperfections,N,N3560 +imperfectly,N,N3561 +imperialist,N,N3562 +imperialists,N,N3563 +imperil,N,N3564 +imperils,N,N3565 +imperiling,N,N3566 +imperiled,N,N3567 +imperious,N,N3568 +imperiously,N,N3569 +impermissible,N,N3570 +impermissably,N,N3571 +impersonal,N,N3572 +impersonally,N,N3573 +impertinent,N,N3574 +impertinently,N,N3575 +impetuous,N,N3576 +impetuously,N,N3577 +impiety,N,N3578 +impinge,N,N3579 +impinges,N,N3580 +impinging,N,N3581 +impinged,N,N3582 +impious,N,N3583 +impiously,N,N3584 +implacable,N,N3585 +implacably,N,N3586 +implausible,N,N3587 +implausibly,N,N3588 +implicate,N,N3589 +implicates,N,N3590 +implicated,N,N3591 +implicating,N,N3592 +implication,N,N3593 +implications,N,N3594 +implode,N,N3595 +implodes,N,N3596 +imploding,N,N3597 +imploded,N,N3598 +impolite,N,N3599 +impolitely,N,N3600 +impolitic,N,N3601 +impoliticly,N,N3602 +importunate,N,N3603 +importunately,N,N3604 +importune,N,N3605 +importunes,N,N3606 +importuning,N,N3607 +importuned,N,N3608 +impose,N,N3609 +imposes,N,N3610 +imposed,N,N3611 +imposer,N,N3612 +imposers,N,N3613 +imposing,N,N3614 +imposition,N,N3615 +impositions,N,N3616 +impossible,N,N3617 +impossiblity,N,N3618 +impossibilities,N,N3619 +impossibly,N,N3620 +impotent,N,N3621 +impotently,N,N3622 +impoverish,N,N3623 +impoverishes,N,N3624 +impoverishing,N,N3625 +impoverished,N,N3626 +impractical,N,N3627 +imprecate,N,N3628 +imprecates,N,N3629 +imprecating,N,N3630 +imprecated,N,N3631 +imprecise,N,N3632 +imprecisely,N,N3633 +imprecision,N,N3634 +imprison,N,N3635 +imprisonment,N,N3636 +imprisons,N,N3637 +imprisoning,N,N3638 +imprisoned,N,N3639 +improbability,N,N3640 +improbabilities,N,N3641 +improbable,N,N3642 +improbably,N,N3643 +improper,N,N3644 +improperly,N,N3645 +impropriety,N,N3646 +imprudence,N,N3647 +imprudent,N,N3648 +imprudently,N,N3649 +impudence,N,N3650 +impudent,N,N3651 +impudently,N,N3652 +impugn,N,N3653 +impugns,N,N3654 +impugning,N,N3655 +impugned,N,N3656 +impulsive,N,N3657 +impulsively,N,N3658 +impunity,N,N3659 +impure,N,N3660 +impurely,N,N3661 +impurity,N,N3662 +impurities,N,N3663 +inability,N,N3664 +inabilities,N,N3665 +inaccuracies,N,N3666 +inaccuracy,N,N3667 +inaccurate,N,N3668 +inaccurately,N,N3669 +inaction,N,N3670 +inactive,N,N3671 +inactively,N,N3672 +inadequacy,N,N3673 +inadequacies,N,N3674 +inadequate,N,N3675 +inadequately,N,N3676 +inadverent,N,N3677 +inadverently,N,N3678 +inadvisable,N,N3679 +inadvisably,N,N3680 +inane,N,N3681 +inanely,N,N3682 +inappropriate,N,N3683 +inappropriately,N,N3684 +inapt,N,N3685 +inaptly,N,N3686 +inaptitude,N,N3687 +inarticulate,N,N3688 +inarticulately,N,N3689 +inattentive,N,N3690 +inattentively,N,N3691 +incapable,N,N3692 +incapably,N,N3693 +incautious,N,N3694 +incautiously,N,N3695 +incendiary,N,N3696 +incense,N,N3697 +incenses,N,N3698 +incensing,N,N3699 +incensed,N,N3700 +incessant,N,N3701 +incessantly,N,N3702 +incite,N,N3703 +incites,N,N3704 +incitement,N,N3705 +inciting,N,N3706 +incited,N,N3707 +incivility,N,N3708 +inclement,N,N3709 +inclemently,N,N3710 +incognizant,N,N3711 +incoherence,N,N3712 +incoherent,N,N3713 +incoherently,N,N3714 +incommensurate,N,N3715 +incommensurately,N,N3716 +incompatibility,N,N3717 +incompatible,N,N3718 +incompatibly,N,N3719 +incompetence,N,N3720 +incompetent,N,N3721 +incompetently,N,N3722 +incomplete,N,N3723 +incompletely,N,N3724 +incompliant,N,N3725 +incompliantly,N,N3726 +incomprehensible,N,N3727 +incomprehensibly,N,N3728 +incomprehension,N,N3729 +inconceivable,N,N3730 +inconceivably,N,N3731 +incongruous,N,N3732 +incongruously,N,N3733 +inconsequent,N,N3734 +inconsequential,N,N3735 +inconsequentially,N,N3736 +inconsequently,N,N3737 +inconsiderate,N,N3738 +inconsiderately,N,N3739 +inconsistence,N,N3740 +inconsistencies,N,N3741 +inconsistency,N,N3742 +inconsistent,N,N3743 +inconsistently,N,N3744 +inconsolable,N,N3745 +inconsolably,N,N3746 +inconstant,N,N3747 +inconstantly,N,N3748 +inconvenience,N,N3749 +inconvenient,N,N3750 +inconveniently,N,N3751 +incorrect,N,N3752 +incorrectly,N,N3753 +incorrigible,N,N3754 +incorrigibly,N,N3755 +incredulous,N,N3756 +incredulously,N,N3757 +inculcate,N,N3758 +inculcates,N,N3759 +inculcating,N,N3760 +inculcated,N,N3761 +indecency,N,N3762 +indecent,N,N3763 +indecently,N,N3764 +indecision,N,N3765 +indecisive,N,N3766 +indecisively,N,N3767 +indecorum,N,N3768 +indefensible,N,N3769 +indefensibly,N,N3770 +indelicate,N,N3771 +indelicately,N,N3772 +indeterminable,N,N3773 +indeterminably,N,N3774 +indeterminate,N,N3775 +indeterminately,N,N3776 +indifference,N,N3777 +indifferent,N,N3778 +indifferently,N,N3779 +indigent,N,N3780 +indigently,N,N3781 +indignant,N,N3782 +indignantly,N,N3783 +indignation,N,N3784 +indignity,N,N3785 +indignities,N,N3786 +indiscernible,N,N3787 +indiscernibly,N,N3788 +indiscreet,N,N3789 +indiscreetly,N,N3790 +indiscretion,N,N3791 +indiscriminate,N,N3792 +indiscriminately,N,N3793 +indiscriminating,N,N3794 +indiscriminatingly,N,N3795 +indistinguishable,N,N3796 +indistinguishably,N,N3797 +indoctrinate,N,N3798 +indoctrinates,N,N3799 +indoctrinating,N,N3800 +indoctrinated,N,N3801 +indoctrination,N,N3802 +indolent,N,N3803 +indolently,N,N3804 +indulge,N,N3805 +indulges,N,N3806 +indulging,N,N3807 +indulged,N,N3808 +ineffective,N,N3809 +ineffectively,N,N3810 +ineffectiveness,N,N3811 +ineffectual,N,N3812 +ineffectually,N,N3813 +ineffectualness,N,N3814 +inefficacious,N,N3815 +inefficaciously,N,N3816 +inefficacy,N,N3817 +inefficiency,N,N3818 +inefficient,N,N3819 +inefficiently,N,N3820 +inelegance,N,N3821 +inelegant,N,N3822 +inelegantly,N,N3823 +ineloquent,N,N3824 +ineloquently,N,N3825 +inept,N,N3826 +ineptitude,N,N3827 +ineptly,N,N3828 +inequalities,N,N3829 +inequality,N,N3830 +inequitable,N,N3831 +inequitably,N,N3832 +inequity,N,N3833 +inequities,N,N3834 +inescapable,N,N3835 +inescapably,N,N3836 +inessential,N,N3837 +inessentially,N,N3838 +inevitable,N,N3839 +inevitably,N,N3840 +inexcusable,N,N3841 +inexcusably,N,N3842 +inexorable,N,N3843 +inexorably,N,N3844 +inexperience,N,N3845 +inexperienced,N,N3846 +inexpert,N,N3847 +inexpertly,N,N3848 +inexpiable,N,N3849 +inexpiably,N,N3850 +inexplainable,N,N3851 +inexplainably,N,N3852 +inextricable,N,N3853 +inextricably,N,N3854 +infamous,N,N3855 +infamously,N,N3856 +infamy,N,N3857 +infant,N,N3858 +infants,N,N3859 +infatuation,N,N3860 +infected,N,N3861 +infect,N,N3862 +infects,N,N3863 +infecting,N,N3864 +infection,N,N3865 +infections,N,N3866 +inferior,N,N3867 +inferiority,N,N3868 +infernal,N,N3869 +infernally,N,N3870 +infest,N,N3871 +infests,N,N3872 +infesting,N,N3873 +infested,N,N3874 +infidel,N,N3875 +infidels,N,N3876 +infiltrator,N,N3877 +infiltrators,N,N3878 +infirm,N,N3879 +infirmly,N,N3880 +inflame,N,N3881 +inflames,N,N3882 +inflaming,N,N3883 +inflammation,N,N3884 +inflammations,N,N3885 +inflammatory,N,N3886 +inflammatorily,N,N3887 +inflamed,N,N3888 +inflated,N,N3889 +inflationary,N,N3890 +inflexible,N,N3891 +inflexibly,N,N3892 +inflict,N,N3893 +inflicts,N,N3894 +inflicting,N,N3895 +inflicted,N,N3896 +influx,N,N3897 +influxes,N,N3898 +infraction,N,N3899 +infractions,N,N3900 +infringe,N,N3901 +infringes,N,N3902 +infringing,N,N3903 +infringed,N,N3904 +infringement,N,N3905 +infringements,N,N3906 +infuriate,N,N3907 +infuriates,N,N3908 +infuriated,N,N3909 +infuriating,N,N3910 +infuriatingly,N,N3911 +inglorious,N,N3912 +ingloriously,N,N3913 +ingrate,N,N3914 +ingrately,N,N3915 +ingratitude,N,N3916 +inhibit,N,N3917 +inhibits,N,N3918 +inhibiting,N,N3919 +inhibited,N,N3920 +inhibition,N,N3921 +inhibitions,N,N3922 +inhospitable,N,N3923 +inhospitably,N,N3924 +inhospitality,N,N3925 +inhuman,N,N3926 +inhumane,N,N3927 +inhumanely,N,N3928 +inhumanity,N,N3929 +inimical,N,N3930 +inimically,N,N3931 +iniquitous,N,N3932 +iniquitously,N,N3933 +iniquity,N,N3934 +iniquities,N,N3935 +injudicious,N,N3936 +injudiciously,N,N3937 +injure,N,N3938 +injures,N,N3939 +injuring,N,N3940 +injured,N,N3941 +injurious,N,N3942 +injuriously,N,N3943 +injury,N,N3944 +injuries,N,N3945 +injustice,N,N3946 +injustices,N,N3947 +innuendo,N,N3948 +innuendos,N,N3949 +inoperable,N,N3950 +inoperably,N,N3951 +inopportune,N,N3952 +inopportunely,N,N3953 +inordinate,N,N3954 +inordinately,N,N3955 +insane,N,N3956 +insanely,N,N3957 +insanity,N,N3958 +insatiable,N,N3959 +insatiably,N,N3960 +insecure,N,N3961 +insecurely,N,N3962 +insecurity,N,N3963 +insecurities,N,N3964 +insensible,N,N3965 +insensibly,N,N3966 +insensitive,N,N3967 +insensitively,N,N3968 +insensitivity,N,N3969 +insidious,N,N3970 +insidiously,N,N3971 +insignificance,N,N3972 +insignificant,N,N3973 +insignificantly,N,N3974 +insincere,N,N3975 +insincerely,N,N3976 +insincerity,N,N3977 +insinuate,N,N3978 +insinuates,N,N3979 +insinuating,N,N3980 +insinuated,N,N3981 +insinuation,N,N3982 +insociable,N,N3983 +insociably,N,N3984 +insolence,N,N3985 +insolent,N,N3986 +insolently,N,N3987 +insolvent,N,N3988 +insouciance,N,N3989 +instability,N,N3990 +instigate,N,N3991 +instigates,N,N3992 +instigating,N,N3993 +instigated,N,N3994 +instigator,N,N3995 +instigators,N,N3996 +insubordinate,N,N3997 +insubordinately,N,N3998 +insubstantial,N,N3999 +insubstantially,N,N4000 +insufferable,N,N4001 +insufferably,N,N4002 +insufficiency,N,N4003 +insufficiencies,N,N4004 +insufficient,N,N4005 +insufficiently,N,N4006 +insular,N,N4007 +insularly,N,N4008 +insult,N,N4009 +insulted,N,N4010 +insulting,N,N4011 +insultingly,N,N4012 +insults,N,N4013 +insupportable,N,N4014 +insupportably,N,N4015 +insurmountable,N,N4016 +insurmountably,N,N4017 +insurrection,N,N4018 +insurrections,N,N4019 +interfere,N,N4020 +interference,N,N4021 +interferences,N,N4022 +interferes,N,N4023 +interfering,N,N4024 +interfered,N,N4025 +interrupt,N,N4026 +interrupts,N,N4027 +interrupting,N,N4028 +interrupted,N,N4029 +interruption,N,N4030 +interruptions,N,N4031 +intimidate,N,N4032 +intimidates,N,N4033 +intimidating,N,N4034 +intimidated,N,N4035 +intimidatingly,N,N4036 +intimidation,N,N4037 +intolerable,N,N4038 +intolerably,N,N4039 +intolerance,N,N4040 +intolerant,N,N4041 +intolerantly,N,N4042 +intoxicate,N,N4043 +intoxicates,N,N4044 +intoxicating,N,N4045 +intoxicated,N,N4046 +intractable,N,N4047 +intractably,N,N4048 +intransigence,N,N4049 +intransigent,N,N4050 +intransigently,N,N4051 +intrude,N,N4052 +intrudes,N,N4053 +intruding,N,N4054 +intruded,N,N4055 +intrusion,N,N4056 +intrusions,N,N4057 +intrusive,N,N4058 +intrusively,N,N4059 +inundate,N,N4060 +inundates,N,N4061 +inundating,N,N4062 +inundated,N,N4063 +invader,N,N4064 +invaders,N,N4065 +invalid,N,N4066 +invalidly,N,N4067 +invalidate,N,N4068 +invalidates,N,N4069 +invalidating,N,N4070 +invalidated,N,N4071 +invalidity,N,N4072 +invalidities,N,N4073 +invasive,N,N4074 +invasively,N,N4075 +invective,N,N4076 +invectives,N,N4077 +invectively,N,N4078 +inveigle,N,N4079 +inveigles,N,N4080 +inveigled,N,N4081 +inveigling,N,N4082 +invidious,N,N4083 +invidiously,N,N4084 +invidiousness,N,N4085 +involuntarily,N,N4086 +involuntary,N,N4087 +irascible,N,N4088 +irascibly,N,N4089 +irate,N,N4090 +irately,N,N4091 +ire,N,N4092 +irk,N,N4093 +irked,N,N4094 +irking,N,N4095 +irks,N,N4096 +irksome,N,N4097 +irksomely,N,N4098 +irksomeness,N,N4099 +ironic,N,N4100 +ironical,N,N4101 +ironically,N,N4102 +ironies,N,N4103 +irony,N,N4104 +irrational,N,N4105 +irrationalities,N,N4106 +irrationality,N,N4107 +irrationally,N,N4108 +irreconcilable,N,N4109 +irreconcilably,N,N4110 +irrecoverable,N,N4111 +irrecoverableness,N,N4112 +irrecoverably,N,N4113 +irredeemable,N,N4114 +irredeemably,N,N4115 +irreformable,N,N4116 +irreformably,N,N4117 +irrelevance,N,N4118 +irrelevant,N,N4119 +irrelevantly,N,N4120 +irreparable,N,N4121 +irreparably,N,N4122 +irreplacible,N,N4123 +irreplacibly,N,N4124 +irrepressible,N,N4125 +irrepressibly,N,N4126 +irresolute,N,N4127 +irresolutely,N,N4128 +irresolvable,N,N4129 +irresolvably,N,N4130 +irresponsible,N,N4131 +irresponsibly,N,N4132 +irretrievable,N,N4133 +irretrievably,N,N4134 +irreversible,N,N4135 +irreversibly,N,N4136 +irritable,N,N4137 +irritably,N,N4138 +irritant,N,N4139 +irritants,N,N4140 +irritate,N,N4141 +irritated,N,N4142 +irritates,N,N4143 +irritating,N,N4144 +irritation,N,N4145 +irritations,N,N4146 +isolate,N,N4147 +isolates,N,N4148 +isolating,N,N4149 +isolated,N,N4150 +isolation,N,N4151 +issue,N,N4152 +issues,N,N4153 +itch,N,N4154 +itches,N,N4155 +itching,N,N4156 +itched,N,N4157 +itchy,N,N4158 +itchier,N,N4159 +itchiest,N,N4160 +jabber,N,N4161 +jabbers,N,N4162 +jabbering,N,N4163 +jabbered,N,N4164 +jackass,N,N4165 +jackasses,N,N4166 +jaded,N,N4167 +jadedly,N,N4168 +jagged,N,N4169 +jaggedly,N,N4170 +jam,N,N4171 +jams,N,N4172 +jamming,N,N4173 +jammed,N,N4174 +jarring,N,N4175 +jaundiced,N,N4176 +jealous,N,N4177 +jealously,N,N4178 +jealousness,N,N4179 +jealousy,N,N4180 +jeer,N,N4181 +jeering,N,N4182 +jeeringly,N,N4183 +jeers,N,N4184 +jeered,N,N4185 +jellyfish,N,N4186 +jeopardize,N,N4187 +jeopardizes,N,N4188 +jeopardizing,N,N4189 +jeopardized,N,N4190 +jeopardy,N,N4191 +jerk,N,N4192 +jerks,N,N4193 +jerky,N,N4194 +jerkier,N,N4195 +jerkiest,N,N4196 +jerkily,N,N4197 +jitter,N,N4198 +jitters,N,N4199 +jittery,N,N4200 +jitterier,N,N4201 +jitteriest,N,N4202 +job-killing,N,N4203 +jobless,N,N4204 +joke,N,N4205 +jokes,N,N4206 +joker,N,N4207 +jokers,N,N4208 +jolt,N,N4209 +jolts,N,N4210 +jolting,N,N4211 +jolted,N,N4212 +judder,N,N4213 +juddering,N,N4214 +judders,N,N4215 +juddered,N,N4216 +jumpy,N,N4217 +jumpier,N,N4218 +jumpiest,N,N4219 +junk,N,N4220 +junky,N,N4221 +junkier,N,N4222 +junkiest,N,N4223 +junkyard,N,N4224 +junkyards,N,N4225 +kamikaze,N,N4226 +kaput,N,N4227 +keep_people_from_voting,N,N4228 +kill,N,N4229 +killed,N,N4230 +killer,N,N4231 +killers,N,N4232 +killing,N,N4233 +kill-joy,N,N4234 +kill-joys,N,N4235 +kills,N,N4236 +knave,N,N4237 +knaves,N,N4238 +knife,N,N4239 +knives,N,N4240 +knock,N,N4241 +knocks,N,N4242 +knocking,N,N4243 +knocked,N,N4244 +knotted,N,N4245 +know_what_to_say,N,N4246 +know-nothing,N,N4247 +kook,N,N4248 +kooks,N,N4249 +kooky,N,N4250 +kookier,N,N4251 +kookiest,N,N4252 +lack,N,N4253 +lackadaisical,N,N4254 +lackadaisically,N,N4255 +lacked,N,N4256 +lackey,N,N4257 +lackeys,N,N4258 +lacking,N,N4259 +lackluster,N,N4260 +lacks,N,N4261 +laconic,N,N4262 +laconically,N,N4263 +lag,N,N4264 +lagged,N,N4265 +lagging,N,N4266 +laggy,N,N4267 +laggier,N,N4268 +laggiest,N,N4269 +lags,N,N4270 +laid_off,N,N4271 +lambaste,N,N4272 +lambastes,N,N4273 +lambasting,N,N4274 +lambasted,N,N4275 +lame,N,N4276 +lamer,N,N4277 +lamest,N,N4278 +lamely,N,N4279 +lame_duck,N,N4280 +lament,N,N4281 +laments,N,N4282 +lamenting,N,N4283 +lamented,N,N4284 +lamentable,N,N4285 +lamentably,N,N4286 +languid,N,N4287 +languidly,N,N4288 +languish,N,N4289 +languishes,N,N4290 +languishing,N,N4291 +languished,N,N4292 +languor,N,N4293 +languorous,N,N4294 +languorously,N,N4295 +lanky,N,N4296 +lankier,N,N4297 +lankiest,N,N4298 +lankily,N,N4299 +lap_dog,N,N4300 +lapse,N,N4301 +lapsed,N,N4302 +lapses,N,N4303 +lapsing,N,N4304 +lascivious,N,N4305 +lasciviously,N,N4306 +last_to_defend,N,N4307 +last-ditch,N,N4308 +latency,N,N4309 +laughable,N,N4310 +laughably,N,N4311 +laughingstock,N,N4312 +lawbreaker,N,N4313 +lawbreakers,N,N4314 +lawbreaking,N,N4315 +lawless,N,N4316 +lawlessly,N,N4317 +lawlessness,N,N4318 +layoff,N,N4319 +layoffs,N,N4320 +layoff-happy,N,N4321 +lazy,N,N4322 +lazier,N,N4323 +laziest,N,N4324 +lazily,N,N4325 +leak,N,N4326 +leakage,N,N4327 +leakages,N,N4328 +leaking,N,N4329 +leaks,N,N4330 +leaked,N,N4331 +leaky,N,N4332 +leakier,N,N4333 +leakily,N,N4334 +lecher,N,N4335 +lechers,N,N4336 +lecherous,N,N4337 +lecherously,N,N4338 +lechery,N,N4339 +leech,N,N4340 +leeches,N,N4341 +leer,N,N4342 +leers,N,N4343 +leering,N,N4344 +leered,N,N4345 +leery,N,N4346 +leerier,N,N4347 +leeriest,N,N4348 +leerily,N,N4349 +legacy,N,N4350 +lemming,N,N4351 +lemmings,N,N4352 +leprosy,N,N4353 +less-developed,N,N4354 +lesser-known,N,N4355 +letch,N,N4356 +lethal,N,N4357 +lethally,N,N4358 +lethargic,N,N4359 +lethargically,N,N4360 +lethargy,N,N4361 +lewd,N,N4362 +lewdly,N,N4363 +lewdness,N,N4364 +liability,N,N4365 +liabilities,N,N4366 +liable,N,N4367 +liar,N,N4368 +liars,N,N4369 +licentious,N,N4370 +licentiously,N,N4371 +licentiousness,N,N4372 +lie,N,N4373 +lied,N,N4374 +lies,N,N4375 +life-threatening,N,N4376 +life-threateningly,N,N4377 +lifeless,N,N4378 +lifelessly,N,N4379 +limit,N,N4380 +limitation,N,N4381 +limitations,N,N4382 +limited,N,N4383 +limits,N,N4384 +limiting,N,N4385 +limp,N,N4386 +limply,N,N4387 +link,N,N4388 +links,N,N4389 +linking,N,N4390 +linked,N,N4391 +listless,N,N4392 +listlessly,N,N4393 +litigious,N,N4394 +litigiously,N,N4395 +livid,N,N4396 +lividly,N,N4397 +loath,N,N4398 +loathe,N,N4399 +loathes,N,N4400 +loathing,N,N4401 +loathed,N,N4402 +loathly,N,N4403 +loathsome,N,N4404 +loathsomely,N,N4405 +lone,N,N4406 +loneliness,N,N4407 +lonely,N,N4408 +loner,N,N4409 +loners,N,N4410 +lonesome,N,N4411 +lonesomely,N,N4412 +loophole,N,N4413 +loopholes,N,N4414 +loose,N,N4415 +loosely,N,N4416 +loot,N,N4417 +loots,N,N4418 +looting,N,N4419 +looted,N,N4420 +lorn,N,N4421 +lose,N,N4422 +loser,N,N4423 +losers,N,N4424 +loses,N,N4425 +losing,N,N4426 +losing_it,N,N4427 +loss,N,N4428 +losses,N,N4429 +lost,N,N4430 +lost_it,N,N4431 +lost_its_mind,N,N4432 +loud,N,N4433 +louder,N,N4434 +loudest,N,N4435 +loudly,N,N4436 +lousy,N,N4437 +lousier,N,N4438 +lousiest,N,N4439 +lousily,N,N4440 +loveless,N,N4441 +lovelessly,N,N4442 +lovelorn,N,N4443 +low-rated,N,N4444 +lowlife,N,N4445 +lowlifes,N,N4446 +lowly,N,N4447 +lowlier,N,N4448 +lowliest,N,N4449 +lowlily,N,N4450 +ludicrous,N,N4451 +ludicrously,N,N4452 +lugubrious,N,N4453 +lugubriously,N,N4454 +lukewarm,N,N4455 +lull,N,N4456 +lulls,N,N4457 +lumpy,N,N4458 +lumpier,N,N4459 +lumpiest,N,N4460 +lumpily,N,N4461 +lunatic,N,N4462 +lunaticism,N,N4463 +lunatics,N,N4464 +lurch,N,N4465 +lurches,N,N4466 +lure,N,N4467 +lures,N,N4468 +luring,N,N4469 +lured,N,N4470 +lurid,N,N4471 +luridly,N,N4472 +lurk,N,N4473 +lurks,N,N4474 +lurking,N,N4475 +lurked,N,N4476 +lusty,N,N4477 +lustier,N,N4478 +lustiest,N,N4479 +lustily,N,N4480 +lying,N,N4481 +lynch,N,N4482 +lynches,N,N4483 +lynching,N,N4484 +lynched,N,N4485 +macabre,N,N4486 +mad,N,N4487 +madden,N,N4488 +maddens,N,N4489 +maddening,N,N4490 +maddeningly,N,N4491 +maddened,N,N4492 +madder,N,N4493 +maddest,N,N4494 +made_up_their_mind,N,N4495 +madly,N,N4496 +madman,N,N4497 +madmen,N,N4498 +madness,N,N4499 +magician,N,N4500 +magicians,N,N4501 +make_believe,N,N4502 +make_false_claims,N,N4503 +make_these_links,N,N4504 +maladjusted,N,N4505 +maladjustment,N,N4506 +maladjustments,N,N4507 +malady,N,N4508 +maladies,N,N4509 +malaise,N,N4510 +malcontent,N,N4511 +malcontentedly,N,N4512 +malcontented,N,N4513 +maledict,N,N4514 +malevolence,N,N4515 +malevolent,N,N4516 +malevolently,N,N4517 +malice,N,N4518 +malicious,N,N4519 +maliciously,N,N4520 +maliciousness,N,N4521 +malign,N,N4522 +maligns,N,N4523 +maligning,N,N4524 +maligned,N,N4525 +malignant,N,N4526 +malignantly,N,N4527 +malodorous,N,N4528 +malodorously,N,N4529 +maltreatment,N,N4530 +mangle,N,N4531 +mangled,N,N4532 +mangles,N,N4533 +mangling,N,N4534 +mania,N,N4535 +maniac,N,N4536 +maniacal,N,N4537 +maniacally,N,N4538 +maniacs,N,N4539 +manic,N,N4540 +manipulate,N,N4541 +manipulates,N,N4542 +manipulating,N,N4543 +manipulated,N,N4544 +manipulation,N,N4545 +manipulative,N,N4546 +manipulatively,N,N4547 +manipulator,N,N4548 +manipulators,N,N4549 +manufactured,N,N4550 +mar,N,N4551 +mars,N,N4552 +marring,N,N4553 +marred,N,N4554 +march,N,N4555 +marches,N,N4556 +marched,N,N4557 +marching,N,N4558 +marginal,N,N4559 +marginally,N,N4560 +marionette,N,N4561 +marionettes,N,N4562 +martyrdom,N,N4563 +martyrdom-seeking,N,N4564 +marxism,N,N4565 +marxist,N,N4566 +marxists,N,N4567 +mashed,N,N4568 +masquerade,N,N4569 +masquerades,N,N4570 +masquerading,N,N4571 +masqueraded,N,N4572 +massacre,N,N4573 +massacres,N,N4574 +matte,N,N4575 +mawkish,N,N4576 +mawkishly,N,N4577 +mawkishness,N,N4578 +meager,N,N4579 +meagerly,N,N4580 +meaningless,N,N4581 +meaninglessly,N,N4582 +meanness,N,N4583 +measly,N,N4584 +measlier,N,N4585 +measliest,N,N4586 +meddle,N,N4587 +meddles,N,N4588 +meddled,N,N4589 +meddling,N,N4590 +meddlesome,N,N4591 +meddlesomely,N,N4592 +mediocre,N,N4593 +mediocrity,N,N4594 +melancholy,N,N4595 +melodramatic,N,N4596 +melodramatically,N,N4597 +meltdown,N,N4598 +meltdowns,N,N4599 +menace,N,N4600 +menaces,N,N4601 +menaced,N,N4602 +menacing,N,N4603 +menacingly,N,N4604 +mendacious,N,N4605 +mendaciously,N,N4606 +mendacity,N,N4607 +menial,N,N4608 +menially,N,N4609 +mentally_ill,N,N4610 +merciless,N,N4611 +mercilessly,N,N4612 +mess,N,N4613 +messed,N,N4614 +messes,N,N4615 +messing,N,N4616 +messy,N,N4617 +messier,N,N4618 +messiest,N,N4619 +messily,N,N4620 +midget,N,N4621 +midgets,N,N4622 +miff,N,N4623 +miffs,N,N4624 +militancy,N,N4625 +militant,N,N4626 +militants,N,N4627 +mindless,N,N4628 +mindlessly,N,N4629 +mirage,N,N4630 +mirages,N,N4631 +mire,N,N4632 +mires,N,N4633 +miring,N,N4634 +mired,N,N4635 +misalign,N,N4636 +misaligned,N,N4637 +misaligns,N,N4638 +misaligning,N,N4639 +misapprehend,N,N4640 +misapprehends,N,N4641 +misapprehending,N,N4642 +misapprehended,N,N4643 +misbecome,N,N4644 +misbecoming,N,N4645 +misbecame,N,N4646 +misbegotten,N,N4647 +misbehave,N,N4648 +misbehaves,N,N4649 +misbehaving,N,N4650 +misbehaved,N,N4651 +misbehavior,N,N4652 +miscalculate,N,N4653 +miscalculates,N,N4654 +miscalculating,N,N4655 +miscalculated,N,N4656 +miscalculation,N,N4657 +miscalculations,N,N4658 +mischaracterized,N,N4659 +mischief,N,N4660 +mischievous,N,N4661 +mischievously,N,N4662 +misconception,N,N4663 +misconceptions,N,N4664 +miscreant,N,N4665 +miscreants,N,N4666 +misdirection,N,N4667 +miser,N,N4668 +misers,N,N4669 +miserable,N,N4670 +miserableness,N,N4671 +miserably,N,N4672 +miseries,N,N4673 +miserly,N,N4674 +misery,N,N4675 +misfit,N,N4676 +misfits,N,N4677 +misfortune,N,N4678 +misfortunes,N,N4679 +misgiving,N,N4680 +misgivings,N,N4681 +misguidance,N,N4682 +misguide,N,N4683 +misguides,N,N4684 +misguiding,N,N4685 +misguided,N,N4686 +mishandle,N,N4687 +mishandles,N,N4688 +mishandling,N,N4689 +mishandled,N,N4690 +mishap,N,N4691 +mishaps,N,N4692 +misinform,N,N4693 +misinforms,N,N4694 +misinforming,N,N4695 +misinformation,N,N4696 +misinformed,N,N4697 +misinterpret,N,N4698 +misinterprets,N,N4699 +misinterpreting,N,N4700 +misinterpreted,N,N4701 +misjudge,N,N4702 +misjudges,N,N4703 +misjudging,N,N4704 +misjudged,N,N4705 +misjudgment,N,N4706 +misjudgments,N,N4707 +mislead,N,N4708 +misleads,N,N4709 +misleading,N,N4710 +misleadingly,N,N4711 +misled,N,N4712 +mismanage,N,N4713 +mismanages,N,N4714 +mismanaging,N,N4715 +mismanaged,N,N4716 +mispronounce,N,N4717 +mispronounced,N,N4718 +mispronounces,N,N4719 +mispronouncing,N,N4720 +misread,N,N4721 +misreads,N,N4722 +misreading,N,N4723 +misrepresent,N,N4724 +misrepresents,N,N4725 +misrepresenting,N,N4726 +misrepresented,N,N4727 +misrepresentation,N,N4728 +misrepresentations,N,N4729 +miss,N,N4730 +missed,N,N4731 +missing,N,N4732 +misses,N,N4733 +misstated,N,N4734 +misstatement,N,N4735 +misstatements,N,N4736 +mist,N,N4737 +mistake,N,N4738 +mistaken,N,N4739 +mistakenly,N,N4740 +mistakes,N,N4741 +mistified,N,N4742 +mistress,N,N4743 +mistresses,N,N4744 +mistrust,N,N4745 +mistrusts,N,N4746 +mistrusting,N,N4747 +mistrusted,N,N4748 +mistrustful,N,N4749 +mistrustfully,N,N4750 +mists,N,N4751 +misunderstand,N,N4752 +misunderstands,N,N4753 +misunderstanding,N,N4754 +misunderstandings,N,N4755 +misunderstood,N,N4756 +misuse,N,N4757 +misuses,N,N4758 +moan,N,N4759 +moans,N,N4760 +mob,N,N4761 +mobs,N,N4762 +mobster,N,N4763 +mobster,N,N4764 +mock,N,N4765 +mocked,N,N4766 +mockeries,N,N4767 +mockery,N,N4768 +mocking,N,N4769 +mockingly,N,N4770 +mocks,N,N4771 +molest,N,N4772 +molests,N,N4773 +molesting,N,N4774 +molested,N,N4775 +molestation,N,N4776 +molestations,N,N4777 +monkey_wrench,N,N4778 +monotonous,N,N4779 +monotonously,N,N4780 +monotony,N,N4781 +monster,N,N4782 +monsters,N,N4783 +monstrosities,N,N4784 +monstrosity,N,N4785 +monstrous,N,N4786 +monstrously,N,N4787 +moody,N,N4788 +moodier,N,N4789 +moodiest,N,N4790 +moodily,N,N4791 +moot,N,N4792 +mope,N,N4793 +mopes,N,N4794 +moping,N,N4795 +moped,N,N4796 +morbid,N,N4797 +morbidly,N,N4798 +mordant,N,N4799 +mordantly,N,N4800 +moribund,N,N4801 +moribundly,N,N4802 +moron,N,N4803 +moronic,N,N4804 +moronically,N,N4805 +morons,N,N4806 +mortification,N,N4807 +mortified,N,N4808 +mortifies,N,N4809 +mortify,N,N4810 +mortifying,N,N4811 +mourn,N,N4812 +mourns,N,N4813 +mourning,N,N4814 +mourned,N,N4815 +mourner,N,N4816 +mourner,N,N4817 +mournful,N,N4818 +mournfully,N,N4819 +mouthpiece,N,N4820 +mouthpieces,N,N4821 +muddle,N,N4822 +muddles,N,N4823 +muddling,N,N4824 +muddled,N,N4825 +muddy,N,N4826 +muddier,N,N4827 +muddiest,N,N4828 +muddily,N,N4829 +mudslinger,N,N4830 +mudslingers,N,N4831 +mudslinging,N,N4832 +mulish,N,N4833 +mulishly,N,N4834 +multi-polarization,N,N4835 +mundane,N,N4836 +mundanely,N,N4837 +murder,N,N4838 +murdering,N,N4839 +murdered,N,N4840 +murderer,N,N4841 +murderers,N,N4842 +murderous,N,N4843 +murderously,N,N4844 +murders,N,N4845 +murky,N,N4846 +murkier,N,N4847 +murkiest,N,N4848 +murkily,N,N4849 +muscle-flexing,N,N4850 +mushy,N,N4851 +mushier,N,N4852 +mushiest,N,N4853 +mushily,N,N4854 +musty,N,N4855 +mustier,N,N4856 +mustiest,N,N4857 +mustily,N,N4858 +mysterious,N,N4859 +mysteriously,N,N4860 +mystery,N,N4861 +mysteries,N,N4862 +mystify,N,N4863 +mystifies,N,N4864 +mystifying,N,N4865 +mystified,N,N4866 +myth,N,N4867 +myths,N,N4868 +nag,N,N4869 +nags,N,N4870 +nagging,N,N4871 +nagged,N,N4872 +naive,N,N4873 +naively,N,N4874 +narrow,N,N4875 +narrower,N,N4876 +narrowest,N,N4877 +narrowly,N,N4878 +nastily,N,N4879 +nastiness,N,N4880 +nasty,N,N4881 +nastier,N,N4882 +nastiest,N,N4883 +naughty,N,N4884 +naughtier,N,N4885 +naughtiest,N,N4886 +naughtily,N,N4887 +nauseate,N,N4888 +nauseates,N,N4889 +nauseating,N,N4890 +nauseatingly,N,N4891 +nauseated,N,N4892 +nebulous,N,N4893 +nebulously,N,N4894 +needless,N,N4895 +needlessly,N,N4896 +needy,N,N4897 +needier,N,N4898 +neediest,N,N4899 +needily,N,N4900 +nefarious,N,N4901 +nefariously,N,N4902 +negate,N,N4903 +negates,N,N4904 +negating,N,N4905 +negated,N,N4906 +negation,N,N4907 +negations,N,N4908 +negative,N,N4909 +negatively,N,N4910 +negatives,N,N4911 +negativity,N,N4912 +neglect,N,N4913 +neglected,N,N4914 +neglecting,N,N4915 +neglects,N,N4916 +negligence,N,N4917 +negligent,N,N4918 +negligently,N,N4919 +nemesis,N,N4920 +nemeses,N,N4921 +nepotism,N,N4922 +nervous,N,N4923 +nervously,N,N4924 +nervousness,N,N4925 +nettle,N,N4926 +nettles,N,N4927 +nettling,N,N4928 +nettled,N,N4929 +nettlesome,N,N4930 +neurotic,N,N4931 +neurotically,N,N4932 +never_make_up_their_minds,N,N4933 +new_low,N,N4934 +niggle,N,N4935 +niggles,N,N4936 +niggling,N,N4937 +niggled,N,N4938 +nightmare,N,N4939 +nightmares,N,N4940 +nightmarish,N,N4941 +nightmarishly,N,N4942 +nitpick,N,N4943 +nitpicks,N,N4944 +nitpicking,N,N4945 +nitpicked,N,N4946 +no_controls,N,N4947 +no_standards,N,N4948 +noise,N,N4949 +noises,N,N4950 +noisier,N,N4951 +noisiest,N,N4952 +noisy,N,N4953 +non-confidence,N,N4954 +nonexistent,N,N4955 +nonresponsive,N,N4956 +nonsense,N,N4957 +normalized,N,N4958 +nosy,N,N4959 +nosier,N,N4960 +nosiest,N,N4961 +nosily,N,N4962 +not_always_pro,N,N4963 +not_defending,N,N4964 +not_disputed,N,N4965 +not_do_its_job,N,N4966 +not_fans,N,N4967 +not_functional,N,N4968 +not_going_to_allow,N,N4969 +not_honest,N,N4970 +not_logical,N,N4971 +not_protecting,N,N4972 +not_tolerant,N,N4973 +nothing_to_offer,N,N4974 +notoriety,N,N4975 +notorious,N,N4976 +notoriously,N,N4977 +noxious,N,N4978 +noxiously,N,N4979 +nuisance,N,N4980 +nuisances,N,N4981 +numb,N,N4982 +number,N,N4983 +numbest,N,N4984 +numbly,N,N4985 +nuts,N,N4986 +obese,N,N4987 +obesely,N,N4988 +object,N,N4989 +objects,N,N4990 +objecting,N,N4991 +objected,N,N4992 +objection,N,N4993 +objectionable,N,N4994 +objectionably,N,N4995 +objections,N,N4996 +oblique,N,N4997 +obliterate,N,N4998 +obliterates,N,N4999 +obliterating,N,N5000 +obliterated,N,N5001 +oblivious,N,N5002 +obliviously,N,N5003 +obnoxious,N,N5004 +obnoxiously,N,N5005 +obscene,N,N5006 +obscenely,N,N5007 +obscenity,N,N5008 +obscenities,N,N5009 +obscure,N,N5010 +obscured,N,N5011 +obscures,N,N5012 +obscuring,N,N5013 +obscurely,N,N5014 +obscurity,N,N5015 +obsess,N,N5016 +obsesses,N,N5017 +obsessing,N,N5018 +obsessed,N,N5019 +obsessive,N,N5020 +obsessively,N,N5021 +obsessiveness,N,N5022 +obsolete,N,N5023 +obsoletely,N,N5024 +obstacle,N,N5025 +obstacles,N,N5026 +obstinate,N,N5027 +obstinately,N,N5028 +obstruct,N,N5029 +obstructed,N,N5030 +obstructing,N,N5031 +obstruction,N,N5032 +obstructions,N,N5033 +obstructs,N,N5034 +obtrusive,N,N5035 +obtrusively,N,N5036 +obtuse,N,N5037 +obtusely,N,N5038 +occlude,N,N5039 +occluded,N,N5040 +occludes,N,N5041 +occluding,N,N5042 +odd,N,N5043 +odder,N,N5044 +oddest,N,N5045 +oddities,N,N5046 +oddity,N,N5047 +oddly,N,N5048 +odor,N,N5049 +odors,N,N5050 +offense,N,N5051 +offend,N,N5052 +offends,N,N5053 +offended,N,N5054 +offender,N,N5055 +offender,N,N5056 +offending,N,N5057 +offenses,N,N5058 +offensive,N,N5059 +offensively,N,N5060 +offensiveness,N,N5061 +officious,N,N5062 +officiously,N,N5063 +oligarchs_run,N,N5064 +ominous,N,N5065 +ominously,N,N5066 +omission,N,N5067 +omissions,N,N5068 +omit,N,N5069 +omits,N,N5070 +omitting,N,N5071 +omitted,N,N5072 +on_war_footing,N,N5073 +one_percent,N,N5074 +one-party,N,N5075 +one-sided,N,N5076 +onerous,N,N5077 +onerously,N,N5078 +only_cares,N,N5079 +onslaught,N,N5080 +onslaughts,N,N5081 +open_fire,N,N5082 +opens_fire,N,N5083 +opened_fire,N,N5084 +opening_fire,N,N5085 +opinionated,N,N5086 +opponent,N,N5087 +opponents,N,N5088 +opportunistic,N,N5089 +opportunistically,N,N5090 +oppose,N,N5091 +opposes,N,N5092 +opposing,N,N5093 +opposed,N,N5094 +opposition,N,N5095 +oppositions,N,N5096 +oppress,N,N5097 +oppresses,N,N5098 +oppressing,N,N5099 +oppressed,N,N5100 +oppression,N,N5101 +oppressive,N,N5102 +oppressively,N,N5103 +oppressiveness,N,N5104 +oppressor,N,N5105 +oppressors,N,N5106 +orangutan,N,N5107 +orangutans,N,N5108 +orchestrate,N,N5109 +orchestrates,N,N5110 +orchestrating,N,N5111 +orchestrated,N,N5112 +ordeal,N,N5113 +ordeals,N,N5114 +orphan,N,N5115 +orphans,N,N5116 +ostracize,N,N5117 +ostracizes,N,N5118 +ostracizing,N,N5119 +ostracized,N,N5120 +out_of_its_mind,N,N5121 +out_of_their_minds,N,N5122 +out_of_touch,N,N5123 +outbreak,N,N5124 +outbreaks,N,N5125 +outburst,N,N5126 +outbursts,N,N5127 +outcast,N,N5128 +outcasts,N,N5129 +outcry,N,N5130 +outcries,N,N5131 +outlaw,N,N5132 +outlaws,N,N5133 +outlier,N,N5134 +outliers,N,N5135 +outmoded,N,N5136 +outmodedly,N,N5137 +outrage,N,N5138 +outraging,N,N5139 +outraged,N,N5140 +outrageous,N,N5141 +outrageously,N,N5142 +outrageousness,N,N5143 +outrages,N,N5144 +outsider,N,N5145 +outsiders,N,N5146 +over-hyped,N,N5147 +overvaluation,N,N5148 +overact,N,N5149 +overacts,N,N5150 +overacting,N,N5151 +overacted,N,N5152 +overawe,N,N5153 +overawes,N,N5154 +overawing,N,N5155 +overawed,N,N5156 +overbalance,N,N5157 +overbalances,N,N5158 +overbalancing,N,N5159 +overbalanced,N,N5160 +overbearing,N,N5161 +overbearingly,N,N5162 +overblown,N,N5163 +overdo,N,N5164 +overdoes,N,N5165 +overdoing,N,N5166 +overdid,N,N5167 +overdone,N,N5168 +overdue,N,N5169 +overemphasize,N,N5170 +overemphasizes,N,N5171 +overemphasizing,N,N5172 +overemphasized,N,N5173 +overheat,N,N5174 +overheats,N,N5175 +overheating,N,N5176 +overheated,N,N5177 +overkill,N,N5178 +overloaded,N,N5179 +overlook,N,N5180 +overlooks,N,N5181 +overlooking,N,N5182 +overlooked,N,N5183 +overpaid,N,N5184 +overplay,N,N5185 +overplays,N,N5186 +overplaying,N,N5187 +overplayed,N,N5188 +overpower,N,N5189 +overpowers,N,N5190 +overpowering,N,N5191 +overpowered,N,N5192 +overpriced,N,N5193 +overrated,N,N5194 +overreach,N,N5195 +overreaches,N,N5196 +overreaching,N,N5197 +overreached,N,N5198 +overrun,N,N5199 +overshadow,N,N5200 +overshadows,N,N5201 +overshadowing,N,N5202 +overshadowed,N,N5203 +oversight,N,N5204 +oversights,N,N5205 +oversimplification,N,N5206 +oversimplifications,N,N5207 +oversimplified,N,N5208 +oversimplify,N,N5209 +oversimplifies,N,N5210 +oversimplifying,N,N5211 +oversize,N,N5212 +overstate,N,N5213 +overstated,N,N5214 +overstatement,N,N5215 +overstatements,N,N5216 +overstates,N,N5217 +overstating,N,N5218 +overtaxed,N,N5219 +overthrow,N,N5220 +overthrows,N,N5221 +overthrowing,N,N5222 +overthrowed,N,N5223 +overturn,N,N5224 +overturns,N,N5225 +overturning,N,N5226 +overturned,N,N5227 +overweight,N,N5228 +overwhelm,N,N5229 +overwhelmed,N,N5230 +overwhelming,N,N5231 +overwhelmingly,N,N5232 +overwhelms,N,N5233 +overzealous,N,N5234 +overzealously,N,N5235 +pain,N,N5236 +painful,N,N5237 +painfully,N,N5238 +pains,N,N5239 +paint,N,N5240 +painted,N,N5241 +paints,N,N5242 +painting,N,N5243 +pale,N,N5244 +pales,N,N5245 +paling,N,N5246 +paled,N,N5247 +paltry,N,N5248 +paltrier,N,N5249 +paltriest,N,N5250 +paltrily,N,N5251 +pandemonium,N,N5252 +pander,N,N5253 +pandering,N,N5254 +panders,N,N5255 +pandered,N,N5256 +panic,N,N5257 +panics,N,N5258 +panicked,N,N5259 +panicking,N,N5260 +panicky,N,N5261 +paradoxical,N,N5262 +paradoxically,N,N5263 +paralize,N,N5264 +paralizes,N,N5265 +paralizing,N,N5266 +paralyzed,N,N5267 +paranoia,N,N5268 +paranoid,N,N5269 +parasite,N,N5270 +parasites,N,N5271 +parasitize,N,N5272 +parasitizes,N,N5273 +parasitizing,N,N5274 +parasitized,N,N5275 +pariah,N,N5276 +pariahs,N,N5277 +parody,N,N5278 +parodies,N,N5279 +partiality,N,N5280 +partisan,N,N5281 +partisans,N,N5282 +passe,N,N5283 +passive,N,N5284 +passively,N,N5285 +passiveness,N,N5286 +pathetic,N,N5287 +pathetically,N,N5288 +patronize,N,N5289 +patronizes,N,N5290 +patronizing,N,N5291 +patronized,N,N5292 +paucity,N,N5293 +pauper,N,N5294 +paupers,N,N5295 +payback,N,N5296 +peasant,N,N5297 +peasants,N,N5298 +peculiar,N,N5299 +peculiarly,N,N5300 +pedantic,N,N5301 +pedantically,N,N5302 +pedophile,N,N5303 +pedophiles,N,N5304 +pedophilia,N,N5305 +peeled,N,N5306 +peeve,N,N5307 +peeves,N,N5308 +peeved,N,N5309 +peevish,N,N5310 +peevishly,N,N5311 +penalize,N,N5312 +penalizes,N,N5313 +penalizing,N,N5314 +penalized,N,N5315 +penalty,N,N5316 +penalties,N,N5317 +perfidious,N,N5318 +perfidiously,N,N5319 +perfidity,N,N5320 +perfunctory,N,N5321 +perfunctorily,N,N5322 +peril,N,N5323 +perilous,N,N5324 +perilously,N,N5325 +perish,N,N5326 +perishes,N,N5327 +perishing,N,N5328 +perished,N,N5329 +pernicious,N,N5330 +perniciously,N,N5331 +perplex,N,N5332 +perplexes,N,N5333 +perplexed,N,N5334 +perplexing,N,N5335 +perplexity,N,N5336 +perplexities,N,N5337 +persecute,N,N5338 +persecutes,N,N5339 +persecuting,N,N5340 +persecuted,N,N5341 +persecution,N,N5342 +pertinacious,N,N5343 +pertinaciously,N,N5344 +pertinacity,N,N5345 +perturb,N,N5346 +perturbs,N,N5347 +perturbing,N,N5348 +perturbed,N,N5349 +pervasive,N,N5350 +pervasively,N,N5351 +perverse,N,N5352 +perversely,N,N5353 +perversion,N,N5354 +perversity,N,N5355 +pervert,N,N5356 +perverting,N,N5357 +perverted,N,N5358 +perverts,N,N5359 +pessimism,N,N5360 +pessimist,N,N5361 +pessimists,N,N5362 +pessimistic,N,N5363 +pessimistically,N,N5364 +pest,N,N5365 +pests,N,N5366 +pestilent,N,N5367 +pestilently,N,N5368 +petrified,N,N5369 +petrify,N,N5370 +petrifies,N,N5371 +petrifying,N,N5372 +pettifog,N,N5373 +pettifogs,N,N5374 +pettifogging,N,N5375 +pettifogged,N,N5376 +petty,N,N5377 +pettier,N,N5378 +pettiest,N,N5379 +pettily,N,N5380 +phobia,N,N5381 +phobias,N,N5382 +phobic,N,N5383 +phony,N,N5384 +phonier,N,N5385 +phoniest,N,N5386 +phonily,N,N5387 +picket,N,N5388 +picketed,N,N5389 +picketing,N,N5390 +pickets,N,N5391 +picky,N,N5392 +pickier,N,N5393 +pickiest,N,N5394 +pickily,N,N5395 +pig,N,N5396 +piggy_bank,N,N5397 +pigs,N,N5398 +pillage,N,N5399 +pillages,N,N5400 +pillaging,N,N5401 +pillaged,N,N5402 +pillory,N,N5403 +pillories,N,N5404 +pillorying,N,N5405 +pilloried,N,N5406 +pimple,N,N5407 +pimples,N,N5408 +pinch,N,N5409 +pinches,N,N5410 +pinching,N,N5411 +pinched,N,N5412 +pique,N,N5413 +piques,N,N5414 +piquing,N,N5415 +piqued,N,N5416 +pitiable,N,N5417 +pitiably,N,N5418 +pitiful,N,N5419 +pitifully,N,N5420 +pitiless,N,N5421 +pitilessly,N,N5422 +pittance,N,N5423 +pity,N,N5424 +pities,N,N5425 +pitying,N,N5426 +pitied,N,N5427 +plagiarize,N,N5428 +plagiarizes,N,N5429 +plagiarizing,N,N5430 +plagiarized,N,N5431 +plague,N,N5432 +plagues,N,N5433 +plaguing,N,N5434 +plagued,N,N5435 +plasticky,N,N5436 +play_down,N,N5437 +plaything,N,N5438 +playthings,N,N5439 +plea,N,N5440 +pleas,N,N5441 +plebeian,N,N5442 +plight,N,N5443 +plights,N,N5444 +plot,N,N5445 +plots,N,N5446 +plotting,N,N5447 +plotted,N,N5448 +plotter,N,N5449 +plotters,N,N5450 +ploy,N,N5451 +ploys,N,N5452 +plunder,N,N5453 +plunders,N,N5454 +plundering,N,N5455 +plundered,N,N5456 +plunderer,N,N5457 +plunderers,N,N5458 +pointless,N,N5459 +pointlessly,N,N5460 +poison,N,N5461 +poisons,N,N5462 +poisoning,N,N5463 +poisoned,N,N5464 +poisonous,N,N5465 +poisonously,N,N5466 +poky,N,N5467 +pokier,N,N5468 +pokiest,N,N5469 +pokily,N,N5470 +polarization,N,N5471 +polarize,N,N5472 +polarizes,N,N5473 +polarizing,N,N5474 +polarized,N,N5475 +polemicize,N,N5476 +polemicizes,N,N5477 +polemicizing,N,N5478 +polemicized,N,N5479 +politicize,N,N5480 +politicizes,N,N5481 +politicizing,N,N5482 +politicized,N,N5483 +pollute,N,N5484 +pollutes,N,N5485 +polluting,N,N5486 +polluted,N,N5487 +polluter,N,N5488 +polluters,N,N5489 +polution,N,N5490 +pompous,N,N5491 +pompously,N,N5492 +pooh-pooh,N,N5493 +pooh-poohs,N,N5494 +pooh-poohing,N,N5495 +pooh-poohed,N,N5496 +poor,N,N5497 +poorer,N,N5498 +poorest,N,N5499 +poorly,N,N5500 +poorly_situated,N,N5501 +porn,N,N5502 +porno,N,N5503 +pornos,N,N5504 +pornographic,N,N5505 +pornographically,N,N5506 +posture,N,N5507 +postures,N,N5508 +posturing,N,N5509 +postured,N,N5510 +potshot,N,N5511 +potshots,N,N5512 +pound,N,N5513 +pounds,N,N5514 +pounding,N,N5515 +pounded,N,N5516 +pout,N,N5517 +pouts,N,N5518 +pouting,N,N5519 +pouted,N,N5520 +poverty,N,N5521 +powerless,N,N5522 +powerlessly,N,N5523 +prate,N,N5524 +prates,N,N5525 +prating,N,N5526 +prated,N,N5527 +pratfall,N,N5528 +pratfalls,N,N5529 +prattle,N,N5530 +prattles,N,N5531 +prattling,N,N5532 +prattled,N,N5533 +precarious,N,N5534 +precariously,N,N5535 +precipitate,N,N5536 +precipitates,N,N5537 +precipitating,N,N5538 +precipitated,N,N5539 +precipitous,N,N5540 +precipitously,N,N5541 +predatory,N,N5542 +predatorily,N,N5543 +predicament,N,N5544 +predicaments,N,N5545 +prejudge,N,N5546 +prejudges,N,N5547 +prejudging,N,N5548 +prejudged,N,N5549 +prejudice,N,N5550 +prejudices,N,N5551 +prejudicial,N,N5552 +prejudicially,N,N5553 +premeditated,N,N5554 +preoccupy,N,N5555 +preoccupies,N,N5556 +preoccupying,N,N5557 +preoccupied,N,N5558 +preposterous,N,N5559 +preposterously,N,N5560 +presumptuous,N,N5561 +presumptuously,N,N5562 +pretend,N,N5563 +pretends,N,N5564 +pretending,N,N5565 +pretended,N,N5566 +pretense,N,N5567 +pretenses,N,N5568 +pretentious,N,N5569 +pretentiously,N,N5570 +prevaricate,N,N5571 +prevaricates,N,N5572 +prevaricating,N,N5573 +prevaricated,N,N5574 +pricey,N,N5575 +pricier,N,N5576 +priciest,N,N5577 +pricily,N,N5578 +prick,N,N5579 +pricks,N,N5580 +prickle,N,N5581 +prickles,N,N5582 +prideful,N,N5583 +pridefully,N,N5584 +primitive,N,N5585 +primitively,N,N5586 +prison,N,N5587 +prisons,N,N5588 +prisoner,N,N5589 +prisoners,N,N5590 +problem,N,N5591 +problematic,N,N5592 +problematically,N,N5593 +problems,N,N5594 +procrastinate,N,N5595 +procrastinates,N,N5596 +procrastinating,N,N5597 +procrastinated,N,N5598 +procrastination,N,N5599 +profane,N,N5600 +profanely,N,N5601 +profanity,N,N5602 +profanities,N,N5603 +programmed,N,N5604 +prohibit,N,N5605 +prohibits,N,N5606 +prohibiting,N,N5607 +prohibited,N,N5608 +prohibitive,N,N5609 +prohibitively,N,N5610 +propaganda,N,N5611 +propagandist,N,N5612 +propagandists,N,N5613 +propagandize,N,N5614 +propagandizes,N,N5615 +propagandizing,N,N5616 +propagandized,N,N5617 +proprietary,N,N5618 +proprietarily,N,N5619 +prosecute,N,N5620 +prosecutes,N,N5621 +prosecuting,N,N5622 +prosecuted,N,N5623 +protest,N,N5624 +protested,N,N5625 +protesting,N,N5626 +protests,N,N5627 +protracted,N,N5628 +provocation,N,N5629 +provocations,N,N5630 +provocative,N,N5631 +provocatively,N,N5632 +provoke,N,N5633 +provokes,N,N5634 +provoking,N,N5635 +provoked,N,N5636 +pry,N,N5637 +pries,N,N5638 +prying,N,N5639 +pried,N,N5640 +psychopath,N,N5641 +psychopaths,N,N5642 +psychotic,N,N5643 +psychotically,N,N5644 +pugnacious,N,N5645 +pugnaciously,N,N5646 +pugnacity,N,N5647 +puke,N,N5648 +pukes,N,N5649 +puking,N,N5650 +puked,N,N5651 +pull_us_into,N,N5652 +punch,N,N5653 +punches,N,N5654 +punish,N,N5655 +punishes,N,N5656 +punishing,N,N5657 +punished,N,N5658 +punishable,N,N5659 +punitive,N,N5660 +punitively,N,N5661 +punk,N,N5662 +punks,N,N5663 +puny,N,N5664 +punier,N,N5665 +puniest,N,N5666 +punily,N,N5667 +puppet,N,N5668 +puppets,N,N5669 +push,N,N5670 +pushes,N,N5671 +pushing,N,N5672 +pushed,N,N5673 +put_facts_last,N,N5674 +put_their_heads_in_the_sand,N,N5675 +puzzle,N,N5676 +puzzles,N,N5677 +puzzled,N,N5678 +puzzlement,N,N5679 +puzzling,N,N5680 +quack,N,N5681 +qualm,N,N5682 +qualms,N,N5683 +quandary,N,N5684 +quandaries,N,N5685 +quarrel,N,N5686 +quarreling,N,N5687 +quarreled,N,N5688 +quarrellous,N,N5689 +quarrellously,N,N5690 +quarrels,N,N5691 +quarrelsome,N,N5692 +quarrelsomely,N,N5693 +quash,N,N5694 +quashes,N,N5695 +quashing,N,N5696 +quashed,N,N5697 +queer,N,N5698 +queerly,N,N5699 +questionable,N,N5700 +questionably,N,N5701 +quibble,N,N5702 +quibbles,N,N5703 +quitter,N,N5704 +quitters,N,N5705 +rabid,N,N5706 +rabidly,N,N5707 +race_to_the_bottom,N,N5708 +racism,N,N5709 +racist,N,N5710 +racists,N,N5711 +racy,N,N5712 +racier,N,N5713 +raciest,N,N5714 +racily,N,N5715 +radical,N,N5716 +radicalism,N,N5717 +radicalization,N,N5718 +radicalized,N,N5719 +radically,N,N5720 +radicals,N,N5721 +rage,N,N5722 +rages,N,N5723 +raged,N,N5724 +ragged,N,N5725 +raggedly,N,N5726 +raging,N,N5727 +rail,N,N5728 +rails,N,N5729 +railing,N,N5730 +railed,N,N5731 +raked,N,N5732 +rampage,N,N5733 +rampages,N,N5734 +rampaging,N,N5735 +rampaged,N,N5736 +rampant,N,N5737 +rampantly,N,N5738 +ramshackle,N,N5739 +rancor,N,N5740 +rankle,N,N5741 +rankles,N,N5742 +rankling,N,N5743 +rankled,N,N5744 +rant,N,N5745 +ranted,N,N5746 +ranting,N,N5747 +rantingly,N,N5748 +rants,N,N5749 +rape,N,N5750 +rapes,N,N5751 +rape_capital,N,N5752 +raped,N,N5753 +raping,N,N5754 +rapist,N,N5755 +rapists,N,N5756 +rascal,N,N5757 +rascals,N,N5758 +rash,N,N5759 +rashly,N,N5760 +rat,N,N5761 +rats,N,N5762 +rattle,N,N5763 +rattled,N,N5764 +rattles,N,N5765 +rattling,N,N5766 +ravage,N,N5767 +ravages,N,N5768 +ravaging,N,N5769 +ravaged,N,N5770 +reactionary,N,N5771 +rebellious,N,N5772 +rebelliously,N,N5773 +rebuff,N,N5774 +rebuffs,N,N5775 +rebuffing,N,N5776 +rebuffed,N,N5777 +rebuke,N,N5778 +rebukes,N,N5779 +rebuking,N,N5780 +rebuked,N,N5781 +recalcitrant,N,N5782 +recant,N,N5783 +recants,N,N5784 +recanting,N,N5785 +recanted,N,N5786 +recession,N,N5787 +recessions,N,N5788 +recessionary,N,N5789 +reckless,N,N5790 +recklessly,N,N5791 +recklessness,N,N5792 +recoil,N,N5793 +recoils,N,N5794 +recoiling,N,N5795 +recoiled,N,N5796 +recourse,N,N5797 +recourses,N,N5798 +redundancy,N,N5799 +redundant,N,N5800 +redundantly,N,N5801 +refusal,N,N5802 +refusals,N,N5803 +refuse,N,N5804 +refused,N,N5805 +refuses,N,N5806 +refusing,N,N5807 +refutation,N,N5808 +refutations,N,N5809 +refute,N,N5810 +refuted,N,N5811 +refutes,N,N5812 +refuting,N,N5813 +regress,N,N5814 +regresses,N,N5815 +regressing,N,N5816 +regressed,N,N5817 +regression,N,N5818 +regressions,N,N5819 +regressive,N,N5820 +regressively,N,N5821 +regret,N,N5822 +regretful,N,N5823 +regretfully,N,N5824 +regrets,N,N5825 +regrettable,N,N5826 +regrettably,N,N5827 +regretted,N,N5828 +regretting,N,N5829 +regurgitates,N,N5830 +regurgitate,N,N5831 +regurgitating,N,N5832 +regurgitated,N,N5833 +reign_of_terror,N,N5834 +reject,N,N5835 +rejected,N,N5836 +rejecting,N,N5837 +rejection,N,N5838 +rejections,N,N5839 +rejects,N,N5840 +relapse,N,N5841 +relapses,N,N5842 +relapsing,N,N5843 +relapsed,N,N5844 +relentless,N,N5845 +relentlessly,N,N5846 +relentlessness,N,N5847 +reluctance,N,N5848 +reluctant,N,N5849 +reluctantly,N,N5850 +remorse,N,N5851 +remorseful,N,N5852 +remorsefully,N,N5853 +remorseless,N,N5854 +remorselessly,N,N5855 +remorselessness,N,N5856 +renounce,N,N5857 +renounces,N,N5858 +renouncing,N,N5859 +renounced,N,N5860 +renunciation,N,N5861 +renunciations,N,N5862 +repel,N,N5863 +repels,N,N5864 +repelling,N,N5865 +repelled,N,N5866 +repetitive,N,N5867 +repetitively,N,N5868 +reprehend,N,N5869 +reprehends,N,N5870 +reprehending,N,N5871 +reprehended,N,N5872 +reprehensible,N,N5873 +reprehensibly,N,N5874 +reprehension,N,N5875 +reprehensive,N,N5876 +reprehensively,N,N5877 +repress,N,N5878 +represses,N,N5879 +repressing,N,N5880 +repressed,N,N5881 +repression,N,N5882 +repressive,N,N5883 +repressively,N,N5884 +reprimand,N,N5885 +reprimands,N,N5886 +reprimanding,N,N5887 +reprimanded,N,N5888 +reproach,N,N5889 +reproaches,N,N5890 +reproaching,N,N5891 +reproached,N,N5892 +reproachful,N,N5893 +reproachfully,N,N5894 +reprove,N,N5895 +reproves,N,N5896 +reproving,N,N5897 +reprovingly,N,N5898 +reproved,N,N5899 +repudiate,N,N5900 +repudiates,N,N5901 +repudiating,N,N5902 +repudiated,N,N5903 +repudiation,N,N5904 +repugn,N,N5905 +repugns,N,N5906 +repugning,N,N5907 +repugned,N,N5908 +repugnance,N,N5909 +repugnant,N,N5910 +repugnantly,N,N5911 +repulse,N,N5912 +repulses,N,N5913 +repulsed,N,N5914 +repulsing,N,N5915 +repulsive,N,N5916 +repulsively,N,N5917 +repulsiveness,N,N5918 +resent,N,N5919 +resents,N,N5920 +resenting,N,N5921 +resented,N,N5922 +resentful,N,N5923 +resentfully,N,N5924 +resentment,N,N5925 +resist,N,N5926 +resists,N,N5927 +resisting,N,N5928 +resisted,N,N5929 +resistance,N,N5930 +responsibility,N,N5931 +responsibilities,N,N5932 +restless,N,N5933 +restlessly,N,N5934 +restlessness,N,N5935 +restrict,N,N5936 +restricts,N,N5937 +restricting,N,N5938 +restricted,N,N5939 +restriction,N,N5940 +restrictions,N,N5941 +restrictive,N,N5942 +restrictively,N,N5943 +resurgent,N,N5944 +retaliate,N,N5945 +retaliates,N,N5946 +retaliating,N,N5947 +retaliated,N,N5948 +retaliatory,N,N5949 +retard,N,N5950 +retarded,N,N5951 +retardedness,N,N5952 +retards,N,N5953 +reticent,N,N5954 +reticently,N,N5955 +retract,N,N5956 +retracts,N,N5957 +retracting,N,N5958 +retracted,N,N5959 +retreat,N,N5960 +retreats,N,N5961 +retreating,N,N5962 +retreated,N,N5963 +revenge,N,N5964 +revengeful,N,N5965 +revengefully,N,N5966 +revert,N,N5967 +reverts,N,N5968 +reverting,N,N5969 +reverted,N,N5970 +revile,N,N5971 +reviles,N,N5972 +reviling,N,N5973 +reviled,N,N5974 +revokes,N,N5975 +revoke,N,N5976 +revoking,N,N5977 +revoked,N,N5978 +revolt,N,N5979 +revolts,N,N5980 +revolting,N,N5981 +revoltingly,N,N5982 +revolted,N,N5983 +revulsion,N,N5984 +revulsive,N,N5985 +revulsively,N,N5986 +rhapsodize,N,N5987 +rhapsodizes,N,N5988 +rhapsodizing,N,N5989 +rhapsodized,N,N5990 +ricer,N,N5991 +ridicule,N,N5992 +ridicules,N,N5993 +ridiculing,N,N5994 +ridiculed,N,N5995 +ridiculous,N,N5996 +ridiculously,N,N5997 +rife,N,N5998 +rifely,N,N5999 +rift,N,N6000 +rifts,N,N6001 +rigid,N,N6002 +rigidly,N,N6003 +rigidity,N,N6004 +rigidness,N,N6005 +rile,N,N6006 +riles,N,N6007 +riling,N,N6008 +riled,N,N6009 +rip,N,N6010 +rips,N,N6011 +rip-off,N,N6012 +ripping,N,N6013 +ripped,N,N6014 +risk,N,N6015 +risks,N,N6016 +risky,N,N6017 +riskier,N,N6018 +riskiest,N,N6019 +riskily,N,N6020 +rival,N,N6021 +rivals,N,N6022 +rivalry,N,N6023 +rivalries,N,N6024 +roadblock,N,N6025 +roadblocks,N,N6026 +rocky,N,N6027 +rockier,N,N6028 +rockiest,N,N6029 +rockily,N,N6030 +rogue,N,N6031 +rogues,N,N6032 +rollercoaster,N,N6033 +rollercoasters,N,N6034 +rot,N,N6035 +rots,N,N6036 +rotting,N,N6037 +rotted,N,N6038 +rotten,N,N6039 +rottenly,N,N6040 +rottweiler,N,N6041 +rottweilers,N,N6042 +rough,N,N6043 +rougher,N,N6044 +roughest,N,N6045 +roughly,N,N6046 +rounded_up,N,N6047 +irremediable,N,N6048 +irremediably,N,N6049 +rubbish,N,N6050 +rude,N,N6051 +ruder,N,N6052 +rudest,N,N6053 +rudely,N,N6054 +rue,N,N6055 +rues,N,N6056 +ruing,N,N6057 +rued,N,N6058 +ruffian,N,N6059 +ruffians,N,N6060 +ruffle,N,N6061 +ruffles,N,N6062 +ruffling,N,N6063 +ruffled,N,N6064 +ruin,N,N6065 +ruined,N,N6066 +ruining,N,N6067 +ruinous,N,N6068 +ruinously,N,N6069 +ruins,N,N6070 +rule_against,N,N6071 +rumbling,N,N6072 +rumblings,N,N6073 +rumor,N,N6074 +rumors,N,N6075 +rumple,N,N6076 +rumples,N,N6077 +rumpling,N,N6078 +rumpled,N,N6079 +run_you_over,N,N6080 +run-down,N,N6081 +runaway,N,N6082 +runaways,N,N6083 +rupture,N,N6084 +ruptures,N,N6085 +rushing_to_judgment,N,N6086 +rust,N,N6087 +rusts,N,N6088 +rusting,N,N6089 +rusted,N,N6090 +rusty,N,N6091 +rustier,N,N6092 +rustiest,N,N6093 +rustily,N,N6094 +rut,N,N6095 +ruthless,N,N6096 +ruthlessly,N,N6097 +ruthlessness,N,N6098 +ruts,N,N6099 +sabotage,N,N6100 +sabotages,N,N6101 +sabotaging,N,N6102 +sabotaged,N,N6103 +saboteur,N,N6104 +saboteurs,N,N6105 +sack,N,N6106 +sacks,N,N6107 +sacking,N,N6108 +sacked,N,N6109 +sacrificed,N,N6110 +sad,N,N6111 +sadden,N,N6112 +saddens,N,N6113 +saddening,N,N6114 +saddened,N,N6115 +sadly,N,N6116 +sadness,N,N6117 +sadder,N,N6118 +saddest,N,N6119 +sag,N,N6120 +sagged,N,N6121 +sagging,N,N6122 +saggy,N,N6123 +saggier,N,N6124 +saggiest,N,N6125 +sags,N,N6126 +salacious,N,N6127 +salaciously,N,N6128 +salem,N,N6129 +sanctimonious,N,N6130 +sanctimoniously,N,N6131 +sap,N,N6132 +saps,N,N6133 +sapping,N,N6134 +sapped,N,N6135 +sarcasm,N,N6136 +sarcastic,N,N6137 +sarcastically,N,N6138 +sardonic,N,N6139 +sardonically,N,N6140 +sass,N,N6141 +sasses,N,N6142 +sassing,N,N6143 +sassed,N,N6144 +satirical,N,N6145 +satirically,N,N6146 +satirize,N,N6147 +satirizes,N,N6148 +satirizing,N,N6149 +satirized,N,N6150 +savage,N,N6151 +savaged,N,N6152 +savaging,N,N6153 +savagery,N,N6154 +savages,N,N6155 +say_anything_they_want,N,N6156 +saying_next_to_nothing,N,N6157 +scaly,N,N6158 +scalier,N,N6159 +scaliest,N,N6160 +scam,N,N6161 +scams,N,N6162 +scandal,N,N6163 +scandalize,N,N6164 +scandalizes,N,N6165 +scandalizing,N,N6166 +scandalized,N,N6167 +scandalous,N,N6168 +scandalously,N,N6169 +scandals,N,N6170 +scant,N,N6171 +scanter,N,N6172 +scantest,N,N6173 +scantly,N,N6174 +scapegoat,N,N6175 +scapegoats,N,N6176 +scar,N,N6177 +scarring,N,N6178 +scarce,N,N6179 +scarcely,N,N6180 +scarcity,N,N6181 +scarcities,N,N6182 +scare,N,N6183 +scares,N,N6184 +scaring,N,N6185 +scared,N,N6186 +scarier,N,N6187 +scariest,N,N6188 +scarily,N,N6189 +scarred,N,N6190 +scars,N,N6191 +scary,N,N6192 +scathing,N,N6193 +scathingly,N,N6194 +scheme,N,N6195 +schemes,N,N6196 +schizophrenic,N,N6197 +scoff,N,N6198 +scoffs,N,N6199 +scoffing,N,N6200 +scoffingly,N,N6201 +scoffed,N,N6202 +scold,N,N6203 +scolded,N,N6204 +scolding,N,N6205 +scoldingly,N,N6206 +scolds,N,N6207 +scorching,N,N6208 +scorchingly,N,N6209 +scorn,N,N6210 +scornful,N,N6211 +scornfully,N,N6212 +scoundrel,N,N6213 +scoundrels,N,N6214 +scourge,N,N6215 +scowl,N,N6216 +scowls,N,N6217 +scowling,N,N6218 +scowled,N,N6219 +scramble,N,N6220 +scrambled,N,N6221 +scrambles,N,N6222 +scrambling,N,N6223 +scrap,N,N6224 +scrap,N,N6225 +scrapping,N,N6226 +scrapped,N,N6227 +scratch,N,N6228 +scratched,N,N6229 +scratches,N,N6230 +scratching,N,N6231 +scratchy,N,N6232 +scratchier,N,N6233 +scratchiest,N,N6234 +scratchily,N,N6235 +scream,N,N6236 +screams,N,N6237 +screaming,N,N6238 +screamed,N,N6239 +screech,N,N6240 +screeches,N,N6241 +screeching,N,N6242 +screeches,N,N6243 +screw-up,N,N6244 +screw-ups,N,N6245 +screwed,N,N6246 +screwed-up,N,N6247 +screwy,N,N6248 +screwier,N,N6249 +screwiest,N,N6250 +scuff,N,N6251 +scuffs,N,N6252 +scuffing,N,N6253 +scuffed,N,N6254 +scum,N,N6255 +scum_of_the_earth,N,N6256 +scummy,N,N6257 +scummier,N,N6258 +scummiest,N,N6259 +second-class,N,N6260 +second-tier,N,N6261 +secretive,N,N6262 +secretively,N,N6263 +secrets,N,N6264 +sedentary,N,N6265 +sedentarily,N,N6266 +seedy,N,N6267 +seedier,N,N6268 +seediest,N,N6269 +seedily,N,N6270 +seethe,N,N6271 +seethes,N,N6272 +seething,N,N6273 +seethed,N,N6274 +self-coup,N,N6275 +self-criticism,N,N6276 +self-defeating,N,N6277 +self-destructive,N,N6278 +self-destructively,N,N6279 +self-humiliation,N,N6280 +self-interest,N,N6281 +self-interested,N,N6282 +self-serving,N,N6283 +selfish,N,N6284 +selfishly,N,N6285 +selfishness,N,N6286 +semi-retarded,N,N6287 +senile,N,N6288 +sensationalize,N,N6289 +sensationalizes,N,N6290 +sensationalizing,N,N6291 +sensationalized,N,N6292 +senseless,N,N6293 +senselessly,N,N6294 +sensitive,N,N6295 +sensitively,N,N6296 +sermonize,N,N6297 +sermonizes,N,N6298 +sermonizing,N,N6299 +sermonized,N,N6300 +servitude,N,N6301 +setup,N,N6302 +setback,N,N6303 +setbacks,N,N6304 +sever,N,N6305 +severs,N,N6306 +severing,N,N6307 +severed,N,N6308 +severe,N,N6309 +severely,N,N6310 +severity,N,N6311 +sexual_assault_problem,N,N6312 +shabby,N,N6313 +shabbier,N,N6314 +shabbiest,N,N6315 +shabbily,N,N6316 +shadowy,N,N6317 +shady,N,N6318 +shadier,N,N6319 +shadiest,N,N6320 +shadily,N,N6321 +shake,N,N6322 +shakes,N,N6323 +shaking,N,N6324 +shaked,N,N6325 +shaky,N,N6326 +shakier,N,N6327 +shakiest,N,N6328 +shakily,N,N6329 +shallow,N,N6330 +shallower,N,N6331 +shallowest,N,N6332 +shallowly,N,N6333 +sham,N,N6334 +shams,N,N6335 +shambles,N,N6336 +shame,N,N6337 +shameful,N,N6338 +shamefully,N,N6339 +shamefulness,N,N6340 +shameless,N,N6341 +shamelessly,N,N6342 +shamelessness,N,N6343 +shark,N,N6344 +sharks,N,N6345 +sharply,N,N6346 +shatter,N,N6347 +shatters,N,N6348 +shattering,N,N6349 +shattered,N,N6350 +shemale,N,N6351 +shemales,N,N6352 +shimmer,N,N6353 +shimmers,N,N6354 +shimmy,N,N6355 +shimmies,N,N6356 +shimmying,N,N6357 +shimmied,N,N6358 +shipwreck,N,N6359 +shipwrecks,N,N6360 +shirk,N,N6361 +shirks,N,N6362 +shirking,N,N6363 +shirked,N,N6364 +shirker,N,N6365 +shirkers,N,N6366 +shit,N,N6367 +shits,N,N6368 +shitting,N,N6369 +shiver,N,N6370 +shivers,N,N6371 +shock,N,N6372 +shocks,N,N6373 +shocked,N,N6374 +shocking,N,N6375 +shockingly,N,N6376 +shoddy,N,N6377 +shoddier,N,N6378 +shoddiest,N,N6379 +shoddily,N,N6380 +short-lived,N,N6381 +shortage,N,N6382 +shortages,N,N6383 +shortchange,N,N6384 +shortchanges,N,N6385 +shortchanging,N,N6386 +shortchanged,N,N6387 +shortcoming,N,N6388 +shortcomings,N,N6389 +shortness,N,N6390 +shortsighted,N,N6391 +shortsightedly,N,N6392 +shortsightedness,N,N6393 +showdown,N,N6394 +showdowns,N,N6395 +shrew,N,N6396 +shrews,N,N6397 +shriek,N,N6398 +shrieks,N,N6399 +shrieking,N,N6400 +shrieked,N,N6401 +shrill,N,N6402 +shrilly,N,N6403 +shrivel,N,N6404 +shrivels,N,N6405 +shriveling,N,N6406 +shriveled,N,N6407 +shroud,N,N6408 +shrouds,N,N6409 +shrouding,N,N6410 +shrouded,N,N6411 +shrug,N,N6412 +shrugs,N,N6413 +shrugging,N,N6414 +shrugged,N,N6415 +shun,N,N6416 +shuns,N,N6417 +shunning,N,N6418 +shunned,N,N6419 +shut_up,N,N6420 +sick,N,N6421 +sicken,N,N6422 +sickens,N,N6423 +sickening,N,N6424 +sickeningly,N,N6425 +sickened,N,N6426 +sickly,N,N6427 +sickness,N,N6428 +sickenesses,N,N6429 +sidetrack,N,N6430 +sidetracks,N,N6431 +sidetracking,N,N6432 +sidetracked,N,N6433 +siege,N,N6434 +sieges,N,N6435 +silenced,N,N6436 +sillily,N,N6437 +silly,N,N6438 +sillier,N,N6439 +silliest,N,N6440 +simplistic,N,N6441 +simplistically,N,N6442 +sin,N,N6443 +sins,N,N6444 +sinning,N,N6445 +sinned,N,N6446 +sinful,N,N6447 +sinfully,N,N6448 +sinister,N,N6449 +sinisterly,N,N6450 +sink,N,N6451 +sinks,N,N6452 +sinking,N,N6453 +sank,N,N6454 +skeleton,N,N6455 +skeletons,N,N6456 +skeptic,N,N6457 +skeptics,N,N6458 +skeptical,N,N6459 +skeptically,N,N6460 +skepticism,N,N6461 +sketchy,N,N6462 +sketchier,N,N6463 +sketchiest,N,N6464 +sketchily,N,N6465 +skewed,N,N6466 +skimpy,N,N6467 +skimpier,N,N6468 +skimpiest,N,N6469 +skimpily,N,N6470 +skirt,N,N6471 +skirts,N,N6472 +skirting,N,N6473 +skirted,N,N6474 +skittish,N,N6475 +skittishly,N,N6476 +skulk,N,N6477 +skulks,N,N6478 +skulking,N,N6479 +skulked,N,N6480 +slack,N,N6481 +slackly,N,N6482 +slander,N,N6483 +slanderer,N,N6484 +slanderers,N,N6485 +slanderers,N,N6486 +slanderous,N,N6487 +slanderously,N,N6488 +slanders,N,N6489 +slandering,N,N6490 +slandered,N,N6491 +slap,N,N6492 +slaps,N,N6493 +slapping,N,N6494 +slapped,N,N6495 +slashing,N,N6496 +slashingly,N,N6497 +slaughter,N,N6498 +slaughters,N,N6499 +slaughtering,N,N6500 +slaughtered,N,N6501 +slave,N,N6502 +slave_patrols,N,N6503 +slaves,N,N6504 +sleazy,N,N6505 +sleazier,N,N6506 +sleaziest,N,N6507 +sleazily,N,N6508 +slime,N,N6509 +slog,N,N6510 +slogged,N,N6511 +slogging,N,N6512 +slogs,N,N6513 +sloppily,N,N6514 +sloppy,N,N6515 +sloppier,N,N6516 +sloppiest,N,N6517 +sloth,N,N6518 +slothful,N,N6519 +slothfully,N,N6520 +slow,N,N6521 +slow-moving,N,N6522 +slowed,N,N6523 +slowing,N,N6524 +slows,N,N6525 +slower,N,N6526 +slowest,N,N6527 +slowly,N,N6528 +slug,N,N6529 +slugs,N,N6530 +slugging,N,N6531 +slugged,N,N6532 +sluggish,N,N6533 +sluggishly,N,N6534 +slump,N,N6535 +slumps,N,N6536 +slumping,N,N6537 +slumped,N,N6538 +slur,N,N6539 +slurs,N,N6540 +slut,N,N6541 +sluts,N,N6542 +slutty,N,N6543 +sluttier,N,N6544 +sluttiest,N,N6545 +sly,N,N6546 +slyer,N,N6547 +slyest,N,N6548 +slyly,N,N6549 +smack,N,N6550 +smacks,N,N6551 +smacking,N,N6552 +smacked,N,N6553 +smash,N,N6554 +smashes,N,N6555 +smashing,N,N6556 +smashed,N,N6557 +smear,N,N6558 +smears,N,N6559 +smeared,N,N6560 +smearing,N,N6561 +smell,N,N6562 +smelled,N,N6563 +smelling,N,N6564 +smells,N,N6565 +smelly,N,N6566 +smellier,N,N6567 +smelliest,N,N6568 +smelt,N,N6569 +smelts,N,N6570 +smelting,N,N6571 +smelted,N,N6572 +smoke,N,N6573 +smoke_screen,N,N6574 +smoke_screens,N,N6575 +smolder,N,N6576 +smolders,N,N6577 +smoldering,N,N6578 +smoldered,N,N6579 +smother,N,N6580 +smothers,N,N6581 +smothering,N,N6582 +smothered,N,N6583 +smudge,N,N6584 +smudged,N,N6585 +smudges,N,N6586 +smudging,N,N6587 +smug,N,N6588 +smugger,N,N6589 +smuggest,N,N6590 +smugly,N,N6591 +smut,N,N6592 +smuttier,N,N6593 +smuttiest,N,N6594 +smutty,N,N6595 +smuttily,N,N6596 +snag,N,N6597 +snagged,N,N6598 +snagging,N,N6599 +snags,N,N6600 +snappish,N,N6601 +snappishly,N,N6602 +snare,N,N6603 +snares,N,N6604 +snaring,N,N6605 +snared,N,N6606 +snarky,N,N6607 +snarkier,N,N6608 +snarkiest,N,N6609 +snarl,N,N6610 +snarls,N,N6611 +snarling,N,N6612 +snarled,N,N6613 +sneak,N,N6614 +sneaks,N,N6615 +sneaking,N,N6616 +snuck,N,N6617 +sneakily,N,N6618 +sneaky,N,N6619 +sneer,N,N6620 +sneers,N,N6621 +sneering,N,N6622 +sneeringly,N,N6623 +sneered,N,N6624 +snob,N,N6625 +snobbish,N,N6626 +snobbishly,N,N6627 +snobby,N,N6628 +snobbier,N,N6629 +snobbiest,N,N6630 +snobs,N,N6631 +snotty,N,N6632 +snottier,N,N6633 +snottiest,N,N6634 +snottily,N,N6635 +snub,N,N6636 +snubs,N,N6637 +snubbing,N,N6638 +snubbed,N,N6639 +soapy,N,N6640 +soapier,N,N6641 +soapiest,N,N6642 +soapily,N,N6643 +sob,N,N6644 +sobs,N,N6645 +sobbing,N,N6646 +sobbed,N,N6647 +sober,N,N6648 +sobers,N,N6649 +sobering,N,N6650 +sobered,N,N6651 +soberly,N,N6652 +social_justice_mob,N,N6653 +solemn,N,N6654 +solemnly,N,N6655 +somber,N,N6656 +somberly,N,N6657 +sore,N,N6658 +sorely,N,N6659 +soreness,N,N6660 +sorority,N,N6661 +sororities,N,N6662 +sorrow,N,N6663 +sorrowful,N,N6664 +sorrowfully,N,N6665 +sorry,N,N6666 +sorrier,N,N6667 +sorriest,N,N6668 +sorrily,N,N6669 +sour,N,N6670 +sourly,N,N6671 +spade,N,N6672 +spank,N,N6673 +spanks,N,N6674 +spanking,N,N6675 +spanked,N,N6676 +special_interest,N,N6677 +speculated_wildly,N,N6678 +spendy,N,N6679 +spew,N,N6680 +spewed,N,N6681 +spewing,N,N6682 +spews,N,N6683 +spilling,N,N6684 +spin,N,N6685 +spins,N,N6686 +spinning,N,N6687 +spun,N,N6688 +spinster,N,N6689 +spinsters,N,N6690 +spiritless,N,N6691 +spiritlessly,N,N6692 +spite,N,N6693 +spiteful,N,N6694 +spitefully,N,N6695 +spitefulness,N,N6696 +splatter,N,N6697 +splatters,N,N6698 +splattering,N,N6699 +splattered,N,N6700 +split,N,N6701 +splits,N,N6702 +splitting,N,N6703 +spoil,N,N6704 +spoiling,N,N6705 +spoilage,N,N6706 +spoilages,N,N6707 +spoiled,N,N6708 +spoils,N,N6709 +spook,N,N6710 +spooks,N,N6711 +spooking,N,N6712 +spooked,N,N6713 +spookier,N,N6714 +spookiest,N,N6715 +spookily,N,N6716 +spooky,N,N6717 +spoon-fed,N,N6718 +spoon-feed,N,N6719 +spoon-feeds,N,N6720 +spoon-feeding,N,N6721 +sporadic,N,N6722 +sporadically,N,N6723 +spotty,N,N6724 +spottier,N,N6725 +spottiest,N,N6726 +spottily,N,N6727 +spurious,N,N6728 +spuriously,N,N6729 +spurn,N,N6730 +spurns,N,N6731 +spurning,N,N6732 +spurned,N,N6733 +sputter,N,N6734 +sputters,N,N6735 +sputtering,N,N6736 +sputtered,N,N6737 +squabble,N,N6738 +squabbles,N,N6739 +squabbling,N,N6740 +squabbled,N,N6741 +squander,N,N6742 +squanders,N,N6743 +squandering,N,N6744 +squandered,N,N6745 +squash,N,N6746 +squashes,N,N6747 +squashing,N,N6748 +squashed,N,N6749 +squeak,N,N6750 +squeaks,N,N6751 +squeaking,N,N6752 +squeaked,N,N6753 +squeaky,N,N6754 +squeakier,N,N6755 +squeakiest,N,N6756 +squeakily,N,N6757 +squeal,N,N6758 +squealing,N,N6759 +squeals,N,N6760 +squealed,N,N6761 +squirm,N,N6762 +squirms,N,N6763 +squirming,N,N6764 +squirmed,N,N6765 +stab,N,N6766 +stabs,N,N6767 +stabbing,N,N6768 +stabbed,N,N6769 +stagnant,N,N6770 +stagnantly,N,N6771 +stagnate,N,N6772 +stagnates,N,N6773 +stagnating,N,N6774 +stagnated,N,N6775 +stagnation,N,N6776 +staid,N,N6777 +staidly,N,N6778 +stain,N,N6779 +stains,N,N6780 +staining,N,N6781 +stained,N,N6782 +stale,N,N6783 +staler,N,N6784 +stalest,N,N6785 +stalely,N,N6786 +stalemate,N,N6787 +stall,N,N6788 +stalls,N,N6789 +stalling,N,N6790 +stalled,N,N6791 +stammer,N,N6792 +stammers,N,N6793 +stammering,N,N6794 +stammered,N,N6795 +stampede,N,N6796 +stampedes,N,N6797 +stampeding,N,N6798 +stampeded,N,N6799 +standstill,N,N6800 +stark,N,N6801 +starker,N,N6802 +starkest,N,N6803 +starkly,N,N6804 +startle,N,N6805 +startles,N,N6806 +startling,N,N6807 +startlingly,N,N6808 +startled,N,N6809 +starvation,N,N6810 +starve,N,N6811 +starves,N,N6812 +starving,N,N6813 +starved,N,N6814 +static,N,N6815 +statically,N,N6816 +Statism,N,N6817 +Statist,N,N6818 +Statists,N,N6819 +steal,N,N6820 +stealing,N,N6821 +steals,N,N6822 +steep,N,N6823 +steeper,N,N6824 +steepest,N,N6825 +steeply,N,N6826 +stench,N,N6827 +stenches,N,N6828 +stereotype,N,N6829 +stereotypes,N,N6830 +stereotypical,N,N6831 +stereotypically,N,N6832 +stern,N,N6833 +sterner,N,N6834 +sternest,N,N6835 +sternly,N,N6836 +stew,N,N6837 +stews,N,N6838 +stewing,N,N6839 +stewed,N,N6840 +sticky,N,N6841 +stickier,N,N6842 +stickiest,N,N6843 +stickily,N,N6844 +stiff,N,N6845 +stiffer,N,N6846 +stiffest,N,N6847 +stiffly,N,N6848 +stiffness,N,N6849 +stifle,N,N6850 +stifles,N,N6851 +stifling,N,N6852 +stiflingly,N,N6853 +stifled,N,N6854 +stigma,N,N6855 +stigmas,N,N6856 +stigmatize,N,N6857 +stigmatizes,N,N6858 +stigmatizing,N,N6859 +stigmatized,N,N6860 +sting,N,N6861 +stings,N,N6862 +stinging,N,N6863 +stingingly,N,N6864 +stung,N,N6865 +stingy,N,N6866 +stingier,N,N6867 +stingiest,N,N6868 +stingingly,N,N6869 +stink,N,N6870 +stinks,N,N6871 +stinking,N,N6872 +stunk,N,N6873 +stinky,N,N6874 +stinkier,N,N6875 +stinkiest,N,N6876 +stodgy,N,N6877 +stodgier,N,N6878 +stodgiest,N,N6879 +stodgily,N,N6880 +stoke,N,N6881 +stokes,N,N6882 +stoked,N,N6883 +stoking,N,N6884 +stole,N,N6885 +stolen,N,N6886 +stooge,N,N6887 +stooges,N,N6888 +storm,N,N6889 +storms,N,N6890 +storming,N,N6891 +stormed,N,N6892 +stormy,N,N6893 +stormier,N,N6894 +stormiest,N,N6895 +stormily,N,N6896 +straggle,N,N6897 +straggles,N,N6898 +straggling,N,N6899 +straggled,N,N6900 +straggler,N,N6901 +stragglers,N,N6902 +strain,N,N6903 +strains,N,N6904 +strained,N,N6905 +straining,N,N6906 +strange,N,N6907 +strangely,N,N6908 +stranger,N,N6909 +strangers,N,N6910 +strangest,N,N6911 +strangle,N,N6912 +strangles,N,N6913 +strangling,N,N6914 +strangled,N,N6915 +streaky,N,N6916 +streakier,N,N6917 +streakiest,N,N6918 +streakily,N,N6919 +strenuous,N,N6920 +strenuously,N,N6921 +stress,N,N6922 +stresses,N,N6923 +stressful,N,N6924 +stressfully,N,N6925 +stricken,N,N6926 +strict,N,N6927 +strictly,N,N6928 +strident,N,N6929 +stridently,N,N6930 +strife,N,N6931 +strike,N,N6932 +strikes,N,N6933 +striking,N,N6934 +stringent,N,N6935 +stringently,N,N6936 +struck,N,N6937 +struggle,N,N6938 +struggled,N,N6939 +struggles,N,N6940 +struggling,N,N6941 +strut,N,N6942 +struts,N,N6943 +strutting,N,N6944 +strutted,N,N6945 +stubborn,N,N6946 +stubbornly,N,N6947 +stubbornness,N,N6948 +stuck,N,N6949 +stuffy,N,N6950 +stuffier,N,N6951 +stuffiest,N,N6952 +stuffily,N,N6953 +stumble,N,N6954 +stumbled,N,N6955 +stumbles,N,N6956 +stumbling,N,N6957 +stump,N,N6958 +stumping,N,N6959 +stumped,N,N6960 +stumps,N,N6961 +stun,N,N6962 +stuns,N,N6963 +stunning,N,N6964 +stunned,N,N6965 +stunt,N,N6966 +stunts,N,N6967 +stunting,N,N6968 +stunted,N,N6969 +stupid,N,N6970 +stupider,N,N6971 +stupidest,N,N6972 +stupidity,N,N6973 +stupidly,N,N6974 +stupidness,N,N6975 +stupified,N,N6976 +stupify,N,N6977 +stupifies,N,N6978 +stupifying,N,N6979 +stupor,N,N6980 +stutter,N,N6981 +stuttered,N,N6982 +stuttering,N,N6983 +stutters,N,N6984 +sty,N,N6985 +sties,N,N6986 +stymie,N,N6987 +stymies,N,N6988 +stymieing,N,N6989 +stymied,N,N6990 +subpar,N,N6991 +subdued,N,N6992 +subjected,N,N6993 +subjection,N,N6994 +subjugate,N,N6995 +subjugates,N,N6996 +subjugating,N,N6997 +subjugated,N,N6998 +subjugation,N,N6999 +submissive,N,N7000 +submissively,N,N7001 +subordinate,N,N7002 +subordinately,N,N7003 +subpoena,N,N7004 +subpoenas,N,N7005 +subservience,N,N7006 +subservient,N,N7007 +subserviently,N,N7008 +substandard,N,N7009 +subtract,N,N7010 +subtracts,N,N7011 +subtracting,N,N7012 +subtracted,N,N7013 +subversion,N,N7014 +subversive,N,N7015 +subversively,N,N7016 +subvert,N,N7017 +subverts,N,N7018 +subverting,N,N7019 +subverted,N,N7020 +succumb,N,N7021 +succumbs,N,N7022 +succumbing,N,N7023 +succumbed,N,N7024 +suck,N,N7025 +sucking,N,N7026 +sucked,N,N7027 +sucker,N,N7028 +suckered,N,N7029 +suckers,N,N7030 +sucks,N,N7031 +sucky,N,N7032 +suckier,N,N7033 +suckiest,N,N7034 +sue,N,N7035 +sued,N,N7036 +suing,N,N7037 +sues,N,N7038 +suffer,N,N7039 +suffered,N,N7040 +sufferer,N,N7041 +sufferers,N,N7042 +suffering,N,N7043 +suffers,N,N7044 +suffocate,N,N7045 +suffocates,N,N7046 +suffocating,N,N7047 +suffocated,N,N7048 +sugarcoat,N,N7049 +sugarcoats,N,N7050 +sugarcoating,N,N7051 +sugarcoated,N,N7052 +suicidal,N,N7053 +suicidally,N,N7054 +suicide,N,N7055 +suicides,N,N7056 +sulk,N,N7057 +sulks,N,N7058 +sulking,N,N7059 +sulked,N,N7060 +sullen,N,N7061 +sullenly,N,N7062 +sully,N,N7063 +sullies,N,N7064 +sullying,N,N7065 +sullied,N,N7066 +sunder,N,N7067 +sunders,N,N7068 +sundering,N,N7069 +sundered,N,N7070 +sunk,N,N7071 +sunken,N,N7072 +superficial,N,N7073 +superficiality,N,N7074 +superficially,N,N7075 +superfluous,N,N7076 +superfluously,N,N7077 +superstition,N,N7078 +superstitions,N,N7079 +superstitious,N,N7080 +superstitiously,N,N7081 +supposed,N,N7082 +suppress,N,N7083 +suppresses,N,N7084 +suppressing,N,N7085 +suppressed,N,N7086 +suppression,N,N7087 +surrender,N,N7088 +surrenders,N,N7089 +surrendering,N,N7090 +surrendered,N,N7091 +susceptible,N,N7092 +susceptibly,N,N7093 +suspect,N,N7094 +suspects,N,N7095 +suspicion,N,N7096 +suspicions,N,N7097 +suspicious,N,N7098 +suspiciously,N,N7099 +swagger,N,N7100 +swaggers,N,N7101 +swaggering,N,N7102 +swaggered,N,N7103 +swallowed,N,N7104 +swamped,N,N7105 +sweaty,N,N7106 +sweatier,N,N7107 +sweatiest,N,N7108 +sweatily,N,N7109 +sweeping,N,N7110 +swindle,N,N7111 +swindles,N,N7112 +swindling,N,N7113 +swindled,N,N7114 +swipe,N,N7115 +swipes,N,N7116 +swiping,N,N7117 +swiped,N,N7118 +swollen,N,N7119 +swollenly,N,N7120 +sycophant,N,N7121 +sycophants,N,N7122 +symptom,N,N7123 +symptoms,N,N7124 +syndrome,N,N7125 +syndromes,N,N7126 +taboo,N,N7127 +tacky,N,N7128 +tackier,N,N7129 +tackiest,N,N7130 +taint,N,N7131 +taints,N,N7132 +tainting,N,N7133 +tainted,N,N7134 +taken_over,N,N7135 +taking_a_bath,N,N7136 +taking_over,N,N7137 +tamper,N,N7138 +tampers,N,N7139 +tampering,N,N7140 +tampered,N,N7141 +tangle,N,N7142 +tangled,N,N7143 +tangles,N,N7144 +tangling,N,N7145 +tank,N,N7146 +tanking,N,N7147 +tanked,N,N7148 +tanks,N,N7149 +tantrum,N,N7150 +tantrums,N,N7151 +tardy,N,N7152 +tardier,N,N7153 +tardiest,N,N7154 +tardily,N,N7155 +target,N,N7156 +targets,N,N7157 +targetting,N,N7158 +targetted,N,N7159 +tarnish,N,N7160 +tarnished,N,N7161 +tarnishes,N,N7162 +tarnishing,N,N7163 +tattered,N,N7164 +taunt,N,N7165 +taunting,N,N7166 +tauntingly,N,N7167 +taunts,N,N7168 +taunted,N,N7169 +taut,N,N7170 +tauter,N,N7171 +tautest,N,N7172 +tautly,N,N7173 +tawdry,N,N7174 +tawdrier,N,N7175 +tawdriest,N,N7176 +tawdrily,N,N7177 +taxing,N,N7178 +tear_up,N,N7179 +tease,N,N7180 +teases,N,N7181 +teasing,N,N7182 +teasingly,N,N7183 +teased,N,N7184 +tedious,N,N7185 +tediously,N,N7186 +temerity,N,N7187 +temper,N,N7188 +tempers,N,N7189 +tempest,N,N7190 +tempests,N,N7191 +temptation,N,N7192 +temptations,N,N7193 +tense,N,N7194 +tenser,N,N7195 +tensest,N,N7196 +tensely,N,N7197 +tension,N,N7198 +tensions,N,N7199 +tentative,N,N7200 +tentatively,N,N7201 +tenuous,N,N7202 +tenuously,N,N7203 +tepid,N,N7204 +tepidly,N,N7205 +terrible,N,N7206 +terribleness,N,N7207 +terribly,N,N7208 +terror,N,N7209 +terrors,N,N7210 +terror-genic,N,N7211 +terrorism,N,N7212 +terrorist,N,N7213 +terrorists,N,N7214 +terroristic,N,N7215 +terrorize,N,N7216 +terrorizes,N,N7217 +terrorizing,N,N7218 +terrorized,N,N7219 +testily,N,N7220 +testy,N,N7221 +testier,N,N7222 +testiest,N,N7223 +tetchily,N,N7224 +tetchy,N,N7225 +tetchier,N,N7226 +tetchiest,N,N7227 +thankless,N,N7228 +thanklessly,N,N7229 +thirst,N,N7230 +thorny,N,N7231 +thornier,N,N7232 +thorniest,N,N7233 +thornily,N,N7234 +thoughtless,N,N7235 +thoughtlessly,N,N7236 +thoughtlessness,N,N7237 +thrash,N,N7238 +thrashes,N,N7239 +thrashing,N,N7240 +thrashed,N,N7241 +threat,N,N7242 +threaten,N,N7243 +threatens,N,N7244 +threatening,N,N7245 +threatened,N,N7246 +threats,N,N7247 +threesome,N,N7248 +threesomes,N,N7249 +throb,N,N7250 +throbbed,N,N7251 +throbbing,N,N7252 +throbs,N,N7253 +throttle,N,N7254 +throttles,N,N7255 +throttling,N,N7256 +throttled,N,N7257 +thug,N,N7258 +thugs,N,N7259 +thumbs-down,N,N7260 +thwart,N,N7261 +thwarts,N,N7262 +thwarting,N,N7263 +thwarted,N,N7264 +tie,N,N7265 +ties,N,N7266 +tying,N,N7267 +tied,N,N7268 +tiger_mom,N,N7269 +time-consuming,N,N7270 +timid,N,N7271 +timidity,N,N7272 +timidly,N,N7273 +timidness,N,N7274 +tingle,N,N7275 +tingles,N,N7276 +tingled,N,N7277 +tingling,N,N7278 +tire,N,N7279 +tires,N,N7280 +tired,N,N7281 +tiredly,N,N7282 +tiresome,N,N7283 +tiresomely,N,N7284 +tiring,N,N7285 +tiringly,N,N7286 +toady,N,N7287 +toadies,N,N7288 +toddler,N,N7289 +toddlers,N,N7290 +toil,N,N7291 +toils,N,N7292 +toiling,N,N7293 +toiled,N,N7294 +toll,N,N7295 +tolls,N,N7296 +top-heavy,N,N7297 +topple,N,N7298 +topples,N,N7299 +toppling,N,N7300 +toppled,N,N7301 +torment,N,N7302 +torments,N,N7303 +tormenting,N,N7304 +tormented,N,N7305 +torrent,N,N7306 +tortuous,N,N7307 +tortuously,N,N7308 +torture,N,N7309 +tortured,N,N7310 +tortures,N,N7311 +torturing,N,N7312 +torturous,N,N7313 +torturously,N,N7314 +totalitarian,N,N7315 +touchy,N,N7316 +touchier,N,N7317 +touchiest,N,N7318 +touchily,N,N7319 +tout,N,N7320 +touted,N,N7321 +touting,N,N7322 +touts,N,N7323 +toxic,N,N7324 +toxically,N,N7325 +traduce,N,N7326 +traduces,N,N7327 +traducing,N,N7328 +traduced,N,N7329 +tragedy,N,N7330 +tragedies,N,N7331 +tragic,N,N7332 +tragically,N,N7333 +traitor,N,N7334 +traitorous,N,N7335 +traitorously,N,N7336 +traitors,N,N7337 +tramp,N,N7338 +tramps,N,N7339 +trample,N,N7340 +tramples,N,N7341 +trampling,N,N7342 +trampled,N,N7343 +transgress,N,N7344 +transgresses,N,N7345 +transgressing,N,N7346 +transgressed,N,N7347 +transgression,N,N7348 +transgressions,N,N7349 +trap,N,N7350 +traps,N,N7351 +trapping,N,N7352 +trapped,N,N7353 +trash,N,N7354 +trashes,N,N7355 +trashed,N,N7356 +trashing,N,N7357 +trashy,N,N7358 +trashier,N,N7359 +trashiest,N,N7360 +trashily,N,N7361 +trauma,N,N7362 +traumatic,N,N7363 +traumatically,N,N7364 +traumatize,N,N7365 +traumatizes,N,N7366 +traumatizing,N,N7367 +traumatized,N,N7368 +travesties,N,N7369 +travesty,N,N7370 +treacherous,N,N7371 +treacherously,N,N7372 +treachery,N,N7373 +treason,N,N7374 +treasonous,N,N7375 +treasonously,N,N7376 +trick,N,N7377 +tricks,N,N7378 +tricking,N,N7379 +tricked,N,N7380 +trickery,N,N7381 +tricky,N,N7382 +trickier,N,N7383 +trickiest,N,N7384 +trickily,N,N7385 +trivial,N,N7386 +trivially,N,N7387 +trivialize,N,N7388 +trivializes,N,N7389 +trivializing,N,N7390 +trivialized,N,N7391 +trouble,N,N7392 +troubled,N,N7393 +troublemaker,N,N7394 +troublemakers,N,N7395 +troubles,N,N7396 +troublesome,N,N7397 +troublesomely,N,N7398 +troubling,N,N7399 +troublingly,N,N7400 +truant,N,N7401 +truants,N,N7402 +tumble,N,N7403 +tumbled,N,N7404 +tumbles,N,N7405 +tumbling,N,N7406 +tumultuous,N,N7407 +tumultuously,N,N7408 +turbulent,N,N7409 +turbulently,N,N7410 +turmoil,N,N7411 +turning_on,N,N7412 +twist,N,N7413 +twisting,N,N7414 +twisted,N,N7415 +twists,N,N7416 +two-faced,N,N7417 +two-faces,N,N7418 +tyrannical,N,N7419 +tyrannically,N,N7420 +tyranny,N,N7421 +tyrant,N,N7422 +tyrants,N,N7423 +ugh,N,N7424 +uglier,N,N7425 +ugliest,N,N7426 +ugliness,N,N7427 +ugly,N,N7428 +ulterior,N,N7429 +ultimatum,N,N7430 +ultimatums,N,N7431 +ultra-hardline,N,N7432 +unable,N,N7433 +unacceptable,N,N7434 +unacceptably,N,N7435 +unaccessible,N,N7436 +unaccessibly,N,N7437 +unaccustomed,N,N7438 +unachievable,N,N7439 +unachievably,N,N7440 +unaffordable,N,N7441 +unaffordably,N,N7442 +unappealing,N,N7443 +unattractive,N,N7444 +unattractively,N,N7445 +unauthentic,N,N7446 +unauthentically,N,N7447 +unauthorized,N,N7448 +unavailable,N,N7449 +unavailably,N,N7450 +unavoidable,N,N7451 +unavoidably,N,N7452 +unbearable,N,N7453 +unbearably,N,N7454 +unbelievable,N,N7455 +unbelievably,N,N7456 +uncaring,N,N7457 +uncertain,N,N7458 +uncertainly,N,N7459 +unchecked,N,N7460 +uncivil,N,N7461 +uncivilly,N,N7462 +uncivilized,N,N7463 +unclean,N,N7464 +unclear,N,N7465 +unclearly,N,N7466 +uncollectible,N,N7467 +uncomfortable,N,N7468 +uncomfortably,N,N7469 +uncomfy,N,N7470 +uncompetitive,N,N7471 +uncompetitively,N,N7472 +uncompromising,N,N7473 +uncompromisingly,N,N7474 +unconfirmed,N,N7475 +unconstitutional,N,N7476 +unconstitutionally,N,N7477 +uncontrolled,N,N7478 +unconvincing,N,N7479 +unconvincingly,N,N7480 +uncooperative,N,N7481 +uncooperatively,N,N7482 +uncouth,N,N7483 +uncreative,N,N7484 +uncreatively,N,N7485 +undecided,N,N7486 +undefined,N,N7487 +undependability,N,N7488 +undependable,N,N7489 +undependably,N,N7490 +undercut,N,N7491 +undercuts,N,N7492 +undercutting,N,N7493 +underdog,N,N7494 +underdogs,N,N7495 +underestimate,N,N7496 +underestimates,N,N7497 +underestimating,N,N7498 +underestimated,N,N7499 +underling,N,N7500 +underlings,N,N7501 +undermine,N,N7502 +undermined,N,N7503 +undermines,N,N7504 +undermining,N,N7505 +underpaid,N,N7506 +underpowered,N,N7507 +undersized,N,N7508 +undesirable,N,N7509 +undesirably,N,N7510 +undetermined,N,N7511 +undid,N,N7512 +undignified,N,N7513 +undissolved,N,N7514 +undocumented,N,N7515 +undone,N,N7516 +undue,N,N7517 +unease,N,N7518 +uneasily,N,N7519 +uneasiness,N,N7520 +uneasy,N,N7521 +uneconomical,N,N7522 +uneconomically,N,N7523 +uneducated,N,N7524 +unemployed,N,N7525 +unequal,N,N7526 +unequally,N,N7527 +unethical,N,N7528 +unethically,N,N7529 +uneven,N,N7530 +unevenly,N,N7531 +uneventful,N,N7532 +uneventfully,N,N7533 +unexpected,N,N7534 +unexpectedly,N,N7535 +unexplained,N,N7536 +unfair,N,N7537 +unfairly,N,N7538 +unfaithful,N,N7539 +unfaithfully,N,N7540 +unfamiliar,N,N7541 +unfamiliarly,N,N7542 +unfavorable,N,N7543 +unfavorably,N,N7544 +unfeeling,N,N7545 +unfinished,N,N7546 +unfit,N,N7547 +unforeseen,N,N7548 +unforgiving,N,N7549 +unforgivingly,N,N7550 +unfortunate,N,N7551 +unfortunately,N,N7552 +unfounded,N,N7553 +unfriendly,N,N7554 +unfulfilled,N,N7555 +unfunded,N,N7556 +unglued,N,N7557 +ungovernable,N,N7558 +ungovernably,N,N7559 +ungrateful,N,N7560 +ungratefully,N,N7561 +unhappily,N,N7562 +unhappiness,N,N7563 +unhappy,N,N7564 +unhealthy,N,N7565 +unhelpful,N,N7566 +unhelpfully,N,N7567 +unhinged,N,N7568 +unilateralism,N,N7569 +unimaginable,N,N7570 +unimaginably,N,N7571 +unimportant,N,N7572 +unimportantly,N,N7573 +uninformed,N,N7574 +uninsured,N,N7575 +unintelligible,N,N7576 +unintelligibly,N,N7577 +uninterested,N,N7578 +unipolar,N,N7579 +unjust,N,N7580 +unjustifiable,N,N7581 +unjustifiably,N,N7582 +unjustified,N,N7583 +unjustly,N,N7584 +unkind,N,N7585 +unkindly,N,N7586 +unknown,N,N7587 +unlamentable,N,N7588 +unlamentably,N,N7589 +unlawful,N,N7590 +unlawfully,N,N7591 +unlawfulness,N,N7592 +unleash,N,N7593 +unleashes,N,N7594 +unleashing,N,N7595 +unleashed,N,N7596 +unlicensed,N,N7597 +unlikely,N,N7598 +unlucky,N,N7599 +unluckier,N,N7600 +unluckiest,N,N7601 +unluckily,N,N7602 +unmoved,N,N7603 +unnatural,N,N7604 +unnaturally,N,N7605 +unnecessary,N,N7606 +unnecessarily,N,N7607 +unneeded,N,N7608 +unnerve,N,N7609 +unnerves,N,N7610 +unnerved,N,N7611 +unnerving,N,N7612 +unnervingly,N,N7613 +unnoticed,N,N7614 +unobserved,N,N7615 +unorthodox,N,N7616 +unorthodoxy,N,N7617 +unpleasant,N,N7618 +unpleasantly,N,N7619 +unpleasantries,N,N7620 +unpopular,N,N7621 +unpopularly,N,N7622 +unpredictable,N,N7623 +unpredicably,N,N7624 +unprepared,N,N7625 +unproductive,N,N7626 +unproductively,N,N7627 +unprofitable,N,N7628 +unprofitably,N,N7629 +unprove,N,N7630 +unproved,N,N7631 +unproven,N,N7632 +unproves,N,N7633 +unproving,N,N7634 +unqualified,N,N7635 +unravel,N,N7636 +unravels,N,N7637 +unraveling,N,N7638 +unraveled,N,N7639 +unreachable,N,N7640 +unreadable,N,N7641 +unrealistic,N,N7642 +unrealistically,N,N7643 +unreasonable,N,N7644 +unreasonably,N,N7645 +unrelenting,N,N7646 +unrelentingly,N,N7647 +unreliability,N,N7648 +unreliable,N,N7649 +unreliably,N,N7650 +unresolved,N,N7651 +unresponsive,N,N7652 +unresponsively,N,N7653 +unrest,N,N7654 +unrivaled,N,N7655 +unruly,N,N7656 +unsafe,N,N7657 +unsatisfactory,N,N7658 +unsavory,N,N7659 +unscrupulous,N,N7660 +unscrupulously,N,N7661 +unsecure,N,N7662 +unseemly,N,N7663 +unsettle,N,N7664 +unsettles,N,N7665 +unsettled,N,N7666 +unsettling,N,N7667 +unsettlingly,N,N7668 +unskilled,N,N7669 +unsophisticated,N,N7670 +unsound,N,N7671 +unspeakable,N,N7672 +unspeakably,N,N7673 +unspecified,N,N7674 +unstable,N,N7675 +unsteadily,N,N7676 +unsteadiness,N,N7677 +unsteady,N,N7678 +unstoppable,N,N7679 +unstoppably,N,N7680 +unsuccessful,N,N7681 +unsuccessfully,N,N7682 +unsupported,N,N7683 +unsupportive,N,N7684 +unsupportively,N,N7685 +unsure,N,N7686 +unsuspecting,N,N7687 +unsustainable,N,N7688 +unsustainably,N,N7689 +untenable,N,N7690 +untenably,N,N7691 +untested,N,N7692 +unthinkable,N,N7693 +unthinkably,N,N7694 +untimely,N,N7695 +untrue,N,N7696 +untrustworthy,N,N7697 +untruthful,N,N7698 +untruthfully,N,N7699 +unusable,N,N7700 +unusably,N,N7701 +unusual,N,N7702 +unusually,N,N7703 +unviewable,N,N7704 +unwanted,N,N7705 +unwarranted,N,N7706 +unwatchable,N,N7707 +unwelcome,N,N7708 +unwell,N,N7709 +unwieldy,N,N7710 +unwilling,N,N7711 +unwillingly,N,N7712 +unwillingness,N,N7713 +unwise,N,N7714 +unwisely,N,N7715 +unworkable,N,N7716 +unworthy,N,N7717 +unyielding,N,N7718 +unyieldingly,N,N7719 +upbraid,N,N7720 +upbraids,N,N7721 +upbraiding,N,N7722 +upbraided,N,N7723 +upheaval,N,N7724 +uprising,N,N7725 +uprisings,N,N7726 +uproar,N,N7727 +uproarious,N,N7728 +uproariously,N,N7729 +uproot,N,N7730 +uproots,N,N7731 +uprooting,N,N7732 +uprooted,N,N7733 +upset,N,N7734 +upsets,N,N7735 +upsetting,N,N7736 +upsettingly,N,N7737 +urgent,N,N7738 +urgently,N,N7739 +useless,N,N7740 +uselessly,N,N7741 +usurp,N,N7742 +usurps,N,N7743 +usurping,N,N7744 +usurped,N,N7745 +usurper,N,N7746 +usurpers,N,N7747 +vagrant,N,N7748 +vagrants,N,N7749 +vain,N,N7750 +vainly,N,N7751 +vanity,N,N7752 +vehement,N,N7753 +vehemently,N,N7754 +vengeance,N,N7755 +vengeful,N,N7756 +vengefully,N,N7757 +vengefulness,N,N7758 +venom,N,N7759 +venomous,N,N7760 +venomously,N,N7761 +vent,N,N7762 +vents,N,N7763 +venting,N,N7764 +vented,N,N7765 +vermin,N,N7766 +vestige,N,N7767 +vestiges,N,N7768 +vex,N,N7769 +vexes,N,N7770 +vexed,N,N7771 +vexation,N,N7772 +vexations,N,N7773 +vexing,N,N7774 +vexingly,N,N7775 +vice,N,N7776 +vices,N,N7777 +vicious,N,N7778 +viciously,N,N7779 +viciousness,N,N7780 +victimize,N,N7781 +victimizes,N,N7782 +victimizing,N,N7783 +victimized,N,N7784 +vile,N,N7785 +viler,N,N7786 +vilest,N,N7787 +vilely,N,N7788 +vileness,N,N7789 +vilify,N,N7790 +vilifies,N,N7791 +vilifying,N,N7792 +vilified,N,N7793 +villain,N,N7794 +villainous,N,N7795 +villainously,N,N7796 +villains,N,N7797 +vindictive,N,N7798 +vindictively,N,N7799 +vindictiveness,N,N7800 +violate,N,N7801 +violates,N,N7802 +violating,N,N7803 +violated,N,N7804 +violation,N,N7805 +violations,N,N7806 +violator,N,N7807 +violators,N,N7808 +violent,N,N7809 +violently,N,N7810 +viper,N,N7811 +vipers,N,N7812 +virulence,N,N7813 +virulent,N,N7814 +virulently,N,N7815 +virus,N,N7816 +viruses,N,N7817 +vitriol,N,N7818 +vociferous,N,N7819 +vociferously,N,N7820 +volatile,N,N7821 +volatility,N,N7822 +vomit,N,N7823 +vomited,N,N7824 +vomiting,N,N7825 +vomits,N,N7826 +vote_any_way_they're_told,N,N7827 +vulgar,N,N7828 +vulgarly,N,N7829 +vulnerable,N,N7830 +vulnerably,N,N7831 +wack,N,N7832 +wail,N,N7833 +wails,N,N7834 +wailing,N,N7835 +wailed,N,N7836 +wallow,N,N7837 +wallows,N,N7838 +wallowing,N,N7839 +wallowed,N,N7840 +wane,N,N7841 +wanes,N,N7842 +waning,N,N7843 +waned,N,N7844 +wanton,N,N7845 +war,N,N7846 +wars,N,N7847 +warily,N,N7848 +wariness,N,N7849 +warlike,N,N7850 +warn,N,N7851 +warns,N,N7852 +warned,N,N7853 +warning,N,N7854 +warp,N,N7855 +warps,N,N7856 +warping,N,N7857 +warped,N,N7858 +wary,N,N7859 +washed-out,N,N7860 +waste,N,N7861 +wastes,N,N7862 +wasted,N,N7863 +wasteful,N,N7864 +wastefully,N,N7865 +wastefulness,N,N7866 +wasting,N,N7867 +water-down,N,N7868 +watered-down,N,N7869 +wayward,N,N7870 +weak,N,N7871 +weakest,N,N7872 +weaken,N,N7873 +weakens,N,N7874 +weakening,N,N7875 +weakened,N,N7876 +weaker,N,N7877 +weakness,N,N7878 +weaknesses,N,N7879 +weariness,N,N7880 +wearisome,N,N7881 +weary,N,N7882 +wearily,N,N7883 +wedge,N,N7884 +wedges,N,N7885 +wedging,N,N7886 +wedged,N,N7887 +weed,N,N7888 +weep,N,N7889 +weeps,N,N7890 +weeping,N,N7891 +weeped,N,N7892 +weird,N,N7893 +weirdly,N,N7894 +weirdness,N,N7895 +well-coached,N,N7896 +wheedle,N,N7897 +wheedles,N,N7898 +wheedling,N,N7899 +wheedled,N,N7900 +whimper,N,N7901 +whimpers,N,N7902 +whimpering,N,N7903 +whimpered,N,N7904 +whine,N,N7905 +whines,N,N7906 +whining,N,N7907 +whined,N,N7908 +whiny,N,N7909 +whinier,N,N7910 +whiniest,N,N7911 +whip,N,N7912 +whips,N,N7913 +whipping,N,N7914 +whipped,N,N7915 +whore,N,N7916 +whores,N,N7917 +wicked,N,N7918 +wickedly,N,N7919 +wickedness,N,N7920 +wild,N,N7921 +wilder,N,N7922 +wildest,N,N7923 +wildly,N,N7924 +wiles,N,N7925 +wilt,N,N7926 +wilts,N,N7927 +wilting,N,N7928 +wilted,N,N7929 +wily,N,N7930 +wilier,N,N7931 +wiliest,N,N7932 +wilily,N,N7933 +wimpy,N,N7934 +wimpier,N,N7935 +wimpiest,N,N7936 +wince,N,N7937 +winces,N,N7938 +wincing,N,N7939 +winced,N,N7940 +witch_hunt,N,N7941 +wobble,N,N7942 +wobbled,N,N7943 +wobbles,N,N7944 +wobbling,N,N7945 +woe,N,N7946 +woes,N,N7947 +woebegone,N,N7948 +woeful,N,N7949 +woefully,N,N7950 +womanizer,N,N7951 +womanizers,N,N7952 +womanize,N,N7953 +womanizes,N,N7954 +womanizing,N,N7955 +womanized,N,N7956 +worm,N,N7957 +worms,N,N7958 +worn,N,N7959 +worried,N,N7960 +worriedly,N,N7961 +worrier,N,N7962 +worriers,N,N7963 +worries,N,N7964 +worrisome,N,N7965 +worry,N,N7966 +worrying,N,N7967 +worryingly,N,N7968 +worse,N,N7969 +worsen,N,N7970 +worsens,N,N7971 +worsening,N,N7972 +worsened,N,N7973 +worst,N,N7974 +worthless,N,N7975 +worthlessly,N,N7976 +worthlessness,N,N7977 +wound,N,N7978 +wounds,N,N7979 +wounding,N,N7980 +wounded,N,N7981 +wrangle,N,N7982 +wrangles,N,N7983 +wrangling,N,N7984 +wrangled,N,N7985 +wrath,N,N7986 +wreak,N,N7987 +wreaking,N,N7988 +wreaked,N,N7989 +wreaks,N,N7990 +wreck,N,N7991 +wrecks,N,N7992 +wrecking,N,N7993 +wrecked,N,N7994 +wrest,N,N7995 +wrests,N,N7996 +wresting,N,N7997 +wrested,N,N7998 +wrestle,N,N7999 +wrestles,N,N8000 +wrestling,N,N8001 +wrestled,N,N8002 +wretch,N,N8003 +wretches,N,N8004 +wretched,N,N8005 +wretchedly,N,N8006 +wretchedness,N,N8007 +wring,N,N8008 +wrings,N,N8009 +wringing,N,N8010 +wrung,N,N8011 +wrinkle,N,N8012 +wrinkling,N,N8013 +wrinkled,N,N8014 +wrinkles,N,N8015 +writhe,N,N8016 +writhes,N,N8017 +writhing,N,N8018 +writhed,N,N8019 +bullcrap,N,N8020 +wrong,N,N8021 +wrongful,N,N8022 +wrongfully,N,N8023 +wrongly,N,N8024 +wrought,N,N8025 +yawn,N,N8026 +yawns,N,N8027 +yawning,N,N8028 +yawned,N,N8029 +zap,N,N8030 +zapping,N,N8031 +zapped,N,N8032 +zaps,N,N8033 +zealot,N,N8034 +zealots,N,N8035 +zealous,N,N8036 +zealously,N,N8037 +zombie,N,N8038 +zombies,N,N8039 +false,N,N8040 +unapologetic,N,N8041 +unapologetically,N,N8042 +nazi,N,N8043 +nazis,N,N8044 +"blood libel +",N,N8045 +"Clannish +",N,N8046 +"conspiracy theory +",N,N8047 +conspiracy,N,N8048 +Control,N,N8049 +"cosmopolitan elite +",N,N8050 +Creatures,N,N8051 +Deicide,N,N8052 +"dual loyalty +",N,N8053 +"Gaslighting +",N,N8054 +Globalist,N,N8055 +Intifada,N,N8056 +"The Goyim Know +",N,N8057 +"Great Replacement +",N,N8058 +"Holocaust denial/distortion +",N,N8059 +Holohoax,N,N8060 +Illuminati,N,N8061 +Judas,N,N8062 +"Khazars +",N,N8063 +Kike,N,N8064 +"kosher tax +",N,N8065 +"laughing Jew +",N,N8066 +"New World Order +",N,N8067 +"Pepe the frog +",N,N8068 +Philosemitism,N,N8069 +"poisoning the well +",N,N8070 +"Protocols of the Elders of Zion +",N,N8071 +"puppet master +",N,N8072 +abundantly,P,P8073 +abundance,P,P8074 +accept,P,P8075 +accepts,P,P8076 +accepting,P,P8077 +accepted,P,P8078 +acceptable,P,P8079 +acceptably,P,P8080 +acclaim,P,P8081 +acclaimed,P,P8082 +accomplish,P,P8083 +accomplishes,P,P8084 +accomplishing,P,P8085 +accomplished,P,P8086 +ace,P,P8087 +aces,P,P8088 +acing,P,P8089 +aced,P,P8090 +accord,P,P8091 +accords,P,P8092 +according,P,P8093 +accorded,P,P8094 +achieve,P,P8095 +achieves,P,P8096 +achieving,P,P8097 +achieved,P,P8098 +achievement,P,P8099 +achievements,P,P8100 +achievable,P,P8101 +achievably,P,P8102 +accolade,P,P8103 +accolades,P,P8104 +adept,P,P8105 +adeptly,P,P8106 +admirable,P,P8107 +admirably,P,P8108 +admire,P,P8109 +admires,P,P8110 +admiring,P,P8111 +admired,P,P8112 +adorable,P,P8113 +adorableness,P,P8114 +adorably,P,P8115 +adore,P,P8116 +adored,P,P8117 +adoring,P,P8118 +adorer,P,P8119 +adorers,P,P8120 +adventurous,P,P8121 +adventurously,P,P8122 +adventurousness,P,P8123 +affable,P,P8124 +affably,P,P8125 +affability,P,P8126 +affectionate,P,P8127 +affection,P,P8128 +affectionately,P,P8129 +affirm,P,P8130 +affirms,P,P8131 +affirming,P,P8132 +affirmed,P,P8133 +affirmation,P,P8134 +affirmations,P,P8135 +agreeable,P,P8136 +agreeably,P,P8137 +agree,P,P8138 +agreed,P,P8139 +agreeing,P,P8140 +agrees,P,P8141 +aid,P,P8142 +aids,P,P8143 +aiding,P,P8144 +aided,P,P8145 +alacrity,P,P8146 +altruistic,P,P8147 +altruistically,P,P8148 +altruist,P,P8149 +amazing,P,P8150 +amaze,P,P8151 +amazes,P,P8152 +amazed,P,P8153 +ambitious,P,P8154 +ambitiously,P,P8155 +amiable,P,P8156 +amiably,P,P8157 +amicable,P,P8158 +amicably,P,P8159 +amity,P,P8160 +amusing,P,P8161 +amusingly,P,P8162 +amuse,P,P8163 +amuses,P,P8164 +amused,P,P8165 +angelic,P,P8166 +angelical,P,P8167 +angelically,P,P8168 +angel,P,P8169 +angels,P,P8170 +appealing,P,P8171 +appealingly,P,P8172 +appeal,P,P8173 +appeals,P,P8174 +appealed,P,P8175 +applaud,P,P8176 +applauds,P,P8177 +applauding,P,P8178 +applauded,P,P8179 +applause,P,P8180 +appreciated,P,P8181 +appreciate,P,P8182 +appreciating,P,P8183 +appreciates,P,P8184 +appreciative,P,P8185 +appreciation,P,P8186 +appreciatively,P,P8187 +approve,P,P8188 +approves,P,P8189 +approving,P,P8190 +approved,P,P8191 +approvingly,P,P8192 +approval,P,P8193 +ascend,P,P8194 +ascends,P,P8195 +ascending,P,P8196 +ascended,P,P8197 +ascendingly,P,P8198 +aspire,P,P8199 +aspires,P,P8200 +aspiring,P,P8201 +aspired,P,P8202 +aspiration,P,P8203 +aspirations,P,P8204 +assent,P,P8205 +assents,P,P8206 +assenting,P,P8207 +assented,P,P8208 +assist,P,P8209 +assists,P,P8210 +assisting,P,P8211 +assisted,P,P8212 +assistingly,P,P8213 +assure,P,P8214 +assures,P,P8215 +assuring,P,P8216 +assured,P,P8217 +assurance,P,P8218 +assurances,P,P8219 +attains,P,P8220 +attain,P,P8221 +attaining,P,P8222 +attained,P,P8223 +attainment,P,P8224 +attentive,P,P8225 +attentively,P,P8226 +attest,P,P8227 +attests,P,P8228 +attesting,P,P8229 +attested,P,P8230 +attraction,P,P8231 +attract,P,P8232 +attracts,P,P8233 +attracting,P,P8234 +attracted,P,P8235 +attractive,P,P8236 +attractively,P,P8237 +attune,P,P8238 +attunes,P,P8239 +attuning,P,P8240 +attuned,P,P8241 +auspicious,P,P8242 +auspiciously,P,P8243 +authentic,P,P8244 +authentically,P,P8245 +avid,P,P8246 +avidly,P,P8247 +award,P,P8248 +awards,P,P8249 +awarding,P,P8250 +awarded,P,P8251 +awesome,P,P8252 +awesomely,P,P8253 +balanced,P,P8254 +balance,P,P8255 +beatific,P,P8256 +beatifically,P,P8257 +beatify,P,P8258 +beatifies,P,P8259 +beatifying,P,P8260 +beatified,P,P8261 +beatitude,P,P8262 +beautiful,P,P8263 +beautifully,P,P8264 +beauty,P,P8265 +beautify,P,P8266 +beautifies,P,P8267 +beautifying,P,P8268 +beautified,P,P8269 +befriend,P,P8270 +befriends,P,P8271 +befriending,P,P8272 +befriended,P,P8273 +believe,P,P8274 +believes,P,P8275 +believing,P,P8276 +believed,P,P8277 +belief,P,P8278 +believer,P,P8279 +believers,P,P8280 +beloved,P,P8281 +benefit,P,P8282 +benefits,P,P8283 +benefitting,P,P8284 +benefitted,P,P8285 +benefaction,P,P8286 +beneficial,P,P8287 +beneficially,P,P8288 +benevolent,P,P8289 +benevolently,P,P8290 +best,P,P8291 +bestow,P,P8292 +bestows,P,P8293 +bestowing,P,P8294 +bestowed,P,P8295 +better,P,P8296 +betterment,P,P8297 +blessed,P,P8298 +blessing,P,P8299 +bless,P,P8300 +blesses,P,P8301 +bliss,P,P8302 +blissful,P,P8303 +blithe,P,P8304 +blithely,P,P8305 +blitheful,P,P8306 +blithfully,P,P8307 +blithesome,P,P8308 +bloom,P,P8309 +blooms,P,P8310 +blooming,P,P8311 +bloomed,P,P8312 +blossom,P,P8313 +blossoms,P,P8314 +blossoming,P,P8315 +blossomed,P,P8316 +bold,P,P8317 +boldly,P,P8318 +bolder,P,P8319 +boldest,P,P8320 +bona_fide,P,P8321 +bonanza,P,P8322 +bonus,P,P8323 +bonuses,P,P8324 +boost,P,P8325 +boosts,P,P8326 +boosting,P,P8327 +boosted,P,P8328 +bountiful,P,P8329 +bountifully,P,P8330 +bounty,P,P8331 +bounties,P,P8332 +brave,P,P8333 +bravery,P,P8334 +braver,P,P8335 +bravest,P,P8336 +breathtaking,P,P8337 +breathtakingly,P,P8338 +bright,P,P8339 +brighter,P,P8340 +brightest,P,P8341 +brighten,P,P8342 +brightens,P,P8343 +brightening,P,P8344 +brightened,P,P8345 +brilliant,P,P8346 +brilliantly,P,P8347 +broad-minded,P,P8348 +broad-mindedly,P,P8349 +bubbly,P,P8350 +bubblier,P,P8351 +bubbliest,P,P8352 +bud,P,P8353 +buds,P,P8354 +budding,P,P8355 +budded,P,P8356 +buddy,P,P8357 +buddies,P,P8358 +capable,P,P8359 +capably,P,P8360 +careful,P,P8361 +carefully,P,P8362 +caring,P,P8363 +celebrate,P,P8364 +celebrates,P,P8365 +celebrating,P,P8366 +celebrated,P,P8367 +celebration,P,P8368 +celebrations,P,P8369 +celebratory,P,P8370 +centered,P,P8371 +champion,P,P8372 +champions,P,P8373 +charismatic,P,P8374 +charitable,P,P8375 +charitably,P,P8376 +charming,P,P8377 +charmingly,P,P8378 +cheerful,P,P8379 +cheerfully,P,P8380 +cherished,P,P8381 +cherish,P,P8382 +cherishing,P,P8383 +cherishes,P,P8384 +classy,P,P8385 +classier,P,P8386 +classiest,P,P8387 +classily,P,P8388 +clean,P,P8389 +cleaner,P,P8390 +cleanest,P,P8391 +cleanly,P,P8392 +comely,P,P8393 +comelier,P,P8394 +comeliest,P,P8395 +comelily,P,P8396 +comfort,P,P8397 +comforts,P,P8398 +comforting,P,P8399 +comfortingly,P,P8400 +comforted,P,P8401 +comfortable,P,P8402 +comfortably,P,P8403 +compassionate,P,P8404 +compassionately,P,P8405 +compliment,P,P8406 +compliments,P,P8407 +complimenting,P,P8408 +complimented,P,P8409 +confident,P,P8410 +confidently,P,P8411 +confidence,P,P8412 +confirm,P,P8413 +confirms,P,P8414 +confirming,P,P8415 +confirmed,P,P8416 +confirmation,P,P8417 +confirmations,P,P8418 +congenial,P,P8419 +congenially,P,P8420 +congratulate,P,P8421 +congratulates,P,P8422 +congratulating,P,P8423 +congratulated,P,P8424 +congratulations,P,P8425 +conscientious,P,P8426 +conscientiously,P,P8427 +considerate,P,P8428 +considerately,P,P8429 +constructive,P,P8430 +constructively,P,P8431 +content,P,P8432 +contently,P,P8433 +contented,P,P8434 +contribute,P,P8435 +contributes,P,P8436 +contributing,P,P8437 +contributed,P,P8438 +contribution,P,P8439 +contributions,P,P8440 +convivial,P,P8441 +convivially,P,P8442 +cool,P,P8443 +cooperate,P,P8444 +cooperates,P,P8445 +cooperating,P,P8446 +cooperated,P,P8447 +cooperation,P,P8448 +cooperative,P,P8449 +cooperatively,P,P8450 +cordial,P,P8451 +cordially,P,P8452 +correct,P,P8453 +correctly,P,P8454 +corrects,P,P8455 +correcting,P,P8456 +corrected,P,P8457 +courageous,P,P8458 +courageously,P,P8459 +courteous,P,P8460 +courteously,P,P8461 +creative,P,P8462 +creatively,P,P8463 +cute,P,P8464 +dandy,P,P8465 +dazzled,P,P8466 +dazzle,P,P8467 +dazzling,P,P8468 +dazzles,P,P8469 +decent,P,P8470 +decently,P,P8471 +decency,P,P8472 +decisive,P,P8473 +decisively,P,P8474 +dedicated,P,P8475 +delectable,P,P8476 +delectably,P,P8477 +delicious,P,P8478 +deliciously,P,P8479 +delightful,P,P8480 +delightfully,P,P8481 +delight,P,P8482 +delighted,P,P8483 +delights,P,P8484 +delighting,P,P8485 +desirable,P,P8486 +desirably,P,P8487 +determined,P,P8488 +diligent,P,P8489 +diligently,P,P8490 +divine,P,P8491 +divinely,P,P8492 +dreamy,P,P8493 +dreamier,P,P8494 +dreamiest,P,P8495 +dreamily,P,P8496 +dynamic,P,P8497 +dynamically,P,P8498 +eager,P,P8499 +eagerly,P,P8500 +ease,P,P8501 +eases,P,P8502 +easing,P,P8503 +eased,P,P8504 +easy,P,P8505 +easily,P,P8506 +easier,P,P8507 +easiest,P,P8508 +easygoing,P,P8509 +ecstasy,P,P8510 +ecstatic,P,P8511 +ecstatically,P,P8512 +edify,P,P8513 +edifies,P,P8514 +edifying,P,P8515 +edified,P,P8516 +educate,P,P8517 +educates,P,P8518 +educating,P,P8519 +educated,P,P8520 +effective,P,P8521 +effectively,P,P8522 +efficiency,P,P8523 +efficient,P,P8524 +efficiently,P,P8525 +elated,P,P8526 +elegant,P,P8527 +elegantly,P,P8528 +elegance,P,P8529 +elevate,P,P8530 +elevates,P,P8531 +elevating,P,P8532 +elevated,P,P8533 +empathic,P,P8534 +empathically,P,P8535 +empathetic,P,P8536 +empathetically,P,P8537 +empowered,P,P8538 +empower,P,P8539 +empowers,P,P8540 +empowering,P,P8541 +enchanted,P,P8542 +enchanting,P,P8543 +encourage,P,P8544 +encourages,P,P8545 +encouraging,P,P8546 +encouraged,P,P8547 +endear,P,P8548 +endears,P,P8549 +endearing,P,P8550 +endeared,P,P8551 +endearment,P,P8552 +energetic,P,P8553 +energized,P,P8554 +engage,P,P8555 +engages,P,P8556 +engaging,P,P8557 +engaged,P,P8558 +enhance,P,P8559 +enhances,P,P8560 +enhancing,P,P8561 +enhanced,P,P8562 +enjoy,P,P8563 +enjoys,P,P8564 +enjoying,P,P8565 +enjoyed,P,P8566 +enjoyable,P,P8567 +enjoyably,P,P8568 +enlightened,P,P8569 +enlighten,P,P8570 +enlightening,P,P8571 +enlightens,P,P8572 +enlivened,P,P8573 +enlivening,P,P8574 +enliven,P,P8575 +enlivens,P,P8576 +enrapture,P,P8577 +enraptures,P,P8578 +enrapturing,P,P8579 +enraptured,P,P8580 +enrich,P,P8581 +enriches,P,P8582 +enriching,P,P8583 +enriched,P,P8584 +entertain,P,P8585 +entertains,P,P8586 +entertaining,P,P8587 +entertained,P,P8588 +entertainment,P,P8589 +enthuse,P,P8590 +enthuses,P,P8591 +enthusing,P,P8592 +enthused,P,P8593 +enthusiastic,P,P8594 +enthusiastically,P,P8595 +enthusiasm,P,P8596 +erudite,P,P8597 +eruditely,P,P8598 +especial,P,P8599 +especially,P,P8600 +esteem,P,P8601 +esteems,P,P8602 +esteeming,P,P8603 +esteemed,P,P8604 +ethical,P,P8605 +ethically,P,P8606 +euphony,P,P8607 +euphonies,P,P8608 +euphoria,P,P8609 +exalt,P,P8610 +exalts,P,P8611 +exalting,P,P8612 +exalted,P,P8613 +excel,P,P8614 +excels,P,P8615 +excelling,P,P8616 +excelled,P,P8617 +excellent,P,P8618 +excellence,P,P8619 +excite,P,P8620 +excites,P,P8621 +exciting,P,P8622 +excited,P,P8623 +exhilarated,P,P8624 +exhilarate,P,P8625 +exhilarates,P,P8626 +exhilarating,P,P8627 +exquisite,P,P8628 +exquisitely,P,P8629 +extraordinary,P,P8630 +extraordinarily,P,P8631 +exuberant,P,P8632 +exuberantly,P,P8633 +exult,P,P8634 +exults,P,P8635 +exulting,P,P8636 +exulted,P,P8637 +fabulous,P,P8638 +fabulously,P,P8639 +fair,P,P8640 +fairly,P,P8641 +fair-minded,P,P8642 +faithful,P,P8643 +faithfully,P,P8644 +fancy,P,P8645 +fancier,P,P8646 +fanciest,P,P8647 +fantastic,P,P8648 +fantastically,P,P8649 +favorable,P,P8650 +favorably,P,P8651 +favor,P,P8652 +favors,P,P8653 +favorite,P,P8654 +fearless,P,P8655 +fearlessly,P,P8656 +felicity,P,P8657 +fellowship,P,P8658 +fellowships,P,P8659 +festive,P,P8660 +festively,P,P8661 +fetching,P,P8662 +flourished,P,P8663 +flourish,P,P8664 +flourishing,P,P8665 +flourishes,P,P8666 +fond,P,P8667 +fondly,P,P8668 +forgive,P,P8669 +forgives,P,P8670 +forgiving,P,P8671 +forgave,P,P8672 +forgiveness,P,P8673 +fortuitous,P,P8674 +fortuitously,P,P8675 +free-spirited,P,P8676 +friendly,P,P8677 +friendlier,P,P8678 +friendliest,P,P8679 +friend,P,P8680 +friends,P,P8681 +friendship,P,P8682 +fruitful,P,P8683 +fruitfully,P,P8684 +fun,P,P8685 +funny,P,P8686 +funnier,P,P8687 +funniest,P,P8688 +gallant,P,P8689 +gallantly,P,P8690 +galore,P,P8691 +generous,P,P8692 +generously,P,P8693 +generosity,P,P8694 +genial,P,P8695 +genially,P,P8696 +genius,P,P8697 +geniuses,P,P8698 +gentle,P,P8699 +gently,P,P8700 +genuine,P,P8701 +genuinely,P,P8702 +gift,P,P8703 +gifts,P,P8704 +gifting,P,P8705 +gifted,P,P8706 +giggle,P,P8707 +giggles,P,P8708 +giggled,P,P8709 +giggling,P,P8710 +give,P,P8711 +gives,P,P8712 +giving,P,P8713 +gave,P,P8714 +giver,P,P8715 +glad,P,P8716 +gladly,P,P8717 +glory,P,P8718 +glorious,P,P8719 +gloriously,P,P8720 +glowing,P,P8721 +goddess,P,P8722 +goddesses,P,P8723 +good,P,P8724 +goodness,P,P8725 +goodwill,P,P8726 +gorgeous,P,P8727 +gorgeously,P,P8728 +graces,P,P8729 +grace,P,P8730 +gracing,P,P8731 +graced,P,P8732 +graceful,P,P8733 +gracefully,P,P8734 +gracious,P,P8735 +graciously,P,P8736 +grand,P,P8737 +grandly,P,P8738 +grander,P,P8739 +grandest,P,P8740 +grandeur,P,P8741 +grateful,P,P8742 +gratefully,P,P8743 +gratify,P,P8744 +gratifies,P,P8745 +gratifying,P,P8746 +gratified,P,P8747 +gratitude,P,P8748 +great,P,P8749 +greater,P,P8750 +greatest,P,P8751 +greatly,P,P8752 +greet,P,P8753 +greets,P,P8754 +greeting,P,P8755 +greeted,P,P8756 +gregarious,P,P8757 +gregariously,P,P8758 +happy,P,P8759 +happily,P,P8760 +happier,P,P8761 +happiest,P,P8762 +hard-working,P,P8763 +harmonious,P,P8764 +harmoniously,P,P8765 +harmony,P,P8766 +heartwarming,P,P8767 +heartwarmingly,P,P8768 +heaven,P,P8769 +heavenly,P,P8770 +help,P,P8771 +helps,P,P8772 +helping,P,P8773 +helped,P,P8774 +helpful,P,P8775 +helpfully,P,P8776 +helpfulness,P,P8777 +high-spirited,P,P8778 +hilarious,P,P8779 +hilariously,P,P8780 +hip,P,P8781 +holy,P,P8782 +honest,P,P8783 +honesty,P,P8784 +hopeful,P,P8785 +hopefully,P,P8786 +hopefulness,P,P8787 +hospitable,P,P8788 +hospitably,P,P8789 +hospitality,P,P8790 +humane,P,P8791 +humanely,P,P8792 +humanitarian,P,P8793 +humanitarians,P,P8794 +humorous,P,P8795 +humorously,P,P8796 +ideal,P,P8797 +ideally,P,P8798 +illuminated,P,P8799 +illuminate,P,P8800 +illuminating,P,P8801 +illuminates,P,P8802 +imaginative,P,P8803 +imaginatively,P,P8804 +impeccable,P,P8805 +impeccably,P,P8806 +impress,P,P8807 +impresses,P,P8808 +impressing,P,P8809 +impressed,P,P8810 +impressive,P,P8811 +impressively,P,P8812 +improve,P,P8813 +improves,P,P8814 +improving,P,P8815 +improved,P,P8816 +improvement,P,P8817 +improvements,P,P8818 +incredible,P,P8819 +incredibly,P,P8820 +ingenious,P,P8821 +ingeniously,P,P8822 +ingenuity,P,P8823 +innovative,P,P8824 +inspirational,P,P8825 +inspired,P,P8826 +inspire,P,P8827 +inspiring,P,P8828 +inspires,P,P8829 +intelligent,P,P8830 +intelligently,P,P8831 +intuitive,P,P8832 +intuitively,P,P8833 +inventive,P,P8834 +invigorated,P,P8835 +invigorate,P,P8836 +invigorating,P,P8837 +invigorates,P,P8838 +invite,P,P8839 +invites,P,P8840 +inviting,P,P8841 +invited,P,P8842 +invitation,P,P8843 +invitations,P,P8844 +irresistable,P,P8845 +irresistably,P,P8846 +jazzed,P,P8847 +jolly,P,P8848 +jovial,P,P8849 +jovially,P,P8850 +joy,P,P8851 +joyful,P,P8852 +joyfully,P,P8853 +joyous,P,P8854 +joyously,P,P8855 +jubilant,P,P8856 +jubilantly,P,P8857 +jubilation,P,P8858 +kind-hearted,P,P8859 +kind,P,P8860 +kinder,P,P8861 +kindest,P,P8862 +kindly,P,P8863 +knowledgeable,P,P8864 +lavish,P,P8865 +lavishly,P,P8866 +liberate,P,P8867 +liberates,P,P8868 +liberating,P,P8869 +liberated,P,P8870 +liberation,P,P8871 +light,P,P8872 +lighten,P,P8873 +lightens,P,P8874 +lightening,P,P8875 +lightened,P,P8876 +light-hearted,P,P8877 +like,P,P8878 +likes,P,P8879 +liking,P,P8880 +liked,P,P8881 +likable,P,P8882 +likably,P,P8883 +lively,P,P8884 +livelier,P,P8885 +liveliest,P,P8886 +lovable,P,P8887 +lovably,P,P8888 +loved,P,P8889 +lovely,P,P8890 +loving,P,P8891 +love,P,P8892 +loves,P,P8893 +loyal,P,P8894 +loyally,P,P8895 +lucky,P,P8896 +luminous,P,P8897 +luminously,P,P8898 +luscious,P,P8899 +lusciously,P,P8900 +lustrous,P,P8901 +lustrously,P,P8902 +luxurious,P,P8903 +luxuriant,P,P8904 +luxuriously,P,P8905 +luxuriantly,P,P8906 +luxuriate,P,P8907 +luxuriates,P,P8908 +luxuriating,P,P8909 +luxuriated,P,P8910 +luxury,P,P8911 +luxuries,P,P8912 +magical,P,P8913 +magnificent,P,P8914 +magnificently,P,P8915 +majesty,P,P8916 +majestic,P,P8917 +marvelous,P,P8918 +marvelously,P,P8919 +mediate,P,P8920 +mediates,P,P8921 +mediating,P,P8922 +mediated,P,P8923 +memorable,P,P8924 +memorably,P,P8925 +merciful,P,P8926 +mercifully,P,P8927 +mind-blowing,P,P8928 +mindful,P,P8929 +mindfully,P,P8930 +miracle,P,P8931 +miracles,P,P8932 +miraculous,P,P8933 +miraculously,P,P8934 +mirthful,P,P8935 +mirthfully,P,P8936 +modest,P,P8937 +modestly,P,P8938 +modesty,P,P8939 +motivate,P,P8940 +motivates,P,P8941 +motivating,P,P8942 +motivated,P,P8943 +motivation,P,P8944 +neat,P,P8945 +neatly,P,P8946 +nice,P,P8947 +nicer,P,P8948 +nicest,P,P8949 +nicety,P,P8950 +nifty,P,P8951 +niftier,P,P8952 +niftiest,P,P8953 +nirvana,P,P8954 +noble,P,P8955 +nobler,P,P8956 +noblest,P,P8957 +notable,P,P8958 +notably,P,P8959 +nourish,P,P8960 +nourishes,P,P8961 +nourished,P,P8962 +nourishing,P,P8963 +nurture,P,P8964 +nurtures,P,P8965 +nurturing,P,P8966 +nurtured,P,P8967 +open-hearted,P,P8968 +open-minded,P,P8969 +opportune,P,P8970 +opportunely,P,P8971 +optimistic,P,P8972 +optimistically,P,P8973 +optimist,P,P8974 +optimists,P,P8975 +optimism,P,P8976 +outstanding,P,P8977 +pacify,P,P8978 +pacifies,P,P8979 +pacifying,P,P8980 +pacified,P,P8981 +palatable,P,P8982 +palatably,P,P8983 +paradise,P,P8984 +paragon,P,P8985 +paragons,P,P8986 +passionate,P,P8987 +passionately,P,P8988 +patient,P,P8989 +patiently,P,P8990 +patience,P,P8991 +peace,P,P8992 +peaceable,P,P8993 +peaceably,P,P8994 +peaceful,P,P8995 +peacefully,P,P8996 +peacefulness,P,P8997 +perfect,P,P8998 +perfectly,P,P8999 +perfection,P,P9000 +persistent,P,P9001 +persistently,P,P9002 +pioneering,P,P9003 +placid,P,P9004 +placidly,P,P9005 +playful,P,P9006 +playfully,P,P9007 +pleasant,P,P9008 +pleasantly,P,P9009 +pleasantry,P,P9010 +pleasantries,P,P9011 +please,P,P9012 +pleases,P,P9013 +pleasing,P,P9014 +pleasingly,P,P9015 +pleased,P,P9016 +pleasurable,P,P9017 +pleasurably,P,P9018 +pleasure,P,P9019 +pleasures,P,P9020 +plenitude,P,P9021 +plucky,P,P9022 +pluckier,P,P9023 +pluckiest,P,P9024 +pluckily,P,P9025 +polite,P,P9026 +politely,P,P9027 +positive,P,P9028 +positively,P,P9029 +practical,P,P9030 +praise,P,P9031 +praises,P,P9032 +praising,P,P9033 +praised,P,P9034 +precious,P,P9035 +preciously,P,P9036 +prize,P,P9037 +prizes,P,P9038 +prizing,P,P9039 +prized,P,P9040 +proactive,P,P9041 +proactively,P,P9042 +proficient,P,P9043 +proficiently,P,P9044 +propitious,P,P9045 +propitiously,P,P9046 +prosperous,P,P9047 +prosperously,P,P9048 +prosper,P,P9049 +prospers,P,P9050 +prospering,P,P9051 +prospered,P,P9052 +pure,P,P9053 +purely,P,P9054 +purity,P,P9055 +quick-witted,P,P9056 +radiant,P,P9057 +radiantly,P,P9058 +rational,P,P9059 +rationally,P,P9060 +rationality,P,P9061 +receptive,P,P9062 +receptively,P,P9063 +recommend,P,P9064 +recommends,P,P9065 +recommending,P,P9066 +recommended,P,P9067 +refreshed,P,P9068 +refreshing,P,P9069 +refreshingly,P,P9070 +rejuvenated,P,P9071 +rejuvenating,P,P9072 +rejuvenate,P,P9073 +rejuvenates,P,P9074 +relaxed,P,P9075 +reliable,P,P9076 +reliably,P,P9077 +reliability,P,P9078 +relieved,P,P9079 +remarkable,P,P9080 +remarkably,P,P9081 +remedy,P,P9082 +remedies,P,P9083 +remediable,P,P9084 +remediably,P,P9085 +reputable,P,P9086 +reputably,P,P9087 +resilient,P,P9088 +resiliently,P,P9089 +resourceful,P,P9090 +resourcefully,P,P9091 +respect,P,P9092 +respects,P,P9093 +respecting,P,P9094 +respected,P,P9095 +respectful,P,P9096 +respectfully,P,P9097 +reward,P,P9098 +rewards,P,P9099 +rewarding,P,P9100 +rewarded,P,P9101 +sacred,P,P9102 +sacredly,P,P9103 +sacrosanct,P,P9104 +safe,P,P9105 +safely,P,P9106 +salubrious,P,P9107 +salubriously,P,P9108 +satisfied,P,P9109 +satisfaction,P,P9110 +satisfactory,P,P9111 +satisfactorily,P,P9112 +satisfy,P,P9113 +satisfies,P,P9114 +satisfying,P,P9115 +savior,P,P9116 +saviors,P,P9117 +self-confident,P,P9118 +self-confidence,P,P9119 +self-esteem,P,P9120 +sensational,P,P9121 +sensationally,P,P9122 +sensible,P,P9123 +sensibly,P,P9124 +serene,P,P9125 +serenely,P,P9126 +serenity,P,P9127 +shining,P,P9128 +share,P,P9129 +shares,P,P9130 +sharing,P,P9131 +shared,P,P9132 +sincere,P,P9133 +sincerely,P,P9134 +smart,P,P9135 +smarter,P,P9136 +smartest,P,P9137 +smile,P,P9138 +smiles,P,P9139 +smiling,P,P9140 +smiled,P,P9141 +sociable,P,P9142 +sociably,P,P9143 +soulful,P,P9144 +soulfully,P,P9145 +spectacular,P,P9146 +spectacularly,P,P9147 +splendid,P,P9148 +splendidly,P,P9149 +splendiferous,P,P9150 +splendiferously,P,P9151 +splendour,P,P9152 +splendours,P,P9153 +stellar,P,P9154 +strong,P,P9155 +strongly,P,P9156 +strength,P,P9157 +strengths,P,P9158 +strengthen,P,P9159 +strengthens,P,P9160 +strengthening,P,P9161 +strengthened,P,P9162 +stupendous,P,P9163 +stupendously,P,P9164 +successful,P,P9165 +success,P,P9166 +successfully,P,P9167 +successes,P,P9168 +super,P,P9169 +support,P,P9170 +supports,P,P9171 +supporting,P,P9172 +supported,P,P9173 +supportive,P,P9174 +supportively,P,P9175 +supportable,P,P9176 +supportably,P,P9177 +sweet,P,P9178 +sweeter,P,P9179 +sweetest,P,P9180 +sweetly,P,P9181 +sympathetic,P,P9182 +sympathetically,P,P9183 +thankful,P,P9184 +thank,P,P9185 +thanks,P,P9186 +thanking,P,P9187 +thanked,P,P9188 +thankfully,P,P9189 +thoughtful,P,P9190 +thoughtfully,P,P9191 +thoughtfulness,P,P9192 +thrilled,P,P9193 +thrill,P,P9194 +thrills,P,P9195 +thrilling,P,P9196 +thriving,P,P9197 +thrive,P,P9198 +thrived,P,P9199 +thrives,P,P9200 +tough,P,P9201 +tougher,P,P9202 +toughest,P,P9203 +tranquil,P,P9204 +tranquilly,P,P9205 +tranquility,P,P9206 +triumphant,P,P9207 +triumphantly,P,P9208 +triumph,P,P9209 +triumphs,P,P9210 +triumphing,P,P9211 +triumphed,P,P9212 +trusting,P,P9213 +trust,P,P9214 +trusted,P,P9215 +trusts,P,P9216 +trustful,P,P9217 +trustfully,P,P9218 +understanding,P,P9219 +understandingly,P,P9220 +understand,P,P9221 +understands,P,P9222 +understood,P,P9223 +upbeat,P,P9224 +uplifting,P,P9225 +uplifted,P,P9226 +uplift,P,P9227 +uplifts,P,P9228 +validate,P,P9229 +validates,P,P9230 +validating,P,P9231 +validated,P,P9232 +valid,P,P9233 +validity,P,P9234 +validly,P,P9235 +valuable,P,P9236 +valuably,P,P9237 +venerable,P,P9238 +venerably,P,P9239 +versatile,P,P9240 +vibrant,P,P9241 +vibrantly,P,P9242 +victorious,P,P9243 +victoriously,P,P9244 +virtue,P,P9245 +virtues,P,P9246 +virtuous,P,P9247 +virtuously,P,P9248 +virtuousity,P,P9249 +virtuoso,P,P9250 +virtuosos,P,P9251 +vitality,P,P9252 +vivacious,P,P9253 +vivaciously,P,P9254 +warm,P,P9255 +warmly,P,P9256 +warmth,P,P9257 +welcomed,P,P9258 +welcome,P,P9259 +welcoming,P,P9260 +welcomes,P,P9261 +wholehearted,P,P9262 +wholeheartedly,P,P9263 +wholesome,P,P9264 +wholesomely,P,P9265 +wisdom,P,P9266 +wise,P,P9267 +wisely,P,P9268 +witty,P,P9269 +wonderful,P,P9270 +wonderfully,P,P9271 +wondrous,P,P9272 +wondrously,P,P9273 +worthy,P,P9274 +worthier,P,P9275 +worthiest,P,P9276 +zestful,P,P9277 +zestfully,P,P9278 +normal,P,P9279 +normally,P,P9280 +presence,P,P9281 +present,P,P9282 +presently,P,P9283 +exonerate,P,P9284 +exonerates,P,P9285 +exonerating,P,P9286 +exonerated,P,P9287 +exoneration,P,P9288 +exonerations,P,P9289 +exoneratingly,P,P9290 +ally,P,P9291 +allies,P,P9292 +alliable,P,P9293 +allying,P,P9294 +allied,P,P9295 +alleviate,P,P9296 +alleviates,P,P9297 +alleviating,P,P9298 +alleviated,P,P9299 +alleviation,P,P9300 +outgoing,P,P9301 +clear,P,P9302 +clearly,P,P9303 +clarity,P,P9304 +rightly,P,P9305 +proper,P,P9306 +properly,P,P9307 +propriety,P,P9308 +TRUE,P,P9309 +truer,P,P9310 +truest,P,P9311 +truth,P,P9312 +truths,P,P9313 +truthful,P,P9314 +truthfully,P,P9315 +truly,P,P9316 +nonanemic,P,P9317 +calm,P,P9318 +calmly,P,P9319 +calmer,P,P9320 +calmest,P,P9321 +calms,P,P9322 +calming,P,P9323 +calmed,P,P9324 +calmingly,P,P9325 +calmness,P,P9326 +relief,P,P9327 +relieve,P,P9328 +relieves,P,P9329 +relieving,P,P9330 +relieved,P,P9331 +unannihilated,P,P9332 +unannihilative,P,P9333 +unannihilatory,P,P9334 +soothe,P,P9335 +soothes,P,P9336 +soothing,P,P9337 +soothed,P,P9338 +soother,P,P9339 +soothers,P,P9340 +protagonist,P,P9341 +protagonists,P,P9342 +protagonism,P,P9343 +pro-american,P,P9344 +pro-black,P,P9345 +pro-israel,P,P9346 +pro-israeli,P,P9347 +pro-latino,P,P9348 +pro-liberty,P,P9349 +pro-military,P,P9350 +pro-occupation,P,P9351 +pro-proliferation,P,P9352 +pro-us,P,P9353 +pro-white,P,P9354 +unantiquated,P,P9355 +apologize,P,P9356 +apologizes,P,P9357 +apologizing,P,P9358 +apologized,P,P9359 +apologetic,P,P9360 +apologetically,P,P9361 +unapprehensive,P,P9362 +unapprehensively,P,P9363 +nonarbitarily,P,P9364 +nonarbitrariness,P,P9365 +nonargumentative,P,P9366 +nonargumentatively,P,P9367 +humility,P,P9368 +humble,P,P9369 +humbly,P,P9370 +humbler,P,P9371 +humblest,P,P9372 +proud,P,P9373 +proudly,P,P9374 +prouder,P,P9375 +proudest,P,P9376 +unaspersed,P,P9377 +nonatrophic,P,P9378 +defend,P,P9379 +defends,P,P9380 +defending,P,P9381 +defended,P,P9382 +defender,P,P9383 +defender,P,P9384 +defense,P,P9385 +defenses,P,P9386 +defensible,P,P9387 +defensibly,P,P9388 +unaustere,P,P9389 +unausterely,P,P9390 +nonauthoritarian,P,P9391 +inclined,P,P9392 +incline,P,P9393 +inclining,P,P9394 +inclines,P,P9395 +inclination,P,P9396 +forward,P,P9397 +cultivate,P,P9398 +cultivates,P,P9399 +cultivating,P,P9400 +cultivated,P,P9401 +cultivation,P,P9402 +civilized,P,P9403 +civilize,P,P9404 +civilizes,P,P9405 +civilizing,P,P9406 +civility,P,P9407 +civil,P,P9408 +civilly,P,P9409 +prove,P,P9410 +proves,P,P9411 +proving,P,P9412 +proved,P,P9413 +proven,P,P9414 +verify,P,P9415 +verifies,P,P9416 +verifying,P,P9417 +verified,P,P9418 +verification,P,P9419 +verifications,P,P9420 +verifiable,P,P9421 +verifiably,P,P9422 +impartial,P,P9423 +impartially,P,P9424 +impartiality,P,P9425 +purify,P,P9426 +purifies,P,P9427 +purifying,P,P9428 +purified,P,P9429 +purification,P,P9430 +repair,P,P9431 +repairs,P,P9432 +repairing,P,P9433 +repaired,P,P9434 +reparable,P,P9435 +reparably,P,P9436 +receptive,P,P9437 +receptively,P,P9438 +prudent,P,P9439 +prudently,P,P9440 +prudence,P,P9441 +rise,P,P9442 +rises,P,P9443 +rising,P,P9444 +rose,P,P9445 +risen,P,P9446 +allow,P,P9447 +allows,P,P9448 +allowing,P,P9449 +allowed,P,P9450 +approbation,P,P9451 +avow,P,P9452 +avows,P,P9453 +avowing,P,P9454 +avowed,P,P9455 +compose,P,P9456 +composes,P,P9457 +composing,P,P9458 +composed,P,P9459 +concert,P,P9460 +concerts,P,P9461 +concerting,P,P9462 +concerted,P,P9463 +connect,P,P9464 +connects,P,P9465 +connecting,P,P9466 +connected,P,P9467 +continue,P,P9468 +continues,P,P9469 +continuing,P,P9470 +continued,P,P9471 +continuity,P,P9472 +continuous,P,P9473 +countenance,P,P9474 +credit,P,P9475 +credits,P,P9476 +crediting,P,P9477 +credited,P,P9478 +ingenuous,P,P9479 +ingenuously,P,P9480 +unity,P,P9481 +unite,P,P9482 +unites,P,P9483 +uniting,P,P9484 +united,P,P9485 +value,P,P9486 +care,P,P9487 +cares,P,P9488 +cared,P,P9489 +upgrade,P,P9490 +upgrades,P,P9491 +upgrading,P,P9492 +upgraded,P,P9493 +uphill,P,P9494 +upside,P,P9495 +upsides,P,P9496 +upturn,P,P9497 +upturns,P,P9498 +free,P,P9499 +frees,P,P9500 +freeing,P,P9501 +freed,P,P9502 +include,P,P9503 +includes,P,P9504 +including,P,P9505 +included,P,P9506 +inclusion,P,P9507 +heal,P,P9508 +heals,P,P9509 +healing,P,P9510 +healed,P,P9511 +skilled,P,P9512 +skillful,P,P9513 +skillfully,P,P9514 +heedful,P,P9515 +heedfully,P,P9516 +low-priced,P,P9517 +well-advised,P,P9518 +well-conceived,P,P9519 +well-defined,P,P9520 +well-designed,P,P9521 +well-favored,P,P9522 +well-formed,P,P9523 +well-mannered,P,P9524 +well-sorted,P,P9525 +well-treated,P,P9526 +well-used,P,P9527 +legal,P,P9528 +legally,P,P9529 +legitimate,P,P9530 +licit,P,P9531 +literate,P,P9532 +logic,P,P9533 +logically,P,P9534 +logical,P,P9535 +logicalness,P,P9536 +mature,P,P9537 +maturely,P,P9538 +mobilized,P,P9539 +moderate,P,P9540 +moderately,P,P9541 +moral,P,P9542 +morality,P,P9543 +morally,P,P9544 +penitent,P,P9545 +penitently,P,P9546 +permissible,P,P9547 +permissibly,P,P9548 +personal,P,P9549 +personally,P,P9550 +piety,P,P9551 +pious,P,P9552 +piously,P,P9553 +placable,P,P9554 +placably,P,P9555 +plausible,P,P9556 +plausibly,P,P9557 +politic,P,P9558 +politicly,P,P9559 +possible,P,P9560 +possibility,P,P9561 +possibilities,P,P9562 +possibly,P,P9563 +potent,P,P9564 +potently,P,P9565 +precise,P,P9566 +precisely,P,P9567 +precision,P,P9568 +probable,P,P9569 +probably,P,P9570 +probability,P,P9571 +probabilities,P,P9572 +ability,P,P9573 +abilities,P,P9574 +accuracy,P,P9575 +accuracies,P,P9576 +accurate,P,P9577 +accurately,P,P9578 +adequate,P,P9579 +adequately,P,P9580 +adequacy,P,P9581 +advertent,P,P9582 +advertently,P,P9583 +advisable,P,P9584 +advisably,P,P9585 +appropriate,P,P9586 +appropriately,P,P9587 +apt,P,P9588 +aptly,P,P9589 +aptitude,P,P9590 +articulate,P,P9591 +articulately,P,P9592 +audible,P,P9593 +audibly,P,P9594 +cognizant,P,P9595 +coherent,P,P9596 +coherently,P,P9597 +coherence,P,P9598 +commensurate,P,P9599 +commensurately,P,P9600 +compatible,P,P9601 +compatibly,P,P9602 +compatability,P,P9603 +competence,P,P9604 +competent,P,P9605 +competently,P,P9606 +compliant,P,P9607 +compliantly,P,P9608 +comprehensible,P,P9609 +comprehensibly,P,P9610 +comprehension,P,P9611 +conceivable,P,P9612 +conceivably,P,P9613 +congruous,P,P9614 +congruously,P,P9615 +consolable,P,P9616 +consolably,P,P9617 +corrigible,P,P9618 +corrigibly,P,P9619 +decorum,P,P9620 +dignity,P,P9621 +distinguished,P,P9622 +distinguishedly,P,P9623 +effectual,P,P9624 +effectually,P,P9625 +effectualness,P,P9626 +efficacious,P,P9627 +efficaciously,P,P9628 +efficacy,P,P9629 +eligible,P,P9630 +eligibly,P,P9631 +eloquent,P,P9632 +eloquently,P,P9633 +equality,P,P9634 +equal,P,P9635 +equally,P,P9636 +equitable,P,P9637 +equitably,P,P9638 +equity,P,P9639 +essential,P,P9640 +experienced,P,P9641 +expert,P,P9642 +expertly,P,P9643 +famous,P,P9644 +famously,P,P9645 +firm,P,P9646 +firmly,P,P9647 +judicious,P,P9648 +judiciously,P,P9649 +justice,P,P9650 +sane,P,P9651 +saner,P,P9652 +sanest,P,P9653 +sanely,P,P9654 +secure,P,P9655 +securely,P,P9656 +security,P,P9657 +stable,P,P9658 +stability,P,P9659 +stabler,P,P9660 +stablest,P,P9661 +stably,P,P9662 +substantial,P,P9663 +substantially,P,P9664 +sufficient,P,P9665 +sufficiently,P,P9666 +sufficiency,P,P9667 +tolerable,P,P9668 +tolerably,P,P9669 +tolerance,P,P9670 +tolerant,P,P9671 +tolerantly,P,P9672 +reconcilable,P,P9673 +reconcilably,P,P9674 +reconcile,P,P9675 +reconciles,P,P9676 +reconciling,P,P9677 +reconciled,P,P9678 +recover,P,P9679 +recovers,P,P9680 +recovering,P,P9681 +recovered,P,P9682 +recoverable,P,P9683 +recoverably,P,P9684 +recoverableness,P,P9685 +redeem,P,P9686 +redeems,P,P9687 +redeeming,P,P9688 +redeemed,P,P9689 +redeemable,P,P9690 +redeemably,P,P9691 +reform,P,P9692 +reforms,P,P9693 +reforming,P,P9694 +reformed,P,P9695 +reformable,P,P9696 +reformably,P,P9697 +reformation,P,P9698 +resolute,P,P9699 +resolutely,P,P9700 +responsible,P,P9701 +responsibly,P,P9702 +better-known,P,P9703 +well-developed,P,P9704 +well-known,P,P9705 +high-rated,P,P9706 +fortunate,P,P9707 +fortunately,P,P9708 +fortune,P,P9709 +fortunes,P,P9710 +fan,P,P9711 +fans,P,P9712 +functional,P,P9713 +functionally,P,P9714 +protect,P,P9715 +protects,P,P9716 +protecting,P,P9717 +protected,P,P9718 +protection,P,P9719 +protections,P,P9720 +protector,P,P9721 +protectors,P,P9722 +offer,P,P9723 +offers,P,P9724 +offering,P,P9725 +offered,P,P9726 +well_situated,P,P9727 +powerful,P,P9728 +powerfully,P,P9729 +fast,P,P9730 +faster,P,P9731 +fastest,P,P9732 +quick,P,P9733 +quicker,P,P9734 +quickest,P,P9735 +quickly,P,P9736 +spirited,P,P9737 +overcome,P,P9738 +overcomes,P,P9739 +overcoming,P,P9740 +overcame,P,P9741 +accessible,P,P9742 +accessibly,P,P9743 +constitutional,P,P9744 +constitutionally,P,P9745 +dependable,P,P9746 +dependably,P,P9747 +dependability,P,P9748 +dignified,P,P9749 +justify,P,P9750 +justifies,P,P9751 +justifying,P,P9752 +justified,P,P9753 +popular,P,P9754 +popularly,P,P9755 +popularity,P,P9756 +productive,P,P9757 +productively,P,P9758 +qualified,P,P9759 +realistic,P,P9760 +realistically,P,P9761 +reasonable,P,P9762 +reasonably,P,P9763 +resolve,P,P9764 +resolves,P,P9765 +resolving,P,P9766 +resolved,P,P9767 +resolvable,P,P9768 +resolvably,P,P9769 +responsive,P,P9770 +responsively,P,P9771 +savory,P,P9772 +savorier,P,P9773 +savoriest,P,P9774 +savorily,P,P9775 +savor,P,P9776 +savors,P,P9777 +savoring,P,P9778 +savored,P,P9779 +scrupulous,P,P9780 +scrupulously,P,P9781 +settle,P,P9782 +settles,P,P9783 +settling,P,P9784 +settled,P,P9785 +sophisticated,P,P9786 +sophisticatedly,P,P9787 +sophistication,P,P9788 +steady,P,P9789 +steadier,P,P9790 +steadiest,P,P9791 +steadily,P,P9792 +sustainable,P,P9793 +sustainably,P,P9794 +sustainability,P,P9795 +tenable,P,P9796 +tenably,P,P9797 +trustworthy,P,P9798 +trustworthily,P,P9799 +trustworthiness,P,P9800 +well,P,P9801 +useful,P,P9802 +usefully,P,P9803 +usefulness,P,P9804 +hero,P,P9805 +heroes,P,P9806 +heroic,P,P9807 +heroically,P,P9808 +heroine,P,P9809 +heroines,P,P9810 +heroism,P,P9811 +"active +",P,P9812 +approachable,P,P9813 +A+,P,P9814 +abound,P,P9815 +abounds,P,P9816 +abundant,P,P9817 +acclamation,P,P9818 +accommodative,P,P9819 +accomplishment,P,P9820 +accomplishments,P,P9821 +acumen,P,P9822 +adaptable,P,P9823 +adaptive,P,P9824 +adjustable,P,P9825 +admiration,P,P9826 +admirer,P,P9827 +admiringly,P,P9828 +adoringly,P,P9829 +adroit,P,P9830 +adroitly,P,P9831 +adulate,P,P9832 +adulation,P,P9833 +adulatory,P,P9834 +advanced,P,P9835 +advantage,P,P9836 +advantageous,P,P9837 +advantageously,P,P9838 +advantages,P,P9839 +adventuresome,P,P9840 +advocate,P,P9841 +advocated,P,P9842 +advocates,P,P9843 +affinity,P,P9844 +affirmative,P,P9845 +affluence,P,P9846 +affluent,P,P9847 +afford,P,P9848 +affordable,P,P9849 +affordably,P,P9850 +agile,P,P9851 +agilely,P,P9852 +agility,P,P9853 +agreeableness,P,P9854 +"all-around +",P,P9855 +alluring,P,P9856 +alluringly,P,P9857 +amazement,P,P9858 +amazingly,P,P9859 +ameliorate,P,P9860 +amenable,P,P9861 +amenity,P,P9862 +amiability,P,P9863 +amicability,P,P9864 +ample,P,P9865 +amply,P,P9866 +apotheosis,P,P9867 +appreciable,P,P9868 +ardent,P,P9869 +ardently,P,P9870 +ardor,P,P9871 +assuredly,P,P9872 +astonish,P,P9873 +astonished,P,P9874 +astonishing,P,P9875 +astonishingly,P,P9876 +astonishment,P,P9877 +astound,P,P9878 +astounded,P,P9879 +astounding,P,P9880 +astoundingly,P,P9881 +astutely,P,P9882 +authoritative,P,P9883 +autonomous,P,P9884 +available,P,P9885 +awe,P,P9886 +awed,P,P9887 +awesomeness,P,P9888 +awestruck,P,P9889 +backbone,P,P9890 +bargain,P,P9891 +beauteous,P,P9892 +beckon,P,P9893 +beckoned,P,P9894 +beckoning,P,P9895 +beckons,P,P9896 +believable,P,P9897 +benefactor,P,P9898 +beneficent,P,P9899 +beneficiary,P,P9900 +benevolence,P,P9901 +"best-known +",P,P9902 +"best-performing +",P,P9903 +best-selling,P,P9904 +better-than-expected,P,P9905 +blameless,P,P9906 +blissfully,P,P9907 +blockbuster,P,P9908 +bolster,P,P9909 +bonny,P,P9910 +boom,P,P9911 +booming,P,P9912 +boundless,P,P9913 +brainiest,P,P9914 +brainy,P,P9915 +"brand-new +",P,P9916 +bravo,P,P9917 +breakthrough,P,P9918 +breakthroughs,P,P9919 +breathlessness,P,P9920 +breeze,P,P9921 +"brilliance +",P,P9922 +brilliances,P,P9923 +brisk,P,P9924 +brotherly,P,P9925 +bullish,P,P9926 +buoyant,P,P9927 +capability,P,P9928 +captivate,P,P9929 +captivating,P,P9930 +carefree,P,P9931 +cashback,P,P9932 +cashbacks,P,P9933 +catchy,P,P9934 +champ,P,P9935 +charisma,P,P9936 +charm,P,P9937 +chaste,P,P9938 +cheaper,P,P9939 +cheapest,P,P9940 +cheer,P,P9941 +cheery,P,P9942 +cherub,P,P9943 +chic,P,P9944 +chivalrous,P,P9945 +chivalry,P,P9946 +classic,P,P9947 +cleanliness,P,P9948 +"clear-cut +",P,P9949 +cleared,P,P9950 +clearer,P,P9951 +clears,P,P9952 +clever,P,P9953 +cleverly,P,P9954 +cohesive,P,P9955 +colorful,P,P9956 +comfy,P,P9957 +commend,P,P9958 +commendable,P,P9959 +commendably,P,P9960 +commitment,P,P9961 +commodious,P,P9962 +compact,P,P9963 +compactly,P,P9964 +compassion,P,P9965 +competitive,P,P9966 +complement,P,P9967 +complementary,P,P9968 +complemented,P,P9969 +complements,P,P9970 +complimentary,P,P9971 +comprehensive,P,P9972 +conciliate,P,P9973 +concise,P,P9974 +congratulation,P,P9975 +congratulatory,P,P9976 +consistent,P,P9977 +consummate,P,P9978 +contentment,P,P9979 +convenience,P,P9980 +convenient,P,P9981 +conveniently,P,P9982 +convincing,P,P9983 +convincingly,P,P9984 +coolest,P,P9985 +cornerstone,P,P9986 +cost-effective,P,P9987 +cost-saving,P,P9988 +courage,P,P9989 +courageousness,P,P9990 +courtly,P,P9991 +covenant,P,P9992 +cozy,P,P9993 +credence,P,P9994 +credible,P,P9995 +crisp,P,P9996 +crisper,P,P9997 +cure,P,P9998 +cure-all,P,P9999 +cushy,P,P10000 +cuteness,P,P10001 +daring,P,P10002 +daringly,P,P10003 +darling,P,P10004 +dashing,P,P10005 +dauntless,P,P10006 +dawn,P,P10007 +"dead-cheap +",P,P10008 +"dead-on +",P,P10009 +decisiveness,P,P10010 +deference,P,P10011 +"deft +",P,P10012 +delicacy,P,P10013 +delicate,P,P10014 +delightfulness,P,P10015 +deservedly,P,P10016 +deserving,P,P10017 +desiring,P,P10018 +desirous,P,P10019 +destiny,P,P10020 +devout,P,P10021 +dexterous,P,P10022 +dexterously,P,P10023 +dextrous,P,P10024 +dignify,P,P10025 +diligence,P,P10026 +diplomatic,P,P10027 +"dirt-cheap +",P,P10028 +distinction,P,P10029 +distinctive,P,P10030 +diversified,P,P10031 +dominate,P,P10032 +dominated,P,P10033 +dominates,P,P10034 +dote,P,P10035 +dotingly,P,P10036 +doubtless,P,P10037 +dreamland,P,P10038 +dumbfounded,P,P10039 +dumbfounding,P,P10040 +"dummy-proof +",P,P10041 +durable,P,P10042 +eagerness,P,P10043 +earnest,P,P10044 +earnestly,P,P10045 +earnestness,P,P10046 +easiness,P,P10047 +"easy-to-use +",P,P10048 +ebullience,P,P10049 +ebullient,P,P10050 +ebulliently,P,P10051 +economical,P,P10052 +ecstasies,P,P10053 +effectiveness,P,P10054 +effortless,P,P10055 +effortlessly,P,P10056 +effusion,P,P10057 +effusive,P,P10058 +effusively,P,P10059 +effusiveness,P,P10060 +elan,P,P10061 +elate,P,P10062 +elatedly,P,P10063 +elation,P,P10064 +electrify,P,P10065 +elite,P,P10066 +eloquence,P,P10067 +embolden,P,P10068 +"eminence +",P,P10069 +eminent,P,P10070 +empathize,P,P10071 +empathy,P,P10072 +empowerment,P,P10073 +enchant,P,P10074 +enchantingly,P,P10075 +encouragement,P,P10076 +encouragingly,P,P10077 +endorse,P,P10078 +endorsed,P,P10079 +endorsement,P,P10080 +endorses,P,P10081 +endorsing,P,P10082 +energize,P,P10083 +"energy-efficient +",P,P10084 +"energy-saving +",P,P10085 +engrossing,P,P10086 +enhancement,P,P10087 +enjoyment,P,P10088 +enlightenment,P,P10089 +ennoble,P,P10090 +enough,P,P10091 +enrapt,P,P10092 +enrichment,P,P10093 +enterprising,P,P10094 +enthral,P,P10095 +enthrall,P,P10096 +enthralled,P,P10097 +enthusiast,P,P10098 +entice,P,P10099 +enticed,P,P10100 +enticing,P,P10101 +enticingly,P,P10102 +entranced,P,P10103 +entrancing,P,P10104 +entrust,P,P10105 +enviable,P,P10106 +enviably,P,P10107 +envious,P,P10108 +enviously,P,P10109 +enviousness,P,P10110 +envy,P,P10111 +ergonomical,P,P10112 +"err-free +",P,P10113 +eulogize,P,P10114 +euphoric,P,P10115 +euphorically,P,P10116 +evaluative,P,P10117 +evenly,P,P10118 +eventful,P,P10119 +everlasting,P,P10120 +evocative,P,P10121 +exaltation,P,P10122 +exaltedly,P,P10123 +exultingly,P,P10124 +exemplar,P,P10125 +exemplary,P,P10126 +exceed,P,P10127 +exceeded,P,P10128 +exceeding,P,P10129 +exceedingly,P,P10130 +exceeds,P,P10131 +excellency,P,P10132 +excellently,P,P10133 +exceptional,P,P10134 +exceptionally,P,P10135 +excitedly,P,P10136 +excitedness,P,P10137 +excitement,P,P10138 +excitingly,P,P10139 +exhilaratingly,P,P10140 +exhilaration,P,P10141 +expansive,P,P10142 +expeditiously,P,P10143 +extol,P,P10144 +exuberance,P,P10145 +exultant,P,P10146 +exultation,P,P10147 +"eye-catch +",P,P10148 +"eye-catching +",P,P10149 +eyecatch,P,P10150 +"eye catching +",P,P10151 +facilitate,P,P10152 +fairness,P,P10153 +faith,P,P10154 +faithfulness,P,P10155 +fame,P,P10156 +famed,P,P10157 +fascinating,P,P10158 +fanfare,P,P10159 +fascinate,P,P10160 +fascinatingly,P,P10161 +fascination,P,P10162 +fashionable,P,P10163 +"fashionably +",P,P10164 +"fast-growing +",P,P10165 +"fast-paced +",P,P10166 +"fastest-growing +",P,P10167 +faultless,P,P10168 +fav,P,P10169 +fave,P,P10170 +favored,P,P10171 +favorited,P,P10172 +feasible,P,P10173 +feasibly,P,P10174 +feat,P,P10175 +"feature-rich +",P,P10176 +felicitous,P,P10177 +feisty,P,P10178 +felicitate,P,P10179 +fertile,P,P10180 +fervent,P,P10181 +fervently,P,P10182 +fervid,P,P10183 +fervidly,P,P10184 +fervor,P,P10185 +fidelity,P,P10186 +fiery,P,P10187 +fine,P,P10188 +"fine-looking +",P,P10189 +finely,P,P10190 +finer,P,P10191 +finest,P,P10192 +firmer,P,P10193 +"first-class +",P,P10194 +"first-in-class +",P,P10195 +"first-rate +",P,P10196 +flashy,P,P10197 +flatter,P,P10198 +flattering,P,P10199 +"flatteringly +",P,P10200 +flawless,P,P10201 +flawlessly,P,P10202 +flexibility,P,P10203 +flexible,P,P10204 +fluent,P,P10205 +flutter,P,P10206 +fondness,P,P10207 +foolproof,P,P10208 +foremost,P,P10209 +foresight,P,P10210 +formidable,P,P10211 +fortitude,P,P10212 +fragrant,P,P10213 +"freedom +",P,P10214 +freedoms,P,P10215 +fresh,P,P10216 +fresher,P,P10217 +freshest,P,P10218 +friendliness,P,P10219 +frolic,P,P10220 +frugal,P,P10221 +fulfillment,P,P10222 +futuristic,P,P10223 +gaiety,P,P10224 +gaily,P,P10225 +gain,P,P10226 +gained,P,P10227 +gainful,P,P10228 +gainfully,P,P10229 +gaining,P,P10230 +gains,P,P10231 +geeky,P,P10232 +geekier,P,P10233 +gem,P,P10234 +gems,P,P10235 +gentlest,P,P10236 +gladden,P,P10237 +gladness,P,P10238 +glamorous,P,P10239 +glee,P,P10240 +gleeful,P,P10241 +gleefully,P,P10242 +glimmer,P,P10243 +glimmering,P,P10244 +glisten,P,P10245 +glistening,P,P10246 +glitter,P,P10247 +glitz,P,P10248 +glorify,P,P10249 +glow,P,P10250 +glowingly,P,P10251 +"god-given +",P,P10252 +"god-send +",P,P10253 +godlike,P,P10254 +godsend,P,P10255 +gold,P,P10256 +golden,P,P10257 +goodly,P,P10258 +graciousness,P,P10259 +gratification,P,P10260 +gratifyingly,P,P10261 +greatness,P,P10262 +grin,P,P10263 +groundbreaking,P,P10264 +guarantee,P,P10265 +guidance,P,P10266 +guiltless,P,P10267 +gumption,P,P10268 +gush,P,P10269 +gusto,P,P10270 +gutsy,P,P10271 +halcyon,P,P10272 +hale,P,P10273 +hallmark,P,P10274 +hallmarks,P,P10275 +hallowed,P,P10276 +handier,P,P10277 +handily,P,P10278 +"hands-down +",P,P10279 +handsome,P,P10280 +handsomely,P,P10281 +handy,P,P10282 +happiness,P,P10283 +hardier,P,P10284 +hardy,P,P10285 +harmless,P,P10286 +harmonize,P,P10287 +headway,P,P10288 +healthful,P,P10289 +healthy,P,P10290 +hearten,P,P10291 +heartening,P,P10292 +heartfelt,P,P10293 +heartily,P,P10294 +heroize,P,P10295 +"high-quality +",P,P10296 +homage,P,P10297 +honor,P,P10298 +honorable,P,P10299 +honored,P,P10300 +honoring,P,P10301 +hooray,P,P10302 +hot,P,P10303 +hottest,P,P10304 +hug,P,P10305 +humourous,P,P10306 +idealize,P,P10307 +idol,P,P10308 +idolize,P,P10309 +idolized,P,P10310 +idyllic,P,P10311 +illumine,P,P10312 +illustrious,P,P10313 +immaculate,P,P10314 +immaculately,P,P10315 +immense,P,P10316 +impassioned,P,P10317 +important,P,P10318 +impressiveness,P,P10319 +individualized,P,P10320 +industrious,P,P10321 +inestimable,P,P10322 +inestimably,P,P10323 +inexpensive,P,P10324 +infallibility,P,P10325 +infallible,P,P10326 +infallibly,P,P10327 +influential,P,P10328 +innocuous,P,P10329 +innovation,P,P10330 +insightful,P,P10331 +insightfully,P,P10332 +inspiration,P,P10333 +instantly,P,P10334 +instructive,P,P10335 +instrumental,P,P10336 +integral,P,P10337 +integrated,P,P10338 +intelligence,P,P10339 +intelligible,P,P10340 +interesting,P,P10341 +interests,P,P10342 +intimacy,P,P10343 +intimate,P,P10344 +intricate,P,P10345 +intrigue,P,P10346 +intriguing,P,P10347 +intriguingly,P,P10348 +invaluable,P,P10349 +invincibility,P,P10350 +invincible,P,P10351 +inviolable,P,P10352 +inviolate,P,P10353 +invulnerable,P,P10354 +irreplaceable,P,P10355 +irreproachable,P,P10356 +irresistible,P,P10357 +irresistibly,P,P10358 +"issue-free +",P,P10359 +"jaw-dropping +",P,P10360 +jollify,P,P10361 +jubilate,P,P10362 +justly,P,P10363 +keen,P,P10364 +keenly,P,P10365 +keenness,P,P10366 +"kid-friendly +",P,P10367 +kindliness,P,P10368 +kindness,P,P10369 +kudos,P,P10370 +"large-capacity +",P,P10371 +laud,P,P10372 +laudable,P,P10373 +laudably,P,P10374 +"law-abiding +",P,P10375 +lawful,P,P10376 +"lawfully +",P,P10377 +lead,P,P10378 +leading,P,P10379 +leads,P,P10380 +led,P,P10381 +legendary,P,P10382 +leverage,P,P10383 +levity,P,P10384 +liberty,P,P10385 +lifesaver,P,P10386 +lighter,P,P10387 +lionhearted,P,P10388 +"long-lasting +",P,P10389 +loveliness,P,P10390 +lover,P,P10391 +"low-cost +",P,P10392 +"low-price +",P,P10393 +"low-risk +",P,P10394 +"lower-priced +",P,P10395 +loyalty,P,P10396 +lucid,P,P10397 +lucidly,P,P10398 +luck,P,P10399 +luckier,P,P10400 +luckiest,P,P10401 +luckiness,P,P10402 +lucrative,P,P10403 +lush,P,P10404 +luster,P,P10405 +lyrical,P,P10406 +magic,P,P10407 +magnanimous,P,P10408 +magnanimously,P,P10409 +magnificence,P,P10410 +magnificent,P,P10411 +manageable,P,P10412 +maneuverable,P,P10413 +marvel,P,P10414 +marveled,P,P10415 +marvelousness,P,P10416 +marvels,P,P10417 +master,P,P10418 +masterful,P,P10419 +masterfully,P,P10420 +masterpiece,P,P10421 +masterpieces,P,P10422 +masters,P,P10423 +mastery,P,P10424 +"matchless +",P,P10425 +maturity,P,P10426 +meaningful,P,P10427 +mercy,P,P10428 +merit,P,P10429 +meritorious,P,P10430 +merrily,P,P10431 +merriment,P,P10432 +merriness,P,P10433 +merry,P,P10434 +mesmerize,P,P10435 +mesmerized,P,P10436 +mesmerizes,P,P10437 +mesmerizing,P,P10438 +mesmerizingly,P,P10439 +meticulous,P,P10440 +meticulously,P,P10441 +mightily,P,P10442 +mighty,P,P10443 +miraculousness,P,P10444 +modern,P,P10445 +momentous,P,P10446 +monumental,P,P10447 +monumentally,P,P10448 +multi-purpose,P,P10449 +navigable,P,P10450 +neatest,P,P10451 +nimble,P,P10452 +nobly,P,P10453 +noiseless,P,P10454 +"non-violence +",P,P10455 +"non-violent +",P,P10456 +noteworthy,P,P10457 +nourishment,P,P10458 +novelty,P,P10459 +oasis,P,P10460 +obsession,P,P10461 +obsessions,P,P10462 +obtainable,P,P10463 +openly,P,P10464 +openness,P,P10465 +optimal,P,P10466 +opulent,P,P10467 +orderly,P,P10468 +originality,P,P10469 +outdo,P,P10470 +outdone,P,P10471 +outperform,P,P10472 +outperformed,P,P10473 +outperforming,P,P10474 +outperforms,P,P10475 +outshine,P,P10476 +outshone,P,P10477 +outsmart,P,P10478 +outstandingly,P,P10479 +outstrip,P,P10480 +outwit,P,P10481 +ovation,P,P10482 +overjoyed,P,P10483 +overtake,P,P10484 +overtaken,P,P10485 +overtakes,P,P10486 +overtaking,P,P10487 +overtook,P,P10488 +overture,P,P10489 +"pain-free +",P,P10490 +painless,P,P10491 +painlessly,P,P10492 +palatial,P,P10493 +pamper,P,P10494 +pampered,P,P10495 +pamperedly,P,P10496 +pamperedness,P,P10497 +pampers,P,P10498 +panoramic,P,P10499 +paramount,P,P10500 +pardon,P,P10501 +passion,P,P10502 +patriot,P,P10503 +patriotic,P,P10504 +peacekeeper,P,P10505 +peerless,P,P10506 +pep,P,P10507 +pepped,P,P10508 +pepping,P,P10509 +peppy,P,P10510 +peps,P,P10511 +perseverance,P,P10512 +persevere,P,P10513 +personages,P,P10514 +personalized,P,P10515 +phenomenal,P,P10516 +phenomenally,P,P10517 +picturesque,P,P10518 +pinnacle,P,P10519 +plentiful,P,P10520 +pluses,P,P10521 +plush,P,P10522 +plusses,P,P10523 +poetic,P,P10524 +poeticize,P,P10525 +poignant,P,P10526 +poise,P,P10527 +poised,P,P10528 +polished,P,P10529 +politeness,P,P10530 +portable,P,P10531 +posh,P,P10532 +positives,P,P10533 +praiseworthy,P,P10534 +"pre-eminent +",P,P10535 +preeminent,P,P10536 +prefer,P,P10537 +preferable,P,P10538 +preferably,P,P10539 +preferring,P,P10540 +prefers,P,P10541 +premier,P,P10542 +prestige,P,P10543 +prestigious,P,P10544 +prettily,P,P10545 +pretty,P,P10546 +priceless,P,P10547 +pride,P,P10548 +principled,P,P10549 +privilege,P,P10550 +privileged,P,P10551 +"problem-free +",P,P10552 +"problem-solver +",P,P10553 +prodigious,P,P10554 +prodigiously,P,P10555 +prodigy,P,P10556 +profound,P,P10557 +profoundly,P,P10558 +profuse,P,P10559 +profusion,P,P10560 +progress,P,P10561 +progressive,P,P10562 +prolific,P,P10563 +prominence,P,P10564 +prominent,P,P10565 +promise,P,P10566 +promised,P,P10567 +promises,P,P10568 +promising,P,P10569 +promoter,P,P10570 +prompt,P,P10571 +promptly,P,P10572 +pros,P,P10573 +prosperity,P,P10574 +protective,P,P10575 +providence,P,P10576 +prowess,P,P10577 +punctual,P,P10578 +purposeful,P,P10579 +quaint,P,P10580 +qualify,P,P10581 +quiet,P,P10582 +quieter,P,P10583 +radiance,P,P10584 +rapid,P,P10585 +rapport,P,P10586 +rapt,P,P10587 +rapture,P,P10588 +rapturous,P,P10589 +rapturously,P,P10590 +"razor-sharp +",P,P10591 +reachable,P,P10592 +readable,P,P10593 +readily,P,P10594 +ready,P,P10595 +reaffirm,P,P10596 +reaffirmation,P,P10597 +realizable,P,P10598 +reasoned,P,P10599 +reassurance,P,P10600 +reassure,P,P10601 +reclaim,P,P10602 +recommendation,P,P10603 +recommendations,P,P10604 +reconciliation,P,P10605 +"record-setting +",P,P10606 +recovery,P,P10607 +rectification,P,P10608 +rectify,P,P10609 +rectifying,P,P10610 +redemption,P,P10611 +refine,P,P10612 +refined,P,P10613 +refinement,P,P10614 +refresh,P,P10615 +refund,P,P10616 +refunded,P,P10617 +regal,P,P10618 +regally,P,P10619 +regard,P,P10620 +rejoice,P,P10621 +rejoicing,P,P10622 +rejoicingly,P,P10623 +relish,P,P10624 +remission,P,P10625 +remunerate,P,P10626 +renaissance,P,P10627 +renewed,P,P10628 +renown,P,P10629 +renowned,P,P10630 +reputation,P,P10631 +resound,P,P10632 +resounding,P,P10633 +resourcefulness,P,P10634 +respectable,P,P10635 +resplendent,P,P10636 +respite,P,P10637 +restful,P,P10638 +restored,P,P10639 +restructure,P,P10640 +restructured,P,P10641 +restructuring,P,P10642 +revel,P,P10643 +revelation,P,P10644 +revere,P,P10645 +reverence,P,P10646 +reverent,P,P10647 +reverently,P,P10648 +revitalize,P,P10649 +revival,P,P10650 +revive,P,P10651 +revives,P,P10652 +revolutionary,P,P10653 +revolutionize,P,P10654 +revolutionized,P,P10655 +revolutionizes,P,P10656 +rewardingly,P,P10657 +rich,P,P10658 +richer,P,P10659 +richly,P,P10660 +richness,P,P10661 +right,P,P10662 +righten,P,P10663 +righteous,P,P10664 +righteously,P,P10665 +righteousness,P,P10666 +rightful,P,P10667 +rightfully,P,P10668 +rightness,P,P10669 +"risk-free +",P,P10670 +robust,P,P10671 +"rock-star +",P,P10672 +"rock-stars +",P,P10673 +rockstar,P,P10674 +rockstars,P,P10675 +romantic,P,P10676 +romantically,P,P10677 +romanticize,P,P10678 +roomier,P,P10679 +roomy,P,P10680 +rosy,P,P10681 +sagacity,P,P10682 +sagely,P,P10683 +saint,P,P10684 +saintliness,P,P10685 +saintly,P,P10686 +salutary,P,P10687 +salute,P,P10688 +saver,P,P10689 +savings,P,P10690 +savvy,P,P10691 +scenic,P,P10692 +seamless,P,P10693 +seasoned,P,P10694 +selective,P,P10695 +"self-determination +",P,P10696 +"self-respect +",P,P10697 +"self-satisfaction +",P,P10698 +"self-sufficiency +",P,P10699 +"self-sufficient +",P,P10700 +sensation,P,P10701 +sensations,P,P10702 +sensitive,P,P10703 +sexy,P,P10704 +sharp,P,P10705 +sharper,P,P10706 +sharpest,P,P10707 +shimmering,P,P10708 +shimmeringly,P,P10709 +shine,P,P10710 +shiny,P,P10711 +significant,P,P10712 +silent,P,P10713 +simpler,P,P10714 +simplest,P,P10715 +simplified,P,P10716 +simplifies,P,P10717 +simplify,P,P10718 +simplifying,P,P10719 +sincerity,P,P10720 +skill,P,P10721 +sleek,P,P10722 +slick,P,P10723 +smartly,P,P10724 +smilingly,P,P10725 +smitten,P,P10726 +smooth,P,P10727 +smoother,P,P10728 +smoothes,P,P10729 +smoothest,P,P10730 +smoothly,P,P10731 +snappy,P,P10732 +snazzy,P,P10733 +soft,P,P10734 +"softer +",P,P10735 +solace,P,P10736 +solicitous,P,P10737 +solicitously,P,P10738 +solid,P,P10739 +solidarity,P,P10740 +soothingly,P,P10741 +soundly,P,P10742 +soundness,P,P10743 +spacious,P,P10744 +sparkle,P,P10745 +sparkling,P,P10746 +speedily,P,P10747 +speedy,P,P10748 +spellbind,P,P10749 +spellbinding,P,P10750 +spellbindingly,P,P10751 +spellbound,P,P10752 +spiritual,P,P10753 +splendor,P,P10754 +spontaneous,P,P10755 +sporty,P,P10756 +spotless,P,P10757 +sprightly,P,P10758 +stainless,P,P10759 +stabilize,P,P10760 +standout,P,P10761 +"state-of-the-art +",P,P10762 +stately,P,P10763 +statuesque,P,P10764 +staunch,P,P10765 +staunchly,P,P10766 +staunchness,P,P10767 +steadfast,P,P10768 +steadfastly,P,P10769 +steadfastness,P,P10770 +steadiness,P,P10771 +stellarly,P,P10772 +stimulate,P,P10773 +stimulates,P,P10774 +stimulating,P,P10775 +stimulative,P,P10776 +stirringly,P,P10777 +straighten,P,P10778 +straightforward,P,P10779 +streamlined,P,P10780 +striking,P,P10781 +strikingly,P,P10782 +striving,P,P10783 +stronger,P,P10784 +strongest,P,P10785 +stunned,P,P10786 +stunning,P,P10787 +stunningly,P,P10788 +sturdier,P,P10789 +sturdy,P,P10790 +stylish,P,P10791 +stylishly,P,P10792 +stylized,P,P10793 +suave,P,P10794 +suavely,P,P10795 +sublime,P,P10796 +subsidize,P,P10797 +subsidized,P,P10798 +subsidizes,P,P10799 +subsidizing,P,P10800 +substantive,P,P10801 +succeed,P,P10802 +succeeded,P,P10803 +succeeding,P,P10804 +succeeds,P,P10805 +suffice,P,P10806 +sufficed,P,P10807 +suffices,P,P10808 +"suitable +",P,P10809 +sumptuous,P,P10810 +sumptuously,P,P10811 +sumptuousness,P,P10812 +superb,P,P10813 +superbly,P,P10814 +superior,P,P10815 +superiority,P,P10816 +supporter,P,P10817 +supremacy,P,P10818 +supreme,P,P10819 +supremely,P,P10820 +surmount,P,P10821 +surpass,P,P10822 +surreal,P,P10823 +survival,P,P10824 +survivor,P,P10825 +swank,P,P10826 +swankier,P,P10827 +swankiest,P,P10828 +swanky,P,P10829 +sweeping,P,P10830 +sweeten,P,P10831 +sweetheart,P,P10832 +sweetness,P,P10833 +swift,P,P10834 +swiftness,P,P10835 +talent,P,P10836 +talented,P,P10837 +talents,P,P10838 +tantalize,P,P10839 +tantalizing,P,P10840 +tantalizingly,P,P10841 +tempt,P,P10842 +tempting,P,P10843 +temptingly,P,P10844 +tenacious,P,P10845 +tenaciously,P,P10846 +tenacity,P,P10847 +tender,P,P10848 +tenderly,P,P10849 +terrific,P,P10850 +terrifically,P,P10851 +thinner,P,P10852 +thrift,P,P10853 +thrifty,P,P10854 +thrillingly,P,P10855 +"thumb-up +",P,P10856 +"thumbs-up +",P,P10857 +tickles,P,P10858 +tidy,P,P10859 +"time-honored +",P,P10860 +timely,P,P10861 +titillate,P,P10862 +titillating,P,P10863 +titillatingly,P,P10864 +togetherness,P,P10865 +"toll-free +",P,P10866 +top,P,P10867 +"top-notch +",P,P10868 +"top-quality +",P,P10869 +topnotch,P,P10870 +tops,P,P10871 +traction,P,P10872 +transparent,P,P10873 +treasure,P,P10874 +tremendously,P,P10875 +trendy,P,P10876 +triumphal,P,P10877 +trivially,P,P10878 +trophy,P,P10879 +trouble-free,P,P10880 +trustingly,P,P10881 +trusty,P,P10882 +truthfulness,P,P10883 +twinkly,P,P10884 +"ultra-crisp +",P,P10885 +unaffected,P,P10886 +unassailable,P,P10887 +unbeatable,P,P10888 +unbiased,P,P10889 +unbound,P,P10890 +uncomplicated,P,P10891 +unconditional,P,P10892 +undamaged,P,P10893 +undaunted,P,P10894 +understandable,P,P10895 +undisputable,P,P10896 +indisputably,P,P10897 +undisputed,P,P10898 +unencumbered,P,P10899 +unequivocal,P,P10900 +unequivocally,P,P10901 +unfazed,P,P10902 +unfettered,P,P10903 +unforgettable,P,P10904 +unlimited,P,P10905 +unmatched,P,P10906 +unparalleled,P,P10907 +unquestionable,P,P10908 +unquestionably,P,P10909 +unreal,P,P10910 +unrestricted,P,P10911 +unrivaled,P,P10912 +unselfish,P,P10913 +unwavering,P,P10914 +upgradable,P,P10915 +upgradeable,P,P10916 +upheld,P,P10917 +uphold,P,P10918 +upliftingly,P,P10919 +upliftment,P,P10920 +upscale,P,P10921 +usable,P,P10922 +useable,P,P10923 +user-friendly,P,P10924 +"user-replaceable +",P,P10925 +valiant,P,P10926 +valiantly,P,P10927 +valor,P,P10928 +variety,P,P10929 +venerate,P,P10930 +veritable,P,P10931 +versatility,P,P10932 +victory,P,P10933 +viewable,P,P10934 +vigilance,P,P10935 +vigilant,P,P10936 +visionary,P,P10937 +vivid,P,P10938 +vouch,P,P10939 +vouchsafe,P,P10940 +warmer,P,P10941 +wealthy,P,P10942 +well-backlit,P,P10943 +well-balanced,P,P10944 +well-behaved,P,P10945 +well-being,P,P10946 +well-bred,P,P10947 +well-connected,P,P10948 +well-educated,P,P10949 +well-established,P,P10950 +well-informed,P,P10951 +"well-intentioned +",P,P10952 +well-made,P,P10953 +"well-managed +",P,P10954 +well-positioned,P,P10955 +well-received,P,P10956 +well-regarded,P,P10957 +well-rounded,P,P10958 +well-run,P,P10959 +well-wishers,P,P10960 +wellbeing,P,P10961 +wieldy,P,P10962 +willing,P,P10963 +willingly,P,P10964 +willingness,P,P10965 +win,P,P10966 +windfall,P,P10967 +winnable,P,P10968 +winner,P,P10969 +winners,P,P10970 +winning,P,P10971 +wins,P,P10972 +won,P,P10973 +wonder,P,P10974 +wonders,P,P10975 +work,P,P10976 +workable,P,P10977 +worked,P,P10978 +works,P,P10979 +world-famous,P,P10980 +worth,P,P10981 +worthwhile,P,P10982 +worthiness,P,P10983 +wow,P,P10984 +wowed,P,P10985 +wowing,P,P10986 +wows,P,P10987 +yay,P,P10988 +youthful,P,P10989 +zeal,P,P10990 +zenith,P,P10991 +zest,P,P10992 +zippy,P,P10993 \ No newline at end of file From 545b5e69ded2be60ee4442389bac0c000832a605 Mon Sep 17 00:00:00 2001 From: Alex Boyd Date: Fri, 8 Nov 2024 13:20:20 -0500 Subject: [PATCH 17/17] Add sample data csv --- sample_data.csv | 2097 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 2097 insertions(+) create mode 100644 sample_data.csv diff --git a/sample_data.csv b/sample_data.csv new file mode 100644 index 0000000..584dc03 --- /dev/null +++ b/sample_data.csv @@ -0,0 +1,2097 @@ +"id","user_posted","name","description","date_posted","photos","url","quoted_post","tagged_users","replies","reposts","likes","views","external_url","hashtags","followers","biography","posts_count","profile_image_link","following","is_verified","quotes","bookmarks","parent_post_details","external_image_urls","videos","timestamp","input","discovery_input" +"1853895803083108400","amyklobuchar","Amy Klobuchar","I know that @tammybaldwin represents every corner of Wisconsin and meets her constituents where they are. She gets things done for people! If you live in Wisconsin and haven’t made a plan to vote, go to","2024-11-05T20:22:57.000Z",,"https://x.com/amyklobuchar/status/1853895803083108400","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""87510313"",""profile_name"":""Tammy Baldwin"",""url"":""https://x.com/tammybaldwin"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",43,98,395,28164,"http://iwillvote.com/",,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853892882563788800/pu/vid/avc1/1280x720/PWbFQmMXOMYsHskH.mp4?tag=12"",""duration"":37151}]","2024-11-06T04:13:39.215Z","{""url"":""https://twitter.com/33537967/status/1853895803083108400""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853884702802747666","amyklobuchar","Amy Klobuchar","Ohioans know @SherrodBrown. He’s been standing up for them for years, and nothing will stop him now. If this Canton canvass launch I joined was any indication, people are excited to reelect him for Senate! If you live in Ohio and haven’t voted yet – GO VOTE!","2024-11-05T19:38:51.000Z","[""https://pbs.twimg.com/media/GbpQnJnWcAAoB02.jpg""]","https://x.com/amyklobuchar/status/1853884702802747666","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""24768753"",""profile_name"":""Sherrod Brown"",""url"":""https://x.com/SherrodBrown"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",28,122,521,24978,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,2,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:44.521Z","{""url"":""https://twitter.com/33537967/status/1853884702802747666""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853999191137096095","amyklobuchar","Amy Klobuchar","Connecticut is lucky to have Chris Murphy in the Senate. He works hard to find bipartisan compromise, and he is so committed to his constituents that he actually walks across his state each year. Congratulations on your reelection @ChrisMurphyCT!","2024-11-06T03:13:47.000Z","[""https://pbs.twimg.com/media/Gbq6RhjXYBY-yp6.jpg""]","https://x.com/amyklobuchar/status/1853999191137096095","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""150078976"",""profile_name"":""Chris Murphy 🟧"",""url"":""https://x.com/ChrisMurphyCT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",25,161,1951,62870,,,2009596,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118431,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:44.606Z","{""url"":""https://twitter.com/33537967/status/1853999191137096095""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853995921807151448","amyklobuchar","Amy Klobuchar","Bernie Sanders has always fought tirelessly to improve people's lives and has been a strong partner with me on so many important issues including lowering the costs of prescription drugs. Congratulations @BernieSanders!","2024-11-06T03:00:47.000Z","[""https://pbs.twimg.com/media/Gbq3NX_W8AwDmvM.jpg""]","https://x.com/amyklobuchar/status/1853995921807151448","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""216776631"",""profile_name"":""Bernie Sanders"",""url"":""https://x.com/BernieSanders"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",21,76,1096,45601,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,3,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:45.074Z","{""url"":""https://twitter.com/33537967/status/1853995921807151448""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853824391882387473","BobbyScott","Rep. Bobby Scott","Today is Election Day. Make a plan to vote and cast your ballot today. Polls close in Virginia at 7pm. More information can be found below. 🗳️","2024-11-05T15:39:12.000Z","[""https://pbs.twimg.com/media/GbobdY6WYAAG5lU.jpg""]","https://x.com/BobbyScott/status/1853824391882387473","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,6,10,2457,"https://www.elections.virginia.gov/",,44489,"Proudly representing Virginia's 3rd Congressional District. Ranking Member of the Committee on Education and the Workforce, @EdWorkforceDems.",10117,"https://pbs.twimg.com/profile_images/1482027899750395908/8qt36ccb_normal.jpg",3190,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:45.276Z","{""url"":""https://twitter.com/161791703/status/1853824391882387473""}","{""url"":""https://x.com/BobbyScott"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854001659166261369","amyklobuchar","Amy Klobuchar","I got to see @AlsobrooksForMD in action on the campaign trail and am thrilled that Marylanders have elected her to be their next US Senator.","2024-11-06T03:23:35.000Z","[""https://pbs.twimg.com/media/Gbq8gwrWkAYZ2p2.jpg""]","https://x.com/amyklobuchar/status/1854001659166261369","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1235381442999463937"",""profile_name"":""Angela Alsobrooks"",""url"":""https://x.com/AlsobrooksForMD"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",6,23,218,44453,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:46.022Z","{""url"":""https://twitter.com/33537967/status/1854001659166261369""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853932357134307701","amyklobuchar","Amy Klobuchar","I’ve been out campaigning for our Senate Democrats and our ground game is strong. The support is there. We have got to turn out today. Great to be on @MSNBC ⬇️","2024-11-05T22:48:12.000Z",,"https://x.com/amyklobuchar/status/1853932357134307701","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2836421"",""profile_name"":""MSNBC"",""url"":""https://x.com/MSNBC"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",40,105,710,43128,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,3,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853926660044722176/pu/vid/avc1/1280x720/EM8LyvXpyx-DECqn.mp4?tag=12"",""duration"":396966}]","2024-11-06T04:13:45.995Z","{""url"":""https://twitter.com/33537967/status/1853932357134307701""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853902560114930034","amyklobuchar","Amy Klobuchar","Colin Allred can pull this off and Texans think big! VOTE!","2024-11-05T20:49:48.000Z",,"https://x.com/amyklobuchar/status/1853902560114930034","{""post_id"":""1853784334429573220"",""profile_id"":""ColinAllredTX"",""profile_name"":""Colin Allred"",""data_posted"":""2011-08-02T02:56:31.000Z"",""url"":""https://x.com/ColinAllredTX/status/1853784334429573220"",""description"":""It’s Election Day! There’s so much at stake, and every single Texan needs to make their voice heard.\n\nFind your polling place at https://t.co/BOiAt1BQVp https://t.co/wtsI5SIjHO"",""photos"":null,""videos"":[{""url"":""https://video.twimg.com/ext_tw_video/1853781056995950592/pu/vid/avc1/720x720/U8zk9_WvAlw5_r4G.mp4?tag=12"",""duration"":31766}]}",,28,214,1097,51946,,,2009589,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,2,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:46.250Z","{""url"":""https://twitter.com/33537967/status/1853902560114930034""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853898843261407566","amyklobuchar","Amy Klobuchar","The people of Montana know that @jontester has their backs. GO VOTE MONTANA! If you haven't voted yet, you can go to","2024-11-05T20:35:02.000Z",,"https://x.com/amyklobuchar/status/1853898843261407566","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""16473577"",""profile_name"":""Jon Tester"",""url"":""https://x.com/jontester"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",20,95,313,21744,"http://iwillvote.com/",,2009589,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,3,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853898334475272192/pu/vid/avc1/720x720/dTclhZdr7kSUA-EW.mp4?tag=12"",""duration"":90176}]","2024-11-06T04:13:47.479Z","{""url"":""https://twitter.com/33537967/status/1853898843261407566""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853888734048977247","amyklobuchar","Amy Klobuchar","My friend @Bob_Casey has dedicated his life to serving the people of Pennsylvania, and is a hero for workers. If you live in PA and haven’t voted, go to","2024-11-05T19:54:52.000Z","[""https://pbs.twimg.com/media/GbpVkZhXQAAFp1a.jpg""]","https://x.com/amyklobuchar/status/1853888734048977247","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""94154021"",""profile_name"":""Bob Casey Jr."",""url"":""https://x.com/Bob_Casey"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",20,65,312,20749,"http://iwillvote.com/",,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:47.542Z","{""url"":""https://twitter.com/33537967/status/1853888734048977247""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853813376419291582","CongMikeSimpson","Congressman Mike Simpson","Today is Election Day, Idahoans! Polls are open from 8 AM to 8 PM. + +Get out and VOTE! 🇺🇸 + +Find your polling location here:","2024-11-05T14:55:25.000Z",,"https://x.com/CongMikeSimpson/status/1853813376419291582","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,1,12,674,"https://voteidaho.gov/",,25337,"Proudly representing Idaho's 2nd Congressional District. Member of @HouseAppropsGOP",3680,"https://pbs.twimg.com/profile_images/1488954714435854347/AAutJ4_K_normal.jpg",349,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853538472436338688/EX4vli4v?format=png&name=orig""]",,"2024-11-06T04:13:47.585Z","{""url"":""https://twitter.com/76132891/status/1853813376419291582""}","{""url"":""https://x.com/CongMikeSimpson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853609280819130713","amyklobuchar","Amy Klobuchar","Not every husband is willing to give a talk in front of a giant picture of their wife on the side of a bus. This one made me smile. Love you John.","2024-11-05T01:24:25.000Z","[""https://pbs.twimg.com/media/GblX0KnWUAAmkz7.jpg""]","https://x.com/amyklobuchar/status/1853609280819130713","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,200,759,9373,129812,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,11,23,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:47.636Z","{""url"":""https://twitter.com/33537967/status/1853609280819130713""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853947037202407693","ChrisMurphyCT","Chris Murphy 🟧","Philly’s Republican City Commissioner 👇","2024-11-05T23:46:32.000Z",,"https://x.com/ChrisMurphyCT/status/1853947037202407693","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""220412723"",""profile_name"":""Zachary Cohen"",""url"":""https://x.com/ZcohenCNN"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,9060,0,,,,1072188,"U.S. Senator from Connecticut.",32359,"https://pbs.twimg.com/profile_images/1410747515511660547/BuMyJGhl_normal.jpg",280,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:48.119Z","{""url"":""https://twitter.com/150078976/status/1853947037202407693""}","{""url"":""https://x.com/ChrisMurphyCT"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853755347975930364","MatthewDiemer","Matt Diemer","🗳️Ban Congressional Stock Trading + +🗳️Enshrine Reproductive Freedom in Law + +🗳️Campaign Finance Reform + +🗳️Institute Term Limits for Congress and Supreme Court + +🗳️Close the Revolving Door between Lobbyists and Congress + +🗳️Pass the PRO Act + +🗳️Make Privacy a Fundamental Right","2024-11-05T11:04:50.000Z","[""https://pbs.twimg.com/media/GbncDakW4AAboxD.jpg""]","https://x.com/MatthewDiemer/status/1853755347975930364","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,2,10,330,,,9065,"Congressional Candidate for Ohio’s 7th District + +MAKE CONGRESS WORK AGAIN",10678,"https://pbs.twimg.com/profile_images/1807091549974446080/3EFO4QBQ_normal.jpg",3091,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:48.710Z","{""url"":""https://twitter.com/913796543295062016/status/1853755347975930364""}","{""url"":""https://x.com/MatthewDiemer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853909066449301810","amyklobuchar","Amy Klobuchar","As I told @wolfblitzer - I am feeling positive about Kamala’s chances today in the battleground states. Momentum is on our side - it’s time to VOTE!","2024-11-05T21:15:40.000Z",,"https://x.com/amyklobuchar/status/1853909066449301810","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""71294756"",""profile_name"":""Wolf Blitzer"",""url"":""https://x.com/wolfblitzer"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",31,155,1166,52947,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,1,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853908099108655104/pu/vid/avc1/1280x720/cHceGMrw7kleqtfO.mp4?tag=12"",""duration"":104933}]","2024-11-06T04:13:48.796Z","{""url"":""https://twitter.com/33537967/status/1853909066449301810""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853645327968166092","DrewForNevada","Drew Johnson","Tomorrow is Election Day! 🗳️ 🇺🇲 + +Thank you to all my volunteers and everyone who's believed in our campaign. We're going to win tomorrow, but first... + +Get out and vote! Get your family members out to vote. Get your friends out to vote! Get your coworkers out to vote! + +It's going to take us all. + +Let's make a statement by overwhelming the ballot box! See you out at the polls!","2024-11-05T03:47:39.000Z",,"https://x.com/DrewForNevada/status/1853645327968166092","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,14,113,1954,,,2973,"Husband. Dog dad. Golden Knights fan🦩. Government watchdog, columnist, policy analyst, & liberty-loving defender of taxpayers. GOP nominee for Congress (NV-3).",2719,"https://pbs.twimg.com/profile_images/1503464288433819648/Mz3lMxzH_normal.jpg",974,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853645284318056448/pu/vid/avc1/576x1024/nIOcNrIkB8eNcB7j.mp4?tag=12"",""duration"":60778}]","2024-11-06T04:13:48.848Z","{""url"":""https://twitter.com/1451247668420775939/status/1853645327968166092""}","{""url"":""https://x.com/DrewForNevada"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853872210412294451","ChrisMurphyCT","Chris Murphy 🟧","Midday update from the Torrington Burger King (I have many Election Day superstitions including where I eat lunch). + +Polls are open until 8pm! And as long as you’re in line by 8, you can vote!","2024-11-05T18:49:12.000Z",,"https://x.com/ChrisMurphyCT/status/1853872210412294451","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,65,106,643,34533,,,1072193,"U.S. Senator from Connecticut.",32359,"https://pbs.twimg.com/profile_images/1410747515511660547/BuMyJGhl_normal.jpg",280,false,3,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853868050681847808/vid/avc1/720x1280/SMOIIAqH_nTtSW6O.mp4?tag=14"",""duration"":45803}]","2024-11-06T04:13:49.358Z","{""url"":""https://twitter.com/150078976/status/1853872210412294451""}","{""url"":""https://x.com/ChrisMurphyCT"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854000939029385254","amyklobuchar","Amy Klobuchar","My friend @ewarren is a fierce fighter for Massachusetts, and she NEVER gives up. I’m honored to be serving another term alongside her in the Senate.","2024-11-06T03:20:44.000Z","[""https://pbs.twimg.com/media/Gbq7v4zWoAkFo4c.jpg""]","https://x.com/amyklobuchar/status/1854000939029385254","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""357606935"",""profile_name"":""Elizabeth Warren"",""url"":""https://x.com/ewarren"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",44,174,2949,67212,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,2,7,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:50.348Z","{""url"":""https://twitter.com/33537967/status/1854000939029385254""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853900875753808071","amyklobuchar","Amy Klobuchar","MICHIGAN -- vote today for @ElissaSlotkin to be your next Senator! I've seen how committed she is to running a campaign that brings in Democrats, Independents, and Republicans. If you haven't made a plan to vote, go to","2024-11-05T20:43:07.000Z","[""https://pbs.twimg.com/media/Gbpg1m0WMAAadw-.jpg""]","https://x.com/amyklobuchar/status/1853900875753808071","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""860547911268139008"",""profile_name"":""Elissa Slotkin"",""url"":""https://x.com/ElissaSlotkin"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",14,73,354,22852,"http://iwillvote.com/",,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,0,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:50.299Z","{""url"":""https://twitter.com/33537967/status/1853900875753808071""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853612667312763322","Jim_Jordan","Rep. Jim Jordan","Secure borders. Not chaos.","2024-11-05T01:37:53.000Z",,"https://x.com/Jim_Jordan/status/1853612667312763322","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,441,358,4056,104433,,,5550657,"Proudly serving Ohio's beautiful Fourth District. Chairman @JudiciaryGOP, @Weaponization. Fighting to #DoWhatWeSaid",14652,"https://pbs.twimg.com/profile_images/596012379231617025/TtrAXbnA_normal.jpg",3698,false,14,7,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:50.513Z","{""url"":""https://twitter.com/18166778/status/1853612667312763322""}","{""url"":""https://x.com/Jim_Jordan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853792678720217316","ChrisMurphyCT","Chris Murphy 🟧","Started Election Day in Vernon with State Representatives Kevin Brown and Jaime Foster. Traveling all over the state today greeting voters, thanking volunteers, and working out my nervous energy for our country!","2024-11-05T13:33:11.000Z","[""https://pbs.twimg.com/media/Gbn-mt_XoAABag8.jpg"",""https://pbs.twimg.com/media/Gbn-mt9WQAAow0Y.jpg""]","https://x.com/ChrisMurphyCT/status/1853792678720217316","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,44,25,197,17905,,,1072188,"U.S. Senator from Connecticut.",32359,"https://pbs.twimg.com/profile_images/1410747515511660547/BuMyJGhl_normal.jpg",280,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:50.556Z","{""url"":""https://twitter.com/150078976/status/1853792678720217316""}","{""url"":""https://x.com/ChrisMurphyCT"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854002301809148001","MikeHaridopolos","Mike Haridopolos","I am honored to be your Congressman! Thank you for your trust and support. Now let’s get to work! 🇺🇸","2024-11-06T03:26:09.000Z","[""https://pbs.twimg.com/media/Gbq9LcPWUBI0ooY.jpg"",""https://pbs.twimg.com/media/Gbq9LcPWgA4LfYh.jpg""]","https://x.com/MikeHaridopolos/status/1854002301809148001","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,12,44,518,34035,,,7443,"Republican Nominee for (FL-8) https://t.co/PPezrKE2Xc -former President of the Florida Senate| Husband| Father|Son",5761,"https://pbs.twimg.com/profile_images/1814041136098418688/Qq5UoU7t_normal.jpg",1823,false,3,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1854002200906788880/vid/avc1/1280x720/KL9fJXzan0fDY7OX.mp4?tag=16"",""duration"":39775}]","2024-11-06T04:13:50.909Z","{""url"":""https://twitter.com/26256573/status/1854002301809148001""}","{""url"":""https://x.com/MikeHaridopolos"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853869390007316599","ChrisMurphyCT","Chris Murphy 🟧","I met Grace and her mom at their polling place in Torrington. Grace said she wanted three things to change if I get reelected: + +1. longer school recess +2. more rights for women +3. make horses street legal + +Grace, I’m on it!","2024-11-05T18:38:00.000Z","[""https://pbs.twimg.com/media/GbpEXKoWoAAyBsH.jpg""]","https://x.com/ChrisMurphyCT/status/1853869390007316599","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,58,49,544,23176,,,1072188,"U.S. Senator from Connecticut.",32359,"https://pbs.twimg.com/profile_images/1410747515511660547/BuMyJGhl_normal.jpg",280,false,4,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:52.225Z","{""url"":""https://twitter.com/150078976/status/1853869390007316599""}","{""url"":""https://x.com/ChrisMurphyCT"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853823896195076516","MarshaBlackburn","Sen. Marsha Blackburn","Under Biden-Harris, inflation reached its highest rate in 40 years. + +Today, prices are still up over 20%. + +Let that sink in.","2024-11-05T15:37:13.000Z",,"https://x.com/MarshaBlackburn/status/1853823896195076516","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,178,171,944,21432,,,1281359,"I am honored to serve the people of Tennessee.",21473,"https://pbs.twimg.com/profile_images/1670212590289428480/7KvuY3a4_normal.jpg",2025,false,14,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:52.670Z","{""url"":""https://twitter.com/278145569/status/1853823896195076516""}","{""url"":""https://x.com/MarshaBlackburn"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853794097829400608","CongMikeSimpson","Congressman Mike Simpson","Americans cannot afford another 4 years of #Kamalanomics!","2024-11-05T13:38:49.000Z",,"https://x.com/CongMikeSimpson/status/1853794097829400608","{""post_id"":""1853791627296559111"",""profile_id"":""HouseGOP"",""profile_name"":""House Republicans"",""data_posted"":""2008-06-23T14:41:52.000Z"",""url"":""https://x.com/HouseGOP/status/1853791627296559111"",""description"":""Americans are struggling to make ends meet because of FAILED #Kamalanomics. https://t.co/G1mRXIT5dh"",""photos"":[""https://pbs.twimg.com/media/GbjmwTDWYAAy-kO.jpg""],""videos"":null}",,39,21,108,16762,,"[""Kamalanomics""]",25337,"Proudly representing Idaho's 2nd Congressional District. Member of @HouseAppropsGOP",3680,"https://pbs.twimg.com/profile_images/1488954714435854347/AAutJ4_K_normal.jpg",349,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:52.724Z","{""url"":""https://twitter.com/76132891/status/1853794097829400608""}","{""url"":""https://x.com/CongMikeSimpson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853896415560217033","BennieGThompson","Bennie G. Thompson","There will be no makeup exam on November 6. + +Understand the assignment.","2024-11-05T20:25:23.000Z",,"https://x.com/BennieGThompson/status/1853896415560217033","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,24,432,2459,22946,,,108096,"Husband. Father. Grandfather. Avid hunter. Proudly serving #MS02 in Congress. | Ranking Member of @HomelandDems. | Follow my Instagram: @benniegthompson",5168,"https://pbs.twimg.com/profile_images/1658104986381832194/ZtGQSSDH_normal.jpg",590,false,3,12,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:52.695Z","{""url"":""https://twitter.com/82453460/status/1853896415560217033""}","{""url"":""https://x.com/BennieGThompson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800436027084984","Call_Me_Dutch","Dutch Ruppersberger","Happy Election Day! Our elections offer Americans the opportunity to make their voice heard. Go vote!","2024-11-05T14:04:00.000Z","[""https://pbs.twimg.com/media/GbkH8rnWkAAUeTK.jpg""]","https://x.com/Call_Me_Dutch/status/1853800436027084984","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,3,310,,,18861,"US Congressman fighting for #Maryland and its Second District as @AppropsDems. Wielding a crab mallet since ’46. Go @Orioles, @Ravens.",6834,"https://pbs.twimg.com/profile_images/1550132833594839040/0ymrzvKn_normal.jpg",2405,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:52.860Z","{""url"":""https://twitter.com/305620929/status/1853800436027084984""}","{""url"":""https://x.com/Call_Me_Dutch"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853818327010808184","amyklobuchar","Amy Klobuchar","It was Midnight Madness at the Saint Paul Labor Center! Election is today, and the enthusiasm has never been higher. People were out delivering lit at midnight. WATCH THE DIFFERENCE A GROUND GAME MAKES TODAY! VOTE!","2024-11-05T15:15:06.000Z","[""https://pbs.twimg.com/media/GboVfe4XQAA5oLe.jpg""]","https://x.com/amyklobuchar/status/1853818327010808184","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,22,65,410,20582,,,2009589,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:53.054Z","{""url"":""https://twitter.com/33537967/status/1853818327010808184""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853821711789240738","ChrisMurphyCT","Chris Murphy 🟧","Scenes from the polls in Farmington and New Britain. Turnout is brisk!","2024-11-05T15:28:33.000Z","[""https://pbs.twimg.com/media/GboY_ygXgAAlLL5.jpg"",""https://pbs.twimg.com/media/GboY_yYXEAAEL93.jpg"",""https://pbs.twimg.com/media/GboY_ygWQAA-Ajv.jpg"",""https://pbs.twimg.com/media/GboY_ycXQAEjeLH.jpg""]","https://x.com/ChrisMurphyCT/status/1853821711789240738","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,40,36,287,20334,,,1072188,"U.S. Senator from Connecticut.",32359,"https://pbs.twimg.com/profile_images/1410747515511660547/BuMyJGhl_normal.jpg",280,false,3,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:53.280Z","{""url"":""https://twitter.com/150078976/status/1853821711789240738""}","{""url"":""https://x.com/ChrisMurphyCT"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853879306516074688","amyklobuchar","Amy Klobuchar","ARIZONA, vote for @RubenGallego – he is exactly who Arizonans need to represent them in the Senate. When I was campaigning with him in Arizona the energy on the ground was incredible! Excited to see his hard work pay off tonight.","2024-11-05T19:17:24.000Z","[""https://pbs.twimg.com/media/GbpNGhaW4AAkPBs.jpg""]","https://x.com/amyklobuchar/status/1853879306516074688","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""49217025"",""profile_name"":""Ruben Gallego"",""url"":""https://x.com/RubenGallego"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",25,99,408,21870,,,2009595,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118431,false,1,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:53.956Z","{""url"":""https://twitter.com/33537967/status/1853879306516074688""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853620340556996618","MarshaBlackburn","Sen. Marsha Blackburn","Deport all criminal illegal aliens.","2024-11-05T02:08:22.000Z",,"https://x.com/MarshaBlackburn/status/1853620340556996618","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,231,181,1273,22501,,,1281359,"I am honored to serve the people of Tennessee.",21473,"https://pbs.twimg.com/profile_images/1670212590289428480/7KvuY3a4_normal.jpg",2025,false,9,5,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:53.936Z","{""url"":""https://twitter.com/278145569/status/1853620340556996618""}","{""url"":""https://x.com/MarshaBlackburn"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853816038238077326","lauriebuckhout","Laurie Buckhout",,"2024-11-05T15:06:00.000Z","[""https://pbs.twimg.com/media/GbU6t6PWsAAkBai.jpg""]","https://x.com/lauriebuckhout/status/1853816038238077326","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,18,53,1219,,,4758,"Mom. Wife. Combat Commander. Business leader. America First Conservative Fighter. Running to Defend Families in NC’s 1st Congressional District.",2069,"https://pbs.twimg.com/profile_images/1796969781901303808/XyS3bao6_normal.jpg",2637,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:53.951Z","{""url"":""https://twitter.com/1713883370680193024/status/1853816038238077326""}","{""url"":""https://x.com/lauriebuckhout"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853857638469054692","RepAngieCraig","Angie Craig","The government has no place in your personal medical decisions. +  +It’s time to restore the protections of Roe v. Wade and ensure women in every state have the right to control their own bodies.","2024-11-05T17:51:18.000Z",,"https://x.com/RepAngieCraig/status/1853857638469054692","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,3,13,976,,,36156,"Mom of four boys, Mimi to three grandsons, wife to Cheryl & U.S. Representative for Minnesota’s 2nd District. Your voice matters and it’s an honor to serve you.",6027,"https://pbs.twimg.com/profile_images/1257340278219911169/7E0EMj2P_normal.jpg",939,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:53.994Z","{""url"":""https://twitter.com/1080222360643485698/status/1853857638469054692""}","{""url"":""https://x.com/RepAngieCraig"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853864870908752234","amyklobuchar","Amy Klobuchar","VOTE NEVADA for @RosenforNevada and if you’ve already voted text your friends to vote! Jacky Rosen is my friend and a champion for the people of Nevada. Last month I joined her and Rep. Dina Titus in Las Vegas and here’s what I know - she’s got your back.","2024-11-05T18:20:03.000Z","[""https://pbs.twimg.com/media/GbpARh_WMAAI2J7.jpg""]","https://x.com/amyklobuchar/status/1853864870908752234","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""4749863113"",""profile_name"":""Jacky Rosen"",""url"":""https://x.com/RosenforNevada"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",22,82,373,21290,,,2009589,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,1,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:54.335Z","{""url"":""https://twitter.com/33537967/status/1853864870908752234""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853626566246277399","JayObernolte","Rep. Jay Obernolte","This week I enjoyed visiting Sorenson Engineering in Yucaipa! It was impressive to see how this innovative company is leading in precision manufacturing right here in our district. Sorenson Engineering’s commitment to quality and community-driven growth is a model for American manufacturing. I’m proud to support businesses like these that create jobs and drive economic development in our community!","2024-11-05T02:33:06.000Z",,"https://x.com/JayObernolte/status/1853626566246277399","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,1,9,558,,,10014,"Proudly representing California's 23rd Congressional District. Small businessman, former mayor and state assembly member. Learn more at https://t.co/wHVuW5pTLi.",2548,"https://pbs.twimg.com/profile_images/1357402265603239942/QUeCFmxF_normal.jpg",972,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:54.759Z","{""url"":""https://twitter.com/272482466/status/1853626566246277399""}","{""url"":""https://x.com/JayObernolte"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853816296074358799","JayObernolte","Rep. Jay Obernolte","Today is Election Day! No matter who you're supporting, it's important to make your voice heard and take part in our democracy. Voting is our right and responsibility—let’s honor it by showing up at the polls and fulfilling our civic duty. Please encourage your friends, family, and neighbors to vote as well. Every vote counts! https://t.co/F4dy8QXukr","2024-11-05T15:07:01.000Z",,"https://x.com/JayObernolte/status/1853816296074358799","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,2,13,635,,,10014,"Proudly representing California's 23rd Congressional District. Small businessman, former mayor and state assembly member. Learn more at https://t.co/wHVuW5pTLi.",2548,"https://pbs.twimg.com/profile_images/1357402265603239942/QUeCFmxF_normal.jpg",972,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:54.913Z","{""url"":""https://twitter.com/272482466/status/1853816296074358799""}","{""url"":""https://x.com/JayObernolte"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853855967370510778","chelliepingree","Congresswoman Chellie Pingree 🇺🇸🇺🇦","If you live in Maine and aren’t registered to vote, you can register TODAY! All you have to do is bring your ID +proof of residence to your designated polling place, and you’ll be able to vote. + +This is not the election to sit on the sidelines. Go out and make your voice heard!🗳️","2024-11-05T17:44:40.000Z",,"https://x.com/chelliepingree/status/1853855967370510778","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,12,35,1341,,,35283,"Organic Farmer 👩‍🌾. Mom of 3. Grandma of 7. Maine islander 🌊. @AppropsDems Interior Ranking Member and member of @HouseAgDems.",9002,"https://pbs.twimg.com/profile_images/1752719305081315328/-Of_vrhO_normal.jpg",1539,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:55.084Z","{""url"":""https://twitter.com/14984637/status/1853855967370510778""}","{""url"":""https://x.com/chelliepingree"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853788026477949375","BobbyScott","Rep. Bobby Scott","The November General Election is here! Polls open at 6am EST. Visit","2024-11-05T13:14:41.000Z",,"https://x.com/BobbyScott/status/1853788026477949375","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""54982829"",""profile_name"":""VA Dept of Elections"",""url"":""https://x.com/vaELECT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,44,0,,"http://vote.virginia.gov/",,44489,"Proudly representing Virginia's 3rd Congressional District. Ranking Member of the Committee on Education and the Workforce, @EdWorkforceDems.",10117,"https://pbs.twimg.com/profile_images/1482027899750395908/8qt36ccb_normal.jpg",3190,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:55.991Z","{""url"":""https://twitter.com/161791703/status/1853788026477949375""}","{""url"":""https://x.com/BobbyScott"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853806707547181116","amyklobuchar","Amy Klobuchar","Incredible night at the Minneapolis Regional Labor Federation! Joined an energized group of leaders and volunteers ready to get out the vote. WATCH THE DIFFERENCE A GROUND GAME MAKES TODAY. VOTE!","2024-11-05T14:28:55.000Z","[""https://pbs.twimg.com/media/GboK6r4WsAAdL5g.jpg""]","https://x.com/amyklobuchar/status/1853806707547181116","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,24,45,261,17632,,,2009595,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118431,false,0,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:56.285Z","{""url"":""https://twitter.com/33537967/status/1853806707547181116""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853802448571580695","CongressmanRaja","Congressman Raja Krishnamoorthi","Today’s the day! If you haven’t voted already, polls are open across Illinois until 7pm tonight. + +No matter whom you vote for, participating in our democracy is critical. + +Find your polling location here:","2024-11-05T14:12:00.000Z",,"https://x.com/CongressmanRaja/status/1853802448571580695","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,20,76,2675,"https://www.vote.org/polling-place-locator/",,171005,"Official Twitter account of Congressman Raja Krishnamoorthi (IL-08) | Ranking Member of @CmteOnCCPDems | Serving on @HouseIntel & @OversightDems",15255,"https://pbs.twimg.com/profile_images/817454739910750209/-LvcQa9a_normal.jpg",1063,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851743421456949248/xcfB_jr3?format=jpg&name=orig""]",,"2024-11-06T04:13:56.313Z","{""url"":""https://twitter.com/814179031956488192/status/1853802448571580695""}","{""url"":""https://x.com/CongressmanRaja"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853823084924420552","Call_Me_Dutch","Dutch Ruppersberger","November is National Diabetes Month. Thanks to Democrats, insulin for seniors is now capped at $35 a month. + +I’ll keep fighting to lower prescription drug costs to ensure that every American can lead a healthy life.","2024-11-05T15:34:00.000Z","[""https://pbs.twimg.com/media/GbkHxVKXwAAMJjP.jpg""]","https://x.com/Call_Me_Dutch/status/1853823084924420552","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,1,230,,,18861,"US Congressman fighting for #Maryland and its Second District as @AppropsDems. Wielding a crab mallet since ’46. Go @Orioles, @Ravens.",6834,"https://pbs.twimg.com/profile_images/1550132833594839040/0ymrzvKn_normal.jpg",2405,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:56.440Z","{""url"":""https://twitter.com/305620929/status/1853823084924420552""}","{""url"":""https://x.com/Call_Me_Dutch"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853980624597512458","Kilili_Sablan","Del. Kilili Sablan","Marianas students: .@NOAA Marine Debris Program Art Contest has launched. Students K-8 can submit their art now thru Dec. 13 that answers: How does marine debris impact the ocean & Great Lakes?; & What are you doing to help prevent marine debris?","2024-11-06T02:00:00.000Z","[""https://pbs.twimg.com/media/GbpsgwBXYAEKIJJ.jpg""]","https://x.com/Kilili_Sablan/status/1853980624597512458","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""14342564"",""profile_name"":""NOAA"",""url"":""https://x.com/NOAA"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,1,157,"https://marinedebris.noaa.gov/annual-noaa-marine-debris-program-art-contest-and-calendar",,2563,"US Delegate for the Northern Mariana Islands 🇲🇵. Member of @EdWorkforceDems, @NRDems, @CAPAC & @HispanicCaucus",2898,"https://pbs.twimg.com/profile_images/926447365107666946/QPZ1Pd7E_normal.jpg",1321,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:58.253Z","{""url"":""https://twitter.com/926446070812602371/status/1853980624597512458""}","{""url"":""https://x.com/Kilili_Sablan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800289452585187","RepBeccaB","Rep. Becca Balint","Good morning! It's Election Day in America. + +If you have not yet voted, now is your chance to make your voice heard. + +Vermonters, find your polling place below. The polls close at 7PM.","2024-11-05T14:03:25.000Z",,"https://x.com/RepBeccaB/status/1853800289452585187","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,4,11,523,"https://sos.vermont.gov/elections/voters/polling-places/",,14342,"Mom, Teacher, Vermonter, Writer & Congresswoman for VT, fighting for working families. @HouseJudiciary & @HouseBudgetDems. She/Her. Official. 🏳️‍🌈🏔️🏍️🍁",1590,"https://pbs.twimg.com/profile_images/1609940943330762759/vycKWrOM_normal.jpg",351,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:58.726Z","{""url"":""https://twitter.com/1606115178210365448/status/1853800289452585187""}","{""url"":""https://x.com/RepBeccaB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853904581203247256","amyklobuchar","Amy Klobuchar","Florida - it’s time to cast your ballot for Debbie Mucarsel-Powell! In September I joined Debbie and Lois Frankel in Florida to fight for reproductive rights - they are the champions Florida needs.","2024-11-05T20:57:50.000Z","[""https://pbs.twimg.com/media/GbpjYfQWoAE2dJD.jpg""]","https://x.com/amyklobuchar/status/1853904581203247256","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,35,70,449,25804,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:58.750Z","{""url"":""https://twitter.com/33537967/status/1853904581203247256""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853825654506303637","RepAngieCraig","Angie Craig","Today is Election Day – make sure your voice is heard! +  +To find your voting location, visit","2024-11-05T15:44:13.000Z",,"https://x.com/RepAngieCraig/status/1853825654506303637","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,6,12,599,"https://pollfinder.sos.state.mn.us/",,36156,"Mom of four boys, Mimi to three grandsons, wife to Cheryl & U.S. Representative for Minnesota’s 2nd District. Your voice matters and it’s an honor to serve you.",6027,"https://pbs.twimg.com/profile_images/1257340278219911169/7E0EMj2P_normal.jpg",939,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:58.753Z","{""url"":""https://twitter.com/1080222360643485698/status/1853825654506303637""}","{""url"":""https://x.com/RepAngieCraig"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853846114471915779","rep_jackson","Rep. Jonathan L. Jackson","Trump promises to jail political opponents, fire civil servants acting in the public interest and hire lackeys to run the government. + +Project 2025's Schedule F—which he tried to implement in 2020—is the crux of his plan. + +@StaceyPlaskett @RepJasmine @Accountable_Us & I explain👇","2024-11-05T17:05:31.000Z",,"https://x.com/rep_jackson/status/1853846114471915779","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1610019555371372544"",""profile_name"":""Rep. Dan Goldman"",""url"":""https://x.com/RepDanGoldman"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1964,0,,,,4794,"Honored to represent #IL01 and committed to promoting policies that advance equality and justice. Proud Member of @HouseForeign + and @HouseAgDems.",881,"https://pbs.twimg.com/profile_images/1621293457808433156/lUZl_FkA_normal.jpg",219,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:58.833Z","{""url"":""https://twitter.com/1615455071801679874/status/1853846114471915779""}","{""url"":""https://x.com/rep_jackson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799469533344225","MadisonHornOK","Madison Horn","In this country I love, we’ve witnessed so much divisiveness—too many voices focused on what divides us, rather than what unites us. + + But as we stand here now, I’m filled with hope. Hope that we can come together. Hope that we can rediscover the true meaning of who we are as the United States of America. + +I’ve always believed that serivce comes before all politics. If you’re looking for someone who will work hard, who is qualified, and who is committed to rejecting partisan bickering in favor of real solutions, then I humbly ask for your vote today. + +Thank you for being part of this movement. I am so deeply grateful for your support and trust. Together, we can build a stronger, more secure future. + +If you still have questions, I’m always here to answer +#questions my cell is 405-205-8787 or visit https://t.co/d9VEci9a95. + +With humility and gratitude, + +Madison Horn + +OK-05 Congressional Nominee + +#Reminder: There is strength in humility + +#TogetherForTheRedAndBlue +#ElectionDay +#UnitedWeStand","2024-11-05T14:00:10.000Z","[""https://pbs.twimg.com/media/GboEylpXsAAz0Iu.jpg"",""https://pbs.twimg.com/media/GboEylxWUAApo71.jpg""]","https://x.com/MadisonHornOK/status/1853799469533344225","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,39,177,2974,,,21739,"Running for Congress | Cybersecurity CEO | 7th GenOkie | Focused on Uniting | Defending U.S. interest 15 yrs | It's time Politicians Give a Damn About Oklahoma!",2376,"https://pbs.twimg.com/profile_images/1702735063417286656/PpB1OXE2_normal.jpg",9026,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:59.163Z","{""url"":""https://twitter.com/1446580126712487936/status/1853799469533344225""}","{""url"":""https://x.com/MadisonHornOK"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853847619220730116","CongressmanRaja","Congressman Raja Krishnamoorthi","My office is hiring a veteran or Gold Star family member to join our team in Schaumburg! + +To read more about the position and to apply, click below.","2024-11-05T17:11:29.000Z",,"https://x.com/CongressmanRaja/status/1853847619220730116","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,17,38,2194,"https://www.usajobs.gov/job/817412900",,170985,"Official Twitter account of Congressman Raja Krishnamoorthi (IL-08) | Ranking Member of @CmteOnCCPDems | Serving on @HouseIntel & @OversightDems",15255,"https://pbs.twimg.com/profile_images/817454739910750209/-LvcQa9a_normal.jpg",1063,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:59.344Z","{""url"":""https://twitter.com/814179031956488192/status/1853847619220730116""}","{""url"":""https://x.com/CongressmanRaja"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853891334920134961","MarshaBlackburn","Sen. Marsha Blackburn","I am praying for Israel as they continue to face vicious attacks by Iran-backed proxies and Hamas terrorists.","2024-11-05T20:05:12.000Z",,"https://x.com/MarshaBlackburn/status/1853891334920134961","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,175,98,845,27276,,,1281359,"I am honored to serve the people of Tennessee.",21473,"https://pbs.twimg.com/profile_images/1670212590289428480/7KvuY3a4_normal.jpg",2025,false,6,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:13:59.573Z","{""url"":""https://twitter.com/278145569/status/1853891334920134961""}","{""url"":""https://x.com/MarshaBlackburn"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853805328309051833","DonaldNorcross","Congressman Donald Norcross 🇺🇸","It’s great to hear that @IAM751 has reached an agreement with @Boeing that includes a 38% pay increase and a higher match to 401(k) plans. This new contract is a testament to the hard work the workers do in this job.","2024-11-05T14:23:26.000Z",,"https://x.com/DonaldNorcross/status/1853805328309051833","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""28103693"",""profile_name"":""IAM Union District 751"",""url"":""https://x.com/IAM751"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""25103967"",""profile_name"":""The Boeing Company"",""url"":""https://x.com/Boeing"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",1,4,12,917,,,14053,"Honored to serve NJ-01 +Electrician • Husband, Dad, Granddad +Co-chair: @Labor_Caucus +Member: @EdWorkforceDems, @HASCDemocrats TAL Ranking Member",12446,"https://pbs.twimg.com/profile_images/1050098504515899392/h6RzXCGt_normal.jpg",1346,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:00.026Z","{""url"":""https://twitter.com/3122099613/status/1853805328309051833""}","{""url"":""https://x.com/DonaldNorcross"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853603142224789532","DorisMatsui","Rep. Doris Matsui","📢 Constituent Services Hours are on THURSDAY 📢 + +If you need help navigating a federal agency, my staff will be at the Stockton Boulevard Partnership on November 7th to help you obtain reliable information and make inquiries on your behalf. + +Visit us ⬇️","2024-11-05T01:00:02.000Z","[""https://pbs.twimg.com/media/GblEI9abUAAqbep.jpg""]","https://x.com/DorisMatsui/status/1853603142224789532","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,3,296,,,42274,"Representing California's 7th Congressional District — including the capital city of Sacramento. Subcommittee Ranking Member on the @EnergyCommerce Committee.",5660,"https://pbs.twimg.com/profile_images/644563582294757376/UJMwQIXY_normal.jpg",8740,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:01.429Z","{""url"":""https://twitter.com/38254095/status/1853603142224789532""}","{""url"":""https://x.com/DorisMatsui"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853767735144001949","GerryConnolly","Rep. Gerry Connolly","Polls are now OPEN! + +You can vote at your assigned precinct until 7 p.m. You can also register same day. + +More details in our Guide to Election Day:","2024-11-05T11:54:04.000Z",,"https://x.com/GerryConnolly/status/1853767735144001949","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""117211838"",""profile_name"":""Fairfax County Votes"",""url"":""https://x.com/fairfaxvotes"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,40,0,,,,87924,"Congressman, Northern Virginia’s #VA11 | President, @NATO Parliamentary Assembly | @TheLawmakers' Most Effective Lawmaker of the 117th Congress",12549,"https://pbs.twimg.com/profile_images/1277702577069740034/bm5EzNM6_normal.jpg",865,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:02.566Z","{""url"":""https://twitter.com/78445977/status/1853767735144001949""}","{""url"":""https://x.com/GerryConnolly"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854000116455104561","amyklobuchar","Amy Klobuchar","Congratulations to my classmate @SheldonforRI on his reelection! His tireless work on climate and campaign finance reform is more important than ever.","2024-11-06T03:17:28.000Z","[""https://pbs.twimg.com/media/Gbq64e0WoEk_fxU.jpg""]","https://x.com/amyklobuchar/status/1854000116455104561","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""770121222"",""profile_name"":""Sheldon Whitehouse"",""url"":""https://x.com/SheldonforRI"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",24,115,1388,50650,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,2,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:02.889Z","{""url"":""https://twitter.com/33537967/status/1854000116455104561""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853593724544073761","RepBeccaB","Rep. Becca Balint","By instituting a national abortion ban and tracking women’s pregnancies, Project 2025 would kill women. + +In the last video of our series @RepLoisFrankel @RepJudyChu @RepKManning @RepBeccaB @RepJasmine @PPact and I discuss the plan to end reproductive rights.","2024-11-05T00:22:36.000Z",,"https://x.com/RepBeccaB/status/1853593724544073761","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1610019555371372544"",""profile_name"":""Rep. Dan Goldman"",""url"":""https://x.com/RepDanGoldman"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,799,0,,,,14342,"Mom, Teacher, Vermonter, Writer & Congresswoman for VT, fighting for working families. @HouseJudiciary & @HouseBudgetDems. She/Her. Official. 🏳️‍🌈🏔️🏍️🍁",1590,"https://pbs.twimg.com/profile_images/1609940943330762759/vycKWrOM_normal.jpg",351,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:04.603Z","{""url"":""https://twitter.com/1606115178210365448/status/1853593724544073761""}","{""url"":""https://x.com/RepBeccaB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853920410271912394","MarioDB","Mario Díaz-Balart","Have you tuned in to Florida's Voice Radio yet? Congressman Mario Diaz-Balart (@MarioDB) is joining us momentarily!","2024-11-05T22:00:44.000Z",,"https://x.com/MarioDB/status/1853920410271912394","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1398376668192985091"",""profile_name"":""Florida’s Voice"",""url"":""https://x.com/FLVoiceNews"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""37094727"",""profile_name"":""Mario Díaz-Balart"",""url"":""https://x.com/MarioDB"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,,80357,"Proud to represent Florida's 26th Congressional District & serve on @HouseAppropsGOP as Chairman of SFOPS & member of Defense & THUD subcommittees.",12343,"https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg",1109,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:04.670Z","{""url"":""https://twitter.com/37094727/status/1853920410271912394""}","{""url"":""https://x.com/MarioDB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853797196711198874","GerryConnolly","Rep. Gerry Connolly","It’s Election Day, Virginia! Polls are open until 7pm. Get out there and make your voice heard!🗳️","2024-11-05T13:51:08.000Z",,"https://x.com/GerryConnolly/status/1853797196711198874","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,5,43,1755,,,87924,"Congressman, Northern Virginia’s #VA11 | President, @NATO Parliamentary Assembly | @TheLawmakers' Most Effective Lawmaker of the 117th Congress",12549,"https://pbs.twimg.com/profile_images/1277702577069740034/bm5EzNM6_normal.jpg",865,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:04.920Z","{""url"":""https://twitter.com/78445977/status/1853797196711198874""}","{""url"":""https://x.com/GerryConnolly"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853913530996609047","MarioDB","Mario Díaz-Balart","Under Kamala Harris, America has seen: + +❌42 months of inflation above 20.5% +❌+10M illegal crossings at the southern border +❌Rising crime rates +❌A weak foreign policy that has emboldened our enemies + +We cannot afford another four years of these disastrous policies","2024-11-05T21:33:24.000Z",,"https://x.com/MarioDB/status/1853913530996609047","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,7,29,1598,,,80356,"Proud to represent Florida's 26th Congressional District & serve on @HouseAppropsGOP as Chairman of SFOPS & member of Defense & THUD subcommittees.",12343,"https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg",1109,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:05.280Z","{""url"":""https://twitter.com/37094727/status/1853913530996609047""}","{""url"":""https://x.com/MarioDB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853840771452924057","RepGregLopez","Rep. Greg Lopez","Don't forget to vote - history is being made, don't miss your chance to be a part of it.","2024-11-05T16:44:17.000Z","[""https://pbs.twimg.com/media/GbopGYiXwAAoFIX.jpg""]","https://x.com/RepGregLopez/status/1853840771452924057","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,2,35,,,496,"Proudly representing Colorado’s 4th District in the U.S. House of Representatives. Member of the House Science, Space, and Tech Committee, and Budget Committee.",165,"https://pbs.twimg.com/profile_images/1810808651583746048/m0gv-CZ__normal.jpg",173,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:05.357Z","{""url"":""https://twitter.com/1810728898252132352/status/1853840771452924057""}","{""url"":""https://x.com/RepGregLopez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853593972725170393","jahimes","Jim Himes 🇺🇸🇺🇸🇺🇦🇺🇦","NEW from @USNews Ideas & Opinions~ +Congressman: I Was Inside the Capitol When Rioters Attacked on Jan. 6. Don’t Listen to Those Who Try to Incite Violence Again, writes U.S. Rep. @jahimes","2024-11-05T00:23:35.000Z",,"https://x.com/jahimes/status/1853593972725170393","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""239857777"",""profile_name"":""Indira Lakshmanan"",""url"":""https://x.com/Indira_L"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""6577642"",""profile_name"":""U.S. News & World Report"",""url"":""https://x.com/usnews"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,7,0,,,,107948,"Connecticut Congressman. Reader. Runner. Swimmer. Apiarist. And I make maple syrup. And mead.",13892,"https://pbs.twimg.com/profile_images/1787892900614799360/BO0kMC63_normal.jpg",443,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853584972403163136/CzGHmzkq?format=jpg&name=orig""]",,"2024-11-06T04:14:05.429Z","{""url"":""https://twitter.com/31611298/status/1853593972725170393""}","{""url"":""https://x.com/jahimes"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853900553274954170","RepBeccaB","Rep. Becca Balint","Here's what it would look like if Democrats control the House: + +Big investments in housing and infrastructure. +Addressing the mental health crisis. +Passing gun safety legislation. +Guaranteeing reproductive rights. +Expanding the child tax credit to lift kids out of poverty.","2024-11-05T20:41:50.000Z",,"https://x.com/RepBeccaB/status/1853900553274954170","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,3,30,786,,,14342,"Mom, Teacher, Vermonter, Writer & Congresswoman for VT, fighting for working families. @HouseJudiciary & @HouseBudgetDems. She/Her. Official. 🏳️‍🌈🏔️🏍️🍁",1590,"https://pbs.twimg.com/profile_images/1609940943330762759/vycKWrOM_normal.jpg",351,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:06.580Z","{""url"":""https://twitter.com/1606115178210365448/status/1853900553274954170""}","{""url"":""https://x.com/RepBeccaB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853828024128463169","RepBeccaB","Rep. Becca Balint","Friendly reminder that the Freedom to Vote Act would make Election Day a federal holiday.","2024-11-05T15:53:38.000Z",,"https://x.com/RepBeccaB/status/1853828024128463169","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,25,176,3258,,,14342,"Mom, Teacher, Vermonter, Writer & Congresswoman for VT, fighting for working families. @HouseJudiciary & @HouseBudgetDems. She/Her. Official. 🏳️‍🌈🏔️🏍️🍁",1590,"https://pbs.twimg.com/profile_images/1609940943330762759/vycKWrOM_normal.jpg",351,false,2,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:06.690Z","{""url"":""https://twitter.com/1606115178210365448/status/1853828024128463169""}","{""url"":""https://x.com/RepBeccaB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853784437642682672","RepBeatty","Rep. Joyce Beatty","It’s inspiring to see Americans coming together to support our democratic process! 🇺🇸 Need a ride to the polls or a snack this Election Day? Click the link to see what’s available to make your voting experience easier and sweeter! #OhioVotes","2024-11-05T13:00:26.000Z","[""https://pbs.twimg.com/media/Gbn3GubXsAAyBle.jpg""]","https://x.com/RepBeatty/status/1853784437642682672","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,13,25,1101,"https://cnn.it/4ef0pI8","[""OhioVotes""]",75407,"Serving Ohio’s 3rd District. Chair Emerita of @TheBlackCaucus. Member of the @FSCDems Committee. Proud Ohioan.",14829,"https://pbs.twimg.com/profile_images/1744510956523139073/cMg3aOY-_normal.jpg",2363,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:06.697Z","{""url"":""https://twitter.com/1531521632/status/1853784437642682672""}","{""url"":""https://x.com/RepBeatty"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800128626221056","MarioDB","Mario Díaz-Balart","The Biden-Harris Administration has smothered small businesses in regulatory burdens. + +Every dollar in new regulations is yet another barrier to a successful small business.","2024-11-05T14:02:47.000Z",,"https://x.com/MarioDB/status/1853800128626221056","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2978291435"",""profile_name"":""House Committee on Small Business"",""url"":""https://x.com/HouseSmallBiz"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,48,0,,,,80356,"Proud to represent Florida's 26th Congressional District & serve on @HouseAppropsGOP as Chairman of SFOPS & member of Defense & THUD subcommittees.",12343,"https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg",1109,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:06.880Z","{""url"":""https://twitter.com/37094727/status/1853800128626221056""}","{""url"":""https://x.com/MarioDB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853962534031913018","MarioDB","Mario Díaz-Balart","I am honored to once again represent Florida’s 26th Congressional District. + +In the 119th Congress, I will continue to champion responsible, conservative policies that save taxpayer dollars, uplift small businesses, support our brave men and women in the military and law enforcement, honor our veterans, promote energy independence, secure our borders, and protect our national security interests. + +Thank you for the opportunity to serve.","2024-11-06T00:48:07.000Z",,"https://x.com/MarioDB/status/1853962534031913018","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,34,54,363,8107,,,80356,"Proud to represent Florida's 26th Congressional District & serve on @HouseAppropsGOP as Chairman of SFOPS & member of Defense & THUD subcommittees.",12343,"https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg",1109,false,7,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:06.943Z","{""url"":""https://twitter.com/37094727/status/1853962534031913018""}","{""url"":""https://x.com/MarioDB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853871015023296802","RepBonnie","Rep. Bonnie Watson Coleman","Today is #ElectionDay ! + +Remember to get out and #VOTE! The polls are open in NJ until 8pm. + +NJ voters, you can find your polling place here:","2024-11-05T18:44:27.000Z",,"https://x.com/RepBonnie/status/1853871015023296802","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2968451607"",""profile_name"":""Rep. Bonnie Watson Coleman"",""url"":""https://x.com/RepBonnie"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,5,0,,,"[""ElectionDay"",""VOTE""]",46767,"Proudly serving the people of New Jersey’s 12th Congressional District. Proud #BlackWoman. Member @USProgressives Co-Chair @CBWGCaucus. She/her.",13046,"https://pbs.twimg.com/profile_images/1224811086039470081/1Eskre6l_normal.jpg",1285,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:07.114Z","{""url"":""https://twitter.com/2968451607/status/1853871015023296802""}","{""url"":""https://x.com/RepBonnie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853594465333592559","Jim_Jordan","Rep. Jim Jordan","The First Amendment. Not censorship.","2024-11-05T00:25:33.000Z",,"https://x.com/Jim_Jordan/status/1853594465333592559","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,361,431,4077,105823,,,5550660,"Proudly serving Ohio's beautiful Fourth District. Chairman @JudiciaryGOP, @Weaponization. Fighting to #DoWhatWeSaid",14652,"https://pbs.twimg.com/profile_images/596012379231617025/TtrAXbnA_normal.jpg",3698,false,15,11,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:07.344Z","{""url"":""https://twitter.com/18166778/status/1853594465333592559""}","{""url"":""https://x.com/Jim_Jordan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853822738160345384","GReschenthaler","Guy Reschenthaler","Our nation has gone down two distinct paths in recent years — one where America moved forward under the Trump Administration, and the other where the United States went backwards under the Biden-Harris Administration. + +President Trump secured our border, created a booming economy, and unleashed American energy. Since President Biden and Vice President Harris entered the White House, however, our border has been overrun, our families are crippled by record inflation, and burdensome regulations create pain at the gas pump. + +We must reverse course and bring our nation back to excellence. That begins with leaders who put America first.","2024-11-05T15:32:37.000Z",,"https://x.com/GReschenthaler/status/1853822738160345384","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,14,14,45,1499,,,34978,"Chief Deputy Whip. Proudly representing the people of Pennsylvania’s 14th District in the U.S. House of Representatives 🇺🇸",6312,"https://pbs.twimg.com/profile_images/1505652408625602574/8ulng12q_normal.jpg",953,false,3,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:07.365Z","{""url"":""https://twitter.com/4205133682/status/1853822738160345384""}","{""url"":""https://x.com/GReschenthaler"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853918487539786053","MarioDB","Mario Díaz-Balart","Make sure to tune in ⬇️","2024-11-05T21:53:06.000Z","[""https://pbs.twimg.com/media/GbpxCcpXIAAhXxY.jpg""]","https://x.com/MarioDB/status/1853918487539786053","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1826304805012176896"",""profile_name"":""Florida’s Voice w/ Drew Steele"",""url"":""https://x.com/FLVoiceRadio"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",3,2,10,862,"https://flvoicenews.com/radio/",,80356,"Proud to represent Florida's 26th Congressional District & serve on @HouseAppropsGOP as Chairman of SFOPS & member of Defense & THUD subcommittees.",12343,"https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg",1109,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:07.349Z","{""url"":""https://twitter.com/37094727/status/1853918487539786053""}","{""url"":""https://x.com/MarioDB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853892552941850890","ChrisMurphyCT","Chris Murphy 🟧","Great to be with my friend State Representative Chris Rosario and lots of Election Day volunteers at Marin School in Bridgeport.","2024-11-05T20:10:02.000Z","[""https://pbs.twimg.com/media/GbpZctWW4AApVGi.jpg"",""https://pbs.twimg.com/media/GbpZctVWMAAcmM0.jpg""]","https://x.com/ChrisMurphyCT/status/1853892552941850890","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,31,22,165,18278,,,1072193,"U.S. Senator from Connecticut.",32359,"https://pbs.twimg.com/profile_images/1410747515511660547/BuMyJGhl_normal.jpg",280,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:07.323Z","{""url"":""https://twitter.com/150078976/status/1853892552941850890""}","{""url"":""https://x.com/ChrisMurphyCT"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853810506760347880","RepBarryMoore","Rep. Barry Moore","Hope you can tune in! Don't forget to VOTE!","2024-11-05T14:44:01.000Z",,"https://x.com/RepBarryMoore/status/1853810506760347880","{""post_id"":""1853809742143004782"",""profile_id"":""jeff_poor"",""profile_name"":""Jeff Poor"",""data_posted"":""2008-03-24T01:58:34.000Z"",""url"":""https://x.com/jeff_poor/status/1853809742143004782"",""description"":""Today on @JeffPoorShow on Mobile, AL's @fmtalk1065 (times CT):\n\n9:30 am\n\nLt. Gov. @willainsworthAL \n\n10 am\n\n#AL02 GOP nominee Caroleene @DobsonForAL \n\n10:30 am\n\nU.S. @RepBarryMoore \n\n11:30 am\n\n@ALGOP's @ChairmanWahl \n\nhttps://t.co/TMoDqpiLuY #alpolitics 🎙️Neumann U87Ai"",""photos"":null,""videos"":null}",,2,2,11,861,,,15697,"U.S. Representative for #AL02. Do justly. Love mercy. Walk humbly. Micah 6:8",3452,"https://pbs.twimg.com/profile_images/1357081525813149698/W3nYEhkr_normal.jpg",772,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:07.401Z","{""url"":""https://twitter.com/1339006078688825344/status/1853810506760347880""}","{""url"":""https://x.com/RepBarryMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853932032705142894","jahimes","Jim Himes 🇺🇸🇺🇸🇺🇦🇺🇦","Statement from Ranking Member @jahimes: I would urge all Americans to be cautious about what they may read or see on social media with the knowledge that foreign adversaries are intentionally amplifying lies in order to damage the United States.","2024-11-05T22:46:55.000Z",,"https://x.com/jahimes/status/1853932032705142894","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1079854463211397120"",""profile_name"":""House Intelligence Committee"",""url"":""https://x.com/HouseIntelDems"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""31611298"",""profile_name"":""Jim Himes 🇺🇸🇺🇸🇺🇦🇺🇦"",""url"":""https://x.com/jahimes"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,163,0,,,,107948,"Connecticut Congressman. Reader. Runner. Swimmer. Apiarist. And I make maple syrup. And mead.",13892,"https://pbs.twimg.com/profile_images/1787892900614799360/BO0kMC63_normal.jpg",443,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:07.502Z","{""url"":""https://twitter.com/31611298/status/1853932032705142894""}","{""url"":""https://x.com/jahimes"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853826150667288819","DrNealDunnFL2","Dr. Neal Dunn","#HarrisBorderCrisis","2024-11-05T15:46:11.000Z","[""https://pbs.twimg.com/media/GbjnLpbWcAAPNPZ.jpg""]","https://x.com/DrNealDunnFL2/status/1853826150667288819","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,33,0,,,"[""HarrisBorderCrisis""]",15289,"Veteran, physician, and lifelong conservative proudly representing Florida's 2nd Congressional District",3925,"https://pbs.twimg.com/profile_images/1518706464772304897/QGIEbV3T_normal.jpg",337,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:08.404Z","{""url"":""https://twitter.com/815952318487298048/status/1853826150667288819""}","{""url"":""https://x.com/DrNealDunnFL2"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853992617635151886","Prescott4NH","Russell Prescott","Tonight I called Chris Pappas and conceded the race. + +I will always be proud of the race that I ran. + +And forever proud of my wife, my children, and my grandchildren. This race was for them as much as it was for you. + +Thank you all for your support and your encouragement. God Bless America and may God Bless You. #NHPolitics","2024-11-06T02:47:40.000Z","[""https://pbs.twimg.com/media/Gbq0aj7XgBYdict.jpg""]","https://x.com/Prescott4NH/status/1853992617635151886","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,6,44,1267,,,714,"Proud husband & father, Business owner, Former State Senator & Executive Councilor, Congressional candidate for #NH01",593,"https://pbs.twimg.com/profile_images/1684530563724591108/hJHBtGfH_normal.jpg",129,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:09.114Z","{""url"":""https://twitter.com/1684225536397135873/status/1853992617635151886""}","{""url"":""https://x.com/Prescott4NH"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854010304033706054","DerekSchmidtKS","Derek Schmidt","Thank you to the voters in Kansas’s 2nd Congressional District who made our victory tonight possible! Our great nation has serious problems, and we need serious people to address them. As your Congressman, I will work hard every day to faithfully represent our citizens as we work together with our fellow Americans to solve them. + +As I said in announcing my candidacy, what is best for our district and for America will always be my steady guidepost. I will start immediately to prepare so that on day one – January 3, 2025 – we can get straight to work securing our border, reducing the high cost of living, reducing the regulatory burden, and addressing the many other priorities Kansans have told me are important for our great country. Thank you for this opportunity to serve, and God bless America!","2024-11-06T03:57:56.000Z","[""https://pbs.twimg.com/media/GbrEi2lWMA4u1C1.jpg""]","https://x.com/DerekSchmidtKS/status/1854010304033706054","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,14,60,918,,,4805,"Former Kansas Attorney General. Proud American. Republican Nominee for Congress. #KS02",2487,"https://pbs.twimg.com/profile_images/1792921507691171840/o7FvJst3_normal.jpg",67,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:09.183Z","{""url"":""https://twitter.com/161138443/status/1854010304033706054""}","{""url"":""https://x.com/DerekSchmidtKS"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800095382159623","MarioDB","Mario Díaz-Balart","Americans are struggling to make ends meet because of FAILED #Kamalanomics.","2024-11-05T14:02:39.000Z","[""https://pbs.twimg.com/media/GbjmwTDWYAAy-kO.jpg""]","https://x.com/MarioDB/status/1853800095382159623","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,71,0,,,"[""Kamalanomics""]",80356,"Proud to represent Florida's 26th Congressional District & serve on @HouseAppropsGOP as Chairman of SFOPS & member of Defense & THUD subcommittees.",12343,"https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg",1109,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:09.273Z","{""url"":""https://twitter.com/37094727/status/1853800095382159623""}","{""url"":""https://x.com/MarioDB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853595905506639879","RepBeatty","Rep. Joyce Beatty","Ohio, make your voice heard at the ballot box! 🎤 🗳️ Your choices hold power—from school boards and the Presidency to ballot measures. 🎥 Watch as Ohio’s leaders and other community members share why voting matters and what it means for our future:","2024-11-05T00:31:16.000Z",,"https://x.com/RepBeatty/status/1853595905506639879","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,13,28,908,"https://bit.ly/48EYdbM",,75407,"Serving Ohio’s 3rd District. Chair Emerita of @TheBlackCaucus. Member of the @FSCDems Committee. Proud Ohioan.",14829,"https://pbs.twimg.com/profile_images/1744510956523139073/cMg3aOY-_normal.jpg",2363,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:09.997Z","{""url"":""https://twitter.com/1531521632/status/1853595905506639879""}","{""url"":""https://x.com/RepBeatty"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853855014290165901","RepAnnaEshoo","Rep. Anna G. Eshoo","Today is Election Day. The freedom to vote is the most foundational right in America. Have you made your plan to vote and make your voice count? Find elections information on the Secretary of State website.","2024-11-05T17:40:53.000Z",,"https://x.com/RepAnnaEshoo/status/1853855014290165901","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,3,11,490,"https://www.sos.ca.gov/elections",,51805,"Representing California's 16th Congressional District – the heart of Silicon Valley. 📧Sign up for weekly legislative updates at my website",4253,"https://pbs.twimg.com/profile_images/1737967868036452352/Clx0wYND_normal.jpg",1005,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:10.929Z","{""url"":""https://twitter.com/249348006/status/1853855014290165901""}","{""url"":""https://x.com/RepAnnaEshoo"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853901299894345733","MarioDB","Mario Díaz-Balart","America is in decline BECAUSE of Kamala Harris.","2024-11-05T20:44:48.000Z","[""https://pbs.twimg.com/media/GbpSjOdWgAMETHB.jpg"",""https://pbs.twimg.com/media/GbpSjeeWMAAXo5C.jpg"",""https://pbs.twimg.com/media/GbpSj1qXAAEKUHX.jpg"",""https://pbs.twimg.com/media/GbpSkJeXQAEl7R4.jpg""]","https://x.com/MarioDB/status/1853901299894345733","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""827279765287559171"",""profile_name"":""Speaker Mike Johnson"",""url"":""https://x.com/SpeakerJohnson"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,372,0,,,,80356,"Proud to represent Florida's 26th Congressional District & serve on @HouseAppropsGOP as Chairman of SFOPS & member of Defense & THUD subcommittees.",12343,"https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg",1109,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:11.220Z","{""url"":""https://twitter.com/37094727/status/1853901299894345733""}","{""url"":""https://x.com/MarioDB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853849617768886371","RepDaleStrong","Dale W. Strong","⬇️ In the #HarrisBorderCrisis, every state is a border state. + +Americans can’t take 4 more years of “Border Czar” Kamala.","2024-11-05T17:19:26.000Z",,"https://x.com/RepDaleStrong/status/1853849617768886371","{""post_id"":""1853822581607899360"",""profile_id"":""HouseGOP"",""profile_name"":""House Republicans"",""data_posted"":""2008-06-23T14:41:52.000Z"",""url"":""https://x.com/HouseGOP/status/1853822581607899360"",""description"":""#HarrisBorderCrisis https://t.co/fztDsvRkiY"",""photos"":[""https://pbs.twimg.com/media/GbjnLpbWcAAPNPZ.jpg""],""videos"":null}",,24,21,61,20247,,"[""HarrisBorderCrisis""]",5582,"🇺🇸 Serving Alabama’s 5th Congressional District. @HomelandGOP @HASCRepublicans @Housescience",817,"https://pbs.twimg.com/profile_images/1611194720503439360/_amDQDTu_normal.jpg",414,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:12.691Z","{""url"":""https://twitter.com/825191196775546883/status/1853849617768886371""}","{""url"":""https://x.com/RepDaleStrong"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853783825954091445","DonaldNorcross","Congressman Donald Norcross 🇺🇸","Today is Election Day! Do you have a plan to vote? Polls and secure ballot drop boxes are open until 8pm tonight. To find your polling or drop box location, visit","2024-11-05T12:58:00.000Z","[""https://pbs.twimg.com/media/GbUzHQkWgAEis6M.jpg""]","https://x.com/DonaldNorcross/status/1853783825954091445","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,2,1,253,"http://vote.nj.gov/",,14053,"Honored to serve NJ-01 +Electrician • Husband, Dad, Granddad +Co-chair: @Labor_Caucus +Member: @EdWorkforceDems, @HASCDemocrats TAL Ranking Member",12446,"https://pbs.twimg.com/profile_images/1050098504515899392/h6RzXCGt_normal.jpg",1346,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:12.877Z","{""url"":""https://twitter.com/3122099613/status/1853783825954091445""}","{""url"":""https://x.com/DonaldNorcross"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853783427884925061","amyklobuchar","Amy Klobuchar","VOTE!","2024-11-05T12:56:25.000Z",,"https://x.com/amyklobuchar/status/1853783427884925061","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,129,196,1830,40032,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,6,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:12.954Z","{""url"":""https://twitter.com/33537967/status/1853783427884925061""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853990069297639623","RepBonnie","Rep. Bonnie Watson Coleman","I want to thank the voters of the 12th District for continuing to put their faith in me. Together we can reject hate, division, and apathy & build a country where everyone can thrive & enjoy the freedoms that make our country great. + +I look forward to continuing to fight for you.","2024-11-06T02:37:32.000Z",,"https://x.com/RepBonnie/status/1853990069297639623","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,12,191,4413,,,46764,"Proudly serving the people of New Jersey’s 12th Congressional District. Proud #BlackWoman. Member @USProgressives Co-Chair @CBWGCaucus. She/her.",13046,"https://pbs.twimg.com/profile_images/1224811086039470081/1Eskre6l_normal.jpg",1285,false,3,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:13.420Z","{""url"":""https://twitter.com/2968451607/status/1853990069297639623""}","{""url"":""https://x.com/RepBonnie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853935456787816639","RepBonnie","Rep. Bonnie Watson Coleman","It's Election Night On The @DeanObeidallah! + +Dean is joined by @woodhouseb, @RepBonnie, and @RaulAReyes as we wait for results around country! + +Plus hear @ZerlinaMaxwell exclusive interview with VP Harris with a #GOTV message! + +☎️: 866-997-4748 +🔊:","2024-11-05T23:00:32.000Z",,"https://x.com/RepBonnie/status/1853935456787816639","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""353272992"",""profile_name"":""SiriusXM Progress"",""url"":""https://x.com/SiriusXMProg"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""18320938"",""profile_name"":""(((DeanObeidallah)))"",""url"":""https://x.com/DeanObeidallah"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""111141045"",""profile_name"":""Brad Woodhouse"",""url"":""https://x.com/woodhouseb"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""2968451607"",""profile_name"":""Rep. Bonnie Watson Coleman"",""url"":""https://x.com/RepBonnie"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""69185601"",""profile_name"":""Raul A. Reyes"",""url"":""https://x.com/RaulAReyes"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,6,0,,,,46767,"Proudly serving the people of New Jersey’s 12th Congressional District. Proud #BlackWoman. Member @USProgressives Co-Chair @CBWGCaucus. She/her.",13046,"https://pbs.twimg.com/profile_images/1224811086039470081/1Eskre6l_normal.jpg",1285,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:13.681Z","{""url"":""https://twitter.com/2968451607/status/1853935456787816639""}","{""url"":""https://x.com/RepBonnie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853854696525517020","RepBeccaB","Rep. Becca Balint","As women, we would suffer major setbacks if the Project 2025 agenda is implemented. + +Pass the Stop Comstock Act.","2024-11-05T17:39:37.000Z",,"https://x.com/RepBeccaB/status/1853854696525517020","{""post_id"":""1853534308360753540"",""profile_id"":""RepDanGoldman"",""profile_name"":""Rep. Dan Goldman"",""data_posted"":""2023-01-02T21:07:14.000Z"",""url"":""https://x.com/RepDanGoldman/status/1853534308360753540"",""description"":""By instituting a national abortion ban and tracking women’s pregnancies, Project 2025 would kill women.\n\nIn the last video of our series @RepLoisFrankel @RepJudyChu @RepKManning @RepBeccaB @RepJasmine @PPact and I discuss the plan to end reproductive rights. https://t.co/raUgiEX2HW"",""photos"":null,""videos"":[{""url"":""https://video.twimg.com/amplify_video/1853529431530184704/vid/avc1/1280x720/ajz_OhbfvIn0kgt3.mp4?tag=14"",""duration"":485051}]}",,6,14,52,5417,,,14342,"Mom, Teacher, Vermonter, Writer & Congresswoman for VT, fighting for working families. @HouseJudiciary & @HouseBudgetDems. She/Her. Official. 🏳️‍🌈🏔️🏍️🍁",1590,"https://pbs.twimg.com/profile_images/1609940943330762759/vycKWrOM_normal.jpg",351,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:13.670Z","{""url"":""https://twitter.com/1606115178210365448/status/1853854696525517020""}","{""url"":""https://x.com/RepBeccaB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842852192686342","RepGregStanton","Rep. Greg Stanton","Nothing is more sacred in our democracy than the right to vote. I encourage everyone in #AZ04 and around the country to head to the polls and make your voice heard! + +Go to","2024-11-05T16:52:33.000Z","[""https://pbs.twimg.com/media/GbosPkuXgAIeRUg.jpg""]","https://x.com/RepGregStanton/status/1853842852192686342","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,4,9,391,"https://www.arizona.vote/","[""AZ04""]",15320,"Proudly serving Arizona's 4th Congressional District",3506,"https://pbs.twimg.com/profile_images/1620469728929005568/-pvo_Toy_normal.jpg",1447,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:13.708Z","{""url"":""https://twitter.com/1080885078425784320/status/1853842852192686342""}","{""url"":""https://x.com/RepGregStanton"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815813473476760","RepFletcher","Rep. Lizzie Fletcher","Happy #ElectionDay! Be sure to get to the polls before 7:00pm to cast your vote. + +Have questions? Visit: +🗳️","2024-11-05T15:05:06.000Z","[""https://pbs.twimg.com/media/GboTp-4WsAAXceQ.jpg""]","https://x.com/RepFletcher/status/1853815813473476760","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,5,17,649,"https://fletcher.house.gov/voting","[""ElectionDay""]",31552,"Honored and proud to represent Texas' 7th Congressional District in Houston, where inclusion, innovation, and collaboration thrive. #TX07",4628,"https://pbs.twimg.com/profile_images/1753796204855541760/YEDtwyem_normal.jpg",198,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:13.840Z","{""url"":""https://twitter.com/1075904377221722113/status/1853815813473476760""}","{""url"":""https://x.com/RepFletcher"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853914095025529210","RepAndyHarrisMD","Rep. Andy Harris, MD","America is in decline BECAUSE of Kamala Harris.","2024-11-05T21:35:38.000Z","[""https://pbs.twimg.com/media/GbpSjOdWgAMETHB.jpg"",""https://pbs.twimg.com/media/GbpSjeeWMAAXo5C.jpg"",""https://pbs.twimg.com/media/GbpSj1qXAAEKUHX.jpg"",""https://pbs.twimg.com/media/GbpSkJeXQAEl7R4.jpg""]","https://x.com/RepAndyHarrisMD/status/1853914095025529210","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""827279765287559171"",""profile_name"":""Speaker Mike Johnson"",""url"":""https://x.com/SpeakerJohnson"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,372,0,,,,31800,"Proud to serve MD-01 | House Freedom Caucus Chairman | Member of @HouseAppropsGOP | Co-chair of House Pro-Life Caucus | Physician, Navy Vet, Father and Husband",4714,"https://pbs.twimg.com/profile_images/1009527206614200321/Q56ZCqTt_normal.jpg",820,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:13.922Z","{""url"":""https://twitter.com/960962340/status/1853914095025529210""}","{""url"":""https://x.com/RepAndyHarrisMD"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800225153917324","MarioDB","Mario Díaz-Balart","🚨REMINDER: VP Kamala Harris' open-borders agenda has helped contribute to the release of HUNDREDS OF THOUSANDS of criminal illegal aliens into our communities.","2024-11-05T14:03:10.000Z",,"https://x.com/MarioDB/status/1853800225153917324","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""239964567"",""profile_name"":""House Homeland GOP"",""url"":""https://x.com/HomelandGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,122,0,,,,80357,"Proud to represent Florida's 26th Congressional District & serve on @HouseAppropsGOP as Chairman of SFOPS & member of Defense & THUD subcommittees.",12343,"https://pbs.twimg.com/profile_images/827178282378461184/jo8DMh_J_normal.jpg",1109,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:13.878Z","{""url"":""https://twitter.com/37094727/status/1853800225153917324""}","{""url"":""https://x.com/MarioDB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853836428980916279","BettyMcCollum04","Rep. Betty McCollum","The polls are open, Minnesota! Make your voice heard today and get out to vote. + +Find your polling place →","2024-11-05T16:27:01.000Z",,"https://x.com/BettyMcCollum04/status/1853836428980916279","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,2,7,644,"http://mnvotes.gov/",,44229,"Proudly representing Minnesota's Fourth District in the U.S. House of Representatives. Member of @AppropsDems.",15260,"https://pbs.twimg.com/profile_images/1631754028890611712/OLCJ-tg1_normal.jpg",1447,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:14.002Z","{""url"":""https://twitter.com/516880804/status/1853836428980916279""}","{""url"":""https://x.com/BettyMcCollum04"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853845734061224102","RepEmiliaSykes","Rep. Emilia Strong Sykes","Federal law guarantees a women’s right to emergency care — including abortion. Rep Sykes introduced the Reaffirming Emergency Abortion Care for All Resolution, that reaffirms this critical right and protects women’s access to reproductive healthcare. #AbortionSavesLives","2024-11-05T17:04:00.000Z",,"https://x.com/RepEmiliaSykes/status/1853845734061224102","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,4,13,396,,"[""AbortionSavesLives""]",3785,"Congresswoman for Ohio’s 13th Congressional District, the Birthplace of Champions. Posts are made by staff unless denoted w/ ESS",1590,"https://pbs.twimg.com/profile_images/1653767681760174082/FA88y_ks_normal.jpg",453,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853845580398665728/pu/vid/avc1/1280x720/EdoUnc-S6GmCJRwN.mp4?tag=12"",""duration"":60066}]","2024-11-06T04:14:14.120Z","{""url"":""https://twitter.com/1611527835742519297/status/1853845734061224102""}","{""url"":""https://x.com/RepEmiliaSykes"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853754199915249939","RepBeatty","Rep. Joyce Beatty","🎉 Happy Election Day, Ohio! Today’s your chance to shape our future—from the top of the ballot to local offices. Return absentee ballots in person to your county Board of Elections by 7:30 p.m. (poll closing time). Questions? 👉 https://t.co/1UfGpFs9mc. Concerned about your vote? Swipe for contacts. #OhioVotes","2024-11-05T11:00:17.000Z","[""https://pbs.twimg.com/media/GbnblbXXIAAdQMc.jpg"",""https://pbs.twimg.com/media/GbnbmplXoAE2Ksz.jpg""]","https://x.com/RepBeatty/status/1853754199915249939","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,12,32,1770,"https://bit.ly/32PHguH",,75407,"Serving Ohio’s 3rd District. Chair Emerita of @TheBlackCaucus. Member of the @FSCDems Committee. Proud Ohioan.",14829,"https://pbs.twimg.com/profile_images/1744510956523139073/cMg3aOY-_normal.jpg",2363,false,0,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:14.269Z","{""url"":""https://twitter.com/1531521632/status/1853754199915249939""}","{""url"":""https://x.com/RepBeatty"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853805272667471891","RepBonnie","Rep. Bonnie Watson Coleman","Today is #ElectionDay ! + +Remember to get out and #VOTE! The polls are open in NJ until 8pm. + +NJ voters, you can find your polling place here:","2024-11-05T14:23:13.000Z",,"https://x.com/RepBonnie/status/1853805272667471891","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,5,18,1097,"https://voter.svrs.nj.gov/polling-place-search","[""ElectionDay"",""VOTE""]",46767,"Proudly serving the people of New Jersey’s 12th Congressional District. Proud #BlackWoman. Member @USProgressives Co-Chair @CBWGCaucus. She/her.",13046,"https://pbs.twimg.com/profile_images/1224811086039470081/1Eskre6l_normal.jpg",1285,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:14.842Z","{""url"":""https://twitter.com/2968451607/status/1853805272667471891""}","{""url"":""https://x.com/RepBonnie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853754382132691056","DerrickforVA","Derrick Anderson","Polls are OPEN in #VA07! Go Vote! + +#VA07 is my home and they placed that raised me. I'd be honored to represent you in Congress and fight everyday to make life more affordable, our communities safer, and America stronger. + +Find your polling place here","2024-11-05T11:01:00.000Z",,"https://x.com/DerrickforVA/status/1853754382132691056","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,18,143,436,12846,"http://derrickanderson.com/Vote","[""VA07"",""VA07""]",12525,"Nominee for Congress #VA07. Virginian & Spotsy Native. Conservative Combat Veteran. Former Green Beret. Go Hokies. #CombatToCongress 🇺🇸",2407,"https://pbs.twimg.com/profile_images/1605752368104194051/NB7alebL_normal.jpg",277,false,4,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853662739207483392/pu/vid/avc1/1280x720/J72B_6ect_QZDeqm.mp4?tag=12"",""duration"":30030}]","2024-11-06T04:14:15.178Z","{""url"":""https://twitter.com/1205985145007878145/status/1853754382132691056""}","{""url"":""https://x.com/DerrickforVA"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853602101961617659","rep_jackson","Rep. Jonathan L. Jackson","The wealthiest person in the world, like Elon Musk, has the same one vote as you do. Your voice matters as much as his, and it’s time to make it heard.","2024-11-05T00:55:54.000Z",,"https://x.com/rep_jackson/status/1853602101961617659","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,3,137,"https://chicagodefender.com/congressman-jonathan-jackson-urges-young-voters-to-shape-their-future/",,4794,"Honored to represent #IL01 and committed to promoting policies that advance equality and justice. Proud Member of @HouseForeign + and @HouseAgDems.",881,"https://pbs.twimg.com/profile_images/1621293457808433156/lUZl_FkA_normal.jpg",219,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853574433539031040/k-nfvFlj?format=jpg&name=orig""]",,"2024-11-06T04:14:15.282Z","{""url"":""https://twitter.com/1615455071801679874/status/1853602101961617659""}","{""url"":""https://x.com/rep_jackson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853877162249781676","RepBeccaB","Rep. Becca Balint","Women, the future is in our hands.","2024-11-05T19:08:53.000Z",,"https://x.com/RepBeccaB/status/1853877162249781676","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,7,390,"https://vtdigger.org/2024/11/02/photos-statehouse-womens-rally-draws-memories-of-2017",,14342,"Mom, Teacher, Vermonter, Writer & Congresswoman for VT, fighting for working families. @HouseJudiciary & @HouseBudgetDems. She/Her. Official. 🏳️‍🌈🏔️🏍️🍁",1590,"https://pbs.twimg.com/profile_images/1609940943330762759/vycKWrOM_normal.jpg",351,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853378224568299520/1kPDZpyd?format=jpg&name=orig""]",,"2024-11-06T04:14:15.606Z","{""url"":""https://twitter.com/1606115178210365448/status/1853877162249781676""}","{""url"":""https://x.com/RepBeccaB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853839945829437463","RepBarryMoore","Rep. Barry Moore","Pray for our country!","2024-11-05T16:41:00.000Z",,"https://x.com/RepBarryMoore/status/1853839945829437463","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,15,4,48,988,,,15697,"U.S. Representative for #AL02. Do justly. Love mercy. Walk humbly. Micah 6:8",3452,"https://pbs.twimg.com/profile_images/1357081525813149698/W3nYEhkr_normal.jpg",772,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:15.638Z","{""url"":""https://twitter.com/1339006078688825344/status/1853839945829437463""}","{""url"":""https://x.com/RepBarryMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853839384912564336","RepDelBene","Rep. Suzan DelBene","Here’s my statement on @iam751 voting to accept the updated Boeing union contract:","2024-11-05T16:38:46.000Z","[""https://pbs.twimg.com/media/Gboo9c6XoAAnfnu.jpg""]","https://x.com/RepDelBene/status/1853839384912564336","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""28103693"",""profile_name"":""IAM Union District 751"",""url"":""https://x.com/IAM751"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,0,4,859,,,34708,"U.S. Congresswoman representing Washington's 1st Congressional District. + +Wife | Mom | Grandma | Dog mom",11212,"https://pbs.twimg.com/profile_images/1278345256510029826/BxoWWWen_normal.jpg",1842,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:15.854Z","{""url"":""https://twitter.com/995193054/status/1853839384912564336""}","{""url"":""https://x.com/RepDelBene"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853883824939397371","RepDelBene","Rep. Suzan DelBene","It’s Election Day! Today’s the last day to cast your vote. 🗳️ + +Make sure your ballot is in the mail or a ballot drop box by 8PM PT.","2024-11-05T19:35:22.000Z",,"https://x.com/RepDelBene/status/1853883824939397371","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,5,602,,,34708,"U.S. Congresswoman representing Washington's 1st Congressional District. + +Wife | Mom | Grandma | Dog mom",11212,"https://pbs.twimg.com/profile_images/1278345256510029826/BxoWWWen_normal.jpg",1842,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:16.748Z","{""url"":""https://twitter.com/995193054/status/1853883824939397371""}","{""url"":""https://x.com/RepDelBene"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853818870491934738","RepGregLopez","Rep. Greg Lopez","I am proud to co-sign Rep. Palmer's letter to stand for women against radical leftist policies.","2024-11-05T15:17:15.000Z",,"https://x.com/RepGregLopez/status/1853818870491934738","{""post_id"":""1853533042473566610"",""profile_id"":""USRepGaryPalmer"",""profile_name"":""Gary Palmer"",""data_posted"":""2014-11-04T22:58:38.000Z"",""url"":""https://x.com/USRepGaryPalmer/status/1853533042473566610"",""description"":""Under the guise of inclusivity, this administration is forcing radical ideological changes into programs that should focus on care, not politics. \n\nToday, I led a letter to HHS raising concerns about the Biden-Harris administration’s decision to embed radical gender-identity"",""photos"":null,""videos"":null}",,0,1,6,595,,,495,"Proudly representing Colorado’s 4th District in the U.S. House of Representatives. Member of the House Science, Space, and Tech Committee, and Budget Committee.",165,"https://pbs.twimg.com/profile_images/1810808651583746048/m0gv-CZ__normal.jpg",173,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:16.773Z","{""url"":""https://twitter.com/1810728898252132352/status/1853818870491934738""}","{""url"":""https://x.com/RepGregLopez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853603250122932432","RepBethVanDuyne","Congresswoman Beth Van Duyne","When VP Kamala Harris took office, she was handed a secure border. + +Over the past four years, she’s disregarded and helped dismantle our laws, creating the worst border crisis in history. + +Yet, she has no regrets.","2024-11-05T01:00:27.000Z",,"https://x.com/RepBethVanDuyne/status/1853603250122932432","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""239964567"",""profile_name"":""House Homeland GOP"",""url"":""https://x.com/HomelandGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,226,0,,,,37208,"Proud mom of two. Former mayor. Proudly representing North Texas. American by birth, Texan by the Grace of God.",6415,"https://pbs.twimg.com/profile_images/1339633691086217216/DgBVGqMI_normal.jpg",1432,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:16.756Z","{""url"":""https://twitter.com/1339633259349745670/status/1853603250122932432""}","{""url"":""https://x.com/RepBethVanDuyne"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853888795914940650","RepBethVanDuyne","Congresswoman Beth Van Duyne","I met with Bill Tiffany, CEO of @AvixAero, to discuss the Dallas-based company's innovative solutions that can help improve DFW International Airport’s efficiency. North Texas is home to an amazing aerospace industry!","2024-11-05T19:55:07.000Z","[""https://pbs.twimg.com/media/GbpWBLGWYAAbicv.jpg""]","https://x.com/RepBethVanDuyne/status/1853888795914940650","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1168301007417282561"",""profile_name"":""Avix Aero"",""url"":""https://x.com/AvixAero"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",1,0,17,3429,,,37208,"Proud mom of two. Former mayor. Proudly representing North Texas. American by birth, Texan by the Grace of God.",6415,"https://pbs.twimg.com/profile_images/1339633691086217216/DgBVGqMI_normal.jpg",1432,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:17.428Z","{""url"":""https://twitter.com/1339633259349745670/status/1853888795914940650""}","{""url"":""https://x.com/RepBethVanDuyne"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853772409532252666","RepKManning","Congresswoman Kathy Manning","Polls are open in North Carolina until 7:30 p.m.! + +Read 10 Tips for Election Day Voters:","2024-11-05T12:12:38.000Z",,"https://x.com/RepKManning/status/1853772409532252666","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2298102097"",""profile_name"":""NCSBE"",""url"":""https://x.com/NCSBE"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,119,0,,"http://tinyurl.com/5x293pnt",,9726,"Congresswoman representing #NC06. Vice Ranking Member of @HouseForeign, member of @EdWorkforceDems, & Co-Chair of @HouseBTFCA. +#ncpol",3340,"https://pbs.twimg.com/profile_images/1337116029919653888/gGdH6lon_normal.jpg",865,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:17.484Z","{""url"":""https://twitter.com/1337115670161608712/status/1853772409532252666""}","{""url"":""https://x.com/RepKManning"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853629055838347507","RepDelBene","Rep. Suzan DelBene","Washington has added 400,000+ jobs thanks to Democrats’ economic agenda. + +Together, we can keep building a strong economy & creating opportunities for all.","2024-11-05T02:43:00.000Z","[""https://pbs.twimg.com/media/GbTvm0aWgAA07bb.png""]","https://x.com/RepDelBene/status/1853629055838347507","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,20,8,29,2240,,,34708,"U.S. Congresswoman representing Washington's 1st Congressional District. + +Wife | Mom | Grandma | Dog mom",11212,"https://pbs.twimg.com/profile_images/1278345256510029826/BxoWWWen_normal.jpg",1842,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:17.525Z","{""url"":""https://twitter.com/995193054/status/1853629055838347507""}","{""url"":""https://x.com/RepDelBene"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853588792382284118","RepBethVanDuyne","Congresswoman Beth Van Duyne","Antisemitism is imported through our broken border and protected by far-left sanctuary city policies. I’m working with my @HouseGOP colleagues to secure the border and support our Jewish community.","2024-11-05T00:03:00.000Z",,"https://x.com/RepBethVanDuyne/status/1853588792382284118","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",4,0,12,684,"https://www.foxnews.com/us/illegal-immigrant-faces-hate-crime-terrorism-charges-shooting-jewish-man-chicago",,37208,"Proud mom of two. Former mayor. Proudly representing North Texas. American by birth, Texan by the Grace of God.",6415,"https://pbs.twimg.com/profile_images/1339633691086217216/DgBVGqMI_normal.jpg",1432,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851707531942318080/deHTsbFw?format=jpg&name=orig""]",,"2024-11-06T04:14:18.926Z","{""url"":""https://twitter.com/1339633259349745670/status/1853588792382284118""}","{""url"":""https://x.com/RepBethVanDuyne"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853849760425443363","RepCuellar","Rep. Henry Cuellar","Today is Election Day! If you haven't voted yet, take a moment to make your voice heard. For more details, visit https://t.co/Ipo0RbwCjG. + +Hoy es el día de las elecciones. Si aún no has votado, tómate un momento para hacer escuchar tu voz. Para más Información, visite +https://t.co/0gQylKnbUt.","2024-11-05T17:20:00.000Z","[""https://pbs.twimg.com/media/Gbos6PZW8AA1RKz.jpg""]","https://x.com/RepCuellar/status/1853849760425443363","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,1,4,377,"http://votetexas.gov/",,32186,"Proudly representing the 28th Congressional District of Texas.",8394,"https://pbs.twimg.com/profile_images/1143897153334648832/_8Cp7Ssc_normal.jpg",3343,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:19.423Z","{""url"":""https://twitter.com/210926192/status/1853849760425443363""}","{""url"":""https://x.com/RepCuellar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853833826897625581","RepAnnieKuster","Ann McLane Kuster","It's Election Day, New Hampshire 🇺🇸🗳! + +Get out and make your voices heard. Don't worry if you're not registered yet—New Hampshire offers same-day voter registration!","2024-11-05T16:16:41.000Z",,"https://x.com/RepAnnieKuster/status/1853833826897625581","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,9,412,"https://app.sos.nh.gov/viphome",,25417,"Honored to serve the people of New Hampshire’s Second District in Congress. Chair of the @NewDemCoalition.",9455,"https://pbs.twimg.com/profile_images/1393312843508981761/izufJnTE_normal.jpg",2192,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:19.460Z","{""url"":""https://twitter.com/1058717720/status/1853833826897625581""}","{""url"":""https://x.com/RepAnnieKuster"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853925776770650188","RepAngieCraig","Angie Craig","Higher costs are making life less affordable for Minnesota families – Congress needs to act now. +  +That's why I’m working in Congress to create a federal task force to crack down on corporate price gouging & bring costs down.","2024-11-05T22:22:04.000Z",,"https://x.com/RepAngieCraig/status/1853925776770650188","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,3,21,1192,,,36156,"Mom of four boys, Mimi to three grandsons, wife to Cheryl & U.S. Representative for Minnesota’s 2nd District. Your voice matters and it’s an honor to serve you.",6027,"https://pbs.twimg.com/profile_images/1257340278219911169/7E0EMj2P_normal.jpg",939,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:19.583Z","{""url"":""https://twitter.com/1080222360643485698/status/1853925776770650188""}","{""url"":""https://x.com/RepAngieCraig"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853614892164555174","RepDwightEvans","Congressman Dwight Evans","JUST IN: New statement from intel agencies about foreign interference in the election describing two specific Russian attempts to create/amplify disinformation.","2024-11-05T01:46:43.000Z",,"https://x.com/RepDwightEvans/status/1853614892164555174","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""23578274"",""profile_name"":""Kyle Cheney"",""url"":""https://x.com/kyledcheney"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4591,0,,,,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:20.053Z","{""url"":""https://twitter.com/90639372/status/1853614892164555174""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853900328552255930","Rep_Clyde","Rep. Andrew Clyde","Kamala Harris has run our great country into the ground. + +President Trump will get us back on track.","2024-11-05T20:40:56.000Z",,"https://x.com/Rep_Clyde/status/1853900328552255930","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,13,10,63,1117,,,28341,"U.S. Representative for Georgia’s Ninth Congressional District | Navy Combat Veteran | FFL | Small Business Owner | @HouseAppropsGOP | @freedomcaucus 🇺🇸",4239,"https://pbs.twimg.com/profile_images/1357017586647629826/0Gp14jBE_normal.jpg",685,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:20.382Z","{""url"":""https://twitter.com/1357017361568694274/status/1853900328552255930""}","{""url"":""https://x.com/Rep_Clyde"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853806980424757752","RepGuthrie","Rep. Brett Guthrie","Today is Election Day and it’s critical to make sure your voice is heard in our electoral process. To find your polling place in Kentucky, click below.","2024-11-05T14:30:00.000Z",,"https://x.com/RepGuthrie/status/1853806980424757752","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,5,312,"https://elect.ky.gov/Voters/Pages/Polling-Locations.aspx",,22766,"Fighting for conservative values in Washington while representing the people of Kentucky's 2nd Congressional District",3267,"https://pbs.twimg.com/profile_images/689479180568829952/sNv4Qrl3_normal.jpg",342,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:20.379Z","{""url"":""https://twitter.com/1908143071/status/1853806980424757752""}","{""url"":""https://x.com/RepGuthrie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853952027048521739","RepDwightEvans","Congressman Dwight Evans","Polls close in 1 hour, Pennsylvania. If you haven’t voted yet, NOW is the time. + +As long as you’re in line by 8 p.m., you’ll be able to vote. + +Voting in person? Find your polling place:","2024-11-06T00:06:22.000Z",,"https://x.com/RepDwightEvans/status/1853952027048521739","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""625624080"",""profile_name"":""PA Department of State"",""url"":""https://x.com/PAStateDept"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,46,0,,,,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:20.392Z","{""url"":""https://twitter.com/90639372/status/1853952027048521739""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853785336159105178","RepDean","Congresswoman Madeleine Dean","It’s Election Day! 🗳 + +Our offices are closed today. If you have questions about voting, please contact Berks or Montgomery County voter services. + +Remember to make your voice heard!","2024-11-05T13:04:00.000Z","[""https://pbs.twimg.com/media/GbkPoO2W8AA6Dey.jpg""]","https://x.com/RepDean/status/1853785336159105178","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,12,22,1310,,,72653,"Congresswoman serving Pennsylvania’s Fourth District - Montgomery and Berks Counties | Committees: @HouseJudiciary & @HouseForeign | ""Courage is in the air""",6216,"https://pbs.twimg.com/profile_images/1195381108545855488/vc1NsSll_normal.jpg",1382,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:20.995Z","{""url"":""https://twitter.com/567508925/status/1853785336159105178""}","{""url"":""https://x.com/RepDean"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853947870275354967","RepDwightEvans","Congressman Dwight Evans","Statement from Ranking Member @jahimes: I would urge all Americans to be cautious about what they may read or see on social media with the knowledge that foreign adversaries are intentionally amplifying lies in order to damage the United States.","2024-11-05T23:49:51.000Z",,"https://x.com/RepDwightEvans/status/1853947870275354967","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1079854463211397120"",""profile_name"":""House Intelligence Committee"",""url"":""https://x.com/HouseIntelDems"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""31611298"",""profile_name"":""Jim Himes 🇺🇸🇺🇸🇺🇦🇺🇦"",""url"":""https://x.com/jahimes"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,163,0,,,,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:21.835Z","{""url"":""https://twitter.com/90639372/status/1853947870275354967""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853598450933514582","RepGregMurphy","Congressman Greg Murphy, M.D.","Just be quiet @SpeakerPelosi. You weee the one who described Biden as ‘sharp-In full control of details.’","2024-11-05T00:41:23.000Z",,"https://x.com/RepGregMurphy/status/1853598450933514582","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15764644"",""profile_name"":""Nancy Pelosi"",""url"":""https://x.com/SpeakerPelosi"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",8,1,16,657,"https://www.foxnews.com/video/6364181452112",,21508,"Proudly representing the wonderful people and gorgeous lands of North Carolina's Third District, Husband, Father, Surgeon, Traveler",4388,"https://pbs.twimg.com/profile_images/1186400513966952449/D9981GLb_normal.jpg",462,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:22.282Z","{""url"":""https://twitter.com/1173978070535024642/status/1853598450933514582""}","{""url"":""https://x.com/RepGregMurphy"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842028506816520","RepDaleStrong","Dale W. Strong","American elections are for American citizens.","2024-11-05T16:49:16.000Z",,"https://x.com/RepDaleStrong/status/1853842028506816520","{""post_id"":""1853807007549075641"",""profile_id"":""1819News"",""profile_name"":""1819 News"",""data_posted"":""2021-07-12T17:22:32.000Z"",""url"":""https://x.com/1819News/status/1853807007549075641"",""description"":""'It doesn't matter if you're here on a green card' — @RepDaleStrong continues touting bill to deport non-citizen voters #alpolitics\nBy @danieltaylornow \nhttps://t.co/E6x2p0xwKu"",""photos"":null,""videos"":null}",,5,11,70,3505,,,5582,"🇺🇸 Serving Alabama’s 5th Congressional District. @HomelandGOP @HASCRepublicans @Housescience",817,"https://pbs.twimg.com/profile_images/1611194720503439360/_amDQDTu_normal.jpg",414,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:22.719Z","{""url"":""https://twitter.com/825191196775546883/status/1853842028506816520""}","{""url"":""https://x.com/RepDaleStrong"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853617074897076644","RepClayHiggins","Rep. Clay Higgins","National prayer that We may be worthy of what it means to be an American, and that our vote might support candidates who embrace the core principles of Christianity. + In the booth… stop, breathe, pray for His guidance… vote. + His will be done.","2024-11-05T01:55:23.000Z",,"https://x.com/RepClayHiggins/status/1853617074897076644","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,198,907,3513,22447,,,170157,"Proudly representing #LA03 in the U.S. House of Representatives. Member of @HomelandGOP, @GOPOversight, and @HASCRepublicans.",2743,"https://pbs.twimg.com/profile_images/1682804323829293057/4eHcsOGR_normal.jpg",404,false,33,25,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:22.789Z","{""url"":""https://twitter.com/843636970538618880/status/1853617074897076644""}","{""url"":""https://x.com/RepClayHiggins"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853845560681275568","RepAlexMooney","Rep. Alex Mooney","👀 Trump-era income tax deduction is set to expire at end of 2025. This would put WV small businesses back at a disadvantage. @NFIB + +➡️ Job Losses +➡️ Price Increases +➡️ Reduced Investment + +The 20% empowered small businesses. Make it permanent! @WVNews247","2024-11-05T17:03:19.000Z",,"https://x.com/RepAlexMooney/status/1853845560681275568","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""14587949"",""profile_name"":""NFIB"",""url"":""https://x.com/NFIB"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""273969007"",""profile_name"":""WV News"",""url"":""https://x.com/WVNews247"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",3,1,6,372,"https://www.wvnews.com/business/trump-era-income-tax-deduction-set-to-expire-at-end-of-2025-could-affect-west/article_9f758bf6-922b-11ef-a530-33c9c7059af4.html?utm_source=wvnews.com&utm_campaign=%2Fnewsletter%2Fopt%2Fbiz%2F%3F-dc%3D1730764829&utm_medium=email&utm_content=headline",,25285,"Husband, Father, Conservative Representing West Virginia's 2nd Congressional District. #wv02 #wvpol Member of @financialcmte",4670,"https://pbs.twimg.com/profile_images/1347594832940855296/XXMDj6Mf_normal.jpg",778,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853261690348908544/RoNqPKlT?format=jpg&name=orig""]",,"2024-11-06T04:14:24.294Z","{""url"":""https://twitter.com/2964526557/status/1853845560681275568""}","{""url"":""https://x.com/RepAlexMooney"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853825852880085449","RepCloudTX","Congressman Michael Cloud","Make America Great Again 🇺🇸","2024-11-05T15:45:00.000Z",,"https://x.com/RepCloudTX/status/1853825852880085449","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,16,43,342,17390,,,28479,"Honored to represent the people of the 27th Congressional District of Texas. Serving on @HouseAppropsGOP and @GOPOversight.",1807,"https://pbs.twimg.com/profile_images/1806714208899284992/UED3ddK2_normal.jpg",1444,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:24.388Z","{""url"":""https://twitter.com/1039879658400112640/status/1853825852880085449""}","{""url"":""https://x.com/RepCloudTX"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853896658167517680","RepEmiliaSykes","Rep. Emilia Strong Sykes","No one should have to choose between lifesaving medications like insulin and putting food on the table. That’s why Democrats fought to cap insulin prices at $35 a month for seniors. Rep. Sykes will keep working to cap the cost of insulin for all Americans. #NationalDiabetesMonth","2024-11-05T20:26:21.000Z","[""https://pbs.twimg.com/media/GbpdLixWsAA_-tj.jpg""]","https://x.com/RepEmiliaSykes/status/1853896658167517680","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,6,171,,"[""NationalDiabetesMonth""]",3785,"Congresswoman for Ohio’s 13th Congressional District, the Birthplace of Champions. Posts are made by staff unless denoted w/ ESS",1590,"https://pbs.twimg.com/profile_images/1653767681760174082/FA88y_ks_normal.jpg",453,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:24.592Z","{""url"":""https://twitter.com/1611527835742519297/status/1853896658167517680""}","{""url"":""https://x.com/RepEmiliaSykes"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853820440096952816","RepDLesko","Congresswoman Debbie Lesko","It’s election day in Arizona! Be sure to get out and exercise your right to vote. 🇺🇸","2024-11-05T15:23:29.000Z",,"https://x.com/RepDLesko/status/1853820440096952816","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,1,23,1105,,,125118,"Proudly representing Arizona's 8th Congressional District in Congress. Member of @HouseCommerce. #AZ08",10865,"https://pbs.twimg.com/profile_images/1621240677479727108/kkAYNS7T_normal.jpg",1172,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:24.684Z","{""url"":""https://twitter.com/996094929733652481/status/1853820440096952816""}","{""url"":""https://x.com/RepDLesko"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853929055369716140","RepBethVanDuyne","Congresswoman Beth Van Duyne","Hamas is a terrorist organization, not a “resistance” group. My alma mater @Cornell continues to let antisemitism thrive on its campus. Not only has antisemitic Professor Cheyfitz denied Hamas’ use of rape and defended its terrorism, the university is giving him a platform to spew hate through this course.","2024-11-05T22:35:05.000Z","[""https://pbs.twimg.com/media/Gbp6omBWgAAN73m.jpg""]","https://x.com/RepBethVanDuyne/status/1853929055369716140","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""17369110"",""profile_name"":""Cornell University"",""url"":""https://x.com/Cornell"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,0,11,750,,,37208,"Proud mom of two. Former mayor. Proudly representing North Texas. American by birth, Texan by the Grace of God.",6415,"https://pbs.twimg.com/profile_images/1339633691086217216/DgBVGqMI_normal.jpg",1432,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:25.144Z","{""url"":""https://twitter.com/1339633259349745670/status/1853929055369716140""}","{""url"":""https://x.com/RepBethVanDuyne"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853847272326365458","RepDwightEvans","Congressman Dwight Evans","Today's the day #Philly! 🗳️ + +I voted this morning in person! Don't leave your power on the table- every vote counts this Election Day. + +Polls across the city are open until 8 p.m. Find your polling place and make sure your voice is heard!","2024-11-05T17:10:07.000Z","[""https://pbs.twimg.com/media/GbovlJ_WkAAIpn_.jpg""]","https://x.com/RepDwightEvans/status/1853847272326365458","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,6,24,2478,"http://vote.phila.gov/","[""Philly""]",21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:25.683Z","{""url"":""https://twitter.com/90639372/status/1853847272326365458""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853878692126318664","RepCloudTX","Congressman Michael Cloud",".@TheKatyNews: ICYMI: Cruz, Cloud, Gerdes Denounce Biden-Harris Administration After Twice-Deported Illegal Alien Killed a Texan in Bastrop County","2024-11-05T19:14:58.000Z",,"https://x.com/RepCloudTX/status/1853878692126318664","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1074480192"",""profile_name"":""Senator Ted Cruz"",""url"":""https://x.com/SenTedCruz"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""33513497"",""profile_name"":""Pat Wilson"",""url"":""https://x.com/TheKatyNews"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,75,0,,,,28479,"Honored to represent the people of the 27th Congressional District of Texas. Serving on @HouseAppropsGOP and @GOPOversight.",1807,"https://pbs.twimg.com/profile_images/1806714208899284992/UED3ddK2_normal.jpg",1444,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851479067486216193/X5r_FNK_?format=jpg&name=orig""]",,"2024-11-06T04:14:25.817Z","{""url"":""https://twitter.com/1039879658400112640/status/1853878692126318664""}","{""url"":""https://x.com/RepCloudTX"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853888984251810215","RepDwightEvans","Congressman Dwight Evans","The FBI is aware of bomb threats to polling locations in several states, many of which appear to originate from Russian email domains. None of the threats have been determined to be credible thus far.","2024-11-05T19:55:52.000Z",,"https://x.com/RepDwightEvans/status/1853888984251810215","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""17629860"",""profile_name"":""FBI"",""url"":""https://x.com/FBI"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,8379,0,,,,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853876859856879616/XxpgHwPC?format=jpg&name=orig""]",,"2024-11-06T04:14:26.130Z","{""url"":""https://twitter.com/90639372/status/1853888984251810215""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853808268683907224","repkevinhern","Congressman Kevin Hern","I joined @MorningsMaria to discuss Kamala Harris’s plan to repeal tax cuts & hike corporate rates, making us less competitive. + +As a business owner, I know firsthand—higher rates & fewer deductions hurt all Americans. An abysmal economy awaits if she takes office. #Election2024","2024-11-05T14:35:08.000Z",,"https://x.com/repkevinhern/status/1853808268683907224","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2330590446"",""profile_name"":""Mornings with Maria"",""url"":""https://x.com/MorningsMaria"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",5,5,9,1500,,"[""Election2024""]",21506,"Representing Oklahoma's 1st Congressional District in the United States House of Representatives | Chairman of the @RepublicanStudy Committee",4025,"https://pbs.twimg.com/profile_images/1683583140973928448/bTogfydZ_normal.jpg",555,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853808158931591168/vid/avc1/1280x720/leMJAYr9cz58yNnJ.mp4?tag=16"",""duration"":230129}]","2024-11-06T04:14:26.289Z","{""url"":""https://twitter.com/1067818539179024386/status/1853808268683907224""}","{""url"":""https://x.com/repkevinhern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853879814731542804","RepBillFoster","Congressman Bill Foster","Election Day is your last chance to make your voice heard for the coming years. Make a plan to vote and cast your ballot today!","2024-11-05T19:19:25.000Z","[""https://pbs.twimg.com/media/GbpN3TeXwAA-suH.jpg""]","https://x.com/RepBillFoster/status/1853879814731542804","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,2,19,1007,,,54226,"Scientist and businessman representing the 11th Congressional District of Illinois. + +Comment Policy: https://t.co/juPiHCLyEQ",8868,"https://pbs.twimg.com/profile_images/1403381378226479110/_6l3na22_normal.jpg",1066,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:26.556Z","{""url"":""https://twitter.com/1080509366/status/1853879814731542804""}","{""url"":""https://x.com/RepBillFoster"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853754346405498915","RepBowman","Congressman Jamaal Bowman","Good morning NY-16! Today is election day – and polls are open from 6 AM to 9 PM. We decide our future – make your voice heard today. You can find your polling place at:","2024-11-05T11:00:51.000Z",,"https://x.com/RepBowman/status/1853754346405498915","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,9,57,6027,"https://voterlookup.elections.ny.gov/","[""BeAVoter""]",86933,"Humbled to serve New York's 16th Congressional District. Providing updates on services and legislation. Member of @edworkforcedems and @sciencedems ✌🏿🫶🏿",4696,"https://pbs.twimg.com/profile_images/1583194983724711936/xpSdOEG2_normal.jpg",239,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:27.144Z","{""url"":""https://twitter.com/1344389506963808264/status/1853754346405498915""}","{""url"":""https://x.com/RepBowman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853612825328963724","RepEmiliaSykes","Rep. Emilia Strong Sykes","Rep. Sykes is committed to working with anyone to keep our communities safe and secure. She introduced bipartisan legislation that would help rebuild trust between law enforcement and our communities by ensuring our local law enforcement agencies.","2024-11-05T01:38:30.000Z","[""https://pbs.twimg.com/media/GblbChAWUAAE38F.jpg""]","https://x.com/RepEmiliaSykes/status/1853612825328963724","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,3,9,256,,,3785,"Congresswoman for Ohio’s 13th Congressional District, the Birthplace of Champions. Posts are made by staff unless denoted w/ ESS",1590,"https://pbs.twimg.com/profile_images/1653767681760174082/FA88y_ks_normal.jpg",453,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:27.257Z","{""url"":""https://twitter.com/1611527835742519297/status/1853612825328963724""}","{""url"":""https://x.com/RepEmiliaSykes"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853818399119307252","RepJudyChu","Judy Chu","Today is Election Day! In our democracy, your vote is your voice. Visit","2024-11-05T15:15:23.000Z","[""https://pbs.twimg.com/media/GboWAmmWkAA3e-w.jpg""]","https://x.com/RepJudyChu/status/1853818399119307252","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,2,9,766,"http://vote.gov/",,82014,"Proudly representing #CA28, California's 28th District in the U.S. House of Representatives. Ways and Means. Small Business. Chair of @CAPAC.",9504,"https://pbs.twimg.com/profile_images/1547992737332416513/hjqZoRaG_normal.jpg",45421,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:27.398Z","{""url"":""https://twitter.com/193732179/status/1853818399119307252""}","{""url"":""https://x.com/RepJudyChu"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853848191587803400","RepJoeCourtney","Rep. Joe Courtney","It’s Election Day, eastern Connecticut! + +Casting a vote and participating in our elections is the number one way we can shape our country’s future. Polls are open until 8pm in CT. Find your polling site here:","2024-11-05T17:13:46.000Z",,"https://x.com/RepJoeCourtney/status/1853848191587803400","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,8,424,"https://portal.ct.gov/sots/election-services/voter-information/where-and-how-do-i-vote",,27123,"U.S. Congressman proudly fighting for the residents of Connecticut’s 2nd Congressional District.",10300,"https://pbs.twimg.com/profile_images/1417794144/New_Boston_Beef--North_Groves___35__normal.jpg",2247,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:28.430Z","{""url"":""https://twitter.com/85396297/status/1853848191587803400""}","{""url"":""https://x.com/RepJoeCourtney"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853835528744956145","RepGregMurphy","Congressman Greg Murphy, M.D.","Camp Lejeune’s Naval Medical Center recently hosted its annual STEM fair for Onslow County students.   +  +It is fundamental for students interested in the medical field to receive early exposure to these careers. Thank you for providing them with this opportunity! + +https://t.co/S7qHFHsW3W","2024-11-05T16:23:27.000Z",,"https://x.com/RepGregMurphy/status/1853835528744956145","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,6,360,,,21508,"Proudly representing the wonderful people and gorgeous lands of North Carolina's Third District, Husband, Father, Surgeon, Traveler",4388,"https://pbs.twimg.com/profile_images/1186400513966952449/D9981GLb_normal.jpg",462,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:29.055Z","{""url"":""https://twitter.com/1173978070535024642/status/1853835528744956145""}","{""url"":""https://x.com/RepGregMurphy"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853805841268232566","RepMariaSalazar","Rep. María Elvira Salazar",".@RepMariaSalazar Wants Speaker Johnson to Fund Physician Training + +Reported by @RootedReporting via @Floridianpress","2024-11-05T14:25:29.000Z",,"https://x.com/RepMariaSalazar/status/1853805841268232566","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""932437430719995904"",""profile_name"":""The Floridian"",""url"":""https://x.com/Floridianpress"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1325928411689349120"",""profile_name"":""Rep. María Elvira Salazar"",""url"":""https://x.com/RepMariaSalazar"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1827045185143894016"",""profile_name"":""Daniel Molina"",""url"":""https://x.com/RootedReporting"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""932437430719995904"",""profile_name"":""The Floridian"",""url"":""https://x.com/Floridianpress"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4,0,,,,116771,"U.S. Congresswoman | Daughter of Exiles | Emmy Award-Winning Journalist | Serving on @HouseForeignGOP & @HouseSmallBiz | #FL27☀️🌴🇺🇸",3441,"https://pbs.twimg.com/profile_images/1407827552098471941/9tvtXe3S_normal.jpg",492,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:29.390Z","{""url"":""https://twitter.com/1325928411689349120/status/1853805841268232566""}","{""url"":""https://x.com/RepMariaSalazar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853914185232715782","RepAlexMooney","Rep. Alex Mooney","Biden-Harris Admin Has So Far Piled On Nearly $1,780,000,000,000 In Regulatory Costs On Americans (Higher Than Obama) Via @AAF @DailyCaller","2024-11-05T21:36:00.000Z",,"https://x.com/RepAlexMooney/status/1853914185232715782","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""108416848"",""profile_name"":""American Action Forum"",""url"":""https://x.com/AAF"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""39308549"",""profile_name"":""Daily Caller"",""url"":""https://x.com/DailyCaller"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4,6,408,"https://dailycaller.com/2024/11/04/biden-harris-admin-1780000000000-regulatory-costs-americans/",,25285,"Husband, Father, Conservative Representing West Virginia's 2nd Congressional District. #wv02 #wvpol Member of @financialcmte",4670,"https://pbs.twimg.com/profile_images/1347594832940855296/XXMDj6Mf_normal.jpg",778,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:29.853Z","{""url"":""https://twitter.com/2964526557/status/1853914185232715782""}","{""url"":""https://x.com/RepAlexMooney"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853830628048769500","RepDustyJohnson","Rep. Dusty Johnson","I joined the Sioux Falls Kiwanis club to talk about things like debt reduction, immigration, and energy. It was a great conversation. Thanks for having me!","2024-11-05T16:03:58.000Z","[""https://pbs.twimg.com/media/GbohGpRXYAE3AD8.jpg"",""https://pbs.twimg.com/media/GbohGpPW4AATe9L.jpg""]","https://x.com/RepDustyJohnson/status/1853830628048769500","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,14,0,15,1191,,,23301,"South Dakota's lone U.S. Representative - husband, father, & proud South Dakotan. Member of @HouseAgGOP, @TransportGOP & @committeeonccp.",3135,"https://pbs.twimg.com/profile_images/1393224232939700231/sb7DMh52_normal.jpg",308,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:29.935Z","{""url"":""https://twitter.com/1074782372594413569/status/1853830628048769500""}","{""url"":""https://x.com/RepDustyJohnson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799102749851933","repkevinhern","Congressman Kevin Hern","You can locate your polling location, view a sample ballot, and check your registration by visiting the Oklahoma Voter Portal at","2024-11-05T13:58:42.000Z",,"https://x.com/repkevinhern/status/1853799102749851933","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,2,235,"http://okvoterportal.okelections.gov/",,21506,"Representing Oklahoma's 1st Congressional District in the United States House of Representatives | Chairman of the @RepublicanStudy Committee",4025,"https://pbs.twimg.com/profile_images/1683583140973928448/bTogfydZ_normal.jpg",555,false,0,0,"{""post_id"":""1853799101558591620"",""profile_id"":""1067818539179024386"",""profile_name"":""repkevinhern""}",,,"2024-11-06T04:14:30.742Z","{""url"":""https://twitter.com/1067818539179024386/status/1853799102749851933""}","{""url"":""https://x.com/repkevinhern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853910753406759063","RepDwightEvans","Congressman Dwight Evans","At 101, Philly resident Lear Green made sure to cast her ballot this #ElectionDay. + +Just 4 hours 'til the polls close in Pennsylvania. If you are in line at 8 p.m., STAY in line- you have the right to vote!","2024-11-05T21:22:22.000Z","[""https://pbs.twimg.com/media/Gbppp5BXQAA39BB.jpg""]","https://x.com/RepDwightEvans/status/1853910753406759063","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,4,21,1359,,"[""ElectionDay""]",21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3521,false,0,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:31.464Z","{""url"":""https://twitter.com/90639372/status/1853910753406759063""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853901200770425222","RepLuna","Rep. Anna Paulina Luna","Why does @KamalaHarris willingly choose to surround herself with P. Diddy’s friends?","2024-11-05T20:44:24.000Z",,"https://x.com/RepLuna/status/1853901200770425222","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""30354991"",""profile_name"":""Kamala Harris"",""url"":""https://x.com/KamalaHarris"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",367,828,4163,42443,,,216582,"Official account for FL-13 Rep. Anna Paulina Luna 🇺🇸 | Serving on @GOPOversight & @NatResources | Wife-Mom-USAF Veteran",3040,"https://pbs.twimg.com/profile_images/1751266572340019200/vnXHTR7z_normal.jpg",306,false,27,15,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:31.498Z","{""url"":""https://twitter.com/1610230835289923584/status/1853901200770425222""}","{""url"":""https://x.com/RepLuna"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853770890753773974","RepDwightEvans","Congressman Dwight Evans","📢 It’s Election Day, and POLLS ARE OPEN! 📢 +Polls are open until 8 P.M. today. Visit","2024-11-05T12:06:36.000Z",,"https://x.com/RepDwightEvans/status/1853770890753773974","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""964256953420697600"",""profile_name"":""Philadelphia City Commissioners"",""url"":""https://x.com/PhillyVotes"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,15,0,,"http://atlas.phila.gov/voting",,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3521,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:31.673Z","{""url"":""https://twitter.com/90639372/status/1853770890753773974""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853852532021367167","RepBethVanDuyne","Congresswoman Beth Van Duyne","It’s election day! Make sure you exercise your constitutional right. Polls close at 7pm! 🗳️ 🇺🇸","2024-11-05T17:31:01.000Z",,"https://x.com/RepBethVanDuyne/status/1853852532021367167","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,1,14,855,"https://www.votetexas.gov/voting/where.html",,37208,"Proud mom of two. Former mayor. Proudly representing North Texas. American by birth, Texan by the Grace of God.",6415,"https://pbs.twimg.com/profile_images/1339633691086217216/DgBVGqMI_normal.jpg",1432,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:32.181Z","{""url"":""https://twitter.com/1339633259349745670/status/1853852532021367167""}","{""url"":""https://x.com/RepBethVanDuyne"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853872009295343628","RepDanGoldman","Rep. Dan Goldman","As women, we would suffer major setbacks if the Project 2025 agenda is implemented. + +Pass the Stop Comstock Act.","2024-11-05T18:48:24.000Z",,"https://x.com/RepDanGoldman/status/1853872009295343628","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1606115178210365448"",""profile_name"":""Rep. Becca Balint"",""url"":""https://x.com/RepBeccaB"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,14,0,,,,96654,"Congressman for New York's 10th District in the House of Representatives",1959,"https://pbs.twimg.com/profile_images/1612460750630518785/GlrrEjFZ_normal.jpg",413,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:32.199Z","{""url"":""https://twitter.com/1610019555371372544/status/1853872009295343628""}","{""url"":""https://x.com/RepDanGoldman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853968053416894604","RepAdrianSmith","Rep. Adrian Smith","I enjoyed meeting with Siouxland residents. Thank you to South Sioux City Economic Development Group for hosting an engaging community conversation.","2024-11-06T01:10:03.000Z","[""https://pbs.twimg.com/media/GbqeHHVXMAQCdIm.jpg"",""https://pbs.twimg.com/media/GbqeHHTX0AkYd4X.jpg""]","https://x.com/RepAdrianSmith/status/1853968053416894604","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,4,738,,,19689,"Proudly serving the 3rd District of Nebraska in the U.S. House of Representatives | Chairman of the @WaysandMeansGOP Trade Subcommittee",5574,"https://pbs.twimg.com/profile_images/832318343872921605/fJFr9CvP_normal.jpg",627,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:32.238Z","{""url"":""https://twitter.com/296245061/status/1853968053416894604""}","{""url"":""https://x.com/RepAdrianSmith"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853807083331695103","RepBenCline","Congressman Ben Cline","Kamala Harris’ VP tenure is marked by: + +• Open border policies leading to over 10M illegal crossings since her border czar appointment. +• Gas prices up 49.9%, burdening families. +• 52% of Americans feel worse off than 4 years ago. + +The American people will not forget her dismal record.","2024-11-05T14:30:25.000Z",,"https://x.com/RepBenCline/status/1853807083331695103","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,6,37,1432,,,39123,"Representing Virginia’s 6th District | Member of @freedomcaucus | Serving on @JudiciaryGOP, @HouseAppropsGOP, @committeeonccp & @housebudgetGOP",3889,"https://pbs.twimg.com/profile_images/1080526430851747841/A1ugejo0_normal.jpg",1052,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:32.249Z","{""url"":""https://twitter.com/1072158357237174272/status/1853807083331695103""}","{""url"":""https://x.com/RepBenCline"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799101558591620","repkevinhern","Congressman Kevin Hern","Get out and vote—not just for any candidate or party, but because generations of Americans have fought and died for your right to do so. #ElectionDay","2024-11-05T13:58:42.000Z",,"https://x.com/repkevinhern/status/1853799101558591620","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,6,16,523,,"[""ElectionDay""]",21506,"Representing Oklahoma's 1st Congressional District in the United States House of Representatives | Chairman of the @RepublicanStudy Committee",4025,"https://pbs.twimg.com/profile_images/1683583140973928448/bTogfydZ_normal.jpg",555,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:32.780Z","{""url"":""https://twitter.com/1067818539179024386/status/1853799101558591620""}","{""url"":""https://x.com/repkevinhern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853801970093441470","RepAdamSmith","Rep. Adam Smith","Happy Election Day, Washington. Your vote is your voice.","2024-11-05T14:10:06.000Z","[""https://pbs.twimg.com/media/GboG46DW4AAj7_9.jpg""]","https://x.com/RepAdamSmith/status/1853801970093441470","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,4,23,1069,,,44363,"Proudly serving Washington State's 9th District. Democratic leader of the House Armed Services Committee. @HASCDemocrats",10509,"https://pbs.twimg.com/profile_images/1046859374055047169/OrFwOGl6_normal.jpg",2025,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:33.127Z","{""url"":""https://twitter.com/58928690/status/1853801970093441470""}","{""url"":""https://x.com/RepAdamSmith"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842847662805301","RepDwightEvans","Congressman Dwight Evans","New: The FBI is warning about a fabricated video purporting to be an alert issued by the FBI urging Americans to “vote remotely” due to a high terror threat at polling stations. The FBI is also flagging a video containing a fake FBI press release alleging that the management of","2024-11-05T16:52:32.000Z",,"https://x.com/RepDwightEvans/status/1853842847662805301","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""325001316"",""profile_name"":""Ken Dilanian"",""url"":""https://x.com/KenDilanianNBC"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,5833,0,,,,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:33.832Z","{""url"":""https://twitter.com/90639372/status/1853842847662805301""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799836639694925","repkevinhern","Congressman Kevin Hern","We can fix what Democrats have corrupted with Trump's policies: Rep. Kevin Hern","2024-11-05T14:01:37.000Z",,"https://x.com/repkevinhern/status/1853799836639694925","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2330590446"",""profile_name"":""Mornings with Maria"",""url"":""https://x.com/MorningsMaria"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,42,0,,,,21506,"Representing Oklahoma's 1st Congressional District in the United States House of Representatives | Chairman of the @RepublicanStudy Committee",4025,"https://pbs.twimg.com/profile_images/1683583140973928448/bTogfydZ_normal.jpg",555,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853768076199632896/vid/avc1/1280x720/dlQM85f07N47IeFs.mp4?tag=14"",""duration"":461269}]","2024-11-06T04:14:33.919Z","{""url"":""https://twitter.com/1067818539179024386/status/1853799836639694925""}","{""url"":""https://x.com/repkevinhern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853874754517663762","RepJudyChu","Judy Chu","REMINDER! If you missed the deadline to register to vote in California, you can still register today in person. This is called casting a provisional ballot that will count once verified. Just be sure to bring identification with you to your polling place.","2024-11-05T18:59:19.000Z",,"https://x.com/RepJudyChu/status/1853874754517663762","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,14,29,3491,,,82013,"Proudly representing #CA28, California's 28th District in the U.S. House of Representatives. Ways and Means. Small Business. Chair of @CAPAC.",9504,"https://pbs.twimg.com/profile_images/1547992737332416513/hjqZoRaG_normal.jpg",45421,false,3,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:33.932Z","{""url"":""https://twitter.com/193732179/status/1853874754517663762""}","{""url"":""https://x.com/RepJudyChu"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853816195994030499","RepDonDavis","Congressman Don Davis","During the 118th Congress, we’ve closed over 1,750 casework requests to help eastern North Carolinians solve their issues with federal agencies. If you or a loved one are having trouble with a federal agency, our casework team is here to help:","2024-11-05T15:06:38.000Z","[""https://pbs.twimg.com/media/GboUAWgWwAAgKhm.jpg""]","https://x.com/RepDonDavis/status/1853816195994030499","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,5,171,"https://dondavis.house.gov/services/help-federal-agency",,3541,"Father | Husband | Veteran | @HouseAgDems |@HASCDemocrats +Working to deliver fair solutions for #NC01.",2371,"https://pbs.twimg.com/profile_images/1610324040106885121/ux175IUs_normal.jpg",308,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:34.159Z","{""url"":""https://twitter.com/1610323296360210433/status/1853816195994030499""}","{""url"":""https://x.com/RepDonDavis"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853854953086828674","RepDanGoldman","Rep. Dan Goldman","The right to vote is the bedrock of our democracy, the right from which all others flow. + +Everyone deserves to have their voice heard and decide the direction of our country. + +If you haven’t already, check your registration and local precinct and vote!","2024-11-05T17:40:38.000Z",,"https://x.com/RepDanGoldman/status/1853854953086828674","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,28,101,3117,"https://vote.gov/guide-to-voting",,96626,"Congressman for New York's 10th District in the House of Representatives",1959,"https://pbs.twimg.com/profile_images/1612460750630518785/GlrrEjFZ_normal.jpg",413,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851383010479972352/xLhamLO3?format=jpg&name=orig""]",,"2024-11-06T04:14:34.545Z","{""url"":""https://twitter.com/1610019555371372544/status/1853854953086828674""}","{""url"":""https://x.com/RepDanGoldman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800009008881998","congbillposey","Bill Posey","Border Czar Kamala: +▪Denies that terrorists have come across our border under her watch +▪Demands a wall for herself but refuses to complete President Trump's border wall +▪Claims that her border crisis isn't an emergency + +VP Harris is a hypocrite.","2024-11-05T14:02:18.000Z",,"https://x.com/congbillposey/status/1853800009008881998","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""816652616625168388"",""profile_name"":""Rep Andy Biggs"",""url"":""https://x.com/RepAndyBiggsAZ"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,409,0,,,,35098,"Congressman from Florida's 8th district, representing the Space and Treasure Coasts",1817,"https://pbs.twimg.com/profile_images/817498897299939329/Pm6RrRqb_normal.jpg",1047,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:34.979Z","{""url"":""https://twitter.com/25086658/status/1853800009008881998""}","{""url"":""https://x.com/congbillposey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853973163643687269","RepBethVanDuyne","Congresswoman Beth Van Duyne","It was an honor to recognize and celebrate our #TX24 veterans at yesterday’s luncheon! We honored 20 heroes, including 15 Vietnam veterans and 5 commendation recipients who continued to go above and beyond to serve our community after their time in the armed forces. 🇺🇸","2024-11-06T01:30:22.000Z","[""https://pbs.twimg.com/media/GbqisW6WEAggkhP.jpg"",""https://pbs.twimg.com/media/GbqitlGXsBITj9C.jpg"",""https://pbs.twimg.com/media/GbqiuzSXwBggToT.jpg"",""https://pbs.twimg.com/media/GbqiwBeWoAAmDx0.jpg""]","https://x.com/RepBethVanDuyne/status/1853973163643687269","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,2,23,1207,,"[""TX24""]",37208,"Proud mom of two. Former mayor. Proudly representing North Texas. American by birth, Texan by the Grace of God.",6415,"https://pbs.twimg.com/profile_images/1339633691086217216/DgBVGqMI_normal.jpg",1432,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:35.640Z","{""url"":""https://twitter.com/1339633259349745670/status/1853973163643687269""}","{""url"":""https://x.com/RepBethVanDuyne"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853780359898411030","RepGregLandsman","Congressman Greg Landsman","Ohio, it's Election Day! 🗳️ Polls are open 6:30 AM - 7:30 PM. + +If you're in line by closing time, stay in line — you have the right to vote! + +Find your polling place:","2024-11-05T12:44:14.000Z","[""https://pbs.twimg.com/media/GbnzaQWWQAAWbl1.jpg""]","https://x.com/RepGregLandsman/status/1853780359898411030","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,2,9,562,"https://www.ohiosos.gov/",,7004,"Father, husband, former teacher. Proudly serving Southwest Ohio (OH-01) 🙏🏻💙",1532,"https://pbs.twimg.com/profile_images/1613637883277058060/C1ukXTY-_normal.jpg",333,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:36.029Z","{""url"":""https://twitter.com/1613637172346642432/status/1853780359898411030""}","{""url"":""https://x.com/RepGregLandsman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853818105102782808","RepBuddyCarter","Buddy Carter","Bernie Marcus was an incredible Georgian. His legacy will last forever and he will be deeply missed.","2024-11-05T15:14:13.000Z",,"https://x.com/RepBuddyCarter/status/1853818105102782808","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,2,14,705,"https://www.ajc.com/news/bernie-marcus-co-founder-of-home-depot-dies/HBKKVBNKIBACPK7W4K5XHFXMIA/",,38125,"Proudly serving Georgia's 1st Congressional District + +👇Sign up for my e-newsletter👇",6052,"https://pbs.twimg.com/profile_images/554437784912400384/N6PPUUz2_normal.jpeg",461,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853794950506307584/mDDkqaMX?format=jpg&name=orig""]",,"2024-11-06T04:14:36.087Z","{""url"":""https://twitter.com/2973870195/status/1853818105102782808""}","{""url"":""https://x.com/RepBuddyCarter"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853830684311265523","RepKManning","Congresswoman Kathy Manning","Happy Election Day! Make a plan to vote and cast your ballot today. + +Find your polling location ⬇️","2024-11-05T16:04:12.000Z","[""https://pbs.twimg.com/media/GbohJS7WQAA2Cs1.png""]","https://x.com/RepKManning/status/1853830684311265523","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,1,3,311,"https://www.ncsbe.gov/voting/vote-person-election-day",,9726,"Congresswoman representing #NC06. Vice Ranking Member of @HouseForeign, member of @EdWorkforceDems, & Co-Chair of @HouseBTFCA. +#ncpol",3340,"https://pbs.twimg.com/profile_images/1337116029919653888/gGdH6lon_normal.jpg",865,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:36.079Z","{""url"":""https://twitter.com/1337115670161608712/status/1853830684311265523""}","{""url"":""https://x.com/RepKManning"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853844013830271460","RepBryanSteil","Bryan Steil","It’s Election Day. Alongside @SpeakerJohnson, we’ve ensured this year’s Election Observer Program is the most robust in its history. Thank you to the Election Observers for your important work to increase Americans’ confidence in our elections.","2024-11-05T16:57:10.000Z",,"https://x.com/RepBryanSteil/status/1853844013830271460","{""post_id"":""1851260313657589922"",""profile_id"":""RepBryanSteil"",""profile_name"":""Bryan Steil"",""data_posted"":""2018-12-19T01:46:28.000Z"",""url"":""https://x.com/RepBryanSteil/status/1851260313657589922"",""description"":""The Election Observer Program helps give Americans confidence that their elections are being run in a safe and secure manner. https://t.co/ofJ7W9ZNoh"",""photos"":[""https://pbs.twimg.com/media/GbD-XSwW0AAfjw-.png""],""videos"":null}","[{""profile_id"":""827279765287559171"",""profile_name"":""Speaker Mike Johnson"",""url"":""https://x.com/SpeakerJohnson"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",9,4,20,2152,,,22783,"Official Twitter account for Bryan Steil, proudly serving the people of Wisconsin’s 1st Congressional District. Chairman of @HouseAdmin.",5220,"https://pbs.twimg.com/profile_images/1480940807574204425/IdVPUT4K_normal.jpg",527,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:37.415Z","{""url"":""https://twitter.com/1075205691621720064/status/1853844013830271460""}","{""url"":""https://x.com/RepBryanSteil"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853618503691256237","RepBrianBabin","Brian Babin","More than 120 Iranians were arrested for illegally crossing our border in October. + +We’ve seen an over 150% increase in the apprehension of Iranian nationals compared to last year. + +This is no coincidence. It’s a consequence of Kamala Harris’ border crisis.","2024-11-05T02:01:04.000Z",,"https://x.com/RepBrianBabin/status/1853618503691256237","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,2,6,425,"https://www.breitbart.com/border/2024/11/04/exclusive-124-iranian-nationals-illegally-cross-biden-harris-open-border-in-october/",,29571,"Proudly serving #TX36 residents in Congress. Chairman of Space & Aeronautics Subcmte, Border Sec co-chair & serve on @HouseScienceGOP/@TransportGOP Cmte.",7337,"https://pbs.twimg.com/profile_images/887307878960431104/X1I2wzXX_normal.jpg",840,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853425763325808641/NOQXHyak?format=jpg&name=orig""]",,"2024-11-06T04:14:37.987Z","{""url"":""https://twitter.com/2929491549/status/1853618503691256237""}","{""url"":""https://x.com/RepBrianBabin"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853633643157291337","RepDeSaulnier","Mark DeSaulnier","A final reminder to vote tomorrow:","2024-11-05T03:01:14.000Z",,"https://x.com/RepDeSaulnier/status/1853633643157291337","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,0,18,983,,,23791,"Representing CA-10. Member of @transportdems @EdWorkforceDems and House Ethics Committee. Dad, amateur historian, marathon runner & former small business owner.",10064,"https://pbs.twimg.com/profile_images/979126569070485505/TChO0ixS_normal.jpg",1031,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853633442443038720/vid/avc1/1920x1080/h22nODlc5MEI9O6v.mp4?tag=16"",""duration"":76733}]","2024-11-06T04:14:38.136Z","{""url"":""https://twitter.com/2968007206/status/1853633643157291337""}","{""url"":""https://x.com/RepDeSaulnier"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853832819815969184","RepBrianBabin","Brian Babin","Under Kamala Harris, many Americans are living paycheck to paycheck. + +We cannot afford another FOUR years of her failed policies.","2024-11-05T16:12:41.000Z",,"https://x.com/RepBrianBabin/status/1853832819815969184","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,1,7,326,"https://www.foxbusiness.com/economy/more-americans-living-paycheck-paycheck-than-5-years-ago-bank-america-data-shows",,29571,"Proudly serving #TX36 residents in Congress. Chairman of Space & Aeronautics Subcmte, Border Sec co-chair & serve on @HouseScienceGOP/@TransportGOP Cmte.",7337,"https://pbs.twimg.com/profile_images/887307878960431104/X1I2wzXX_normal.jpg",840,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1852935924142817280/ldnFDrkB?format=jpg&name=orig""]",,"2024-11-06T04:14:38.431Z","{""url"":""https://twitter.com/2929491549/status/1853832819815969184""}","{""url"":""https://x.com/RepBrianBabin"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853591459666031022","RepGonzalez","Rep. Vicente Gonzalez","No one in #TX34 should have to choose between lifesaving medication like insulin and putting food on the table. + +That’s why @HouseDemocrats and I have fought to cap insulin at $35 a month for seniors. Ensuring they have the medication they deserve at a cost they can afford.","2024-11-05T00:13:36.000Z","[""https://pbs.twimg.com/media/GblHSW_WsAAa_ZL.jpg""]","https://x.com/RepGonzalez/status/1853591459666031022","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""43963249"",""profile_name"":""House Democrats"",""url"":""https://x.com/HouseDemocrats"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",3,0,6,697,,"[""TX34""]",14085,"Proudly representing the 34th District of Texas in the U.S. Congress #TX34",4871,"https://pbs.twimg.com/profile_images/1621527963274461184/oeqb4GUU_normal.jpg",520,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:38.598Z","{""url"":""https://twitter.com/818536152588238849/status/1853591459666031022""}","{""url"":""https://x.com/RepGonzalez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853882753537995014","RepAlexMooney","Rep. Alex Mooney","""The IRA’s unprecedented climate spending—much of it uninvestigated—may soon lead to unprecedented scandals."" @CityJournal + +“No clear public record showing where money went or how it's used makes any assessment of impacts impossible.” - Follow the Money!","2024-11-05T19:31:06.000Z",,"https://x.com/RepAlexMooney/status/1853882753537995014","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""18086993"",""profile_name"":""City Journal"",""url"":""https://x.com/CityJournal"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,2,2,309,"https://www.city-journal.org/article/the-inflation-reduction-act-a-looming-political-earthquake",,25285,"Husband, Father, Conservative Representing West Virginia's 2nd Congressional District. #wv02 #wvpol Member of @financialcmte",4670,"https://pbs.twimg.com/profile_images/1347594832940855296/XXMDj6Mf_normal.jpg",778,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:38.590Z","{""url"":""https://twitter.com/2964526557/status/1853882753537995014""}","{""url"":""https://x.com/RepAlexMooney"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853890203003297856","RepDanGoldman","Rep. Dan Goldman","No American citizen should be denied their right to vote on a technicality. +  +If you or someone you know is having issues at the polls, use @NewYorkStateAG’s resources below.","2024-11-05T20:00:42.000Z","[""https://pbs.twimg.com/media/GbpXUB8WsAAlgke.jpg""]","https://x.com/RepDanGoldman/status/1853890203003297856","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""132496568"",""profile_name"":""NY AG James"",""url"":""https://x.com/NewYorkStateAG"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",11,42,124,3864,,,96654,"Congressman for New York's 10th District in the House of Representatives",1959,"https://pbs.twimg.com/profile_images/1612460750630518785/GlrrEjFZ_normal.jpg",413,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:39.336Z","{""url"":""https://twitter.com/1610019555371372544/status/1853890203003297856""}","{""url"":""https://x.com/RepDanGoldman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853814549331222760","RepGonzalez","Rep. Vicente Gonzalez","Attention South Texans: Election Day is today! Polling places across Texas will be open until 7 PM on Tuesday, Nov. 5. + +As long as you are in line by 7 PM, you will be allowed to vote. When voting in person, make sure to bring a valid ID!","2024-11-05T15:00:05.000Z","[""https://pbs.twimg.com/media/GboR6MWWkAA_-i0.jpg""]","https://x.com/RepGonzalez/status/1853814549331222760","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,4,12,447,,,14085,"Proudly representing the 34th District of Texas in the U.S. Congress #TX34",4871,"https://pbs.twimg.com/profile_images/1621527963274461184/oeqb4GUU_normal.jpg",520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:39.339Z","{""url"":""https://twitter.com/818536152588238849/status/1853814549331222760""}","{""url"":""https://x.com/RepGonzalez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842661708345577","RepAlexMooney","Rep. Alex Mooney","More than 70% of Americans believe women's sports should be female-only! + +👏 Thank you, @RepAlexMooney, for standing with women & supporting the Riley Gaines Stand With Women Scorecard!","2024-11-05T16:51:47.000Z",,"https://x.com/RepAlexMooney/status/1853842661708345577","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""71036272"",""profile_name"":""Independent Women's Voice"",""url"":""https://x.com/IWV"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""2964526557"",""profile_name"":""Rep. Alex Mooney"",""url"":""https://x.com/RepAlexMooney"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,5,0,,,,25285,"Husband, Father, Conservative Representing West Virginia's 2nd Congressional District. #wv02 #wvpol Member of @financialcmte",4670,"https://pbs.twimg.com/profile_images/1347594832940855296/XXMDj6Mf_normal.jpg",778,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:39.734Z","{""url"":""https://twitter.com/2964526557/status/1853842661708345577""}","{""url"":""https://x.com/RepAlexMooney"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853864333924856144","RepAndyBiggsAZ","Rep Andy Biggs","10 million+ illegal aliens—including countless rapists and murderers—have invaded our country since 2021. + +Prices are up 20%. + +Wars are ravaging the Middle East and Eastern Europe. + +The world was better four years ago.","2024-11-05T18:17:54.000Z",,"https://x.com/RepAndyBiggsAZ/status/1853864333924856144","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,54,148,453,11003,,,897279,"Representing Arizona's Fighting Fifth. Member of the @JudiciaryGOP and @GOPoversight committees.",25708,"https://pbs.twimg.com/profile_images/1753083513102909440/iDdZ2WlJ_normal.jpg",1827,false,5,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:39.806Z","{""url"":""https://twitter.com/816652616625168388/status/1853864333924856144""}","{""url"":""https://x.com/RepAndyBiggsAZ"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853914743532081333","RepAndyBiggsAZ","Rep Andy Biggs","The Harris-Biden regime began repealing Trump-era border policies on day one. + +The Left is to blame for the criminals and terrorists roaming American communities. + +The Senate’s border insecurity bill would have codified mass parole while H.R. 2 collects dust on Schumer’s desk.","2024-11-05T21:38:13.000Z",,"https://x.com/RepAndyBiggsAZ/status/1853914743532081333","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,38,127,376,10758,,,897279,"Representing Arizona's Fighting Fifth. Member of the @JudiciaryGOP and @GOPoversight committees.",25708,"https://pbs.twimg.com/profile_images/1753083513102909440/iDdZ2WlJ_normal.jpg",1827,false,2,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:39.879Z","{""url"":""https://twitter.com/816652616625168388/status/1853914743532081333""}","{""url"":""https://x.com/RepAndyBiggsAZ"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853847005551788466","RepJoeMorelle","Joe Morelle","Election Day is your chance to make your voice heard and shape your future. + +If you haven’t cast your ballot already, visit","2024-11-05T17:09:03.000Z",,"https://x.com/RepJoeMorelle/status/1853847005551788466","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,5,10,567,"https://www.monroecounty.gov/elections-sites",,15856,"Always getting my steps in. Proud grandfather, Democrat, and Congressman representing #NY25. Black belt. Go @Cardinals.",7324,"https://pbs.twimg.com/profile_images/1798429483243835392/d_ZKV-Yi_normal.jpg",895,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:39.865Z","{""url"":""https://twitter.com/1064595993222615040/status/1853847005551788466""}","{""url"":""https://x.com/RepJoeMorelle"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853588039328485589","RepJeffDuncan","Rep. Jeff Duncan","Biden/Harris support a path to citizenship for illegal immigrants. +Here's what that would look like in 7 swing states:","2024-11-05T00:00:01.000Z","[""https://pbs.twimg.com/media/Gbj3NMTXAAABcBe.jpg""]","https://x.com/RepJeffDuncan/status/1853588039328485589","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,3,8,1084,,,65734,"Employee for the people of SC-03 | Chairman of the Energy, Climate, and Grid Security Subcommittee",15005,"https://pbs.twimg.com/profile_images/1650882451466592257/Fb9Au-6N_normal.jpg",13482,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:41.126Z","{""url"":""https://twitter.com/240393970/status/1853588039328485589""}","{""url"":""https://x.com/RepJeffDuncan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853615267374387335","RepDwightEvans","Congressman Dwight Evans","Voter intimidation is illegal at the polls and at ballot drop boxes. You can help protect the safety and integrity of our elections. Report any voter intimidation or harassment you witness. Notify an election worker and contact our year-round voter information hotline at","2024-11-05T01:48:12.000Z",,"https://x.com/RepDwightEvans/status/1853615267374387335","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""625624080"",""profile_name"":""PA Department of State"",""url"":""https://x.com/PAStateDept"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,91,0,,,,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3521,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:41.557Z","{""url"":""https://twitter.com/90639372/status/1853615267374387335""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854006435387957267","RepAndyBiggsAZ","Rep Andy Biggs","Border Czar Kamala: +▪Denies that terrorists have come across our border under her watch +▪Demands a wall for herself but refuses to complete President Trump's border wall +▪Claims that her border crisis isn't an emergency + +VP Harris is a hypocrite.","2024-11-06T03:42:34.000Z",,"https://x.com/RepAndyBiggsAZ/status/1854006435387957267","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""816652616625168388"",""profile_name"":""Rep Andy Biggs"",""url"":""https://x.com/RepAndyBiggsAZ"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,409,0,,,,897281,"Representing Arizona's Fighting Fifth. Member of the @JudiciaryGOP and @GOPoversight committees.",25708,"https://pbs.twimg.com/profile_images/1753083513102909440/iDdZ2WlJ_normal.jpg",1827,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:42.378Z","{""url"":""https://twitter.com/816652616625168388/status/1854006435387957267""}","{""url"":""https://x.com/RepAndyBiggsAZ"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853874501349761372","RepLuna","Rep. Anna Paulina Luna","This news is truly heartbreaking and should have never occurred. Join me in praying for their swift recovery and healing.","2024-11-05T18:58:19.000Z",,"https://x.com/RepLuna/status/1853874501349761372","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,32,43,178,10781,"https://www.fox13news.com/news/middle-school-student-shot-school-bus-st-pete-police-say",,216582,"Official account for FL-13 Rep. Anna Paulina Luna 🇺🇸 | Serving on @GOPOversight & @NatResources | Wife-Mom-USAF Veteran",3040,"https://pbs.twimg.com/profile_images/1751266572340019200/vnXHTR7z_normal.jpg",306,false,0,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851375060294012928/_SZWfiHt?format=jpg&name=orig""]",,"2024-11-06T04:14:42.827Z","{""url"":""https://twitter.com/1610230835289923584/status/1853874501349761372""}","{""url"":""https://x.com/RepLuna"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853837848547328433","RepMcGarvey","Rep. Morgan McGarvey","It's #ElectionDay! Our democracy is strongest when every voice is heard—learn everything you need to cast your ballot at","2024-11-05T16:32:40.000Z","[""https://pbs.twimg.com/media/Gbom02GXcAAOt-v.jpg""]","https://x.com/RepMcGarvey/status/1853837848547328433","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,8,537,"http://vote.gov/","[""ElectionDay""]",7131,"Lifelong Louisvillian proudly serving #KY03 in Congress. Husband & father, dad band guitarist, bourbon fan 🥃 🎸 + +@VetAffairsDems & @HSBCDems",1425,"https://pbs.twimg.com/profile_images/1754515840710361088/CGeSQzes_normal.jpg",167,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:42.918Z","{""url"":""https://twitter.com/1610300298303787008/status/1853837848547328433""}","{""url"":""https://x.com/RepMcGarvey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853861101668016527","RepAdamSmith","Rep. Adam Smith","Congratulations to the Machinist Union workers for their courage and tenacity. At great personal risk they stood up for each other for two challenging months. They set an example for working people everywhere – to fight for fair wages and benefits – and they were hugely successful. The deal that Machinists and Boeing came together last night to agree on delivers better benefits for Boeing workers, including a wage increase, stronger retirement plans, and other significant benefit improvements. +  +""I will always support the rights of workers to organize and collectively bargain for better working conditions. I’m grateful today for the many leaders who rose to the occasion during these negotiations. Much is owed to Machinists President Job Holden, Boeing CEO Kelly Ortberg, and the Biden-Harris Administration’s Acting Labor Secretary Julie Su for their expertise and leadership in this process. + +""This new agreement should represent a new chapter for Boeing. For many decades, Boeing was a pillar of American innovation and manufacturing, but in recent times its felt like they have chosen to prioritize shareholders and investors over their own employees. I am hopeful that with this successful negotiation with the Machinists, that Boeing can learn from this experience and get back to where the company came from: a business focused not only on short-term profits but on building the best airplanes in the world. It’s their middle- and working-class employees that build value not only in Boeing but also in our broader economy. I’m glad to see their work being recognized with this agreement that sets a new standard for workers in the aerospace industry. +  +""Livable wages, strong retirement options, and good benefits should be the standard for workers everywhere. I am hopeful that this new chapter will bring great success to Boeing and all of its employees.”","2024-11-05T18:05:04.000Z","[""https://pbs.twimg.com/media/Gbo81-IW0AAclOx.jpg"",""https://pbs.twimg.com/media/Gbo81-HXMAAQ7FU.jpg""]","https://x.com/RepAdamSmith/status/1853861101668016527","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,8,20,1171,,,44358,"Proudly serving Washington State's 9th District. Democratic leader of the House Armed Services Committee. @HASCDemocrats",10509,"https://pbs.twimg.com/profile_images/1046859374055047169/OrFwOGl6_normal.jpg",2025,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:43.671Z","{""url"":""https://twitter.com/58928690/status/1853861101668016527""}","{""url"":""https://x.com/RepAdamSmith"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853895249069776951","RepKimSchrier","Rep. Kim Schrier, M.D.","Congratulations to @IAM751 members for securing their new, improved contract, which includes much-deserved wage increases and benefits.","2024-11-05T20:20:45.000Z",,"https://x.com/RepKimSchrier/status/1853895249069776951","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""28103693"",""profile_name"":""IAM Union District 751"",""url"":""https://x.com/IAM751"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4,9,411,"https://www.seattletimes.com/business/boeing-aerospace/boeing-machinists-approve-new-contract-ending-strike/",,16760,"Proudly representing the people of Washington State’s 8th District. Pediatrician. Mom.",3459,"https://pbs.twimg.com/profile_images/1129401036349857793/zvLbPQb6_normal.png",139,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853662798091534336/dI-eUYrW?format=jpg&name=orig""]",,"2024-11-06T04:14:43.726Z","{""url"":""https://twitter.com/1080462532815532032/status/1853895249069776951""}","{""url"":""https://x.com/RepKimSchrier"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853919905617522912","RepBrownley","Congresswoman Julia Brownley","Your vote is your voice. Today, I encourage all voters across California’s 26th Congressional District and around the country to head to the polls and make your voice heard!","2024-11-05T21:58:44.000Z","[""https://pbs.twimg.com/media/GbpyU36akAAkDwA.jpg""]","https://x.com/RepBrownley/status/1853919905617522912","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,2,343,,,22073,"Fighting #ForThePeople of California's 26th Congressional District",10013,"https://pbs.twimg.com/profile_images/1096422273437831168/b9lioe1R_normal.png",1093,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:43.748Z","{""url"":""https://twitter.com/1243902714/status/1853919905617522912""}","{""url"":""https://x.com/RepBrownley"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853895121554887096","RepJoeMorelle","Joe Morelle","Standing on the very spot in Rochester where Susan B. Anthony cast her ballot on November 5, 1872, I’m reflecting on the importance of her defiant act. + +Countless Americans have fought and sacrificed to protect our right to vote. Honor their courage by making your voice heard.","2024-11-05T20:20:15.000Z",,"https://x.com/RepJoeMorelle/status/1853895121554887096","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,12,59,2063,,,15856,"Always getting my steps in. Proud grandfather, Democrat, and Congressman representing #NY25. Black belt. Go @Cardinals.",7324,"https://pbs.twimg.com/profile_images/1798429483243835392/d_ZKV-Yi_normal.jpg",895,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853895025546956803/pu/vid/avc1/1280x720/EIbGYZcPlavYWPEw.mp4?tag=12"",""duration"":60666}]","2024-11-06T04:14:44.105Z","{""url"":""https://twitter.com/1064595993222615040/status/1853895121554887096""}","{""url"":""https://x.com/RepJoeMorelle"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799956026442004","RepJoeMorelle","Joe Morelle","Today is Election Day! +  +Head to the ballot box, cast your vote, and make your voice heard.","2024-11-05T14:02:06.000Z",,"https://x.com/RepJoeMorelle/status/1853799956026442004","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,3,15,654,,,15856,"Always getting my steps in. Proud grandfather, Democrat, and Congressman representing #NY25. Black belt. Go @Cardinals.",7324,"https://pbs.twimg.com/profile_images/1798429483243835392/d_ZKV-Yi_normal.jpg",895,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:44.314Z","{""url"":""https://twitter.com/1064595993222615040/status/1853799956026442004""}","{""url"":""https://x.com/RepJoeMorelle"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853758173460537495","repkevinhern","Congressman Kevin Hern","🚨Joining @MorningsMaria on @FoxBusiness live - tune in! #election2024","2024-11-05T11:16:04.000Z",,"https://x.com/repkevinhern/status/1853758173460537495","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2330590446"",""profile_name"":""Mornings with Maria"",""url"":""https://x.com/MorningsMaria"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""56413858"",""profile_name"":""FOX Business"",""url"":""https://x.com/FoxBusiness"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,1,8,682,,"[""election2024""]",21506,"Representing Oklahoma's 1st Congressional District in the United States House of Representatives | Chairman of the @RepublicanStudy Committee",4025,"https://pbs.twimg.com/profile_images/1683583140973928448/bTogfydZ_normal.jpg",555,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:44.617Z","{""url"":""https://twitter.com/1067818539179024386/status/1853758173460537495""}","{""url"":""https://x.com/repkevinhern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854000868644839435","RepAndyBiggsAZ","Rep Andy Biggs","Businesses are boarded up in DC. + +The NYPD is on alert for potential civil unrest. + +The country is preparing for violent riots from the Left.","2024-11-06T03:20:27.000Z",,"https://x.com/RepAndyBiggsAZ/status/1854000868644839435","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,70,505,1652,25782,,,897279,"Representing Arizona's Fighting Fifth. Member of the @JudiciaryGOP and @GOPoversight committees.",25708,"https://pbs.twimg.com/profile_images/1753083513102909440/iDdZ2WlJ_normal.jpg",1827,false,19,17,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:44.843Z","{""url"":""https://twitter.com/816652616625168388/status/1854000868644839435""}","{""url"":""https://x.com/RepAndyBiggsAZ"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853595564752957537","RepBarbaraLee","Rep. Barbara Lee","I am saddened to learn of the passing of the legendary Quincy Jones. + +Quincy gave the world some of the best music ever produced, and was a friend to all. He leaves a vast legacy in Black history, music history, and American history. + +May he rest in peace.","2024-11-05T00:29:55.000Z",,"https://x.com/RepBarbaraLee/status/1853595564752957537","{""post_id"":""1853389260222513287"",""profile_id"":""nytimes"",""profile_name"":""The New York Times"",""data_posted"":""2007-03-02T20:41:42.000Z"",""url"":""https://x.com/nytimes/status/1853389260222513287"",""description"":""Quincy Jones, one of the most powerful forces in American popular music for more than half a century, died at 91. He produced Michael Jackson’s \""Thriller,\"" the best-selling album of all time, and was a prolific arranger and composer of film music. https://t.co/OyXdjslxtm https://t.co/AFSNgx1z5P"",""photos"":[""https://pbs.twimg.com/media/GbiPtUqacAABT4C.jpg""],""videos"":null}",,1,5,37,3701,,,318287,"Progressive Democrat representing the #EastBay. Fighting for justice for all, peace, and human rights. @ProChoiceCaucus Co-Chair.",16025,"https://pbs.twimg.com/profile_images/1674837977896308736/sLRT7OFx_normal.jpg",16016,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:44.986Z","{""url"":""https://twitter.com/248735463/status/1853595564752957537""}","{""url"":""https://x.com/RepBarbaraLee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853826092777566305","RepKweisiMfume","Kweisi Mfume","Marylanders – TODAY is Election Day! Please visit the following link to learn how, when, and where to cast your ballot: https://t.co/ef8EgwlhkE + +American democracy works best when it reflects the will of the people, and so, I encourage you to make your voice heard. + +#ElectionDay #Election2024 #YourVoteMatters #Democracy #America #USA #Maryland #MarylandVotes #AmericanDemocracy","2024-11-05T15:45:57.000Z","[""https://pbs.twimg.com/media/GbodAVvXMAA-Oki.jpg""]","https://x.com/RepKweisiMfume/status/1853826092777566305","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,1,171,"https://www.elections.maryland.gov/",,6704,"Proudly Representing Maryland's 7th Congressional District. Member of @HouseForeign, @OversightDems, and @theBlackCaucus.",1439,"https://pbs.twimg.com/profile_images/1489264095920488454/mKk6MYrk_normal.jpg",708,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:45.419Z","{""url"":""https://twitter.com/1276209702322438148/status/1853826092777566305""}","{""url"":""https://x.com/RepKweisiMfume"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853853283040780767","RepChipRoy","Rep. Chip Roy Press Office","The Biden-Harris administration has: + +❌Mass imported illegals into American communities + +❌Sued states for trying to remove noncitizens from voter rolls + +❌Opposed Rep. Roy's SAVE Act that would require proof of citizenship to vote","2024-11-05T17:34:00.000Z",,"https://x.com/RepChipRoy/status/1853853283040780767","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,15,52,155,10728,,,238317,"This is a staff account to provide updates to our constituents in Texas' 21st District.",12783,"https://pbs.twimg.com/profile_images/1395466528288645133/IEpiPyY9_normal.jpg",211,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:45.595Z","{""url"":""https://twitter.com/1082790600292925440/status/1853853283040780767""}","{""url"":""https://x.com/RepChipRoy"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853852528850407475","RepLaMalfa","Rep. Doug LaMalfa","Big news in Chico as the FAA recently announced a $1 million federal grant to help restore commercial flights at Chico Regional Airpot. This funding follows a previous grant and is only available after I changed the law so Chico was eligible for grants again. Commercial air service can be a major boost for our local economy and pave the way for more businesses to locate in Butte County. Direct flights to key destinations like L.A. will create jobs, strengthen local businesses, and open up opportunities for our region. This grant is a big step toward connecting Chico and all of NorCal to more possibilities and making travel simpler for everyone.","2024-11-05T17:31:00.000Z",,"https://x.com/RepLaMalfa/status/1853852528850407475","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,11,2,18,1221,,,29358,"Representing California’s First Congressional District, including Butte, Colusa, Glenn, Lassen, Modoc, Shasta, Siskiyou, Sutter, Tehama and Yuba Counties.",3199,"https://pbs.twimg.com/profile_images/532998035416969216/vtCyv9Ze_normal.jpeg",1021,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:45.652Z","{""url"":""https://twitter.com/1069124515/status/1853852528850407475""}","{""url"":""https://x.com/RepLaMalfa"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853849005211402318","RepCasten","Rep. Sean Casten","Our service members currently face too many unnecessary barriers that limit their ability to consistently vote. I introduced the Military Voter Overseas Technical Enhancement Act to improve access to the ballot for military voters stationed overseas.","2024-11-05T17:17:00.000Z",,"https://x.com/RepCasten/status/1853849005211402318","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,5,625,"https://casten.house.gov/media/press-releases/casten-introduces-legislation-to-remove-barriers-to-voting-for-overseas-service-members",,34054,"Proudly serving IL-06. Dad, husband, former clean energy entrepreneur. Climate nerd, gun safety & consumer advocate @HouseScience @FSCdems. He/him",10027,"https://pbs.twimg.com/profile_images/1547703250337423360/Dl72RrIX_normal.jpg",3502,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851348456893210624/kplnri3N?format=jpg&name=orig""]",,"2024-11-06T04:14:46.334Z","{""url"":""https://twitter.com/1083472286089396224/status/1853849005211402318""}","{""url"":""https://x.com/RepCasten"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853855296524832976","RepMikeQuigley","Mike Quigley","Happy Election Day! Our elections offer Americans the opportunity to make their voice heard. Go vote!","2024-11-05T17:42:00.000Z","[""https://pbs.twimg.com/media/GbjStJRXUAAeWZp.jpg""]","https://x.com/RepMikeQuigley/status/1853855296524832976","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,8,714,,,51438,"Representing Illinois' 5th District. House Appropriator & head Dem on THUD Sub, amateur hockey player, proud Cubs fan. He/Him.",20280,"https://pbs.twimg.com/profile_images/1409558160130592770/kWo2RAZJ_normal.jpg",1786,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:46.460Z","{""url"":""https://twitter.com/56864092/status/1853855296524832976""}","{""url"":""https://x.com/RepMikeQuigley"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815883279327261","RepAndyBiggsAZ","Rep Andy Biggs","Cindy and I were deeply saddened to hear about the passing of our dear friend Alberto Gutier. + +Alberto was a devoted public servant in Arizona for more than half a century, and he will be sorely missed. + +Our hearts go out to his beloved wife Miryam, and to all who loved him.","2024-11-05T15:05:23.000Z",,"https://x.com/RepAndyBiggsAZ/status/1853815883279327261","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,17,10,131,6733,,,897279,"Representing Arizona's Fighting Fifth. Member of the @JudiciaryGOP and @GOPoversight committees.",25708,"https://pbs.twimg.com/profile_images/1753083513102909440/iDdZ2WlJ_normal.jpg",1827,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:46.489Z","{""url"":""https://twitter.com/816652616625168388/status/1853815883279327261""}","{""url"":""https://x.com/RepAndyBiggsAZ"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853863879069020199","RepGregStanton","Rep. Greg Stanton","I’ve been working to bring down prescription drug costs, and the #InflationReductionAct capped insulin at $35 for our seniors. + +#Project2025 would undo our progress & force Arizona families to pay more for their prescriptions.","2024-11-05T18:16:06.000Z","[""https://pbs.twimg.com/media/Gbo_RQVXMAAr5Uw.jpg""]","https://x.com/RepGregStanton/status/1853863879069020199","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,2,11,406,,"[""InflationReductionAct"",""Project2025""]",15320,"Proudly serving Arizona's 4th Congressional District",3506,"https://pbs.twimg.com/profile_images/1620469728929005568/-pvo_Toy_normal.jpg",1447,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:46.883Z","{""url"":""https://twitter.com/1080885078425784320/status/1853863879069020199""}","{""url"":""https://x.com/RepGregStanton"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853754551691563216","RepJenKiggans","Congresswoman Jen Kiggans","🚨 Virginia: TODAY is Election Day…! Polls are open until 7pm. To find your polling location, visit","2024-11-05T11:01:40.000Z","[""https://pbs.twimg.com/media/Gbnb8GOXsAAoB-_.jpg""]","https://x.com/RepJenKiggans/status/1853754551691563216","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,2,11,543,"https://www.elections.virginia.gov/casting-a-ballot","[""ElectionDay"",""VA02"",""VoteToday""]",7876,"Wife, Mom to 4 awesome kids, Geriatric Nurse Practitioner, former Navy helicopter pilot & VA State Senator. Proudly serving VA-02 in Congress!",1595,"https://pbs.twimg.com/profile_images/1818642595028885504/PCzE0mkS_normal.jpg",312,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:46.980Z","{""url"":""https://twitter.com/1605275643523891201/status/1853754551691563216""}","{""url"":""https://x.com/RepJenKiggans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853942612266197306","RepLuna","Rep. Anna Paulina Luna","Don’t forget, Kamala Harris thinks Americans aged 18-24 are “stupid.” I disagree.","2024-11-05T23:28:58.000Z",,"https://x.com/RepLuna/status/1853942612266197306","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,62,200,829,25469,,,216583,"Official account for FL-13 Rep. Anna Paulina Luna 🇺🇸 | Serving on @GOPOversight & @NatResources | Wife-Mom-USAF Veteran",3040,"https://pbs.twimg.com/profile_images/1751266572340019200/vnXHTR7z_normal.jpg",306,false,11,12,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853942555311763459/vid/avc1/884x490/njcCPDwcxHWtPrQw.mp4?tag=16"",""duration"":13916}]","2024-11-06T04:14:46.964Z","{""url"":""https://twitter.com/1610230835289923584/status/1853942612266197306""}","{""url"":""https://x.com/RepLuna"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853890560169218076","RepCori","Congresswoman Cori Bush","#OTD 56 years ago, Shirley Chisholm made history as the first Black woman elected to Congress. + +We are inspired by her legacy as we continue to champion equity and justice for all.","2024-11-05T20:02:07.000Z","[""https://pbs.twimg.com/media/GbpXoyoWMAAiKt4.jpg""]","https://x.com/RepCori/status/1853890560169218076","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,25,57,451,13783,,"[""OTD""]",136665,"Doing the most for MO-01 (STL)—starting with those with the greatest need. Politician + Activist = Politivist. Member, @HouseJudiciary, @OversightDems. She/her.",3363,"https://pbs.twimg.com/profile_images/1352693777895485457/hGX2jRBe_normal.jpg",300,false,6,7,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:47.357Z","{""url"":""https://twitter.com/1002630999052865536/status/1853890560169218076""}","{""url"":""https://x.com/RepCori"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853907804290953455","RepCasten","Rep. Sean Casten","I was honored to join Worth Mayor Mary Werner at a ceremony in honor of our veterans at the Eternal Flame Memorial. + +You can read about the ceremony here:","2024-11-05T21:10:39.000Z",,"https://x.com/RepCasten/status/1853907804290953455","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,12,2247,"https://southwestregionalpublishing.com/2024/11/05/cloudy-skies-fail-to-dampen-veterans-day-tribute-in-worth/",,34054,"Proudly serving IL-06. Dad, husband, former clean energy entrepreneur. Climate nerd, gun safety & consumer advocate @HouseScience @FSCdems. He/him",10027,"https://pbs.twimg.com/profile_images/1547703250337423360/Dl72RrIX_normal.jpg",3502,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:47.663Z","{""url"":""https://twitter.com/1083472286089396224/status/1853907804290953455""}","{""url"":""https://x.com/RepCasten"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853828451318243338","RepJayapal","Rep. Pramila Jayapal","Election Day is here! If you haven’t already, make sure to cast your vote today!","2024-11-05T15:55:19.000Z","[""https://pbs.twimg.com/media/GbofHgnXoAAQMj0.jpg""]","https://x.com/RepJayapal/status/1853828451318243338","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,14,9,50,5513,,,597238,"Congresswoman, lifelong organizer, mom. Proudly serving WA-07. Chair of @USProgressives, Member of @HouseJudiciary, @EdWorkforceDems. She/her.",33393,"https://pbs.twimg.com/profile_images/978268908057751552/LdIDc0tc_normal.jpg",2579,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:47.662Z","{""url"":""https://twitter.com/815733290955112448/status/1853828451318243338""}","{""url"":""https://x.com/RepJayapal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853919071789850683","RepMikeGarcia","Rep. Mike Garcia","Prop 47 created a low-risk playground for criminals, leaving our neighborhoods vulnerable. Prop 36 is the course correction we need to finally hold offenders accountable and bring safety back to our communities. + +We can’t keep letting failed policies and soft-on-crime DAs put our families at risk. + +https://t.co/Qq8Ey2H1rn","2024-11-05T21:55:25.000Z",,"https://x.com/RepMikeGarcia/status/1853919071789850683","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,4,34,1219,,,15902,"Representing California's 27th Congressional District. Husband. Father. Former Navy Fighter Pilot. Businessman. @HouseAppropsGOP, @HouseIntel & @Housescience.",3110,"https://pbs.twimg.com/profile_images/1844388787222347783/wZgSOovk_normal.jpg",547,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:47.838Z","{""url"":""https://twitter.com/1262531473057423361/status/1853919071789850683""}","{""url"":""https://x.com/RepMikeGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853897657170665595","RepHorsford","Rep. Steven Horsford","I'll always work to protect reproductive freedom. + +I believe in protecting access to abortion, birth control, & IVF because healthcare decisions should be made by people, not politicians.","2024-11-05T20:30:19.000Z","[""https://pbs.twimg.com/media/GbpeF_TXwAA3r-I.jpg""]","https://x.com/RepHorsford/status/1853897657170665595","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,3,2,390,,,21553,"Govt Twitter account of Congressman Steven Horsford. Proudly representing the people of Nevada's 4th Congressional District. Chairman of @TheBlackCaucus #NV04",9141,"https://pbs.twimg.com/profile_images/1540443161788645381/GSC8g_1Y_normal.jpg",2034,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:48.145Z","{""url"":""https://twitter.com/389840566/status/1853897657170665595""}","{""url"":""https://x.com/RepHorsford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853950021168681003","RepKimSchrier","Rep. Kim Schrier, M.D.","Happy Election Day! Your vote is your voice. Today, I encourage everyone in the Eighth District and across the country to head to the polls and make your voice heard!","2024-11-05T23:58:24.000Z","[""https://pbs.twimg.com/media/GbpRYwaX0AMs-CS.jpg""]","https://x.com/RepKimSchrier/status/1853950021168681003","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,10,416,,,16760,"Proudly representing the people of Washington State’s 8th District. Pediatrician. Mom.",3459,"https://pbs.twimg.com/profile_images/1129401036349857793/zvLbPQb6_normal.png",139,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:48.138Z","{""url"":""https://twitter.com/1080462532815532032/status/1853950021168681003""}","{""url"":""https://x.com/RepKimSchrier"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853813798592799156","RepCori","Congresswoman Cori Bush","How to stay informed during severe weather events in St. Louis City: +✅ Follow @CityEMA +✅ Follow @SLMPD +✅ Folllow @NWSStLouis +✅ Sign up for #NotifySTL at","2024-11-05T14:57:06.000Z",,"https://x.com/RepCori/status/1853813798592799156","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1379445786396794885"",""profile_name"":""Mayor Tishaura O. Jones"",""url"":""https://x.com/saintlouismayor"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""137445803"",""profile_name"":""City of St Louis EM"",""url"":""https://x.com/CityEMA"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""111157878"",""profile_name"":""St. Louis, MO Police"",""url"":""https://x.com/SLMPD"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,5,0,,,,136668,"Doing the most for MO-01 (STL)—starting with those with the greatest need. Politician + Activist = Politivist. Member, @HouseJudiciary, @OversightDems. She/her.",3363,"https://pbs.twimg.com/profile_images/1352693777895485457/hGX2jRBe_normal.jpg",300,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:48.198Z","{""url"":""https://twitter.com/1002630999052865536/status/1853813798592799156""}","{""url"":""https://x.com/RepCori"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853667560916484550","RepJayapal","Rep. Pramila Jayapal","Tonight, @IAM751 Machinists voted to ratify a new contract and end their strike. + +Read my full statement below ⬇","2024-11-05T05:16:00.000Z","[""https://pbs.twimg.com/media/GbmMfe8WYAEv4Ld.jpg""]","https://x.com/RepJayapal/status/1853667560916484550","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""28103693"",""profile_name"":""IAM Union District 751"",""url"":""https://x.com/IAM751"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",6,25,128,8039,,,597237,"Congresswoman, lifelong organizer, mom. Proudly serving WA-07. Chair of @USProgressives, Member of @HouseJudiciary, @EdWorkforceDems. She/her.",33393,"https://pbs.twimg.com/profile_images/978268908057751552/LdIDc0tc_normal.jpg",2579,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:48.213Z","{""url"":""https://twitter.com/815733290955112448/status/1853667560916484550""}","{""url"":""https://x.com/RepJayapal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853904785017090223","RepJayapal","Rep. Pramila Jayapal","REMINDER: If you are in line to vote when your polling place closes, you can STAY IN LINE to cast your ballot! + +Here’s when polls close across the country — click here to check your specific polling location:","2024-11-05T20:58:39.000Z","[""https://pbs.twimg.com/media/GbpkfnKWYAA2CcO.jpg""]","https://x.com/RepJayapal/status/1853904785017090223","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,56,97,10248,"https://www.usa.gov/find-polling-place",,597237,"Congresswoman, lifelong organizer, mom. Proudly serving WA-07. Chair of @USProgressives, Member of @HouseJudiciary, @EdWorkforceDems. She/her.",33393,"https://pbs.twimg.com/profile_images/978268908057751552/LdIDc0tc_normal.jpg",2579,false,0,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:48.472Z","{""url"":""https://twitter.com/815733290955112448/status/1853904785017090223""}","{""url"":""https://x.com/RepJayapal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853807233374540248","RepAndreCarson","André Carson","It’s Election Day! Make sure you know your rights: +🗳️If the polls close while you’re in line, stay in line. +🗳️If you make a mistake on your ballot, ask for a new one. +🗳️If your name isn't in the poll book, you can still vote with a provisional ballot.","2024-11-05T14:31:01.000Z",,"https://x.com/RepAndreCarson/status/1853807233374540248","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,18,34,2424,,,64341,"The official Twitter account for Congressman André Carson of Indiana's 7th District. #Indianapolis #Indy",7021,"https://pbs.twimg.com/profile_images/461880758613704705/l_k2diGx_normal.jpeg",1021,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:48.579Z","{""url"":""https://twitter.com/199325935/status/1853807233374540248""}","{""url"":""https://x.com/RepAndreCarson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853807909043392713","RepAndyBiggsAZ","Rep Andy Biggs","Cornwallis’s surrender nearly 250 years ago ensured that we don’t have to concern ourselves with those who don’t understand our Constitutional Republic. + +🇺🇸","2024-11-05T14:33:42.000Z","[""https://pbs.twimg.com/media/GboMd85WwAAE73I.jpg""]","https://x.com/RepAndyBiggsAZ/status/1853807909043392713","{""post_id"":""1853645308460204134"",""profile_id"":""guardian"",""profile_name"":""The Guardian"",""data_posted"":""2009-11-05T23:49:19.000Z"",""url"":""https://x.com/guardian/status/1853645308460204134"",""description"":""The Guardian view on America’s electoral college: time to scrap an antidemocratic relic | Editorial https://t.co/jADGzKKwR2"",""photos"":null,""videos"":null}",,45,55,301,13489,,,897279,"Representing Arizona's Fighting Fifth. Member of the @JudiciaryGOP and @GOPoversight committees.",25708,"https://pbs.twimg.com/profile_images/1753083513102909440/iDdZ2WlJ_normal.jpg",1827,false,4,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:48.854Z","{""url"":""https://twitter.com/816652616625168388/status/1853807909043392713""}","{""url"":""https://x.com/RepAndyBiggsAZ"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853934087691493664","RepHorsford","Rep. Steven Horsford","Project 2025 threatens healthcare access for thousands in Nevada by slashing federal support for Medicaid and the ACA. + +Our seniors, low-income families, & those with pre-existing conditions depend on these programs. + +Let's protect affordable healthcare for all Nevadans.","2024-11-05T22:55:05.000Z",,"https://x.com/RepHorsford/status/1853934087691493664","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,1,3,440,,,21551,"Govt Twitter account of Congressman Steven Horsford. Proudly representing the people of Nevada's 4th Congressional District. Chairman of @TheBlackCaucus #NV04",9141,"https://pbs.twimg.com/profile_images/1540443161788645381/GSC8g_1Y_normal.jpg",2034,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853932862946394116/pu/vid/avc1/1280x720/T8Gv3vxBIy5lx3rS.mp4?tag=12"",""duration"":60760}]","2024-11-06T04:14:48.929Z","{""url"":""https://twitter.com/389840566/status/1853934087691493664""}","{""url"":""https://x.com/RepHorsford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799439204598265","RepHankJohnson","Rep. Hank Johnson","Your vote is your voice. Today, I encourage everyone in #GA04 and around the country to head to the polls and make your voice heard!","2024-11-05T14:00:02.000Z","[""https://pbs.twimg.com/media/GbU2u6FWwAA6abZ.jpg""]","https://x.com/RepHankJohnson/status/1853799439204598265","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,0,11,921,,"[""GA04""]",56650,"Father | Husband | Congressman for #GA04 | Ranking Member on @housejudiciary Subcommittee on Courts | Senior Member on @transportdems",9834,"https://pbs.twimg.com/profile_images/1379794059557015556/_4ZOU0zP_normal.jpg",1748,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:49.571Z","{""url"":""https://twitter.com/24745957/status/1853799439204598265""}","{""url"":""https://x.com/RepHankJohnson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853843955571470743","RepJamesClyburn","James E. Clyburn","Need a ride to the polls? + +Uber and Lyft are offering discounted trips to polling places today. + +Use the code VOTE24 in the Lyft app or select the Go Vote! tile in the Services section of the Uber app to claim your discount.","2024-11-05T16:56:56.000Z",,"https://x.com/RepJamesClyburn/status/1853843955571470743","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,263,361,9184,,,174889,"U.S. Congressman representing South Carolina's 6th Congressional District.",7935,"https://pbs.twimg.com/profile_images/1267838155870425096/625WvoOD_normal.jpg",1734,false,4,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:49.675Z","{""url"":""https://twitter.com/188019606/status/1853843955571470743""}","{""url"":""https://x.com/RepJamesClyburn"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853792700895518777","RepLBR","Rep. Lisa Blunt Rochester","Hey Delaware - reminder that TODAY is Election Day! Polls are open until 8:00 pm. 🗳️ + +If you're waiting in line when polls close, you have the right to stay in line for as long as it takes to cast your ballot. + +Find your polling location at","2024-11-05T13:33:16.000Z","[""https://pbs.twimg.com/media/Gbn-osgWgAAv-5b.jpg""]","https://x.com/RepLBR/status/1853792700895518777","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,8,27,1175,"http://ivote.de.gov/",,30306,"Official Twitter page for U.S. Representative Lisa Blunt Rochester (D-DE).",4732,"https://pbs.twimg.com/profile_images/1501975438721171465/QnpNT0vZ_normal.jpg",582,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:49.943Z","{""url"":""https://twitter.com/817050219007328258/status/1853792700895518777""}","{""url"":""https://x.com/RepLBR"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842914620715104","RepDwightEvans","Congressman Dwight Evans","Please rely on your local or state elections offices for real information today. And for future reference, no such thing as “voting remotely”.","2024-11-05T16:52:48.000Z",,"https://x.com/RepDwightEvans/status/1853842914620715104","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""60876782"",""profile_name"":""Gabriel Sterling"",""url"":""https://x.com/GabrielSterling"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,772,0,,,,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:50.173Z","{""url"":""https://twitter.com/90639372/status/1853842914620715104""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853871332015947902","RepMcGarvey","Rep. Morgan McGarvey","Starting TODAY, Kentucky households can apply for the Low-Income Home Energy Assistance Program (LIHEAP) Fall Subsidy. + +Applications will be accepted on a first-come, first-served basis through December 20—more info here:","2024-11-05T18:45:43.000Z","[""https://pbs.twimg.com/media/GbpF9ZPWsAEUrc6.jpg""]","https://x.com/RepMcGarvey/status/1853871332015947902","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,3,358,"https://bit.ly/4eglqSA",,7131,"Lifelong Louisvillian proudly serving #KY03 in Congress. Husband & father, dad band guitarist, bourbon fan 🥃 🎸 + +@VetAffairsDems & @HSBCDems",1425,"https://pbs.twimg.com/profile_images/1754515840710361088/CGeSQzes_normal.jpg",167,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:50.563Z","{""url"":""https://twitter.com/1610300298303787008/status/1853871332015947902""}","{""url"":""https://x.com/RepMcGarvey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853831115020120097","RepJimmyPanetta","Rep. Jimmy Panetta","Happy Election Day! It's 7 a.m. and the polls are OPEN until 8 p.m. tonight. Find your polling place at SITE or postmark your mail-in ballot by today. If you have any questions, contact our voter hotline at (800) 345-VOTE (8683). @NASSorg @CalCities @CSAC_Counties","2024-11-05T16:05:54.000Z",,"https://x.com/RepJimmyPanetta/status/1853831115020120097","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""24424732"",""profile_name"":""California Secretary of State"",""url"":""https://x.com/CASOSVote"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,55,0,,,,19745,"I am honored to represent California's new 19th congressional district in the U.S. House of Representatives.",10169,"https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg",655,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:51.435Z","{""url"":""https://twitter.com/796736612554117120/status/1853831115020120097""}","{""url"":""https://x.com/RepJimmyPanetta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853912926857666708","RepLaMalfa","Rep. Doug LaMalfa","The Biden-Harris Administration’s border crisis is spiraling, and no amount of rebranding can erase Vice President Kamala Harris’s role as “border czar.” Under her watch, they’ve bypassed Congress and exploited “parole” powers, originally meant for emergencies, to let in over 2.2 million noncitizens—including individuals from countries on the terrorist watchlist. + +This mass migration agenda is straining public resources and jeopardizing public safety, with preventable crimes now impacting Americans. We need real reforms to end this crisis and restore secure borders. It’s time for leadership that truly enforces our laws.","2024-11-05T21:31:00.000Z",,"https://x.com/RepLaMalfa/status/1853912926857666708","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,12,9,37,1528,,,29358,"Representing California’s First Congressional District, including Butte, Colusa, Glenn, Lassen, Modoc, Shasta, Siskiyou, Sutter, Tehama and Yuba Counties.",3199,"https://pbs.twimg.com/profile_images/532998035416969216/vtCyv9Ze_normal.jpeg",1021,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:51.600Z","{""url"":""https://twitter.com/1069124515/status/1853912926857666708""}","{""url"":""https://x.com/RepLaMalfa"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853906363711160512","RepMcCormick","Congressman Rich McCormick, MBA MD","House Republicans will always fight for free and fair elections. Voting is your responsibility, there is still time to cast your ballot.","2024-11-05T21:04:55.000Z",,"https://x.com/RepMcCormick/status/1853906363711160512","{""post_id"":""1853545553130385898"",""profile_id"":""HouseAdmin"",""profile_name"":""House Admin. Committee GOP"",""data_posted"":""2010-12-08T21:58:36.000Z"",""url"":""https://x.com/HouseAdmin/status/1853545553130385898"",""description"":""Today, Congressional staff are deployed all around the country to serve as Designated Congressional Election Observers.\n\nThis is the largest Election Observer Program in history. Check out where our Observers are located: https://t.co/pUUatvnpbe"",""photos"":[""https://pbs.twimg.com/media/GbkdwkKXkAIfhFn.jpg""],""videos"":null}",,5,2,14,1662,,,20332,"Dr. Rich McCormick is a decorated veteran and Emergency Room physician who proudly serves Georgia’s 6th District in the United States House of Representatives.",1718,"https://pbs.twimg.com/profile_images/1823430614004932608/Y5i_Gexb_normal.jpg",654,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:52.367Z","{""url"":""https://twitter.com/1610689483929780225/status/1853906363711160512""}","{""url"":""https://x.com/RepMcCormick"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853882946270236814","RepDwightEvans","Congressman Dwight Evans","By instituting a national abortion ban and tracking women’s pregnancies, Project 2025 would kill women. + +In the last video of our series @RepLoisFrankel @RepJudyChu @RepKManning @RepBeccaB @RepJasmine @PPact and I discuss the plan to end reproductive rights.","2024-11-05T19:31:52.000Z",,"https://x.com/RepDwightEvans/status/1853882946270236814","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1610019555371372544"",""profile_name"":""Rep. Dan Goldman"",""url"":""https://x.com/RepDanGoldman"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,799,0,,,,21064,"Representing the 3rd Congressional District in PA. Making Ideas Matter since 1980.",39478,"https://pbs.twimg.com/profile_images/1715480566080897024/oPBQNrlo_normal.jpg",3520,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:52.880Z","{""url"":""https://twitter.com/90639372/status/1853882946270236814""}","{""url"":""https://x.com/RepDwightEvans"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853785147759313255","RepJerryCarl","Rep. Jerry Carl","Polls are now open in Alabama, so please go and make your voice heard! #USElection2024","2024-11-05T13:03:15.000Z",,"https://x.com/RepJerryCarl/status/1853785147759313255","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,2,15,774,,"[""USElection2024""]",9278,"I’m proud to represent Alabama’s 1st Congressional District in Congress. Currently serving on @HouseAppropsGOP and @NatResources.",1601,"https://pbs.twimg.com/profile_images/1376689116935491587/BmQgyV9E_normal.jpg",818,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:54.029Z","{""url"":""https://twitter.com/1341091420439015424/status/1853785147759313255""}","{""url"":""https://x.com/RepJerryCarl"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853891284152545600","RepMikeQuigley","Mike Quigley","Your vote is your voice. Today, I encourage everyone in Illinois' 5th District and around the country to head to the polls and make your voice heard! + +Find your polling place here:","2024-11-05T20:05:00.000Z",,"https://x.com/RepMikeQuigley/status/1853891284152545600","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,2,5,777,"https://ova.elections.il.gov/PollingPlaceLookup.aspx",,51438,"Representing Illinois' 5th District. House Appropriator & head Dem on THUD Sub, amateur hockey player, proud Cubs fan. He/Him.",20280,"https://pbs.twimg.com/profile_images/1409558160130592770/kWo2RAZJ_normal.jpg",1786,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:55.484Z","{""url"":""https://twitter.com/56864092/status/1853891284152545600""}","{""url"":""https://x.com/RepMikeQuigley"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853790872393097474","RepJasmine","Congresswoman Jasmine Crockett","Happy Election Day! Our elections offer Americans the opportunity to make their voice heard. Go vote!","2024-11-05T13:26:00.000Z","[""https://pbs.twimg.com/media/GbkNueBWwAAzX4u.jpg""]","https://x.com/RepJasmine/status/1853790872393097474","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,36,139,711,7538,,,119201,"Former public defender, now proudly serving the people of Texas’ 30th District. @OversightDems & @HouseAgDems. Posts are made by staff unless denoted w/ CWC",3297,"https://pbs.twimg.com/profile_images/1609977932109287428/77FJIj1C_normal.jpg",854,false,3,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:56.647Z","{""url"":""https://twitter.com/1609974443631157248/status/1853790872393097474""}","{""url"":""https://x.com/RepJasmine"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853854710744097170","RepMikeGarcia","Rep. Mike Garcia","Californians: Today is Election Day. +Polls are open until 8 PM. + +For information on your polling location and other voting details, visit","2024-11-05T17:39:40.000Z","[""https://pbs.twimg.com/media/Gbo3CNYXcAAAF0O.jpg""]","https://x.com/RepMikeGarcia/status/1853854710744097170","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,22,9,26,1346,"http://locator.lavote.gov/","[""CA27""]",15902,"Representing California's 27th Congressional District. Husband. Father. Former Navy Fighter Pilot. Businessman. @HouseAppropsGOP, @HouseIntel & @Housescience.",3110,"https://pbs.twimg.com/profile_images/1844388787222347783/wZgSOovk_normal.jpg",547,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:56.704Z","{""url"":""https://twitter.com/1262531473057423361/status/1853854710744097170""}","{""url"":""https://x.com/RepMikeGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842014388773216","RepEliCrane","Rep. Eli Crane","Congress may be in recess, but the work doesn't stop for my team. + +We introduced the Legacy Mine Cleanup Act, which would help ensure timely cleanup & increased congressional oversight of the process. + +This is a win for the health & safety of rural AZ 👊🏻 +https://t.co/3wR07RBD1v","2024-11-05T16:49:13.000Z",,"https://x.com/RepEliCrane/status/1853842014388773216","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,15,39,216,3131,"https://crane.house.gov/2024/10/23/crane-introduces-bipartisan-bill-to-cleanup-abandoned-mines-bolstering-public-safety-in-rural-arizona/",,80544,"Former Navy SEAL 🇺🇸 Proudly serving Arizona's 2nd Congressional District in Congress. @HomelandGOP, @HouseVetAffairs, @HouseSmallBiz & @FreedomCaucus",4557,"https://pbs.twimg.com/profile_images/1633488230690484227/Isj-2-Lc_normal.jpg",291,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851762293052178432/l8neRlWF?format=jpg&name=orig""]",,"2024-11-06T04:14:57.047Z","{""url"":""https://twitter.com/1608891205902794753/status/1853842014388773216""}","{""url"":""https://x.com/RepEliCrane"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815122235376107","RepMikeGarcia","Rep. Mike Garcia","Our veterans deserve action, not empty promises. Here’s what I’ve delivered: + +✅ My VA Supplemental Bill – fully funded the VA to prevent a funding crisis +✅ New 20,000 sq. ft. VA Clinic in Antelope Valley – bringing full-service care closer to home, opening September 2025 +✅ Major Richard Star Act – secures full retirement benefits for disabled veterans +✅ Veterans’ Education is Timeless Act – protects education benefits for those who served +✅ VA Same Day Scheduling Act – cuts down wait times for critical care +✅ Elizabeth Dole Homecare Act – provides vital support for veteran caregivers + +I will always fight to ensure our heroes get the respect and care they’ve earned.","2024-11-05T15:02:22.000Z",,"https://x.com/RepMikeGarcia/status/1853815122235376107","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,17,5,28,1202,,,15902,"Representing California's 27th Congressional District. Husband. Father. Former Navy Fighter Pilot. Businessman. @HouseAppropsGOP, @HouseIntel & @Housescience.",3110,"https://pbs.twimg.com/profile_images/1844388787222347783/wZgSOovk_normal.jpg",547,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:57.156Z","{""url"":""https://twitter.com/1262531473057423361/status/1853815122235376107""}","{""url"":""https://x.com/RepMikeGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853833402652537212","RepJimBaird","Congressman Jim Baird","More Americans are living paycheck to paycheck due to failed #Kamalanomics. + +We must return to President Trump's pro-growth policies and bring back economic prosperity!","2024-11-05T16:15:00.000Z",,"https://x.com/RepJimBaird/status/1853833402652537212","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,1,6,329,"https://www.foxbusiness.com/economy/more-americans-living-paycheck-paycheck-than-5-years-ago-bank-america-data-shows","[""Kamalanomics""]",10784,"Lifelong Hoosier proudly representing the 4th Congressional District.",1979,"https://pbs.twimg.com/profile_images/1086318018630746113/kobDQry9_normal.jpg",522,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1852935924142817280/ldnFDrkB?format=jpg&name=orig""]",,"2024-11-06T04:14:57.251Z","{""url"":""https://twitter.com/1086316494450032640/status/1853833402652537212""}","{""url"":""https://x.com/RepJimBaird"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853882477443535136","RepJimmyPanetta","Rep. Jimmy Panetta","Always good to engage with high school students to talk about public service and giving back to our community.","2024-11-05T19:30:00.000Z","[""https://pbs.twimg.com/media/GbojWpmXgAA5uE5.jpg"",""https://pbs.twimg.com/media/GbojX5QWsAApD7e.jpg""]","https://x.com/RepJimmyPanetta/status/1853882477443535136","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,1,4,415,,,19744,"I am honored to represent California's new 19th congressional district in the U.S. House of Representatives.",10169,"https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg",655,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:57.521Z","{""url"":""https://twitter.com/796736612554117120/status/1853882477443535136""}","{""url"":""https://x.com/RepJimmyPanetta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853767391316000779","RepMikeCollins","Rep. Mike Collins","On #ThisDayInHistory in 1940, Franklin D. Roosevelt was elected to an unprecedented third term as President of the United States, becoming the first U.S. president in history to win more than two terms in office. + +Roosevelt, who had already served as president for nearly eight years, defeated his Republican opponent by a wide margin, securing 84.5% of the electoral vote. His victory reflected the continued public support for his leadership during one of the most challenging periods in American history. + +FDR's presidency was marked by bold and transformative actions aimed at addressing the Great Depression and guiding the nation through the early years of World War II. Under his New Deal programs, Roosevelt introduced groundbreaking economic reforms, including Social Security, labor rights protections, and public works projects, which sought to provide relief, recovery, and reform to a country devastated by economic collapse. + +As he campaigned for his third term in 1940, Roosevelt was also faced with the growing threat of global conflict. World War II was already raging in Europe, and Roosevelt had begun to prepare the U.S. for its eventual involvement, despite widespread isolationist sentiment at home. + +Roosevelt's third term would prove to be pivotal, as the United States officially entered World War II in December 1941, following the Japanese attack on Pearl Harbor. Roosevelt's leadership during the war would shape not only the future of the United States but also the world order in the post-war era. + +FDR's election for a third term marked a significant moment in U.S. history, signaling the nation's confidence in his ability to navigate turbulent times. His continued presidency, however, also sparked debates about presidential term limits, leading to the eventual passage of the 22nd Amendment in 1951, which formally restricted U.S. presidents to two terms in office.","2024-11-05T11:52:42.000Z","[""https://pbs.twimg.com/media/Gbnnnd1XgAAVdoO.jpg""]","https://x.com/RepMikeCollins/status/1853767391316000779","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,1,25,2514,,"[""ThisDayInHistory""]",52428,"Trucking | Pilot | Proudly serving GA-10 | Member of @TransportGOP, @NatResources, & @housescience | Come for the memes, stay for the policy",4886,"https://pbs.twimg.com/profile_images/1779858389230637056/aKykYRnr_normal.jpg",431,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:57.537Z","{""url"":""https://twitter.com/1601030771124408325/status/1853767391316000779""}","{""url"":""https://x.com/RepMikeCollins"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853850341785104817","repcleaver","Rep. Emanuel Cleaver","It’s Election Day, Missouri! + +Our democracy is only as strong as those who participate—which is why it’s essential you make your voice heard TODAY! + +Polls are open until 7 pm. Find a polling place near you here:","2024-11-05T17:22:19.000Z",,"https://x.com/repcleaver/status/1853850341785104817","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,7,30,880,"https://www.sos.mo.gov/elections/goVoteMissouri",,49769,"This is the official Twitter page of Congressman Emanuel Cleaver, II, representing Missouri's Fifth District.",13774,"https://pbs.twimg.com/profile_images/1351973559481094148/77_khClK_normal.jpg",1237,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:57.549Z","{""url"":""https://twitter.com/163570705/status/1853850341785104817""}","{""url"":""https://x.com/repcleaver"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853966316077453808","RepGabeVasquez","Rep. Gabe Vasquez","New Mexico, you still have time to make your voice heard! Polls close at 7pm. + +🚨Remember: if you are in line, stay in line.","2024-11-06T01:03:09.000Z",,"https://x.com/RepGabeVasquez/status/1853966316077453808","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,12,46,135,3055,,,5785,"Congressman for NM-02. 1st-gen Mexican American. Conservationist. Member of @HouseAgDems and @HASCDemocrats.",1101,"https://pbs.twimg.com/profile_images/1610534536286441473/88MWAV-X_normal.jpg",276,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:57.750Z","{""url"":""https://twitter.com/1610096539577487360/status/1853966316077453808""}","{""url"":""https://x.com/RepGabeVasquez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853879959074529766","RepHankJohnson","Rep. Hank Johnson","Last week our team hosted @RepHankJohnson at the Georgia BioScience Training Center. We engaged in meaningful conversation around GA’s #lifesciences sector, the importance of investing in a well-trained workforce, & the critical need for IP protections.","2024-11-05T19:20:00.000Z",,"https://x.com/RepHankJohnson/status/1853879959074529766","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""40000004"",""profile_name"":""Georgia Bio"",""url"":""https://x.com/Georgia_Bio"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""24745957"",""profile_name"":""Rep. Hank Johnson"",""url"":""https://x.com/RepHankJohnson"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,3,0,,,,56649,"Father | Husband | Congressman for #GA04 | Ranking Member on @housejudiciary Subcommittee on Courts | Senior Member on @transportdems",9834,"https://pbs.twimg.com/profile_images/1379794059557015556/_4ZOU0zP_normal.jpg",1748,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853454422522662912/w9EYvNtG?format=jpg&name=orig""]",,"2024-11-06T04:14:57.856Z","{""url"":""https://twitter.com/24745957/status/1853879959074529766""}","{""url"":""https://x.com/RepHankJohnson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853794647165788281","RepMikeQuigley","Mike Quigley","Today is #ElectionDay and the last day to make your voice heard in the 2024 election. Find your polling place now:","2024-11-05T13:41:00.000Z",,"https://x.com/RepMikeQuigley/status/1853794647165788281","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,7,11,783,"https://ova.elections.il.gov/PollingPlaceLookup.aspx","[""ElectionDay""]",51438,"Representing Illinois' 5th District. House Appropriator & head Dem on THUD Sub, amateur hockey player, proud Cubs fan. He/Him.",20280,"https://pbs.twimg.com/profile_images/1409558160130592770/kWo2RAZJ_normal.jpg",1786,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:57.963Z","{""url"":""https://twitter.com/56864092/status/1853794647165788281""}","{""url"":""https://x.com/RepMikeQuigley"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853879543708193176","RepGabeVasquez","Rep. Gabe Vasquez","My Lower Costs Plan will make a difference for New Mexicans, putting an average of $900 back into your wallets. + +Working to lower costs isn’t just policy—it’s about real relief for hard-working families.","2024-11-05T19:18:21.000Z",,"https://x.com/RepGabeVasquez/status/1853879543708193176","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,7,24,805,,,5785,"Congressman for NM-02. 1st-gen Mexican American. Conservationist. Member of @HouseAgDems and @HASCDemocrats.",1101,"https://pbs.twimg.com/profile_images/1610534536286441473/88MWAV-X_normal.jpg",276,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:58.140Z","{""url"":""https://twitter.com/1610096539577487360/status/1853879543708193176""}","{""url"":""https://x.com/RepGabeVasquez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815405908742324","RepFinstad","Congressman Brad Finstad","Today is Election Day! As American citizens, we are blessed with the constitutional right to vote for the future of our country. Cast your ballot and make your voice heard. Find your polling place here:","2024-11-05T15:03:29.000Z",,"https://x.com/RepFinstad/status/1853815405908742324","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,6,10,2957,"https://pollfinder.sos.state.mn.us/",,3333,"Official Twitter account for U.S. Congressman Brad Finstad, proudly representing Minnesota's First District.",996,"https://pbs.twimg.com/profile_images/1573405551647928320/37d4fy7d_normal.jpg",153,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:59.613Z","{""url"":""https://twitter.com/1563316176717246464/status/1853815405908742324""}","{""url"":""https://x.com/RepFinstad"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799591428108741","RepFeenstra","Rep. Randy Feenstra","Get out and VOTE!","2024-11-05T14:00:39.000Z",,"https://x.com/RepFeenstra/status/1853799591428108741","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,7,42,1033,,,16489,"Husband. Father. Conservative Republican. Delivering results for the people of #IA04 on @WaysandMeansGOP and @HouseAgGOP.",6799,"https://pbs.twimg.com/profile_images/1345385050683142144/uLQ4buVG_normal.jpg",563,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:14:59.759Z","{""url"":""https://twitter.com/1345135363761852416/status/1853799591428108741""}","{""url"":""https://x.com/RepFeenstra"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853824885480472956","RepCori","Congresswoman Cori Bush","St. Louis, TODAY is Election Day. + +Polls are open until 7 PM. Visit","2024-11-05T15:41:09.000Z",,"https://x.com/RepCori/status/1853824885480472956","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,16,58,5989,"http://sos.mo.gov/elections",,136665,"Doing the most for MO-01 (STL)—starting with those with the greatest need. Politician + Activist = Politivist. Member, @HouseJudiciary, @OversightDems. She/her.",3363,"https://pbs.twimg.com/profile_images/1352693777895485457/hGX2jRBe_normal.jpg",300,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:00.231Z","{""url"":""https://twitter.com/1002630999052865536/status/1853824885480472956""}","{""url"":""https://x.com/RepCori"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853809240307012041","RepFeenstra","Rep. Randy Feenstra","It's General Election day and polls are officially OPEN! Iowans have until 8:00 pm to be in line at the polls to cast their vote. If you are in line by 8:00 pm, stay in line, you will be able to fill out and submit a ballot. Make your voice heard today, Iowans.","2024-11-05T14:38:59.000Z",,"https://x.com/RepFeenstra/status/1853809240307012041","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""293665387"",""profile_name"":""Iowa Secretary of State Paul Pate"",""url"":""https://x.com/IowaSOS"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,6,0,,,,16489,"Husband. Father. Conservative Republican. Delivering results for the people of #IA04 on @WaysandMeansGOP and @HouseAgGOP.",6799,"https://pbs.twimg.com/profile_images/1345385050683142144/uLQ4buVG_normal.jpg",563,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:00.347Z","{""url"":""https://twitter.com/1345135363761852416/status/1853809240307012041""}","{""url"":""https://x.com/RepFeenstra"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853784334588686373","RepGlennIvey","Rep. Glenn Ivey","Happy Election Day! Your vote is your voice. 🗣 + +Today, I encourage everyone to head to the polls and make your voice heard! Go vote!","2024-11-05T13:00:01.000Z","[""https://pbs.twimg.com/media/Gbk935gWAAE05h9.jpg""]","https://x.com/RepGlennIvey/status/1853784334588686373","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,7,240,,,4220,"The official account of Congressman Glenn Ivey. Proudly serving #MD04 on @HouseJudiciary and @HomelandDems.",1321,"https://pbs.twimg.com/profile_images/1678850763676606464/_LXxmM83_normal.jpg",1905,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:00.544Z","{""url"":""https://twitter.com/1610111693836664834/status/1853784334588686373""}","{""url"":""https://x.com/RepGlennIvey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853854717144883526","RepJasmine","Congresswoman Jasmine Crockett","Statement from Ranking Member @jahimes: I would urge all Americans to be cautious about what they may read or see on social media with the knowledge that foreign adversaries are intentionally amplifying lies in order to damage the United States.","2024-11-05T17:39:42.000Z",,"https://x.com/RepJasmine/status/1853854717144883526","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1079854463211397120"",""profile_name"":""House Intelligence Committee"",""url"":""https://x.com/HouseIntelDems"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""31611298"",""profile_name"":""Jim Himes 🇺🇸🇺🇸🇺🇦🇺🇦"",""url"":""https://x.com/jahimes"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,163,0,,,,119162,"Former public defender, now proudly serving the people of Texas’ 30th District. @OversightDems & @HouseAgDems. Posts are made by staff unless denoted w/ CWC",3297,"https://pbs.twimg.com/profile_images/1609977932109287428/77FJIj1C_normal.jpg",854,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:00.717Z","{""url"":""https://twitter.com/1609974443631157248/status/1853854717144883526""}","{""url"":""https://x.com/RepJasmine"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853630862035743104","RepMikeLawler","Congressman Mike Lawler","It was good joining VFW #9257, AMVETS 2017, and VFW Auxiliary Post #9257 at breakfast in Patterson yesterday morning. Thank you for all you do for our hometown heroes, and God bless all who have served.","2024-11-05T02:50:10.000Z","[""https://pbs.twimg.com/media/GblrccsW8AAnK9x.jpg"",""https://pbs.twimg.com/media/GblrcctW8AA7Eag.jpg"",""https://pbs.twimg.com/media/GblrcctW0AAIPqC.jpg"",""https://pbs.twimg.com/media/GblrccuXsAA1pQM.jpg""]","https://x.com/RepMikeLawler/status/1853630862035743104","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,63,1,14,978,,,14670,"Proudly serving New York’s 17th District | Member @FinancialCmte and @HouseForeignGOP | Husband, father, small businessman | Former NYS Assemblyman",4122,"https://pbs.twimg.com/profile_images/1625187685227761664/r-LNjKpP_normal.jpg",675,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:01.075Z","{""url"":""https://twitter.com/1590372047015886853/status/1853630862035743104""}","{""url"":""https://x.com/RepMikeLawler"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853901409273495604","RepCohen","Steve Cohen","Kamala has practiced the politics of joy while Trump is the politics of oy! Joy always wins over oy!! +That’s the only analysis you need. Listen to MSNBC and CNN all you want. They won’t get it any more clearly. Choice, the border, the economy, all influenced the vote, but the undecided that made the difference joy over oy!!","2024-11-05T20:45:14.000Z","[""https://pbs.twimg.com/media/GbphgcPWsAEX79a.png""]","https://x.com/RepCohen/status/1853901409273495604","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,5,33,1812,,,87615,"Memphis | Ranking Member of Aviation Subcommittee | Champion for Justice and Civil Rights on Judiciary Committee | House Ranking Member of Helsinki Commission",17177,"https://pbs.twimg.com/profile_images/1268243438308376586/CmkJQcsJ_normal.jpg",6935,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:01.298Z","{""url"":""https://twitter.com/162069635/status/1853901409273495604""}","{""url"":""https://x.com/RepCohen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853812091943092455","RepMaxineWaters","Maxine Waters","Today is National General #ElectionDay ! Elections are the hallmark of our democracy. Every eligible individual has an opportunity to make their decisions about whom they support or not support. We must all vote as if our very lives depend on it. Let’s make our voices heard! Vote! Vote! Vote!","2024-11-05T14:50:19.000Z",,"https://x.com/RepMaxineWaters/status/1853812091943092455","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,63,91,379,15585,,"[""ElectionDay""]",1570536,"Proudly serving the people of California's 43rd District in Congress. Ranking Member of the House Financial Services Committee (@FSCDems).",3720,"https://pbs.twimg.com/profile_images/851658655036583937/Jy4zSIar_normal.jpg",682,false,4,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:01.342Z","{""url"":""https://twitter.com/36686040/status/1853812091943092455""}","{""url"":""https://x.com/RepMaxineWaters"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853781879947747626","RepDWStweets","Rep. Debbie Wasserman Schultz","TODAY is Election Day! Florida, let’s get out and #VOTE. Polls are open from 7 AM until 7 PM. + +Reproductive freedom, gun safety, affordable health care & more are on the ballot but you have to vote to make your voice heard. + +Find your voting site here 👇","2024-11-05T12:50:16.000Z",,"https://x.com/RepDWStweets/status/1853781879947747626","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,2,5,383,"https://browardvotes.gov/voter-information/precinct-finder","[""VOTE""]",24191,"U.S. Congresswoman proudly representing the people of Florida's 25th District in our nation's capital. Text me: 954-866-9444",9464,"https://pbs.twimg.com/profile_images/1217104542837460992/1CZNbVP9_normal.png",2508,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:01.593Z","{""url"":""https://twitter.com/1140648348/status/1853781879947747626""}","{""url"":""https://x.com/RepDWStweets"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853920229367382107","RepJimmyPanetta","Rep. Jimmy Panetta","Proud to secure federal investment in the work of local orgs bolstering climate resilience. This funding will support vital projects that prepare us for future challenges, from flood and fire risk reduction to workforce development.","2024-11-05T22:00:01.000Z",,"https://x.com/RepJimmyPanetta/status/1853920229367382107","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,2,4,249,"https://www.santacruzworks.org/news/kickoff-celebration-cmsfs-noaa-grant-and-creating-coastal-resiliency",,19744,"I am honored to represent California's new 19th congressional district in the U.S. House of Representatives.",10169,"https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg",655,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:02.239Z","{""url"":""https://twitter.com/796736612554117120/status/1853920229367382107""}","{""url"":""https://x.com/RepJimmyPanetta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853926538518872083","RepJamesClyburn","James E. Clyburn","South Carolina polling places are open until 7 PM. If you're in line by 7 PM, you will be allowed to cast your ballot. + +Voters must present a valid photo ID. + +For more information about your voting rights, visit","2024-11-05T22:25:05.000Z",,"https://x.com/RepJamesClyburn/status/1853926538518872083","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,54,118,2958,"http://scvotes.org/",,174887,"U.S. Congressman representing South Carolina's 6th Congressional District.",7935,"https://pbs.twimg.com/profile_images/1267838155870425096/625WvoOD_normal.jpg",1734,false,0,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:02.527Z","{""url"":""https://twitter.com/188019606/status/1853926538518872083""}","{""url"":""https://x.com/RepJamesClyburn"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853610685604978870","RepJimmyPanetta","Rep. Jimmy Panetta","A meaningful conversation with our local faith leaders about the vital role that faith communities play in supporting our neighbors and strengthening our sense of unity.","2024-11-05T01:30:00.000Z","[""https://pbs.twimg.com/media/GbkSGmqWcAIuRmK.jpg"",""https://pbs.twimg.com/media/GbkSHWuW4AE5NlI.jpg"",""https://pbs.twimg.com/media/GbkSIGfWYAAmXGr.jpg""]","https://x.com/RepJimmyPanetta/status/1853610685604978870","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,1,4,380,,,19744,"I am honored to represent California's new 19th congressional district in the U.S. House of Representatives.",10169,"https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg",655,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:03.011Z","{""url"":""https://twitter.com/796736612554117120/status/1853610685604978870""}","{""url"":""https://x.com/RepJimmyPanetta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853796660595618279","RepEricSorensen","Congressman Eric Sorensen","TODAY is Election Day! 🇺🇸 + +Find your polling place and information on how to vote at","2024-11-05T13:49:00.000Z",,"https://x.com/RepEricSorensen/status/1853796660595618279","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,1,10,255,"https://www.elections.il.gov/",,4201,"Your trusted neighbor in Congress. Meteorologist representing Central and Northwestern Illinois. #IL17 🌤️ | @HouseAgDems 🌾 & @ScienceDems 🔬",1078,"https://pbs.twimg.com/profile_images/1612832862146813960/qNdZL6P3_normal.jpg",419,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:04.276Z","{""url"":""https://twitter.com/1611441794704674828/status/1853796660595618279""}","{""url"":""https://x.com/RepEricSorensen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853786804303851547","RepLangworthy","Congressman Nick Langworthy","Today is Election Day — make sure your voice is heard and cast your vote! + +Polls in New York State are open until 9 PM! #ElectionDay","2024-11-05T13:09:50.000Z","[""https://pbs.twimg.com/media/Gbn5QJVWoAEVbrQ.jpg""]","https://x.com/RepLangworthy/status/1853786804303851547","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,1,8,503,,"[""ElectionDay""]",7372,"Proudly representing Western New York & the Southern Tier in Congress (NY-23). Luckiest dad of 2 & husband. #BillsMafia for life.",2280,"https://pbs.twimg.com/profile_images/1800951962046799872/Ofv2c3bJ_normal.jpg",1093,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:04.490Z","{""url"":""https://twitter.com/1611396007111057408/status/1853786804303851547""}","{""url"":""https://x.com/RepLangworthy"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853846581268619560","RepJimmyPanetta","Rep. Jimmy Panetta","The opening of the Soquel Creek Water Advanced Purification Center marks a milestone in ensuring our region’s water security. Grateful for our partnership at all levels of government to fortify our water systems and protect this essential resource.","2024-11-05T17:07:22.000Z",,"https://x.com/RepJimmyPanetta/status/1853846581268619560","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""796736612554117120"",""profile_name"":""Rep. Jimmy Panetta"",""url"":""https://x.com/RepJimmyPanetta"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,2,0,,,,19745,"I am honored to represent California's new 19th congressional district in the U.S. House of Representatives.",10169,"https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg",655,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:04.545Z","{""url"":""https://twitter.com/796736612554117120/status/1853846581268619560""}","{""url"":""https://x.com/RepJimmyPanetta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853880748635476439","RepEliCrane","Rep. Eli Crane","I joined a bipartisan coalition to pass the Veteran Improvement Commercial Driver License Act of 2024. + +This bill allows veterans to use their GI benefits on commercial driver’s license educational programs & nullifies obstructive red tape. + +Awesome to see this signed into law ✅","2024-11-05T19:23:08.000Z",,"https://x.com/RepEliCrane/status/1853880748635476439","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,24,121,744,9229,,,80544,"Former Navy SEAL 🇺🇸 Proudly serving Arizona's 2nd Congressional District in Congress. @HomelandGOP, @HouseVetAffairs, @HouseSmallBiz & @FreedomCaucus",4557,"https://pbs.twimg.com/profile_images/1633488230690484227/Isj-2-Lc_normal.jpg",291,false,7,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:04.682Z","{""url"":""https://twitter.com/1608891205902794753/status/1853880748635476439""}","{""url"":""https://x.com/RepEliCrane"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853803204087038078","RepDavids","Rep. Sharice Davids","Today is Election Day. Polls are open today until 7pm. For information on polling locations and more, visit","2024-11-05T14:15:00.000Z",,"https://x.com/RepDavids/status/1853803204087038078","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,12,31,1331,"https://www.sos.ks.gov/",,68419,"Proud to represent #KS03 in the United States Congress.",4474,"https://pbs.twimg.com/profile_images/1410976412337639428/gCnNW9Oj_normal.jpg",414,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:06.060Z","{""url"":""https://twitter.com/1080516116395499522/status/1853803204087038078""}","{""url"":""https://x.com/RepDavids"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853883460752216504","RepEliCrane","Rep. Eli Crane","Reforming a broken system is never easy, but I will continue to use my voice, vote, and platform to fight for our values and principles. + +Remember that America is always worth fighting for. +https://t.co/mWzwdBPX6i","2024-11-05T19:33:55.000Z",,"https://x.com/RepEliCrane/status/1853883460752216504","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,30,164,2898,"https://www.paysonroundup.com/opinion/holding-the-liine-for-gila-county/article_2b7704e6-97fd-11ef-9ea7-23ca851b3a9b.html",,80544,"Former Navy SEAL 🇺🇸 Proudly serving Arizona's 2nd Congressional District in Congress. @HomelandGOP, @HouseVetAffairs, @HouseSmallBiz & @FreedomCaucus",4557,"https://pbs.twimg.com/profile_images/1633488230690484227/Isj-2-Lc_normal.jpg",291,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853283327886659584/to6xQoJs?format=jpg&name=orig""]",,"2024-11-06T04:15:06.987Z","{""url"":""https://twitter.com/1608891205902794753/status/1853883460752216504""}","{""url"":""https://x.com/RepEliCrane"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853673240977113279","RepMikeCollins","Rep. Mike Collins","Goodnight 🤞","2024-11-05T05:38:34.000Z","[""https://pbs.twimg.com/media/GbmR_KTWcAA2tw-.jpg""]","https://x.com/RepMikeCollins/status/1853673240977113279","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,33,516,8176,,,52428,"Trucking | Pilot | Proudly serving GA-10 | Member of @TransportGOP, @NatResources, & @housescience | Come for the memes, stay for the policy",4886,"https://pbs.twimg.com/profile_images/1779858389230637056/aKykYRnr_normal.jpg",431,false,0,9,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:07.025Z","{""url"":""https://twitter.com/1601030771124408325/status/1853673240977113279""}","{""url"":""https://x.com/RepMikeCollins"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853827673681985642","RepFeenstra","Rep. Randy Feenstra","President Biden and Vice President Harris OPENED our border. + +As a result, terrorists, drug traffickers, and millions of illegal immigrants crossed our border. + +We need border security NOW!","2024-11-05T15:52:14.000Z",,"https://x.com/RepFeenstra/status/1853827673681985642","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,8,23,1168,,,16489,"Husband. Father. Conservative Republican. Delivering results for the people of #IA04 on @WaysandMeansGOP and @HouseAgGOP.",6799,"https://pbs.twimg.com/profile_images/1345385050683142144/uLQ4buVG_normal.jpg",563,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:07.278Z","{""url"":""https://twitter.com/1345135363761852416/status/1853827673681985642""}","{""url"":""https://x.com/RepFeenstra"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853972969015689258","RepCohen","Steve Cohen","Though no results have been announced I am declaring victory in Tennessee 9 and thanking the voters for keeping goin with Cohen.I look forward to serving in a Democratic House with Speaker Jeffries and in a USA with President Kamala Harris and Veep Tim Walz!🇺🇸","2024-11-06T01:29:35.000Z",,"https://x.com/RepCohen/status/1853972969015689258","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,27,276,11128,,,87615,"Memphis | Ranking Member of Aviation Subcommittee | Champion for Justice and Civil Rights on Judiciary Committee | House Ranking Member of Helsinki Commission",17177,"https://pbs.twimg.com/profile_images/1268243438308376586/CmkJQcsJ_normal.jpg",6935,false,1,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:07.778Z","{""url"":""https://twitter.com/162069635/status/1853972969015689258""}","{""url"":""https://x.com/RepCohen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853818878285225998","RepEspaillat","Adriano Espaillat","If you or someone you know experiences election-related problems voting today, call the Office of the Attorney General’s hotline at (866) 390-2992, or submit a complaint online to request assistance. +  +The telephone hotline will be open between 6:00 AM and 9:00 PM today on Election Day, Tuesday, November 5.","2024-11-05T15:17:17.000Z","[""https://pbs.twimg.com/media/GboWcb9WQAA_1OA.jpg""]","https://x.com/RepEspaillat/status/1853818878285225998","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,4,8,2302,,,37029,"Former undocumented immigrant turned progressive Congressman. Fighting #ForThePeople of NY-13. 💪🏽",23157,"https://pbs.twimg.com/profile_images/1664857509658603520/jdvB_yl1_normal.jpg",2444,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:08.179Z","{""url"":""https://twitter.com/817076257770835968/status/1853818878285225998""}","{""url"":""https://x.com/RepEspaillat"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853881324760703353","RepDWStweets","Rep. Debbie Wasserman Schultz","I work non-stop in Washington to make your life better and our entire community stronger and healthier. Stay informed with what I’m working on by subscribing to my newsletter.","2024-11-05T19:25:25.000Z","[""https://pbs.twimg.com/media/GbpPPIFXgAAWN9N.jpg""]","https://x.com/RepDWStweets/status/1853881324760703353","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,3,8,434,"https://wassermanschultz.house.gov/forms/form/?ID=1",,24191,"U.S. Congresswoman proudly representing the people of Florida's 25th District in our nation's capital. Text me: 954-866-9444",9464,"https://pbs.twimg.com/profile_images/1217104542837460992/1CZNbVP9_normal.png",2508,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:08.559Z","{""url"":""https://twitter.com/1140648348/status/1853881324760703353""}","{""url"":""https://x.com/RepDWStweets"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854011715874128149","RepMikeCollins","Rep. Mike Collins","Polymarket Trump bag holders right now","2024-11-06T04:03:33.000Z",,"https://x.com/RepMikeCollins/status/1854011715874128149","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,11,130,4619,,,52428,"Trucking | Pilot | Proudly serving GA-10 | Member of @TransportGOP, @NatResources, & @housescience | Come for the memes, stay for the policy",4886,"https://pbs.twimg.com/profile_images/1779858389230637056/aKykYRnr_normal.jpg",431,false,0,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1854011639894319105/vid/avc1/794x720/hMZhqsp8bXCbThGZ.mp4?tag=16"",""duration"":10123}]","2024-11-06T04:15:08.702Z","{""url"":""https://twitter.com/1601030771124408325/status/1854011715874128149""}","{""url"":""https://x.com/RepMikeCollins"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853591219500200384","RepMikeLawler","Congressman Mike Lawler","Yesterday, I attended the Haverstraw Fire Department's annual breakfast. It was good to see my partner in government, Town Supervisor Howie Phillips, and thank our brave first responders.","2024-11-05T00:12:39.000Z","[""https://pbs.twimg.com/media/GblHYjgWYAA6vBy.jpg"",""https://pbs.twimg.com/media/GblHYjiXEAA1BJa.jpg"",""https://pbs.twimg.com/media/GblHYjgW4AAPud1.jpg"",""https://pbs.twimg.com/media/GblHYjgW8AAzKKg.jpg""]","https://x.com/RepMikeLawler/status/1853591219500200384","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,1,20,877,,,14671,"Proudly serving New York’s 17th District | Member @FinancialCmte and @HouseForeignGOP | Husband, father, small businessman | Former NYS Assemblyman",4122,"https://pbs.twimg.com/profile_images/1625187685227761664/r-LNjKpP_normal.jpg",675,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:08.895Z","{""url"":""https://twitter.com/1590372047015886853/status/1853591219500200384""}","{""url"":""https://x.com/RepMikeLawler"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853994347298992215","RepCohen","Steve Cohen","Congratulations to Newtown Action Alliance endorsed @RepCohen for being projected to win Tennessee District 9 (AP News)","2024-11-06T02:54:32.000Z",,"https://x.com/RepCohen/status/1853994347298992215","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1148468052"",""profile_name"":""Newtown Action Alliance"",""url"":""https://x.com/NewtownAction"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""162069635"",""profile_name"":""Steve Cohen"",""url"":""https://x.com/RepCohen"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,12,0,,,,87617,"Memphis | Ranking Member of Aviation Subcommittee | Champion for Justice and Civil Rights on Judiciary Committee | House Ranking Member of Helsinki Commission",17177,"https://pbs.twimg.com/profile_images/1268243438308376586/CmkJQcsJ_normal.jpg",6935,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:09.452Z","{""url"":""https://twitter.com/162069635/status/1853994347298992215""}","{""url"":""https://x.com/RepCohen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853987022131855692","RepCohen","Steve Cohen","The FBI is aware of bomb threats to polling locations in several states, many of which appear to originate from Russian email domains. None of the threats have been determined to be credible thus far.","2024-11-06T02:25:26.000Z",,"https://x.com/RepCohen/status/1853987022131855692","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""17629860"",""profile_name"":""FBI"",""url"":""https://x.com/FBI"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,8381,0,,,,87615,"Memphis | Ranking Member of Aviation Subcommittee | Champion for Justice and Civil Rights on Judiciary Committee | House Ranking Member of Helsinki Commission",17177,"https://pbs.twimg.com/profile_images/1268243438308376586/CmkJQcsJ_normal.jpg",6935,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853876859856879616/XxpgHwPC?format=jpg&name=orig""]",,"2024-11-06T04:15:09.757Z","{""url"":""https://twitter.com/162069635/status/1853987022131855692""}","{""url"":""https://x.com/RepCohen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853866888771645884","RepJayapal","Rep. Pramila Jayapal","Today is the day. + +🗳️ VOTE 🗳️ +🗳️ VOTE 🗳️ +🗳️ VOTE 🗳️","2024-11-05T18:28:04.000Z",,"https://x.com/RepJayapal/status/1853866888771645884","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,30,50,280,8993,,,597237,"Congresswoman, lifelong organizer, mom. Proudly serving WA-07. Chair of @USProgressives, Member of @HouseJudiciary, @EdWorkforceDems. She/her.",33393,"https://pbs.twimg.com/profile_images/978268908057751552/LdIDc0tc_normal.jpg",2579,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:10.509Z","{""url"":""https://twitter.com/815733290955112448/status/1853866888771645884""}","{""url"":""https://x.com/RepJayapal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853798319555858860","RepCasar","Congressman Greg Casar","It’s Election Day, y’all! 🗳️ + +Learn more about what’s on your ballot and where to vote at:","2024-11-05T13:55:35.000Z",,"https://x.com/RepCasar/status/1853798319555858860","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,10,42,4550,"http://votetexas.gov/",,36218,"Congressman for Texas Congressional District 35 (#TX35), from East Austin to West San Antonio. Whip of @USProgressives. Grassroots labor organizer. he/him",1825,"https://pbs.twimg.com/profile_images/1610027549748301824/xIoU4Dov_normal.jpg",565,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:10.773Z","{""url"":""https://twitter.com/1499512178013057032/status/1853798319555858860""}","{""url"":""https://x.com/RepCasar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853830462088835573","RepJimmyGomez","Rep. Jimmy Gomez","We're fighting for housing people can actually afford. + +This year, I delivered $500,000 in federal funding to bring much-needed renovations to @HACLA's Pico Gardens and Las Casitas public housing sites in #BoyleHeights. This helps ensure all families get to live with dignity.🏡","2024-11-05T16:03:19.000Z","[""https://pbs.twimg.com/media/GbogSdSXUAAaMcp.jpg""]","https://x.com/RepJimmyGomez/status/1853830462088835573","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""32382972"",""profile_name"":""Harrison Clay"",""url"":""https://x.com/hacla"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,0,1,518,,"[""BoyleHeights""]",53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":""1853830459760771514"",""profile_id"":""2371339658"",""profile_name"":""RepJimmyGomez""}",,,"2024-11-06T04:15:10.902Z","{""url"":""https://twitter.com/2371339658/status/1853830462088835573""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853601353823596920","RepMikeCollins","Rep. Mike Collins","A U.S. soldier is dead because the Biden-Harris Administration wanted a publicity stunt to cover up their disastrous policies in the Middle East. + +It’s unacceptable and a disgrace to all of the brave men and women in uniform who make sacrifices every day for our country.","2024-11-05T00:52:55.000Z","[""https://pbs.twimg.com/media/GblQm1pWUAAm38L.jpg""]","https://x.com/RepMikeCollins/status/1853601353823596920","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,21,207,415,6994,,,52430,"Trucking | Pilot | Proudly serving GA-10 | Member of @TransportGOP, @NatResources, & @housescience | Come for the memes, stay for the policy",4886,"https://pbs.twimg.com/profile_images/1779858389230637056/aKykYRnr_normal.jpg",431,false,4,11,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:11.429Z","{""url"":""https://twitter.com/1601030771124408325/status/1853601353823596920""}","{""url"":""https://x.com/RepMikeCollins"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853958788438757674","RepRobertGarcia","Congressman Robert Garcia","Californians, make sure you are getting out to vote. Every vote counts.","2024-11-06T00:33:14.000Z",,"https://x.com/RepRobertGarcia/status/1853958788438757674","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,110,429,5287,,,39947,"California Congressman. Democratic Freshman Class President. Former Long Beach Mayor. Proud Immigrant. Truth and Justice, always. 🇺🇸🏳️‍🌈",2153,"https://pbs.twimg.com/profile_images/1828221774045290497/-7fJcDLr_normal.jpg",652,false,1,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:12.059Z","{""url"":""https://twitter.com/1602792195878047744/status/1853958788438757674""}","{""url"":""https://x.com/RepRobertGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853860209279856673","RepMaxwellFrost","Congressman Maxwell Alejandro Frost","NEW: Ranking Member @RepRaskin, @RepMaxwellFrost, and @RepMoskowitz push insurance regulators in states hit by Helene and Milton to protect hurricane victims from fraud:","2024-11-05T18:01:31.000Z",,"https://x.com/RepMaxwellFrost/status/1853860209279856673","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""31122582"",""profile_name"":""Oversight Committee Democrats"",""url"":""https://x.com/OversightDems"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""806906355214852096"",""profile_name"":""Rep. Jamie Raskin"",""url"":""https://x.com/RepRaskin"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1608494113174822925"",""profile_name"":""Congressman Maxwell Alejandro Frost"",""url"":""https://x.com/RepMaxwellFrost"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1610009027743830018"",""profile_name"":""Congressman Jared Moskowitz"",""url"":""https://x.com/RepMoskowitz"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,46,0,,,,60770,"Congressman representing Central Florida / Orlando (FL-10)",1503,"https://pbs.twimg.com/profile_images/1610303384527011845/dea7jt7K_normal.jpg",268,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:12.325Z","{""url"":""https://twitter.com/1608494113174822925/status/1853860209279856673""}","{""url"":""https://x.com/RepMaxwellFrost"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853942874800558501","RepJimmyPanetta","Rep. Jimmy Panetta","Proud to ensure Congress recognizes the second longest-serving prisoner of war in the history of our nation, Cmdr. Everett Alvarez Jr. Our work is paying off so that a local hero from Monterey County receives the Congressional Gold Medal.","2024-11-05T23:30:00.000Z",,"https://x.com/RepJimmyPanetta/status/1853942874800558501","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,5,5,456,"https://www.military.com/daily-news/2024/10/29/navy-pilot-held-prisoner-more-8-years-vietnam-war-could-get-top-congressional-award.html",,19744,"I am honored to represent California's new 19th congressional district in the U.S. House of Representatives.",10169,"https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg",655,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853883264148316160/tr71RYZg?format=jpg&name=orig""]",,"2024-11-06T04:15:12.562Z","{""url"":""https://twitter.com/796736612554117120/status/1853942874800558501""}","{""url"":""https://x.com/RepJimmyPanetta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853904350906605801","RepJohnLarson","Rep. John Larson","I am grateful for the swift action of the U. S. Capitol Police as they work to keep staff and visitors safe today and every day. Threats to our democracy will not stand, especially on Election Day.","2024-11-05T20:56:55.000Z","[""https://pbs.twimg.com/media/GbpkKyiX0AEyyvV.jpg""]","https://x.com/RepJohnLarson/status/1853904350906605801","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,2,10,401,,,29268,"Member of Congress representing the First District of Connecticut.",9845,"https://pbs.twimg.com/profile_images/979449416129097728/q0pTyqB9_normal.jpg",926,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:12.670Z","{""url"":""https://twitter.com/50452197/status/1853904350906605801""}","{""url"":""https://x.com/RepJohnLarson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853827435864920464","RepFeenstra","Rep. Randy Feenstra","ONLY American citizens should vote in AMERICAN elections.","2024-11-05T15:51:17.000Z",,"https://x.com/RepFeenstra/status/1853827435864920464","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,447,0,,,,16489,"Husband. Father. Conservative Republican. Delivering results for the people of #IA04 on @WaysandMeansGOP and @HouseAgGOP.",6799,"https://pbs.twimg.com/profile_images/1345385050683142144/uLQ4buVG_normal.jpg",563,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:13.662Z","{""url"":""https://twitter.com/1345135363761852416/status/1853827435864920464""}","{""url"":""https://x.com/RepFeenstra"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853830464860987498","RepJimmyGomez","Rep. Jimmy Gomez","I brought back $500,000 in to @HACLA's Rose Hill Courts to build 48 housing units, a community center and a park! + +I founded the #RentersCaucus to make housing more accessible and we’re putting in the work. Everyone deserves a roof over their head—in #CA34 and beyond.","2024-11-05T16:03:19.000Z","[""https://pbs.twimg.com/media/GbogYZyWgAEApMN.jpg""]","https://x.com/RepJimmyGomez/status/1853830464860987498","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""32382972"",""profile_name"":""Harrison Clay"",""url"":""https://x.com/hacla"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",1,0,1,953,,"[""RentersCaucus"",""CA34""]",53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":""1853830462088835573"",""profile_id"":""2371339658"",""profile_name"":""RepJimmyGomez""}",,,"2024-11-06T04:15:14.318Z","{""url"":""https://twitter.com/2371339658/status/1853830464860987498""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853821283164721254","RepJimmyGomez","Rep. Jimmy Gomez","Your vote is your voice. Today, I encourage everyone in #CA34 and around the country to head to the polls and make your voice heard! Too much is at stake to sit out. + +Visit","2024-11-05T15:26:50.000Z","[""https://pbs.twimg.com/media/GboYodOXYAAqwR5.jpg""]","https://x.com/RepJimmyGomez/status/1853821283164721254","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,4,9,1135,"http://plan.lavote.gov/","[""CA34"",""ElectionDay""]",53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:15.225Z","{""url"":""https://twitter.com/2371339658/status/1853821283164721254""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853887847016915082","RepMaxwellFrost","Congressman Maxwell Alejandro Frost","👋 REMINDER TO COLLEGE STUDENTS AND OTHERS: As long as you are registered to vote somewhere in Florida, you should be able to update your address to your current polling location! 1/3","2024-11-05T19:51:20.000Z",,"https://x.com/RepMaxwellFrost/status/1853887847016915082","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""881974187589603328"",""profile_name"":""Rep. Anna V. Eskamani, PhD 🔨"",""url"":""https://x.com/AnnaForFlorida"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,118,0,,,,60770,"Congressman representing Central Florida / Orlando (FL-10)",1503,"https://pbs.twimg.com/profile_images/1610303384527011845/dea7jt7K_normal.jpg",268,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:15.633Z","{""url"":""https://twitter.com/1608494113174822925/status/1853887847016915082""}","{""url"":""https://x.com/RepMaxwellFrost"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853839893929107898","RepEliCrane","Rep. Eli Crane","Border Czar Kamala: +▪Denies that terrorists have come across our border under her watch +▪Demands a wall for herself but refuses to complete President Trump's border wall +▪Claims that her border crisis isn't an emergency + +VP Harris is a hypocrite.","2024-11-05T16:40:48.000Z",,"https://x.com/RepEliCrane/status/1853839893929107898","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""816652616625168388"",""profile_name"":""Rep Andy Biggs"",""url"":""https://x.com/RepAndyBiggsAZ"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,409,0,,,,80544,"Former Navy SEAL 🇺🇸 Proudly serving Arizona's 2nd Congressional District in Congress. @HomelandGOP, @HouseVetAffairs, @HouseSmallBiz & @FreedomCaucus",4557,"https://pbs.twimg.com/profile_images/1633488230690484227/Isj-2-Lc_normal.jpg",291,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:16.069Z","{""url"":""https://twitter.com/1608891205902794753/status/1853839893929107898""}","{""url"":""https://x.com/RepEliCrane"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853983204975202329","RepCohen","Steve Cohen","I’ll pay the airfare. One way","2024-11-06T02:10:16.000Z",,"https://x.com/RepCohen/status/1853983204975202329","{""post_id"":""1853203331705110939"",""profile_id"":""TeaPainUSA"",""profile_name"":""Tea Pain"",""data_posted"":""2014-03-31T21:05:45.000Z"",""url"":""https://x.com/TeaPainUSA/status/1853203331705110939"",""description"":""Promise?"",""photos"":null,""videos"":null}",,2,4,38,5838,,,87617,"Memphis | Ranking Member of Aviation Subcommittee | Champion for Justice and Civil Rights on Judiciary Committee | House Ranking Member of Helsinki Commission",17177,"https://pbs.twimg.com/profile_images/1268243438308376586/CmkJQcsJ_normal.jpg",6935,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:16.120Z","{""url"":""https://twitter.com/162069635/status/1853983204975202329""}","{""url"":""https://x.com/RepCohen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853923244346110082","RepMarkAlford","Rep. Mark Alford","Under President Trump, taxes were lowered, letting hardworking Americans keep more of their paycheck. + +Prosperity starts when government empowers, not burdens, its people.","2024-11-05T22:12:00.000Z",,"https://x.com/RepMarkAlford/status/1853923244346110082","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,0,10,526,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:16.700Z","{""url"":""https://twitter.com/1612483604071727104/status/1853923244346110082""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815174450340317","RepMikeCollins","Rep. Mike Collins","Choose your line.","2024-11-05T15:02:34.000Z","[""https://pbs.twimg.com/media/GboTEmPWMAEmUmg.jpg"",""https://pbs.twimg.com/media/GboTEl8W8AAMw6z.jpg""]","https://x.com/RepMikeCollins/status/1853815174450340317","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,85,1596,10448,267738,,,52430,"Trucking | Pilot | Proudly serving GA-10 | Member of @TransportGOP, @NatResources, & @housescience | Come for the memes, stay for the policy",4886,"https://pbs.twimg.com/profile_images/1779858389230637056/aKykYRnr_normal.jpg",431,false,29,85,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:16.785Z","{""url"":""https://twitter.com/1601030771124408325/status/1853815174450340317""}","{""url"":""https://x.com/RepMikeCollins"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842298842279960","RepJimmyGomez","Rep. Jimmy Gomez","I delivered $1 million in federal funding to the LA Boys and Girls Club @BGCMLA this year! + +These funds will be used to renovate the #NortheastLA community center into a space that provides food, education, workshops and so much more for #CA34. 💪","2024-11-05T16:50:21.000Z","[""https://pbs.twimg.com/media/GborsUvWUAAnzr1.jpg""]","https://x.com/RepJimmyGomez/status/1853842298842279960","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""730073923505676289"",""profile_name"":""Boys & Girls Clubs of Metro Los Angeles"",""url"":""https://x.com/BGCMLA"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,0,2,520,,"[""NortheastLA"",""CA34""]",53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":""1853830464860987498"",""profile_id"":""2371339658"",""profile_name"":""RepJimmyGomez""}",,,"2024-11-06T04:15:17.100Z","{""url"":""https://twitter.com/2371339658/status/1853842298842279960""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853908145057534331","RepMarkAlford","Rep. Mark Alford","Make your voice heard, Missouri! + +Polls are open until 7 p.m., so there’s still time to vote and shape our state’s future. + +Find your polling place here:","2024-11-05T21:12:00.000Z",,"https://x.com/RepMarkAlford/status/1853908145057534331","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,0,9,405,"https://sos.mo.gov/elections/goVoteMissouri",,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:17.784Z","{""url"":""https://twitter.com/1612483604071727104/status/1853908145057534331""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853973648673042534","RepJimmyGomez","Rep. Jimmy Gomez","As a father and chair of @DadsCaucus and #RentersCaucus, I'm working to keep young Angelenos in safe housing and off the streets. + +That's why I delivered $850,000 for #HighlandPark's @OOyhfs. This money creates 80 units of affordable housing for youth exiting foster care.","2024-11-06T01:32:17.000Z",,"https://x.com/RepJimmyGomez/status/1853973648673042534","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1617993433079074834"",""profile_name"":""Congressional Dads Caucus"",""url"":""https://x.com/DadsCaucus"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4,0,,,"[""RentersCaucus""]",53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:17.916Z","{""url"":""https://twitter.com/2371339658/status/1853973648673042534""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853836992221471015","RepMarkAlford","Rep. Mark Alford","Over 2 million known ""gotaways"" since the Harris took office. + +Our borders are not secure, and it’s putting American communities at risk.","2024-11-05T16:29:16.000Z",,"https://x.com/RepMarkAlford/status/1853836992221471015","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,0,7,363,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:18.494Z","{""url"":""https://twitter.com/1612483604071727104/status/1853836992221471015""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853846237008547924","RepMarkAlford","Rep. Mark Alford","Energy independence is key to a strong future—leaders who put America’s resources first will get us there.","2024-11-05T17:06:00.000Z",,"https://x.com/RepMarkAlford/status/1853846237008547924","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,0,8,448,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:19.061Z","{""url"":""https://twitter.com/1612483604071727104/status/1853846237008547924""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853823602203705521","RepMarkAlford","Rep. Mark Alford","Republicans believe in secure borders. + +Democrats believe in open borders.","2024-11-05T15:36:03.000Z",,"https://x.com/RepMarkAlford/status/1853823602203705521","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,3,18,617,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:19.713Z","{""url"":""https://twitter.com/1612483604071727104/status/1853823602203705521""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853985596965863471","RepJimmyGomez","Rep. Jimmy Gomez","This year, I brought back $850,000 in federal funds to @puenteinla_ to improve their facilities and ability to provide educational and career development programs! + +This org has been a pillar of the community since 1985 and they make sure #CA34 families are employed and thriving.","2024-11-06T02:19:46.000Z",,"https://x.com/RepJimmyGomez/status/1853985596965863471","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""844027621058859008"",""profile_name"":""PUENTE Learning Center"",""url"":""https://x.com/puenteinla_"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,0,0,,,,53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:19.702Z","{""url"":""https://twitter.com/2371339658/status/1853985596965863471""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853640375631552670","RepHouchin","Congresswoman Erin Houchin","Episode 484 of Steak for Breakfast is LIVE! The 2024 Presidential Election Preview Edition chronicles six Trump rallies across six Battlegorund States, Final Poll Numbers and MORE! • Featuring @Rep_Clyde @RepHouchin @BryanLeibFL • Apple Podcasts 🎧","2024-11-05T03:27:59.000Z",,"https://x.com/RepHouchin/status/1853640375631552670","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1511107158137520129"",""profile_name"":""Steak for Breakfast"",""url"":""https://x.com/SteakforPodcast"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,45,0,,,,4148,"Proudly serving Hoosiers as Congresswoman for the 9th District of Indiana. Member of @FinancialCmte, @EdWorkforceCmte, and @RulesReps. #IN09",1274,"https://pbs.twimg.com/profile_images/1610725576007876613/iUke-Afs_normal.jpg",151,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:20.031Z","{""url"":""https://twitter.com/1603694348725526528/status/1853640375631552670""}","{""url"":""https://x.com/RepHouchin"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853900058061623555","RepKamlagerDove","Congresswoman Sydney Kamlager-Dove","Happy Election Day, California! 🗳️ + +Make sure to get out and vote—drop your ballot or get in line to vote at your polling place by 8pm! + +Note sure where vote? Go to","2024-11-05T20:39:52.000Z",,"https://x.com/RepKamlagerDove/status/1853900058061623555","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,1,167,"http://lavote.gov/",,3803,"Proudly representing CA's 37th District | @NRDems, @HouseForeign, @TheBlackCaucus, @USProgressives | Account maintained by federal staff.",1614,"https://pbs.twimg.com/profile_images/1623342899688529922/WDuyNL8f_normal.jpg",439,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853900015762030592/pu/vid/avc1/1280x720/nQ6zYB7M24WPzEbf.mp4?tag=12"",""duration"":36067}]","2024-11-06T04:15:20.117Z","{""url"":""https://twitter.com/1613235716669988871/status/1853900058061623555""}","{""url"":""https://x.com/RepKamlagerDove"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853964048884191590","RepMarkAlford","Rep. Mark Alford","IF YOU ARE IN LINE, STAY IN LINE! + +Polls are closing soon at 7 pm. If you are in line by 7, you can vote! + +You will determine the future of Missouri and the future of this country!","2024-11-06T00:54:08.000Z",,"https://x.com/RepMarkAlford/status/1853964048884191590","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,6,34,915,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:20.559Z","{""url"":""https://twitter.com/1612483604071727104/status/1853964048884191590""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853819605732426169","RepAshleyHinson","Ashley Hinson","I’m proud to be an American.  + +Men and women have fought & died to protect our rights - including the right to vote - and our freedoms as American citizens. We live in the best country in the world and we can never take that blessing for granted. 🇺🇸🇺🇸","2024-11-05T15:20:10.000Z",,"https://x.com/RepAshleyHinson/status/1853819605732426169","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,15,3,24,1227,,,38940,"Proud mom and wife. Representing IA-02 in Congress and bringing a dose of Iowa common sense to Washington. FB: https://t.co/sKtNaJyBsw",5698,"https://pbs.twimg.com/profile_images/1343676797007892481/wyWNJ7wg_normal.jpg",702,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:20.733Z","{""url"":""https://twitter.com/1340783304304410625/status/1853819605732426169""}","{""url"":""https://x.com/RepAshleyHinson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853603308935520597","RepMarkGreen","Rep. Mark Green","It's time for Biden and Harris to get out of Americans' kitchens.","2024-11-05T01:00:41.000Z",,"https://x.com/RepMarkGreen/status/1853603308935520597","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,23,4,38,1362,"https://www.foxnews.com/opinion/biden-harris-still-hate-your-gas-stove-wont-believe-how-much",,98231,"Mark Green is a physician, businessman, and combat veteran representing Tennessee’s 7th District in Congress. Chairman of @HomelandGOP.",11852,"https://pbs.twimg.com/profile_images/1080478006169268224/aB7vw1E2_normal.jpg",1169,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851551189013245953/No4v0MX0?format=jpg&name=orig""]",,"2024-11-06T04:15:20.975Z","{""url"":""https://twitter.com/1080477288955826176/status/1853603308935520597""}","{""url"":""https://x.com/RepMarkGreen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853859166386786383","RepJimmyGomez","Rep. Jimmy Gomez","Thank you @RepJimmyGomez for your ongoing support to LACI & @LADWP's La Kretz Innovation Campus! With this federal funding, we can continue to support innovative startups, the growing cleantech workforce, and clean energy initiatives.","2024-11-05T17:57:22.000Z",,"https://x.com/RepJimmyGomez/status/1853859166386786383","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""321769289"",""profile_name"":""LACl"",""url"":""https://x.com/laincubator"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""22584849"",""profile_name"":""LADWP"",""url"":""https://x.com/LADWP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,,53681,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:21.060Z","{""url"":""https://twitter.com/2371339658/status/1853859166386786383""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853929032854692226","RepMarkAlford","Rep. Mark Alford","Wars overseas remind us of why President Trump’s ""Peace through Strength"" approach worked. + +America needs this leadership again to prioritize our security and keep threats at bay.","2024-11-05T22:35:00.000Z",,"https://x.com/RepMarkAlford/status/1853929032854692226","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,24,259,15853,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:21.562Z","{""url"":""https://twitter.com/1612483604071727104/status/1853929032854692226""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853949817648550225","RepRobertGarcia","Congressman Robert Garcia","Today, House Republicans ignored the non-partisan Parliamentarian to try & kill the Social Security Fairness Act with parliamentary trickery. Clear violation of House Rules and Dem & GOP leadership agreements. We won't stop fighting for teachers, firefighters, and police.","2024-11-05T23:57:35.000Z",,"https://x.com/RepRobertGarcia/status/1853949817648550225","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,37,128,2047,,,39960,"California Congressman. Democratic Freshman Class President. Former Long Beach Mayor. Proud Immigrant. Truth and Justice, always. 🇺🇸🏳️‍🌈",2153,"https://pbs.twimg.com/profile_images/1828221774045290497/-7fJcDLr_normal.jpg",652,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:21.553Z","{""url"":""https://twitter.com/1602792195878047744/status/1853949817648550225""}","{""url"":""https://x.com/RepRobertGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853595140226531638","RepFeenstra","Rep. Randy Feenstra","164 days ago, @HouseAgGOP passed the Farm Bill. + +We spoke with farmers around the country to include provisions important to our ag community. + +Republicans will always support our farmers, producers, and rural communities!","2024-11-05T00:28:14.000Z",,"https://x.com/RepFeenstra/status/1853595140226531638","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""234573331"",""profile_name"":""House Committee on Agriculture"",""url"":""https://x.com/HouseAgGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",1,1,6,339,,,16490,"Husband. Father. Conservative Republican. Delivering results for the people of #IA04 on @WaysandMeansGOP and @HouseAgGOP.",6799,"https://pbs.twimg.com/profile_images/1345385050683142144/uLQ4buVG_normal.jpg",563,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:21.686Z","{""url"":""https://twitter.com/1345135363761852416/status/1853595140226531638""}","{""url"":""https://x.com/RepFeenstra"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853830212145852519","RepMarkAlford","Rep. Mark Alford","America was respected, our economy was thriving, and peace was prioritized. + +The Trump administration showed that a strong America is a secure America, at home and abroad.","2024-11-05T16:02:19.000Z",,"https://x.com/RepMarkAlford/status/1853830212145852519","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,1,5,415,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:21.762Z","{""url"":""https://twitter.com/1612483604071727104/status/1853830212145852519""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853877185683001642","RepEspaillat","Adriano Espaillat","Thank you @CapitolPolice officers and responders for your vigilance and dedication to keep workers and visitors to our campus safe today and every day. + +We take these matters seriously and will ensure necessary resources are available for the safety and security for all.","2024-11-05T19:08:59.000Z",,"https://x.com/RepEspaillat/status/1853877185683001642","{""post_id"":""1853869248562475086"",""profile_id"":""CapitolPolice"",""profile_name"":""The U.S. Capitol Police"",""data_posted"":""2008-09-28T22:45:09.000Z"",""url"":""https://x.com/CapitolPolice/status/1853869248562475086"",""description"":""Our officers just arrested a man who was stopped during our screening process at the Capitol Visitor Center (CVC). The man smelled like fuel, had a torch & a flare gun. \n\nThe CVC is closed for tours for the day, while we investigate. We will provide more information when we can. https://t.co/J5geNud1h2"",""photos"":[""https://pbs.twimg.com/media/GbpDT2ZWwAE_OH6.jpg""],""videos"":null}","[{""profile_id"":""16503916"",""profile_name"":""The U.S. Capitol Police"",""url"":""https://x.com/CapitolPolice"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,3,17,1395,,,37029,"Former undocumented immigrant turned progressive Congressman. Fighting #ForThePeople of NY-13. 💪🏽",23157,"https://pbs.twimg.com/profile_images/1664857509658603520/jdvB_yl1_normal.jpg",2444,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:22.257Z","{""url"":""https://twitter.com/817076257770835968/status/1853877185683001642""}","{""url"":""https://x.com/RepEspaillat"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853873864318865814","RepMarkAlford","Rep. Mark Alford","Rent, groceries, meat – all skyrocketing under Kamala Harris’s watch. + +This isn’t leadership; it’s a burden on working families.","2024-11-05T18:55:47.000Z",,"https://x.com/RepMarkAlford/status/1853873864318865814","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,1,5,426,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:22.579Z","{""url"":""https://twitter.com/1612483604071727104/status/1853873864318865814""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815898542383526","RepMarkAlford","Rep. Mark Alford","From tax cuts that helped families to policies that empowered small businesses, the Trump administration focused on making life more affordable for hard-working Americans. + +Prosperity is the goal – and it’s possible with the right leadership.","2024-11-05T15:05:27.000Z",,"https://x.com/RepMarkAlford/status/1853815898542383526","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,0,12,381,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:22.981Z","{""url"":""https://twitter.com/1612483604071727104/status/1853815898542383526""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853825251760640368","RepMikeLawler","Congressman Mike Lawler","I was proud to join the Indian Cultural Heritage and Arts Awareness Club over the weekend in celebrating Indian Heritage Day Celebration Kerala Piravi & Diwali. Thank you to the club, the amazing performers, and Rockland County Legislature Vice Chair Aney Paul who coordinated this awesome event!","2024-11-05T15:42:37.000Z","[""https://pbs.twimg.com/media/GbocPU8WUAAX6eQ.jpg"",""https://pbs.twimg.com/media/GbocPU6XIAAX-2F.jpg"",""https://pbs.twimg.com/media/GbocPU2W8AEeaB5.jpg"",""https://pbs.twimg.com/media/GbocPVAWYAAQ4d-.jpg""]","https://x.com/RepMikeLawler/status/1853825251760640368","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,3,18,943,,,14671,"Proudly serving New York’s 17th District | Member @FinancialCmte and @HouseForeignGOP | Husband, father, small businessman | Former NYS Assemblyman",4122,"https://pbs.twimg.com/profile_images/1625187685227761664/r-LNjKpP_normal.jpg",675,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:22.953Z","{""url"":""https://twitter.com/1590372047015886853/status/1853825251760640368""}","{""url"":""https://x.com/RepMikeLawler"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853865252863041892","RepMattGaetz","Rep. Matt Gaetz","High prices. Rampant crime. Oppressive mandates. + +That is the policy record of Kamala Harris and Joe Biden.","2024-11-05T18:21:34.000Z","[""https://pbs.twimg.com/media/GbpAjV8W4AEAvxx.jpg""]","https://x.com/RepMattGaetz/status/1853865252863041892","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,123,479,1483,76817,,,2899690,"Official X for Congressman Matt Gaetz. Proud conservative who is honored to serve the First District of Florida. 🇺🇸",13465,"https://pbs.twimg.com/profile_images/1394339460649820162/o1gB5Wpg_normal.jpg",836,false,15,10,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:23.575Z","{""url"":""https://twitter.com/818948638890217473/status/1853865252863041892""}","{""url"":""https://x.com/RepMattGaetz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853918768675553480","RepMikeCollins","Rep. Mike Collins","Reminder:","2024-11-05T21:54:13.000Z","[""https://pbs.twimg.com/media/GbpxS3fXUAAK7Ka.jpg""]","https://x.com/RepMikeCollins/status/1853918768675553480","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,11,23,117,3024,,,52428,"Trucking | Pilot | Proudly serving GA-10 | Member of @TransportGOP, @NatResources, & @housescience | Come for the memes, stay for the policy",4886,"https://pbs.twimg.com/profile_images/1779858389230637056/aKykYRnr_normal.jpg",431,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:23.654Z","{""url"":""https://twitter.com/1601030771124408325/status/1853918768675553480""}","{""url"":""https://x.com/RepMikeCollins"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853860232037843334","RepMarkGreen","Rep. Mark Green","Securing our semiconductor supply chains is a critical first step. We must control our own destiny—and that starts with cutting China out of research, development, and trade of next-gen tech critical to U.S. national security.","2024-11-05T18:01:37.000Z",,"https://x.com/RepMarkGreen/status/1853860232037843334","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,14,2,16,843,"https://www.wsj.com/tech/u-s-chip-toolmakers-move-to-cut-china-from-supply-chains-6ad44c98",,98231,"Mark Green is a physician, businessman, and combat veteran representing Tennessee’s 7th District in Congress. Chairman of @HomelandGOP.",11852,"https://pbs.twimg.com/profile_images/1080478006169268224/aB7vw1E2_normal.jpg",1169,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853437191755644928/M9Ay7PcB?format=jpg&name=orig""]",,"2024-11-06T04:15:24.070Z","{""url"":""https://twitter.com/1080477288955826176/status/1853860232037843334""}","{""url"":""https://x.com/RepMarkGreen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853866097516097851","RepMarkAlford","Rep. Mark Alford","Republicans believe in funding the police. + +Democrats believe in defunding the police.","2024-11-05T18:24:55.000Z",,"https://x.com/RepMarkAlford/status/1853866097516097851","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,10,594,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:24.101Z","{""url"":""https://twitter.com/1612483604071727104/status/1853866097516097851""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853595585103720739","RepJimmyPanetta","Rep. Jimmy Panetta","I brought together local health care leaders to address the urgent issues facing Medicare and our providers. With inflation and rising costs, Medicare reimbursements have fallen behind, threatening access to care for our seniors.","2024-11-05T00:30:00.000Z",,"https://x.com/RepJimmyPanetta/status/1853595585103720739","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,2,1,250,"https://www.santacruzsentinel.com/2024/10/28/rep-jimmy-panetta-hosts-roundtable-to-highlight-medicare-crisis-physician-shortages/",,19744,"I am honored to represent California's new 19th congressional district in the U.S. House of Representatives.",10169,"https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg",655,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853595713944666112/9rQXvY20?format=jpg&name=orig""]",,"2024-11-06T04:15:24.103Z","{""url"":""https://twitter.com/796736612554117120/status/1853595585103720739""}","{""url"":""https://x.com/RepJimmyPanetta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853935442925654521","RepJimmyGomez","Rep. Jimmy Gomez","I delivered $750,000 for @BarrioAction Youth & Family Center's new tech center! 💻 + +All families in our community can benefit from a space to work on job training, workshops and programs that help break the cycle of poverty. #Adelante","2024-11-05T23:00:28.000Z",,"https://x.com/RepJimmyGomez/status/1853935442925654521","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""274268475"",""profile_name"":""Barrio Action"",""url"":""https://x.com/BarrioAction"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,2,0,,,,53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:24.407Z","{""url"":""https://twitter.com/2371339658/status/1853935442925654521""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853906575271883222","RepMarkAlford","Rep. Mark Alford","Under President Trump, our borders were secure, and illegal crossings dropped significantly. + +Strong leadership means safer communities for all Americans.","2024-11-05T21:05:46.000Z",,"https://x.com/RepMarkAlford/status/1853906575271883222","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,8,716,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:24.415Z","{""url"":""https://twitter.com/1612483604071727104/status/1853906575271883222""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853882650852987035","RepJimmyGomez","Rep. Jimmy Gomez","I brought back $1 million to upgrade the @lacountyparks Belvedere Community Soccer Complex that serves#EastLA youth and gives them a place to learn and play. + +Every kid should get the opportunity to play sports—this helps make that goal a reality. ⚽️","2024-11-05T19:30:42.000Z",,"https://x.com/RepJimmyGomez/status/1853882650852987035","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""21255863"",""profile_name"":""Los Angeles County Parks & Recreation"",""url"":""https://x.com/lacountyparks"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,,53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:25.653Z","{""url"":""https://twitter.com/2371339658/status/1853882650852987035""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853846876300152957","RepMarkGreen","Rep. Mark Green","Not only did VP Harris remove fewer known/suspected gang members from our communities than the Trump administration—her anti-enforcement, open-borders policies incentivized these criminals to illegally enter the U.S.","2024-11-05T17:08:32.000Z",,"https://x.com/RepMarkGreen/status/1853846876300152957","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""239964567"",""profile_name"":""House Homeland GOP"",""url"":""https://x.com/HomelandGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,60,0,,,,98231,"Mark Green is a physician, businessman, and combat veteran representing Tennessee’s 7th District in Congress. Chairman of @HomelandGOP.",11852,"https://pbs.twimg.com/profile_images/1080478006169268224/aB7vw1E2_normal.jpg",1169,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:25.905Z","{""url"":""https://twitter.com/1080477288955826176/status/1853846876300152957""}","{""url"":""https://x.com/RepMarkGreen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842474021605874","RepJimmyGomez","Rep. Jimmy Gomez","This year, I delivered $500,000 to @HomeboyInd's FeedHOPE Commissary and Training Complex! + +This new center creates up to 100 jobs annually, and provides great experience and training to at-risk community members. Homeboy changes lives in #CA34 and I'm happy to help them do it!","2024-11-05T16:51:03.000Z",,"https://x.com/RepJimmyGomez/status/1853842474021605874","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""40054239"",""profile_name"":""Homeboy Industries"",""url"":""https://x.com/HomeboyInd"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,,53681,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:25.920Z","{""url"":""https://twitter.com/2371339658/status/1853842474021605874""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800687664242880","RepMarkAlford","Rep. Mark Alford","Peace is achieved through strength. + +Weak leadership only invites chaos. We need a leader who will stand firm on the world stage and protect America’s interests.","2024-11-05T14:05:00.000Z",,"https://x.com/RepMarkAlford/status/1853800687664242880","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,14,323,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:26.351Z","{""url"":""https://twitter.com/1612483604071727104/status/1853800687664242880""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853784044179173545","RepMalliotakis","Office of Rep. Nicole Malliotakis","Democrats at the city, state & federal level have made our city less safe & our nation less secure. They let in unvetted people who commit crimes then, instead of working with ICE to deport them, they send them back to luxury hotel rooms that we the people get stuck paying for.","2024-11-05T12:58:52.000Z",,"https://x.com/RepMalliotakis/status/1853784044179173545","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,14,9,34,1748,,,32341,"Congresswoman for #NY11, former NY State Assemblymember, proud daughter of Greek & Cuban immigrants | Member of @WaysandMeansGOP, @COVIDSelect & @JECRepublicans",3922,"https://pbs.twimg.com/profile_images/1345790652416745477/f-Vnpg1e_normal.jpg",446,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853783929217515520/vid/avc1/886x494/-i7P3C6oFnBLoP70.mp4?tag=16"",""duration"":77776}]","2024-11-06T04:15:26.781Z","{""url"":""https://twitter.com/1344750588026900481/status/1853784044179173545""}","{""url"":""https://x.com/RepMalliotakis"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853809495039705257","RepLoisFrankel","Rep. Lois Frankel","For those voting in person today, @Palm_Tran is offering free rides! Visit","2024-11-05T14:40:00.000Z",,"https://x.com/RepLoisFrankel/status/1853809495039705257","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""895009347830513665"",""profile_name"":""Palm Tran"",""url"":""https://x.com/palm_tran"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",1,3,2,405,"http://palmtran.org/",,33514,"Proudly representing Florida's 22nd Congressional District, from West Palm to Boca Raton. Chair of @DemWomenCaucus. Working mom and grandma.",13131,"https://pbs.twimg.com/profile_images/1720094394878164992/UPCKkzOI_normal.jpg",1686,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853809626363703297/K1VOXaJs?format=jpg&name=orig""]",,"2024-11-06T04:15:26.885Z","{""url"":""https://twitter.com/1077121945/status/1853809495039705257""}","{""url"":""https://x.com/RepLoisFrankel"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853851246601392492","RepEricBurlison","Rep. Eric Burlison","This Election Day, make your voice heard. + +Get out and VOTE! + +Polling places are open until 7 p.m. Find yours here:","2024-11-05T17:25:54.000Z",,"https://x.com/RepEricBurlison/status/1853851246601392492","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,13,6,24,669,"https://voteroutreach.sos.mo.gov/portal/",,19141,"Father and Congressman Representing Missouri's 7th Congressional District - Member of @GOPoversight, @TransportGOP, @EdWorkforceCmte, & @FreedomCaucus",2901,"https://pbs.twimg.com/profile_images/1778908620383526913/qzl2gTS1_normal.jpg",548,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:27.206Z","{""url"":""https://twitter.com/1606342594765590528/status/1853851246601392492""}","{""url"":""https://x.com/RepEricBurlison"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853821573427531781","RepEricBurlison","Rep. Eric Burlison","The damage the Biden/Harris administration has inflicted on our country cannot be overstated. + +Today would be a great day to turn the page on this regime and get back to putting Americans first.","2024-11-05T15:28:00.000Z",,"https://x.com/RepEricBurlison/status/1853821573427531781","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,16,13,68,966,,,19141,"Father and Congressman Representing Missouri's 7th Congressional District - Member of @GOPoversight, @TransportGOP, @EdWorkforceCmte, & @FreedomCaucus",2901,"https://pbs.twimg.com/profile_images/1778908620383526913/qzl2gTS1_normal.jpg",548,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:27.655Z","{""url"":""https://twitter.com/1606342594765590528/status/1853821573427531781""}","{""url"":""https://x.com/RepEricBurlison"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853859217549197808","RepJimmyGomez","Rep. Jimmy Gomez","Alma Family Services has been working in our community and investing time to mentor young women in #CA34.  + +I'm happy to have secured $250,000 for their @GTWT_Leadership Youth Center renovations to ensure they can keep helping girls develop lifelong leadership skills! 💪","2024-11-05T17:57:35.000Z",,"https://x.com/RepJimmyGomez/status/1853859217549197808","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,"[""CA34""]",53681,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:28.171Z","{""url"":""https://twitter.com/2371339658/status/1853859217549197808""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853804917154091502","RepKatCammack","Rep. Cammack Press Office","Rep. Cammack joined @UFHealth for the announcement of the system's new Mobile Cancer Screening Connector. The new mobile unit expands and enhances community care, improving early screening and detection for patients in our area. Looking forward to seeing it our area!","2024-11-05T14:21:48.000Z","[""https://pbs.twimg.com/media/GboJIyiXwAIivMl.jpg"",""https://pbs.twimg.com/media/GboJJoeXkAARQ5l.jpg"",""https://pbs.twimg.com/media/GboJK7uWUAInrL2.jpg"",""https://pbs.twimg.com/media/GboJM1RW8AAT3ky.jpg""]","https://x.com/RepKatCammack/status/1853804917154091502","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""33548996"",""profile_name"":""UF Health"",""url"":""https://x.com/UFHealth"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",15,2,4,610,,,65609,"Press Office | Member @HouseCommerce, @HouseAgGOP, @Weaponization | Proudly representing #FL03 in the U.S. House 🇺🇸 | Tweets by Rep. Cammack signed ""KC""",6088,"https://pbs.twimg.com/profile_images/1344418605769887744/l3yGYKd3_normal.jpg",621,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:28.690Z","{""url"":""https://twitter.com/1344325638983987201/status/1853804917154091502""}","{""url"":""https://x.com/RepKatCammack"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853935576032125406","RepMarkAlford","Rep. Mark Alford","Make your voice heard, Missouri! + +Polls are open until 7 p.m., so there’s still time to vote and shape our state’s future. + +Find your polling place here::","2024-11-05T23:01:00.000Z",,"https://x.com/RepMarkAlford/status/1853935576032125406","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,7,382,"https://sos.mo.gov/elections/goVoteMissouri",,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:29.252Z","{""url"":""https://twitter.com/1612483604071727104/status/1853935576032125406""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853962068862353788","RepLoisFrankel","Rep. Lois Frankel","Thank you, Palm Beach County, for trusting me to represent you for another term. + +Serving as your voice in Congress is both an honor and a privilege, and I’m ready to keep working on the issues that matter most to our community. Always on your side!","2024-11-06T00:46:16.000Z",,"https://x.com/RepLoisFrankel/status/1853962068862353788","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,21,116,4893,,,33515,"Proudly representing Florida's 22nd Congressional District, from West Palm to Boca Raton. Chair of @DemWomenCaucus. Working mom and grandma.",13131,"https://pbs.twimg.com/profile_images/1720094394878164992/UPCKkzOI_normal.jpg",1686,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:29.282Z","{""url"":""https://twitter.com/1077121945/status/1853962068862353788""}","{""url"":""https://x.com/RepLoisFrankel"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853950901628612909","RepJimmyGomez","Rep. Jimmy Gomez","I brought back $850,000 for @HACLA's Nueva Maravilla to improve their community garden and irrigation systems. + +Tiffany, a resident, told us her boys were so excited to help their neighborhood garden thrive. ✨🌿","2024-11-06T00:01:54.000Z",,"https://x.com/RepJimmyGomez/status/1853950901628612909","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""32382972"",""profile_name"":""Harrison Clay"",""url"":""https://x.com/hacla"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,,53681,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:29.564Z","{""url"":""https://twitter.com/2371339658/status/1853950901628612909""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853911331864485935","RepJasonSmith","Rep. Jason Smith","Sending my prayers to the loved ones of the two Wright County residents who lost their lives after their car was swept away by floodwaters early this morning.","2024-11-05T21:24:40.000Z",,"https://x.com/RepJasonSmith/status/1853911331864485935","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,3,23,966,,,60070,"@WaysandMeansGOP Chairman | Farmer | 7th generation Missourian | Conservative fighting for Missouri’s working class and small businesses | Serving Missouri 08",7437,"https://pbs.twimg.com/profile_images/1622283372008439809/XSg4-ieG_normal.jpg",975,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:29.565Z","{""url"":""https://twitter.com/1623308912/status/1853911331864485935""}","{""url"":""https://x.com/RepJasonSmith"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842989770060067","RepEzell","Congressman Mike Ezell","Not only did VP Harris remove fewer known/suspected gang members from our communities than the Trump administration—her anti-enforcement, open-borders policies incentivized these criminals to illegally enter the U.S.","2024-11-05T16:53:06.000Z",,"https://x.com/RepEzell/status/1853842989770060067","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""239964567"",""profile_name"":""House Homeland GOP"",""url"":""https://x.com/HomelandGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,60,0,,,,3165,"Husband, father, grandfather, and retired sheriff. Proudly representing the people of South Mississippi in Congress. Serving on @TransportGOP & @HomelandGOP",823,"https://pbs.twimg.com/profile_images/1602788225331986432/Vy73HVCU_normal.jpg",392,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:29.762Z","{""url"":""https://twitter.com/1602788004749344768/status/1853842989770060067""}","{""url"":""https://x.com/RepEzell"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799432569163998","RepEspaillat","Adriano Espaillat","Your vote is your voice. + +Today, I encourage everyone in New York's 13th district and around the country to head to the polls and make your voice heard!","2024-11-05T14:00:01.000Z",,"https://x.com/RepEspaillat/status/1853799432569163998","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,8,485,,,37029,"Former undocumented immigrant turned progressive Congressman. Fighting #ForThePeople of NY-13. 💪🏽",23157,"https://pbs.twimg.com/profile_images/1664857509658603520/jdvB_yl1_normal.jpg",2444,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853551357979951104/pu/vid/avc1/1080x1080/gsk3A5b55kLRItQs.mp4?tag=14"",""duration"":12812}]","2024-11-06T04:15:29.875Z","{""url"":""https://twitter.com/817076257770835968/status/1853799432569163998""}","{""url"":""https://x.com/RepEspaillat"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853985596965880176","RepJimmyGomez","Rep. Jimmy Gomez","I was proud to deliver $1 million in federal funding to the @LAIncubator within La Kretz Innovation Campus! + +To combat climate change, we must first invest in our local communities and innovation hubs that are charting a greener path forward. Change starts with us.","2024-11-06T02:19:46.000Z",,"https://x.com/RepJimmyGomez/status/1853985596965880176","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""321769289"",""profile_name"":""LACl"",""url"":""https://x.com/laincubator"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,2,0,,,,53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:29.886Z","{""url"":""https://twitter.com/2371339658/status/1853985596965880176""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853807681716273477","RepMikeCollins","Rep. Mike Collins","Bernie Marcus was a great Georgian and a true hero in the community. His generosity and legacy will never be forgotten.","2024-11-05T14:32:48.000Z",,"https://x.com/RepMikeCollins/status/1853807681716273477","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,7,63,2252,"https://www.ajc.com/news/bernie-marcus-co-founder-of-home-depot-dies/HBKKVBNKIBACPK7W4K5XHFXMIA/",,52428,"Trucking | Pilot | Proudly serving GA-10 | Member of @TransportGOP, @NatResources, & @housescience | Come for the memes, stay for the policy",4886,"https://pbs.twimg.com/profile_images/1779858389230637056/aKykYRnr_normal.jpg",431,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853794950506307584/mDDkqaMX?format=jpg&name=orig""]",,"2024-11-06T04:15:30.196Z","{""url"":""https://twitter.com/1601030771124408325/status/1853807681716273477""}","{""url"":""https://x.com/RepMikeCollins"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853754633723732009","RepMarkAlford","Rep. Mark Alford","Americans want to feel secure—in their homes, on their streets, and in their communities. + +Today, you can ensure that leaders who prioritize security are put in place.","2024-11-05T11:02:00.000Z",,"https://x.com/RepMarkAlford/status/1853754633723732009","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,2,13,483,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:30.525Z","{""url"":""https://twitter.com/1612483604071727104/status/1853754633723732009""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853824759097929866","RepMattGaetz","Rep. Matt Gaetz","During Trump’s four short years, I remember how we felt: we were a nation of full hearts, big dreams, and endless ambition to WIN.","2024-11-05T15:40:39.000Z","[""https://pbs.twimg.com/media/GbobnhYWMAAsrTr.jpg""]","https://x.com/RepMattGaetz/status/1853824759097929866","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,192,290,1589,40935,,,2899690,"Official X for Congressman Matt Gaetz. Proud conservative who is honored to serve the First District of Florida. 🇺🇸",13465,"https://pbs.twimg.com/profile_images/1394339460649820162/o1gB5Wpg_normal.jpg",836,false,13,11,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:30.882Z","{""url"":""https://twitter.com/818948638890217473/status/1853824759097929866""}","{""url"":""https://x.com/RepMattGaetz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853794395532992668","RepLoisFrankel","Rep. Lois Frankel","Today is #ElectionDay, PBC! + +If you still need to vote, go to your assigned polling location by 7 p.m. to make your voice heard. If you voted by mail but haven’t returned your ballot, drop it off by 7 p.m. today—don’t forget to sign the return envelope to ensure your vote counts!","2024-11-05T13:40:00.000Z",,"https://x.com/RepLoisFrankel/status/1853794395532992668","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,9,644,,"[""ElectionDay""]",33515,"Proudly representing Florida's 22nd Congressional District, from West Palm to Boca Raton. Chair of @DemWomenCaucus. Working mom and grandma.",13131,"https://pbs.twimg.com/profile_images/1720094394878164992/UPCKkzOI_normal.jpg",1686,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:31.115Z","{""url"":""https://twitter.com/1077121945/status/1853794395532992668""}","{""url"":""https://x.com/RepLoisFrankel"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853814775601586479","RepPressley","Congresswoman Ayanna Pressley","🗳️It's Election Day & polls close at 8pm. + +Voting determines who’s in power. Who’s in power determines the policies. And the policies determine everything — who lives, who dies, who survives & who thrives. + +Find your polling place & make your voice heard:","2024-11-05T15:00:59.000Z",,"https://x.com/RepPressley/status/1853814775601586479","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,23,40,144,14949,"http://voteinma.com/",,527818,"Proudly serving the Massachusetts 7th. @FSCDems & @OversightDems Member. She/Her.",9406,"https://pbs.twimg.com/profile_images/1399754594192920583/C_lXcydg_normal.jpg",1038,false,0,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:31.627Z","{""url"":""https://twitter.com/1080584229510172678/status/1853814775601586479""}","{""url"":""https://x.com/RepPressley"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853588185843999161","RepMarkGreen","Rep. Mark Green","Billions in tax dollars shouldn't be subsidizing our most significant adversary. The IRA left this loophole WIDE OPEN, and it's no surprise that Chinese companies are taking advantage.","2024-11-05T00:00:36.000Z",,"https://x.com/RepMarkGreen/status/1853588185843999161","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,17,9,17,1029,"https://www.politico.com/news/2024/11/01/chinese-solar-companies-ira-texas-00186890",,98231,"Mark Green is a physician, businessman, and combat veteran representing Tennessee’s 7th District in Congress. Chairman of @HomelandGOP.",11852,"https://pbs.twimg.com/profile_images/1080478006169268224/aB7vw1E2_normal.jpg",1169,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853120821981569024/HXmiamYf?format=jpg&name=orig""]",,"2024-11-06T04:15:31.963Z","{""url"":""https://twitter.com/1080477288955826176/status/1853588185843999161""}","{""url"":""https://x.com/RepMarkGreen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853829630924362135","RepSalinas","Congresswoman Andrea Salinas","TODAY is Election Day! 🇺🇸🗳️ + +As Americans, it is our duty to participate in democracy through voting. + +Click the link below to find a ballot drop box near you. All ballots must be returned by 8 PM PT.","2024-11-05T16:00:01.000Z",,"https://x.com/RepSalinas/status/1853829630924362135","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,2,3,360,"https://sos.oregon.gov/voting/Pages/drop-box-locator.aspx",,2929,"I work for #OR06 in Washington DC. Proud Latina, mom, and first-generation American. Member @HouseAgDems & @ScienceDems, Leader in @HispanicCaucus. 🍇✊🏼",1653,"https://pbs.twimg.com/profile_images/1826635690613837824/LIIsPmqn_normal.jpg",314,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:32.627Z","{""url"":""https://twitter.com/1611800554614755328/status/1853829630924362135""}","{""url"":""https://x.com/RepSalinas"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853890305478521146","RepMarkGreen","Rep. Mark Green","The successful capture of a senior Hezbollah leader is critical to U.S. national security. The more terrorists Israel takes off the board, the fewer there are to threaten Israelis and Americans alike.","2024-11-05T20:01:07.000Z",,"https://x.com/RepMarkGreen/status/1853890305478521146","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,13,2,21,1022,"https://www.cnn.com/2024/11/02/middleeast/israel-special-forces-raid-lebanon-intl-latam/index.html",,98231,"Mark Green is a physician, businessman, and combat veteran representing Tennessee’s 7th District in Congress. Chairman of @HomelandGOP.",11852,"https://pbs.twimg.com/profile_images/1080478006169268224/aB7vw1E2_normal.jpg",1169,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1852806332220354560/hp1lglp0?format=jpg&name=orig""]",,"2024-11-06T04:15:33.128Z","{""url"":""https://twitter.com/1080477288955826176/status/1853890305478521146""}","{""url"":""https://x.com/RepMarkGreen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853831549365404005","RepPatFallon","Rep. Pat Fallon","Kamala Harris has consistently shown that she cares more about allowing illegals into our country than protecting the lives and livelihoods of American citizens. + +As Border Czar, she remains responsible for the worst border crisis in American history.","2024-11-05T16:07:38.000Z",,"https://x.com/RepPatFallon/status/1853831549365404005","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,4,24,835,,,49724,"Proudly representing the people of Texas' 4th Congressional District in the U.S. House of Representatives. Member of @GOPoversight, @HASCRepublicans & @TFAADJT.",4218,"https://pbs.twimg.com/profile_images/1429163534823342080/gsBs0LPT_normal.jpg",670,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853831473662455809/pu/vid/avc1/1280x720/Z7G2T3qMziqAVCZs.mp4?tag=12"",""duration"":74566}]","2024-11-06T04:15:33.441Z","{""url"":""https://twitter.com/1343258042704527362/status/1853831549365404005""}","{""url"":""https://x.com/RepPatFallon"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853911016846848080","RepMattGaetz","Rep. Matt Gaetz","The original sin of the Biden-Harris administration was the repealing of Trump’s border policies! + +Still, without a hint of shame or irony, they blame Republicans for their border crisis.","2024-11-05T21:23:25.000Z","[""https://pbs.twimg.com/media/GbpqHcVWkAA1GM9.jpg""]","https://x.com/RepMattGaetz/status/1853911016846848080","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,115,244,1189,42868,,,2899690,"Official X for Congressman Matt Gaetz. Proud conservative who is honored to serve the First District of Florida. 🇺🇸",13465,"https://pbs.twimg.com/profile_images/1394339460649820162/o1gB5Wpg_normal.jpg",836,false,7,7,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:33.532Z","{""url"":""https://twitter.com/818948638890217473/status/1853911016846848080""}","{""url"":""https://x.com/RepMattGaetz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853875321692631163","RepJamesComer","Rep. James Comer","Contrary to Joe Biden’s comments, Americans who support an America First agenda are not GARBAGE. + +Even worse is the White House trying to cover up Biden’s statement. + +@RepJamesComer and I are demanding the Biden-Harris Administration retain documents and internal communications","2024-11-05T19:01:34.000Z",,"https://x.com/RepJamesComer/status/1853875321692631163","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2962813893"",""profile_name"":""Rep. Elise Stefanik"",""url"":""https://x.com/RepStefanik"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,102,0,,,,202401,"Chairman on House @GOPoversight. Proudly representing Kentucky in Congress. #KY1",4690,"https://pbs.twimg.com/profile_images/1408448254010875910/b5h3Hehs_normal.jpg",255,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:34.035Z","{""url"":""https://twitter.com/1274852794206388225/status/1853875321692631163""}","{""url"":""https://x.com/RepJamesComer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853934745098367176","RepLloydDoggett","Lloyd Doggett","Only two more hours to make your voice heard by voting. + +If you are in line by 7pm, you will be permitted to vote. + +Check to find the shortest wait times ⬇️","2024-11-05T22:57:42.000Z",,"https://x.com/RepLloydDoggett/status/1853934745098367176","{""post_id"":""1853867316854849706"",""profile_id"":""RepLloydDoggett"",""profile_name"":""Lloyd Doggett"",""data_posted"":""2010-06-09T23:53:50.000Z"",""url"":""https://x.com/RepLloydDoggett/status/1853867316854849706"",""description"":""Travis Country residents: As long as you are in line to vote by 7 pm CT, you can make your voice heard; your vote will be counted. Check the wait times of different polling locations here and don’t forget to bring along your family and friends ⬇️\nhttps://t.co/OjLQUxjcbJ"",""photos"":null,""videos"":null}",,0,3,7,1551,,,48924,"Representing Austin in Congress. Leading Democrats on the Ways and Means Health Subcommittee. Cyclist, Longhorn, husband to Libby, father, grandfather.",18562,"https://pbs.twimg.com/profile_images/1497313405459484678/Lb6TUWWB_normal.jpg",1345,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:34.308Z","{""url"":""https://twitter.com/153944899/status/1853934745098367176""}","{""url"":""https://x.com/RepLloydDoggett"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853826237946368236","RepRichHudson","Rep. Richard Hudson","Border Czar Kamala Harris cannot be trusted to solve the border crisis she created: + +❌Over 10.4 MILLION illegals let into the U.S. +❌Nearly 400 terror suspects illegally crossed +❌34.3 tons of fentanyl smuggled + +She has FAILED to secure the border and Americans don’t forget it.","2024-11-05T15:46:32.000Z",,"https://x.com/RepRichHudson/status/1853826237946368236","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,4,22,1857,,,27563,"Official Account of Congressman Richard Hudson (NC-09) +Member of @HouseGOP Leadership & @HouseCommerce",10930,"https://pbs.twimg.com/profile_images/1345780278325817359/-SGkyzAX_normal.jpg",2954,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:34.469Z","{""url"":""https://twitter.com/935033864/status/1853826237946368236""}","{""url"":""https://x.com/RepRichHudson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853628055744360738","RepMikeLevin","Rep. Mike Levin","Reminder that tomorrow is #ElectionDay! If you haven’t already, be sure to exercise your right to vote and make your way to the polls!","2024-11-05T02:39:01.000Z",,"https://x.com/RepMikeLevin/status/1853628055744360738","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,1,14,885,,"[""ElectionDay""]",21407,"Proud husband/dad, SoCal native, clean energy advocate, environmental attorney, Stanford/Duke alum. U.S. Representative for CA-49. Official account.",6162,"https://pbs.twimg.com/profile_images/1404886963023450115/FmeeX9we_normal.jpg",702,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:35.247Z","{""url"":""https://twitter.com/1072134139560620033/status/1853628055744360738""}","{""url"":""https://x.com/RepMikeLevin"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853875390181191736","RepMarkGreen","Rep. Mark Green","Grateful to the @FBI for stopping this attack against Nashville’s critical infrastructure.","2024-11-05T19:01:51.000Z",,"https://x.com/RepMarkGreen/status/1853875390181191736","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""17629860"",""profile_name"":""FBI"",""url"":""https://x.com/FBI"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",14,6,19,1126,"https://www.foxnews.com/us/fbi-thwarts-mans-alleged-plan-attack-nashville-power-grid-explosive-laden-drone?intcmp=tw_fnc",,98231,"Mark Green is a physician, businessman, and combat veteran representing Tennessee’s 7th District in Congress. Chairman of @HomelandGOP.",11852,"https://pbs.twimg.com/profile_images/1080478006169268224/aB7vw1E2_normal.jpg",1169,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853578426826821632/MB2e6H1u?format=jpg&name=orig""]",,"2024-11-06T04:15:35.362Z","{""url"":""https://twitter.com/1080477288955826176/status/1853875390181191736""}","{""url"":""https://x.com/RepMarkGreen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853801788299743368","RepPatFallon","Rep. Pat Fallon","Biden & Harris' failed foreign policy has contributed to multiple global crises. + +US adversaries can sense weakness and have taken the opportunity to work closer. + +This is bad news for US national security and stability abroad.","2024-11-05T14:09:22.000Z",,"https://x.com/RepPatFallon/status/1853801788299743368","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,1,5,559,"https://www.nationalreview.com/2024/11/americas-enemies-working-together-is-the-biden-harris-foreign-policy-legacy/",,49722,"Proudly representing the people of Texas' 4th Congressional District in the U.S. House of Representatives. Member of @GOPoversight, @HASCRepublicans & @TFAADJT.",4218,"https://pbs.twimg.com/profile_images/1429163534823342080/gsBs0LPT_normal.jpg",670,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:36.261Z","{""url"":""https://twitter.com/1343258042704527362/status/1853801788299743368""}","{""url"":""https://x.com/RepPatFallon"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853848269266337983","RepRichHudson","Rep. Richard Hudson","Foreign disasters, an open border, and record inflation all happened under Kamala Harris’s watch. + +Americans cannot afford 4 more years of her failures.","2024-11-05T17:14:04.000Z",,"https://x.com/RepRichHudson/status/1853848269266337983","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1267841066335682562"",""profile_name"":""Rep. Tom Tiffany"",""url"":""https://x.com/RepTiffany"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,15,0,,,,27562,"Official Account of Congressman Richard Hudson (NC-09) +Member of @HouseGOP Leadership & @HouseCommerce",10930,"https://pbs.twimg.com/profile_images/1345780278325817359/-SGkyzAX_normal.jpg",2954,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:36.973Z","{""url"":""https://twitter.com/935033864/status/1853848269266337983""}","{""url"":""https://x.com/RepRichHudson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853769985023234450","RepMarkAlford","Rep. Mark Alford","Your vote today will shape the course of human history. + +It’s our civic duty, responsibility, and right to vote. + +Make your voice heard:","2024-11-05T12:03:00.000Z",,"https://x.com/RepMarkAlford/status/1853769985023234450","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,2,14,678,"http://sos.mo.gov/elections/goVoteMissouri","[""GoVoteMissouri""]",9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:37.130Z","{""url"":""https://twitter.com/1612483604071727104/status/1853769985023234450""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853901716925927862","RepJimmyGomez","Rep. Jimmy Gomez","I secured over $900,000 for a new greenway and wetland habitat protection at Taylor Yard to make sure everyone has access to green spaces! 🌳 + +All Angelenos deserve to enjoy nature with their family, and I'm committed to protecting our environment for generations to come.","2024-11-05T20:46:27.000Z",,"https://x.com/RepJimmyGomez/status/1853901716925927862","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,2,0,,,,53682,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:37.427Z","{""url"":""https://twitter.com/2371339658/status/1853901716925927862""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853820614009581668","RepRichHudson","Rep. Richard Hudson","Choose your line.","2024-11-05T15:24:11.000Z","[""https://pbs.twimg.com/media/GboTEmPWMAEmUmg.jpg"",""https://pbs.twimg.com/media/GboTEl8W8AAMw6z.jpg""]","https://x.com/RepRichHudson/status/1853820614009581668","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1601030771124408325"",""profile_name"":""Rep. Mike Collins"",""url"":""https://x.com/RepMikeCollins"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1596,0,,,,27563,"Official Account of Congressman Richard Hudson (NC-09) +Member of @HouseGOP Leadership & @HouseCommerce",10930,"https://pbs.twimg.com/profile_images/1345780278325817359/-SGkyzAX_normal.jpg",2954,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:37.762Z","{""url"":""https://twitter.com/935033864/status/1853820614009581668""}","{""url"":""https://x.com/RepRichHudson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853923953322103123","RepDonBeyer","Rep. Don Beyer","Make sure your vote counts today, Virginia! Polls are open until 7pm EST tonight. Voting is fast and easy, so you still have time. + +Visit","2024-11-05T22:14:49.000Z",,"https://x.com/RepDonBeyer/status/1853923953322103123","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""54982829"",""profile_name"":""VA Dept of Elections"",""url"":""https://x.com/vaELECT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,12,0,,,,109989,"Representing Northern Virginia’s #VA08 in the U.S. House, serving on @JECDems @WaysMeansCmte. Co-Chair of @CaucusOnClimate. He/Him/His",41751,"https://pbs.twimg.com/profile_images/1640835265496334338/oPtsI8lt_normal.jpg",4949,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:38.208Z","{""url"":""https://twitter.com/2962868158/status/1853923953322103123""}","{""url"":""https://x.com/RepDonBeyer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853914115091112048","RepEricBurlison","Rep. Eric Burlison","Everything has gotten worse under Joe Biden and Kamala Harris. + +The border. +Inflation. +Crime. +National security. +Weaponization of government. +Gas prices. +The price of groceries.","2024-11-05T21:35:43.000Z",,"https://x.com/RepEricBurlison/status/1853914115091112048","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1074480192"",""profile_name"":""Senator Ted Cruz"",""url"":""https://x.com/SenTedCruz"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,743,0,,,,19143,"Father and Congressman Representing Missouri's 7th Congressional District - Member of @GOPoversight, @TransportGOP, @EdWorkforceCmte, & @FreedomCaucus",2901,"https://pbs.twimg.com/profile_images/1778908620383526913/qzl2gTS1_normal.jpg",548,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:38.273Z","{""url"":""https://twitter.com/1606342594765590528/status/1853914115091112048""}","{""url"":""https://x.com/RepEricBurlison"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853840689450107273","RepEricBurlison","Rep. Eric Burlison","Wow, the left is threatening to pull government contracts because Elon supports Trump. + +So much for saving ""Democracy."" + +The stakes couldn't be higher.","2024-11-05T16:43:57.000Z",,"https://x.com/RepEricBurlison/status/1853840689450107273","{""post_id"":""1853628191803351386"",""profile_id"":""nataliegwinters"",""profile_name"":""Natalie Winters"",""data_posted"":""2019-07-02T01:27:32.000Z"",""url"":""https://x.com/nataliegwinters/status/1853628191803351386"",""description"":""WATCH: Rachel Maddow says the government will pull all of @elonmusk’s contracts for supporting Trump. https://t.co/sdgTMjYOmv"",""photos"":null,""videos"":[{""url"":""https://video.twimg.com/amplify_video/1853628121376796672/vid/avc1/1280x720/yylNOqFurqfl958_.mp4?tag=16"",""duration"":34968}]}",,24,12,51,1477,,,19143,"Father and Congressman Representing Missouri's 7th Congressional District - Member of @GOPoversight, @TransportGOP, @EdWorkforceCmte, & @FreedomCaucus",2901,"https://pbs.twimg.com/profile_images/1778908620383526913/qzl2gTS1_normal.jpg",548,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:38.570Z","{""url"":""https://twitter.com/1606342594765590528/status/1853840689450107273""}","{""url"":""https://x.com/RepEricBurlison"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853804197709291699","RepHoulahan","Chrissy Houlahan","It's #ElectionDay in Pennsylvania. Polls are open from 7 a.m. to 8 p.m. Remember, if you are in line by 8 p.m., you can vote. + +Voting in person? Find your polling place:","2024-11-05T14:18:57.000Z",,"https://x.com/RepHoulahan/status/1853804197709291699","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""625624080"",""profile_name"":""PA Department of State"",""url"":""https://x.com/PAStateDept"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,75,0,,,"[""ElectionDay""]",34300,"Air Force veteran, engineer, entrepreneur, educator and the first woman ever to represent Pennsylvania's 6th District in Congress.",5920,"https://pbs.twimg.com/profile_images/1096426355594616832/L0qj7q5d_normal.jpg",392,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:38.637Z","{""url"":""https://twitter.com/1052896620797460481/status/1853804197709291699""}","{""url"":""https://x.com/RepHoulahan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853922813138071611","RepDonBacon","Rep. Don Bacon 🇺🇸✈️🏍️⭐️🎖️","We are truly honored to be recognized by the Congressional Management Foundation for our workplace environment.","2024-11-05T22:10:17.000Z","[""https://pbs.twimg.com/media/Gbp0-VsXIAAjdoL.jpg""]","https://x.com/RepDonBacon/status/1853922813138071611","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,11,0,5,1346,,,34293,"Serving the great people of NE-02 🇺🇸. Chair of Cyber Subcommittee. Married to Angie, 4 kids, 8 grandkids. Brig Gen ⭐️ USAF (Ret.) https://t.co/mkCpzgSLKb",24176,"https://pbs.twimg.com/profile_images/1449940828164608002/-jBLm6bc_normal.jpg",644,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:38.856Z","{""url"":""https://twitter.com/818975124460335106/status/1853922813138071611""}","{""url"":""https://x.com/RepDonBacon"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853809111810416950","RepMoskowitz","Congressman Jared Moskowitz","Happy #ElectionDay, Florida! Make sure you and your loved ones have a plan to vote today. Polls are open until 7pm ET, and you can find your polling place here:","2024-11-05T14:38:29.000Z",,"https://x.com/RepMoskowitz/status/1853809111810416950","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,36,175,3967,"https://dos.fl.gov/elections/for-voters/check-your-voter-status-and-polling-place/voter-precinct-lookup/","[""ElectionDay""]",68710,"Father, husband, sneaker head, and Congressman for Florida’s 23rd Congressional District.",1306,"https://pbs.twimg.com/profile_images/1660765307391168515/MhDJoxwN_normal.jpg",1165,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:38.866Z","{""url"":""https://twitter.com/1610009027743830018/status/1853809111810416950""}","{""url"":""https://x.com/RepMoskowitz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853858894600188181","RepMarkAlford","Rep. Mark Alford","In America’s history, there have only been 60 general elections where voters chose the President of the United States—the most powerful role in the world. + +Each vote shapes the future and holds the weight of history. Don’t miss this incredible responsibility. + +Get out and vote!","2024-11-05T17:56:18.000Z",,"https://x.com/RepMarkAlford/status/1853858894600188181","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,3,13,720,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:39.092Z","{""url"":""https://twitter.com/1612483604071727104/status/1853858894600188181""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853600614259044513","RepDonBeyer","Rep. Don Beyer","Saddened as we say goodbye to Quincy Jones, a musical genius whose influence shaped the soundtrack to so many of our lives. His groundbreaking work transformed American music, touching hearts and generations.","2024-11-05T00:49:59.000Z","[""https://pbs.twimg.com/media/GblP7t5XkAETtVR.jpg""]","https://x.com/RepDonBeyer/status/1853600614259044513","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,7,80,3900,,,109989,"Representing Northern Virginia’s #VA08 in the U.S. House, serving on @JECDems @WaysMeansCmte. Co-Chair of @CaucusOnClimate. He/Him/His",41751,"https://pbs.twimg.com/profile_images/1640835265496334338/oPtsI8lt_normal.jpg",4949,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:39.275Z","{""url"":""https://twitter.com/2962868158/status/1853600614259044513""}","{""url"":""https://x.com/RepDonBeyer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853739282793648492","RepMarkAlford","Rep. Mark Alford","Today is Election Day, Missouri! Make sure your voice is heard—get out there and vote! + +Find your polling place here:","2024-11-05T10:01:00.000Z",,"https://x.com/RepMarkAlford/status/1853739282793648492","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,7,254,"http://sos.mo.gov/elections/goVoteMissouri","[""GoVoteMissouri""]",9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:39.635Z","{""url"":""https://twitter.com/1612483604071727104/status/1853739282793648492""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853841653750214808","RepMGP","Rep. Marie Gluesenkamp Perez","Happy #ElectionDay! You have until 8 PM tonight to drop your ballot at a dropbox or your county elections office. + +Staying engaged in our electoral process is how we make positive changes for our communities.","2024-11-05T16:47:47.000Z",,"https://x.com/RepMGP/status/1853841653750214808","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,10,37,1281,"https://www.sos.wa.gov/elections/voters/voter-registration/drop-box-and-voting-center-locations","[""ElectionDay""]",12197,"Southwest Washington’s independent voice in Congress. Auto repair shop co-founder, working mom, lives in the woods. #WA03",1134,"https://pbs.twimg.com/profile_images/1610724392979365896/Wai4gLi1_normal.jpg",235,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:40.245Z","{""url"":""https://twitter.com/1603127874512453632/status/1853841653750214808""}","{""url"":""https://x.com/RepMGP"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853777568354242769","RepDonBeyer","Rep. Don Beyer","The November General Election is here! Polls open at 6am EST. Visit","2024-11-05T12:33:08.000Z",,"https://x.com/RepDonBeyer/status/1853777568354242769","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""54982829"",""profile_name"":""VA Dept of Elections"",""url"":""https://x.com/vaELECT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,44,0,,"http://vote.virginia.gov/",,109989,"Representing Northern Virginia’s #VA08 in the U.S. House, serving on @JECDems @WaysMeansCmte. Co-Chair of @CaucusOnClimate. He/Him/His",41751,"https://pbs.twimg.com/profile_images/1640835265496334338/oPtsI8lt_normal.jpg",4949,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:40.590Z","{""url"":""https://twitter.com/2962868158/status/1853777568354242769""}","{""url"":""https://x.com/RepDonBeyer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853801424166986074","RepHaleyStevens","Rep. Haley Stevens","Happy Election Day, Michigan! It’s not too late to make your voice heard. Polls are open until 8 pm, most public transportation is offering free rides, and you can still register today!","2024-11-05T14:07:56.000Z",,"https://x.com/RepHaleyStevens/status/1853801424166986074","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,0,7,702,,,43638,"Congresswoman for Michigan's 11th District. Ranking Member, Research and Technology Subcommittee, @sciencedems. @edworkforcedems. @cmteonccpdems.",7419,"https://pbs.twimg.com/profile_images/1080877539986497536/65XghImd_normal.jpg",601,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:41.237Z","{""url"":""https://twitter.com/1076161611033968640/status/1853801424166986074""}","{""url"":""https://x.com/RepHaleyStevens"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853860057693200438","RepPatFallon","Rep. Pat Fallon","It’s no question that the CCP is the greatest threat facing America today. + +But for four years, the Biden-Harris Admin has failed to take Communist China's belligerence seriously. + +Peace and security depends on standing strong against the CCP, at home and abroad.","2024-11-05T18:00:55.000Z",,"https://x.com/RepPatFallon/status/1853860057693200438","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,13,21,78,9890,,,49722,"Proudly representing the people of Texas' 4th Congressional District in the U.S. House of Representatives. Member of @GOPoversight, @HASCRepublicans & @TFAADJT.",4218,"https://pbs.twimg.com/profile_images/1429163534823342080/gsBs0LPT_normal.jpg",670,false,4,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853858763297476609/pu/vid/avc1/1280x720/F9hcbUj4DL-DC86x.mp4?tag=12"",""duration"":39833}]","2024-11-06T04:15:42.596Z","{""url"":""https://twitter.com/1343258042704527362/status/1853860057693200438""}","{""url"":""https://x.com/RepPatFallon"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853819800616579112","RepStricklandWA","Congresswoman Marilyn Strickland","Today is election day, and it's up to you to make your voice heard. + +Visit","2024-11-05T15:20:57.000Z","[""https://pbs.twimg.com/media/GboXFRGXMAAv7e0.jpg""]","https://x.com/RepStricklandWA/status/1853819800616579112","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,5,12,468,"http://votewa.gov/",,8667,"Proudly representing #WA10. Fighting for a nation that is safe, just and secure for all. @TheBlackCaucus @CAPAC @NewDemCoalition @TransportDems @HASCDemocrats",3168,"https://pbs.twimg.com/profile_images/1346607547139108866/AqSREKB0_normal.jpg",791,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:42.595Z","{""url"":""https://twitter.com/1343646545955213312/status/1853819800616579112""}","{""url"":""https://x.com/RepStricklandWA"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853777501442490841","RepDonBeyer","Rep. Don Beyer","It's Election Day! Polls are open today, November 5th, 2024, from 6am to 7pm. To find your polling place or view a sample ballot, visit our website:","2024-11-05T12:32:52.000Z",,"https://x.com/RepDonBeyer/status/1853777501442490841","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1141520519335948289"",""profile_name"":""AlexandriaVA Elections"",""url"":""https://x.com/AlexVAElections"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4,0,,,,109989,"Representing Northern Virginia’s #VA08 in the U.S. House, serving on @JECDems @WaysMeansCmte. Co-Chair of @CaucusOnClimate. He/Him/His",41751,"https://pbs.twimg.com/profile_images/1640835265496334338/oPtsI8lt_normal.jpg",4949,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:42.779Z","{""url"":""https://twitter.com/2962868158/status/1853777501442490841""}","{""url"":""https://x.com/RepDonBeyer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853952314236649571","RepPressley","Congresswoman Ayanna Pressley","🚨Polls are open until 8:00pm in Massachusetts. + +So if you haven't voted yet, it's not too late to cast your ballot. + +Find your polling location and make your voice heard:","2024-11-06T00:07:31.000Z",,"https://x.com/RepPressley/status/1853952314236649571","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,18,60,6730,"http://voteinma.com/",,527818,"Proudly serving the Massachusetts 7th. @FSCDems & @OversightDems Member. She/Her.",9406,"https://pbs.twimg.com/profile_images/1399754594192920583/C_lXcydg_normal.jpg",1038,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:42.924Z","{""url"":""https://twitter.com/1080584229510172678/status/1853952314236649571""}","{""url"":""https://x.com/RepPressley"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853824350006202580","RepKatiePorter","Rep. Katie Porter","It’s Election Day, America! 🇺🇸 + +If you haven’t already voted, make sure to head to the polls by the time they close in your state. + +Visit","2024-11-05T15:39:02.000Z",,"https://x.com/RepKatiePorter/status/1853824350006202580","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,25,164,916,34726,"http://www.vote.gov/",,1254393,"Minivan-driving single mom, law professor, consumer advocate 🚙👩🏻‍🏫 Usually carrying a whiteboard, always bringing the receipts 🧾",4126,"https://pbs.twimg.com/profile_images/1138172373390307329/vfzeyP7D_normal.png",97,false,3,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853823100866924544/vid/avc1/1280x720/Pua_O4HFM2CK3wKc.mp4?tag=14"",""duration"":50383}]","2024-11-06T04:15:43.214Z","{""url"":""https://twitter.com/1081222837459996672/status/1853824350006202580""}","{""url"":""https://x.com/RepKatiePorter"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853869652201644308","RepDavidValadao","Rep. David Valadao","Today is Election Day! 🇺🇸 + +In America, voting is one of our most important civic duties. Californians can find information on how to make their voice heard here:","2024-11-05T18:39:02.000Z","[""https://pbs.twimg.com/media/GbpEnxfaMAA3vKL.jpg""]","https://x.com/RepDavidValadao/status/1853869652201644308","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,14,3,11,1021,"https://www.sos.ca.gov/elections/polling-place",,24083,"Proudly Representing California's 22nd Congressional District. Serving the Valley on @HouseAppropsGOP & @HouseBudgetGOP",2906,"https://pbs.twimg.com/profile_images/1346859792107757569/qQmpUvUZ_normal.jpg",521,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:43.280Z","{""url"":""https://twitter.com/1128514404/status/1853869652201644308""}","{""url"":""https://x.com/RepDavidValadao"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853754196580864305","RepJahanaHayes","Jahana Hayes","Election Day is here! + +Polls are open in Connecticut until 8 PM. + +Visit:","2024-11-05T11:00:16.000Z","[""https://pbs.twimg.com/media/GbnbmeqWIAA3BV8.jpg""]","https://x.com/RepJahanaHayes/status/1853754196580864305","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,14,10,20,1117,"https://portaldir.ct.gov/sots/LookUp.aspx",,43396,"Mom, Educator, Congresswoman for CT-05 #HayesInTheHouse",6947,"https://pbs.twimg.com/profile_images/1268034070224572416/9IZWqA1Z_normal.jpg",276,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:43.309Z","{""url"":""https://twitter.com/1082086081238102018/status/1853754196580864305""}","{""url"":""https://x.com/RepJahanaHayes"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853810471737925887","RepHarshbarger","Rep. Diana Harshbarger","The Biden-Harris Administration has failed to remove 99.7% of the illegal immigrants released into the United States. + +Now, Americans are having to foot the bill for their food, rent, and healthcare. + +America cannot afford this crisis any longer.","2024-11-05T14:43:53.000Z","[""https://pbs.twimg.com/media/GboOzDSXYAAb01y.jpg""]","https://x.com/RepHarshbarger/status/1853810471737925887","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,2,12,393,,,21418,"Proudly representing the great people of East Tennessee. Serving on @HouseCommerce.",2803,"https://pbs.twimg.com/profile_images/1686729094728208385/tHc8tPcS_normal.jpg",1130,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:43.677Z","{""url"":""https://twitter.com/1345787285179162624/status/1853810471737925887""}","{""url"":""https://x.com/RepHarshbarger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853814528196116659","RepRoKhanna","Rep. Ro Khanna","Contributing $2.65 trillion to the economy & employing nearly 13 million workers - manufacturing is worth the investment. + +We need to invent, build & buy America with investments in modern steel, aluminum & the auto industry.","2024-11-05T15:00:00.000Z",,"https://x.com/RepRoKhanna/status/1853814528196116659","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,5,31,2065,,,129952,"Silicon Valley's CA-17. New economic patriotism & restoring American manufacturing. Pro working families. Ending endless wars. No PAC $. He/Him.",14486,"https://pbs.twimg.com/profile_images/1236008748130406400/6RLY4LrX_normal.jpg",2439,false,1,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:43.654Z","{""url"":""https://twitter.com/816298918468259841/status/1853814528196116659""}","{""url"":""https://x.com/RepRoKhanna"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853895773710352728","RepRichHudson","Rep. Richard Hudson","America is in decline BECAUSE of Kamala Harris.","2024-11-05T20:22:50.000Z","[""https://pbs.twimg.com/media/GbpSjOdWgAMETHB.jpg"",""https://pbs.twimg.com/media/GbpSjeeWMAAXo5C.jpg"",""https://pbs.twimg.com/media/GbpSj1qXAAEKUHX.jpg"",""https://pbs.twimg.com/media/GbpSkJeXQAEl7R4.jpg""]","https://x.com/RepRichHudson/status/1853895773710352728","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""827279765287559171"",""profile_name"":""Speaker Mike Johnson"",""url"":""https://x.com/SpeakerJohnson"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,372,0,,,,27563,"Official Account of Congressman Richard Hudson (NC-09) +Member of @HouseGOP Leadership & @HouseCommerce",10930,"https://pbs.twimg.com/profile_images/1345780278325817359/-SGkyzAX_normal.jpg",2954,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:43.721Z","{""url"":""https://twitter.com/935033864/status/1853895773710352728""}","{""url"":""https://x.com/RepRichHudson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853777459671413041","RepDonBeyer","Rep. Don Beyer","🚨🗳Today, Nov. 5 is Election Day! Polls are open 6am-7pm. You must vote at your assigned polling place on Election Day!! Find your polling place:","2024-11-05T12:32:42.000Z",,"https://x.com/RepDonBeyer/status/1853777459671413041","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""59243142"",""profile_name"":""Arlington Elections"",""url"":""https://x.com/ArlingtonVotes"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,16,0,,,,109989,"Representing Northern Virginia’s #VA08 in the U.S. House, serving on @JECDems @WaysMeansCmte. Co-Chair of @CaucusOnClimate. He/Him/His",41751,"https://pbs.twimg.com/profile_images/1640835265496334338/oPtsI8lt_normal.jpg",4949,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:43.796Z","{""url"":""https://twitter.com/2962868158/status/1853777459671413041""}","{""url"":""https://x.com/RepDonBeyer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853867318180286898","RepLloydDoggett","Lloyd Doggett","Williamson Country residents: As long as you are in line to vote by 7 pm CT, you can make your voice heard; your vote will be counted. Check the wait times of different polling locations here and don’t forget to bring along your family and friends ⬇️","2024-11-05T18:29:46.000Z",,"https://x.com/RepLloydDoggett/status/1853867318180286898","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,3,6,440,"https://www.wilcotx.gov/elections",,48924,"Representing Austin in Congress. Leading Democrats on the Ways and Means Health Subcommittee. Cyclist, Longhorn, husband to Libby, father, grandfather.",18562,"https://pbs.twimg.com/profile_images/1497313405459484678/Lb6TUWWB_normal.jpg",1345,false,0,0,"{""post_id"":""1853867316854849706"",""profile_id"":""153944899"",""profile_name"":""RepLloydDoggett""}",,,"2024-11-06T04:15:43.961Z","{""url"":""https://twitter.com/153944899/status/1853867318180286898""}","{""url"":""https://x.com/RepLloydDoggett"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853874928644153777","RepRoKhanna","Rep. Ro Khanna","Over half of Americans believe most elected officials ran for office to make a profit. + +It's time to pass my reform plan to: +-Banning stock trading by members of Congress +-Banning members from becoming lobbyists +-No PAC or lobbyist donations +-Term limits for Congress & SCOTUS","2024-11-05T19:00:00.000Z",,"https://x.com/RepRoKhanna/status/1853874928644153777","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,32,36,210,6003,,,129952,"Silicon Valley's CA-17. New economic patriotism & restoring American manufacturing. Pro working families. Ending endless wars. No PAC $. He/Him.",14486,"https://pbs.twimg.com/profile_images/1236008748130406400/6RLY4LrX_normal.jpg",2439,false,6,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:44.532Z","{""url"":""https://twitter.com/816298918468259841/status/1853874928644153777""}","{""url"":""https://x.com/RepRoKhanna"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853817673202729198","RepWebster","Daniel Webster","🚨🚨🚨 +""If anything, would you have done something differently than President Biden during the past four years?"" + +Kamala Harris: ""There is not a thing that comes to mind."" + +The Biden-Harris Administration has CRUSHED Americans. We CANNOT afford another 4 years of a FAILED FAR","2024-11-05T15:12:30.000Z",,"https://x.com/RepWebster/status/1853817673202729198","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,262,0,,,,29751,"A family man and small-business owner who is dedicated to serving the citizens of Central Florida with honor and integrity.",5094,"https://pbs.twimg.com/profile_images/1362512985/Twitter_Pic_2_normal.png",333,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:44.828Z","{""url"":""https://twitter.com/281540744/status/1853817673202729198""}","{""url"":""https://x.com/RepWebster"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853888653342216582","RepPatRyanNY","Rep. Pat Ryan","From safeguarding Mifepristone with my Protecting Reproductive Freedom Act to combating the far-right's plans for a nationwide abortion ban by helping lead the Stop Comstock Act, let me be clear: + +I will always fight to protect women's reproductive freedom.","2024-11-05T19:54:33.000Z","[""https://pbs.twimg.com/media/GbpV3_7XkAADd-M.jpg""]","https://x.com/RepPatRyanNY/status/1853888653342216582","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,6,18,872,,,7318,"Dad. Husband. Veteran. Former Ulster County Exec. Working to solve problems & deliver results for #NY18.",1684,"https://pbs.twimg.com/profile_images/1569785034567045122/7F2ybgq7_normal.jpg",347,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:44.937Z","{""url"":""https://twitter.com/1569400849130049537/status/1853888653342216582""}","{""url"":""https://x.com/RepPatRyanNY"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853777443363885283","RepDonBeyer","Rep. Don Beyer","Polls are now OPEN! + +You can vote at your assigned precinct until 7 p.m. You can also register same day. + +More details in our Guide to Election Day:","2024-11-05T12:32:38.000Z",,"https://x.com/RepDonBeyer/status/1853777443363885283","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""117211838"",""profile_name"":""Fairfax County Votes"",""url"":""https://x.com/fairfaxvotes"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,40,0,,,,109989,"Representing Northern Virginia’s #VA08 in the U.S. House, serving on @JECDems @WaysMeansCmte. Co-Chair of @CaucusOnClimate. He/Him/His",41751,"https://pbs.twimg.com/profile_images/1640835265496334338/oPtsI8lt_normal.jpg",4949,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:45.007Z","{""url"":""https://twitter.com/2962868158/status/1853777443363885283""}","{""url"":""https://x.com/RepDonBeyer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853822910336557539","RepRaulRuizMD","Congressman Raul Ruiz, M.D.","Today is Election Day. Make a plan to vote and cast your ballot today. +For more information, visit:","2024-11-05T15:33:18.000Z","[""https://pbs.twimg.com/media/GboaG_-XMAAgY8b.jpg"",""https://pbs.twimg.com/media/GboaHAHWQAA0doO.jpg""]","https://x.com/RepRaulRuizMD/status/1853822910336557539","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,3,4,342,"https://www.sos.ca.gov/elections",,29874,"Emergency medicine physician and public servant. Serving California's 25th Congressional District.",6159,"https://pbs.twimg.com/profile_images/1808176120631906304/obu8x9Hx_normal.jpg",311,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:44.986Z","{""url"":""https://twitter.com/1089859058/status/1853822910336557539""}","{""url"":""https://x.com/RepRaulRuizMD"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853869869017465296","RepRichHudson","Rep. Richard Hudson","Laken Riley +Jocelyn Nungaray +Rachel Morin +Kayla Hamilton + +These innocent women were brutally murdered by illegals and Border Czar Kamala Harris did NOTHING to stop it.","2024-11-05T18:39:54.000Z",,"https://x.com/RepRichHudson/status/1853869869017465296","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,7,49,1976,,,27563,"Official Account of Congressman Richard Hudson (NC-09) +Member of @HouseGOP Leadership & @HouseCommerce",10930,"https://pbs.twimg.com/profile_images/1345780278325817359/-SGkyzAX_normal.jpg",2954,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:45.033Z","{""url"":""https://twitter.com/935033864/status/1853869869017465296""}","{""url"":""https://x.com/RepRichHudson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853803332189434260","RepRosendale","Matt Rosendale","In our country we have the right to vote, but we have the responsibility to cast an informed vote. + +I urge all Montanans to go out and do their part today! 🇺🇸","2024-11-05T14:15:31.000Z",,"https://x.com/RepRosendale/status/1853803332189434260","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,11,21,118,1826,,,72437,"Representing the State of Montana. Husband, Father, Sportsman.",4161,"https://pbs.twimg.com/profile_images/1517167423534682112/ektN0Uw__normal.jpg",344,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:44.937Z","{""url"":""https://twitter.com/1344751420139040783/status/1853803332189434260""}","{""url"":""https://x.com/RepRosendale"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842020227285483","RepHarshbarger","Rep. Diana Harshbarger","Two-thirds of Americans are living paycheck to paycheck. + +Under this administration, the American dream grows further and further out of reach.","2024-11-05T16:49:14.000Z","[""https://pbs.twimg.com/media/GborfhpXIAAcz3v.jpg""]","https://x.com/RepHarshbarger/status/1853842020227285483","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,2,272,,,21418,"Proudly representing the great people of East Tennessee. Serving on @HouseCommerce.",2803,"https://pbs.twimg.com/profile_images/1686729094728208385/tHc8tPcS_normal.jpg",1130,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:45.355Z","{""url"":""https://twitter.com/1345787285179162624/status/1853842020227285483""}","{""url"":""https://x.com/RepHarshbarger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853805560828674131","RepShriThanedar","Congressman Shri Thanedar","Polls are now open across Michigan! + +Go make your voices heard for the future of our nation!  + +Polls will be open until 8 PM. Go to","2024-11-05T14:24:22.000Z",,"https://x.com/RepShriThanedar/status/1853805560828674131","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,8,749,"https://mvic.sos.state.mi.us/Voter/index",,6524,"Proud Detroiter, Father, Grandfather, Scientist, Author and Congressman representing Michigan’s 13th District. #MI13",1041,"https://pbs.twimg.com/profile_images/1610721383389986824/67qM8-TM_normal.jpg",243,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:45.482Z","{""url"":""https://twitter.com/1610719275265802253/status/1853805560828674131""}","{""url"":""https://x.com/RepShriThanedar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853970443272921144","RepMillsPress","Rep. Cory Mills 🇺🇸","Thank you to the great people of Florida’s 7th Congressional District for the continued opportunity to serve you in the United States House of Representatives. I am deeply honored by your trust. + +In the 119th Congress, I look forward to securing even more resources and delivering greater results for Florida’s 7th District. I’ll continue fighting for funding, economic growth, and protecting our rights, always putting America, Americans, and American interests first.","2024-11-06T01:19:33.000Z","[""https://pbs.twimg.com/media/GbqgSrFWMAQzSFt.jpg""]","https://x.com/RepMillsPress/status/1853970443272921144","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,770,1873,13627,278313,,,39071,"U.S. Congressman (FL-07); Bronze Star Recipient; Army Combat Veteran; House Armed Services & Foreign Affairs Committee Member.",1190,"https://pbs.twimg.com/profile_images/1637446599340171264/SdJbEixl_normal.jpg",410,false,91,45,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:45.767Z","{""url"":""https://twitter.com/1611138873496637440/status/1853970443272921144""}","{""url"":""https://x.com/RepMillsPress"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853757902923632673","RepMillsPress","Rep. Cory Mills 🇺🇸","If you haven't already, make a plan to vote today! Polls are open from 7 AM to 7 PM. Find your nearest polling location, check the hours, and bring your ID. Make your voices heard by exercising your civic duty. 🗳️🇺🇸","2024-11-05T11:14:59.000Z","[""https://pbs.twimg.com/media/Gbne_Q-XAAAivfl.jpg""]","https://x.com/RepMillsPress/status/1853757902923632673","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,38,99,391,7011,,,39071,"U.S. Congressman (FL-07); Bronze Star Recipient; Army Combat Veteran; House Armed Services & Foreign Affairs Committee Member.",1190,"https://pbs.twimg.com/profile_images/1637446599340171264/SdJbEixl_normal.jpg",410,false,2,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:45.799Z","{""url"":""https://twitter.com/1611138873496637440/status/1853757902923632673""}","{""url"":""https://x.com/RepMillsPress"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853853191181611244","RepTroyCarter","Congressman Troy A. Carter","We voted, #Louisiana! Have you? Polls are open until 8 PM, find your polling location here:","2024-11-05T17:33:38.000Z","[""https://pbs.twimg.com/media/Gbo1paNXYAARIYj.jpg"",""https://pbs.twimg.com/media/Gbo1paIXIAAMEWp.jpg"",""https://pbs.twimg.com/media/Gbo1paNWoAENStn.jpg""]","https://x.com/RepTroyCarter/status/1853853191181611244","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,3,17,717,"https://voterportal.sos.la.gov/Home/VoterLogin","[""Louisiana"",""ElectionDay""]",7625,"Proudly representing Louisiana’s 2nd Congressional District. Member, @TransportDems & @HomelandDems #TheVoiceOfThePeople",5307,"https://pbs.twimg.com/profile_images/1633466393701253122/enspNfVT_normal.jpg",3574,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:46.234Z","{""url"":""https://twitter.com/1352760304271241218/status/1853853191181611244""}","{""url"":""https://x.com/RepTroyCarter"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853849518476841341","RepPatRyanNY","Rep. Pat Ryan","Freedom, equality, & democracy - our nation’s core principles were revolutionary to the world at the time of its founding. + +Today, each one of us is called to uphold these principles for future generations by exercising our right to vote. + +Please do, no matter who it's for.","2024-11-05T17:19:02.000Z","[""https://pbs.twimg.com/media/GboyF9aWQAALQgQ.jpg""]","https://x.com/RepPatRyanNY/status/1853849518476841341","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,8,327,,,7318,"Dad. Husband. Veteran. Former Ulster County Exec. Working to solve problems & deliver results for #NY18.",1684,"https://pbs.twimg.com/profile_images/1569785034567045122/7F2ybgq7_normal.jpg",347,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:48.181Z","{""url"":""https://twitter.com/1569400849130049537/status/1853849518476841341""}","{""url"":""https://x.com/RepPatRyanNY"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853812359153717590","RepRonnyJackson","Ronny Jackson","TEXAS! Get out and vote today! Polls close at 7 PM!","2024-11-05T14:51:23.000Z",,"https://x.com/RepRonnyJackson/status/1853812359153717590","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,14,72,1601,,,32868,"Proudly serving the people of #TX13 in Congress.",1805,"https://pbs.twimg.com/profile_images/1345773612226277377/9Us7FmwH_normal.jpg",168,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:48.338Z","{""url"":""https://twitter.com/1341903465610686464/status/1853812359153717590""}","{""url"":""https://x.com/RepRonnyJackson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853863863512678879","RepJoshHarder","Rep. Josh Harder","Today’s Election Day! Make sure to make your voice heard! + +Polls are open from 7AM - 8PM.","2024-11-05T18:16:02.000Z",,"https://x.com/RepJoshHarder/status/1853863863512678879","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,5,440,"http://sos.ca.gov/elections/polling-place",,21926,"Pam’s husband. Lillian and Karina’s dad. Fighting for San Joaquin families in Congress on @AppropsDems",4474,"https://pbs.twimg.com/profile_images/1387500888479125506/ruDTJnzr_normal.jpg",610,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:48.853Z","{""url"":""https://twitter.com/1080851152151953410/status/1853863863512678879""}","{""url"":""https://x.com/RepJoshHarder"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853803632744927379","RepTerriSewell","Rep. Terri A. Sewell","If anyone knows the power of the vote, it is the people of Alabama’s 7th Congressional District. 🗳️ + +Polls are open until 7pm in Alabama. Check your polling place and make your voice heard!","2024-11-05T14:16:42.000Z","[""https://pbs.twimg.com/media/GboIk7DWkAAShnZ.jpg""]","https://x.com/RepTerriSewell/status/1853803632744927379","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,39,135,2271,"https://myinfo.alabamavotes.gov/voterview",,55740,"Selma native, U.S. Congresswoman working #ForThePeople of Alabama's 7th District https://t.co/0uBlTm34B9",10329,"https://pbs.twimg.com/profile_images/1365353497533775876/xnkOsYz7_normal.jpg",4305,false,1,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:49.567Z","{""url"":""https://twitter.com/381152398/status/1853803632744927379""}","{""url"":""https://x.com/RepTerriSewell"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853590017966231765","RepRichHudson","Rep. Richard Hudson","Harris-Biden destroyed our energy independence, and you’re paying the price. + +But there’s good news. + +@HouseGOP has accomplished a lot to unleash American energy and lower costs — and we’re just getting started. + +My op-ed with @jharrell in @DC_Reporter 👇🏻","2024-11-05T00:07:52.000Z",,"https://x.com/RepRichHudson/status/1853590017966231765","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""15031183"",""profile_name"":""Jeremy Harrell"",""url"":""https://x.com/jharrell"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1788648071120752640"",""profile_name"":""Washington Reporter"",""url"":""https://x.com/DC_Reporter"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",3,5,18,2388,"https://washingtonreporter.news/op-ed/op-ed-rep-richard-hudson-and-jeremy-harrell-energy-prices-are-on-your-ballot/",,27563,"Official Account of Congressman Richard Hudson (NC-09) +Member of @HouseGOP Leadership & @HouseCommerce",10930,"https://pbs.twimg.com/profile_images/1345780278325817359/-SGkyzAX_normal.jpg",2954,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853525774592045056/Tbnzx3ov?format=jpg&name=orig""]",,"2024-11-06T04:15:49.610Z","{""url"":""https://twitter.com/935033864/status/1853590017966231765""}","{""url"":""https://x.com/RepRichHudson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853804677185302532","RepJerryNadler","Rep. Nadler","🗳️🗽Today is Election Day, New York! As a reminder, mail in ballots must be postmarked by TODAY and are accepted at any poll site. Polls are open until 9 PM, find yours at","2024-11-05T14:20:51.000Z",,"https://x.com/RepJerryNadler/status/1853804677185302532","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,18,13,42,3819,"http://findmypollsite.vote.nyc/",,443707,"Representing the west & east sides of Manhattan. Proudly serving as the Ranking Member of @HouseJudiciary.",11070,"https://pbs.twimg.com/profile_images/1269965882924679170/9qhyRU7F_normal.jpg",2106,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:49.624Z","{""url"":""https://twitter.com/40302336/status/1853804677185302532""}","{""url"":""https://x.com/RepJerryNadler"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853923961622364168","RepDonBeyer","Rep. Don Beyer","Polls close in the November 5th, 2024 Election at 7pm! To find your polling place or view a sample ballot, visit our website:","2024-11-05T22:14:51.000Z",,"https://x.com/RepDonBeyer/status/1853923961622364168","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1141520519335948289"",""profile_name"":""AlexandriaVA Elections"",""url"":""https://x.com/AlexVAElections"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,6,0,,,,109980,"Representing Northern Virginia’s #VA08 in the U.S. House, serving on @JECDems @WaysMeansCmte. Co-Chair of @CaucusOnClimate. He/Him/His",41751,"https://pbs.twimg.com/profile_images/1640835265496334338/oPtsI8lt_normal.jpg",4949,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:49.684Z","{""url"":""https://twitter.com/2962868158/status/1853923961622364168""}","{""url"":""https://x.com/RepDonBeyer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853854503130513561","RepTerriSewell","Rep. Terri A. Sewell","ALABAMA: Make sure to bring one of the following forms of ID to the polls! 🗳️","2024-11-05T17:38:51.000Z","[""https://pbs.twimg.com/media/Gbo2zhEXUAAv6gN.jpg""]","https://x.com/RepTerriSewell/status/1853854503130513561","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,30,50,1300,,,55735,"Selma native, U.S. Congresswoman working #ForThePeople of Alabama's 7th District https://t.co/0uBlTm34B9",10329,"https://pbs.twimg.com/profile_images/1365353497533775876/xnkOsYz7_normal.jpg",4305,false,0,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:50.595Z","{""url"":""https://twitter.com/381152398/status/1853854503130513561""}","{""url"":""https://x.com/RepTerriSewell"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853851924497666356","RepMichaelGuest","Congressman Michael Guest","Today, Haley and I exercised our right to vote. I’m proud to be an American and encourage all Americans to vote today.","2024-11-05T17:28:36.000Z","[""https://pbs.twimg.com/media/Gbo0ftLXoAAX8gP.jpg""]","https://x.com/RepMichaelGuest/status/1853851924497666356","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,0,17,781,,,14037,"Rep. for the MS Third Congressional District in the U.S. House of Representatives. Vice Chair of @HomelandGOP. Christian. Husband. Father.",2828,"https://pbs.twimg.com/profile_images/1111288039278628864/Bpkmergx_normal.png",782,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:51.281Z","{""url"":""https://twitter.com/1081243468327018496/status/1853851924497666356""}","{""url"":""https://x.com/RepMichaelGuest"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853590552429904246","RepTenney","Rep. Claudia Tenney","FIRST, they came for our gas-powered cars.  + +THEN, they came for our kitchen appliances.  + +NOW, they are coming for our pets. + +Governor Hochul and Albany Democrats continue to try & control every aspect of New Yorkers' lives.","2024-11-05T00:10:00.000Z",,"https://x.com/RepTenney/status/1853590552429904246","{""post_id"":""1852241706671882451"",""profile_id"":""FoxNews"",""profile_name"":""Fox News"",""data_posted"":""2007-03-17T19:01:26.000Z"",""url"":""https://x.com/FoxNews/status/1852241706671882451"",""description"":""Peanut the pet squirrel taken away by New York state officials from adopted home, may be euthanized https://t.co/TVC3CPVvHT"",""photos"":null,""videos"":null}",,39,139,289,6544,,,44344,"Official Twitter. Honored to represent #NY24. Member of @WaysandMeansGOP. Co-Chair #ElectionIntegrityCaucus. For updates visit https://t.co/dwIltL8lOk.",9011,"https://pbs.twimg.com/profile_images/1505230652878331906/6mWJzscD_normal.jpg",648,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:51.455Z","{""url"":""https://twitter.com/797201048490430465/status/1853590552429904246""}","{""url"":""https://x.com/RepTenney"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853833213032235060","RepTenney","Rep. Claudia Tenney","As the co-chair of the #ElectionIntegrityCaucus, I'm eager to see the positive impact @HouseAdmin's election observer program will have on ensuring our elections are free, fair, & transparent. + +These congressional observers are at election sites across the country to record on-the-ground, factual information to use during contested elections.","2024-11-05T16:14:15.000Z",,"https://x.com/RepTenney/status/1853833213032235060","{""post_id"":""1853545553130385898"",""profile_id"":""HouseAdmin"",""profile_name"":""House Admin. Committee GOP"",""data_posted"":""2010-12-08T21:58:36.000Z"",""url"":""https://x.com/HouseAdmin/status/1853545553130385898"",""description"":""Today, Congressional staff are deployed all around the country to serve as Designated Congressional Election Observers.\n\nThis is the largest Election Observer Program in history. Check out where our Observers are located: https://t.co/pUUatvnpbe"",""photos"":[""https://pbs.twimg.com/media/GbkdwkKXkAIfhFn.jpg""],""videos"":null}","[{""profile_id"":""224391627"",""profile_name"":""House Admin. Committee GOP"",""url"":""https://x.com/HouseAdmin"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",15,16,44,5922,,"[""ElectionIntegrityCaucus""]",44344,"Official Twitter. Honored to represent #NY24. Member of @WaysandMeansGOP. Co-Chair #ElectionIntegrityCaucus. For updates visit https://t.co/dwIltL8lOk.",9011,"https://pbs.twimg.com/profile_images/1505230652878331906/6mWJzscD_normal.jpg",648,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:51.845Z","{""url"":""https://twitter.com/797201048490430465/status/1853833213032235060""}","{""url"":""https://x.com/RepTenney"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853846173435805848","RepRitchie","Rep. Ritchie Torres","It’s a beautiful day to participate in our democracy! Visit","2024-11-05T17:05:45.000Z","[""https://pbs.twimg.com/media/GbovRIiXgAAKP_6.jpg"",""https://pbs.twimg.com/media/GbovRIjXsAAczCa.jpg""]","https://x.com/RepRitchie/status/1853846173435805848","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,15,12,41,2492,"http://findmypollsite.vote.nyc/",,46000,"Congressman for #NY15 (Bronx). Bronx native, product of public housing. Fighting every day for the essential borough. He/him. Official House account.",3659,"https://pbs.twimg.com/profile_images/1345500865436807168/Egj-DQId_normal.jpg",1084,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:52.001Z","{""url"":""https://twitter.com/1276403757224546304/status/1853846173435805848""}","{""url"":""https://x.com/RepRitchie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853908144922972397","RepTenney","Rep. Claudia Tenney","If the TCJA tax cuts expire in 2025:  +- 22% of Americans will face a tax hike.  +- 90% of taxpayers will see their standard deduction slashed.  +- 2 million family-owned farms will lose half of their Death Tax exemption.  + +We cannot afford to let President Trump’s tax cuts expire!","2024-11-05T21:12:00.000Z",,"https://x.com/RepTenney/status/1853908144922972397","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,4,23,990,,,44344,"Official Twitter. Honored to represent #NY24. Member of @WaysandMeansGOP. Co-Chair #ElectionIntegrityCaucus. For updates visit https://t.co/dwIltL8lOk.",9011,"https://pbs.twimg.com/profile_images/1505230652878331906/6mWJzscD_normal.jpg",648,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:52.131Z","{""url"":""https://twitter.com/797201048490430465/status/1853908144922972397""}","{""url"":""https://x.com/RepTenney"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853605729850290470","RepCarbajal","Rep. Salud Carbajal","I had a blast at the last Environmental Defense Center TGIF! of the season! + +I'm grateful for @EDC_Action’s fantastic work defending our local environment & bringing together green-minded advocates from all around the south Central Coast. 🌿","2024-11-05T01:10:18.000Z","[""https://pbs.twimg.com/media/GblUlf2XAAAvAHH.jpg"",""https://pbs.twimg.com/media/GblUlf4W0AA38cS.jpg"",""https://pbs.twimg.com/media/GblUlf2XgAAkjji.jpg""]","https://x.com/RepCarbajal/status/1853605729850290470","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""17524912"",""profile_name"":""Environmental Defense Center"",""url"":""https://x.com/EDC_Action"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,0,6,308,,,17632,"Father, husband and veteran proudly representing California’s 24th District. Working to protect the environment, improve our economy, and support our veterans.",8134,"https://pbs.twimg.com/profile_images/1547321189764419588/hyoV_iLL_normal.jpg",1057,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:52.418Z","{""url"":""https://twitter.com/816157667882373120/status/1853605729850290470""}","{""url"":""https://x.com/RepCarbajal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854011166130950289","RepLindaSanchez","Rep. Linda Sánchez","Polls have closed in California. + +Reminder: If you’re in line to vote, stay in line! Your vote will still be counted.","2024-11-06T04:01:22.000Z",,"https://x.com/RepLindaSanchez/status/1854011166130950289","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,3,21,1328,,,48120,"I work for #CA38 in Congress. 🇺🇸 Serve on the @WaysMeansCmte. Proud mom, dog lover, & @Dodgers fan. ⚾️",9226,"https://pbs.twimg.com/profile_images/1268186992082325505/d4Gm8J5z_normal.jpg",2503,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:52.720Z","{""url"":""https://twitter.com/312134473/status/1854011166130950289""}","{""url"":""https://x.com/RepLindaSanchez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853934432505430401","RepCarbajal","Rep. Salud Carbajal",".@HouseDemocrats have a real plan to bring down the cost of living: giving tax relief to the middle class, making big corporations pay their fair share, and ending price gouging. + +Extreme Republicans will make life even harder for the middle class.","2024-11-05T22:56:27.000Z","[""https://pbs.twimg.com/media/Gbp_iceXUAEn33M.jpg""]","https://x.com/RepCarbajal/status/1853934432505430401","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""43963249"",""profile_name"":""House Democrats"",""url"":""https://x.com/HouseDemocrats"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",6,0,2,384,,,17632,"Father, husband and veteran proudly representing California’s 24th District. Working to protect the environment, improve our economy, and support our veterans.",8134,"https://pbs.twimg.com/profile_images/1547321189764419588/hyoV_iLL_normal.jpg",1057,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:53.067Z","{""url"":""https://twitter.com/816157667882373120/status/1853934432505430401""}","{""url"":""https://x.com/RepCarbajal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800251938717856","RepPatFallon","Rep. Pat Fallon","Once again, the Biden-Harris Admin sees it fit to put its radical environmental agenda ahead of US national security.","2024-11-05T14:03:16.000Z",,"https://x.com/RepPatFallon/status/1853800251938717856","{""post_id"":""1853099333534568653"",""profile_id"":""MikeRGlenn"",""profile_name"":""Mike Glenn"",""data_posted"":""2023-03-15T15:41:11.000Z"",""url"":""https://x.com/MikeRGlenn/status/1853099333534568653"",""description"":""Pentagon slashes planned missile defense sites on Guam in part over environmental concerns - https://t.co/8NaZsBhi7C - @washtimes"",""photos"":null,""videos"":null}",,2,1,6,869,,,49724,"Proudly representing the people of Texas' 4th Congressional District in the U.S. House of Representatives. Member of @GOPoversight, @HASCRepublicans & @TFAADJT.",4218,"https://pbs.twimg.com/profile_images/1429163534823342080/gsBs0LPT_normal.jpg",670,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:53.111Z","{""url"":""https://twitter.com/1343258042704527362/status/1853800251938717856""}","{""url"":""https://x.com/RepPatFallon"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853794464340291717","RepTroyCarter","Congressman Troy A. Carter","It’s time, Louisiana. On this #ElectionDay, be sure to make your voice heard! Polls are open from 6 AM to 8 PM. Find your polling location here:","2024-11-05T13:40:16.000Z",,"https://x.com/RepTroyCarter/status/1853794464340291717","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,5,20,1403,"https://voterportal.sos.la.gov/Home/VoterLogin","[""ElectionDay"",""GeauxVote""]",7625,"Proudly representing Louisiana’s 2nd Congressional District. Member, @TransportDems & @HomelandDems #TheVoiceOfThePeople",5307,"https://pbs.twimg.com/profile_images/1633466393701253122/enspNfVT_normal.jpg",3574,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853794372870942720/vid/avc1/720x1280/4YCMMz99kMhShxOk.mp4?tag=16"",""duration"":27002}]","2024-11-06T04:15:53.193Z","{""url"":""https://twitter.com/1352760304271241218/status/1853794464340291717""}","{""url"":""https://x.com/RepTroyCarter"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853847294673555630","RepCarbajal","Rep. Salud Carbajal","Happy Election Day! 🇺🇸 + +Your vote is your voice. Today, I encourage everyone on the Central Coast and around the country to head to the polls and make your voice heard!","2024-11-05T17:10:12.000Z","[""https://pbs.twimg.com/media/GbowSfoWkAAw1Qh.jpg""]","https://x.com/RepCarbajal/status/1853847294673555630","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,0,8,309,,,17632,"Father, husband and veteran proudly representing California’s 24th District. Working to protect the environment, improve our economy, and support our veterans.",8134,"https://pbs.twimg.com/profile_images/1547321189764419588/hyoV_iLL_normal.jpg",1057,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:53.358Z","{""url"":""https://twitter.com/816157667882373120/status/1853847294673555630""}","{""url"":""https://x.com/RepCarbajal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853606383981035536","RepUnderwood","Rep. Lauren Underwood","Serving you in Congress is the honor of my life. I’m so proud to call the 14th District home and of everything we’ve accomplished to make life healthier, better, and safer for families in our community 💚","2024-11-05T01:12:54.000Z","[""https://pbs.twimg.com/media/GblVFvHWYAAVcxV.jpg"",""https://pbs.twimg.com/media/GblVFvJWQAEgAZR.jpg"",""https://pbs.twimg.com/media/GblVFvIWkAABWrI.jpg"",""https://pbs.twimg.com/media/GblVFvJWQAAsbCa.jpg""]","https://x.com/RepUnderwood/status/1853606383981035536","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,11,85,388,6785,,,126682,"Representing #IL14. Nurse, health enthusiast, advocate for the working families of Illinois. Member of @AppropsDems. Co-Chair of @HouseDPCC.",4192,"https://pbs.twimg.com/profile_images/1346602823258148865/4toABdEC_normal.jpg",5268,false,6,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:53.376Z","{""url"":""https://twitter.com/1080539438508400642/status/1853606383981035536""}","{""url"":""https://x.com/RepUnderwood"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853789938996633667","RepRalphNorman","Rep. Ralph Norman","And this is just the known number…#HarrisBorderCrisis","2024-11-05T13:22:17.000Z","[""https://pbs.twimg.com/media/GbjkW5DWcAAni7o.jpg""]","https://x.com/RepRalphNorman/status/1853789938996633667","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,31,0,,,"[""HarrisBorderCrisis""]",48385,"Proudly serving the 5th congressional district of South Carolina 🍑 - Chairman @House_COS",4693,"https://pbs.twimg.com/profile_images/886594415904608258/VyYZc8Uk_normal.jpg",518,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:53.352Z","{""url"":""https://twitter.com/880480631108644864/status/1853789938996633667""}","{""url"":""https://x.com/RepRalphNorman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853826784917160294","RepPatRyanNY","Rep. Pat Ryan","My top priority: delivering relief for Hudson Valley families. + +That’s why I’ve fought to hold Central Hudson accountable, introduced legislation to lower housing costs, & secured $30M owed to our neighbors across NY-18. + +I'll keep working every day to deliver.","2024-11-05T15:48:42.000Z","[""https://pbs.twimg.com/media/GbodY6KW8AAwyTB.jpg""]","https://x.com/RepPatRyanNY/status/1853826784917160294","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,8,318,,,7318,"Dad. Husband. Veteran. Former Ulster County Exec. Working to solve problems & deliver results for #NY18.",1684,"https://pbs.twimg.com/profile_images/1569785034567045122/7F2ybgq7_normal.jpg",347,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:53.424Z","{""url"":""https://twitter.com/1569400849130049537/status/1853826784917160294""}","{""url"":""https://x.com/RepPatRyanNY"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853899777513263588","RepMeuser","Congressman Dan Meuser","I’ll be on the Rich Zeoli Show on @1210WPHT at 4:00pm! Make sure to tune in! Listen live here:","2024-11-05T20:38:45.000Z","[""https://pbs.twimg.com/media/GbpgBaJWIAEaih-.jpg""]","https://x.com/RepMeuser/status/1853899777513263588","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""90702654"",""profile_name"":""Talk Radio 1210 WPHT"",""url"":""https://x.com/1210WPHT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,0,2,368,"https://www.audacy.com/stations/1210wpht",,23235,"Proudly serving the hardworking taxpayers of Pennsylvania's 9th Congressional District. Member of @FinancialCmte and @HouseSmallBiz",3479,"https://pbs.twimg.com/profile_images/1081299055114895360/DvrWDK_k_normal.jpg",431,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:54.308Z","{""url"":""https://twitter.com/1080574793630527505/status/1853899777513263588""}","{""url"":""https://x.com/RepMeuser"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853824356742311970","RepCarbajal","Rep. Salud Carbajal","Over the last 4 years, Ojai Mayor Betsy Stix has been a dedicated leader and I'm so grateful for her service. + +As the end of her term approaches, I sat down with her to thank her for her work and to discuss the continued ways we can improve the quality of life in Ojai.","2024-11-05T15:39:03.000Z","[""https://pbs.twimg.com/media/GbobaaHXgAADgAo.jpg""]","https://x.com/RepCarbajal/status/1853824356742311970","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,0,2,309,,,17632,"Father, husband and veteran proudly representing California’s 24th District. Working to protect the environment, improve our economy, and support our veterans.",8134,"https://pbs.twimg.com/profile_images/1547321189764419588/hyoV_iLL_normal.jpg",1057,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:54.362Z","{""url"":""https://twitter.com/816157667882373120/status/1853824356742311970""}","{""url"":""https://x.com/RepCarbajal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853809989225197796","RepWexton","Rep. Jennifer Wexton","It’s #ElectionDay, Virginia! + +The right to vote is the foundation of our democracy. Make your voice heard by making a plan to vote today. + +Polls are open now until 7 p.m. Find your polling place by going to","2024-11-05T14:41:58.000Z",,"https://x.com/RepWexton/status/1853809989225197796","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,3,14,830,"http://elections.virginia.gov/","[""ElectionDay""]",36818,"Mom to two boys & two rescue labs. Former state Senator, prosecutor, and advocate for abused children. Congresswoman serving the people of #VA10.",5590,"https://pbs.twimg.com/profile_images/1496907336635535360/cUM0jM4i_normal.jpg",1315,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:55.669Z","{""url"":""https://twitter.com/1017819745880543238/status/1853809989225197796""}","{""url"":""https://x.com/RepWexton"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853817699534606508","RepWebster","Daniel Webster","Kamalanomics has emptied American taxpayers’ pockets, erasing the economic gains enjoyed during the Trump Administration. +  +We cannot afford four more years of failed Biden-Harris policies.","2024-11-05T15:12:36.000Z",,"https://x.com/RepWebster/status/1853817699534606508","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""778700700696010754"",""profile_name"":""House Budget GOP"",""url"":""https://x.com/housebudgetGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,36,0,,,,29751,"A family man and small-business owner who is dedicated to serving the citizens of Central Florida with honor and integrity.",5094,"https://pbs.twimg.com/profile_images/1362512985/Twitter_Pic_2_normal.png",333,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:56.484Z","{""url"":""https://twitter.com/281540744/status/1853817699534606508""}","{""url"":""https://x.com/RepWebster"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853953479875923981","RepMeuser","Congressman Dan Meuser","I’ll be on @NEWSMAX Special Coverage at 8:05PM. Make sure to tune in!","2024-11-06T00:12:09.000Z","[""https://pbs.twimg.com/media/GbqQ3MrW4AMnaOA.jpg""]","https://x.com/RepMeuser/status/1853953479875923981","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""20545835"",""profile_name"":""NEWSMAX"",""url"":""https://x.com/NEWSMAX"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,0,4,627,,,23235,"Proudly serving the hardworking taxpayers of Pennsylvania's 9th Congressional District. Member of @FinancialCmte and @HouseSmallBiz",3479,"https://pbs.twimg.com/profile_images/1081299055114895360/DvrWDK_k_normal.jpg",431,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:56.514Z","{""url"":""https://twitter.com/1080574793630527505/status/1853953479875923981""}","{""url"":""https://x.com/RepMeuser"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853840060187341277","RepMMM","Rep. Mariannette Miller-Meeks, M.D.","Today’s the day to make your voice heard! Get out and vote—every vote counts! 🇺🇸 🗳️ #ElectionDay","2024-11-05T16:41:27.000Z",,"https://x.com/RepMMM/status/1853840060187341277","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,12,5,18,1374,,"[""ElectionDay""]",19890,"Mom, Doctor, Veteran, and Congresswoman proudly serving Iowa's First District | Member of @HouseCommerce @HouseVetAffairs @COVIDSelect | #FightForIowa",4897,"https://pbs.twimg.com/profile_images/1620536557001121794/rubAxs9G_normal.jpg",383,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:56.606Z","{""url"":""https://twitter.com/1345807954604412929/status/1853840060187341277""}","{""url"":""https://x.com/RepMMM"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853996749389492706","RepLindaSanchez","Rep. Linda Sánchez","Polls close in one hour in California. + +If you’re in line before then, you will be able to vote as long as you stay in line.","2024-11-06T03:04:05.000Z",,"https://x.com/RepLindaSanchez/status/1853996749389492706","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,6,20,1455,,,48125,"I work for #CA38 in Congress. 🇺🇸 Serve on the @WaysMeansCmte. Proud mom, dog lover, & @Dodgers fan. ⚾️",9226,"https://pbs.twimg.com/profile_images/1268186992082325505/d4Gm8J5z_normal.jpg",2503,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:57.105Z","{""url"":""https://twitter.com/312134473/status/1853996749389492706""}","{""url"":""https://x.com/RepLindaSanchez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853839800811356575","RepMarcyKaptur","Rep. Marcy Kaptur","Today is #ElectionDay. +  +There is no more sacred privilege than exercising your right to vote, and making your voice heard at the ballot box. + +Find your polling location and ID requirement info here:","2024-11-05T16:40:25.000Z","[""https://pbs.twimg.com/media/GbopeMZWUAArnki.jpg""]","https://x.com/RepMarcyKaptur/status/1853839800811356575","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,8,40,1412,"https://www.ohiosos.gov/elections/voters/","[""ElectionDay""]",32369,"Honored to serve the hardworking families of Ohio's 9th District. Longest-serving woman in history of Congress. Ranking Member on Energy & Water @AppropsDems.",7333,"https://pbs.twimg.com/profile_images/1108475167297232902/vggXpEsS_normal.jpg",1518,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:57.574Z","{""url"":""https://twitter.com/581141508/status/1853839800811356575""}","{""url"":""https://x.com/RepMarcyKaptur"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853824978753310801","CongressmanKean","Congressman Tom Kean","Team Kean was happy to host joint mobile office hours with Assemblywoman Aura Dunn’s Office and Wharton Borough Mayor William Chegwidden. + +My team and I are committed to providing accessible constituent services across the district. If you need help with a federal agency, please don’t hesitate to reach out!","2024-11-05T15:41:31.000Z","[""https://pbs.twimg.com/media/Gbob_fhXQAAP9Ks.jpg""]","https://x.com/CongressmanKean/status/1853824978753310801","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,2,10,491,,,4599,"Proudly representing New Jersey's 7th Congressional District | Serve on @TransportGOP, @HouseForeignGOP, & @HouseScience",1628,"https://pbs.twimg.com/profile_images/1610322610834886658/guvJjekj_normal.jpg",387,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:57.633Z","{""url"":""https://twitter.com/1607422757670641665/status/1853824978753310801""}","{""url"":""https://x.com/CongressmanKean"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853947912419504222","RepDeluzio","Congressman Chris Deluzio","The right to vote is the very foundation of our democracy. I'm proud of all the patriotic Americans who are casting their ballots this election.","2024-11-05T23:50:01.000Z","[""https://pbs.twimg.com/media/GbqLzI9XoAMtHIk.jpg""]","https://x.com/RepDeluzio/status/1853947912419504222","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,10,742,,,10920,"Fighter for Western PA. #PA17 Congressman, veteran, voting rights attorney, union organizer. Member of @TransportDems and @HASCDemocrats.",1710,"https://pbs.twimg.com/profile_images/1610359459477348353/aLcBAnVg_normal.jpg",586,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:57.664Z","{""url"":""https://twitter.com/1608934316779921408/status/1853947912419504222""}","{""url"":""https://x.com/RepDeluzio"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853776100976984551","RepWilson","Rep. Frederica Wilson","It’s Election Day—let’s make it count. + +Polls are now open from 7 am to 7 pm in Florida. You can find your polling location here:","2024-11-05T12:27:18.000Z",,"https://x.com/RepWilson/status/1853776100976984551","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,8,24,1039,"https://dos.fl.gov/elections/for-voters/check-your-voter-status-and-polling-place/voter-precinct-lookup/",,73925,"Serving FL-24 in Congress. Ranking Member of Higher Ed and Rail. Founder of @5000rolemodels. Founder/Chair of bipartisan U.S. @CSSBMB_ and Florida Ports Caucus.",19764,"https://pbs.twimg.com/profile_images/1487207978914693120/G2gj0duq_normal.jpg",4216,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:58.113Z","{""url"":""https://twitter.com/234014087/status/1853776100976984551""}","{""url"":""https://x.com/RepWilson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853914413499134391","RepUnderwood","Rep. Lauren Underwood","Today is Election Day! Make a plan to vote and cast your ballot today, visit:","2024-11-05T21:36:54.000Z","[""https://pbs.twimg.com/media/GbptTf0WMAA2Fio.png""]","https://x.com/RepUnderwood/status/1853914413499134391","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,11,42,1974,"https://ova.elections.il.gov/PollingPlaceLookup.aspx",,126682,"Representing #IL14. Nurse, health enthusiast, advocate for the working families of Illinois. Member of @AppropsDems. Co-Chair of @HouseDPCC.",4192,"https://pbs.twimg.com/profile_images/1346602823258148865/4toABdEC_normal.jpg",5268,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:58.713Z","{""url"":""https://twitter.com/1080539438508400642/status/1853914413499134391""}","{""url"":""https://x.com/RepUnderwood"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853785336247210473","RepMarkAlford","Rep. Mark Alford","Kamala Harris was entrusted with securing our border, but she failed to act. + +It’s time we hold leaders accountable for the safety and security of our nation.","2024-11-05T13:04:00.000Z",,"https://x.com/RepMarkAlford/status/1853785336247210473","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,2,26,702,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:58.778Z","{""url"":""https://twitter.com/1612483604071727104/status/1853785336247210473""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853831339297948127","RepRickAllen","Rick W. Allen","#HarrisBorderCrisis","2024-11-05T16:06:48.000Z","[""https://pbs.twimg.com/media/GbjnLpbWcAAPNPZ.jpg""]","https://x.com/RepRickAllen/status/1853831339297948127","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,33,0,,,"[""HarrisBorderCrisis""]",28560,"Proudly representing Georgia's 12th Congressional District. Member of @HouseCommerce and @EdWorkforceCmte. #GA12",4065,"https://pbs.twimg.com/profile_images/552476601510682624/vklJRMrV_normal.jpeg",350,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:58.843Z","{""url"":""https://twitter.com/2964287128/status/1853831339297948127""}","{""url"":""https://x.com/RepRickAllen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853788784770318540","RepScholten","Congresswoman Hillary Scholten","Happy Election Day, West Michigan! Polls are open until 8 pm tonight, so if you haven’t already, now’s the time to make your voice heard.  + +@MichSoS Benson and I are here to offer a few final helpful tips this Election Day. Watch here.","2024-11-05T13:17:42.000Z",,"https://x.com/RepScholten/status/1853788784770318540","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""177927463"",""profile_name"":""Michigan Department of State"",""url"":""https://x.com/MichSoS"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",28,39,160,7413,,,4282,"Proudly serving Michigan’s Third Congressional District. Member of @TransportDems and @HSBCDems.",2698,"https://pbs.twimg.com/profile_images/1611744041133084672/5Bu52BBG_normal.jpg",165,false,3,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853788682026635264/pu/vid/avc1/720x1280/wjbCM6x5AoWji00P.mp4?tag=12"",""duration"":42366}]","2024-11-06T04:15:59.144Z","{""url"":""https://twitter.com/1609941568869335041/status/1853788784770318540""}","{""url"":""https://x.com/RepScholten"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853920231514923286","RepYoungKim","Young Kim","❤️💛 @RonaldHouseOC is the biggest Ronald McDonald House chapter in North America & provides comfort, care, & support to children & families in our area. Team Young helped celebrate their grand reopening & congratulated them on a successful 35 years.","2024-11-05T22:00:02.000Z","[""https://pbs.twimg.com/media/GboPChuWMAAXkEe.jpg"",""https://pbs.twimg.com/media/GboPChzXkAA2DLT.jpg"",""https://pbs.twimg.com/media/GboPChtXoAE2dWR.jpg""]","https://x.com/RepYoungKim/status/1853920231514923286","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""99180968"",""profile_name"":""Ronald House OC"",""url"":""https://x.com/RonaldHouseOC"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,3,9,608,,,36033,"Wife, mother, grandmother, small business owner, former CA Assemblywoman. Proud to represent #CA40 & fight for the American dream 🇺🇸",6659,"https://pbs.twimg.com/profile_images/1456394579310219264/PlwX0GpS_normal.jpg",909,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:15:59.319Z","{""url"":""https://twitter.com/1344677401465397249/status/1853920231514923286""}","{""url"":""https://x.com/RepYoungKim"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853874926932897900","RepStefanik","Rep. Elise Stefanik","Contrary to Joe Biden’s comments, Americans who support an America First agenda are not GARBAGE. + +Even worse is the White House trying to cover up Biden’s statement. + +@RepJamesComer and I are demanding the Biden-Harris Administration retain documents and internal communications related to Biden’s remarks. + +https://t.co/sLytxfKef6","2024-11-05T19:00:00.000Z",,"https://x.com/RepStefanik/status/1853874926932897900","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1274852794206388225"",""profile_name"":""Rep. James Comer"",""url"":""https://x.com/RepJamesComer"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",88,102,423,21003,,,566400,"Proud Representative for New York's 21st Congressional District. House Republican Conference Chair. 📸 Instagram: @repstefanik",14425,"https://pbs.twimg.com/profile_images/1747397911703420928/yxiX9bOL_normal.jpg",746,false,4,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:00.139Z","{""url"":""https://twitter.com/2962813893/status/1853874926932897900""}","{""url"":""https://x.com/RepStefanik"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853801716614828376","RepLloydDoggett","Lloyd Doggett","It's Election Day, Central Texas! + +Exercising the sacred right to vote is essential to the future of our democracy and ensures your voice is heard on the issues that matter most. Polls are open until 7 pm. + +Find your location ⬇️","2024-11-05T14:09:05.000Z",,"https://x.com/RepLloydDoggett/status/1853801716614828376","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,3,12,649,"https://teamrv-mvp.sos.texas.gov/MVP/mvp.do",,48924,"Representing Austin in Congress. Leading Democrats on the Ways and Means Health Subcommittee. Cyclist, Longhorn, husband to Libby, father, grandfather.",18562,"https://pbs.twimg.com/profile_images/1497313405459484678/Lb6TUWWB_normal.jpg",1345,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:00.065Z","{""url"":""https://twitter.com/153944899/status/1853801716614828376""}","{""url"":""https://x.com/RepLloydDoggett"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853813810336858579","RepRalphNorman","Rep. Ralph Norman","Kamalanomics has emptied American taxpayers’ pockets, erasing the economic gains enjoyed during the Trump Administration. +  +We cannot afford four more years of failed Biden-Harris policies.","2024-11-05T14:57:09.000Z",,"https://x.com/RepRalphNorman/status/1853813810336858579","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""778700700696010754"",""profile_name"":""House Budget GOP"",""url"":""https://x.com/housebudgetGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,36,0,,,,48385,"Proudly serving the 5th congressional district of South Carolina 🍑 - Chairman @House_COS",4693,"https://pbs.twimg.com/profile_images/886594415904608258/VyYZc8Uk_normal.jpg",518,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:00.082Z","{""url"":""https://twitter.com/880480631108644864/status/1853813810336858579""}","{""url"":""https://x.com/RepRalphNorman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853812079632711794","RepTiffany","Rep. Tom Tiffany","Foreign disasters, an open border, and record inflation all happened under Kamala Harris’s watch. + +Americans cannot afford 4 more years of her failures.","2024-11-05T14:50:16.000Z",,"https://x.com/RepTiffany/status/1853812079632711794","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,15,58,2378,,,30945,"Official account of Congressman Tom Tiffany | 7th District of Wisconsin #WI07 | Father, Former Dam Tender | @JudiciaryGOP and @NatResources",2522,"https://pbs.twimg.com/profile_images/1284128581652799488/qQMYZ8VE_normal.jpg",948,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853810518961664000/vid/avc1/1280x720/xIX_vtTNVA4Jc-R-.mp4?tag=14"",""duration"":89022}]","2024-11-06T04:16:00.422Z","{""url"":""https://twitter.com/1267841066335682562/status/1853812079632711794""}","{""url"":""https://x.com/RepTiffany"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853774390858490119","RepDanKildee","Rep. Dan Kildee","Today is Election Day, Michigan! It’s time to make your voice heard and vote! Polls are open until 8 p.m. EST. + +You can still register to vote today at your local clerk’s office. If you still have an absentee ballot, bring it to your clerk, do not mail it. + +Find your polling place: https://t.co/Ms0AtuLTdf","2024-11-05T12:20:30.000Z",,"https://x.com/RepDanKildee/status/1853774390858490119","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,7,20,1404,,,50986,"Honored to represent mid-Michigan in Congress. Born & raised in Flint. Proud husband, father & grandfather.",10292,"https://pbs.twimg.com/profile_images/1762965907695931392/XE2ezOaV_normal.jpg",1269,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:00.466Z","{""url"":""https://twitter.com/1045110018/status/1853774390858490119""}","{""url"":""https://x.com/RepDanKildee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853838435477291190","RepSylviaGarcia","Rep. Sylvia Garcia","I'm out visiting polling locations, and it's incredible to see Texans showing up, rain or shine. Remember, the rain is temporary, but the impact of your vote shapes our future for generations. If you still need to vote, find your polling place and vote before 7 PM. #ElectionDay","2024-11-05T16:35:00.000Z",,"https://x.com/RepSylviaGarcia/status/1853838435477291190","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,8,17,767,,"[""ElectionDay""]",65922,"Member of Congress, TX-29. Includes Houston, Galena Park, Jacinto City, South Houston & Pasadena. Passionate about public service. Fighting for working people.",10283,"https://pbs.twimg.com/profile_images/1742215701656416256/agbsYBy9_normal.jpg",2894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853838098230370304/vid/avc1/1920x1080/3XqrD_Ecm4b1oCxM.mp4?tag=16"",""duration"":25859}]","2024-11-06T04:16:00.480Z","{""url"":""https://twitter.com/1080587263132733442/status/1853838435477291190""}","{""url"":""https://x.com/RepSylviaGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853997900558160323","amyklobuchar","Amy Klobuchar","Lisa Blunt Rochester is headed to the Senate! I had a wonderful time with her in Delaware and she’ll bring incredible dedication and joy to her work for the people of her state. Congrats, @LisaBRochester!","2024-11-06T03:08:39.000Z","[""https://pbs.twimg.com/media/Gbq5GOUWgAExEg6.jpg""]","https://x.com/amyklobuchar/status/1853997900558160323","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""4049197462"",""profile_name"":""Lisa Blunt Rochester"",""url"":""https://x.com/LisaBRochester"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",12,66,569,44855,,,2009587,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:00.560Z","{""url"":""https://twitter.com/33537967/status/1853997900558160323""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853846646435754439","RepDanGoldman","Rep. Dan Goldman","Trust women - not Project 2025.","2024-11-05T17:07:37.000Z",,"https://x.com/RepDanGoldman/status/1853846646435754439","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1880674038"",""profile_name"":""U.S. Rep. Kathy Castor"",""url"":""https://x.com/USRepKCastor"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,26,0,,,,96654,"Congressman for New York's 10th District in the House of Representatives",1959,"https://pbs.twimg.com/profile_images/1612460750630518785/GlrrEjFZ_normal.jpg",413,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:00.954Z","{""url"":""https://twitter.com/1610019555371372544/status/1853846646435754439""}","{""url"":""https://x.com/RepDanGoldman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853845864512721358","RepScottPeters","Rep. Scott Peters","Election day is here! +  +If you have not already, go vote and make your voice heard. +  +If you have any voting-related questions, go to","2024-11-05T17:04:31.000Z",,"https://x.com/RepScottPeters/status/1853845864512721358","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,5,382,"http://vote.gov/",,30218,"Proudly serving #CA50 & the U.S. Constitution + +@EnergyCommerce +@HouseBudgetDems +@NewDemCoalition + +#science #climate #vets #border #natsec #tourism",14440,"https://pbs.twimg.com/profile_images/1150789408318091265/SurWDpFr_normal.png",1388,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853880997483286528/2V456nuW?format=jpg&name=orig""]",,"2024-11-06T04:16:01.213Z","{""url"":""https://twitter.com/1135486501/status/1853845864512721358""}","{""url"":""https://x.com/RepScottPeters"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853814539621691779","RepStefanik","Rep. Elise Stefanik","Day 395. + +It has been 395 days since Hamas terrorists abducted innocent civilians during the barbaric Oct 7th attack in Israel. There are over 100 still being held hostage in Gaza including SEVEN Americans. We MUST bring them home now.","2024-11-05T15:00:03.000Z",,"https://x.com/RepStefanik/status/1853814539621691779","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,46,71,390,8472,,,566400,"Proud Representative for New York's 21st Congressional District. House Republican Conference Chair. 📸 Instagram: @repstefanik",14425,"https://pbs.twimg.com/profile_images/1747397911703420928/yxiX9bOL_normal.jpg",746,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:01.367Z","{""url"":""https://twitter.com/2962813893/status/1853814539621691779""}","{""url"":""https://x.com/RepStefanik"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853646229185372330","RepDonBacon","Rep. Don Bacon 🇺🇸✈️🏍️⭐️🎖️","There shouldn't be anything partisan about ensuring our elections are safe and secure. +  +That's why I was proud to join @repdonbacon and discuss our work to uphold and protect our election results.","2024-11-05T03:51:14.000Z",,"https://x.com/RepDonBacon/status/1853646229185372330","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""815310506596691968"",""profile_name"":""Rep Josh Gottheimer"",""url"":""https://x.com/RepJoshG"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,,34293,"Serving the great people of NE-02 🇺🇸. Chair of Cyber Subcommittee. Married to Angie, 4 kids, 8 grandkids. Brig Gen ⭐️ USAF (Ret.) https://t.co/mkCpzgSLKb",24176,"https://pbs.twimg.com/profile_images/1449940828164608002/-jBLm6bc_normal.jpg",644,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1852108373992574976/yieIORlr?format=jpg&name=orig""]",,"2024-11-06T04:16:01.662Z","{""url"":""https://twitter.com/818975124460335106/status/1853646229185372330""}","{""url"":""https://x.com/RepDonBacon"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853849568615493667","RepRalphNorman","Rep. Ralph Norman","Not only did VP Harris remove fewer known/suspected gang members from our communities than the Trump administration—her anti-enforcement, open-borders policies incentivized these criminals to illegally enter the U.S.","2024-11-05T17:19:14.000Z",,"https://x.com/RepRalphNorman/status/1853849568615493667","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""239964567"",""profile_name"":""House Homeland GOP"",""url"":""https://x.com/HomelandGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,60,0,,,,48385,"Proudly serving the 5th congressional district of South Carolina 🍑 - Chairman @House_COS",4693,"https://pbs.twimg.com/profile_images/886594415904608258/VyYZc8Uk_normal.jpg",518,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:02.193Z","{""url"":""https://twitter.com/880480631108644864/status/1853849568615493667""}","{""url"":""https://x.com/RepRalphNorman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853603138001121459","RepYoungKim","Young Kim","All Americans should have the tools they need to achieve their dream. + +That’s why I helped introduce the bipartisan Financial Inclusion in Banking Act to expand financial opportunities for Americans of all backgrounds.","2024-11-05T01:00:01.000Z",,"https://x.com/RepYoungKim/status/1853603138001121459","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,5,12,1350,"https://youngkim.house.gov/2024/06/14/reps-kim-scott-lead-bipartisan-bill-to-expand-access-to-financial-opportunity/",,36034,"Wife, mother, grandmother, small business owner, former CA Assemblywoman. Proud to represent #CA40 & fight for the American dream 🇺🇸",6659,"https://pbs.twimg.com/profile_images/1456394579310219264/PlwX0GpS_normal.jpg",909,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851628635763154944/fjzLzN10?format=jpg&name=orig""]",,"2024-11-06T04:16:02.715Z","{""url"":""https://twitter.com/1344677401465397249/status/1853603138001121459""}","{""url"":""https://x.com/RepYoungKim"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853965574411370866","michaelcburgess","Michael Burgess, MD","I will be joining @NBCDFW at 7:30 CT for the live election coverage as numbers start coming in. + +Watch ⬇️","2024-11-06T01:00:12.000Z",,"https://x.com/michaelcburgess/status/1853965574411370866","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15933690"",""profile_name"":""NBC DFW"",""url"":""https://x.com/NBCDFW"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,3,487,"https://www.nbcdfw.com/news/politics/lone-star-politics/how-to-watch-north-texas-2024-election-results-nbc5/3681029/",,35669,"Congressman for Texas' 26th District, Chairman of @RulesReps, and M.D. (Ob/Gyn) in my former life",11662,"https://pbs.twimg.com/profile_images/1364682510811230214/R1i4YVfn_normal.jpg",2736,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853828009108848640/YnuU_UMP?format=jpg&name=orig""]",,"2024-11-06T04:16:02.729Z","{""url"":""https://twitter.com/15751083/status/1853965574411370866""}","{""url"":""https://x.com/michaelcburgess"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853830100695031971","RepLindaSanchez","Rep. Linda Sánchez","Today is Election Day! Polls close in California TONIGHT at 8PM! + +If you haven't voted already, please do so now. And in California, you can still register at your polling place and vote today if you're eligible. + +Go to","2024-11-05T16:01:53.000Z",,"https://x.com/RepLindaSanchez/status/1853830100695031971","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,4,5,306,"https://ushouse.info/r67hAjUIe",,48120,"I work for #CA38 in Congress. 🇺🇸 Serve on the @WaysMeansCmte. Proud mom, dog lover, & @Dodgers fan. ⚾️",9226,"https://pbs.twimg.com/profile_images/1268186992082325505/d4Gm8J5z_normal.jpg",2503,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:02.916Z","{""url"":""https://twitter.com/312134473/status/1853830100695031971""}","{""url"":""https://x.com/RepLindaSanchez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853993508488561119","AlsobrooksForMD","Angela Alsobrooks","Thank you, Maryland!","2024-11-06T02:51:12.000Z","[""https://pbs.twimg.com/media/Gbq1QSzX0AEpFgi.jpg""]","https://x.com/AlsobrooksForMD/status/1853993508488561119","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,253,1328,9804,323870,,,38589,"Democratic candidate for U.S. Senate. Prince George’s County Executive. Former Prosecutor. Lifelong Marylander. Alex’s mom. Let’s go farther together.",3366,"https://pbs.twimg.com/profile_images/1655921924097056771/Q1jyo1FZ_normal.jpg",229,false,172,67,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:03.125Z","{""url"":""https://twitter.com/1235381442999463937/status/1853993508488561119""}","{""url"":""https://x.com/AlsobrooksForMD"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853620319074021622","RepSylviaGarcia","Rep. Sylvia Garcia","Save this graphic. Then share it with friends. + +Every eligible voter has the freedom to vote and have their vote counted.","2024-11-05T02:08:17.000Z",,"https://x.com/RepSylviaGarcia/status/1853620319074021622","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1339835893"",""profile_name"":""Hillary Clinton"",""url"":""https://x.com/HillaryClinton"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,18403,0,,,,65922,"Member of Congress, TX-29. Includes Houston, Galena Park, Jacinto City, South Houston & Pasadena. Passionate about public service. Fighting for working people.",10283,"https://pbs.twimg.com/profile_images/1742215701656416256/agbsYBy9_normal.jpg",2894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:03.444Z","{""url"":""https://twitter.com/1080587263132733442/status/1853620319074021622""}","{""url"":""https://x.com/RepSylviaGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799439804043273","RepNancyMace","Rep. Nancy Mace","Good morning America!🇺🇸 + +Raise your hand if you want less government and more freedom🖐️","2024-11-05T14:00:03.000Z",,"https://x.com/RepNancyMace/status/1853799439804043273","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,464,440,7675,85238,,,329295,"From Waffle House ➡ The Citadel ➡ US House. Working hard serving South Carolina. #SC01 #LowcountryFirst @GOPoversight @HASCRepublicans",6617,"https://pbs.twimg.com/profile_images/1592954456483762181/uhnU3tIp_normal.jpg",1393,false,13,6,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:03.464Z","{""url"":""https://twitter.com/1343597700542038017/status/1853799439804043273""}","{""url"":""https://x.com/RepNancyMace"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853878063408263627","RepNancyMace","Rep. Nancy Mace","Thank you, @CapitolPolice, for staying vigilant and keeping everyone safe. + +Praying for a secure and peaceful election here in South Carolina and across the nation. + +America stands strong—hate and terror have no place in our democracy.","2024-11-05T19:12:28.000Z",,"https://x.com/RepNancyMace/status/1853878063408263627","{""post_id"":""1853869248562475086"",""profile_id"":""CapitolPolice"",""profile_name"":""The U.S. Capitol Police"",""data_posted"":""2008-09-28T22:45:09.000Z"",""url"":""https://x.com/CapitolPolice/status/1853869248562475086"",""description"":""Our officers just arrested a man who was stopped during our screening process at the Capitol Visitor Center (CVC). The man smelled like fuel, had a torch & a flare gun. \n\nThe CVC is closed for tours for the day, while we investigate. We will provide more information when we can. https://t.co/J5geNud1h2"",""photos"":[""https://pbs.twimg.com/media/GbpDT2ZWwAE_OH6.jpg""],""videos"":null}","[{""profile_id"":""16503916"",""profile_name"":""The U.S. Capitol Police"",""url"":""https://x.com/CapitolPolice"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",17,31,275,19775,,,329295,"From Waffle House ➡ The Citadel ➡ US House. Working hard serving South Carolina. #SC01 #LowcountryFirst @GOPoversight @HASCRepublicans",6617,"https://pbs.twimg.com/profile_images/1592954456483762181/uhnU3tIp_normal.jpg",1393,false,1,5,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:03.601Z","{""url"":""https://twitter.com/1343597700542038017/status/1853878063408263627""}","{""url"":""https://x.com/RepNancyMace"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853597439955026247","RobWittman","Rep. Rob Wittman","Williamsburg Bray School is the oldest institution dedicated to the education of enslaved Black children in North America, and its preservation serves as an impactful reminder of our nation’s history. + +It was great to attend the ribbon cutting ceremony in Williamsburg to celebrate @williamandmary’s work to preserve this important building.","2024-11-05T00:37:22.000Z","[""https://pbs.twimg.com/media/GblNDBWXkAEHNUf.jpg"",""https://pbs.twimg.com/media/GblNDBVXMAAgmYC.jpg"",""https://pbs.twimg.com/media/GblNDBYXsAAheSl.jpg""]","https://x.com/RobWittman/status/1853597439955026247","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,1,7,581,,,33664,"Honored to represent VA-01 in Congress. Vice chairman of @HASCRepublicans. Proud husband, father, grandfather, avid outdoorsman, and former marine scientist.",8750,"https://pbs.twimg.com/profile_images/1689742345770561536/zN3SGMXL_normal.jpg",6242,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:04.116Z","{""url"":""https://twitter.com/15356407/status/1853597439955026247""}","{""url"":""https://x.com/RobWittman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853856127198310416","RepSylviaGarcia","Rep. Sylvia Garcia","Today is #ElectionDay! Polls are open until 7 PM—find your nearest voting location at","2024-11-05T17:45:18.000Z","[""https://pbs.twimg.com/media/Gbo4ULTXQAAfkef.jpg""]","https://x.com/RepSylviaGarcia/status/1853856127198310416","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,5,18,746,"http://harrisvotes.com/","[""ElectionDay""]",65922,"Member of Congress, TX-29. Includes Houston, Galena Park, Jacinto City, South Houston & Pasadena. Passionate about public service. Fighting for working people.",10283,"https://pbs.twimg.com/profile_images/1742215701656416256/agbsYBy9_normal.jpg",2894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:04.632Z","{""url"":""https://twitter.com/1080587263132733442/status/1853856127198310416""}","{""url"":""https://x.com/RepSylviaGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853823339116339282","RepBobGood","Congressman Bob Good","This is the legacy of the Biden-Harris Administration: a complete weaponization of the federal government against the interests and values of the American people.","2024-11-05T15:35:01.000Z",,"https://x.com/RepBobGood/status/1853823339116339282","{""post_id"":""1853530614160339310"",""profile_id"":""wokal_distance"",""profile_name"":""Wokal Distance"",""data_posted"":""2020-06-28T05:49:45.000Z"",""url"":""https://x.com/wokal_distance/status/1853530614160339310"",""description"":""1/\nWoke and Weaponized government mega thread!\n\nI've been documenting how American government institutions have been hijacked by woke activists, and I've put all my threads in one big thread so you can see how bad things are/🧵\n\nLet's start with NIH👇\nhttps://t.co/Y52SGfbNAu"",""photos"":null,""videos"":null}",,10,6,28,1842,,,78909,"Proudly serving the 5th Congressional District of Virginia. Member of @EdWorkforceCmte & @HouseBudgetGOP.",3533,"https://pbs.twimg.com/profile_images/1345769186568626179/a8SJKYld_normal.jpg",161,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:04.769Z","{""url"":""https://twitter.com/1345536897838436353/status/1853823339116339282""}","{""url"":""https://x.com/RepBobGood"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853829251293753394","RepCiscomani","Congressman Juan Ciscomani","Born in Southeastern India, Dr. Suresh Garimella is the first Asian immigrant to be named President of @uarizona. Thrilled to see him uphold the tradition of academic excellence, world-class research, and dedication to Southern Arizona. Keep living your American Dream, Suresh!","2024-11-05T15:58:30.000Z","[""https://pbs.twimg.com/media/Gbofxc3XMAAf2st.jpg""]","https://x.com/RepCiscomani/status/1853829251293753394","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""14862639"",""profile_name"":""University of Arizona"",""url"":""https://x.com/uarizona"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",1,2,6,321,,,8077,"Proud husband, father x6 & Congressman for #AZ06 | Fighting to defend the #AmericanDream 🇺🇸 | Serving on @HouseAppropsGOP & @HouseVetAffairs",2123,"https://pbs.twimg.com/profile_images/1610262525202817025/slv2O1D1_normal.jpg",392,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:05.241Z","{""url"":""https://twitter.com/1603530970593775616/status/1853829251293753394""}","{""url"":""https://x.com/RepCiscomani"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853619520361091438","RepJoshHarder","Rep. Josh Harder","Exciting new opening! CMC’s new Lodi East health center will provide medical, dental, and mental health care, complete with a pharmacy and lab services.","2024-11-05T02:05:06.000Z","[""https://pbs.twimg.com/media/GblhILUbQAAV3sE.jpg"",""https://pbs.twimg.com/media/GblhILpa4AAX5ff.jpg"",""https://pbs.twimg.com/media/GblhILSasAAnSTe.jpg""]","https://x.com/RepJoshHarder/status/1853619520361091438","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,1,6,437,,,21929,"Pam’s husband. Lillian and Karina’s dad. Fighting for San Joaquin families in Congress on @AppropsDems",4474,"https://pbs.twimg.com/profile_images/1387500888479125506/ruDTJnzr_normal.jpg",610,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:05.551Z","{""url"":""https://twitter.com/1080851152151953410/status/1853619520361091438""}","{""url"":""https://x.com/RepJoshHarder"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853636054303076522","RepMcGovern","Rep. Jim McGovern","Republicans love to pretend like they support IVF—but during our Rules Committee meetings when they think nobody is watching, they let the truth slip. + +184 of them have cosponsored bills to go after IVF. + +This is a fight for freedom!","2024-11-05T03:10:48.000Z",,"https://x.com/RepMcGovern/status/1853636054303076522","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,15,140,319,6152,,,126700,"Lisa's husband. Patrick & Molly's dad. Serving #MA02 & working to #EndHungerNow. Top Dem on @RulesDemocrats. Co-Chair @TLhumanrights. Member of @CECCgov. he/him",17757,"https://pbs.twimg.com/profile_images/1553032233799360512/E1Y69xeF_normal.jpg",704,false,4,8,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1798035303888035840/vid/avc1/1280x720/4ks6-NvwKR3pHI7b.mp4?tag=14"",""duration"":45045}]","2024-11-06T04:16:05.992Z","{""url"":""https://twitter.com/242426145/status/1853636054303076522""}","{""url"":""https://x.com/RepMcGovern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853754131271561452","RepMcGovern","Rep. Jim McGovern","☀️ Good morning, America. + +✅ Democrats don’t have an enemies list, we have a to-do list. + +🗽We believe in freedom—like the fundamental freedom of every woman to make decisions about her own body. + +🇺🇸 We love this country. And when you love something, you fight for it.","2024-11-05T11:00:00.000Z",,"https://x.com/RepMcGovern/status/1853754131271561452","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,29,87,349,6393,,,126700,"Lisa's husband. Patrick & Molly's dad. Serving #MA02 & working to #EndHungerNow. Top Dem on @RulesDemocrats. Co-Chair @TLhumanrights. Member of @CECCgov. he/him",17757,"https://pbs.twimg.com/profile_images/1553032233799360512/E1Y69xeF_normal.jpg",704,false,2,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:06.318Z","{""url"":""https://twitter.com/242426145/status/1853754131271561452""}","{""url"":""https://x.com/RepMcGovern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853790189094658480","RepNancyMace","Rep. Nancy Mace","#PassHR7909.","2024-11-05T13:23:17.000Z",,"https://x.com/RepNancyMace/status/1853790189094658480","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,36,59,193,9446,"https://nypost.com/2024/11/01/us-news/illegal-migrant-arrested-for-allegedly-raping-5-year-old-girl-on-long-island-cops/?utm_medium=social&utm_source=twitter&utm_campaign=nypost","[""PassHR7909""]",329295,"From Waffle House ➡ The Citadel ➡ US House. Working hard serving South Carolina. #SC01 #LowcountryFirst @GOPoversight @HASCRepublicans",6617,"https://pbs.twimg.com/profile_images/1592954456483762181/uhnU3tIp_normal.jpg",1393,false,3,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1852317479202123776/9SAfsKnb?format=jpg&name=orig""]",,"2024-11-06T04:16:06.824Z","{""url"":""https://twitter.com/1343597700542038017/status/1853790189094658480""}","{""url"":""https://x.com/RepNancyMace"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853634095370408136","RepMcGovern","Rep. Jim McGovern","Republicans are promising to crash the economy by… + +❌Dragging America into trade wars + +❌Passing more tax cuts for billionaires and corporations + +❌Overturning Dem-led bills that onshore American manufacturing","2024-11-05T03:03:01.000Z",,"https://x.com/RepMcGovern/status/1853634095370408136","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""22669526"",""profile_name"":""Rep. Gwen Moore"",""url"":""https://x.com/RepGwenMoore"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,33,0,,,,126700,"Lisa's husband. Patrick & Molly's dad. Serving #MA02 & working to #EndHungerNow. Top Dem on @RulesDemocrats. Co-Chair @TLhumanrights. Member of @CECCgov. he/him",17757,"https://pbs.twimg.com/profile_images/1553032233799360512/E1Y69xeF_normal.jpg",704,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:07.050Z","{""url"":""https://twitter.com/242426145/status/1853634095370408136""}","{""url"":""https://x.com/RepMcGovern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853874926958080274","RepPeteAguilar","Rep. Pete Aguilar","I am honored to receive an “A” on @DTVPAC’s Defend The Vote Scorecard for my work to protect our democracy and the right to vote. I will keep working to ensure that every member of our community has the opportunity to vote in safe, accessible elections and make their voice heard.","2024-11-05T19:00:00.000Z","[""https://pbs.twimg.com/media/GboU_5wWsAAXBOk.jpg""]","https://x.com/RepPeteAguilar/status/1853874926958080274","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1336387702976090118"",""profile_name"":""Defend The Vote"",""url"":""https://x.com/DTVPAC"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",3,5,24,770,,,45574,"Dad, husband, former mayor. Proud to be the Inland Empire’s voice in Congress representing #CA33. Chair of @HouseDemocrats.",3279,"https://pbs.twimg.com/profile_images/1338506082352848897/7RXoCUkU_normal.jpg",592,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:07.236Z","{""url"":""https://twitter.com/3018670151/status/1853874926958080274""}","{""url"":""https://x.com/RepPeteAguilar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853897178281918672","RepMcGovern","Rep. Jim McGovern","Democrats want to get things done and make progress for the American people. + +Republicans want to score political points and enact their extreme Project 2025 agenda. + +RT to say enough is enough!","2024-11-05T20:28:25.000Z",,"https://x.com/RepMcGovern/status/1853897178281918672","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,29,88,242,5025,,,126701,"Lisa's husband. Patrick & Molly's dad. Serving #MA02 & working to #EndHungerNow. Top Dem on @RulesDemocrats. Co-Chair @TLhumanrights. Member of @CECCgov. he/him",17757,"https://pbs.twimg.com/profile_images/1553032233799360512/E1Y69xeF_normal.jpg",704,false,2,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1816614942092472320/vid/avc1/1280x720/TC_--E8GTMxbRbll.mp4?tag=16"",""duration"":101066}]","2024-11-06T04:16:07.257Z","{""url"":""https://twitter.com/242426145/status/1853897178281918672""}","{""url"":""https://x.com/RepMcGovern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853817812185219454","RepWebster","Daniel Webster","And this is just the known number…#HarrisBorderCrisis","2024-11-05T15:13:03.000Z","[""https://pbs.twimg.com/media/GbjkW5DWcAAni7o.jpg""]","https://x.com/RepWebster/status/1853817812185219454","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,31,0,,,"[""HarrisBorderCrisis""]",29751,"A family man and small-business owner who is dedicated to serving the citizens of Central Florida with honor and integrity.",5094,"https://pbs.twimg.com/profile_images/1362512985/Twitter_Pic_2_normal.png",333,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:08.002Z","{""url"":""https://twitter.com/281540744/status/1853817812185219454""}","{""url"":""https://x.com/RepWebster"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853818852116693035","RepWileyNickel","Rep. Wiley Nickel","Happy #ElectionDay! + +Your voice and your vote matter. Today, let’s make it count. Whether you’re in #NC13 or across the country, head to the polls and let’s shape our future together. + +To find a North Carolina voting location near you, please visit","2024-11-05T15:17:11.000Z","[""https://pbs.twimg.com/media/GboWYuKXAAAgVB4.jpg""]","https://x.com/RepWileyNickel/status/1853818852116693035","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,2,276,"http://ncsbe.gov/","[""ElectionDay"",""NC13""]",4629,"Adeline and Prescott's Dad. Working across the aisle to find solutions and deliver results for North Carolina’s 13th District. Member of @FSCDems 🇺🇸",1012,"https://pbs.twimg.com/profile_images/1605218418482970625/o210QrNP_normal.jpg",371,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:08.438Z","{""url"":""https://twitter.com/1591085093220671491/status/1853818852116693035""}","{""url"":""https://x.com/RepWileyNickel"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853805300769272173","RepNikkiB","Rep. Nikki Budzinski","Congratulations to Boeing @MachinistsUnion members on ratifying a new union contract after seven weeks on strike! Through your unwavering solidarity, you have set a higher standard for workers across the country.","2024-11-05T14:23:20.000Z",,"https://x.com/RepNikkiB/status/1853805300769272173","{""post_id"":""1853663535399632956"",""profile_id"":""MachinistsUnion"",""profile_name"":""Machinists Union"",""data_posted"":""2009-09-16T20:28:33.000Z"",""url"":""https://x.com/MachinistsUnion/status/1853663535399632956"",""description"":""🚨 BREAKING 🚨\n\n33,000 frontline workers at Boeing, members of @IAM751 and W24, voted to ratify a new union contract with the company that has instantly set a new standard for compensation and wages for aerospace industry workers. https://t.co/UKrEGWZHHV"",""photos"":null,""videos"":null}","[{""profile_id"":""74829020"",""profile_name"":""Machinists Union"",""url"":""https://x.com/MachinistsUnion"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,5,13,1264,,,4224,"U.S. Representative for Illinois’ 13th District. Proud to serve on @HouseAgDems and @VetAffairsDems for the people of Central & Southern Illinois.",1878,"https://pbs.twimg.com/profile_images/1620453663725522950/u33C5pUq_normal.jpg",1316,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:08.532Z","{""url"":""https://twitter.com/1603476713995911168/status/1853805300769272173""}","{""url"":""https://x.com/RepNikkiB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853814864281583818","RepLaLota","Congressman Nick LaLota","Supporting constituents like Maria Ziegler of Dix Hills is what makes our work so rewarding. We were able to help resolve her Medicare issues, ensuring she received the critical breast cancer recovery care she needed. Remember, my team and I are here to help—just a call away at (631) 289-1097 when you need us most!","2024-11-05T15:01:20.000Z","[""https://pbs.twimg.com/media/GboSyYUW4AAqt7M.png""]","https://x.com/RepLaLota/status/1853814864281583818","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,4,7,397,,,5814,"Father, husband, and Navy Veteran proudly serving the people of Long Island in Congress. Alum of @StAnthonysHS, @NavalAcademy, @Hofstra_Law, and @ZarbSchool.",1991,"https://pbs.twimg.com/profile_images/1610487783268777984/AGCo06LF_normal.jpg",335,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:09.412Z","{""url"":""https://twitter.com/1588581125177442305/status/1853814864281583818""}","{""url"":""https://x.com/RepLaLota"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853879010356264978","RepMcGovern","Rep. Jim McGovern","🗳️ Lisa and I just voted in Worcester. + +🇺🇸 Nothing is more sacred or important in our democracy. + +📢 Please make your voice heard and play a part in shaping our future. + +✅ Check your polling location here:","2024-11-05T19:16:14.000Z","[""https://pbs.twimg.com/media/GbpNIlGXcAAG-Lo.jpg""]","https://x.com/RepMcGovern/status/1853879010356264978","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,15,12,131,2833,"https://www.sec.state.ma.us/WhereDoIVoteMA/WhereDoIVote",,126700,"Lisa's husband. Patrick & Molly's dad. Serving #MA02 & working to #EndHungerNow. Top Dem on @RulesDemocrats. Co-Chair @TLhumanrights. Member of @CECCgov. he/him",17757,"https://pbs.twimg.com/profile_images/1553032233799360512/E1Y69xeF_normal.jpg",704,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:09.410Z","{""url"":""https://twitter.com/242426145/status/1853879010356264978""}","{""url"":""https://x.com/RepMcGovern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853895235589324939","RepTiffany","Rep. Tom Tiffany","Under Trump: SECURE BORDERS +Under Harris: OPEN BORDERS + +Under Trump: NO MAJOR WARS +Under Harris: ENDLESS WARS + +Under Trump: LOW PRICES +Under Harris: RECORD INFLATION + +Their records speak for themselves.","2024-11-05T20:20:42.000Z",,"https://x.com/RepTiffany/status/1853895235589324939","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,20,34,106,1697,,,30945,"Official account of Congressman Tom Tiffany | 7th District of Wisconsin #WI07 | Father, Former Dam Tender | @JudiciaryGOP and @NatResources",2522,"https://pbs.twimg.com/profile_images/1284128581652799488/qQMYZ8VE_normal.jpg",948,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:09.465Z","{""url"":""https://twitter.com/1267841066335682562/status/1853895235589324939""}","{""url"":""https://x.com/RepTiffany"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853890030147653937","RepYoungKim","Young Kim","Reminder that our weekly Chino Hills Mobile Office Hours are TOMORROW from 9am to 1pm at the City Clerk’s office. Please come by if you need any assistance with a federal agency. We are here to help!","2024-11-05T20:00:01.000Z","[""https://pbs.twimg.com/media/GboPI5uWQAEU1RV.jpg""]","https://x.com/RepYoungKim/status/1853890030147653937","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,4,473,,,36034,"Wife, mother, grandmother, small business owner, former CA Assemblywoman. Proud to represent #CA40 & fight for the American dream 🇺🇸",6659,"https://pbs.twimg.com/profile_images/1456394579310219264/PlwX0GpS_normal.jpg",909,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:09.487Z","{""url"":""https://twitter.com/1344677401465397249/status/1853890030147653937""}","{""url"":""https://x.com/RepYoungKim"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853814020190400770","RepRalphNorman","Rep. Ralph Norman","Read this!!","2024-11-05T14:57:59.000Z",,"https://x.com/RepRalphNorman/status/1853814020190400770","{""post_id"":""1853559712530215013"",""profile_id"":""Heritage"",""profile_name"":""Heritage Foundation"",""data_posted"":""2007-11-12T01:50:27.000Z"",""url"":""https://x.com/Heritage/status/1853559712530215013"",""description"":""In just 4 years, the Biden-Harris administration has dismantled all border security & interior immigration enforcement. Their agenda has resulted in record border encounters, including terror threats, convicted criminals, & gang members, which have decimated American society🧵"",""photos"":null,""videos"":null}",,17,14,62,12253,,,48385,"Proudly serving the 5th congressional district of South Carolina 🍑 - Chairman @House_COS",4693,"https://pbs.twimg.com/profile_images/886594415904608258/VyYZc8Uk_normal.jpg",518,false,0,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:10.308Z","{""url"":""https://twitter.com/880480631108644864/status/1853814020190400770""}","{""url"":""https://x.com/RepRalphNorman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853859540401525047","boblatta","Rep. Bob Latta","It's #ElectionDay in America! Make sure your voice is heard in this election—get out and vote!","2024-11-05T17:58:52.000Z",,"https://x.com/boblatta/status/1853859540401525047","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,0,6,880,,"[""ElectionDay""]",39027,"Representing #OH5 in Congress. Deputy Whip. Member of @HouseCommerce. Chair of the Communications & Technology Subcommittee.",10904,"https://pbs.twimg.com/profile_images/1649394978660012032/XkrfP4fL_normal.jpg",3126,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:10.568Z","{""url"":""https://twitter.com/15394954/status/1853859540401525047""}","{""url"":""https://x.com/boblatta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853852103397327347","amyklobuchar","Amy Klobuchar","If you’re still on the fence about voting in this election, think about what really matters – about the values we were taught, the kind of country we want to be, and how this is a moment when your vote really does count.  + +Your vote could determine the fate of our republic – the","2024-11-05T17:29:19.000Z",,"https://x.com/amyklobuchar/status/1853852103397327347","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""813286"",""profile_name"":""Barack Obama"",""url"":""https://x.com/BarackObama"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,25798,0,,,,2009587,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:10.730Z","{""url"":""https://twitter.com/33537967/status/1853852103397327347""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853839732448346602","RepTiffany","Rep. Tom Tiffany","Border Czar Kamala Harris cannot be trusted to solve the border crisis she created: + +❌Over 10.4 MILLION illegals let into the U.S. +❌Nearly 400 terror suspects illegally crossed +❌34.3 tons of fentanyl smuggled + +She has FAILED to secure the border and Americans don’t forget it.","2024-11-05T16:40:09.000Z",,"https://x.com/RepTiffany/status/1853839732448346602","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""935033864"",""profile_name"":""Rep. Richard Hudson"",""url"":""https://x.com/RepRichHudson"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4,0,,,,30945,"Official account of Congressman Tom Tiffany | 7th District of Wisconsin #WI07 | Father, Former Dam Tender | @JudiciaryGOP and @NatResources",2522,"https://pbs.twimg.com/profile_images/1284128581652799488/qQMYZ8VE_normal.jpg",948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:11.267Z","{""url"":""https://twitter.com/1267841066335682562/status/1853839732448346602""}","{""url"":""https://x.com/RepTiffany"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853632572921934289","DrReddyKS","Dr. Prasanth Reddy","Folks, Sharice Davids is (again) lying. If she believed anything she said in that clip, she’d have voted for HR 2. Here are the facts about her record: + +—> Sharice Davids ran for office on the promise of defunding ICE. + +—> Sharice Davids opposed HR 2, which would’ve secured our border. She voted against it because Nancy Pelosi and her party bosses told her to. + +—> Sharice Davids didn’t say a thing about Biden-Harris border policies until she needed your vote. She hasn’t supported real border security at all in Congress. + +—> Sharice Davids even voted against banning non-citizens from voting in our elections. + +Now, here’s where I have stood since the day I announced my campaign: + +—> Re-establish Remain in Mexico. + +—> Crack down on Communist China’s efforts to supply the cartels with fentanyl. + +—> Pass HR 2 to finish the wall and actually give Border Patrol the tools they need to do their job. + +—> Support common sense policy, like deporting illegals who commit violent crimes. + +We can do all of the above while supporting legal immigration, and we should be able to do it in a bipartisan fashion. We won’t be able to as long as politicians like Sharice Davids are still in office, putting their self-interest before our country’s interest. + +Furthermore, Sharice Davids is on the record calling fentanyl a “rural issue.” It’s an issue for the entire country, and that shows you out of touch she is on the crisis facing America. + +Here's exactly where I stand on securing our border from the full interview. + +#ks03 #ksleg","2024-11-05T02:56:58.000Z",,"https://x.com/DrReddyKS/status/1853632572921934289","{""post_id"":""1853562366236975552"",""profile_id"":""sharicedavids"",""profile_name"":""Sharice Davids"",""data_posted"":""2018-01-10T04:48:41.000Z"",""url"":""https://x.com/sharicedavids/status/1853562366236975552"",""description"":""I've taken real action to secure our border and stop fentanyl. My opponent? Just more empty promises.\n\nDon’t take my word for it; see for yourself ⬇️ https://t.co/UE1vGIp7PG"",""photos"":null,""videos"":[{""url"":""https://video.twimg.com/ext_tw_video/1853471894298574848/pu/vid/avc1/1280x720/4I8HC1b-8r134JeM.mp4?tag=12"",""duration"":26769},{""url"":""https://video.twimg.com/ext_tw_video/1853471914666176512/pu/vid/avc1/1280x720/vE7gUxSQlGn-tlYN.mp4?tag=12"",""duration"":24038}]}",,0,8,29,1062,,,618,"Physician. Military Officer. Problem Solver. Immigrant. Republican for Congress in #KS03.",545,"https://pbs.twimg.com/profile_images/1678977995745140736/rSFIuQLJ_normal.png",12,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853632418869129216/vid/avc1/640x640/u4qErnOgZi7zAPwv.mp4?tag=16"",""duration"":281981}]","2024-11-06T04:16:11.253Z","{""url"":""https://twitter.com/1669098438741426176/status/1853632572921934289""}","{""url"":""https://x.com/DrReddyKS"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853791103402623091","RepSummerLee","Rep. Summer Lee","Do you know where your polling place is? Make sure you are ready to vote in tomorrow’s (11/5) General Election by using the online Polling Place Search tool. + +Find your polling place and learn more about in-person voting by visiting","2024-11-05T13:26:55.000Z",,"https://x.com/RepSummerLee/status/1853791103402623091","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""537463383"",""profile_name"":""Allegheny County"",""url"":""https://x.com/Allegheny_Co"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,11,0,,,,42908,"Representing Pennsylvania's 12th Congressional District",2778,"https://pbs.twimg.com/profile_images/1755084697254719488/ExFeu75S_normal.jpg",2223,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:11.964Z","{""url"":""https://twitter.com/999285287812558848/status/1853791103402623091""}","{""url"":""https://x.com/RepSummerLee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853806566933250123","RepMeuser","Congressman Dan Meuser","I'll be on National Report on @NEWSMAX at 10:25am. Make sure to tune in!","2024-11-05T14:28:22.000Z","[""https://pbs.twimg.com/media/GboLPcKXMAACxSW.jpg""]","https://x.com/RepMeuser/status/1853806566933250123","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""20545835"",""profile_name"":""NEWSMAX"",""url"":""https://x.com/NEWSMAX"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,0,0,240,,,23235,"Proudly serving the hardworking taxpayers of Pennsylvania's 9th Congressional District. Member of @FinancialCmte and @HouseSmallBiz",3479,"https://pbs.twimg.com/profile_images/1081299055114895360/DvrWDK_k_normal.jpg",431,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:12.038Z","{""url"":""https://twitter.com/1080574793630527505/status/1853806566933250123""}","{""url"":""https://x.com/RepMeuser"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853831267696939097","SenWhitehouse","Sheldon Whitehouse","Floridians “grappling with astronomical home insurance rates … where climate shocks are upending the entire state’s real estate market” also enjoy “the third-highest car insurance rates in the country” — climate shocks hit home in family budgets.","2024-11-05T16:06:31.000Z",,"https://x.com/SenWhitehouse/status/1853831267696939097","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,34,159,403,10346,"https://grist.org/extreme-weather/climate-fueled-extreme-weather-is-hiking-up-car-insurance-rates/",,607923,"U.S. Senator from Rhode Island, the Ocean State. Chairman of @SenateBudget.",25260,"https://pbs.twimg.com/profile_images/1823441461141975040/MEsmr_dX_normal.jpg",2015,false,5,8,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1852851437463535617/_bgnqDU8?format=jpg&name=orig""]",,"2024-11-06T04:16:12.093Z","{""url"":""https://twitter.com/242555999/status/1853831267696939097""}","{""url"":""https://x.com/SenWhitehouse"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853920377996488903","Rep_Clyde","Rep. Andrew Clyde","Americans deserve a booming economy—not a broken economy. + +Americans support mass deportations—not mass amnesty. + +Americans want world peace—not world chaos. + +Americans long for safe communities—not lawless communities. + +Americans need President Trump—not Kamala Harris.","2024-11-05T22:00:36.000Z",,"https://x.com/Rep_Clyde/status/1853920377996488903","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,8,43,814,,,28341,"U.S. Representative for Georgia’s Ninth Congressional District | Navy Combat Veteran | FFL | Small Business Owner | @HouseAppropsGOP | @freedomcaucus 🇺🇸",4239,"https://pbs.twimg.com/profile_images/1357017586647629826/0Gp14jBE_normal.jpg",685,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:12.277Z","{""url"":""https://twitter.com/1357017361568694274/status/1853920377996488903""}","{""url"":""https://x.com/Rep_Clyde"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853866470406590469","SenRickScott","Rick Scott","Iran-backed Hamas terrorists kidnapped Americans and Israelis 396 days ago, and are STILL holding them hostage in Gaza. + +Don’t forget about these innocent people! Bring the hostages home.","2024-11-05T18:26:24.000Z",,"https://x.com/SenRickScott/status/1853866470406590469","{""post_id"":""1853769404586004823"",""profile_id"":""Israel"",""profile_name"":""Israel ישראל"",""data_posted"":""2009-07-01T07:15:30.000Z"",""url"":""https://x.com/Israel/status/1853769404586004823"",""description"":""This is your daily reminder. \n\n101 Israeli men, women and children are being held hostage in Gaza. \n\nDon’t \n\nStop\n\nTalking \n\nAbout \n\nThe \n\nHostages."",""photos"":null,""videos"":null}",,30,29,151,13049,,,481341,"Florida's U.S. Senator. Fighting for Florida families and to Make Washington Work. #LetsGetToWork https://t.co/O6Ra1UNW96",30268,"https://pbs.twimg.com/profile_images/1082776530235916289/KVIfkvwW_normal.jpg",1292,false,1,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:12.190Z","{""url"":""https://twitter.com/131546062/status/1853866470406590469""}","{""url"":""https://x.com/SenRickScott"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853935333760766349","RepStefanik","Rep. Elise Stefanik","Horrifying. + +An innocent five-year-old is the latest victim of a criminal illegal immigrant let loose by open border czar Kamala Harris and Far Left Kathy Hochul. + +We MUST hold Kamala Harris and Albany Democrats accountable for making our communities border communities with their pro-illegal immigrant agenda that puts Americans LAST. + +https://t.co/V45WOb4EhQ","2024-11-05T23:00:02.000Z",,"https://x.com/RepStefanik/status/1853935333760766349","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,49,188,451,10958,,,566400,"Proud Representative for New York's 21st Congressional District. House Republican Conference Chair. 📸 Instagram: @repstefanik",14425,"https://pbs.twimg.com/profile_images/1747397911703420928/yxiX9bOL_normal.jpg",746,false,4,5,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:12.227Z","{""url"":""https://twitter.com/2962813893/status/1853935333760766349""}","{""url"":""https://x.com/RepStefanik"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853807091451904087","SenRickScott","Rick Scott","Bernie Marcus embodied the American Dream, founding Home Depot and dedicating his life to philanthropy. + +Ann and I are praying for his family, and our hearts go out to his wife, Billi, and everyone mourning his loss.","2024-11-05T14:30:27.000Z",,"https://x.com/SenRickScott/status/1853807091451904087","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,35,38,267,11003,,,481341,"Florida's U.S. Senator. Fighting for Florida families and to Make Washington Work. #LetsGetToWork https://t.co/O6Ra1UNW96",30268,"https://pbs.twimg.com/profile_images/1082776530235916289/KVIfkvwW_normal.jpg",1292,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:12.322Z","{""url"":""https://twitter.com/131546062/status/1853807091451904087""}","{""url"":""https://x.com/SenRickScott"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853788315205439678","RepGraceMeng","Grace Meng","It's Election Day. If you did not cast your ballot during early voting, you can do so today to make your voice heard. The polls in New York are open until 9 p.m. Go to","2024-11-05T13:15:50.000Z",,"https://x.com/RepGraceMeng/status/1853788315205439678","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,12,18,1967,"https://www.nycvotes.org/",,50328,"Representing NY's 6th Congressional District - Parts of West, Central and Northeast Queens. + +For specific questions or concerns, please contact my office.",8722,"https://pbs.twimg.com/profile_images/3257470174/64291ff1f090e3193c2764925000a1fa_normal.jpeg",697,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:12.490Z","{""url"":""https://twitter.com/1051127714/status/1853788315205439678""}","{""url"":""https://x.com/RepGraceMeng"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853790596223127886","RepShontelBrown","Rep. Shontel Brown","Today is Election Day and the polls are open until 7:30 PM. + +Find your polling place and get information on ID requirements here:","2024-11-05T13:24:54.000Z",,"https://x.com/RepShontelBrown/status/1853790596223127886","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,8,18,694,"https://www.ohiosos.gov/elections/voters/",,40731,"Proudly Serving the People of Ohio's Eleventh Congressional District.",3394,"https://pbs.twimg.com/profile_images/1470758921426157573/femaCo6L_normal.jpg",494,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:13.388Z","{""url"":""https://twitter.com/1456381091598700556/status/1853790596223127886""}","{""url"":""https://x.com/RepShontelBrown"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853889450347999524","RepSylviaGarcia","Rep. Sylvia Garcia","You have the right to vote, and any intimidation or threats at the polls are illegal under federal law. If you encounter any election threats, report them immediately to the FBI. Your vote is your voice—don’t let anyone silence it.","2024-11-05T19:57:43.000Z",,"https://x.com/RepSylviaGarcia/status/1853889450347999524","{""post_id"":""1853846059815997516"",""profile_id"":""TheJusticeDept"",""profile_name"":""U.S. Department of Justice"",""data_posted"":""2009-09-10T18:16:25.000Z"",""url"":""https://x.com/TheJusticeDept/status/1853846059815997516"",""description"":""Voter intimidation and interference is illegal under federal law. If you encounter violence, threats, or intimidation at a polling place, call 911 immediately. \n\nReport election threats to the FBI: https://t.co/OV1ex6u6fv https://t.co/txgxxWltBP"",""photos"":[""https://pbs.twimg.com/media/GbovKtOXAAEGaBJ.jpg""],""videos"":null}",,0,2,8,941,,,65913,"Member of Congress, TX-29. Includes Houston, Galena Park, Jacinto City, South Houston & Pasadena. Passionate about public service. Fighting for working people.",10283,"https://pbs.twimg.com/profile_images/1742215701656416256/agbsYBy9_normal.jpg",2894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:13.658Z","{""url"":""https://twitter.com/1080587263132733442/status/1853889450347999524""}","{""url"":""https://x.com/RepSylviaGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853618312879526319","RepJimCosta","Rep. Jim Costa","🚨📢 GREAT NEWS! @USDOJ awarded nearly $500,000 to @FresnoCounty’s Central California Internet Crimes Against Children (ICAC) Task Force. + +This funding will strengthen their ability to investigate online crimes against children, allowing them to act quickly and efficiently.","2024-11-05T02:00:19.000Z",,"https://x.com/RepJimCosta/status/1853618312879526319","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""30969304"",""profile_name"":""Main Justice"",""url"":""https://x.com/USDOJ"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""98783959"",""profile_name"":""Alejandro Lopez"",""url"":""https://x.com/fresnocounty"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",9,0,4,305,,,30057,"Proudly representing California's 21st Congressional District. This account is for official use only.",6856,"https://pbs.twimg.com/profile_images/1405658815106670599/bGhubVjo_normal.jpg",1052,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:13.815Z","{""url"":""https://twitter.com/245451804/status/1853618312879526319""}","{""url"":""https://x.com/RepJimCosta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853588476442145138","SenatorHeinrich","Martin Heinrich","During Native American Heritage Month, we reflect on the stories, struggles, and triumphs of Native Americans across our nation. + +I’ll always fight to uphold Tribal sovereignty and self-determination & deliver for Tribal communities.","2024-11-05T00:01:45.000Z",,"https://x.com/SenatorHeinrich/status/1853588476442145138","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,12,10,39,4304,,,203448,"U.S. Senator for NM | Husband, dad, recovering engineer. Constantly seeking climate action, a fair shot for all New Mexicans, and the best elk adovada recipes.",13607,"https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_normal.jpg",780,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:13.868Z","{""url"":""https://twitter.com/1099199839/status/1853588476442145138""}","{""url"":""https://x.com/SenatorHeinrich"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799433072152726","RepDianaDeGette","Rep. Diana DeGette","Your vote is your voice. + +Denverites, make sure you head to the polls if you haven’t cast your vote yet and make your voice heard! #ElectionDay2024","2024-11-05T14:00:01.000Z",,"https://x.com/RepDianaDeGette/status/1853799433072152726","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,2,21,1246,,"[""ElectionDay2024""]",67631,"Proudly representing Denver in the U.S. House. Fighting for our environment, public lands & reproductive rights. Rockies/Broncos/Avs fan. Wife. Mom. Dog lover.",7859,"https://pbs.twimg.com/profile_images/1156236948983427072/AFGdaJyC_normal.jpg",9605,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:14.095Z","{""url"":""https://twitter.com/28599820/status/1853799433072152726""}","{""url"":""https://x.com/RepDianaDeGette"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853648468499132566","RepJimCosta","Rep. Jim Costa","Food security is a national security priority, & the Farms Food Future (F3) Initiative is spearheading efforts with a $65.1 million federal investment. + +At today's Field Day, F3 showcased the integration of advanced AgTech solutions & enhancement of job quality for farm workers.","2024-11-05T04:00:08.000Z","[""https://pbs.twimg.com/media/Gbl7ctiWUAEDUs3.jpg"",""https://pbs.twimg.com/media/Gbl7dJrXEAATk_D.jpg""]","https://x.com/RepJimCosta/status/1853648468499132566","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,0,3,301,,,30056,"Proudly representing California's 21st Congressional District. This account is for official use only.",6856,"https://pbs.twimg.com/profile_images/1405658815106670599/bGhubVjo_normal.jpg",1052,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:14.248Z","{""url"":""https://twitter.com/245451804/status/1853648468499132566""}","{""url"":""https://x.com/RepJimCosta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853867316854849706","RepLloydDoggett","Lloyd Doggett","Travis Country residents: As long as you are in line to vote by 7 pm CT, you can make your voice heard; your vote will be counted. Check the wait times of different polling locations here and don’t forget to bring along your family and friends ⬇️","2024-11-05T18:29:46.000Z",,"https://x.com/RepLloydDoggett/status/1853867316854849706","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,6,15,2289,"https://votetravis.gov/current-election-information/current-election/",,48924,"Representing Austin in Congress. Leading Democrats on the Ways and Means Health Subcommittee. Cyclist, Longhorn, husband to Libby, father, grandfather.",18562,"https://pbs.twimg.com/profile_images/1497313405459484678/Lb6TUWWB_normal.jpg",1345,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:14.987Z","{""url"":""https://twitter.com/153944899/status/1853867316854849706""}","{""url"":""https://x.com/RepLloydDoggett"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853820557478744084","DesJarlaisTN04","Scott DesJarlais","Make your voice heard today 🗳️","2024-11-05T15:23:57.000Z","[""https://pbs.twimg.com/media/GboX-QBWwAAZtLR.jpg""]","https://x.com/DesJarlaisTN04/status/1853820557478744084","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,8,0,6,543,,,24129,"Individual Rights. Small Government. Strong Defense. Representing Tennessee's 4th District in Congress.",6487,"https://pbs.twimg.com/profile_images/1264997339/DesJarlais.OfficialPhoto_normal.jpg",1958,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:15.086Z","{""url"":""https://twitter.com/235312723/status/1853820557478744084""}","{""url"":""https://x.com/DesJarlaisTN04"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853872712856621286","DonaldNorcross","Congressman Donald Norcross 🇺🇸","Don’t forget to vote today South Jersey! Polls close at 8pm.","2024-11-05T18:51:12.000Z","[""https://pbs.twimg.com/media/GbpHZiQXwAABiFU.jpg""]","https://x.com/DonaldNorcross/status/1853872712856621286","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,13,402,,,14053,"Honored to serve NJ-01 +Electrician • Husband, Dad, Granddad +Co-chair: @Labor_Caucus +Member: @EdWorkforceDems, @HASCDemocrats TAL Ranking Member",12446,"https://pbs.twimg.com/profile_images/1050098504515899392/h6RzXCGt_normal.jpg",1346,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:15.113Z","{""url"":""https://twitter.com/3122099613/status/1853872712856621286""}","{""url"":""https://x.com/DonaldNorcross"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853986368419955115","RepBeatty","Rep. Joyce Beatty","✨ THANK YOU, OH-03! ✨ I’m honored by your trust to serve another term. Together, we’ll keep pushing for good jobs, affordable healthcare, social justice, and community investment. Your voices lead the way, and I’m here to make sure they’re heard. Let’s keep moving forward! #OH03","2024-11-06T02:22:50.000Z","[""https://pbs.twimg.com/media/Gbquwp3XQAomlmj.jpg""]","https://x.com/RepBeatty/status/1853986368419955115","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,43,323,5486,,,75407,"Serving Ohio’s 3rd District. Chair Emerita of @TheBlackCaucus. Member of the @FSCDems Committee. Proud Ohioan.",14829,"https://pbs.twimg.com/profile_images/1744510956523139073/cMg3aOY-_normal.jpg",2363,false,1,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:15.080Z","{""url"":""https://twitter.com/1531521632/status/1853986368419955115""}","{""url"":""https://x.com/RepBeatty"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853821394112635164","SenTimKaine","Senator Tim Kaine","The November General Election is here! Polls open at 6am EST. Visit","2024-11-05T15:27:17.000Z",,"https://x.com/SenTimKaine/status/1853821394112635164","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""54982829"",""profile_name"":""VA Dept of Elections"",""url"":""https://x.com/vaELECT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,44,0,,"http://vote.virginia.gov/",,5433,"Official account of U.S. Senator Tim Kaine.",1529,"https://pbs.twimg.com/profile_images/1561740289454243844/I-luBnOd_normal.jpg",1225,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:15.883Z","{""url"":""https://twitter.com/1561739334230892544/status/1853821394112635164""}","{""url"":""https://x.com/SenTimKaine"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853887076024074597","RepMaxwellFrost","Congressman Maxwell Alejandro Frost","Happy Election Day! 🎉 Polls are now open and will close at 7 PM. It’s time to make your voice heard and participate in shaping our future. Don’t forget to check your precinct to find your voting location:","2024-11-05T19:48:17.000Z",,"https://x.com/RepMaxwellFrost/status/1853887076024074597","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""734740625438826497"",""profile_name"":""Orange County, FL SOE"",""url"":""https://x.com/OCFElections"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,16,0,,,,60770,"Congressman representing Central Florida / Orlando (FL-10)",1503,"https://pbs.twimg.com/profile_images/1610303384527011845/dea7jt7K_normal.jpg",268,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:16.070Z","{""url"":""https://twitter.com/1608494113174822925/status/1853887076024074597""}","{""url"":""https://x.com/RepMaxwellFrost"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853836466272538993","SenatorHeinrich","Martin Heinrich","Happy Election Day, America! 🇺🇸","2024-11-05T16:27:10.000Z",,"https://x.com/SenatorHeinrich/status/1853836466272538993","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,16,10,66,3323,,,203448,"U.S. Senator for NM | Husband, dad, recovering engineer. Constantly seeking climate action, a fair shot for all New Mexicans, and the best elk adovada recipes.",13607,"https://pbs.twimg.com/profile_images/1091387172282867718/pNhlcC9I_normal.jpg",780,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:16.079Z","{""url"":""https://twitter.com/1099199839/status/1853836466272538993""}","{""url"":""https://x.com/SenatorHeinrich"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853603141415059743","RepStefanik","Rep. Elise Stefanik","Two more innocent Americans have been brutally killed by an illegal immigrant. Open border czar Kamala Harris has blood on her hands. + +My heart breaks for the families of this young couple. We MUST secure our borders and prevent any more needless deaths.","2024-11-05T01:00:01.000Z",,"https://x.com/RepStefanik/status/1853603141415059743","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,68,391,603,12235,"https://www.foxnews.com/us/ms-13-gang-member-arrested-charged-murdering-happy-couple-police",,566400,"Proud Representative for New York's 21st Congressional District. House Republican Conference Chair. 📸 Instagram: @repstefanik",14425,"https://pbs.twimg.com/profile_images/1747397911703420928/yxiX9bOL_normal.jpg",746,false,17,17,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853620977927901185/fX-a-1zm?format=jpg&name=orig""]",,"2024-11-06T04:16:16.124Z","{""url"":""https://twitter.com/2962813893/status/1853603141415059743""}","{""url"":""https://x.com/RepStefanik"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853844732960788669","RepDerekKilmer","Rep. Derek Kilmer","Appreciate the folks from the @NBTStweets for taking the time to share their stories and policy priorities with me recently. As co-Chair of the Congressional Cancer Caucus, I am committed to securing federal funding to understand brain tumors, develop treatments, & find cures!","2024-11-05T17:00:01.000Z","[""https://pbs.twimg.com/media/GbA0NnDXUAAAU41.jpg""]","https://x.com/RepDerekKilmer/status/1853844732960788669","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""112813472"",""profile_name"":""National Brain Tumor Society"",""url"":""https://x.com/NBTStweets"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",1,1,7,515,,,31340,"Proudly Representing Washington’s 6th District in the U.S. House of Representatives; Member of @AppropsDems, @HouseAdm_Dems; Vice Chair of @NewDemCoalition",9490,"https://pbs.twimg.com/profile_images/1184144961215840256/4YG5c1Yf_normal.jpg",483,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:16.238Z","{""url"":""https://twitter.com/1058917562/status/1853844732960788669""}","{""url"":""https://x.com/RepDerekKilmer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853932450436759711","RubenGallego","Ruben Gallego","Election Day elote!","2024-11-05T22:48:35.000Z","[""https://pbs.twimg.com/media/Gbp9ti5W4AIDGUC.jpg"",""https://pbs.twimg.com/media/Gbp9ti3XUAU9tro.jpg"",""https://pbs.twimg.com/media/Gbp9ti4WAAYnd28.jpg"",""https://pbs.twimg.com/media/Gbp9ti9WcAEUYtn.jpg""]","https://x.com/RubenGallego/status/1853932450436759711","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,26,68,368,10626,,,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,1,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:16.989Z","{""url"":""https://twitter.com/49217025/status/1853932450436759711""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853835003697799334","RepPeteAguilar","Rep. Pete Aguilar","Your vote is your voice. Today, I encourage everyone in the Inland Empire and around the country to head to the polls and make your voice heard!","2024-11-05T16:21:22.000Z","[""https://pbs.twimg.com/media/GbolESJW4AAKPcr.jpg""]","https://x.com/RepPeteAguilar/status/1853835003697799334","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,13,36,965,,,45573,"Dad, husband, former mayor. Proud to be the Inland Empire’s voice in Congress representing #CA33. Chair of @HouseDemocrats.",3279,"https://pbs.twimg.com/profile_images/1338506082352848897/7RXoCUkU_normal.jpg",592,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:17.163Z","{""url"":""https://twitter.com/3018670151/status/1853835003697799334""}","{""url"":""https://x.com/RepPeteAguilar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853805330372657558","DonaldNorcross","Congressman Donald Norcross 🇺🇸","Thanks to @ActSecJulieSu and @POTUS for all their help in getting this done and putting Americans back to work to build the best airplanes in the world.","2024-11-05T14:23:27.000Z",,"https://x.com/DonaldNorcross/status/1853805330372657558","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1693638750994116609"",""profile_name"":""Acting Secretary Julie Su"",""url"":""https://x.com/ActSecJulieSu"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1349149096909668363"",""profile_name"":""President Biden"",""url"":""https://x.com/POTUS"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,0,2,186,,,14053,"Honored to serve NJ-01 +Electrician • Husband, Dad, Granddad +Co-chair: @Labor_Caucus +Member: @EdWorkforceDems, @HASCDemocrats TAL Ranking Member",12446,"https://pbs.twimg.com/profile_images/1050098504515899392/h6RzXCGt_normal.jpg",1346,false,0,0,"{""post_id"":""1853805328309051833"",""profile_id"":""3122099613"",""profile_name"":""DonaldNorcross""}",,,"2024-11-06T04:16:17.307Z","{""url"":""https://twitter.com/3122099613/status/1853805330372657558""}","{""url"":""https://x.com/DonaldNorcross"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853929040156995669","RepJimCosta","Rep. Jim Costa","Happy Election Day! Our elections offer Americans the opportunity to make their voice heard. + +Go vote! + +Your vote is your voice. Today, I encourage everyone in the San Joaquin Valley and around the country to head to the polls and make your voice heard!","2024-11-05T22:35:02.000Z","[""https://pbs.twimg.com/media/Gbp6olXXcAIUePE.jpg""]","https://x.com/RepJimCosta/status/1853929040156995669","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,1,247,,,30056,"Proudly representing California's 21st Congressional District. This account is for official use only.",6856,"https://pbs.twimg.com/profile_images/1405658815106670599/bGhubVjo_normal.jpg",1052,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:17.712Z","{""url"":""https://twitter.com/245451804/status/1853929040156995669""}","{""url"":""https://x.com/RepJimCosta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853621021066354810","SenRickScott","Rick Scott","11/4: We are closely monitoring Tropical Storm #Rafael as Tropical Storm Watches are in effect for the Lower & Middle FL Keys. + +Know what to do to stay safe during a watch or warning & continue to monitor your local forecast & follow all orders by local officials.","2024-11-05T02:11:04.000Z",,"https://x.com/SenRickScott/status/1853621021066354810","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""71245831"",""profile_name"":""FL Division of Emergency Management"",""url"":""https://x.com/FLSERT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,25,0,,,"[""Rafael""]",481341,"Florida's U.S. Senator. Fighting for Florida families and to Make Washington Work. #LetsGetToWork https://t.co/O6Ra1UNW96",30268,"https://pbs.twimg.com/profile_images/1082776530235916289/KVIfkvwW_normal.jpg",1292,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:17.808Z","{""url"":""https://twitter.com/131546062/status/1853621021066354810""}","{""url"":""https://x.com/SenRickScott"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853831257760870860","RepSaraJacobs","Congresswoman Sara Jacobs","Our democracy only works when everyone gets involved, so if you’re eligible, make sure you vote today! Learn everything you need to make your voice heard at","2024-11-05T16:06:29.000Z",,"https://x.com/RepSaraJacobs/status/1853831257760870860","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,3,7,755,"http://vote.gov/",,37963,"Proud to represent #CA51 and serve as the youngest member of Democratic House leadership. Member of House Foreign Affairs and Armed Services Committees. She/Her",4016,"https://pbs.twimg.com/profile_images/1405318967628021761/cmMWWgRY_normal.jpg",91,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853880997483286528/2V456nuW?format=jpg&name=orig""]",,"2024-11-06T04:16:17.790Z","{""url"":""https://twitter.com/1345103905869455361/status/1853831257760870860""}","{""url"":""https://x.com/RepSaraJacobs"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853893582434062570","RepMikeQuigley","Mike Quigley","Officer Martinez was only 26 years old. I hope to see the justice system hold his shooter accountable. Violence in our city is unacceptable and we must work harder to ensure our residents and officers are safe from harm. +  +My thoughts are with his family and friends at this time.","2024-11-05T20:14:08.000Z",,"https://x.com/RepMikeQuigley/status/1853893582434062570","{""post_id"":""1853639375738876396"",""profile_id"":""WGNNews"",""profile_name"":""WGN TV News"",""data_posted"":""2008-05-15T19:28:40.000Z"",""url"":""https://x.com/WGNNews/status/1853639375738876396"",""description"":""BREAKING NEWS: A Chicago police officer was shot and killed Monday night on the city’s South Side, multiple sources tell WGN News.\nhttps://t.co/wlgt5F1sdj"",""photos"":null,""videos"":null}",,1,1,8,1476,,,51438,"Representing Illinois' 5th District. House Appropriator & head Dem on THUD Sub, amateur hockey player, proud Cubs fan. He/Him.",20280,"https://pbs.twimg.com/profile_images/1409558160130592770/kWo2RAZJ_normal.jpg",1786,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:17.827Z","{""url"":""https://twitter.com/56864092/status/1853893582434062570""}","{""url"":""https://x.com/RepMikeQuigley"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853923885898670411","RepMcGovern","Rep. Jim McGovern","America, if you are in line to vote, stay in line to vote. Even after the polls close. Make sure your voice is heard!","2024-11-05T22:14:33.000Z",,"https://x.com/RepMcGovern/status/1853923885898670411","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,35,141,4619,,,126700,"Lisa's husband. Patrick & Molly's dad. Serving #MA02 & working to #EndHungerNow. Top Dem on @RulesDemocrats. Co-Chair @TLhumanrights. Member of @CECCgov. he/him",17757,"https://pbs.twimg.com/profile_images/1553032233799360512/E1Y69xeF_normal.jpg",704,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:17.925Z","{""url"":""https://twitter.com/242426145/status/1853923885898670411""}","{""url"":""https://x.com/RepMcGovern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853851969493893401","RepTeresaLF","Rep. Teresa Leger Fernández","Nuevo Mexico! Your vote is your voice and today is the day to use it. + +Find your polling place, view your sample ballot, and find more information about voting at","2024-11-05T17:28:47.000Z","[""https://pbs.twimg.com/media/Gbo0inIXwAEWv19.jpg""]","https://x.com/RepTeresaLF/status/1853851969493893401","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,4,18,316,"https://www.sos.nm.gov/voting-and-elections/voter-information-portal-nmvote-org/",,11266,"Working to protect what we love. Mom of 3. Proudly serving New Mexico’s 3rd Congressional District. She/her/ella.",3115,"https://pbs.twimg.com/profile_images/1362134515699834888/H8hmmCXU_normal.jpg",323,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:17.929Z","{""url"":""https://twitter.com/1345147845926670337/status/1853851969493893401""}","{""url"":""https://x.com/RepTeresaLF"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853846062215176507","RepYoungKim","Young Kim",".@SHPE empowers Hispanic students & professionals in STEM to reach their full potential through professional development opportunities. I congratulated SHPE leaders on their 50th Anniversary in Anaheim last week. Way to go!","2024-11-05T17:05:18.000Z","[""https://pbs.twimg.com/media/GbovHgFXIAAC2LM.jpg"",""https://pbs.twimg.com/media/GbovHgEW8AAD0oM.jpg"",""https://pbs.twimg.com/media/GbovHgKWMAAqpFa.jpg"",""https://pbs.twimg.com/media/GbovHgQW4AAYklX.jpg""]","https://x.com/RepYoungKim/status/1853846062215176507","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""36710713"",""profile_name"":""SHPE National"",""url"":""https://x.com/SHPE"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",3,3,12,651,,,36034,"Wife, mother, grandmother, small business owner, former CA Assemblywoman. Proud to represent #CA40 & fight for the American dream 🇺🇸",6659,"https://pbs.twimg.com/profile_images/1456394579310219264/PlwX0GpS_normal.jpg",909,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:18.407Z","{""url"":""https://twitter.com/1344677401465397249/status/1853846062215176507""}","{""url"":""https://x.com/RepYoungKim"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853896474821636464","RepCohen","Steve Cohen","We shouldn’t be waiting to physically secure the Capitol and this election against possible violence—they should start erecting fences, barricades & other safety measures NOW, before Congress returns. + +We know Trump won’t accept the results if he loses and we know he’ll sow","2024-11-05T20:25:37.000Z",,"https://x.com/RepCohen/status/1853896474821636464","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""162069635"",""profile_name"":""Steve Cohen"",""url"":""https://x.com/RepCohen"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,31,0,,,,87615,"Memphis | Ranking Member of Aviation Subcommittee | Champion for Justice and Civil Rights on Judiciary Committee | House Ranking Member of Helsinki Commission",17177,"https://pbs.twimg.com/profile_images/1268243438308376586/CmkJQcsJ_normal.jpg",6935,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:18.639Z","{""url"":""https://twitter.com/162069635/status/1853896474821636464""}","{""url"":""https://x.com/RepCohen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853858301156438417","rep_jackson","Rep. Jonathan L. Jackson","Thank you, @Rep_Jackson (IL-1), for joining us at @bapschicago for our Diwali festivities! We appreciate your support for our community.","2024-11-05T17:53:56.000Z",,"https://x.com/rep_jackson/status/1853858301156438417","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2846082737"",""profile_name"":""BAPS Public Affairs"",""url"":""https://x.com/BAPS_PubAffairs"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1615455071801679874"",""profile_name"":""Rep. Jonathan L. Jackson"",""url"":""https://x.com/rep_jackson"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1452740667910799370"",""profile_name"":""BAPS Chicago"",""url"":""https://x.com/bapschicago"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,5,0,,,,4794,"Honored to represent #IL01 and committed to promoting policies that advance equality and justice. Proud Member of @HouseForeign + and @HouseAgDems.",881,"https://pbs.twimg.com/profile_images/1621293457808433156/lUZl_FkA_normal.jpg",219,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:19.361Z","{""url"":""https://twitter.com/1615455071801679874/status/1853858301156438417""}","{""url"":""https://x.com/rep_jackson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853920325597315292","RepJimmyGomez","Rep. Jimmy Gomez","As a father to my 2-year-old, Hodge, I'm committed to safeguarding the health of our planet for future generations. + +The $558,000 in federal funds I secured for the Elephant Hill Rangers will do just that—protect the natural resources of our #NELA hillsides for years to come.🌳","2024-11-05T22:00:24.000Z",,"https://x.com/RepJimmyGomez/status/1853920325597315292","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,0,0,,,,53681,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:19.472Z","{""url"":""https://twitter.com/2371339658/status/1853920325597315292""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853802628993409046","RepBera","Ami Bera, M.D.","Happy Election Day, #SacramentoCounty! + +Make a plan to vote and cast your ballot today. + +For more information, visit","2024-11-05T14:12:43.000Z","[""https://pbs.twimg.com/media/GboHkfcXYAAokFa.png""]","https://x.com/RepBera/status/1853802628993409046","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,3,5,498,"http://elections.saccounty.net/","[""SacramentoCounty""]",46627,"Proudly representing #CA06 and #SacramentoCounty in the U.S. House of Representatives.",7366,"https://pbs.twimg.com/profile_images/1762261991933005824/T2UmPqt8_normal.jpg",2311,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:19.546Z","{""url"":""https://twitter.com/950783972/status/1853802628993409046""}","{""url"":""https://x.com/RepBera"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853723822379200973","RepThomasMassie","Thomas Massie","It’s Election Day! + +Anyone else up early and excited to put this country back on track?! + +Here’s how to find your polling location in Kentucky:","2024-11-05T08:59:34.000Z",,"https://x.com/RepThomasMassie/status/1853723822379200973","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,794,1897,15737,198721,"https://elect.ky.gov/Voters/Pages/Polling-Locations.aspx",,1054403,"U.S. Representative KY4, Engineer, Farmer, Inventor. 30 patents. Appalachian American. MIT SB93 SM96 #sassywithmassie #politicalsciencedenier pronoun: Pappaw",21036,"https://pbs.twimg.com/profile_images/1642289348602150914/PiHxa9pP_normal.jpg",19141,false,67,69,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:19.917Z","{""url"":""https://twitter.com/975200486/status/1853723822379200973""}","{""url"":""https://x.com/RepThomasMassie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853941947007721554","RepThomasMassie","Thomas Massie","I literally tied for first congressional race won in the United States tonight ! (CNN map)","2024-11-05T23:26:19.000Z","[""https://pbs.twimg.com/media/GbqGW19XsAQbwQ1.jpg""]","https://x.com/RepThomasMassie/status/1853941947007721554","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,329,242,4843,76765,,,1054403,"U.S. Representative KY4, Engineer, Farmer, Inventor. 30 patents. Appalachian American. MIT SB93 SM96 #sassywithmassie #politicalsciencedenier pronoun: Pappaw",21036,"https://pbs.twimg.com/profile_images/1642289348602150914/PiHxa9pP_normal.jpg",19141,false,20,32,"{""post_id"":""1853939262648971370"",""profile_id"":""975200486"",""profile_name"":""RepThomasMassie""}",,,"2024-11-06T04:16:20.225Z","{""url"":""https://twitter.com/975200486/status/1853941947007721554""}","{""url"":""https://x.com/RepThomasMassie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853965578345832451","RubenGallego","Ruben Gallego","There is still time to vote! You can cast your ballot if you’re in line by 7 PM. + +Find your closest polling location right now at","2024-11-06T01:00:13.000Z",,"https://x.com/RubenGallego/status/1853965578345832451","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,158,331,15076,"https://iwillvote.com/AZ",,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,2,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851380787809046528/hGV6E0J4?format=png&name=orig""]",,"2024-11-06T04:16:20.533Z","{""url"":""https://twitter.com/49217025/status/1853965578345832451""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853767859232481317","RepAOC","Rep. Alexandria Ocasio-Cortez","Election Day is here! Polling places in NY are open until 9PM and assistance is available in seven languages 🗳️ + +To find your poll site or view a sample ballot visit","2024-11-05T11:54:33.000Z","[""https://pbs.twimg.com/media/GbnoCu8XcAAq_8-.jpg""]","https://x.com/RepAOC/status/1853767859232481317","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,44,100,329,16135,"https://findmypollsite.vote.nyc/",,784022,"This account is maintained by federal staff to share services and legislation relevant to constituents of NY-14.",1831,"https://pbs.twimg.com/profile_images/1418224461401235456/iKs5xt4i_normal.jpg",609,false,1,6,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:20.565Z","{""url"":""https://twitter.com/1079104563280527364/status/1853767859232481317""}","{""url"":""https://x.com/RepAOC"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853861718675398661","RepStefanik","Rep. Elise Stefanik","🚨 ELECTION INTERFERENCE 🚨 + +Malign foreign actors are attempting to hijack American elections through the Far Left Democrat fundraising platform ActBlue by tipping the scales in favor of Kamala Harris and Congressional Democrats. + +It has never been more CRITICAL to ensure American elections are free from foreign manipulation. + +https://t.co/nptY5etdJW","2024-11-05T18:07:31.000Z",,"https://x.com/RepStefanik/status/1853861718675398661","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,36,164,454,11832,,,566399,"Proud Representative for New York's 21st Congressional District. House Republican Conference Chair. 📸 Instagram: @repstefanik",14425,"https://pbs.twimg.com/profile_images/1747397911703420928/yxiX9bOL_normal.jpg",746,false,6,7,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:20.641Z","{""url"":""https://twitter.com/2962813893/status/1853861718675398661""}","{""url"":""https://x.com/RepStefanik"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853828992593174803","RepMeuser","Congressman Dan Meuser","I’ll be on The Bob Cordaro Show on @WILKNewsradio at 11:35am. Make sure to tune in! Listen live here:","2024-11-05T15:57:28.000Z","[""https://pbs.twimg.com/media/GboflfFXgAA0Y0v.jpg""]","https://x.com/RepMeuser/status/1853828992593174803","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""46116415"",""profile_name"":""WILK Newsradio"",""url"":""https://x.com/WILKNewsradio"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,0,0,246,"https://audacy.com/wilknews/hosts/the-bob-cordaro-show",,23235,"Proudly serving the hardworking taxpayers of Pennsylvania's 9th Congressional District. Member of @FinancialCmte and @HouseSmallBiz",3479,"https://pbs.twimg.com/profile_images/1081299055114895360/DvrWDK_k_normal.jpg",431,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:21.386Z","{""url"":""https://twitter.com/1080574793630527505/status/1853828992593174803""}","{""url"":""https://x.com/RepMeuser"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815466793304138","RepHorsford","Rep. Steven Horsford","Election Day is here! + +If you haven't voted yet, there's still time. + +Head to your polling location & make your voice heard. + +You can check where to vote & track your ballot at","2024-11-05T15:03:44.000Z",,"https://x.com/RepHorsford/status/1853815466793304138","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,12,5,11,524,"https://www.nvsos.gov/sos/elections/election-information/2024-election-information",,21553,"Govt Twitter account of Congressman Steven Horsford. Proudly representing the people of Nevada's 4th Congressional District. Chairman of @TheBlackCaucus #NV04",9141,"https://pbs.twimg.com/profile_images/1540443161788645381/GSC8g_1Y_normal.jpg",2034,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853814121109569536/pu/vid/avc1/1280x720/JJg3vsn1c7Oe5oQN.mp4?tag=12"",""duration"":67634}]","2024-11-06T04:16:21.448Z","{""url"":""https://twitter.com/389840566/status/1853815466793304138""}","{""url"":""https://x.com/RepHorsford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853920553054376089","RubenGallego","Ruben Gallego","Solo te quedan 4 horas para votar, Arizona. + +¡Necesitamos que tu voz se escuche!","2024-11-05T22:01:18.000Z","[""https://pbs.twimg.com/media/Gbpy6pebYAAFbbs.jpg""]","https://x.com/RubenGallego/status/1853920553054376089","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,21,80,156,8420,"http://voyavotar.com/AZ",,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,3,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:22.049Z","{""url"":""https://twitter.com/49217025/status/1853920553054376089""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853777374258610470","RepGabeAmo","Congressman Gabe Amo","Today is your last chance to #VOTE in the 2024 election! For more info on RI polling locations, questions on the ballot, or even same-day registering check out:","2024-11-05T12:32:22.000Z","[""https://pbs.twimg.com/media/GbnwskAXUAAxqZV.jpg""]","https://x.com/RepGabeAmo/status/1853777374258610470","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,3,17,480,"https://vote.sos.ri.gov/","[""VOTE""]",2463,"Proudly representing Rhode Island's First Congressional District in the United States Congress.",912,"https://pbs.twimg.com/profile_images/1814324878746542080/-lNIwLqr_normal.jpg",195,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:22.250Z","{""url"":""https://twitter.com/1724849796496924672/status/1853777374258610470""}","{""url"":""https://x.com/RepGabeAmo"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853975219159126084","RubenGallego","Ruben Gallego","Si está en la fila antes de que cierren las urnas, tiene derecho a votar.  + +SI ESTÁ EN LA FILA, MANTÉNGASE EN LA FILA.","2024-11-06T01:38:32.000Z",,"https://x.com/RubenGallego/status/1853975219159126084","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,40,126,12194,,,211752,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,0,0,"{""post_id"":""1853974473592160336"",""profile_id"":""49217025"",""profile_name"":""RubenGallego""}",,,"2024-11-06T04:16:23.012Z","{""url"":""https://twitter.com/49217025/status/1853975219159126084""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853787034168492289","RepLuna","Rep. Anna Paulina Luna","Are you better off now than you were 4 years ago?","2024-11-05T13:10:45.000Z",,"https://x.com/RepLuna/status/1853787034168492289","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,108,132,276,21941,,,216585,"Official account for FL-13 Rep. Anna Paulina Luna 🇺🇸 | Serving on @GOPOversight & @NatResources | Wife-Mom-USAF Veteran",3040,"https://pbs.twimg.com/profile_images/1751266572340019200/vnXHTR7z_normal.jpg",306,false,5,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:23.076Z","{""url"":""https://twitter.com/1610230835289923584/status/1853787034168492289""}","{""url"":""https://x.com/RepLuna"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853844691126497291","RepThomasMassie","Thomas Massie","On the ballot in Kentucky is a Constitutional Amendment to prevent non-citizens from voting. It would also exclude idiots and insane persons from voting. + +That’s great, but can we also keep idiots and the insane from running for elected office? 😂 + +#sassywithmassie","2024-11-05T16:59:51.000Z","[""https://pbs.twimg.com/media/Gbot6n8XsAAd552.jpg""]","https://x.com/RepThomasMassie/status/1853844691126497291","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,800,2443,16399,224943,,"[""sassywithmassie""]",1054403,"U.S. Representative KY4, Engineer, Farmer, Inventor. 30 patents. Appalachian American. MIT SB93 SM96 #sassywithmassie #politicalsciencedenier pronoun: Pappaw",21036,"https://pbs.twimg.com/profile_images/1642289348602150914/PiHxa9pP_normal.jpg",19141,false,176,315,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:23.243Z","{""url"":""https://twitter.com/975200486/status/1853844691126497291""}","{""url"":""https://x.com/RepThomasMassie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853856392341262788","RepBonnie","Rep. Bonnie Watson Coleman","On this day in 1968, Shirley Chisholm became first black woman elected to the United States Congress.","2024-11-05T17:46:21.000Z",,"https://x.com/RepBonnie/status/1853856392341262788","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""808806102"",""profile_name"":""AFRICAN & BLACK HISTORY"",""url"":""https://x.com/AfricanArchives"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,13765,0,,,,46767,"Proudly serving the people of New Jersey’s 12th Congressional District. Proud #BlackWoman. Member @USProgressives Co-Chair @CBWGCaucus. She/her.",13046,"https://pbs.twimg.com/profile_images/1224811086039470081/1Eskre6l_normal.jpg",1285,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:23.978Z","{""url"":""https://twitter.com/2968451607/status/1853856392341262788""}","{""url"":""https://x.com/RepBonnie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853951852473197011","RepDWStweets","Rep. Debbie Wasserman Schultz","Remember: if you’re in line to vote by 7 PM, stay in line! + +Any voters waiting in line by the time the polls close will still have the opportunity to cast a ballot.","2024-11-06T00:05:41.000Z",,"https://x.com/RepDWStweets/status/1853951852473197011","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,2,6,693,,,24191,"U.S. Congresswoman proudly representing the people of Florida's 25th District in our nation's capital. Text me: 954-866-9444",9464,"https://pbs.twimg.com/profile_images/1217104542837460992/1CZNbVP9_normal.png",2508,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:24.447Z","{""url"":""https://twitter.com/1140648348/status/1853951852473197011""}","{""url"":""https://x.com/RepDWStweets"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853837747733111119","SenRickScott","Rick Scott","A tropical storm warning has been issued for the Florida Keys. + +Keep an eye on this storm and listen to local officials. Watch for heavy rain, and don’t drive in flood waters!","2024-11-05T16:32:16.000Z",,"https://x.com/SenRickScott/status/1853837747733111119","{""post_id"":""1853812025375518954"",""profile_id"":""NHC_Atlantic"",""profile_name"":""National Hurricane Center"",""data_posted"":""2011-05-16T17:59:24.000Z"",""url"":""https://x.com/NHC_Atlantic/status/1853812025375518954"",""description"":""Tropical Storm #Rafael Advisory 8: Rafael Getting Better Organized as the Center Passes South Of Western Jamaica. Tropical Storm Warning Issued For the Florida Keys. https://t.co/tW4KeGe9uJ"",""photos"":null,""videos"":null}",,17,12,60,9278,,,481352,"Florida's U.S. Senator. Fighting for Florida families and to Make Washington Work. #LetsGetToWork https://t.co/O6Ra1UNW96",30268,"https://pbs.twimg.com/profile_images/1082776530235916289/KVIfkvwW_normal.jpg",1292,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:24.457Z","{""url"":""https://twitter.com/131546062/status/1853837747733111119""}","{""url"":""https://x.com/SenRickScott"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853974473592160336","RubenGallego","Ruben Gallego","If you're in line before polls close, you have a right to vote + +IF YOU’RE IN LINE, STAY IN LINE.","2024-11-06T01:35:34.000Z",,"https://x.com/RubenGallego/status/1853974473592160336","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,47,664,2257,68808,,,211752,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,7,5,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:24.553Z","{""url"":""https://twitter.com/49217025/status/1853974473592160336""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853852427142705373","RepNancyMace","Rep. Nancy Mace","We attended a Berkeley County Council Meeting with Sheriff Duane Lewis to celebrate a $500k grant we secured together. + +This funding will bring new officers on board to tackle rising gun violence in Berkeley County. +#LowcountryFirst","2024-11-05T17:30:36.000Z","[""https://pbs.twimg.com/media/Gbo09VsXsAEt32v.jpg"",""https://pbs.twimg.com/media/Gbo09TGWIAAmtOQ.jpg""]","https://x.com/RepNancyMace/status/1853852427142705373","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,28,28,389,13659,,"[""LowcountryFirst""]",329304,"From Waffle House ➡ The Citadel ➡ US House. Working hard serving South Carolina. #SC01 #LowcountryFirst @GOPoversight @HASCRepublicans",6617,"https://pbs.twimg.com/profile_images/1592954456483762181/uhnU3tIp_normal.jpg",1393,false,1,6,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:24.906Z","{""url"":""https://twitter.com/1343597700542038017/status/1853852427142705373""}","{""url"":""https://x.com/RepNancyMace"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853888724129452264","RepScottPeters","Rep. Scott Peters","Earlier this month, @CityofSanDiego finished repairing the Smugglers Gulch, a vital storm channel in the Tijuana River Valley. + +These improvements will help to mitigate flooding & storm damage in the river. Thank you to the city crews for your hard work!","2024-11-05T19:54:50.000Z",,"https://x.com/RepScottPeters/status/1853888724129452264","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""25370473"",""profile_name"":""City of San Diego"",""url"":""https://x.com/CityofSanDiego"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,0,3,497,"https://timesofsandiego.com/health/2024/10/31/city-crews-complete-work-on-smugglers-gulch-berm-months-after-storm-damage/",,30218,"Proudly serving #CA50 & the U.S. Constitution + +@EnergyCommerce +@HouseBudgetDems +@NewDemCoalition + +#science #climate #vets #border #natsec #tourism",14440,"https://pbs.twimg.com/profile_images/1150789408318091265/SurWDpFr_normal.png",1388,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1852183703604047873/597MfdmE?format=jpg&name=orig""]",,"2024-11-06T04:16:24.967Z","{""url"":""https://twitter.com/1135486501/status/1853888724129452264""}","{""url"":""https://x.com/RepScottPeters"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853791426779201571","RepMcGovern","Rep. Jim McGovern","“Women are not without electoral or political power.” + +—Samuel Alito, writing for the Supreme Court majority overturning Roe v. Wade. + +He’s about to realize just how right he is.","2024-11-05T13:28:12.000Z",,"https://x.com/RepMcGovern/status/1853791426779201571","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,36,273,1079,16209,,,126701,"Lisa's husband. Patrick & Molly's dad. Serving #MA02 & working to #EndHungerNow. Top Dem on @RulesDemocrats. Co-Chair @TLhumanrights. Member of @CECCgov. he/him",17757,"https://pbs.twimg.com/profile_images/1553032233799360512/E1Y69xeF_normal.jpg",704,false,7,15,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:25.416Z","{""url"":""https://twitter.com/242426145/status/1853791426779201571""}","{""url"":""https://x.com/RepMcGovern"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853832689381437754","RepGregoryMeeks","Rep. Gregory Meeks","Happy Election Day! Many have sacrificed for us all to have the opportunity to vote — let’s honor them by getting to the polls today. + +Happy Voting! #NY05 🗳️","2024-11-05T16:12:10.000Z","[""https://pbs.twimg.com/media/GbojAaRXoAEaAtW.jpg""]","https://x.com/RepGregoryMeeks/status/1853832689381437754","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,3,513,,"[""NY05""]",54592,"Proudly serving the people of the 5th Congressional District of New York. For media inquiries, please contact Ayanna.Young@mail.house.gov",9201,"https://pbs.twimg.com/profile_images/978323500174802956/XhTHL8TC_normal.jpg",1271,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:25.446Z","{""url"":""https://twitter.com/22812754/status/1853832689381437754""}","{""url"":""https://x.com/RepGregoryMeeks"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853813272081777079","RepBrecheen","Congressman Josh Brecheen","Oklahoma get out and vote today—the future of our country depends on it! +  +You can locate your polling location and check your registration by visiting here:","2024-11-05T14:55:00.000Z",,"https://x.com/RepBrecheen/status/1853813272081777079","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,4,14,304,"https://okvoterportal.okelections.gov/",,8475,"Christian | Husband | Father | Fourth generation rancher | Congressman for Oklahoma’s 2nd Congressional District @housebudgetGOP @HomelandGOP @freedomcaucus",1552,"https://pbs.twimg.com/profile_images/1608150573920002049/Baq9nnlT_normal.jpg",361,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:25.497Z","{""url"":""https://twitter.com/1603032402942730248/status/1853813272081777079""}","{""url"":""https://x.com/RepBrecheen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853990249220690334","RepThomasMassie","Thomas Massie","RT @RobSchneider:","2024-11-06T02:38:15.000Z","[""https://pbs.twimg.com/media/GbqvFwdXMAA5LzX.jpg""]","https://x.com/RepThomasMassie/status/1853990249220690334","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""90552683"",""profile_name"":""Rob Schneider"",""url"":""https://x.com/RobSchneider"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4395,0,1,,,1054399,"U.S. Representative KY4, Engineer, Farmer, Inventor. 30 patents. Appalachian American. MIT SB93 SM96 #sassywithmassie #politicalsciencedenier pronoun: Pappaw",21036,"https://pbs.twimg.com/profile_images/1642289348602150914/PiHxa9pP_normal.jpg",19141,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:25.775Z","{""url"":""https://twitter.com/975200486/status/1853990249220690334""}","{""url"":""https://x.com/RepThomasMassie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799446221672884","RubenGallego","Ruben Gallego","¡Hoy es el día! + +Las urnas están abiertas de 7:00 am a 7:00 pm. Para encontrar el lugar de votación más cercano, visite","2024-11-05T14:00:04.000Z","[""https://pbs.twimg.com/media/GboExYNa8AA2ygu.jpg""]","https://x.com/RubenGallego/status/1853799446221672884","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,12,37,111,7463,"http://voyavotar.com/AZ",,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,1,1,"{""post_id"":""1853799439812669842"",""profile_id"":""49217025"",""profile_name"":""RubenGallego""}",,,"2024-11-06T04:16:26.018Z","{""url"":""https://twitter.com/49217025/status/1853799446221672884""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853790934430810474","RepSummerLee","Rep. Summer Lee","Today is Election Day (11/5)! + +Polls are open from 7:00 am to 8:00 pm. Anyone in line as of 8:00 pm on Election Day will be allowed to vote. + +The County Office Building is the only ballot return site available to voters today. Mail-in ballots must be received by the Elections","2024-11-05T13:26:15.000Z",,"https://x.com/RepSummerLee/status/1853790934430810474","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""537463383"",""profile_name"":""Allegheny County"",""url"":""https://x.com/Allegheny_Co"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,13,0,,,,42916,"Representing Pennsylvania's 12th Congressional District",2778,"https://pbs.twimg.com/profile_images/1755084697254719488/ExFeu75S_normal.jpg",2223,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:26.774Z","{""url"":""https://twitter.com/999285287812558848/status/1853790934430810474""}","{""url"":""https://x.com/RepSummerLee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853875277832782283","RubenGallego","Ruben Gallego","Arizona, today is the day! Let’s finish what we started. Every vote counts, every voice matters. + +If you haven’t already– get out there and VOTE!","2024-11-05T19:01:24.000Z",,"https://x.com/RubenGallego/status/1853875277832782283","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,55,275,774,22306,"http://iwillvote.com/",,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,3,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853622709198135296/X2oMglW9?format=png&name=orig""]",,"2024-11-06T04:16:26.976Z","{""url"":""https://twitter.com/49217025/status/1853875277832782283""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853898465794719779","RepRichHudson","Rep. Richard Hudson","If you’re filling up your gas tank or buying groceries today, remember that those higher costs are because of Kamala Harris. + +And you’re paying the price.","2024-11-05T20:33:32.000Z",,"https://x.com/RepRichHudson/status/1853898465794719779","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,13,6,27,2085,,,27563,"Official Account of Congressman Richard Hudson (NC-09) +Member of @HouseGOP Leadership & @HouseCommerce",10930,"https://pbs.twimg.com/profile_images/1345780278325817359/-SGkyzAX_normal.jpg",2954,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:27.054Z","{""url"":""https://twitter.com/935033864/status/1853898465794719779""}","{""url"":""https://x.com/RepRichHudson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853943123312771292","RubenGallego","Ruben Gallego","GO VOTE ASU! #ForksUp","2024-11-05T23:30:59.000Z",,"https://x.com/RubenGallego/status/1853943123312771292","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,27,209,1115,15876,,"[""ForksUp""]",211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,1,7,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853942974033416193/vid/avc1/1080x1920/4QSySFGt8j9YY73x.mp4?tag=16"",""duration"":11508}]","2024-11-06T04:16:27.022Z","{""url"":""https://twitter.com/49217025/status/1853943123312771292""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815213318909970","RepLuna","Rep. Anna Paulina Luna","The corrupt establishment tried to: + +- Bankrupt President Trump.  +- Impeach President Trump.  +- Jail President Trump. +- Kill President Trump.  + +YET HE IS STILL FIGHTING FOR OUR COUNTRY! 🇺🇸🔥","2024-11-05T15:02:43.000Z",,"https://x.com/RepLuna/status/1853815213318909970","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,69,443,2335,28391,,,216585,"Official account for FL-13 Rep. Anna Paulina Luna 🇺🇸 | Serving on @GOPOversight & @NatResources | Wife-Mom-USAF Veteran",3040,"https://pbs.twimg.com/profile_images/1751266572340019200/vnXHTR7z_normal.jpg",306,false,7,19,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:27.083Z","{""url"":""https://twitter.com/1610230835289923584/status/1853815213318909970""}","{""url"":""https://x.com/RepLuna"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853857533863338167","RepRobertGarcia","Congressman Robert Garcia","Together, we are fighting for the promise of America — a promise of freedom, opportunity, and equality for all.","2024-11-05T17:50:53.000Z",,"https://x.com/RepRobertGarcia/status/1853857533863338167","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""803694179079458816"",""profile_name"":""Vice President Kamala Harris"",""url"":""https://x.com/VP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4039,0,,,,39960,"California Congressman. Democratic Freshman Class President. Former Long Beach Mayor. Proud Immigrant. Truth and Justice, always. 🇺🇸🏳️‍🌈",2153,"https://pbs.twimg.com/profile_images/1828221774045290497/-7fJcDLr_normal.jpg",652,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:27.527Z","{""url"":""https://twitter.com/1602792195878047744/status/1853857533863338167""}","{""url"":""https://x.com/RepRobertGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853868790171263294","RepDonDavis","Congressman Don Davis","Warren County Memorial Library hosted an exciting series of children's programs focused on teaching the importance of voting. Today’s mock voting event gave kids the chance to simulate the voting process, create arts and crafts, and learn how elections work. It's never too early to empower the next generation!","2024-11-05T18:35:37.000Z","[""https://pbs.twimg.com/media/GbpD1c1WEAAUg6r.jpg"",""https://pbs.twimg.com/media/GbpD1c0XsAAIRms.jpg"",""https://pbs.twimg.com/media/GbpD1c3XsAEBuLW.jpg""]","https://x.com/RepDonDavis/status/1853868790171263294","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,1,6,282,,,3541,"Father | Husband | Veteran | @HouseAgDems |@HASCDemocrats +Working to deliver fair solutions for #NC01.",2371,"https://pbs.twimg.com/profile_images/1610324040106885121/ux175IUs_normal.jpg",308,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:28.105Z","{""url"":""https://twitter.com/1610323296360210433/status/1853868790171263294""}","{""url"":""https://x.com/RepDonDavis"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853775455158931615","RepJohnLarson","Rep. John Larson","Today is Election Day! Polls are open from 6 AM to 8 PM. If you’re in line by 8, stay in line. To find your polling location or for information on same-day registration, visit","2024-11-05T12:24:44.000Z","[""https://pbs.twimg.com/media/Gbnu8vJWcAAf-Qx.jpg""]","https://x.com/RepJohnLarson/status/1853775455158931615","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,2,4,397,"http://myvote.ct.gov/",,29268,"Member of Congress representing the First District of Connecticut.",9845,"https://pbs.twimg.com/profile_images/979449416129097728/q0pTyqB9_normal.jpg",926,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:28.333Z","{""url"":""https://twitter.com/50452197/status/1853775455158931615""}","{""url"":""https://x.com/RepJohnLarson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853860330377797987","RepGuthrie","Rep. Brett Guthrie","Since January 2021 we have seen more than 8.4 million illegal immigrants cross our Southern border, with 2 million additional gotaways getting away undetected into our nation. This is 4 times more than we saw in the prior four years. We cannot allow this border crisis to continue and allow thousands of pounds of deadly drugs and dangerous criminals to enter into our nation.","2024-11-05T18:02:00.000Z",,"https://x.com/RepGuthrie/status/1853860330377797987","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,4,8,1014,,,22767,"Fighting for conservative values in Washington while representing the people of Kentucky's 2nd Congressional District",3267,"https://pbs.twimg.com/profile_images/689479180568829952/sNv4Qrl3_normal.jpg",342,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:28.512Z","{""url"":""https://twitter.com/1908143071/status/1853860330377797987""}","{""url"":""https://x.com/RepGuthrie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853862402883723520","RepHorsford","Rep. Steven Horsford","No one should have to choose between insulin & food. + +Thanks to legislation I've voted for, insulin is now $35/month for seniors. + +I'll keep working to lower drug costs for all.","2024-11-05T18:10:14.000Z","[""https://pbs.twimg.com/media/Gbo-CAXW0AAnIVE.jpg""]","https://x.com/RepHorsford/status/1853862402883723520","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,1,6,296,,,21551,"Govt Twitter account of Congressman Steven Horsford. Proudly representing the people of Nevada's 4th Congressional District. Chairman of @TheBlackCaucus #NV04",9141,"https://pbs.twimg.com/profile_images/1540443161788645381/GSC8g_1Y_normal.jpg",2034,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:28.828Z","{""url"":""https://twitter.com/389840566/status/1853862402883723520""}","{""url"":""https://x.com/RepHorsford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853854544968528237","RepLuna","Rep. Anna Paulina Luna","Washington, D.C., is plagued by career politicians like @KamalaHarris and special interests who do not care about Americans. I’ve proposed a bill to ban toxic substances in our food, but progress is blocked by them. We need real change to make America HEALTHY again!","2024-11-05T17:39:01.000Z",,"https://x.com/RepLuna/status/1853854544968528237","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""30354991"",""profile_name"":""Kamala Harris"",""url"":""https://x.com/KamalaHarris"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",40,172,649,13928,,,216585,"Official account for FL-13 Rep. Anna Paulina Luna 🇺🇸 | Serving on @GOPOversight & @NatResources | Wife-Mom-USAF Veteran",3040,"https://pbs.twimg.com/profile_images/1751266572340019200/vnXHTR7z_normal.jpg",306,false,3,5,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853854464387567616/vid/avc1/1292x720/pxuaSHWYpUyKp9k4.mp4?tag=16"",""duration"":37906}]","2024-11-06T04:16:29.239Z","{""url"":""https://twitter.com/1610230835289923584/status/1853854544968528237""}","{""url"":""https://x.com/RepLuna"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853847828197511315","RepJasonSmith","Rep. Jason Smith","The flood damage across the district is absolutely heartbreaking. Praying for the safety of all those who are being impacted. Please continue to stay safe and follow the guidance of emergency personnel.","2024-11-05T17:12:19.000Z","[""https://pbs.twimg.com/media/GbowqlLWkAABksy.jpg"",""https://pbs.twimg.com/media/GbowqlLXkAARR_V.jpg"",""https://pbs.twimg.com/media/GbowqlKWsAAuxun.jpg"",""https://pbs.twimg.com/media/GbowqlLXYAAc2M-.jpg""]","https://x.com/RepJasonSmith/status/1853847828197511315","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,5,14,1494,,,60070,"@WaysandMeansGOP Chairman | Farmer | 7th generation Missourian | Conservative fighting for Missouri’s working class and small businesses | Serving Missouri 08",7437,"https://pbs.twimg.com/profile_images/1622283372008439809/XSg4-ieG_normal.jpg",975,false,4,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:30.128Z","{""url"":""https://twitter.com/1623308912/status/1853847828197511315""}","{""url"":""https://x.com/RepJasonSmith"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853912677967372494","RepJimmyPanetta","Rep. Jimmy Panetta","As I learned when I was a prosecutor, one of the best ways to get to know a community is by doing a ride along with our local police departments. Always good to experience their service firsthand and commitment to keeping our neighborhoods safe.","2024-11-05T21:30:01.000Z","[""https://pbs.twimg.com/media/GbokQrcXMAAICKG.jpg""]","https://x.com/RepJimmyPanetta/status/1853912677967372494","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,4,341,,,19745,"I am honored to represent California's new 19th congressional district in the U.S. House of Representatives.",10169,"https://pbs.twimg.com/profile_images/827208718618132481/Z6uQa-l__normal.jpg",655,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:30.250Z","{""url"":""https://twitter.com/796736612554117120/status/1853912677967372494""}","{""url"":""https://x.com/RepJimmyPanetta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853789225230962858","RepDeborahRoss","Congresswoman Deborah Ross","Polls are open in North Carolina until 7:30 p.m.! + +Read 10 Tips for Election Day Voters:","2024-11-05T13:19:27.000Z",,"https://x.com/RepDeborahRoss/status/1853789225230962858","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2298102097"",""profile_name"":""NCSBE"",""url"":""https://x.com/NCSBE"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,119,0,,"http://tinyurl.com/5x293pnt",,9683,"Proudly serving #NC02. Former civil rights attorney and NC legislator. +Committees: @HouseJudiciary, @ScienceDems, & @COVIDSelectDems",4001,"https://pbs.twimg.com/profile_images/1379882991938367488/41kADLTm_normal.jpg",986,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:30.360Z","{""url"":""https://twitter.com/1348683154815655940/status/1853789225230962858""}","{""url"":""https://x.com/RepDeborahRoss"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853822147875246256","RubenGallego","Ruben Gallego","Good morning from Tucson where we’re getting out the vote! Polls are open across Arizona. Make your voice heard.","2024-11-05T15:30:17.000Z","[""https://pbs.twimg.com/media/GboZaSTbYAAzcLq.jpg""]","https://x.com/RubenGallego/status/1853822147875246256","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,60,246,1174,17532,,,211752,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,6,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:30.792Z","{""url"":""https://twitter.com/49217025/status/1853822147875246256""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853823209860202811","RepJudyChu","Judy Chu","Today is Election Day! + +Our elections offer Americans the opportunity to make their voice heard. Your vote is your voice—go vote! For more information, visit","2024-11-05T15:34:30.000Z",,"https://x.com/RepJudyChu/status/1853823209860202811","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""43963249"",""profile_name"":""House Democrats"",""url"":""https://x.com/HouseDemocrats"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,27,0,,,,82013,"Proudly representing #CA28, California's 28th District in the U.S. House of Representatives. Ways and Means. Small Business. Chair of @CAPAC.",9504,"https://pbs.twimg.com/profile_images/1547992737332416513/hjqZoRaG_normal.jpg",45421,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:30.884Z","{""url"":""https://twitter.com/193732179/status/1853823209860202811""}","{""url"":""https://x.com/RepJudyChu"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853588047687778459","RepJimCosta","Rep. Jim Costa","Reminder: Don’t forget to register for this election! Your voice matters. For more information on voter registration, visit","2024-11-05T00:00:03.000Z",,"https://x.com/RepJimCosta/status/1853588047687778459","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,0,1,187,"https://vote.gov/register/california",,30056,"Proudly representing California's 21st Congressional District. This account is for official use only.",6856,"https://pbs.twimg.com/profile_images/1405658815106670599/bGhubVjo_normal.jpg",1052,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851320389399392258/RzKHenA3?format=jpg&name=orig""]",,"2024-11-06T04:16:32.182Z","{""url"":""https://twitter.com/245451804/status/1853588047687778459""}","{""url"":""https://x.com/RepJimCosta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853888900109939173","RepLindaSanchez","Rep. Linda Sánchez","📣Attention Californians: The polls close TONIGHT at 8 pm! + +Make sure you are in line to vote or drop off your ballot before then. And, you can still register at your polling place and vote today if you're eligible. + +Go to","2024-11-05T19:55:32.000Z",,"https://x.com/RepLindaSanchez/status/1853888900109939173","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,0,340,"https://ushouse.info/r67hAjUIe",,48120,"I work for #CA38 in Congress. 🇺🇸 Serve on the @WaysMeansCmte. Proud mom, dog lover, & @Dodgers fan. ⚾️",9226,"https://pbs.twimg.com/profile_images/1268186992082325505/d4Gm8J5z_normal.jpg",2503,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:32.222Z","{""url"":""https://twitter.com/312134473/status/1853888900109939173""}","{""url"":""https://x.com/RepLindaSanchez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853841232255992142","RepMarkGreen","Rep. Mark Green","We’re on the cusp of a $36 trillion national debt. Washington’s out-of-control spending today will be the burden of our grandchildren tomorrow.","2024-11-05T16:46:07.000Z",,"https://x.com/RepMarkGreen/status/1853841232255992142","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,21,5,19,824,"https://www.usdebtclock.org/",,98231,"Mark Green is a physician, businessman, and combat veteran representing Tennessee’s 7th District in Congress. Chairman of @HomelandGOP.",11852,"https://pbs.twimg.com/profile_images/1080478006169268224/aB7vw1E2_normal.jpg",1169,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:32.328Z","{""url"":""https://twitter.com/1080477288955826176/status/1853841232255992142""}","{""url"":""https://x.com/RepMarkGreen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853830433177289153","RepJimmyGomez","Rep. Jimmy Gomez","#CA34 organizations are fundamental to our neighborhoods. As your representative, I've secured over $11 million in funding for community projects all over the district! + +Take a look at where the money went and the people it has helped ⬇️","2024-11-05T16:03:12.000Z",,"https://x.com/RepJimmyGomez/status/1853830433177289153","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,5,11,1245,,"[""CA34""]",53681,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:32.488Z","{""url"":""https://twitter.com/2371339658/status/1853830433177289153""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853855075816427915","RepNikkiB","Rep. Nikki Budzinski","Today is Election Day! Make a plan to vote and make your voice heard today. Visit","2024-11-05T17:41:07.000Z","[""https://pbs.twimg.com/media/Gbo3WSOWoAAuhlm.png""]","https://x.com/RepNikkiB/status/1853855075816427915","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,2,320,"http://elections.il.gov/",,4224,"U.S. Representative for Illinois’ 13th District. Proud to serve on @HouseAgDems and @VetAffairsDems for the people of Central & Southern Illinois.",1878,"https://pbs.twimg.com/profile_images/1620453663725522950/u33C5pUq_normal.jpg",1316,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:32.809Z","{""url"":""https://twitter.com/1603476713995911168/status/1853855075816427915""}","{""url"":""https://x.com/RepNikkiB"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853831674032730401","RepMenendez","Rep. Rob Menendez","🗳️ ¡Es el Día de las Elecciones! Tu voz cuenta, así que asegúrate de salir y votar. Las urnas están abiertas y cierran a las 8 p.m.; encuentra un centro de votación cerca de usted y haga oír su voz. + +¡Cada voto cuenta!","2024-11-05T16:08:08.000Z",,"https://x.com/RepMenendez/status/1853831674032730401","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,0,129,"https://www.nj.gov/state/elections/voter-registration.shtml",,3863,"Olivia and Robert's second favorite parent. Husband to Alex. Congressman for #NJ08 - the district with the best people and food no questions asked.",1225,"https://pbs.twimg.com/profile_images/1639358266986618897/XZ4At_ZD_normal.jpg",327,false,0,0,"{""post_id"":""1853812227381281215"",""profile_id"":""1603468242852397057"",""profile_name"":""RepMenendez""}","[""https://pbs.twimg.com/card_img/1851804517429284864/Fo07M0a7?format=jpg&name=orig""]",,"2024-11-06T04:16:32.829Z","{""url"":""https://twitter.com/1603468242852397057/status/1853831674032730401""}","{""url"":""https://x.com/RepMenendez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853791977717846317","RepRudyYakym","Congressman Rudy Yakym","In America, when we get knocked down we get back up and Fight, Fight, Fight! + +Make America Great Again! 🇺🇸","2024-11-05T13:30:23.000Z","[""https://pbs.twimg.com/media/Gbn9-aXXUAA98zN.jpg""]","https://x.com/RepRudyYakym/status/1853791977717846317","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,4,33,783,,,5244,"Hoosier, Husband, Father of 3. Honored to serve the good people of Indiana's Second District in Congress.",1876,"https://pbs.twimg.com/profile_images/1605665883560546305/kh3FbeDo_normal.jpg",498,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:32.874Z","{""url"":""https://twitter.com/1605665632858607617/status/1853791977717846317""}","{""url"":""https://x.com/RepRudyYakym"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853875549560569963","RepPatFallon","Rep. Pat Fallon","Border Czar Kamala Harris was charged with stemming the tide of illegal immigration. + +Under her leadership, there's been 5x more illegal crossings compared to the Trump years. + +The numbers don't lie--her miserable failures have put our national security in jeopardy.","2024-11-05T19:02:29.000Z",,"https://x.com/RepPatFallon/status/1853875549560569963","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,30,102,6578,,,49722,"Proudly representing the people of Texas' 4th Congressional District in the U.S. House of Representatives. Member of @GOPoversight, @HASCRepublicans & @TFAADJT.",4218,"https://pbs.twimg.com/profile_images/1429163534823342080/gsBs0LPT_normal.jpg",670,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853875013268520960/pu/vid/avc1/1280x720/xpaQDFYLPaGXFEcG.mp4?tag=12"",""duration"":77040}]","2024-11-06T04:16:33.626Z","{""url"":""https://twitter.com/1343258042704527362/status/1853875549560569963""}","{""url"":""https://x.com/RepPatFallon"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853954868521975941","RubenGallego","Ruben Gallego","Less than two hours to go. No one left on the sidelines!","2024-11-06T00:17:40.000Z","[""https://pbs.twimg.com/media/GbqSCqzWkAcPBmK.jpg"",""https://pbs.twimg.com/media/GbqSE3zXEAEkgxz.jpg"",""https://pbs.twimg.com/media/GbqSHZ0XcAEpY0a.jpg""]","https://x.com/RubenGallego/status/1853954868521975941","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,20,127,699,101661,,,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,3,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:33.646Z","{""url"":""https://twitter.com/49217025/status/1853954868521975941""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853945817826226653","RepLaLota","Congressman Nick LaLota","Despite the Biden-Harris Administration’s big talk on job creation, the reality paints a different picture. In the past two months alone, we’ve seen 34,000 manufacturing jobs vanish. And now, with a Bureau of Labor Statistics revision, we know that 818,000 fewer jobs were actually created than they claimed. +https://t.co/PA8Vv0hLPb","2024-11-05T23:41:42.000Z",,"https://x.com/RepLaLota/status/1853945817826226653","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,2,12,936,,,5814,"Father, husband, and Navy Veteran proudly serving the people of Long Island in Congress. Alum of @StAnthonysHS, @NavalAcademy, @Hofstra_Law, and @ZarbSchool.",1991,"https://pbs.twimg.com/profile_images/1610487783268777984/AGCo06LF_normal.jpg",335,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:33.994Z","{""url"":""https://twitter.com/1588581125177442305/status/1853945817826226653""}","{""url"":""https://x.com/RepLaLota"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853801390315122764","SenWarren","Elizabeth Warren","Donald Trump and Mitch McConnell stole two seats on the Supreme Court to overturn Roe v. Wade. + +Now, women in states with abortion bans are being told to hemorrhage in the parking lot until they’re closer to death before they can get emergency abortion care. + +We must fight back.","2024-11-05T14:07:48.000Z",,"https://x.com/SenWarren/status/1853801390315122764","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1351,4855,16257,239210,,,6840865,"U.S. Senator, Massachusetts. She/her/hers. Official Senate account.",12408,"https://pbs.twimg.com/profile_images/722044174799777792/bXaodRhx_normal.jpg",510,false,123,83,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:34.101Z","{""url"":""https://twitter.com/970207298/status/1853801390315122764""}","{""url"":""https://x.com/SenWarren"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853914688024924214","RepMarkAlford","Rep. Mark Alford","With Trump’s policy leadership, we saw a resurgence in American manufacturing, bringing jobs back home. + +When we invest in our own industries, everyone benefits.","2024-11-05T21:38:00.000Z",,"https://x.com/RepMarkAlford/status/1853914688024924214","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,0,10,453,,,9045,"Official X account of Congressman Mark Alford | Proudly representing Missouri's 4th District l Serving on @HASCRepublicans, @HouseAgGOP, @HouseSmallBiz",2404,"https://pbs.twimg.com/profile_images/1616138841525460993/Mo0mKnmC_normal.jpg",377,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:34.434Z","{""url"":""https://twitter.com/1612483604071727104/status/1853914688024924214""}","{""url"":""https://x.com/RepMarkAlford"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853939262648971370","RepThomasMassie","Thomas Massie","The AP has called the race for me!","2024-11-05T23:15:39.000Z","[""https://pbs.twimg.com/media/GbqD6bAWMAAaaJK.jpg""]","https://x.com/RepThomasMassie/status/1853939262648971370","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5955,6235,72854,2992735,,,1054405,"U.S. Representative KY4, Engineer, Farmer, Inventor. 30 patents. Appalachian American. MIT SB93 SM96 #sassywithmassie #politicalsciencedenier pronoun: Pappaw",21036,"https://pbs.twimg.com/profile_images/1642289348602150914/PiHxa9pP_normal.jpg",19141,false,855,437,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:34.609Z","{""url"":""https://twitter.com/975200486/status/1853939262648971370""}","{""url"":""https://x.com/RepThomasMassie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853836332130267285","CongresswomanSC","Congresswoman Sheila Cherfilus-McCormick","It’s National #ElectionDay! Make your voice heard and vote today. Polls in Florida are open until 7:00 PM—if you're in line by then, you can still cast your ballot! Find your polling location at","2024-11-05T16:26:38.000Z",,"https://x.com/CongresswomanSC/status/1853836332130267285","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,2,289,"https://bit.ly/3YTEhyg","[""ElectionDay""]",5756,"Mom, wife, and public servant proudly representing Florida’s 20th Congressional District. @VetAffairsDems @HouseForeign",2152,"https://pbs.twimg.com/profile_images/1773337834864222208/5FIuMTw4_normal.jpg",1231,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:35.182Z","{""url"":""https://twitter.com/1484252226646421505/status/1853836332130267285""}","{""url"":""https://x.com/CongresswomanSC"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853887875567292577","RepMaxwellFrost","Congressman Maxwell Alejandro Frost","1️⃣ Contact the Supervisor of Elections Office and update your address via the phone. For Orange County that number is 407-836-8683. + + 2️⃣ Update your address in-person at your polling location on Election Day. Please spread the word and thank you! 3/3","2024-11-05T19:51:27.000Z",,"https://x.com/RepMaxwellFrost/status/1853887875567292577","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""881974187589603328"",""profile_name"":""Rep. Anna V. Eskamani, PhD 🔨"",""url"":""https://x.com/AnnaForFlorida"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,10,0,,,,60770,"Congressman representing Central Florida / Orlando (FL-10)",1503,"https://pbs.twimg.com/profile_images/1610303384527011845/dea7jt7K_normal.jpg",268,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:35.493Z","{""url"":""https://twitter.com/1608494113174822925/status/1853887875567292577""}","{""url"":""https://x.com/RepMaxwellFrost"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853620746242920773","RubenGallego","Ruben Gallego","To all our supporters organizing & volunteering — thank you. + +Your hard work brought us to this moment and it does not go unnoticed. + +Now let’s go win this!","2024-11-05T02:09:59.000Z",,"https://x.com/RubenGallego/status/1853620746242920773","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,98,354,1836,34702,,,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,5,7,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:35.695Z","{""url"":""https://twitter.com/49217025/status/1853620746242920773""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853609097066926255","RubenGallego","Ruben Gallego","Mark, @Emma_S_Brown, and I were thrilled to join @SophiaBush, @AmbassadorRice, and @RubenGallego for the Reproductive Freedom Bus tour stop at @ASU. + +Young people know that their rights and freedoms are on the line, and are ready to use their vote to make history.","2024-11-05T01:23:41.000Z",,"https://x.com/RubenGallego/status/1853609097066926255","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""44177383"",""profile_name"":""Gabrielle Giffords"",""url"":""https://x.com/GabbyGiffords"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""230812057"",""profile_name"":""Emma Brown"",""url"":""https://x.com/Emma_S_Brown"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""97082147"",""profile_name"":""Sophia Bush"",""url"":""https://x.com/SophiaBush"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""820378690920058880"",""profile_name"":""Susan Rice"",""url"":""https://x.com/AmbassadorRice"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""49217025"",""profile_name"":""Ruben Gallego"",""url"":""https://x.com/RubenGallego"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,52,0,,,,211752,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:36.250Z","{""url"":""https://twitter.com/49217025/status/1853609097066926255""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853976301486440741","amyklobuchar","Amy Klobuchar","I’ve been so impressed by Andy Kim’s commitment to bringing people together across New Jersey. Congratulations, @AndyKimNJ, and welcome to the Senate!","2024-11-06T01:42:50.000Z","[""https://pbs.twimg.com/media/GbqlVuJXgA8Nzd5.jpg""]","https://x.com/amyklobuchar/status/1853976301486440741","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""24215154"",""profile_name"":""Andy Kim"",""url"":""https://x.com/AndyKimNJ"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",17,139,1361,55756,,,2009588,"U.S. Senator from Minnesota.",18778,"https://pbs.twimg.com/profile_images/1220222507715686400/sugRph6d_normal.jpg",118430,false,5,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:36.398Z","{""url"":""https://twitter.com/33537967/status/1853976301486440741""}","{""url"":""https://x.com/amyklobuchar"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853607804327866573","SenSanders","Bernie Sanders","The function of our current health care system is to provide huge profits for the insurance industry and drug companies. + +We need to join every other major country on earth and move to a Medicare for All, single-payer system with no out of pocket expenses.","2024-11-05T01:18:33.000Z",,"https://x.com/SenSanders/status/1853607804327866573","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,278,701,2672,126575,,,12133041,"Sen. Sanders of Vermont, Chair of the U.S. Senate Committee on Health, Education, Labor & Pensions, is the longest-serving independent in congressional history.",24557,"https://pbs.twimg.com/profile_images/794619281271033856/Fs0QQaH7_normal.jpg",2274,false,36,40,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853607389280223232/pu/vid/avc1/720x720/hcgIGb24_0uVEBIe.mp4?tag=12"",""duration"":54846}]","2024-11-06T04:16:36.574Z","{""url"":""https://twitter.com/29442313/status/1853607804327866573""}","{""url"":""https://x.com/SenSanders"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853827010453193109","RepFeenstra","Rep. Randy Feenstra","Americans are struggling to make ends meet because of FAILED #Kamalanomics.","2024-11-05T15:49:36.000Z","[""https://pbs.twimg.com/media/GbjmwTDWYAAy-kO.jpg""]","https://x.com/RepFeenstra/status/1853827010453193109","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,71,0,,,"[""Kamalanomics""]",16490,"Husband. Father. Conservative Republican. Delivering results for the people of #IA04 on @WaysandMeansGOP and @HouseAgGOP.",6799,"https://pbs.twimg.com/profile_images/1345385050683142144/uLQ4buVG_normal.jpg",563,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:37.918Z","{""url"":""https://twitter.com/1345135363761852416/status/1853827010453193109""}","{""url"":""https://x.com/RepFeenstra"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853640646281863534","SenKevinCramer","Senator Kevin Cramer","The Purple Heart is a tangible legacy to the heroic service and selfless sacrifice of Franklin DuFrame during WWII. It was important that we obtain this replacement medal that Franklin earned and Don desperately sought as a tribute and connection to the father he never knew. The medal symbolizes incredible sacrifice, and it is important we never forget the gravity of that sacrifice and ensure that future generations know the real price of freedom.","2024-11-05T03:29:03.000Z","[""https://pbs.twimg.com/media/Gbl0V7YW4AEXiGg.jpg"",""https://pbs.twimg.com/media/Gbl0V7XXoAAEfhw.jpg""]","https://x.com/SenKevinCramer/status/1853640646281863534","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,2,8,806,,,39050,"Representing the great people of North Dakota in the United States Senate.",10373,"https://pbs.twimg.com/profile_images/1090267977675460610/nQWIQ0ot_normal.jpg",682,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:37.941Z","{""url"":""https://twitter.com/1048784496/status/1853640646281863534""}","{""url"":""https://x.com/SenKevinCramer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853900844149735856","RepRudyYakym","Congressman Rudy Yakym","America can do so much better than what the ruling class and Democrat regime have delivered these last four years. + +Our country has an incredible opportunity before us if we’re willing to seize it. + +The choice is clear: more of the same or a new American Golden Age! 🇺🇸","2024-11-05T20:42:59.000Z",,"https://x.com/RepRudyYakym/status/1853900844149735856","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1605665632858607617"",""profile_name"":""Congressman Rudy Yakym"",""url"":""https://x.com/RepRudyYakym"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,2,0,,,,5244,"Hoosier, Husband, Father of 3. Honored to serve the good people of Indiana's Second District in Congress.",1876,"https://pbs.twimg.com/profile_images/1605665883560546305/kh3FbeDo_normal.jpg",498,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:38.011Z","{""url"":""https://twitter.com/1605665632858607617/status/1853900844149735856""}","{""url"":""https://x.com/RepRudyYakym"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799439812669842","RubenGallego","Ruben Gallego","Today is the day! + +Polls are open from 7:00am to 7:00pm. To find the nearest polling location, visit","2024-11-05T14:00:03.000Z","[""https://pbs.twimg.com/media/GboEw_KboAAieFK.jpg""]","https://x.com/RubenGallego/status/1853799439812669842","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,57,234,599,13097,"https://iwillvote.com/AZ",,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,7,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:38.172Z","{""url"":""https://twitter.com/49217025/status/1853799439812669842""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853826594583842975","RepThomasMassie","Thomas Massie","Take someone to vote with you. +My <almost> 92 year old father in law went to vote with me today!","2024-11-05T15:47:57.000Z","[""https://pbs.twimg.com/media/GboddZSXwAAJ3HK.jpg""]","https://x.com/RepThomasMassie/status/1853826594583842975","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1334,5428,60336,809987,,,1054399,"U.S. Representative KY4, Engineer, Farmer, Inventor. 30 patents. Appalachian American. MIT SB93 SM96 #sassywithmassie #politicalsciencedenier pronoun: Pappaw",21036,"https://pbs.twimg.com/profile_images/1642289348602150914/PiHxa9pP_normal.jpg",19141,false,164,254,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:38.426Z","{""url"":""https://twitter.com/975200486/status/1853826594583842975""}","{""url"":""https://x.com/RepThomasMassie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853890233458467072","RubenGallego","Ruben Gallego","You've got 6 hours left to vote, Arizona! Make your plan at","2024-11-05T20:00:49.000Z","[""https://pbs.twimg.com/media/GbpXUVyaYAA-PSu.jpg""]","https://x.com/RubenGallego/status/1853890233458467072","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,33,102,273,8707,"http://iwillvote.com/",,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,3,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:38.456Z","{""url"":""https://twitter.com/49217025/status/1853890233458467072""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853816994895888575","RubenGallego","Ruben Gallego","For questions or issues voting, call the Voter Assistance Hotline at 1-833-868-3429 or visit","2024-11-05T15:09:48.000Z","[""https://pbs.twimg.com/media/GboUuWSaQAAdu4W.jpg""]","https://x.com/RubenGallego/status/1853816994895888575","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,31,125,181,13479,"https://iwillvote.com/AZ",,211752,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,3,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:38.727Z","{""url"":""https://twitter.com/49217025/status/1853816994895888575""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853658402968216030","RepThomasMassie","Thomas Massie","Quit repeating this lie. Y’all forced women to take an experimental shot as a condition of employment.","2024-11-05T04:39:37.000Z",,"https://x.com/RepThomasMassie/status/1853658402968216030","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""975200486"",""profile_name"":""Thomas Massie"",""url"":""https://x.com/RepThomasMassie"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,24724,0,,,,1054405,"U.S. Representative KY4, Engineer, Farmer, Inventor. 30 patents. Appalachian American. MIT SB93 SM96 #sassywithmassie #politicalsciencedenier pronoun: Pappaw",21036,"https://pbs.twimg.com/profile_images/1642289348602150914/PiHxa9pP_normal.jpg",19141,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:38.807Z","{""url"":""https://twitter.com/975200486/status/1853658402968216030""}","{""url"":""https://x.com/RepThomasMassie"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853635191039803785","RepBethVanDuyne","Congresswoman Beth Van Duyne","“Small businesses come to you and tell you how crippling that the policies under this Administration have been… We’re looking at 20 percent inflation. This is as a direct result of their financial policies.” - @RepBethVanDuyne on the impact of FAILED #Kamalanomics","2024-11-05T03:07:23.000Z",,"https://x.com/RepBethVanDuyne/status/1853635191039803785","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,48,0,,,,37208,"Proud mom of two. Former mayor. Proudly representing North Texas. American by birth, Texan by the Grace of God.",6415,"https://pbs.twimg.com/profile_images/1339633691086217216/DgBVGqMI_normal.jpg",1432,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:39.371Z","{""url"":""https://twitter.com/1339633259349745670/status/1853635191039803785""}","{""url"":""https://x.com/RepBethVanDuyne"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853889421088583999","RepDanKildee","Rep. Dan Kildee","Elections showcase our democracy in action. As Americans, we get to choose our leaders. Let’s not take this sacred right for granted—get out and VOTE! + +Polls in Michigan are still open until 8 p.m. ET.","2024-11-05T19:57:36.000Z",,"https://x.com/RepDanKildee/status/1853889421088583999","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,5,16,1013,,,50988,"Honored to represent mid-Michigan in Congress. Born & raised in Flint. Proud husband, father & grandfather.",10292,"https://pbs.twimg.com/profile_images/1762965907695931392/XE2ezOaV_normal.jpg",1269,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853889375626555392/pu/vid/avc1/1280x720/hmUTkyrcJb97l9gm.mp4?tag=12"",""duration"":17024}]","2024-11-06T04:16:40.477Z","{""url"":""https://twitter.com/1045110018/status/1853889421088583999""}","{""url"":""https://x.com/RepDanKildee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853613311759180233","RepGregStanton","Rep. Greg Stanton","We’ve made progress to lower health care costs for Arizona seniors—capping the cost of insulin, lowering prescription drug costs and more. + +Now I'm fighting to expand these savings to all Arizonans.","2024-11-05T01:40:26.000Z",,"https://x.com/RepGregStanton/status/1853613311759180233","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,1,9,551,,,15320,"Proudly serving Arizona's 4th Congressional District",3506,"https://pbs.twimg.com/profile_images/1620469728929005568/-pvo_Toy_normal.jpg",1447,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:40.932Z","{""url"":""https://twitter.com/1080885078425784320/status/1853613311759180233""}","{""url"":""https://x.com/RepGregStanton"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853596314795176397","RubenGallego","Ruben Gallego","Proud to have the support of @IBEW640 as we get out the vote with just one day to go. + +Let’s bring it home for working families!","2024-11-05T00:32:54.000Z","[""https://pbs.twimg.com/media/GblMBZuXkAAjwRS.jpg""]","https://x.com/RubenGallego/status/1853596314795176397","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""393691456"",""profile_name"":""IBEW 640"",""url"":""https://x.com/IBEW640"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",34,97,331,7533,,,211752,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,1,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:41.336Z","{""url"":""https://twitter.com/49217025/status/1853596314795176397""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853937705396109423","RepSpartz","Rep. Victoria Spartz","LISTEN: Congresswoman Victoria Spartz (R-IN) talks abou... |","2024-11-05T23:09:28.000Z",,"https://x.com/RepSpartz/status/1853937705396109423","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""16336478"",""profile_name"":""MarthaZoller"",""url"":""https://x.com/MarthaZoller"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,2,0,,"http://accesswdun.com/","[""inpol""]",79142,"Representing Indiana’s 5th Congressional District",1839,"https://pbs.twimg.com/profile_images/1677018173764165636/NNCjcYH8_normal.jpg",429,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853931403198537728/or9zp7Qa?format=png&name=orig""]",,"2024-11-06T04:16:42.041Z","{""url"":""https://twitter.com/1344845201479663621/status/1853937705396109423""}","{""url"":""https://x.com/RepSpartz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853949073612574867","SenTedCruz","Senator Ted Cruz","ICYMI: Sen. Cruz Op-Ed in Dallas Morning News: ‘Bipartisan Work Brought Microchip Jobs to Texas’","2024-11-05T23:54:38.000Z",,"https://x.com/SenTedCruz/status/1853949073612574867","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,154,65,497,133100,"https://www.cruz.senate.gov/newsroom/press-releases/icymi-sen-cruz-op-ed-in-dallas-morning-news-bipartisan-work-brought-microchip-jobs-to-texas",,3804193,"Representing the State of Texas in the United States Senate.",24278,"https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_normal.jpg",5404,false,2,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853111904904122368/z4aVhRjQ?format=jpg&name=orig""]",,"2024-11-06T04:16:42.267Z","{""url"":""https://twitter.com/1074480192/status/1853949073612574867""}","{""url"":""https://x.com/SenTedCruz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853848356419682437","SenKevinCramer","Senator Kevin Cramer","Kris and I celebrated Diwali with about 300 friends in Bismarck. Thank you ⁦@paragbismarck⁩ for your gracious invitation and generous hospitality. We definitely will bring our grandchildren next year to dance to the Festival of Lights! Blessings!","2024-11-05T17:14:25.000Z","[""https://pbs.twimg.com/media/GboxPfIWQAAs4fZ.jpg"",""https://pbs.twimg.com/media/GboxP1gXMAAEdl6.jpg"",""https://pbs.twimg.com/media/GboxQEZWoAAz1SV.jpg"",""https://pbs.twimg.com/media/GboxQSRWQAAGmTX.jpg""]","https://x.com/SenKevinCramer/status/1853848356419682437","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""839203410"",""profile_name"":""Parag Kumar"",""url"":""https://x.com/paragbismarck"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,2,10,589,,,39050,"Representing the great people of North Dakota in the United States Senate.",10373,"https://pbs.twimg.com/profile_images/1090267977675460610/nQWIQ0ot_normal.jpg",682,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:42.592Z","{""url"":""https://twitter.com/1048784496/status/1853848356419682437""}","{""url"":""https://x.com/SenKevinCramer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853890403147362441","StaceyPlaskett","Rep. Stacey Plaskett","It was so much worse than you remember","2024-11-05T20:01:30.000Z","[""https://pbs.twimg.com/media/Gbn-P1jX0AAS4oQ.jpg""]","https://x.com/StaceyPlaskett/status/1853890403147362441","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1488026569"",""profile_name"":""Luke Zaleski"",""url"":""https://x.com/ZaleskiLuke"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,21770,0,,,,254539,"Proudly representing the Virgin Islands of the United States",5764,"https://pbs.twimg.com/profile_images/1634002254549209091/I20s1e2S_normal.jpg",915,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:42.667Z","{""url"":""https://twitter.com/2724095695/status/1853890403147362441""}","{""url"":""https://x.com/StaceyPlaskett"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853814937732145459","RepZoeLofgren","Rep. Zoe Lofgren","Your vote is your voice. +  +If you haven’t voted yet, please head to the polls today! +  +🗳 Info about how to cast your ballot:","2024-11-05T15:01:38.000Z","[""https://pbs.twimg.com/media/GboS3IzWkAI0kcJ.jpg""]","https://x.com/RepZoeLofgren/status/1853814937732145459","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,3,15,851,"https://vote.gov/",,93304,"Member of Congress proudly representing CA’s 18th Congressional District, which serves communities in Monterey, San Benito, Santa Clara, & Santa Cruz counties.",3400,"https://pbs.twimg.com/profile_images/1758194100413599744/bW572kA6_normal.jpg",217,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:43.678Z","{""url"":""https://twitter.com/267938462/status/1853814937732145459""}","{""url"":""https://x.com/RepZoeLofgren"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853826445023252798","RepVeasey","Rep. Marc Veasey","Happy #ElectionDay 🗳️! + +Make sure to get to the polls before 7:00 PM to cast your vote! + +Got questions or concerns? I’ll be sharing resources throughout the day to help—be sure to follow along! + +#Vote2024 #Elecciones2024 #Texas","2024-11-05T15:47:21.000Z","[""https://pbs.twimg.com/media/GboWl6RXcAAJM31.jpg""]","https://x.com/RepVeasey/status/1853826445023252798","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,2,5,461,,"[""ElectionDay"",""Vote2024"",""Elecciones2024"",""Texas""]",34254,"Represent Dallas-Fort Worth | @energycommerce | @HASCDemocrats | #GunViolencePrevention Taskforce Deputy Whip | @CVRCaucus + @bluecollardems",7859,"https://pbs.twimg.com/profile_images/1298674593037799425/XP6TFaNF_normal.jpg",3278,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:44.568Z","{""url"":""https://twitter.com/1074129612/status/1853826445023252798""}","{""url"":""https://x.com/RepVeasey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853868434204897642","SenTedCruz","Senator Ted Cruz",".@TheKatyNews: ICYMI: Cruz, Cloud, Gerdes Denounce Biden-Harris Administration After Twice-Deported Illegal Alien Killed a Texan in Bastrop County","2024-11-05T18:34:12.000Z",,"https://x.com/SenTedCruz/status/1853868434204897642","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""33513497"",""profile_name"":""Pat Wilson"",""url"":""https://x.com/TheKatyNews"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",70,75,312,45685,"https://thekatynews.com/2024/11/04/icymi-cruz-cloud-gerdes-denounce-biden-harris-administration-after-twice-deported-illegal-alien-killed-a-texan-in-bastrop-county/",,3804193,"Representing the State of Texas in the United States Senate.",24278,"https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_normal.jpg",5404,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851479067486216193/X5r_FNK_?format=jpg&name=orig""]",,"2024-11-06T04:16:44.962Z","{""url"":""https://twitter.com/1074480192/status/1853868434204897642""}","{""url"":""https://x.com/SenTedCruz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853812227381281215","RepMenendez","Rep. Rob Menendez","🗳️ It’s Election Day! Your voice matters—make sure you get out and vote. Polls are open and close at 8pm, find a polling place near you and make your voice heard. + +Every vote counts!","2024-11-05T14:50:51.000Z",,"https://x.com/RepMenendez/status/1853812227381281215","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,2,3,336,"https://www.nj.gov/state/elections/voter-registration.shtml",,3863,"Olivia and Robert's second favorite parent. Husband to Alex. Congressman for #NJ08 - the district with the best people and food no questions asked.",1225,"https://pbs.twimg.com/profile_images/1639358266986618897/XZ4At_ZD_normal.jpg",327,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851804517429284864/Fo07M0a7?format=jpg&name=orig""]",,"2024-11-06T04:16:45.036Z","{""url"":""https://twitter.com/1603468242852397057/status/1853812227381281215""}","{""url"":""https://x.com/RepMenendez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853807565731189042","RubenGallego","Ruben Gallego","Today’s the day, Arizona. Let’s do this!","2024-11-05T14:32:20.000Z",,"https://x.com/RubenGallego/status/1853807565731189042","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,135,786,3615,55788,,,211747,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,18,14,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853807469870608384/vid/avc1/1280x720/TnYGcJOazppFbrUh.mp4?tag=16"",""duration"":30030}]","2024-11-06T04:16:45.165Z","{""url"":""https://twitter.com/49217025/status/1853807565731189042""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853906098711069090","RepOgles","Rep. Andy Ogles","There is a simple policy solution to solve our border crisis. + +Deport. Them. All.","2024-11-05T21:03:52.000Z",,"https://x.com/RepOgles/status/1853906098711069090","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,13,25,93,1670,,,17682,"Proudly Representing Tennessee's 5th Congressional District +| Believer | Patriot | Conservative | Father | Friend | +@FinancialCmte & @FreedomCaucus",1929,"https://pbs.twimg.com/profile_images/1753489791419564032/QgGMdIEp_normal.jpg",344,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853905543749935104/pu/vid/avc1/1272x720/G5f89BnvbBQLSfz8.mp4?tag=12"",""duration"":47680}]","2024-11-06T04:16:45.256Z","{""url"":""https://twitter.com/1603110823014141952/status/1853906098711069090""}","{""url"":""https://x.com/RepOgles"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853835706029814181","CongresswomanSC","Congresswoman Sheila Cherfilus-McCormick","With #Project2025, extreme conservatives have a manifesto to take unprecedented control over our government and, with that power, take control of our lives. Their extreme agenda puts our democracy at risk. H.Res. 1386. Learn more by visiting my website:","2024-11-05T16:24:09.000Z",,"https://x.com/CongresswomanSC/status/1853835706029814181","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,0,177,"https://bit.ly/48AnKmm","[""Project2025""]",5756,"Mom, wife, and public servant proudly representing Florida’s 20th Congressional District. @VetAffairsDems @HouseForeign",2152,"https://pbs.twimg.com/profile_images/1773337834864222208/5FIuMTw4_normal.jpg",1231,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853835628955209728/pu/vid/avc1/1280x720/0kc_qWawKLrBP92m.mp4?tag=12"",""duration"":54654}]","2024-11-06T04:16:45.284Z","{""url"":""https://twitter.com/1484252226646421505/status/1853835706029814181""}","{""url"":""https://x.com/CongresswomanSC"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842662903726151","RepRickLarsen","Rep. Rick Larsen","It’s Election Day! You have until 8 p.m. tonight to turn in your ballot! Find a drop box near you:","2024-11-05T16:51:48.000Z",,"https://x.com/RepRickLarsen/status/1853842662903726151","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15534771"",""profile_name"":""Washington Office of the Secretary of State"",""url"":""https://x.com/secstatewa"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,19,0,,"http://votewa.gov/",,23651,"Born and raised in Arlington, WA. Representing WA’s beautiful 2nd Congressional District. Lead Democrat on @TransportDems.",18368,"https://pbs.twimg.com/profile_images/1829601354634928130/F_DXD0Ua_normal.jpg",6319,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:45.873Z","{""url"":""https://twitter.com/404132211/status/1853842662903726151""}","{""url"":""https://x.com/RepRickLarsen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853603237577756704","RepJimCosta","Rep. Jim Costa","I had the honor of recognizing the Hmong Veterans and their spouses for their sacrifices and dedication to our community. + +They exemplify the significant contributions of the Hmong community in America. + +We are grateful for their service and lasting impact on society!","2024-11-05T01:00:24.000Z","[""https://pbs.twimg.com/media/GblSUKOWwAAlw0J.jpg"",""https://pbs.twimg.com/media/GblSUeeWgAAU4AX.jpg""]","https://x.com/RepJimCosta/status/1853603237577756704","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,1,1,229,,,30056,"Proudly representing California's 21st Congressional District. This account is for official use only.",6856,"https://pbs.twimg.com/profile_images/1405658815106670599/bGhubVjo_normal.jpg",1052,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:46.298Z","{""url"":""https://twitter.com/245451804/status/1853603237577756704""}","{""url"":""https://x.com/RepJimCosta"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853946260501458944","RepSwalwell","Rep. Eric Swalwell","Philly’s Republican City Commissioner 👇","2024-11-05T23:43:27.000Z",,"https://x.com/RepSwalwell/status/1853946260501458944","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""220412723"",""profile_name"":""Zachary Cohen"",""url"":""https://x.com/ZcohenCNN"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,9061,0,,,,1560968,"Husband | Dad to Nelson, Cricket & Hank | Congressman |@HouseJudiciary @HomelandDems | social media policy:https://t.co/47CTxGuV0o | #EndGunViolence",21049,"https://pbs.twimg.com/profile_images/1611104064711938064/-ofKA7L7_normal.jpg",11920,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:46.507Z","{""url"":""https://twitter.com/942156122/status/1853946260501458944""}","{""url"":""https://x.com/RepSwalwell"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853918725604315363","SenTedCruz","Senator Ted Cruz","ICYMI: Cruz, Scott Op-Ed in Wall Street Journal: ‘What Four Years of Biden-Harris Cost You’","2024-11-05T21:54:02.000Z",,"https://x.com/SenTedCruz/status/1853918725604315363","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,97,61,395,50605,"https://www.cruz.senate.gov/newsroom/press-releases/icymi-cruz-scott-op-ed-in-wall-street-journal-what-four-years-of-biden-harris-cost-you",,3804193,"Representing the State of Texas in the United States Senate.",24278,"https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_normal.jpg",5404,false,3,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851453614566350849/LzA0EFIB?format=jpg&name=orig""]",,"2024-11-06T04:16:46.673Z","{""url"":""https://twitter.com/1074480192/status/1853918725604315363""}","{""url"":""https://x.com/SenTedCruz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853589690815074756","SenTedCruz","Senator Ted Cruz","ICYMI: Cruz, Cloud, Gerdes Denounce Biden-Harris Administration After Twice-Deported Illegal Alien Killed a Texan in Bastrop County","2024-11-05T00:06:34.000Z","[""https://pbs.twimg.com/media/GblF_VUXIAE0IFl.jpg""]","https://x.com/SenTedCruz/status/1853589690815074756","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,189,274,742,46549,"https://www.cruz.senate.gov/newsroom/press-releases/icymi-cruz-cloud-gerdes-denounce-biden-harris-administration-after-twice-deported-illegal-alien-killed-a-texan-in-bastrop-county",,3804193,"Representing the State of Texas in the United States Senate.",24278,"https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_normal.jpg",5404,false,7,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:46.693Z","{""url"":""https://twitter.com/1074480192/status/1853589690815074756""}","{""url"":""https://x.com/SenTedCruz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853834515581739288","RubenGallego","Ruben Gallego","Breakfast and ballots—Tucson is getting out the vote!","2024-11-05T16:19:25.000Z","[""https://pbs.twimg.com/media/GbokorBawAAE1hp.jpg"",""https://pbs.twimg.com/media/GbokorBbgAAEJFS.jpg"",""https://pbs.twimg.com/media/GbokorDbAAAmwiT.jpg""]","https://x.com/RubenGallego/status/1853834515581739288","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,30,68,464,11739,,,211748,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:46.896Z","{""url"":""https://twitter.com/49217025/status/1853834515581739288""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853852924989915313","RepSarbanes","Rep. John Sarbanes","Our most sacred freedom is the freedom to vote. + +If you haven’t cast your ballot already, visit the @md_sbe website for important information on making your voice heard today.","2024-11-05T17:32:34.000Z","[""https://pbs.twimg.com/media/Gbo1VSMWEAA4YVV.png""]","https://x.com/RepSarbanes/status/1853852924989915313","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""712872716"",""profile_name"":""Maryland Elections"",""url"":""https://x.com/md_sbe"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,4,8,565,"https://www.elections.maryland.gov/",,26412,"Representing Maryland’s Third District. Co-Chair of @House_TFSD. Cleaning up corruption #ForThePeople.",6410,"https://pbs.twimg.com/profile_images/1525122340799012865/P9F8Pn5F_normal.jpg",639,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:47.477Z","{""url"":""https://twitter.com/364415553/status/1853852924989915313""}","{""url"":""https://x.com/RepSarbanes"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853822724356887032","RepHoulahan","Chrissy Houlahan","Today is #ElectionDay! Polls are open until 8 p.m. If you have any questions about your voting location, head to","2024-11-05T15:32:34.000Z",,"https://x.com/RepHoulahan/status/1853822724356887032","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,4,16,800,"http://vote.pa.gov/polls","[""ElectionDay""]",34300,"Air Force veteran, engineer, entrepreneur, educator and the first woman ever to represent Pennsylvania's 6th District in Congress.",5920,"https://pbs.twimg.com/profile_images/1096426355594616832/L0qj7q5d_normal.jpg",392,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:47.746Z","{""url"":""https://twitter.com/1052896620797460481/status/1853822724356887032""}","{""url"":""https://x.com/RepHoulahan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853791881643397238","RepGrothman","Rep. Glenn Grothman","Protecting election integrity begins with counting only legal votes. That's why I proudly supported H.R. 6513, the Confirmation of Congressional Observer Access Act. This legislation enhances oversight by allowing congressional observers to witness ballot procedures.","2024-11-05T13:30:01.000Z",,"https://x.com/RepGrothman/status/1853791881643397238","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,0,2,372,,,16656,"Proudly representing #WI06. Chairman, Subcommittee on National Security, the Border, and Foreign Affairs on @GOPOversight. @EdWorkforceCmte. @HouseBudgetGOP.",5860,"https://pbs.twimg.com/profile_images/1348727275844460544/-BnST_ZA_normal.jpg",244,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:48.358Z","{""url"":""https://twitter.com/2976606250/status/1853791881643397238""}","{""url"":""https://x.com/RepGrothman"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853871983949123827","RepValHoyle","Val Hoyle","The freedom to vote is one of our most fundamental and important rights. It's not too late to make your voice heard, you can vote today until 8PM!","2024-11-05T18:48:18.000Z","[""https://pbs.twimg.com/media/GbpGvmZXgAA9lfQ.jpg""]","https://x.com/RepValHoyle/status/1853871983949123827","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,3,194,,,3798,"Congresswoman serving Oregon’s Fourth District. Wife, Mom, former Labor Commissioner. Pro Union, Pro-Choice, Pro Democracy. #OR04",1147,"https://pbs.twimg.com/profile_images/1633108809773199364/nPnRu3g2_normal.jpg",340,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:49.148Z","{""url"":""https://twitter.com/1612865196489412608/status/1853871983949123827""}","{""url"":""https://x.com/RepValHoyle"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853914964462895522","RepVeasey","Rep. Marc Veasey","You still have time to vote. You can check out your polling stations and their wait times: + +Tarrant County-","2024-11-05T21:39:06.000Z","[""https://pbs.twimg.com/media/GbpoaH7XkAETD6l.jpg""]","https://x.com/RepVeasey/status/1853914964462895522","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,3,9,2210,"https://gisit.tarrantcounty.com/tcvotingwaittime/","[""Vote2024"",""EleccionesEstadosUnidos"",""Election2024""]",34254,"Represent Dallas-Fort Worth | @energycommerce | @HASCDemocrats | #GunViolencePrevention Taskforce Deputy Whip | @CVRCaucus + @bluecollardems",7859,"https://pbs.twimg.com/profile_images/1298674593037799425/XP6TFaNF_normal.jpg",3278,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:49.281Z","{""url"":""https://twitter.com/1074129612/status/1853914964462895522""}","{""url"":""https://x.com/RepVeasey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853802427989860432","USRepKCastor","U.S. Rep. Kathy Castor","Hoy son las elecciones. Prepare un plan y vote hoy. Para obtener más información, visite","2024-11-05T14:11:55.000Z",,"https://x.com/USRepKCastor/status/1853802427989860432","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,2,7,389,"http://vote.gov/es",,27297,"⚡️Tampa Bay's Congresswoman⚡🌴🌤🌅 🇺🇸 People Over Politics! 🇺🇸 former Chair, @ClimateCrisis 🇺🇸",15446,"https://pbs.twimg.com/profile_images/1852340109254766592/snJ__U7G_normal.jpg",5894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851320389399392258/RzKHenA3?format=jpg&name=orig""]",,"2024-11-06T04:16:50.383Z","{""url"":""https://twitter.com/1880674038/status/1853802427989860432""}","{""url"":""https://x.com/USRepKCastor"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853873192076796178","RepOgles","Rep. Andy Ogles","Criminal illegal aliens let in by the Biden-Harris regime outnumber the entire population of Tennessee. + +Democrat policies have single-handedly eroded American sovereignty in the last four years. It's time to take it back.","2024-11-05T18:53:06.000Z",,"https://x.com/RepOgles/status/1853873192076796178","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,22,31,103,1462,,,17682,"Proudly Representing Tennessee's 5th Congressional District +| Believer | Patriot | Conservative | Father | Friend | +@FinancialCmte & @FreedomCaucus",1929,"https://pbs.twimg.com/profile_images/1753489791419564032/QgGMdIEp_normal.jpg",344,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:50.454Z","{""url"":""https://twitter.com/1603110823014141952/status/1853873192076796178""}","{""url"":""https://x.com/RepOgles"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853847119469420972","RepOgles","Rep. Andy Ogles","If Democrats were really concerned about border security, they wouldn't release rapists and murderers into your neighborhood.","2024-11-05T17:09:30.000Z",,"https://x.com/RepOgles/status/1853847119469420972","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,20,25,85,1588,,,17682,"Proudly Representing Tennessee's 5th Congressional District +| Believer | Patriot | Conservative | Father | Friend | +@FinancialCmte & @FreedomCaucus",1929,"https://pbs.twimg.com/profile_images/1753489791419564032/QgGMdIEp_normal.jpg",344,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853846936589094912/pu/vid/avc1/720x1280/tKSXy0GQ3WK2aojR.mp4?tag=12"",""duration"":47805}]","2024-11-06T04:16:50.627Z","{""url"":""https://twitter.com/1603110823014141952/status/1853847119469420972""}","{""url"":""https://x.com/RepOgles"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853889366294458865","FrankPallone","Rep. Frank Pallone","Democrats finally gave Medicare the power to negotiate lower drug prices, capped the cost of insulin at $35, and put a $2000 cap on out-of-pocket costs for seniors. + +We're getting things done, but also fighting to expand these savings beyond seniors to all Americans.","2024-11-05T19:57:23.000Z",,"https://x.com/FrankPallone/status/1853889366294458865","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,1,7,678,,,54388,"The official Twitter account of Congressman Frank Pallone, Jr. (D) of New Jersey's 6th Congressional District, Ranking Member of @EnergyCommerce.",24375,"https://pbs.twimg.com/profile_images/1096470387041419264/0vCNMXci_normal.png",2837,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:50.973Z","{""url"":""https://twitter.com/31801993/status/1853889366294458865""}","{""url"":""https://x.com/FrankPallone"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853599051633050097","RepRickLarsen","Rep. Rick Larsen","Crews have restored power to 7,100 customers since this morning. Winds have continued this afternoon and will likely persist into the evening. #wawx + +Make sure you're prepared, and your electronic devices are charged. Latest updates on our Outage Map:","2024-11-05T00:43:46.000Z",,"https://x.com/RepRickLarsen/status/1853599051633050097","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""18200363"",""profile_name"":""Snohomish County PUD"",""url"":""https://x.com/SnoPUD"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,6,0,,,,23651,"Born and raised in Arlington, WA. Representing WA’s beautiful 2nd Congressional District. Lead Democrat on @TransportDems.",18368,"https://pbs.twimg.com/profile_images/1829601354634928130/F_DXD0Ua_normal.jpg",6319,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:50.963Z","{""url"":""https://twitter.com/404132211/status/1853599051633050097""}","{""url"":""https://x.com/RepRickLarsen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853884732943257831","RepPettersen","U.S. Rep. Brittany Pettersen","Today is #ElectionDay—our democracy works best when every voice is heard. Colorado, make sure yours counts! + +Drop off your ballot or vote in person by 7 p.m. If you’re in line by then, you can still vote. + +For more information, visit","2024-11-05T19:38:58.000Z",,"https://x.com/RepPettersen/status/1853884732943257831","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,5,539,"http://vote.gov/","[""ElectionDay""]",5100,"Official account of U.S. Congresswoman Brittany Pettersen, proudly representing the people of #CO07. Mom. Fighter. Born and raised Coloradan 🏔️",1504,"https://pbs.twimg.com/profile_images/1628114498316865558/k-NDc9RG_normal.jpg",360,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853880997483286528/2V456nuW?format=jpg&name=orig""]",,"2024-11-06T04:16:51.759Z","{""url"":""https://twitter.com/1610014478405406720/status/1853884732943257831""}","{""url"":""https://x.com/RepPettersen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853612697281069562","CongresswomanSC","Congresswoman Sheila Cherfilus-McCormick","1 in 5 Americans is a caregiver, often going unpaid. Accessible healthcare benefits both patients and their families. This #NationalFamilyCaregiversMonth, I stand with @DemWomenCaucus in my support for caregivers' well-being. To all family caregivers in #FL20, I support you.","2024-11-05T01:38:00.000Z","[""https://pbs.twimg.com/media/Gbla7QZXkAA1AmI.jpg""]","https://x.com/CongresswomanSC/status/1853612697281069562","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""890675418780618753"",""profile_name"":""Democratic Women's Caucus"",""url"":""https://x.com/DemWomenCaucus"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,2,10,804,,"[""NationalFamilyCaregiversMonth"",""FL20""]",5756,"Mom, wife, and public servant proudly representing Florida’s 20th Congressional District. @VetAffairsDems @HouseForeign",2152,"https://pbs.twimg.com/profile_images/1773337834864222208/5FIuMTw4_normal.jpg",1231,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:52.274Z","{""url"":""https://twitter.com/1484252226646421505/status/1853612697281069562""}","{""url"":""https://x.com/CongresswomanSC"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853934294781313079","FrankPallone","Rep. Frank Pallone","Democrats and the Biden-Harris Admin are the ones who made investments in infrastructure a reality. + +We passed historic legislation that invested $1.2 trillion to improve our transportation system and fix our nation’s crumbling infrastructure. + +Promises made. Promises kept.","2024-11-05T22:55:54.000Z",,"https://x.com/FrankPallone/status/1853934294781313079","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,6,22,1170,,,54389,"The official Twitter account of Congressman Frank Pallone, Jr. (D) of New Jersey's 6th Congressional District, Ranking Member of @EnergyCommerce.",24375,"https://pbs.twimg.com/profile_images/1096470387041419264/0vCNMXci_normal.png",2837,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:52.503Z","{""url"":""https://twitter.com/31801993/status/1853934294781313079""}","{""url"":""https://x.com/FrankPallone"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853784355966967959","RubenGallego","Ruben Gallego","All of our hard work for the past 22 months has led to today. Let’s win this for Arizona!","2024-11-05T13:00:06.000Z","[""https://pbs.twimg.com/media/Gbn3C6jXUAAb9d2.jpg""]","https://x.com/RubenGallego/status/1853784355966967959","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,81,434,1871,20533,,,211748,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,7,7,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:53.227Z","{""url"":""https://twitter.com/49217025/status/1853784355966967959""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853769826256277665","USRepKCastor","U.S. Rep. Kathy Castor","Polls are open today from 7am-7pm. Don't forget to bring valid photo and signature ID. Check out our list and go out and vote! 🗳️ #VoteHillsborough","2024-11-05T12:02:22.000Z",,"https://x.com/USRepKCastor/status/1853769826256277665","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""167095016"",""profile_name"":""Craig Latimer, Supervisor of Elections"",""url"":""https://x.com/HillsboroughSOE"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,8,0,,,,27297,"⚡️Tampa Bay's Congresswoman⚡🌴🌤🌅 🇺🇸 People Over Politics! 🇺🇸 former Chair, @ClimateCrisis 🇺🇸",15446,"https://pbs.twimg.com/profile_images/1852340109254766592/snJ__U7G_normal.jpg",5894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:53.715Z","{""url"":""https://twitter.com/1880674038/status/1853769826256277665""}","{""url"":""https://x.com/USRepKCastor"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853905009450131654","RepVeasey","Rep. Marc Veasey","Got questions about 🗳️voting? Call the Voter Assistance Hotline at 833-336-8683. Your ability to vote safely and securely is their priority. + +#electionday #Vote2024 #StayInLine #EleccionesEstadosUnidos","2024-11-05T20:59:32.000Z","[""https://pbs.twimg.com/media/GbpjUplWwAAqh8o.jpg""]","https://x.com/RepVeasey/status/1853905009450131654","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,5,1034,,"[""electionday"",""Vote2024"",""StayInLine"",""EleccionesEstadosUnidos""]",34254,"Represent Dallas-Fort Worth | @energycommerce | @HASCDemocrats | #GunViolencePrevention Taskforce Deputy Whip | @CVRCaucus + @bluecollardems",7859,"https://pbs.twimg.com/profile_images/1298674593037799425/XP6TFaNF_normal.jpg",3278,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:54.067Z","{""url"":""https://twitter.com/1074129612/status/1853905009450131654""}","{""url"":""https://x.com/RepVeasey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853870344135684495","SenSanders","Bernie Sanders","Let me congratulate the 33,000 workers with the Machinists union for waging a 7-week strike against Boeing's corporate greed and winning a 38% pay raise, a $12,000 ratification bonus and much better benefits. When workers stand together there is nothing they cannot accomplish.","2024-11-05T18:41:47.000Z",,"https://x.com/SenSanders/status/1853870344135684495","{""post_id"":""1853663535399632956"",""profile_id"":""MachinistsUnion"",""profile_name"":""Machinists Union"",""data_posted"":""2009-09-16T20:28:33.000Z"",""url"":""https://x.com/MachinistsUnion/status/1853663535399632956"",""description"":""🚨 BREAKING 🚨\n\n33,000 frontline workers at Boeing, members of @IAM751 and W24, voted to ratify a new union contract with the company that has instantly set a new standard for compensation and wages for aerospace industry workers. https://t.co/UKrEGWZHHV"",""photos"":null,""videos"":null}",,87,512,3133,241340,,,12133041,"Sen. Sanders of Vermont, Chair of the U.S. Senate Committee on Health, Education, Labor & Pensions, is the longest-serving independent in congressional history.",24557,"https://pbs.twimg.com/profile_images/794619281271033856/Fs0QQaH7_normal.jpg",2274,false,15,28,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:54.624Z","{""url"":""https://twitter.com/29442313/status/1853870344135684495""}","{""url"":""https://x.com/SenSanders"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853862599949209847","RepTroyNehls","Congressman Troy E. Nehls","REMINDER: + +Kamala Harris said she can’t think of anything she would have done differently than Joe Biden over the last four years. + +She does not deserve a promotion.","2024-11-05T18:11:01.000Z",,"https://x.com/RepTroyNehls/status/1853862599949209847","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,15,9,59,2029,,,196856,"Congressman (TX-22) | Proudly serving on @JudiciaryGOP and @TransportGOP | Author of The Big Fraud and Borderless by Design",3374,"https://pbs.twimg.com/profile_images/1805754477816745984/CYi2sSGL_normal.jpg",1540,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1843735839357952000/vid/avc1/1280x720/NLEYciv9Uyzz5Fz9.mp4?tag=16"",""duration"":17400}]","2024-11-06T04:16:55.084Z","{""url"":""https://twitter.com/1347318288850825217/status/1853862599949209847""}","{""url"":""https://x.com/RepTroyNehls"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853881325553672485","RepTroyNehls","Congressman Troy E. Nehls","Everything has gotten worse under Joe Biden and Kamala Harris. + +The border. +Inflation. +Crime. +National security. +Weaponization of government. +Gas prices. +The price of groceries.","2024-11-05T19:25:26.000Z",,"https://x.com/RepTroyNehls/status/1853881325553672485","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1074480192"",""profile_name"":""Senator Ted Cruz"",""url"":""https://x.com/SenTedCruz"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,743,0,,,,196856,"Congressman (TX-22) | Proudly serving on @JudiciaryGOP and @TransportGOP | Author of The Big Fraud and Borderless by Design",3374,"https://pbs.twimg.com/profile_images/1805754477816745984/CYi2sSGL_normal.jpg",1540,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:55.873Z","{""url"":""https://twitter.com/1347318288850825217/status/1853881325553672485""}","{""url"":""https://x.com/RepTroyNehls"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853916748585574595","USRepGaryPalmer","Gary Palmer","Americans cannot afford another 4 years of a FAILED Far Left Democrat agenda.","2024-11-05T21:46:11.000Z","[""https://pbs.twimg.com/media/GbjnhuRW8AA2Y19.jpg""]","https://x.com/USRepGaryPalmer/status/1853916748585574595","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""15207668"",""profile_name"":""House Republicans"",""url"":""https://x.com/HouseGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,78,0,,,,26776,"Proudly serving the people of Alabama's 6th Congressional District. Chairman of House @GOPpolicy Committee. Member of @HouseCommerce and @GOPoversight.",4527,"https://pbs.twimg.com/profile_images/963834426131087362/G281BjJD_normal.jpg",999,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:55.935Z","{""url"":""https://twitter.com/2861616083/status/1853916748585574595""}","{""url"":""https://x.com/USRepGaryPalmer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853852651387023517","SenTedCruz","Senator Ted Cruz","Everything has gotten worse under Joe Biden and Kamala Harris. + +The border. +Inflation. +Crime. +National security. +Weaponization of government. +Gas prices. +The price of groceries.","2024-11-05T17:31:29.000Z",,"https://x.com/SenTedCruz/status/1853852651387023517","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,344,743,3352,81663,,,3804230,"Representing the State of Texas in the United States Senate.",24278,"https://pbs.twimg.com/profile_images/1100507943458484236/KICyvXVn_normal.jpg",5404,false,23,16,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:56.220Z","{""url"":""https://twitter.com/1074480192/status/1853852651387023517""}","{""url"":""https://x.com/SenTedCruz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853960170209964411","RepVeasey","Rep. Marc Veasey","Stay in line and vote. Don’t let anything stop you from exercising your rights as an American to make your voice heard at the polls. + +#Election2024 #EleccionesEstadosUnidos #Vote2024 #StayInLine #Texas","2024-11-06T00:38:44.000Z","[""https://pbs.twimg.com/media/GbqUYm5XkBM1DHE.jpg""]","https://x.com/RepVeasey/status/1853960170209964411","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,3,11,2281,,"[""Election2024"",""EleccionesEstadosUnidos"",""Vote2024"",""StayInLine"",""Texas""]",34252,"Represent Dallas-Fort Worth | @energycommerce | @HASCDemocrats | #GunViolencePrevention Taskforce Deputy Whip | @CVRCaucus + @bluecollardems",7859,"https://pbs.twimg.com/profile_images/1298674593037799425/XP6TFaNF_normal.jpg",3278,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:56.179Z","{""url"":""https://twitter.com/1074129612/status/1853960170209964411""}","{""url"":""https://x.com/RepVeasey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853754164129435881","StaceyPlaskett","Rep. Stacey Plaskett","Your vote is your voice. Today, I encourage everyone in the Virgin Islands and around the country to head to the polls and MAKE YOUR VOICE HEARD!!","2024-11-05T11:00:08.000Z","[""https://pbs.twimg.com/media/GbnblhhW0AA5HyH.jpg""]","https://x.com/StaceyPlaskett/status/1853754164129435881","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,33,152,4173,,,254539,"Proudly representing the Virgin Islands of the United States",5764,"https://pbs.twimg.com/profile_images/1634002254549209091/I20s1e2S_normal.jpg",915,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:56.776Z","{""url"":""https://twitter.com/2724095695/status/1853754164129435881""}","{""url"":""https://x.com/StaceyPlaskett"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853831625945293298","SenTimKaine","Senator Tim Kaine","This Native American Heritage Month, let’s celebrate the cultures, history, and contributions of Indigenous communities. I will always do what I can to make sure their voices are heard. + +In 2018, I was honored to work with six Virginia Tribes to secure their federal recognition.","2024-11-05T16:07:56.000Z",,"https://x.com/SenTimKaine/status/1853831625945293298","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,2,14,775,,,5432,"Official account of U.S. Senator Tim Kaine.",1529,"https://pbs.twimg.com/profile_images/1561740289454243844/I-luBnOd_normal.jpg",1225,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:56.777Z","{""url"":""https://twitter.com/1561739334230892544/status/1853831625945293298""}","{""url"":""https://x.com/SenTimKaine"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853879226358989291","RepMenendez","Rep. Rob Menendez","Honoring our veterans and those currently serving reflects our deepest values—sacrifice, bravery, and commitment to our nation. + +At the 9th Annual Bayonne Field of Heroes, we remembered Edward McGinnis, Salvatore Mione, John ""Jack"" Belton, Owen Ballweg, and Bruce Harder. Their sacrifices remind us of the true cost of freedom. Thank you to the @BayonneBOE for this tribute.","2024-11-05T19:17:05.000Z","[""https://pbs.twimg.com/media/GbpNVH8WAAEtXeL.jpg"",""https://pbs.twimg.com/media/GbpNVH-WEAA0uom.jpg""]","https://x.com/RepMenendez/status/1853879226358989291","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,7,234,,,3863,"Olivia and Robert's second favorite parent. Husband to Alex. Congressman for #NJ08 - the district with the best people and food no questions asked.",1225,"https://pbs.twimg.com/profile_images/1639358266986618897/XZ4At_ZD_normal.jpg",327,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:56.778Z","{""url"":""https://twitter.com/1603468242852397057/status/1853879226358989291""}","{""url"":""https://x.com/RepMenendez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853909741560357189","RepTroyNehls","Congressman Troy E. Nehls","Under the Harris-Biden regime: + +—Inflation reached its highest rate in 40 years + +—Over 10 million illegal aliens crossed our borders + +—Botched Afghanistan withdrawal + +America deserves better.","2024-11-05T21:18:21.000Z",,"https://x.com/RepTroyNehls/status/1853909741560357189","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,27,93,3976,,,196856,"Congressman (TX-22) | Proudly serving on @JudiciaryGOP and @TransportGOP | Author of The Big Fraud and Borderless by Design",3374,"https://pbs.twimg.com/profile_images/1805754477816745984/CYi2sSGL_normal.jpg",1540,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:56.876Z","{""url"":""https://twitter.com/1347318288850825217/status/1853909741560357189""}","{""url"":""https://x.com/RepTroyNehls"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853879960165044711","USRepGaryPalmer","Gary Palmer","I am proud to co-sign Rep. Palmer's letter to stand for women against radical leftist policies.","2024-11-05T19:20:00.000Z",,"https://x.com/USRepGaryPalmer/status/1853879960165044711","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1810728898252132352"",""profile_name"":""Rep. Greg Lopez"",""url"":""https://x.com/RepGregLopez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,,26776,"Proudly serving the people of Alabama's 6th Congressional District. Chairman of House @GOPpolicy Committee. Member of @HouseCommerce and @GOPoversight.",4527,"https://pbs.twimg.com/profile_images/963834426131087362/G281BjJD_normal.jpg",999,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:57.062Z","{""url"":""https://twitter.com/2861616083/status/1853879960165044711""}","{""url"":""https://x.com/USRepGaryPalmer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853844617113792825","USRepKCastor","U.S. Rep. Kathy Castor","Trust women - not Project 2025.","2024-11-05T16:59:34.000Z",,"https://x.com/USRepKCastor/status/1853844617113792825","{""post_id"":""1853534308360753540"",""profile_id"":""RepDanGoldman"",""profile_name"":""Rep. Dan Goldman"",""data_posted"":""2023-01-02T21:07:14.000Z"",""url"":""https://x.com/RepDanGoldman/status/1853534308360753540"",""description"":""By instituting a national abortion ban and tracking women’s pregnancies, Project 2025 would kill women.\n\nIn the last video of our series @RepLoisFrankel @RepJudyChu @RepKManning @RepBeccaB @RepJasmine @PPact and I discuss the plan to end reproductive rights. https://t.co/raUgiEX2HW"",""photos"":null,""videos"":[{""url"":""https://video.twimg.com/amplify_video/1853529431530184704/vid/avc1/1280x720/ajz_OhbfvIn0kgt3.mp4?tag=14"",""duration"":485051}]}",,11,26,84,5034,,,27294,"⚡️Tampa Bay's Congresswoman⚡🌴🌤🌅 🇺🇸 People Over Politics! 🇺🇸 former Chair, @ClimateCrisis 🇺🇸",15446,"https://pbs.twimg.com/profile_images/1852340109254766592/snJ__U7G_normal.jpg",5894,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:57.143Z","{""url"":""https://twitter.com/1880674038/status/1853844617113792825""}","{""url"":""https://x.com/USRepKCastor"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853769785139462362","USRepKCastor","U.S. Rep. Kathy Castor","Election Day polls are now open. Voting is from 7am-7pm. Find your polling place at","2024-11-05T12:02:12.000Z",,"https://x.com/USRepKCastor/status/1853769785139462362","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""167095016"",""profile_name"":""Craig Latimer, Supervisor of Elections"",""url"":""https://x.com/HillsboroughSOE"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,"http://votehillsborough.gov/",,27297,"⚡️Tampa Bay's Congresswoman⚡🌴🌤🌅 🇺🇸 People Over Politics! 🇺🇸 former Chair, @ClimateCrisis 🇺🇸",15446,"https://pbs.twimg.com/profile_images/1852340109254766592/snJ__U7G_normal.jpg",5894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:57.438Z","{""url"":""https://twitter.com/1880674038/status/1853769785139462362""}","{""url"":""https://x.com/USRepKCastor"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853808432261812717","USRepKCastor","U.S. Rep. Kathy Castor","The Climate Crisis is here and @susankglickman is sounding the alarm. + +While Democrats are creating solutions to combat extreme weather & sky-high electric bills, Republicans want to cozy up to Big Oil and Gas companies putting our planet & pocketbooks at risk.","2024-11-05T14:35:47.000Z",,"https://x.com/USRepKCastor/status/1853808432261812717","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""823185330757136386"",""profile_name"":""Susan Glickman"",""url"":""https://x.com/susankglickman"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",5,3,8,592,,,27297,"⚡️Tampa Bay's Congresswoman⚡🌴🌤🌅 🇺🇸 People Over Politics! 🇺🇸 former Chair, @ClimateCrisis 🇺🇸",15446,"https://pbs.twimg.com/profile_images/1852340109254766592/snJ__U7G_normal.jpg",5894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853506128019099648/vid/avc1/568x320/ZZ9QpASHN5jIolJr.mp4?tag=16"",""duration"":148242}]","2024-11-06T04:16:58.579Z","{""url"":""https://twitter.com/1880674038/status/1853808432261812717""}","{""url"":""https://x.com/USRepKCastor"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853819539328221651","RepVeasey","Rep. Marc Veasey","Voting is a fundamental right. Every eligible voter deserves to cast their vote safely. My team and I have been working closely with the U.S. Department of Justice to ensure that everyone knows their rights and can exercise them freely. Make your voice heard.","2024-11-05T15:19:55.000Z","[""https://pbs.twimg.com/media/GboXC3SXcAAPikv.jpg""]","https://x.com/RepVeasey/status/1853819539328221651","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,8,519,,,34252,"Represent Dallas-Fort Worth | @energycommerce | @HASCDemocrats | #GunViolencePrevention Taskforce Deputy Whip | @CVRCaucus + @bluecollardems",7859,"https://pbs.twimg.com/profile_images/1298674593037799425/XP6TFaNF_normal.jpg",3278,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:59.023Z","{""url"":""https://twitter.com/1074129612/status/1853819539328221651""}","{""url"":""https://x.com/RepVeasey"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853815397176258796","Rep_Stansbury","Rep. Melanie Stansbury","New Mexico: today is Election Day! +  +Your vote is your voice!  +  +Cast a ballot and have yours be heard!","2024-11-05T15:03:27.000Z",,"https://x.com/Rep_Stansbury/status/1853815397176258796","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,16,23,60,1142,,,20336,"Representing New Mexico’s 1st Congressional District. Fighting for our future. Working every day to build a more just, equitable and resilient world.",5042,"https://pbs.twimg.com/profile_images/1456487474843340806/E-jaow7u_normal.jpg",298,false,2,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:59.421Z","{""url"":""https://twitter.com/1404519992582942724/status/1853815397176258796""}","{""url"":""https://x.com/Rep_Stansbury"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853813995565715507","RepTroyNehls","Congressman Troy E. Nehls","Today is Election Day. + +Find your polling location in the great state of Texas here:","2024-11-05T14:57:53.000Z",,"https://x.com/RepTroyNehls/status/1853813995565715507","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,9,38,1342,"http://www.votetexas.gov/",,196850,"Congressman (TX-22) | Proudly serving on @JudiciaryGOP and @TransportGOP | Author of The Big Fraud and Borderless by Design",3374,"https://pbs.twimg.com/profile_images/1805754477816745984/CYi2sSGL_normal.jpg",1540,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:59.513Z","{""url"":""https://twitter.com/1347318288850825217/status/1853813995565715507""}","{""url"":""https://x.com/RepTroyNehls"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853848892141638097","RubenGallego","Ruben Gallego","It’s time to vote, Arizona. If you haven’t already, make your plan to vote today.","2024-11-05T17:16:33.000Z","[""https://pbs.twimg.com/media/GboxvRZawAEgSlk.jpg"",""https://pbs.twimg.com/media/GboxvRYa8AE5CjU.jpg"",""https://pbs.twimg.com/media/GboxvRZbwAEXniG.jpg""]","https://x.com/RubenGallego/status/1853848892141638097","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,61,158,600,12087,,,211748,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:16:59.533Z","{""url"":""https://twitter.com/49217025/status/1853848892141638097""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853905127297503315","RepStefanik","Rep. Elise Stefanik","WATCH 👀 + +Joe Biden violated the Presidential Records Act when his Administration altered transcripts where he referred to patriotic Americans as GARBAGE. + +White House staff cannot rewrite the words of the President of the United States. He WILL be held accountable. + +📺: @Newsmax","2024-11-05T21:00:00.000Z",,"https://x.com/RepStefanik/status/1853905127297503315","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""20545835"",""profile_name"":""NEWSMAX"",""url"":""https://x.com/NEWSMAX"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",62,223,640,16567,,,566399,"Proud Representative for New York's 21st Congressional District. House Republican Conference Chair. 📸 Instagram: @repstefanik",14425,"https://pbs.twimg.com/profile_images/1747397911703420928/yxiX9bOL_normal.jpg",746,false,2,11,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853829102425309185/pu/vid/avc1/426x240/gp7vDEyh8EGvKRUB.mp4?tag=12"",""duration"":45179}]","2024-11-06T04:16:59.674Z","{""url"":""https://twitter.com/2962813893/status/1853905127297503315""}","{""url"":""https://x.com/RepStefanik"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853905855286231493","RepAdams","Rep. Alma S. Adams, Ph.D.","Today is the last day to vote. Make your voice heard, North Carolina! + +Find your polling place here:","2024-11-05T21:02:54.000Z","[""https://pbs.twimg.com/media/GbpldOsXMAEvevU.jpg""]","https://x.com/RepAdams/status/1853905855286231493","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,2,8,439,"https://vt.ncsbe.gov/RegLkup/",,32145,"Dean of NC Dems representing NC’s 12th District. Educator. Artist. Founder & Co-Chair of the Black Maternal Health @BMHCaucus and the Bipartisan @HBCUCaucus.",14362,"https://pbs.twimg.com/profile_images/1786088291441266688/ZfbLfCXe_normal.jpg",2695,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:01.333Z","{""url"":""https://twitter.com/2916086925/status/1853905855286231493""}","{""url"":""https://x.com/RepAdams"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853768249013317653","USRepKCastor","U.S. Rep. Kathy Castor","Have you made your plan to vote today? + +🗳️Polls are open from 7am - 7pm. Check your voting info 👇","2024-11-05T11:56:06.000Z",,"https://x.com/USRepKCastor/status/1853768249013317653","{""post_id"":""1853528243124437120"",""profile_id"":""USRepKCastor"",""profile_name"":""U.S. Rep. Kathy Castor"",""data_posted"":""2013-09-18T20:03:57.000Z"",""url"":""https://x.com/USRepKCastor/status/1853528243124437120"",""description"":""Tomorrow is Election Day!🗳️☑️🇺🇸\n\nFind where you can vote in Florida and make a plan to have your voice heard in our democracy: https://t.co/Cndb43GGhf"",""photos"":null,""videos"":null}",,4,2,15,1076,,,27297,"⚡️Tampa Bay's Congresswoman⚡🌴🌤🌅 🇺🇸 People Over Politics! 🇺🇸 former Chair, @ClimateCrisis 🇺🇸",15446,"https://pbs.twimg.com/profile_images/1852340109254766592/snJ__U7G_normal.jpg",5894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:01.527Z","{""url"":""https://twitter.com/1880674038/status/1853768249013317653""}","{""url"":""https://x.com/USRepKCastor"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853865038303441264","SpeakerJohnson","Speaker Mike Johnson","Kelly and I are saddened to hear of the passing of Bernie Marcus. He was a successful entrepreneur, a faithful defender of the free market, and a generous philanthropist who loved this country. He embodied the best of America, and he will be dearly missed. We join with so many other friends in mourning his loss, and in praying for his family.","2024-11-05T18:20:42.000Z",,"https://x.com/SpeakerJohnson/status/1853865038303441264","{""post_id"":""1853804572914975113"",""profile_id"":""JobCreatorsUSA"",""profile_name"":""Job Creators Network"",""data_posted"":""2012-09-10T13:49:25.000Z"",""url"":""https://x.com/JobCreatorsUSA/status/1853804572914975113"",""description"":""In Memoriam: Bernie Marcus, 1929-2024, founder of JCN and co-founder of The Home Depot https://t.co/8shtoCZYKe"",""photos"":null,""videos"":[{""url"":""https://video.twimg.com/amplify_video/1853804096462962688/vid/avc1/1920x1080/aI0uOpG1DAOGhPG3.mp4?tag=16"",""duration"":203203}]}",,83,127,884,61902,,,792079,"56th Speaker of the House | Christian, husband, dad, Constitutional law attorney & small biz owner.",7864,"https://pbs.twimg.com/profile_images/1807858058380349440/V8iMdtLm_normal.jpg",612,false,5,14,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:02.505Z","{""url"":""https://twitter.com/827279765287559171/status/1853865038303441264""}","{""url"":""https://x.com/SpeakerJohnson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853623229505470488","TXRandy14","Randy Weber","KAMALA HARRIS. + +LET. + +MILLIONS. + +OF. + +ILLEGAL ALIENS. + +INTO THE USA. + +CRIMINALS. + +TERRORISTS. + +ARE YOU SAFE?","2024-11-05T02:19:51.000Z",,"https://x.com/TXRandy14/status/1853623229505470488","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1131917492"",""profile_name"":""House Judiciary GOP 🇺🇸🇺🇸🇺🇸"",""url"":""https://x.com/JudiciaryGOP"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,319,0,,,,27518,"Representative for the 14th Congressional District of Texas | Facebook: TXRandy14 🚀🌎⚡️🔬",5672,"https://pbs.twimg.com/profile_images/1615456813998014469/7k986ksO_normal.jpg",934,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:04.053Z","{""url"":""https://twitter.com/1058051748/status/1853623229505470488""}","{""url"":""https://x.com/TXRandy14"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853848755323244728","RepJasonCrow","Rep. Jason Crow","Happy #ElectionDay! + +COLORADO make sure your voice is heard! Return your ballot or vote in person until 7 p.m. today.","2024-11-05T17:16:00.000Z",,"https://x.com/RepJasonCrow/status/1853848755323244728","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,11,34,101,6617,"https://vote.gov/","[""ElectionDay""]",151953,"Dad. Little League Baseball Coach. Army Ranger. Westerner & Whiskey Enthusiast. Congressman Serving CO-06. 🏔️",5640,"https://pbs.twimg.com/profile_images/1745163066734518272/cR5h7Brb_normal.png",841,false,0,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853880997483286528/2V456nuW?format=jpg&name=orig""]",,"2024-11-06T04:17:05.231Z","{""url"":""https://twitter.com/1080191866509901826/status/1853848755323244728""}","{""url"":""https://x.com/RepJasonCrow"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853849921578791206","RepChuyGarcia","Congressman Chuy García","Faith reminds us to love our neighbor and offer refuge to those in need. + +@RepChuyGarcia and Rev. Rafael Malpica Padilla warn us that Project 2025 threatens to implement harsh immigration policies that undermine the values of compassion, dignity, and justice.","2024-11-05T17:20:38.000Z",,"https://x.com/RepChuyGarcia/status/1853849921578791206","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""188019606"",""profile_name"":""James E. Clyburn"",""url"":""https://x.com/RepJamesClyburn"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1082427779583541248"",""profile_name"":""Congressman Chuy García"",""url"":""https://x.com/RepChuyGarcia"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,32,0,,,,37484,"Progressive Chicagoan. Congressman for #IL04⁣. Member of @USProgressives, 🚊 @TransportDems. FB/IG: @RepChuyGarcia",10466,"https://pbs.twimg.com/profile_images/1092137300115496960/9_hmhIKo_normal.jpg",2901,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:05.337Z","{""url"":""https://twitter.com/1082427779583541248/status/1853849921578791206""}","{""url"":""https://x.com/RepChuyGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853792045288043006","repdeliaramirez","Congresswoman Delia C. Ramirez","🗳️ TODAY is Election Day! + +Your vote is your voice. Remember: +✅ Polls are open till 7 PM +✅ You can request up to 2 hours off of work to vote +✅ You can still vote after the polls close if you are in line by 7 PM + +Find a polling location near you:","2024-11-05T13:30:40.000Z",,"https://x.com/repdeliaramirez/status/1853792045288043006","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,6,21,4055,"https://ova.elections.il.gov/pollingplacelookup.aspx",,9744,"Congresswoman proudly serving IL's 3rd district.",2758,"https://pbs.twimg.com/profile_images/1745557447018762240/YnFBOwhu_normal.jpg",721,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:05.330Z","{""url"":""https://twitter.com/1074354529787895808/status/1853792045288043006""}","{""url"":""https://x.com/repdeliaramirez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853834168418914776","TXRandy14","Randy Weber","Kamala Harris has failed America. + +➡️ Inflation? It is out of control—prices are skyrocketing, hurting families and small businesses. Her tie-breaking votes only made it worse. + +➡️ The border? Harris is complicit in the worst crisis in U.S. history. She has allowed 10 MILLION illegal to cross our border and come into the United States. + +➡️ Foreign policy? Harris and Biden’s disastrous withdrawal from Afghanistan has emboldened our enemies. + +Remember that.","2024-11-05T16:18:02.000Z",,"https://x.com/TXRandy14/status/1853834168418914776","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,2,21,2305,,,27518,"Representative for the 14th Congressional District of Texas | Facebook: TXRandy14 🚀🌎⚡️🔬",5672,"https://pbs.twimg.com/profile_images/1615456813998014469/7k986ksO_normal.jpg",934,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:05.538Z","{""url"":""https://twitter.com/1058051748/status/1853834168418914776""}","{""url"":""https://x.com/TXRandy14"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853801666681692472","USRepKCastor","U.S. Rep. Kathy Castor","It's Election Day, St. Pete! 🗳️ If you haven't voted yet, now's the time to make your voice heard! + +@RidePSTA is offering free rides to the polls today! 🚍 + +- Just tell your driver your polling location +- Show your voter ID or ""I Voted"" sticker","2024-11-05T14:08:53.000Z",,"https://x.com/USRepKCastor/status/1853801666681692472","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""65459725"",""profile_name"":""St. Petersburg, FL"",""url"":""https://x.com/StPeteFL"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""122469460"",""profile_name"":""PSTA"",""url"":""https://x.com/RidePSTA"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,12,0,,,,27297,"⚡️Tampa Bay's Congresswoman⚡🌴🌤🌅 🇺🇸 People Over Politics! 🇺🇸 former Chair, @ClimateCrisis 🇺🇸",15446,"https://pbs.twimg.com/profile_images/1852340109254766592/snJ__U7G_normal.jpg",5894,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:06.183Z","{""url"":""https://twitter.com/1880674038/status/1853801666681692472""}","{""url"":""https://x.com/USRepKCastor"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853614534121988525","SpeakerJohnson","Speaker Mike Johnson","Today, Congressional staff are deployed all around the country to serve as Designated Congressional Election Observers. + +This is the largest Election Observer Program in history. Check out where our Observers are located:","2024-11-05T01:45:18.000Z",,"https://x.com/SpeakerJohnson/status/1853614534121988525","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""224391627"",""profile_name"":""House Admin. Committee GOP"",""url"":""https://x.com/HouseAdmin"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,235,0,,,,792079,"56th Speaker of the House | Christian, husband, dad, Constitutional law attorney & small biz owner.",7864,"https://pbs.twimg.com/profile_images/1807858058380349440/V8iMdtLm_normal.jpg",612,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:06.251Z","{""url"":""https://twitter.com/827279765287559171/status/1853614534121988525""}","{""url"":""https://x.com/SpeakerJohnson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853605571485995243","RepTroyNehls","Congressman Troy E. Nehls","FLASHBACK: + +Kamala Harris cast the tie-breaking vote in the Senate for the so-called “Inflation Reduction Act.”","2024-11-05T01:09:41.000Z",,"https://x.com/RepTroyNehls/status/1853605571485995243","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,22,157,258,16115,,,196856,"Congressman (TX-22) | Proudly serving on @JudiciaryGOP and @TransportGOP | Author of The Big Fraud and Borderless by Design",3374,"https://pbs.twimg.com/profile_images/1805754477816745984/CYi2sSGL_normal.jpg",1540,false,8,6,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1820516855490007040/vid/avc1/1280x720/huF5ZlHXDJCnLBuJ.mp4?tag=16"",""duration"":29066}]","2024-11-06T04:17:07.358Z","{""url"":""https://twitter.com/1347318288850825217/status/1853605571485995243""}","{""url"":""https://x.com/RepTroyNehls"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853858422388666374","RepChuyGarcia","Congressman Chuy García","✅ 38% pay raise over four years +✅ $12k bonus +✅ 8% match on a 401(k) + +@MachinistsUnion workers showing what workers can win through collective action ✊","2024-11-05T17:54:25.000Z",,"https://x.com/RepChuyGarcia/status/1853858422388666374","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1328414475607740418"",""profile_name"":""Labor Caucus"",""url"":""https://x.com/Labor_Caucus"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""74829020"",""profile_name"":""Machinists Union"",""url"":""https://x.com/MachinistsUnion"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,18,0,,,,37477,"Progressive Chicagoan. Congressman for #IL04⁣. Member of @USProgressives, 🚊 @TransportDems. FB/IG: @RepChuyGarcia",10466,"https://pbs.twimg.com/profile_images/1092137300115496960/9_hmhIKo_normal.jpg",2901,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:07.570Z","{""url"":""https://twitter.com/1082427779583541248/status/1853858422388666374""}","{""url"":""https://x.com/RepChuyGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853929413575942268","RepJillTokuda","U.S. Rep. Jill Tokuda","Proud to stand in solidarity with our nurses on Maui fighting for safer staffing, fair wages, & the ability to better care for our community. Our nurses are putting patients and the needs of their families first—they take care of us, so let’s take care of them!","2024-11-05T22:36:31.000Z","[""https://pbs.twimg.com/media/Gbp6-ZJW8AAlfYm.jpg"",""https://pbs.twimg.com/media/Gbp6-ZIWQAAC0Dv.jpg"",""https://pbs.twimg.com/media/Gbp6-ZHWQAQdTjN.jpg"",""https://pbs.twimg.com/media/Gbp6-ZFXIAAecyp.jpg""]","https://x.com/RepJillTokuda/status/1853929413575942268","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,1,109,,,3137,"Proudly representing Hawaiʻi’s 2nd Congressional District. Member of @houseagdems, @hascdemocrats, @usprogressives, & @capac. Leading with aloha🌺",842,"https://pbs.twimg.com/profile_images/1611471824688238597/ZiGswfSh_normal.jpg",435,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:07.675Z","{""url"":""https://twitter.com/1610730477563805699/status/1853929413575942268""}","{""url"":""https://x.com/RepJillTokuda"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853635007056683485","SpeakerJohnson","Speaker Mike Johnson","From skyrocketing prices to increased debt, and every metric in between, Americans are struggling because of the disastrous policies of the Biden-Harris White House.","2024-11-05T03:06:39.000Z",,"https://x.com/SpeakerJohnson/status/1853635007056683485","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,674,412,2167,59819,,,792079,"56th Speaker of the House | Christian, husband, dad, Constitutional law attorney & small biz owner.",7864,"https://pbs.twimg.com/profile_images/1807858058380349440/V8iMdtLm_normal.jpg",612,false,32,21,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853634930854461440/vid/avc1/1280x720/yqXV-jvF0hzvN7mb.mp4?tag=16"",""duration"":80200}]","2024-11-06T04:17:07.928Z","{""url"":""https://twitter.com/827279765287559171/status/1853635007056683485""}","{""url"":""https://x.com/SpeakerJohnson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853808865676042341","RepRickLarsen","Rep. Rick Larsen","Great news! @IAM751 members can now get back to work building the safest airplanes in the world.","2024-11-05T14:37:30.000Z",,"https://x.com/RepRickLarsen/status/1853808865676042341","{""post_id"":""1853664063429189635"",""profile_id"":""IAM751"",""profile_name"":""IAM Union District 751"",""data_posted"":""2009-04-01T13:21:05.000Z"",""url"":""https://x.com/IAM751/status/1853664063429189635"",""description"":""#IAM751Machinists https://t.co/VfgWRvtjJ6"",""photos"":[""https://pbs.twimg.com/media/GbmJo-YaoAEWF-n.jpg""],""videos"":null}","[{""profile_id"":""28103693"",""profile_name"":""IAM Union District 751"",""url"":""https://x.com/IAM751"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,2,6,878,,,23651,"Born and raised in Arlington, WA. Representing WA’s beautiful 2nd Congressional District. Lead Democrat on @TransportDems.",18368,"https://pbs.twimg.com/profile_images/1829601354634928130/F_DXD0Ua_normal.jpg",6319,false,0,2,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:08.383Z","{""url"":""https://twitter.com/404132211/status/1853808865676042341""}","{""url"":""https://x.com/RepRickLarsen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853809117455864206","RepJoshG","Rep Josh Gottheimer","Here in the greatest country in the world, the act of voting is central to our democracy and is a chance for every American to have their voice heard. If you have not already, make sure you vote today! +  +To find a polling location near you, visit","2024-11-05T14:38:30.000Z",,"https://x.com/RepJoshG/status/1853809117455864206","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,0,8,838,"https://vote.gov/",,25166,"Honored to serve NJ-5 | Co-Chair @ProbSolveCaucus | Intelligence & Financial Services Committees | Working across the aisle for lower taxes & Jersey Values",14274,"https://pbs.twimg.com/profile_images/824380405482668042/TGcE_Hz0_normal.jpg",241,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853880997483286528/2V456nuW?format=jpg&name=orig""]",,"2024-11-06T04:17:09.387Z","{""url"":""https://twitter.com/815310506596691968/status/1853809117455864206""}","{""url"":""https://x.com/RepJoshG"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853868746709885045","repdeliaramirez","Congresswoman Delia C. Ramirez","Folks, Election Day is here! + +While not a federal holiday *yet*, it is in your RIGHT to go out and vote today. Remember you have the right to up to 2 hours off to vote. Let's get to the polls today and work for a tomorrow where election day is a national holiday! #MakeElectionDayANationalHoliday + +Learn more about your rights here: https://t.co/KsLbcIRuKN","2024-11-05T18:35:27.000Z",,"https://x.com/repdeliaramirez/status/1853868746709885045","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,8,37,5428,,,9744,"Congresswoman proudly serving IL's 3rd district.",2758,"https://pbs.twimg.com/profile_images/1745557447018762240/YnFBOwhu_normal.jpg",721,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:11.089Z","{""url"":""https://twitter.com/1074354529787895808/status/1853868746709885045""}","{""url"":""https://x.com/repdeliaramirez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853845935274553662","CongBoyle","Rep. Brendan Boyle","It's time to vote, Philadelphia! + +Polls are now open until 8 p.m. tonight. + +Visit","2024-11-05T17:04:48.000Z",,"https://x.com/CongBoyle/status/1853845935274553662","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""19358830"",""profile_name"":""City of Philadelphia"",""url"":""https://x.com/PhiladelphiaGov"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,51,0,,"http://vote.phila.gov/",,20097,"Official Legislative Account | Ranking Member @HouseBudgetDems, Co-Chair @BlueCollarDems, Proud Father, Loyal Philly sports fan and Fighter for PA-02",6781,"https://pbs.twimg.com/profile_images/1011351594527584256/JM6PNL3W_normal.jpg",3528,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:11.504Z","{""url"":""https://twitter.com/4304448314/status/1853845935274553662""}","{""url"":""https://x.com/CongBoyle"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853874740924158143","RepSpanberger","Rep. Abigail Spanberger","You still have time to vote, Virginia! Don't miss your chance to vote. Polls are open until 7pm EST today. Visit","2024-11-05T18:59:16.000Z",,"https://x.com/RepSpanberger/status/1853874740924158143","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""54982829"",""profile_name"":""VA Dept of Elections"",""url"":""https://x.com/vaELECT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,20,0,,,,85408,"Proudly serving Virginia’s 7th District in the U.S. House of Representatives. Former CIA officer. Former federal law enforcement officer. Mom of 3.",9355,"https://pbs.twimg.com/profile_images/1610374849205075969/fxn8bTD__normal.jpg",1302,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:11.807Z","{""url"":""https://twitter.com/1078771401497161728/status/1853874740924158143""}","{""url"":""https://x.com/RepSpanberger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853824493765972345","RepRobinKelly","Robin Kelly","Your vote is your voice. + +This Election Day, make your voice heard and bring your friends, family, and neighbors to the polls. + +Know your voting rights. Have a plan:","2024-11-05T15:39:36.000Z","[""https://pbs.twimg.com/media/GbobeHDXUAADscK.png""]","https://x.com/RepRobinKelly/status/1853824493765972345","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,3,5,337,"http://elections.il.gov/",,35069,"Official Twitter for Rep Robin Kelly #IL02 Member @EnergyCommerce, Co-Chair @CBWGCAUCUS & Chair of @TheBlackCaucus Health Braintrust",8737,"https://pbs.twimg.com/profile_images/1559977844289277952/iNFTQ-wq_normal.jpg",10418,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:14.666Z","{""url"":""https://twitter.com/1339931490/status/1853824493765972345""}","{""url"":""https://x.com/RepRobinKelly"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853942945889603954","RepSpanberger","Rep. Abigail Spanberger","🚨VIRGINIA: Polls close in 30 minutes! + +If you are in line to vote by 7:00pm when polls close, stay in line! You can cast your ballot. + +Voting is one of our fundamental freedoms as citizens, and I thank every voter who made their voice heard today.","2024-11-05T23:30:17.000Z",,"https://x.com/RepSpanberger/status/1853942945889603954","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,56,155,7592,,,85408,"Proudly serving Virginia’s 7th District in the U.S. House of Representatives. Former CIA officer. Former federal law enforcement officer. Mom of 3.",9355,"https://pbs.twimg.com/profile_images/1610374849205075969/fxn8bTD__normal.jpg",1302,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:15.647Z","{""url"":""https://twitter.com/1078771401497161728/status/1853942945889603954""}","{""url"":""https://x.com/RepSpanberger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853831665375756622","NydiaVelazquez","Rep. Nydia Velazquez","It’s Election Day! + +Polls are open 6am-9pm. + +Find your poll site:","2024-11-05T16:08:06.000Z","[""https://pbs.twimg.com/media/GarCYrmWsAA9I9r.jpg""]","https://x.com/NydiaVelazquez/status/1853831665375756622","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""210927444"",""profile_name"":""NYC Board of Elections"",""url"":""https://x.com/BOENYC"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,125,0,,"http://findmypollsite.vote.nyc/",,81628,"Represents New York's 7th Congressional District in the U.S. House of Representatives. Ranking Member of @HSBCDems.",12942,"https://pbs.twimg.com/profile_images/1304071523670675457/GzYfUXAa_normal.jpg",5961,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:15.859Z","{""url"":""https://twitter.com/164369297/status/1853831665375756622""}","{""url"":""https://x.com/NydiaVelazquez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853935555102244994","RepJohnRose","Congressman John Rose","Americans deserve to trust the election results. + +That's why my team has been trained and deployed to swing districts across the country to ensure the election is being administered accurately--without interference. + +The Election Observer Program tool strengthens our elections.","2024-11-05T23:00:55.000Z",,"https://x.com/RepJohnRose/status/1853935555102244994","{""post_id"":""1853859835449938346"",""profile_id"":""RepJohnRose"",""profile_name"":""Congressman John Rose"",""data_posted"":""2019-01-04T22:11:59.000Z"",""url"":""https://x.com/RepJohnRose/status/1853859835449938346"",""description"":""Members of my team are in swing districts spread throughout the country serving as official Congressional Election Observers to ensure this election is secure and fair.\n \nIf you see something suspicious, call my office at 202-225-4231."",""photos"":null,""videos"":null}",,3,2,11,1033,,,20661,"U.S. Representative serving Tennessee’s Sixth Congressional District. Proud husband to Chelsea and father to Guy and Sam. @HouseAgGOP and @FinancialCmte Member",2516,"https://pbs.twimg.com/profile_images/1703773173395673088/vOoF6YKk_normal.jpg",431,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:15.894Z","{""url"":""https://twitter.com/1081312310059253763/status/1853935555102244994""}","{""url"":""https://x.com/RepJohnRose"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853859835449938346","RepJohnRose","Congressman John Rose","Members of my team are in swing districts spread throughout the country serving as official Congressional Election Observers to ensure this election is secure and fair. + +If you see something suspicious, call my office at 202-225-4231.","2024-11-05T18:00:02.000Z",,"https://x.com/RepJohnRose/status/1853859835449938346","{""post_id"":""1853545553130385898"",""profile_id"":""HouseAdmin"",""profile_name"":""House Admin. Committee GOP"",""data_posted"":""2010-12-08T21:58:36.000Z"",""url"":""https://x.com/HouseAdmin/status/1853545553130385898"",""description"":""Today, Congressional staff are deployed all around the country to serve as Designated Congressional Election Observers.\n\nThis is the largest Election Observer Program in history. Check out where our Observers are located: https://t.co/pUUatvnpbe"",""photos"":[""https://pbs.twimg.com/media/GbkdwkKXkAIfhFn.jpg""],""videos"":null}",,9,4,14,2372,,,20661,"U.S. Representative serving Tennessee’s Sixth Congressional District. Proud husband to Chelsea and father to Guy and Sam. @HouseAgGOP and @FinancialCmte Member",2516,"https://pbs.twimg.com/profile_images/1703773173395673088/vOoF6YKk_normal.jpg",431,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:16.027Z","{""url"":""https://twitter.com/1081312310059253763/status/1853859835449938346""}","{""url"":""https://x.com/RepJohnRose"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853880453930824117","RepSpanberger","Rep. Abigail Spanberger","Thank you to the @CapitolPolice for quickly responding to this situation. + +I am always grateful for the brave officers who work around the clock to protect our nation's Capitol and keep visitors safe.","2024-11-05T19:21:58.000Z",,"https://x.com/RepSpanberger/status/1853880453930824117","{""post_id"":""1853869248562475086"",""profile_id"":""CapitolPolice"",""profile_name"":""The U.S. Capitol Police"",""data_posted"":""2008-09-28T22:45:09.000Z"",""url"":""https://x.com/CapitolPolice/status/1853869248562475086"",""description"":""Our officers just arrested a man who was stopped during our screening process at the Capitol Visitor Center (CVC). The man smelled like fuel, had a torch & a flare gun. \n\nThe CVC is closed for tours for the day, while we investigate. We will provide more information when we can. https://t.co/J5geNud1h2"",""photos"":[""https://pbs.twimg.com/media/GbpDT2ZWwAE_OH6.jpg""],""videos"":null}","[{""profile_id"":""16503916"",""profile_name"":""The U.S. Capitol Police"",""url"":""https://x.com/CapitolPolice"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",1,15,94,4155,,,85408,"Proudly serving Virginia’s 7th District in the U.S. House of Representatives. Former CIA officer. Former federal law enforcement officer. Mom of 3.",9355,"https://pbs.twimg.com/profile_images/1610374849205075969/fxn8bTD__normal.jpg",1302,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:16.432Z","{""url"":""https://twitter.com/1078771401497161728/status/1853880453930824117""}","{""url"":""https://x.com/RepSpanberger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853949009120899165","repdeliaramirez","Congresswoman Delia C. Ramirez","#IL03! If anyone is waiting to vote, remember you can still vote after the polls close as along as you're in line by 7PM! + +Learn more about your rights while voting in Illinois:","2024-11-05T23:54:23.000Z",,"https://x.com/repdeliaramirez/status/1853949009120899165","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,4,440,"https://www.aclu-il.org/en/know-your-rights/know-your-rights-voting-illinois","[""IL03""]",9744,"Congresswoman proudly serving IL's 3rd district.",2758,"https://pbs.twimg.com/profile_images/1745557447018762240/YnFBOwhu_normal.jpg",721,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853686159919960064/QgghhhcG?format=jpg&name=orig""]",,"2024-11-06T04:17:16.419Z","{""url"":""https://twitter.com/1074354529787895808/status/1853949009120899165""}","{""url"":""https://x.com/repdeliaramirez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853920229057061342","RepLouCorrea","Rep. Lou Correa","I stopped by Samueli Academy yesterday to chat with students about all the opportunities they have after senior year. + +Whether they pursue a college degree or start a career, my office is a resource for students looking for internships, Service Academy nominations, and much more.","2024-11-05T22:00:01.000Z","[""https://pbs.twimg.com/media/GbpYWtSWcAAeJT2.jpg"",""https://pbs.twimg.com/media/GbpYYQLWUAAaR9l.jpg""]","https://x.com/RepLouCorrea/status/1853920229057061342","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,4,370,,,25212,"Father. Public servant. Member of Congress. Ranking Member, Border Subcommittee on @HomelandDems. Also @HouseJudiciary.",2154,"https://pbs.twimg.com/profile_images/958720189897625601/c-SpjpEc_normal.jpg",102,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:18.037Z","{""url"":""https://twitter.com/815985039485837312/status/1853920229057061342""}","{""url"":""https://x.com/RepLouCorrea"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853904139383881853","USRepMikeFlood","Rep. Mike Flood","🥇 The state of the economy is the #1 issue on Americans' minds these days and it's no surprise why. +  +📈 Biden-Harris economics is fueling runaway inflation, driving prices through the roof. +  +💸 Americans are fed up with radical Democrat spending gutting their purchasing power.","2024-11-05T20:56:05.000Z",,"https://x.com/USRepMikeFlood/status/1853904139383881853","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""42924141"",""profile_name"":""Financial Services GOP"",""url"":""https://x.com/FinancialCmte"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,23,0,,,,8532,"Serving Nebraska's 1st District in the U.S House of Representatives",2058,"https://pbs.twimg.com/profile_images/1556740185286664195/f_8-SIsj_normal.jpg",533,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:18.399Z","{""url"":""https://twitter.com/1547025742529167360/status/1853904139383881853""}","{""url"":""https://x.com/USRepMikeFlood"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853816996623749563","RepSpanberger","Rep. Abigail Spanberger","🗳️VIRGINIA VOTERS: Today is Election Day and polls are open! + +Do you have a plan to vote? + +Visit","2024-11-05T15:09:48.000Z",,"https://x.com/RepSpanberger/status/1853816996623749563","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,7,13,1291,"http://elections.virginia.gov/",,85408,"Proudly serving Virginia’s 7th District in the U.S. House of Representatives. Former CIA officer. Former federal law enforcement officer. Mom of 3.",9355,"https://pbs.twimg.com/profile_images/1610374849205075969/fxn8bTD__normal.jpg",1302,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:18.728Z","{""url"":""https://twitter.com/1078771401497161728/status/1853816996623749563""}","{""url"":""https://x.com/RepSpanberger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853851402574926324","RepJoshG","Rep Josh Gottheimer","Anyone who tries to undermine our democracy should be swiftly punished. No poll worker should fear for their safety while ensuring our right to vote. We must pass the bipartisan Ballot Box Protection Act to defend our freedoms and those who protect them.","2024-11-05T17:26:31.000Z",,"https://x.com/RepJoshG/status/1853851402574926324","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,1,2,783,"https://www.tapinto.net/towns/hackensack/sections/elections/articles/ahead-of-election-congressman-announces-new-action-to-protect-ballot-boxes-poll-workers-from-violence-and-harassment",,25166,"Honored to serve NJ-5 | Co-Chair @ProbSolveCaucus | Intelligence & Financial Services Committees | Working across the aisle for lower taxes & Jersey Values",14274,"https://pbs.twimg.com/profile_images/824380405482668042/TGcE_Hz0_normal.jpg",241,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:19.353Z","{""url"":""https://twitter.com/815310506596691968/status/1853851402574926324""}","{""url"":""https://x.com/RepJoshG"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853906866708901983","RepSpanberger","Rep. Abigail Spanberger","You have THREE more hours to make your voice heard, Virginia! 🗳️ + +Polls are open across our Commonwealth until 7:00pm. If you are in line by 7:00pm, stay in line! You have the right to vote. + +Find your polling place:","2024-11-05T21:06:55.000Z",,"https://x.com/RepSpanberger/status/1853906866708901983","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,15,54,1990,"http://elections.virginia.gov/",,85408,"Proudly serving Virginia’s 7th District in the U.S. House of Representatives. Former CIA officer. Former federal law enforcement officer. Mom of 3.",9355,"https://pbs.twimg.com/profile_images/1610374849205075969/fxn8bTD__normal.jpg",1302,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:19.467Z","{""url"":""https://twitter.com/1078771401497161728/status/1853906866708901983""}","{""url"":""https://x.com/RepSpanberger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853887562571829701","USRepGaryPalmer","Gary Palmer","Americans cannot afford four more years of failed leadership and #Kamalanomics.","2024-11-05T19:50:13.000Z",,"https://x.com/USRepGaryPalmer/status/1853887562571829701","{""post_id"":""1853791627296559111"",""profile_id"":""HouseGOP"",""profile_name"":""House Republicans"",""data_posted"":""2008-06-23T14:41:52.000Z"",""url"":""https://x.com/HouseGOP/status/1853791627296559111"",""description"":""Americans are struggling to make ends meet because of FAILED #Kamalanomics. https://t.co/G1mRXIT5dh"",""photos"":[""https://pbs.twimg.com/media/GbjmwTDWYAAy-kO.jpg""],""videos"":null}",,2,4,12,1661,,"[""Kamalanomics""]",26776,"Proudly serving the people of Alabama's 6th Congressional District. Chairman of House @GOPpolicy Committee. Member of @HouseCommerce and @GOPoversight.",4527,"https://pbs.twimg.com/profile_images/963834426131087362/G281BjJD_normal.jpg",999,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:20.987Z","{""url"":""https://twitter.com/2861616083/status/1853887562571829701""}","{""url"":""https://x.com/USRepGaryPalmer"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853871739115098276","RepSchneider","Rep. Brad Schneider","It's Election Day! I hope you've already cast your ballot by mail, taken advantage of early voting, or are planning to vote in person today. Let's make our voices count! To find your nearest polling place, visit","2024-11-05T18:47:20.000Z","[""https://pbs.twimg.com/media/GbpF0CXWQAAxWB9.jpg""]","https://x.com/RepSchneider/status/1853871739115098276","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,1,3,423,"http://vote.gov/",,22416,"Proud to represent the people of Illinois's 10th Congressional District",7710,"https://pbs.twimg.com/profile_images/1484193405039046663/AT0qFLQB_normal.jpg",1110,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:21.048Z","{""url"":""https://twitter.com/1071840474/status/1853871739115098276""}","{""url"":""https://x.com/RepSchneider"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853872959892738559","SenJackyRosen","Senator Jacky Rosen","It’s Election Day, Nevada! Polls are open 7am to 7pm - and remember, if you’re in line by 7pm, stay in line! + +If you have questions or concerns throughout the day, contact the @NVSOS:","2024-11-05T18:52:11.000Z",,"https://x.com/SenJackyRosen/status/1853872959892738559","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2369447994"",""profile_name"":""NV Sec of State"",""url"":""https://x.com/NVSOS"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,40,0,,,,54385,"Working across the aisle to deliver for hardworking Nevada families in the U.S. Senate. Proud mom and wife. Former computer programmer and synagogue president.",13025,"https://pbs.twimg.com/profile_images/1520041466109825025/Rpk8egu1_normal.jpg",813,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:22.301Z","{""url"":""https://twitter.com/818554054309715969/status/1853872959892738559""}","{""url"":""https://x.com/SenJackyRosen"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853905276208025880","RepJimmyGomez","Rep. Jimmy Gomez","As a longtime advocate for accessible arts in LA, I secured over $1 million in federal funds to build the #HighlandPark Youth Arts Center! + +This grant will provide a safe space for students to express their creativity and connect with our #CA34 community.🎨","2024-11-05T21:00:36.000Z",,"https://x.com/RepJimmyGomez/status/1853905276208025880","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""2371339658"",""profile_name"":""Rep. Jimmy Gomez"",""url"":""https://x.com/RepJimmyGomez"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,1,0,,,"[""HighlandPark""]",53681,"Official account, U.S. Congressman Jimmy Gomez (CA-34, Los Angeles). Serving on the @WaysMeansCmte. Founder of the Congressional @DadsCaucus.",11115,"https://pbs.twimg.com/profile_images/978147788667027456/Sshj14W0_normal.jpg",3948,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:24.073Z","{""url"":""https://twitter.com/2371339658/status/1853905276208025880""}","{""url"":""https://x.com/RepJimmyGomez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853889133833564387","RepLouCorrea","Rep. Lou Correa","Voting is a privilege and a responsibility—I hope everyone around OC can get out there today and cast their vote. + +As we watch the results come in, remember: peaceful and respectful elections are what make our nation so great. Let's make this a moment of unity, not hate.","2024-11-05T19:56:27.000Z",,"https://x.com/RepLouCorrea/status/1853889133833564387","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,7,498,,,25212,"Father. Public servant. Member of Congress. Ranking Member, Border Subcommittee on @HomelandDems. Also @HouseJudiciary.",2154,"https://pbs.twimg.com/profile_images/958720189897625601/c-SpjpEc_normal.jpg",102,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:24.321Z","{""url"":""https://twitter.com/815985039485837312/status/1853889133833564387""}","{""url"":""https://x.com/RepLouCorrea"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853918665936154952","RepMarkPocan","Rep. Mark Pocan","Folks, if you’re in line to vote, stay in line! Even after the polls close.","2024-11-05T21:53:48.000Z",,"https://x.com/RepMarkPocan/status/1853918665936154952","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,23,68,3438,,,114256,"Honored to serve the people of Wisconsin's 2nd District. @EqualityCaucus Chair🏳️‍🌈 @Labor_Caucus Co-Chair✊ @AppropsDems Member He/Him/His",13886,"https://pbs.twimg.com/profile_images/1771212845117521922/7Mq0exWk_normal.jpg",6048,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:24.818Z","{""url"":""https://twitter.com/1206227149/status/1853918665936154952""}","{""url"":""https://x.com/repmarkpocan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853809673494745371","NydiaVelazquez","Rep. Nydia Velazquez","Today is Election Day. + +Make a plan to vote and make your voice heard today. + +For more information, visit","2024-11-05T14:40:42.000Z",,"https://x.com/NydiaVelazquez/status/1853809673494745371","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,2,7,855,"https://elections.ny.gov/",,81631,"Represents New York's 7th Congressional District in the U.S. House of Representatives. Ranking Member of @HSBCDems.",12942,"https://pbs.twimg.com/profile_images/1304071523670675457/GzYfUXAa_normal.jpg",5961,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853779326438629376/2Y--rjiO?format=jpg&name=orig""]",,"2024-11-06T04:17:26.783Z","{""url"":""https://twitter.com/164369297/status/1853809673494745371""}","{""url"":""https://x.com/NydiaVelazquez"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853839564835525054","RepMarkPocan","Rep. Mark Pocan","In Wisconsin, if you are not registered to vote, you can still do so today at the polls!","2024-11-05T16:39:29.000Z",,"https://x.com/RepMarkPocan/status/1853839564835525054","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,27,51,2485,,,114256,"Honored to serve the people of Wisconsin's 2nd District. @EqualityCaucus Chair🏳️‍🌈 @Labor_Caucus Co-Chair✊ @AppropsDems Member He/Him/His",13886,"https://pbs.twimg.com/profile_images/1771212845117521922/7Mq0exWk_normal.jpg",6048,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:26.924Z","{""url"":""https://twitter.com/1206227149/status/1853839564835525054""}","{""url"":""https://x.com/repmarkpocan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853820463031406712","RepChuyGarcia","Congressman Chuy García","It’s Election Day, Illinois! 🗳️ + +Make sure your voice is heard today. For more information visit:","2024-11-05T15:23:35.000Z","[""https://pbs.twimg.com/media/GboXxtjXUAAMjQk.jpg""]","https://x.com/RepChuyGarcia/status/1853820463031406712","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,4,38,1628,"http://elections.il.gov/",,37484,"Progressive Chicagoan. Congressman for #IL04⁣. Member of @USProgressives, 🚊 @TransportDems. FB/IG: @RepChuyGarcia",10466,"https://pbs.twimg.com/profile_images/1092137300115496960/9_hmhIKo_normal.jpg",2901,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:27.814Z","{""url"":""https://twitter.com/1082427779583541248/status/1853820463031406712""}","{""url"":""https://x.com/RepChuyGarcia"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853905131072589937","repdinatitus","Dina Titus","It’s the 7th anniversary of the deadliest shooting in Texas history, where we lost 25 lives during a Sunday church service in Sutherland Springs. + +Even our places of worship are not safe from gun violence. We must pass commonsense gun safety measures now.","2024-11-05T21:00:01.000Z",,"https://x.com/repdinatitus/status/1853905131072589937","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,21,2,22,1673,,,49647,"Congresswoman proudly representing the First District of Nevada in the U.S. House of Representatives.",19428,"https://pbs.twimg.com/profile_images/669584452322877442/z7pOtlJI_normal.jpg",2009,false,3,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:27.996Z","{""url"":""https://twitter.com/122174004/status/1853905131072589937""}","{""url"":""https://x.com/repdinatitus"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853994852431900705","RubenGallego","Ruben Gallego","Shoutout to the poll workers across Arizona who show up early, stay late, and keep our democracy running smoothly. Your dedication to every single vote is a testament to our state’s strength. Thank you!","2024-11-06T02:56:33.000Z",,"https://x.com/RubenGallego/status/1853994852431900705","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,62,726,5153,87251,,,211748,"Senate Candidate for Arizona. Iraq War Veteran USMC 0311/0341. Member of Congress for #Az03. Hispanic/Latino. Father of Michael & Isla. Husband to @syd_gallego",25029,"https://pbs.twimg.com/profile_images/1834717374047830016/VsC9VDyy_normal.jpg",2733,false,8,21,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:28.108Z","{""url"":""https://twitter.com/49217025/status/1853994852431900705""}","{""url"":""https://x.com/RubenGallego"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853878030139044005","RepMarkPocan","Rep. Mark Pocan","In honor of Election Day, here’s a throwback #MagicMonday about election day predictions! But most importantly, don’t forget to vote!","2024-11-05T19:12:20.000Z",,"https://x.com/RepMarkPocan/status/1853878030139044005","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,2,3,1500,,"[""MagicMonday""]",114256,"Honored to serve the people of Wisconsin's 2nd District. @EqualityCaucus Chair🏳️‍🌈 @Labor_Caucus Co-Chair✊ @AppropsDems Member He/Him/His",13886,"https://pbs.twimg.com/profile_images/1771212845117521922/7Mq0exWk_normal.jpg",6048,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853877471998816256/vid/avc1/1920x1080/dtDl_dSNTD1AQA-r.mp4?tag=16"",""duration"":219753}]","2024-11-06T04:17:28.531Z","{""url"":""https://twitter.com/1206227149/status/1853878030139044005""}","{""url"":""https://x.com/repmarkpocan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853876531342328257","RepBurgessOwens","Rep. Burgess Owens","Middle-class Americans are struggling under Biden-Harris policies that fuel inflation and drive up everyday costs. + +Hardworking families deserve better than an administration that shrinks paychecks and stifles opportunity.","2024-11-05T19:06:23.000Z","[""https://pbs.twimg.com/media/GbpKy5XW8AAJHI3.jpg""]","https://x.com/RepBurgessOwens/status/1853876531342328257","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,10,7,13,2244,,,35973,"Proudly serving Utah's 4th Congressional District. Member of @EdWorkforceCmte & @TransportGOP.",3166,"https://pbs.twimg.com/profile_images/1364252715006779392/1g-dP8G9_normal.jpg",280,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:28.596Z","{""url"":""https://twitter.com/1344481217685692416/status/1853876531342328257""}","{""url"":""https://x.com/RepBurgessOwens"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853761679755972815","RepSpanberger","Rep. Abigail Spanberger","TODAY is Election Day! 🗳️ + +Polls are NOW OPEN across Virginia until 7:00pm. + +Visit","2024-11-05T11:30:00.000Z",,"https://x.com/RepSpanberger/status/1853761679755972815","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,26,59,4745,"http://vote.elections.virginia.gov/",,85409,"Proudly serving Virginia’s 7th District in the U.S. House of Representatives. Former CIA officer. Former federal law enforcement officer. Mom of 3.",9355,"https://pbs.twimg.com/profile_images/1610374849205075969/fxn8bTD__normal.jpg",1302,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:29.628Z","{""url"":""https://twitter.com/1078771401497161728/status/1853761679755972815""}","{""url"":""https://x.com/RepSpanberger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853801741868827038","RepMarkPocan","Rep. Mark Pocan","Today’s the day! It’s so, so important to get out and vote.","2024-11-05T14:09:11.000Z",,"https://x.com/RepMarkPocan/status/1853801741868827038","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,11,1,16,1711,,,114256,"Honored to serve the people of Wisconsin's 2nd District. @EqualityCaucus Chair🏳️‍🌈 @Labor_Caucus Co-Chair✊ @AppropsDems Member He/Him/His",13886,"https://pbs.twimg.com/profile_images/1771212845117521922/7Mq0exWk_normal.jpg",6048,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:30.093Z","{""url"":""https://twitter.com/1206227149/status/1853801741868827038""}","{""url"":""https://x.com/repmarkpocan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853885294837379156","SpeakerJohnson","Speaker Mike Johnson","America is in decline BECAUSE of Kamala Harris.","2024-11-05T19:41:12.000Z","[""https://pbs.twimg.com/media/GbpSjOdWgAMETHB.jpg"",""https://pbs.twimg.com/media/GbpSjeeWMAAXo5C.jpg"",""https://pbs.twimg.com/media/GbpSj1qXAAEKUHX.jpg"",""https://pbs.twimg.com/media/GbpSkJeXQAEl7R4.jpg""]","https://x.com/SpeakerJohnson/status/1853885294837379156","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,586,372,1545,55038,,,792079,"56th Speaker of the House | Christian, husband, dad, Constitutional law attorney & small biz owner.",7864,"https://pbs.twimg.com/profile_images/1807858058380349440/V8iMdtLm_normal.jpg",612,false,26,18,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:30.155Z","{""url"":""https://twitter.com/827279765287559171/status/1853885294837379156""}","{""url"":""https://x.com/SpeakerJohnson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853784330230771936","RepMann","Tracey Mann","Happy Election Day. I hope you'll exercise your right to vote in our country and make your voice heard. + +I am praying for our state and our country while believing that our best days are yet to come. Find your polling location at","2024-11-05T13:00:00.000Z","[""https://pbs.twimg.com/media/GbT-DODWIAA_JXw.jpg""]","https://x.com/RepMann/status/1853784330230771936","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,2,6,434,"https://myvoteinfo.voteks.org/VoterView",,5256,"Official account for Rep. Tracey Mann | Big First, KS | Advocate for KS agriculture and conservative values | @HouseAgGOP @TransportGOP @HouseSmallBiz #KS01",832,"https://pbs.twimg.com/profile_images/1367926202401492992/4eZE1usc_normal.jpg",184,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:31.780Z","{""url"":""https://twitter.com/1345825008887721986/status/1853784330230771936""}","{""url"":""https://x.com/RepMann"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853851031316111672","RepMarkPocan","Rep. Mark Pocan","Happy birthday to my friend, and Wisconsin's amazing governor, @GovEvers.","2024-11-05T17:25:03.000Z","[""https://pbs.twimg.com/media/GbozIgPXQAA-Xp7.jpg""]","https://x.com/RepMarkPocan/status/1853851031316111672","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""234896532"",""profile_name"":""Governor Tony Evers"",""url"":""https://x.com/GovEvers"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",9,16,123,3003,,,114255,"Honored to serve the people of Wisconsin's 2nd District. @EqualityCaucus Chair🏳️‍🌈 @Labor_Caucus Co-Chair✊ @AppropsDems Member He/Him/His",13886,"https://pbs.twimg.com/profile_images/1771212845117521922/7Mq0exWk_normal.jpg",6048,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:34.096Z","{""url"":""https://twitter.com/1206227149/status/1853851031316111672""}","{""url"":""https://x.com/repmarkpocan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842628451672504","FrankPallone","Rep. Frank Pallone","🗳️ Today is Election Day! + +Polls in New Jersey are open until 8PM so make a plan to vote today! + +Don’t miss your chance to make your voice heard!","2024-11-05T16:51:40.000Z",,"https://x.com/FrankPallone/status/1853842628451672504","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,3,26,1336,,,54388,"The official Twitter account of Congressman Frank Pallone, Jr. (D) of New Jersey's 6th Congressional District, Ranking Member of @EnergyCommerce.",24375,"https://pbs.twimg.com/profile_images/1096470387041419264/0vCNMXci_normal.png",2837,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:34.635Z","{""url"":""https://twitter.com/31801993/status/1853842628451672504""}","{""url"":""https://x.com/FrankPallone"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853832842393817359","RepBurgessOwens","Rep. Burgess Owens","Americans are NOT better off than they were 4 years ago.","2024-11-05T16:12:46.000Z",,"https://x.com/RepBurgessOwens/status/1853832842393817359","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,24,5,76,2861,,,35973,"Proudly serving Utah's 4th Congressional District. Member of @EdWorkforceCmte & @TransportGOP.",3166,"https://pbs.twimg.com/profile_images/1364252715006779392/1g-dP8G9_normal.jpg",280,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:35.380Z","{""url"":""https://twitter.com/1344481217685692416/status/1853832842393817359""}","{""url"":""https://x.com/RepBurgessOwens"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853829628336680961","RepJohnRose","Congressman John Rose","Tennesseans, today is Election Day! + +Find your polling location here:","2024-11-05T16:00:00.000Z","[""https://pbs.twimg.com/media/GbogOB1WQAE-zQ8.jpg""]","https://x.com/RepJohnRose/status/1853829628336680961","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,0,6,322,"http://govotetn.gov/",,20661,"U.S. Representative serving Tennessee’s Sixth Congressional District. Proud husband to Chelsea and father to Guy and Sam. @HouseAgGOP and @FinancialCmte Member",2516,"https://pbs.twimg.com/profile_images/1703773173395673088/vOoF6YKk_normal.jpg",431,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:35.861Z","{""url"":""https://twitter.com/1081312310059253763/status/1853829628336680961""}","{""url"":""https://x.com/RepJohnRose"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853821785512239195","RepMarkPocan","Rep. Mark Pocan","Please be sure to vote today!","2024-11-05T15:28:50.000Z",,"https://x.com/RepMarkPocan/status/1853821785512239195","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,13,6,50,1963,,,114256,"Honored to serve the people of Wisconsin's 2nd District. @EqualityCaucus Chair🏳️‍🌈 @Labor_Caucus Co-Chair✊ @AppropsDems Member He/Him/His",13886,"https://pbs.twimg.com/profile_images/1771212845117521922/7Mq0exWk_normal.jpg",6048,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853821732181757952/pu/vid/avc1/540x960/E3skasxQYtKXxapM.mp4?tag=12"",""duration"":12133}]","2024-11-06T04:17:37.006Z","{""url"":""https://twitter.com/1206227149/status/1853821785512239195""}","{""url"":""https://x.com/repmarkpocan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853844151571206183","RepBurgessOwens","Rep. Burgess Owens","It’s Election Day. Alongside @SpeakerJohnson, we’ve ensured this year’s Election Observer Program is the most robust in its history. Thank you to the Election Observers for your important work to increase Americans’ confidence in our elections.","2024-11-05T16:57:43.000Z",,"https://x.com/RepBurgessOwens/status/1853844151571206183","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1075205691621720064"",""profile_name"":""Bryan Steil"",""url"":""https://x.com/RepBryanSteil"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""827279765287559171"",""profile_name"":""Speaker Mike Johnson"",""url"":""https://x.com/SpeakerJohnson"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4,0,,,,35973,"Proudly serving Utah's 4th Congressional District. Member of @EdWorkforceCmte & @TransportGOP.",3166,"https://pbs.twimg.com/profile_images/1364252715006779392/1g-dP8G9_normal.jpg",280,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:37.198Z","{""url"":""https://twitter.com/1344481217685692416/status/1853844151571206183""}","{""url"":""https://x.com/RepBurgessOwens"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853842497270673553","RepBurgessOwens","Rep. Burgess Owens","Under Trump, Iran was broke, we had peace in the Middle East, China was on the back foot, and Russia didn't even think about invading Ukraine. + +Biden-Harris weakness invited two wars and global instability. + +Time to regain PEACE through STRENGTH.","2024-11-05T16:51:08.000Z",,"https://x.com/RepBurgessOwens/status/1853842497270673553","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,6,29,791,,,35973,"Proudly serving Utah's 4th Congressional District. Member of @EdWorkforceCmte & @TransportGOP.",3166,"https://pbs.twimg.com/profile_images/1364252715006779392/1g-dP8G9_normal.jpg",280,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:37.270Z","{""url"":""https://twitter.com/1344481217685692416/status/1853842497270673553""}","{""url"":""https://x.com/RepBurgessOwens"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853862867621052620","RepBurgessOwens","Rep. Burgess Owens","Biden & Harris have infused DEI into every executive department and every federal program. + +The ""equity"" bureaucracy is strangling American innovation.","2024-11-05T18:12:05.000Z",,"https://x.com/RepBurgessOwens/status/1853862867621052620","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,3,30,1027,,,35974,"Proudly serving Utah's 4th Congressional District. Member of @EdWorkforceCmte & @TransportGOP.",3166,"https://pbs.twimg.com/profile_images/1364252715006779392/1g-dP8G9_normal.jpg",280,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:37.906Z","{""url"":""https://twitter.com/1344481217685692416/status/1853862867621052620""}","{""url"":""https://x.com/RepBurgessOwens"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853874930489688350","repdinatitus","Dina Titus","I applaud @SecBlinken and @sarasminkara for hosting a forum to discuss how we can better support the international disability community in our foreign policy. We cannot leave behind the 1.3B people with disabilities in our efforts to create a better world.","2024-11-05T19:00:01.000Z",,"https://x.com/repdinatitus/status/1853874930489688350","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1350150750966603777"",""profile_name"":""Secretary Antony Blinken"",""url"":""https://x.com/SecBlinken"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1040686841521950720"",""profile_name"":""Sara Minkara"",""url"":""https://x.com/sarasminkara"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,1,6,351,"https://www.state.gov/secretary-antony-j-blinken-disability-rights-as-foreign-policy/",,49647,"Congresswoman proudly representing the First District of Nevada in the U.S. House of Representatives.",19428,"https://pbs.twimg.com/profile_images/669584452322877442/z7pOtlJI_normal.jpg",2009,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1851515901209694208/jD1a9hjo?format=jpg&name=orig""]",,"2024-11-06T04:17:38.866Z","{""url"":""https://twitter.com/122174004/status/1853874930489688350""}","{""url"":""https://x.com/repdinatitus"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853880533639716935","RepRichardNeal","Rep. Richard Neal","Yesterday, I joined Mayor Sarno to announce Springfield’s Veteran of the Year and the Veterans Day Parade Marshal. + +On the eve of the election, it was a privilege to honor two individuals who committed their lives to protecting our freedoms - including the right to vote.","2024-11-05T19:22:17.000Z","[""https://pbs.twimg.com/media/GbpORHlXcAEL6pW.jpg"",""https://pbs.twimg.com/media/GbpORHmWYAAqyoj.jpg""]","https://x.com/RepRichardNeal/status/1853880533639716935","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,7,671,,,41504,"Serving the 1st District of Massachusetts in the US House of Representatives, with 83 cities & towns in western & central MA. Ranking Member of @WaysMeansCmte.",4528,"https://pbs.twimg.com/profile_images/2245213250/TP_normal.jpg",104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:40.696Z","{""url"":""https://twitter.com/442824717/status/1853880533639716935""}","{""url"":""https://x.com/RepRichardNeal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853612056030728424","RepSteel","Rep. Michelle Steel","🇺🇸 #FromTheHill I sat down with Congresswoman @RepSteel to talk about her inspiring family story and how her mother’s journey inspired her to jump into politics and stand up for small businesses. + +Don’t miss this powerful conversation! 🙌🏻","2024-11-05T01:35:27.000Z",,"https://x.com/RepSteel/status/1853612056030728424","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""164778672"",""profile_name"":""Pachi Valencia"",""url"":""https://x.com/pachivalencia"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null},{""profile_id"":""1343740146630451200"",""profile_name"":""Rep. Michelle Steel"",""url"":""https://x.com/RepSteel"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,11,0,,,"[""FromTheHill""]",26100,"Korean-American wife, mother & tax fighter serving #CA45 in Congress. @WaysandMeansGOP, @committeeonccp, @EdWorkforceCmte. Living the American dream. 🇺🇸",3315,"https://pbs.twimg.com/profile_images/1654209250464260098/7WJvY4mk_normal.jpg",331,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:41.406Z","{""url"":""https://twitter.com/1343740146630451200/status/1853612056030728424""}","{""url"":""https://x.com/RepSteel"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853825134324334865","RepBurgessOwens","Rep. Burgess Owens","The future of our nation depends on every American patriot making it out to vote today. + +Find your local polling station. Bring your friends, your family, your neighbors with you, and let’s start Making America Great Again!","2024-11-05T15:42:09.000Z",,"https://x.com/RepBurgessOwens/status/1853825134324334865","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,3,19,647,"https://vote.gov/",,35973,"Proudly serving Utah's 4th Congressional District. Member of @EdWorkforceCmte & @TransportGOP.",3166,"https://pbs.twimg.com/profile_images/1364252715006779392/1g-dP8G9_normal.jpg",280,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853880997483286528/2V456nuW?format=jpg&name=orig""]",,"2024-11-06T04:17:43.214Z","{""url"":""https://twitter.com/1344481217685692416/status/1853825134324334865""}","{""url"":""https://x.com/RepBurgessOwens"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853838697336127595","RepBurgessOwens","Rep. Burgess Owens","Joe Biden & Kamala Harris opened our borders to ruthless gangs like MS-13 and Tren de Aragua. + +Just last week, two more Americans were murdered by an illegal migrant who never should have been in this country. + +We need border security NOW.","2024-11-05T16:36:02.000Z",,"https://x.com/RepBurgessOwens/status/1853838697336127595","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,10,26,979,"https://www.foxnews.com/us/ms-13-gang-member-arrested-charged-murdering-happy-couple-police",,35973,"Proudly serving Utah's 4th Congressional District. Member of @EdWorkforceCmte & @TransportGOP.",3166,"https://pbs.twimg.com/profile_images/1364252715006779392/1g-dP8G9_normal.jpg",280,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853620977927901185/fX-a-1zm?format=jpg&name=orig""]",,"2024-11-06T04:17:43.562Z","{""url"":""https://twitter.com/1344481217685692416/status/1853838697336127595""}","{""url"":""https://x.com/RepBurgessOwens"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853827865957327181","RepRichardNeal","Rep. Richard Neal","If you have not yet returned your mail/absentee ballot, be sure that you return it or have it postmarked today! Don’t miss the opportunity to have your vote counted. ✉️📫","2024-11-05T15:53:00.000Z",,"https://x.com/RepRichardNeal/status/1853827865957327181","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,4,7,566,,,41503,"Serving the 1st District of Massachusetts in the US House of Representatives, with 83 cities & towns in western & central MA. Ranking Member of @WaysMeansCmte.",4528,"https://pbs.twimg.com/profile_images/2245213250/TP_normal.jpg",104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:45.969Z","{""url"":""https://twitter.com/442824717/status/1853827865957327181""}","{""url"":""https://x.com/RepRichardNeal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853793388715258086","RepRichardNeal","Rep. Richard Neal","In America, we are privileged to have the awesome responsibility of participating in a democratic process to shape the future of our country. Today, Election Day, gives you the most powerful tool to make your voice heard: your vote. Get out and vote, Massachusetts!","2024-11-05T13:36:00.000Z",,"https://x.com/RepRichardNeal/status/1853793388715258086","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,6,26,1909,,,41504,"Serving the 1st District of Massachusetts in the US House of Representatives, with 83 cities & towns in western & central MA. Ranking Member of @WaysMeansCmte.",4528,"https://pbs.twimg.com/profile_images/2245213250/TP_normal.jpg",104,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:45.912Z","{""url"":""https://twitter.com/442824717/status/1853793388715258086""}","{""url"":""https://x.com/RepRichardNeal"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853753617947251119","RepMcClellan","Congresswoman Jennifer McClellan","Happy Election Day! Polls are open. Your vote is crucial in shaping our democracy. To find your polling place and ensure your voice is heard, visit","2024-11-05T10:57:58.000Z",,"https://x.com/RepMcClellan/status/1853753617947251119","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,4,213,"http://elections.virginia.gov/",,6225,"Proud Mom, Democrat, and First Black Congresswoman from Virginia. +Representing VA-04 in the U.S. House of Representatives.",2411,"https://pbs.twimg.com/profile_images/1633610772411555841/O2F4ImwI_normal.jpg",627,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:46.167Z","{""url"":""https://twitter.com/1633610542584659970/status/1853753617947251119""}","{""url"":""https://x.com/RepMcClellan"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853856224095465694","RepBonamici","Suzanne Bonamici","It's Election Day! Voting in Oregon feels so ✨GOOD✨ I'm turning in my ballot. + +✅ Mail it. Your ballot needs to be postmarked TODAY. Take it to a USPS office. +✅ Use an official drop site. Ballots MUST be received by 8pm!","2024-11-05T17:45:41.000Z",,"https://x.com/RepBonamici/status/1853856224095465694","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""61887216"",""profile_name"":""OR Secretary of State's office"",""url"":""https://x.com/OregonSOS"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,18,0,,,,37783,"Representing Oregon's 1st District. Working to strengthen #PublicEducation, support #WorkingFamilies, & #ActOnClimate. Proud mom of two grown kids. She/her.",14726,"https://pbs.twimg.com/profile_images/1227347272075272193/GH2CwHqF_normal.jpg",1314,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:47.429Z","{""url"":""https://twitter.com/558769636/status/1853856224095465694""}","{""url"":""https://x.com/RepBonamici"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853836366381224199","RepSteel","Rep. Michelle Steel","Under the Biden-Harris administration, excess spending has devastated the budgets of California families. Two-thirds of Americans reported living paycheck-to-paycheck. + +Californians need affordable gas, groceries, and essentials. We need common sense not more government tax and spending.","2024-11-05T16:26:47.000Z",,"https://x.com/RepSteel/status/1853836366381224199","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,29,9,53,1461,,,26100,"Korean-American wife, mother & tax fighter serving #CA45 in Congress. @WaysandMeansGOP, @committeeonccp, @EdWorkforceCmte. Living the American dream. 🇺🇸",3315,"https://pbs.twimg.com/profile_images/1654209250464260098/7WJvY4mk_normal.jpg",331,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:47.476Z","{""url"":""https://twitter.com/1343740146630451200/status/1853836366381224199""}","{""url"":""https://x.com/RepSteel"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853883137807278563","RepTedLieu","Rep. Ted Lieu","Every eligible voter has the right to cast their ballot. Every voter +has the right to a secret ballot. Check out the Voter Bill of Rights","2024-11-05T19:32:38.000Z",,"https://x.com/RepTedLieu/status/1853883137807278563","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""24424732"",""profile_name"":""California Secretary of State"",""url"":""https://x.com/CASOSVote"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,11,0,,,,178193,"Official Twitter account for the Office of Rep @TedLieu, serving #CA36 in the U.S. House of Representatives. Vice Chair of @HouseDemocrats.",10545,"https://pbs.twimg.com/profile_images/1634332968100478979/yvRqAjVn_normal.jpg",5599,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:47.508Z","{""url"":""https://twitter.com/3044993235/status/1853883137807278563""}","{""url"":""https://x.com/RepTedLieu"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853833565588603078","RepSusieLee","Congresswoman Susie Lee","Happy Election Day! + +Polls are open until 7pm. + +And if you are in line when the polls close, stay in line and you’ll still be able to vote!","2024-11-05T16:15:39.000Z",,"https://x.com/RepSusieLee/status/1853833565588603078","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,2,13,677,,,36486,"Proudly serving the folks in Nevada's 3rd District. Bipartisan Leader. Education Advocate. Mom to two great kids.",8303,"https://pbs.twimg.com/profile_images/1545063161031806977/tbl3bkn8_normal.jpg",3190,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:47.689Z","{""url"":""https://twitter.com/1079061579973439488/status/1853833565588603078""}","{""url"":""https://x.com/RepSusieLee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853624456746254643","RepSteel","Rep. Michelle Steel","Assisting CA-45 with federal casework is a key part of my job as your representative. + +This week, I had the chance to hear from Josie from Cerritos after my office helped her receive her federal tax return. + +If you need help regarding a federal agency, visit https://t.co/B5PZC3OUf8 and my office might be able to assist.","2024-11-05T02:24:43.000Z","[""https://pbs.twimg.com/media/Gbllno-WsAAn1uo.jpg""]","https://x.com/RepSteel/status/1853624456746254643","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,21,2,25,846,,,26100,"Korean-American wife, mother & tax fighter serving #CA45 in Congress. @WaysandMeansGOP, @committeeonccp, @EdWorkforceCmte. Living the American dream. 🇺🇸",3315,"https://pbs.twimg.com/profile_images/1654209250464260098/7WJvY4mk_normal.jpg",331,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:49.384Z","{""url"":""https://twitter.com/1343740146630451200/status/1853624456746254643""}","{""url"":""https://x.com/RepSteel"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853937529449267406","RepGwenMoore","Rep. Gwen Moore","Wisconsin! Polls are open until 8PM. + +You can register to vote at your polling place. You need a PHOTO ID and PROOF OF RESIDENCE. + +If you are in line by 8PM, you can vote. + +Everyone get out, get in line, and stay there until you have cast your ballot!","2024-11-05T23:08:46.000Z",,"https://x.com/RepGwenMoore/status/1853937529449267406","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""22669526"",""profile_name"":""Rep. Gwen Moore"",""url"":""https://x.com/RepGwenMoore"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,57,0,,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:51.383Z","{""url"":""https://twitter.com/22669526/status/1853937529449267406""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853870991258100036","SenJohnBarrasso","Sen. John Barrasso","Everything has gotten worse under Joe Biden and Kamala Harris. + +The border. +Inflation. +Crime. +National security. +Weaponization of government. +Gas prices. +The price of groceries.","2024-11-05T18:44:22.000Z",,"https://x.com/SenJohnBarrasso/status/1853870991258100036","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1074480192"",""profile_name"":""Senator Ted Cruz"",""url"":""https://x.com/SenTedCruz"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,743,0,,,,162885,"U.S. Senator for the great state of Wyoming, @SenateGOP Chairman, and Ranking Member of @EnergyGOP. https://t.co/bMw3qwlxRu",8519,"https://pbs.twimg.com/profile_images/1143907394/twitter_profile_pic_normal.JPG",550,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:52.159Z","{""url"":""https://twitter.com/202206694/status/1853870991258100036""}","{""url"":""https://x.com/SenJohnBarrasso"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853970657660350771","RepGwenMoore","Rep. Gwen Moore","Wisconsin!! The polls are open for another 40 minutes. Get in line! You can vote if you are in line by 8!","2024-11-06T01:20:24.000Z",,"https://x.com/RepGwenMoore/status/1853970657660350771","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,28,64,3147,"https://myvote.wi.gov/en-us/",,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:52.676Z","{""url"":""https://twitter.com/22669526/status/1853970657660350771""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853891047321121068","RepGwenMoore","Rep. Gwen Moore","REMINDER: Polls in Wisconsin close at 8 p.m. central time. + +You just need to be in line by 8 p.m. in order to vote. #ElectionDay","2024-11-05T20:04:03.000Z",,"https://x.com/RepGwenMoore/status/1853891047321121068","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""705469983296507905"",""profile_name"":""Wisconsin Elections"",""url"":""https://x.com/WI_Elections"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,27,0,,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:52.820Z","{""url"":""https://twitter.com/22669526/status/1853891047321121068""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853832144436474035","RepKayGranger","Rep. Kay Granger","Get out and vote today if you haven’t already!","2024-11-05T16:10:00.000Z","[""https://pbs.twimg.com/media/GbAajBhW0AAmKWA.jpg""]","https://x.com/RepKayGranger/status/1853832144436474035","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,4,291,,,30064,"Representing the 12th District of Texas. #TX12 +Chair Emeritus @HouseAppropsGOP",4555,"https://pbs.twimg.com/profile_images/3640863486/2b8a9b3a4c70a9e4012fde172bc2ee42_normal.jpeg",1258,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:56.457Z","{""url"":""https://twitter.com/161743731/status/1853832144436474035""}","{""url"":""https://x.com/RepKayGranger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853924761090547724","RepGwenMoore","Rep. Gwen Moore","Folks, if you’re in line to vote, stay in line! Even after the polls close.","2024-11-05T22:18:01.000Z",,"https://x.com/RepGwenMoore/status/1853924761090547724","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1206227149"",""profile_name"":""Rep. Mark Pocan"",""url"":""https://x.com/RepMarkPocan"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,23,0,,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:59.877Z","{""url"":""https://twitter.com/22669526/status/1853924761090547724""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853769782694117441","RepJeffries","Hakeem Jeffries","Everything we care about is on the line. + +VOTE.","2024-11-05T12:02:12.000Z",,"https://x.com/RepJeffries/status/1853769782694117441","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3694,6278,37581,742421,,,1037301,"Brooklyn Congressman. Leader @HouseDemocrats. Work hard. Stay focused. Deliver results #ForThePeople.",5890,"https://pbs.twimg.com/profile_images/843897836383158274/hmHktXQP_normal.jpg",1091,false,190,128,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:17:59.990Z","{""url"":""https://twitter.com/467823431/status/1853769782694117441""}","{""url"":""https://x.com/RepJeffries"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853911497573081094","RepGwenMoore","Rep. Gwen Moore","Wisconsin! Polls are open until 8PM. + +You can register to vote at your polling place. You need a PHOTO ID and PROOF OF RESIDENCE. + +If you are in line by 8PM, you can vote. + +Everyone get out, get in line, and stay there until you have cast your ballot!","2024-11-05T21:25:19.000Z",,"https://x.com/RepGwenMoore/status/1853911497573081094","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,57,78,4012,"https://myvote.wi.gov/en-us/Find-My-Polling-Place",,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:07.220Z","{""url"":""https://twitter.com/22669526/status/1853911497573081094""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853880746391245133","RepGwenMoore","Rep. Gwen Moore","Donald Trump has no interest in uniting America. He openly praises Hitler. He refers to Americans as vermin. He calls political opponents 'the enemy from within.' He expects unyielding loyalty & will try to punish Americans he disagrees with. He is not the leader America needs.","2024-11-05T19:23:08.000Z",,"https://x.com/RepGwenMoore/status/1853880746391245133","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,13,27,963,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853880663792861184/pu/vid/avc1/1280x720/huB3aGRP0o2bShE8.mp4?tag=12"",""duration"":75196}]","2024-11-06T04:18:08.300Z","{""url"":""https://twitter.com/22669526/status/1853880746391245133""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853829876144390554","RepGwenMoore","Rep. Gwen Moore","If Donald Trump gets his way and dismantles the ACA, it’s not just numbers—it’s real people who would lose coverage. Preexisting conditions don’t discriminate, and neither should our health care system.","2024-11-05T16:00:59.000Z","[""https://pbs.twimg.com/media/Gbogap-XwAAWjTW.jpg""]","https://x.com/RepGwenMoore/status/1853829876144390554","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,7,13,714,,,45896,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:09.968Z","{""url"":""https://twitter.com/22669526/status/1853829876144390554""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853811442455130528","RepGwenMoore","Rep. Gwen Moore","Donald Trump is promising to install extremists at every level of government, including in our public health agencies. + +Americans want doctors and experts in charge, not fringe science-deniers.","2024-11-05T14:47:44.000Z",,"https://x.com/RepGwenMoore/status/1853811442455130528","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,45,115,6261,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/ext_tw_video/1853811134379241504/pu/vid/avc1/1280x720/KYnVmjYQ_99PO4fZ.mp4?tag=12"",""duration"":66289}]","2024-11-06T04:18:10.999Z","{""url"":""https://twitter.com/22669526/status/1853811442455130528""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853843720371876182","RepGwenMoore","Rep. Gwen Moore","🚨Via @NYT: U.S. Farmers Brace for New Trump Trade Wars Amid Tariff Threats + +""To farmers in rural America, the blanket import duties that Mr. Trump wants to enact if elected are a nightmare that they would rather not live through again.""","2024-11-05T16:56:00.000Z",,"https://x.com/RepGwenMoore/status/1853843720371876182","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""1255671"",""profile_name"":""NYT"",""url"":""https://x.com/NYT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,4,5,403,"https://www.nytimes.com/2024/11/04/us/politics/farmers-trump-china-tariffs.html",,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1853452972488859650/n5Y6pCfV?format=jpg&name=orig""]",,"2024-11-06T04:18:11.489Z","{""url"":""https://twitter.com/22669526/status/1853843720371876182""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853600061856342246","RepGwenMoore","Rep. Gwen Moore","My statement on the passing of Milwaukee Alderman Jonathan Brostoff. A friend and fierce champion for his constituents, he will be dearly missed.","2024-11-05T00:47:47.000Z","[""https://pbs.twimg.com/media/GblPUkJXQAAxLVe.jpg""]","https://x.com/RepGwenMoore/status/1853600061856342246","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,2,27,1149,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:12.164Z","{""url"":""https://twitter.com/22669526/status/1853600061856342246""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853897929943068994","RepJohnRose","Congressman John Rose","The Election Observer Program is the most robust election integrity effort in the history of the House of Representatives. + +I'm proud to have multiple members of my team participating. + +Americans' right to vote is sacred and must be safe and secure.","2024-11-05T20:31:24.000Z",,"https://x.com/RepJohnRose/status/1853897929943068994","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,3,2,11,580,"https://www.foxnews.com/politics/house-launches-poll-watcher-program-amid-gop-wide-push-election-security",,20661,"U.S. Representative serving Tennessee’s Sixth Congressional District. Proud husband to Chelsea and father to Guy and Sam. @HouseAgGOP and @FinancialCmte Member",2516,"https://pbs.twimg.com/profile_images/1703773173395673088/vOoF6YKk_normal.jpg",431,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}","[""https://pbs.twimg.com/card_img/1852920742700019712/sC7CF_mf?format=jpg&name=orig""]",,"2024-11-06T04:18:12.558Z","{""url"":""https://twitter.com/1081312310059253763/status/1853897929943068994""}","{""url"":""https://x.com/RepJohnRose"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853797948158554193","RepGwenMoore","Rep. Gwen Moore","Good morning friends of Wisconsin voting! Polls open at 7 am CDT. There are 1.6M absentee ballots that need to be opened and processed today so it will be a late night for results, likely 2-3am. In 2020 total votes were 3.3M so watch turnout today!","2024-11-05T13:54:07.000Z",,"https://x.com/RepGwenMoore/status/1853797948158554193","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""252375339"",""profile_name"":""Ann Jacobs"",""url"":""https://x.com/AnnJacobsMKE"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,144,0,,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:14.088Z","{""url"":""https://twitter.com/22669526/status/1853797948158554193""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853856402571198660","RepRussellFry","Congressman Russell Fry","Thank you to @SCFarmBureau for recognizing me as a Friend of the Farmers! + +I will always fight for locally-owned farms like Darlington's Woodard Farms. The men and women in America’s agriculture industry work tirelessly to feed and fuel our country, and deserve to be supported.","2024-11-05T17:46:24.000Z","[""https://pbs.twimg.com/media/Gbo4Za5XEAACY3Z.jpg"",""https://pbs.twimg.com/media/Gbo4Za0W0AAXFt7.jpg""]","https://x.com/RepRussellFry/status/1853856402571198660","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""201819791"",""profile_name"":""SC Farm Bureau"",""url"":""https://x.com/SCFarmBureau"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",3,6,33,1035,,,10481,"Proudly representing the Grand Strand and Pee Dee. #SC07 | 118th GOP Freshman Class President | Member of @HouseGOP @JudiciaryGOP and @GOPoversight 🇺🇸 🌙 🌴",1308,"https://pbs.twimg.com/profile_images/1611601899521773569/KS5dhv-P_normal.jpg",740,false,2,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:14.864Z","{""url"":""https://twitter.com/1603514304354983941/status/1853856402571198660""}","{""url"":""https://x.com/RepRussellFry"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853799442392011154","RepGwenMoore","Rep. Gwen Moore","Wisconsin! You CAN register to vote at your polling location. You need 1) a photo ID and 2) proof of residency. + +Make a plan, grab a friend, and get out and VOTE!","2024-11-05T14:00:03.000Z",,"https://x.com/RepGwenMoore/status/1853799442392011154","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,9,21,952,"https://myvote.wi.gov/en-us/",,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:15.303Z","{""url"":""https://twitter.com/22669526/status/1853799442392011154""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853937660663853395","RepGwenMoore","Rep. Gwen Moore","Wisconsin! You CAN register to vote at your polling location. You need 1) a photo ID and 2) proof of residency. + +Make a plan, grab a friend, and get out and VOTE!","2024-11-05T23:09:17.000Z",,"https://x.com/RepGwenMoore/status/1853937660663853395","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""22669526"",""profile_name"":""Rep. Gwen Moore"",""url"":""https://x.com/RepGwenMoore"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,9,0,,,,45896,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:16.125Z","{""url"":""https://twitter.com/22669526/status/1853937660663853395""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853827976074334378","RepGwenMoore","Rep. Gwen Moore","Donald Trump's planned tariffs would be terrible for America's farmers. + +Let’s stand by those who feed America.","2024-11-05T15:53:26.000Z",,"https://x.com/RepGwenMoore/status/1853827976074334378","{""post_id"":""1847309926437146672"",""profile_id"":""RepGwenMoore"",""profile_name"":""Rep. Gwen Moore"",""data_posted"":""2009-03-03T20:02:57.000Z"",""url"":""https://x.com/RepGwenMoore/status/1847309926437146672"",""description"":""Trump’s tariffs were a disaster for American farmers the first time around -- shrinking markets, lost profits, and disrupted supply chains.\n\nAmerica's farmers shouldn't have to pay the price for Donald Trump's reckless trade wars. https://t.co/PGVwOTNIhJ"",""photos"":[""https://pbs.twimg.com/media/GaL2gC8W0AIYcFp.jpg""],""videos"":null}",,4,5,13,1159,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:18.613Z","{""url"":""https://twitter.com/22669526/status/1853827976074334378""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853839277140168989","RepRaskin","Rep. Jamie Raskin","This fictional ""quote"" is 100% fabricated. + +It's one more lie in the stream of right-wing lies designed to undermine our election. Despite this actionable libel and all the disinformation, America is having a free and fair election and Congress will certify the winner.","2024-11-05T16:38:20.000Z",,"https://x.com/RepRaskin/status/1853839277140168989","{""post_id"":""1853609325761273976"",""profile_id"":""LarryDJonesJr"",""profile_name"":""🇺🇸 Larry 🇺🇸"",""data_posted"":""2022-02-06T23:25:18.000Z"",""url"":""https://x.com/LarryDJonesJr/status/1853609325761273976"",""description"":""🚨BREAKING: Jamie Raskin said, “Let folks cast their votes for Trump if that’s their choice. But mark my words, we won’t be certifying the election. He might win, but we’ll ensure he doesn’t step foot in the Oval Office.” https://t.co/oOFsDMDTZS"",""photos"":[""https://pbs.twimg.com/media/GblX28GXoAACSpZ.jpg""],""videos"":null}",,5294,9541,47101,3636327,,,958513,"Proudly serving Maryland's beautiful Eighth Congressional District and leading @OversightDems in Congress.",12719,"https://pbs.twimg.com/profile_images/1421240778433699845/8-1oWnGh_normal.jpg",5928,false,731,1047,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:18.880Z","{""url"":""https://twitter.com/806906355214852096/status/1853839277140168989""}","{""url"":""https://x.com/RepRaskin"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853868654334488839","RepSpanberger","Rep. Abigail Spanberger","VIRGINIA: Polls are open across Virginia until 7:00pm today. + +Your voice has the power to shape the future of our communities, our Commonwealth, and our country — and I hope you'll make it heard! + +Check out @vaELECT's Voter Pocket Guide for answers to frequently asked questions.","2024-11-05T18:35:05.000Z","[""https://pbs.twimg.com/media/GbpDsMvXEAAyESq.jpg""]","https://x.com/RepSpanberger/status/1853868654334488839","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""54982829"",""profile_name"":""VA Dept of Elections"",""url"":""https://x.com/vaELECT"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",2,7,17,1659,,,85409,"Proudly serving Virginia’s 7th District in the U.S. House of Representatives. Former CIA officer. Former federal law enforcement officer. Mom of 3.",9355,"https://pbs.twimg.com/profile_images/1610374849205075969/fxn8bTD__normal.jpg",1302,false,0,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:19.641Z","{""url"":""https://twitter.com/1078771401497161728/status/1853868654334488839""}","{""url"":""https://x.com/RepSpanberger"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853808590596809098","RepRaskin","Rep. Jamie Raskin","🚨 It's Tuesday, November 5. Today is Election Day! + +Exercise your right to vote and make your voice heard. Find where to vote near you:","2024-11-05T14:36:24.000Z",,"https://x.com/RepRaskin/status/1853808590596809098","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,198,171,995,31689,"https://www.usa.gov/find-polling-place",,958513,"Proudly serving Maryland's beautiful Eighth Congressional District and leading @OversightDems in Congress.",12719,"https://pbs.twimg.com/profile_images/1421240778433699845/8-1oWnGh_normal.jpg",5928,false,5,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:20.046Z","{""url"":""https://twitter.com/806906355214852096/status/1853808590596809098""}","{""url"":""https://x.com/RepRaskin"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853811731337769011","RepGwenMoore","Rep. Gwen Moore","Kathy and I got out to vote this morning because we want to leave our kids and grandkids with more freedoms, a better world, and a brighter future. + +Polls are open until 8 p.m.—grab your photo ID and get out and vote! 🗳️ + +(and bring your best friend like I did)","2024-11-05T14:48:53.000Z",,"https://x.com/RepGwenMoore/status/1853811731337769011","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""234896532"",""profile_name"":""Governor Tony Evers"",""url"":""https://x.com/GovEvers"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,351,0,1,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:21.398Z","{""url"":""https://twitter.com/22669526/status/1853811731337769011""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853784763456221478","RepSpartz","Rep. Victoria Spartz","Watch Rep. Spartz’s interview on ABC News last week discussing that “the only way to have peace is through strength.”","2024-11-05T13:01:43.000Z",,"https://x.com/RepSpartz/status/1853784763456221478","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,20,100,425,7647,,,79142,"Representing Indiana’s 5th Congressional District",1839,"https://pbs.twimg.com/profile_images/1677018173764165636/NNCjcYH8_normal.jpg",429,false,4,11,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,"[{""video_url"":""https://video.twimg.com/amplify_video/1853784300786700288/vid/avc1/1278x720/7XtfmRU3rug1fPeY.mp4?tag=16"",""duration"":320533}]","2024-11-06T04:18:22.064Z","{""url"":""https://twitter.com/1344845201479663621/status/1853784763456221478""}","{""url"":""https://x.com/RepSpartz"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853829639908851888","repdinatitus","Dina Titus","Today is the last chance to make your voice heard in this year’s election. Learn about voting in Clark County:","2024-11-05T16:00:03.000Z","[""https://pbs.twimg.com/media/GboelWYWQAA-t58.jpg""]","https://x.com/repdinatitus/status/1853829639908851888","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,6,0,4,365,"http://clarkcountynv.gov/vote",,49647,"Congresswoman proudly representing the First District of Nevada in the U.S. House of Representatives.",19428,"https://pbs.twimg.com/profile_images/669584452322877442/z7pOtlJI_normal.jpg",2009,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:23.817Z","{""url"":""https://twitter.com/122174004/status/1853829639908851888""}","{""url"":""https://x.com/repdinatitus"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853816044386680943","RepRaskin","Rep. Jamie Raskin","Where is my polling place?? + +Click here to find out:","2024-11-05T15:06:01.000Z",,"https://x.com/RepRaskin/status/1853816044386680943","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""712872716"",""profile_name"":""Maryland Elections"",""url"":""https://x.com/md_sbe"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,82,0,,"https://elections.maryland.gov/voting/where.html",,958513,"Proudly serving Maryland's beautiful Eighth Congressional District and leading @OversightDems in Congress.",12719,"https://pbs.twimg.com/profile_images/1421240778433699845/8-1oWnGh_normal.jpg",5928,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:27.457Z","{""url"":""https://twitter.com/806906355214852096/status/1853816044386680943""}","{""url"":""https://x.com/RepRaskin"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853857463067426937","rep_stevewomack","Rep. Steve Womack","Voting is a foundational privilege of being an American. + +Be sure to exercise this right and make your voice heard today. 🇺🇸 + +Polls are open until 7:30 PM. Find your polling location here:","2024-11-05T17:50:36.000Z",,"https://x.com/rep_stevewomack/status/1853857463067426937","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,5,3,16,963,"https://www.voterview.ar-nova.org/voterview",,31198,"Proud to serve the folks of Arkansas's 3rd District. Member of @HouseAppropsGOP.",12338,"https://pbs.twimg.com/profile_images/1656737729021870105/Qm4qI5SN_normal.jpg",1971,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:29.526Z","{""url"":""https://twitter.com/234469322/status/1853857463067426937""}","{""url"":""https://x.com/rep_stevewomack"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853833667988050364","RepGwenMoore","Rep. Gwen Moore","It’s Election Day! All polling places in Wisconsin will be open from 7 a.m. until 8 p.m. Find your polling place at","2024-11-05T16:16:03.000Z",,"https://x.com/RepGwenMoore/status/1853833667988050364","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}","[{""profile_id"":""705469983296507905"",""profile_name"":""Wisconsin Elections"",""url"":""https://x.com/WI_Elections"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,26,0,,,,45892,"Honored to represent Wisconsin’s 4th Congressional District. Proud mother, grandmother & great-grandmother. Loves poetry reading, knitting & crocheting.",12896,"https://pbs.twimg.com/profile_images/1187465913513078784/J0m17IHd_normal.jpg",3104,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:30.224Z","{""url"":""https://twitter.com/22669526/status/1853833667988050364""}","{""url"":""https://x.com/RepGwenMoore"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853977135049740747","RepAuchincloss","Rep. Jake Auchincloss 🟧","Thank you to election workers everywhere. Our democracy relies upon their patriotism & professionalism.","2024-11-06T01:46:08.000Z",,"https://x.com/RepAuchincloss/status/1853977135049740747","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,17,123,4793,,,25676,"Dad. Marine. Massachusetts Congressman. Ban co-pays for Rx drugs. Build more housing, not more parking.",1938,"https://pbs.twimg.com/profile_images/1818404746270507008/j-quMnq8_normal.jpg",237,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:33.364Z","{""url"":""https://twitter.com/1330278736554582016/status/1853977135049740747""}","{""url"":""https://x.com/RepAuchincloss"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853999005866291535","virginiafoxx","Virginia Foxx","😏🐘🇺🇸","2024-11-06T03:13:03.000Z",,"https://x.com/virginiafoxx/status/1853999005866291535","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,12,11,170,5828,,,40451,"Congresswoman Virginia Foxx. Conservative representing North Carolina's Fifth District. Chairwoman of the @edworkforcecmte.",7081,"https://pbs.twimg.com/profile_images/826530077798187010/ol7ZEx04_normal.jpg",764,false,1,1,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:33.554Z","{""url"":""https://twitter.com/16256269/status/1853999005866291535""}","{""url"":""https://x.com/virginiafoxx"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853635390076301788","RepSusieLee","Congresswoman Susie Lee","Horrifying.","2024-11-05T03:08:10.000Z",,"https://x.com/RepSusieLee/status/1853635390076301788","{""post_id"":""1852356737824608464"",""profile_id"":""Ksurana6"",""profile_name"":""Kavitha Surana"",""data_posted"":""2011-04-30T20:22:31.000Z"",""url"":""https://x.com/Ksurana6/status/1852356737824608464"",""description"":"".@ProPublica's reporting on maternal health under abortion bans continues.\n\nRead this investigation w @lizziepresser on the case of a pregnant teenager who died after she was repeatedly sent home from Texas hospitals while suffering a miscarriage. \n\nhttps://t.co/3vIFTRlFKd"",""photos"":null,""videos"":null}",,14,1,3,1147,,,36487,"Proudly serving the folks in Nevada's 3rd District. Bipartisan Leader. Education Advocate. Mom to two great kids.",8303,"https://pbs.twimg.com/profile_images/1545063161031806977/tbl3bkn8_normal.jpg",3190,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:37.176Z","{""url"":""https://twitter.com/1079061579973439488/status/1853635390076301788""}","{""url"":""https://x.com/RepSusieLee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853913472452501572","RepNikema","Congresswoman Nikema Williams","Quincy Jones was a musical icon who paved the way for countless artists. As an artist, musician, and producer, he worked with legends like Frank Sinatra, Michael Jackson, and Sammy Davis Jr. My prayers go out to his family and loved ones. #RestInPower","2024-11-05T21:33:10.000Z",,"https://x.com/RepNikema/status/1853913472452501572","{""post_id"":""1853452758285738351"",""profile_id"":""Essence"",""profile_name"":""ESSENCE"",""data_posted"":""2009-03-30T16:45:45.000Z"",""url"":""https://x.com/Essence/status/1853452758285738351"",""description"":""Quincy Jones, a towering figure in the music and entertainment industry, passed away peacefully on Sunday at his home in Bel Air, California, surrounded by loved ones. \n\nHe was 91. https://t.co/yFzkCc4MYT"",""photos"":null,""videos"":null}",,0,0,10,688,,"[""RestInPower""]",23213,"Working for the people #OutLoudOnPurpose. Proudly representing #GA05 🍑. Member of @FSCDems. She/Her",5065,"https://pbs.twimg.com/profile_images/1418655414338547719/uPk5QWrn_normal.jpg",946,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:41.970Z","{""url"":""https://twitter.com/1345461797361504259/status/1853913472452501572""}","{""url"":""https://x.com/RepNikema"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853608297921671524","rep_stevewomack","Rep. Steve Womack","I’ve been monitoring the severe storms and flooding across #AR3, including the damage in Little Flock from the tornado. Many in Northwest Arkansas remain without power. Please continue to stay up to date with local officials and stay safe.","2024-11-05T01:20:31.000Z",,"https://x.com/rep_stevewomack/status/1853608297921671524","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,1,10,1460,,"[""AR3""]",31197,"Proud to serve the folks of Arkansas's 3rd District. Member of @HouseAppropsGOP.",12338,"https://pbs.twimg.com/profile_images/1656737729021870105/Qm4qI5SN_normal.jpg",1971,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:43.443Z","{""url"":""https://twitter.com/234469322/status/1853608297921671524""}","{""url"":""https://x.com/rep_stevewomack"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853844779760517327","RepNikema","Congresswoman Nikema Williams","This #NativeAmericanHeritageMonth, I’m proud to honor the rich history and contributions of Native Americans, especially the Muscogee (Creek) people who have long cared for the land of Georgia’s #FightingFifth.","2024-11-05T17:00:12.000Z","[""https://pbs.twimg.com/media/GbouAL2XQAA9exh.jpg""]","https://x.com/RepNikema/status/1853844779760517327","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,2,9,346,,"[""NativeAmericanHeritageMonth"",""FightingFifth""]",23213,"Working for the people #OutLoudOnPurpose. Proudly representing #GA05 🍑. Member of @FSCDems. She/Her",5065,"https://pbs.twimg.com/profile_images/1418655414338547719/uPk5QWrn_normal.jpg",946,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:44.141Z","{""url"":""https://twitter.com/1345461797361504259/status/1853844779760517327""}","{""url"":""https://x.com/RepNikema"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800938655580543","RepLaurelLee","Congresswoman Laurel Lee","Ensure you are up-to-date with voting information, news, and locations by visiting your county’s Supervisor of Elections website. + +Hillsborough County:","2024-11-05T14:06:00.000Z",,"https://x.com/RepLaurelLee/status/1853800938655580543","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,0,5,258,"https://www.votehillsborough.gov/",,8073,"Proudly representing Florida’s 15th District | FL’s 36th Secretary of State | Serving on @JudiciaryGOP @HomelandGOP & @HouseAdmin",1437,"https://pbs.twimg.com/profile_images/1694386432100679681/KLDIGLc9_normal.jpg",351,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:46.617Z","{""url"":""https://twitter.com/1608230657796227072/status/1853800938655580543""}","{""url"":""https://x.com/RepLaurelLee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853816892852474135","RepNikema","Congresswoman Nikema Williams","🚨Today is #ElectionDay! 🚨 + +Get out there and make your voices heard! Polls are open from 7 AM to 7 PM. + +Find your polling location at","2024-11-05T15:09:24.000Z","[""https://pbs.twimg.com/media/GboUo33XQAAVDyT.jpg""]","https://x.com/RepNikema/status/1853816892852474135","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,4,3,9,384,"http://mvp.sos.ga.gov/","[""ElectionDay""]",23213,"Working for the people #OutLoudOnPurpose. Proudly representing #GA05 🍑. Member of @FSCDems. She/Her",5065,"https://pbs.twimg.com/profile_images/1418655414338547719/uPk5QWrn_normal.jpg",946,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:47.872Z","{""url"":""https://twitter.com/1345461797361504259/status/1853816892852474135""}","{""url"":""https://x.com/RepNikema"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1854008744931213778","YenForCongress","Yen Bailey for Congress (FL-2)",,"2024-11-06T03:51:45.000Z","[""https://pbs.twimg.com/media/GbrDAKeWAA4sGQl.png""]","https://x.com/YenForCongress/status/1854008744931213778","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,1,10,261,,,1017,"Democratic Candidate for U.S. House of Representatives in Florida District 2. Mom of 2 beautiful boys, wife, lawyer, and cat lady. I will be your voice.",220,"https://pbs.twimg.com/profile_images/1816889698150707200/_jtFBzai_normal.jpg",242,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:48.870Z","{""url"":""https://twitter.com/1816887770800898049/status/1854008744931213778""}","{""url"":""https://x.com/YenForCongress"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853855876316123562","RepAuchincloss","Rep. Jake Auchincloss 🟧","Reject defeatism now or suffer defeat later. +Ukraine must win & Ukraine can win, if America supports her.","2024-11-05T17:44:18.000Z",,"https://x.com/RepAuchincloss/status/1853855876316123562","{""post_id"":""1853845509703676337"",""profile_id"":""DougKlain"",""profile_name"":""Doug Klain"",""data_posted"":""2014-06-29T20:59:49.000Z"",""url"":""https://x.com/DougKlain/status/1853845509703676337"",""description"":""This is one helluva trial balloon from Richard Haass, urging the U.S. to push Kyiv to negotiate and dial back its war aims. I’m curious what he believes has changed in Moscow’s calculus since his back-channeling with Lavrov last year. https://t.co/B4IhoMt4S6"",""photos"":null,""videos"":null}",,9,23,75,4690,,,25672,"Dad. Marine. Massachusetts Congressman. Ban co-pays for Rx drugs. Build more housing, not more parking.",1938,"https://pbs.twimg.com/profile_images/1818404746270507008/j-quMnq8_normal.jpg",237,false,0,4,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:49.088Z","{""url"":""https://twitter.com/1330278736554582016/status/1853855876316123562""}","{""url"":""https://x.com/RepAuchincloss"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853892740989211109","ValerieFoushee","Congresswoman Valerie Foushee","I am grateful for @CapitolPolice’s vigilance and swift response to this situation. + +Thank you to the brave officers and first responders who continue to work tirelessly to keep the Capitol and its visitors safe.","2024-11-05T20:10:47.000Z",,"https://x.com/ValerieFoushee/status/1853892740989211109","{""post_id"":""1853869248562475086"",""profile_id"":""CapitolPolice"",""profile_name"":""The U.S. Capitol Police"",""data_posted"":""2008-09-28T22:45:09.000Z"",""url"":""https://x.com/CapitolPolice/status/1853869248562475086"",""description"":""Our officers just arrested a man who was stopped during our screening process at the Capitol Visitor Center (CVC). The man smelled like fuel, had a torch & a flare gun. \n\nThe CVC is closed for tours for the day, while we investigate. We will provide more information when we can. https://t.co/J5geNud1h2"",""photos"":[""https://pbs.twimg.com/media/GbpDT2ZWwAE_OH6.jpg""],""videos"":null}","[{""profile_id"":""16503916"",""profile_name"":""The U.S. Capitol Police"",""url"":""https://x.com/CapitolPolice"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,0,3,288,,,2942,"U.S. Representative, proudly serving North Carolina's 4th Congressional District.",871,"https://pbs.twimg.com/profile_images/1744834494266249216/WqWDFiwH_normal.jpg",477,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:52.334Z","{""url"":""https://twitter.com/1611471154732060692/status/1853892740989211109""}","{""url"":""https://x.com/ValerieFoushee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853856339661107275","ValerieFoushee","Congresswoman Valerie Foushee","Today is Election Day! + +All NC poling sites are open until 7:30PM. Find yours at","2024-11-05T17:46:09.000Z","[""https://pbs.twimg.com/media/Gbo4gQcW8AAg1qm.png""]","https://x.com/ValerieFoushee/status/1853856339661107275","{""post_id"":""1853770651653243175"",""profile_id"":""NCSBE"",""profile_name"":""NCSBE"",""data_posted"":""2014-01-18T15:46:53.000Z"",""url"":""https://x.com/NCSBE/status/1853770651653243175"",""description"":""Polls are open in North Carolina until 7:30 p.m.! \n\nRead 10 Tips for Election Day Voters: https://t.co/FmigLFx8aU\n\n#YourVoteCountsNC #ncpol"",""photos"":null,""videos"":null}",,1,0,4,260,"http://vt.ncsbe.gov/PPLkup",,2942,"U.S. Representative, proudly serving North Carolina's 4th Congressional District.",871,"https://pbs.twimg.com/profile_images/1744834494266249216/WqWDFiwH_normal.jpg",477,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:18:58.483Z","{""url"":""https://twitter.com/1611471154732060692/status/1853856339661107275""}","{""url"":""https://x.com/ValerieFoushee"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853861148988158002","RepThompson","Rep. Mike Thompson","Your vote is your voice. Today, I encourage everyone in the Fourth District and around the country to head to the polls and make your voice heard! Find information on where and how to vote at","2024-11-05T18:05:15.000Z","[""https://pbs.twimg.com/media/Gbo85ClWgAEFjo8.jpg""]","https://x.com/RepThompson/status/1853861148988158002","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,0,6,368,"http://sos.ca.gov/elections/where-and-how",,41328,"Proudly representing California's 4th Congressional District. Chair of @HouseGVP.",17225,"https://pbs.twimg.com/profile_images/1482023835604066317/yLjQVODh_normal.jpg",424,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:02.533Z","{""url"":""https://twitter.com/303861808/status/1853861148988158002""}","{""url"":""https://x.com/RepThompson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853796856892924063","RepDarrenSoto","Rep. Darren Soto","TODAY IS ELECTION DAY!!! Polls are open from 7am to 7pm. Time to make your voices heard! + +#ElectionDay Info: +Orange:","2024-11-05T13:49:47.000Z","[""https://pbs.twimg.com/media/GboCanQW0AAiZnG.jpg""]","https://x.com/RepDarrenSoto/status/1853796856892924063","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,2,17,588,"https://www.ocfelections.com/","[""ElectionDay""]",25114,"Representing #FL9: Osceola + parts of Orange & Polk. 🇺🇸🇵🇷 Co-Chair @FFCongress. Vice Chair of Policy @HispanicCaucus. Member @EnergyCommerce & @HouseAgDems.",11101,"https://pbs.twimg.com/profile_images/1650865119545491457/XSsJ5NBj_normal.jpg",6672,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:04.241Z","{""url"":""https://twitter.com/818713465653051392/status/1853796856892924063""}","{""url"":""https://x.com/RepDarrenSoto"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853845559578439892","Rep_Magaziner","Congressman Seth Magaziner","That’s the power of a union. + +Congratulations to the workers of @IAM751 for successful negotiating a contract that respects the value of your hard work!","2024-11-05T17:03:18.000Z",,"https://x.com/Rep_Magaziner/status/1853845559578439892","{""post_id"":""1853663535399632956"",""profile_id"":""MachinistsUnion"",""profile_name"":""Machinists Union"",""data_posted"":""2009-09-16T20:28:33.000Z"",""url"":""https://x.com/MachinistsUnion/status/1853663535399632956"",""description"":""🚨 BREAKING 🚨\n\n33,000 frontline workers at Boeing, members of @IAM751 and W24, voted to ratify a new union contract with the company that has instantly set a new standard for compensation and wages for aerospace industry workers. https://t.co/UKrEGWZHHV"",""photos"":null,""videos"":null}","[{""profile_id"":""28103693"",""profile_name"":""IAM Union District 751"",""url"":""https://x.com/IAM751"",""biography"":null,""is_verified"":null,""following"":null,""followers"":null}]",0,3,16,1034,,,5906,"Proud to fight for working people as the Representative for Rhode Island's Second Congressional District.",1739,"https://pbs.twimg.com/profile_images/1615457697549139968/J5xtL8FH_normal.jpg",411,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:06.211Z","{""url"":""https://twitter.com/1615455207713808384/status/1853845559578439892""}","{""url"":""https://x.com/Rep_Magaziner"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853911941841834072","Rep_Magaziner","Congressman Seth Magaziner","There are only a few hours left to vote. + +Polls close at 8:00 pm tonight. If you are in line when the polls close, stay in line and you will be allowed to vote.","2024-11-05T21:27:05.000Z","[""https://pbs.twimg.com/media/GbprFaJXgAAvPOU.png""]","https://x.com/Rep_Magaziner/status/1853911941841834072","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,0,2,5,222,,,5906,"Proud to fight for working people as the Representative for Rhode Island's Second Congressional District.",1739,"https://pbs.twimg.com/profile_images/1615457697549139968/J5xtL8FH_normal.jpg",411,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:16.204Z","{""url"":""https://twitter.com/1615455207713808384/status/1853911941841834072""}","{""url"":""https://x.com/Rep_Magaziner"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853792815009952225","Rep_Magaziner","Congressman Seth Magaziner","It’s Election Day, and the freedom to vote is a fundamental part of being an American. 🇺🇸 + +This is your opportunity to make your voice heard in this year’s election. Find the closest polling place near you:","2024-11-05T13:33:43.000Z","[""https://pbs.twimg.com/media/Gbn-vQtXgAEkHz2.jpg""]","https://x.com/Rep_Magaziner/status/1853792815009952225","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,3,11,386,"https://vote.sos.ri.gov/",,5906,"Proud to fight for working people as the Representative for Rhode Island's Second Congressional District.",1739,"https://pbs.twimg.com/profile_images/1615457697549139968/J5xtL8FH_normal.jpg",411,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:21.277Z","{""url"":""https://twitter.com/1615455207713808384/status/1853792815009952225""}","{""url"":""https://x.com/Rep_Magaziner"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853612229817512328","Rep_Magaziner","Congressman Seth Magaziner","18-year-old Nevaeh was preparing for her baby shower when she got sick — and because of Texas' abortion ban, she couldn’t get the care that she needed. She passed away. +  +If you’re not angry, you're not paying attention. We need to restore Roe v. Wade once and for all.","2024-11-05T01:36:08.000Z",,"https://x.com/Rep_Magaziner/status/1853612229817512328","{""post_id"":""1852291368443318293"",""profile_id"":""propublica"",""profile_name"":""ProPublica"",""data_posted"":""2008-04-30T21:17:15.000Z"",""url"":""https://x.com/propublica/status/1852291368443318293"",""description"":""New: It took three ER visits and 20 hours before a hospital admitted Nevaeh Crain, 18, as her condition worsened. Doctors insisted on two ultrasounds to confirm “fetal demise.” She's one of at least two Texas women who died under the state's abortion ban. https://t.co/NiNtKD6Jo9"",""photos"":null,""videos"":null}",,1,8,17,1188,,,5906,"Proud to fight for working people as the Representative for Rhode Island's Second Congressional District.",1739,"https://pbs.twimg.com/profile_images/1615457697549139968/J5xtL8FH_normal.jpg",411,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:22.138Z","{""url"":""https://twitter.com/1615455207713808384/status/1853612229817512328""}","{""url"":""https://x.com/Rep_Magaziner"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853800151313231984","RepRashida","Congresswoman Rashida Tlaib","It's Election Day, Michigan! Make sure to make your voices heard today. The polls are open until 8:00 pm. For more information and to find your voting location visit","2024-11-05T14:02:52.000Z",,"https://x.com/RepRashida/status/1853800151313231984","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,43,69,401,27141,"http://michigan.gov/vote",,569578,"Unapologetic Congresswoman fighting for justice for all. Proudly representing Michigan’s 12th District in the People’s House.",3895,"https://pbs.twimg.com/profile_images/1097639158888230912/GFONbJEm_normal.jpg",407,false,5,3,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:33.911Z","{""url"":""https://twitter.com/1079769536730140672/status/1853800151313231984""}","{""url"":""https://x.com/RepRashida"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853838113786769510","RepYvetteClarke","Yvette D. Clarke","Voting is our sacred civic duty – it is our essential tool to advance progress, protect our liberties, and push our nation forward. + +So please, on this Election Day, cast your ballot and go make a difference!","2024-11-05T16:33:43.000Z","[""https://pbs.twimg.com/media/GbonxB3WYAAyoJW.jpg""]","https://x.com/RepYvetteClarke/status/1853838113786769510","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,1,1,5,553,,,81293,"Official account, U.S. Rep. Yvette D. Clarke (NY-09, Brooklyn). Vice-Chair of @TheBlackCaucus. Serving on @HomelandDems & @EnergyCommerce. Brooklyn bred.",16874,"https://pbs.twimg.com/profile_images/1547646866078060546/7Pa5UgeH_normal.jpg",3956,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:34.235Z","{""url"":""https://twitter.com/240812994/status/1853838113786769510""}","{""url"":""https://x.com/RepYvetteClarke"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853902688058278299","RepChuck","Chuck Fleischmann","We are blessed to live in the greatest state in the nation, Tennessee! 🇺🇸","2024-11-05T20:50:19.000Z",,"https://x.com/RepChuck/status/1853902688058278299","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,2,2,27,1255,,,28421,"My official House office X account. I proudly work for the people of TN-03.",6236,"https://pbs.twimg.com/profile_images/1683838795102425089/nbEdUIor_normal.jpg",1074,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:37.195Z","{""url"":""https://twitter.com/235190657/status/1853902688058278299""}","{""url"":""https://x.com/RepChuck"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853905132783599782","ZachNunn","Congressman Zach Nunn","Our border affects real families, jobs, and safety in every community. I’m committed to working on solutions that protect our families and support our law enforcement on the ground.","2024-11-05T21:00:02.000Z",,"https://x.com/ZachNunn/status/1853905132783599782","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,9,2,8,539,,,4081,"U. S. Representative from Iowa Third District",2206,"https://pbs.twimg.com/profile_images/1628770067839127558/5Uo-3qIZ_normal.jpg",73,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:42.063Z","{""url"":""https://twitter.com/1610323831809363971/status/1853905132783599782""}","{""url"":""https://x.com/ZachNunn"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853791898697081233","WhipKClark","Katherine Clark","#ElectionDay is finally here. +  +There is nothing more sacred or foundational to our democracy than making your voice heard at the ballot box. +  +Exercise your right. +  +Play your part in shaping our nation's future.","2024-11-05T13:30:05.000Z",,"https://x.com/WhipKClark/status/1853791898697081233","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,17,46,178,4213,,"[""ElectionDay""]",153371,"Democratic Whip of the U.S. House of Representatives. Proudly representing the people of #MA5. Defender of women, kids & justice. She/Her",12256,"https://pbs.twimg.com/profile_images/1615826485566218254/-J1lmAV4_normal.jpg",1970,false,1,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:47.802Z","{""url"":""https://twitter.com/2293131060/status/1853791898697081233""}","{""url"":""https://x.com/WhipKClark"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853874932167639273","ZachNunn","Congressman Zach Nunn","I hear from Iowa families every day about the rising prices on groceries, gas, and essentials. The Biden-Harris Administration’s policies have cost Iowa families more than $26,000 in the past two years. + +It’s time that Iowa families get a break. I’m committed to working on solutions that bring costs down and provide some relief to everyone.","2024-11-05T19:00:01.000Z",,"https://x.com/ZachNunn/status/1853874932167639273","{""post_id"":null,""profile_id"":null,""profile_name"":null,""data_posted"":null,""url"":null,""description"":null,""photos"":null,""videos"":null}",,7,2,6,1355,,,4081,"U. S. Representative from Iowa Third District",2206,"https://pbs.twimg.com/profile_images/1628770067839127558/5Uo-3qIZ_normal.jpg",73,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:51.739Z","{""url"":""https://twitter.com/1610323831809363971/status/1853874932167639273""}","{""url"":""https://x.com/ZachNunn"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}" +"1853825618661544167","RepThompson","Rep. Mike Thompson","A Red Flag Warning is in effect from 11 AM Tuesday - 7 AM Thursday for the majority of the Bay Area and higher elevations of the Central Coast. Stay prepared and listen to guidance from local officials.","2024-11-05T15:44:04.000Z",,"https://x.com/RepThompson/status/1853825618661544167","{""post_id"":""1853395160652304771"",""profile_id"":""NWSBayArea"",""profile_name"":""NWS Bay Area 🌉"",""data_posted"":""2012-06-01T16:34:16.000Z"",""url"":""https://x.com/NWSBayArea/status/1853395160652304771"",""description"":""🚩A Red Flag Warning has been issued for critical fire weather conditions. It's in effect from 11 AM Tuesday - 7 AM Thursday for the majority of the Bay Area and higher elevations of the Central Coast. #CAwx https://t.co/TCeIqZReYB"",""photos"":[""https://pbs.twimg.com/media/GbiU4Vva0AAMOVG.jpg"",""https://pbs.twimg.com/media/GbiUs1macAAKTc9.jpg"",""https://pbs.twimg.com/media/GbiVBBObMAAhEqC.jpg""],""videos"":null}",,2,1,2,555,,,41326,"Proudly representing California's 4th Congressional District. Chair of @HouseGVP.",17225,"https://pbs.twimg.com/profile_images/1482023835604066317/yLjQVODh_normal.jpg",424,false,0,0,"{""post_id"":null,""profile_id"":null,""profile_name"":null}",,,"2024-11-06T04:19:54.095Z","{""url"":""https://twitter.com/303861808/status/1853825618661544167""}","{""url"":""https://x.com/RepThompson"",""start_date"":""2024-11-05"",""end_date"":""2024-11-06""}"